From 9ebf411f26b028edfa453d3d4955d5d08d341ae1 Mon Sep 17 00:00:00 2001 From: Jarek Zgoda Date: Mon, 7 Jun 2010 14:47:10 +0000 Subject: [PATCH] Fixed #13577 - wrong thousands separator in Polish formats file. Thanks sero for report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13327 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/conf/locale/pl/formats.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/django/conf/locale/pl/formats.py b/django/conf/locale/pl/formats.py index a4a2961185..4520f7ce4e 100644 --- a/django/conf/locale/pl/formats.py +++ b/django/conf/locale/pl/formats.py @@ -28,5 +28,5 @@ DATETIME_INPUT_FORMATS = ( '%Y-%m-%d', # '2006-10-25' ) DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = '.' -NUMBER_GROUPING = 3 \ No newline at end of file +THOUSAND_SEPARATOR = ' ' +NUMBER_GROUPING = 3