Author: aaugustin Date: 2012-02-18 01:36:58 -0800 (Sat, 18 Feb 2012) New Revision: 17544
Modified: django/trunk/django/conf/locale/hr/formats.py Log: Fixed #17674 -- DECIMAL_SEPARATOR and THOUSAND_SEPARATOR were swapped in the Croatian locale. Thanks deni for the report and patch. Modified: django/trunk/django/conf/locale/hr/formats.py =================================================================== --- django/trunk/django/conf/locale/hr/formats.py 2012-02-18 09:32:18 UTC (rev 17543) +++ django/trunk/django/conf/locale/hr/formats.py 2012-02-18 09:36:58 UTC (rev 17544) @@ -42,6 +42,6 @@ '%d. %m. %y.', # '25. 10. 06.' ) -DECIMAL_SEPARATOR = '.' -THOUSAND_SEPARATOR = ',' +DECIMAL_SEPARATOR = ',' +THOUSAND_SEPARATOR = '.' NUMBER_GROUPING = 3 -- You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to django-updates@googlegroups.com. To unsubscribe from this group, send email to django-updates+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-updates?hl=en.