diff options
| author | Jarek Zgoda <jarek.zgoda@redefine.pl> | 2010-06-07 14:47:10 +0000 |
|---|---|---|
| committer | Jarek Zgoda <jarek.zgoda@redefine.pl> | 2010-06-07 14:47:10 +0000 |
| commit | 9ebf411f26b028edfa453d3d4955d5d08d341ae1 (patch) | |
| tree | d76d77d9e570b30f307e73fc690383b655b92968 | |
| parent | 454622c6f9765ea003423d9c0772d115a59f0e59 (diff) | |
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
| -rw-r--r-- | django/conf/locale/pl/formats.py | 4 |
1 files 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 |
