From 8d221e554c0d47256f02d42f1b86909a67c86ed3 Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Sat, 18 Feb 2012 09:36:58 +0000 Subject: [PATCH] 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 --- django/conf/locale/hr/formats.py | 4 ++-- 1 file 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