From 9cfd060b1c0c3664d77e4ab30a6c351822f0a4d6 Mon Sep 17 00:00:00 2001 From: kappataumu Date: Thu, 6 Oct 2016 18:52:29 +0300 Subject: [PATCH] Fixed #27244 -- Changed Greek's thousand separator from space to dot. --- django/conf/locale/el/formats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/conf/locale/el/formats.py b/django/conf/locale/el/formats.py index 7cfcd10e36..bafa461094 100644 --- a/django/conf/locale/el/formats.py +++ b/django/conf/locale/el/formats.py @@ -34,5 +34,5 @@ DATETIME_INPUT_FORMATS = [ '%Y-%m-%d', # '2006-10-25' ] DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = '\xa0' # non-breaking space +THOUSAND_SEPARATOR = '.' NUMBER_GROUPING = 3