mirror of https://github.com/django/django.git
Fixed #27244 -- Changed Greek's thousand separator from space to dot.
This commit is contained in:
parent
e261337eea
commit
9cfd060b1c
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue