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
This commit is contained in:
Jannis Leidel 2010-10-10 17:56:39 +00:00
parent 791cc62d4c
commit 87b748b3bb
1 changed files with 1 additions and 1 deletions

View File

@ -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