Author: zgoda
Date: 2010-06-07 09:47:10 -0500 (Mon, 07 Jun 2010)
New Revision: 13327
Modified:
django/trunk/django/conf/locale/pl/formats.py
Log:
Fixed #13577 - wrong thousands separator in Polish formats file. Thanks sero
for report.
Modified: django/trunk/django/conf/locale/pl/formats.py
===================================================================
--- django/trunk/django/conf/locale/pl/formats.py 2010-06-07 03:08:33 UTC
(rev 13326)
+++ django/trunk/django/conf/locale/pl/formats.py 2010-06-07 14:47:10 UTC
(rev 13327)
@@ -28,5 +28,5 @@
'%Y-%m-%d', # '2006-10-25'
)
DECIMAL_SEPARATOR = ','
-THOUSAND_SEPARATOR = '.'
-NUMBER_GROUPING = 3
\ No newline at end of file
+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 [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en.