Opened 14 years ago

Closed 14 years ago

Last modified 13 years ago

#13463 closed (fixed)

Wrong DATETIME_FORMAT default value

Reported by: ale@… Owned by: nobody
Component: Internationalization Version: 1.2-beta
Severity: Keywords: it
Cc: Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

According to the documentation the first letter of DATETIME_FORMAT in file django/conf/locale/it/formats.py must be 'l' instead of 'w'

-DATETIME_FORMAT = 'w d F Y H:i:s' # Mercoledì 25 Ottobre 2006 14:30:59

+DATETIME_FORMAT = 'l d F Y H:i:s' # Mercoledì 25 Ottobre 2006 14:30:59

Change History (3)

comment:1 by Jannis Leidel, 14 years ago

Triage Stage: UnreviewedAccepted

comment:2 by Jannis Leidel, 14 years ago

Resolution: fixed
Status: newclosed

(In [13073]) Fixed #13463 - Tweaked Italian locale format a bit to make sense.

comment:3 by Jacob, 13 years ago

milestone: 1.2

Milestone 1.2 deleted

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