#13863 closed (fixed)
DECIMAL_SEPARATOR incorrect in formats.py for sv locale
Reported by: | Owned by: | nobody | |
---|---|---|---|
Component: | Internationalization | Version: | 1.2 |
Severity: | Keywords: | ||
Cc: | Triage Stage: | Accepted | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
Hi!
In Swedish, the decimal point is not period, it's comma. I propose this change to formats.py for the sv locale:
-DECIMAL_SEPARATOR = '.'
+DECIMAL_SEPARATOR = ','
Reference: http://sv.wikipedia.org/wiki/Kommatecken
Change History (5)
comment:1 by , 14 years ago
Component: | Uncategorized → django.contrib.localflavor |
---|---|
milestone: | 2.0 → 1.3 |
comment:2 by , 14 years ago
Component: | django.contrib.localflavor → Internationalization |
---|
comment:3 by , 14 years ago
Triage Stage: | Unreviewed → Accepted |
---|
comment:4 by , 14 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
(In [14128]) Fixed #13863 -- Corrected decimal separator in Swedish format module. Thanks, Ulf Urdén.