mirror of
https://github.com/django/django.git
synced 2025-10-02 23:04:53 +00:00
Fixed #17674 -- DECIMAL_SEPARATOR and THOUSAND_SEPARATOR were swapped in the Croatian locale. Thanks deni for the report and patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17544 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
b039bd3fb0
commit
8d221e554c
1 changed files with 2 additions and 2 deletions
|
@ -42,6 +42,6 @@ DATETIME_INPUT_FORMATS = (
|
|||
'%d. %m. %y.', # '25. 10. 06.'
|
||||
)
|
||||
|
||||
DECIMAL_SEPARATOR = '.'
|
||||
THOUSAND_SEPARATOR = ','
|
||||
DECIMAL_SEPARATOR = ','
|
||||
THOUSAND_SEPARATOR = '.'
|
||||
NUMBER_GROUPING = 3
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue