Opened 14 years ago

Closed 14 years ago

Last modified 13 years ago

#13863 closed (fixed)

DECIMAL_SEPARATOR incorrect in formats.py for sv locale

Reported by: Ulf Urdén <ulf.urden@…> 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 anonymous, 14 years ago

Component: Uncategorizeddjango.contrib.localflavor
milestone: 2.01.3

comment:2 by Jannis Leidel, 14 years ago

Component: django.contrib.localflavorInternationalization

comment:3 by Jannis Leidel, 14 years ago

Triage Stage: UnreviewedAccepted

comment:4 by Jannis Leidel, 14 years ago

Resolution: fixed
Status: newclosed

(In [14128]) Fixed #13863 -- Corrected decimal separator in Swedish format module. Thanks, Ulf Urdén.

comment:5 by Jacob, 13 years ago

milestone: 1.3

Milestone 1.3 deleted

Note: See TracTickets for help on using tickets.
Back to Top