diff options
| author | deby <db0company@gmail.com> | 2018-10-20 17:09:41 +0800 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2018-10-20 05:09:41 -0400 |
| commit | 19126339f307e589f99259ab0176c4367a8055f0 (patch) | |
| tree | b45bed0bb975efdad68569d15cfde4a200782ee7 | |
| parent | 4e78e389b16fbceb23d5236ee1650b213e71c968 (diff) | |
Fixed Italian's MONTH_DAY_FORMAT.
The `/` is inconsistent with the other languages.
| -rw-r--r-- | django/conf/locale/it/formats.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/conf/locale/it/formats.py b/django/conf/locale/it/formats.py index 3b363820c7..f026a4aa21 100644 --- a/django/conf/locale/it/formats.py +++ b/django/conf/locale/it/formats.py @@ -6,7 +6,7 @@ DATE_FORMAT = 'd F Y' # 25 Ottobre 2006 TIME_FORMAT = 'H:i' # 14:30 DATETIME_FORMAT = 'l d F Y H:i' # Mercoledì 25 Ottobre 2006 14:30 YEAR_MONTH_FORMAT = 'F Y' # Ottobre 2006 -MONTH_DAY_FORMAT = 'j/F' # 10/2006 +MONTH_DAY_FORMAT = 'j F' # 25 Ottobre SHORT_DATE_FORMAT = 'd/m/Y' # 25/12/2009 SHORT_DATETIME_FORMAT = 'd/m/Y H:i' # 25/10/2009 14:30 FIRST_DAY_OF_WEEK = 1 # Lunedì |
