Author: jezdez Date: 2012-02-11 02:17:45 -0800 (Sat, 11 Feb 2012) New Revision: 17503
Modified: django/trunk/django/conf/locale/it/formats.py Log: Fixed #17670 -- Correct Italian short localization formats. Thanks, masterjakul. Modified: django/trunk/django/conf/locale/it/formats.py =================================================================== --- django/trunk/django/conf/locale/it/formats.py 2012-02-11 09:55:54 UTC (rev 17502) +++ django/trunk/django/conf/locale/it/formats.py 2012-02-11 10:17:45 UTC (rev 17503) @@ -9,8 +9,8 @@ DATETIME_FORMAT = 'l d F Y H:i:s' # Mercoledì 25 Ottobre 2006 14:30:59 YEAR_MONTH_FORMAT = 'F Y' # Ottobre 2006 MONTH_DAY_FORMAT = 'j/F' # 10/2006 -SHORT_DATE_FORMAT = 'd/M/Y' # 25/12/2009 -SHORT_DATETIME_FORMAT = 'd/M/Y H:i:s' # 25/10/2009 14:30:59 +SHORT_DATE_FORMAT = 'd/m/Y' # 25/12/2009 +SHORT_DATETIME_FORMAT = 'd/m/Y H:i:s' # 25/10/2009 14:30:59 FIRST_DAY_OF_WEEK = 1 # Lunedì # The *_INPUT_FORMATS strings use the Python strftime format syntax, -- You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-updates?hl=en.
