From 87b748b3bbaf15ec3c38f18d682e5bc12e0f5c79 Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Sun, 10 Oct 2010 17:56:39 +0000 Subject: [PATCH] =?UTF-8?q?Fixed=20#13863=20--=20Corrected=20decimal=20sep?= =?UTF-8?q?arator=20in=20Swedish=20format=20module.=20Thanks,=20Ulf=20Urd?= =?UTF-8?q?=C3=A9n.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://code.djangoproject.com/svn/django/trunk@14128 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/conf/locale/sv/formats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/conf/locale/sv/formats.py b/django/conf/locale/sv/formats.py index db3b2ff0c8..4f215b2e95 100644 --- a/django/conf/locale/sv/formats.py +++ b/django/conf/locale/sv/formats.py @@ -30,6 +30,6 @@ DATETIME_INPUT_FORMATS = ( '%m/%d/%y %H:%M', # '10/25/06 14:30' '%m/%d/%y', # '10/25/06' ) -DECIMAL_SEPARATOR = '.' +DECIMAL_SEPARATOR = ',' THOUSAND_SEPARATOR = ' ' NUMBER_GROUPING = 3