Ticket #17670: fix_italian_default_date_formats.diff

File fix_italian_default_date_formats.diff, 692 bytes (added by masterjakul@…, 13 years ago)

Diff to fix Italian date formats

  • django/conf/locale/it/formats.py

     
    99DATETIME_FORMAT = 'l d F Y H:i:s' # Mercoledì 25 Ottobre 2006 14:30:59
    1010YEAR_MONTH_FORMAT = 'F Y' # Ottobre 2006
    1111MONTH_DAY_FORMAT = 'j/F' # 10/2006
    12 SHORT_DATE_FORMAT = 'd/M/Y' # 25/12/2009
    13 SHORT_DATETIME_FORMAT = 'd/M/Y H:i:s' # 25/10/2009 14:30:59
     12SHORT_DATE_FORMAT = 'd/m/Y' # 25/12/2009
     13SHORT_DATETIME_FORMAT = 'd/m/Y H:i:s' # 25/10/2009 14:30:59
    1414FIRST_DAY_OF_WEEK = 1 # Lunedì
    1515
    1616# The *_INPUT_FORMATS strings use the Python strftime format syntax,
Back to Top