Skip to content

Commit

Permalink
Fixed #13863 -- Corrected decimal separator in Swedish format module.…
Browse files Browse the repository at this point in the history
… Thanks, Ulf Urdén.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@14128 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
jezdez committed Oct 10, 2010
1 parent 791cc62 commit 87b748b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django/conf/locale/sv/formats.py
Expand Up @@ -30,6 +30,6 @@
'%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

0 comments on commit 87b748b

Please sign in to comment.