1
0
mirror of https://github.com/django/django.git synced 2025-06-05 11:39:13 +00:00

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

View File

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