diff options
| author | Aymeric Augustin <aymeric.augustin@m4x.org> | 2012-02-18 09:36:58 +0000 |
|---|---|---|
| committer | Aymeric Augustin <aymeric.augustin@m4x.org> | 2012-02-18 09:36:58 +0000 |
| commit | 8d221e554c0d47256f02d42f1b86909a67c86ed3 (patch) | |
| tree | 28415f9ef48dce13afb926de8cdcec5cb77f4b40 | |
| parent | b039bd3fb04ab92909a30050beaf634768116a46 (diff) | |
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
| -rw-r--r-- | django/conf/locale/hr/formats.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/conf/locale/hr/formats.py b/django/conf/locale/hr/formats.py index ceaad57ee5..72fcf51fc7 100644 --- a/django/conf/locale/hr/formats.py +++ b/django/conf/locale/hr/formats.py @@ -42,6 +42,6 @@ DATETIME_INPUT_FORMATS = ( '%d. %m. %y.', # '25. 10. 06.' ) -DECIMAL_SEPARATOR = '.' -THOUSAND_SEPARATOR = ',' +DECIMAL_SEPARATOR = ',' +THOUSAND_SEPARATOR = '.' NUMBER_GROUPING = 3 |
