Fixed #27244 -- Changed Greek's thousand separator from space to dot.

This commit is contained in:
kappataumu 2016-10-06 18:52:29 +03:00 committed by Tim Graham
parent e261337eea
commit 9cfd060b1c
1 changed files with 1 additions and 1 deletions

View File

@ -34,5 +34,5 @@ DATETIME_INPUT_FORMATS = [
'%Y-%m-%d', # '2006-10-25'
]
DECIMAL_SEPARATOR = ','
THOUSAND_SEPARATOR = '\xa0' # non-breaking space
THOUSAND_SEPARATOR = '.'
NUMBER_GROUPING = 3