summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJannis Leidel <jannis@leidel.info>2010-10-10 17:56:39 +0000
committerJannis Leidel <jannis@leidel.info>2010-10-10 17:56:39 +0000
commit87b748b3bbaf15ec3c38f18d682e5bc12e0f5c79 (patch)
treef97f5274c6336a15647ee0637afd6862ddc93f3a
parent791cc62d4c8f5627b5616a50ab9d91d59cd601e9 (diff)
Fixed #13863 -- Corrected decimal separator in Swedish format module. Thanks, Ulf Urdén.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14128 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/conf/locale/sv/formats.py2
1 files changed, 1 insertions, 1 deletions
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