summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJannis Leidel <jannis@leidel.info>2012-02-11 10:17:45 +0000
committerJannis Leidel <jannis@leidel.info>2012-02-11 10:17:45 +0000
commitc007de5b7900689ed54bc022adefcb02a576836d (patch)
tree2e98bd6cc89e8be6707d45d424997388e8fd777a
parent130e7ab617d746291629de6a5a1fbb5ea9cd3fe5 (diff)
Fixed #17670 -- Correct Italian short localization formats. Thanks, masterjakul.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17503 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/conf/locale/it/formats.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/django/conf/locale/it/formats.py b/django/conf/locale/it/formats.py
index ec68fa1063..330ef4e150 100644
--- a/django/conf/locale/it/formats.py
+++ b/django/conf/locale/it/formats.py
@@ -9,8 +9,8 @@ TIME_FORMAT = 'H:i:s' # 14:30:59
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,