Removed invalid year character from datetime format in Azerbaijani locale.

Azerbaijani switched to Latin letters after Soviets and doesn't add il when
writing date time formats.
This commit is contained in:
Emin Mastizada 2016-09-19 15:23:51 +03:00 committed by Tim Graham
parent cdde2eac5b
commit 9023f25278
1 changed files with 3 additions and 3 deletions

View File

@ -5,10 +5,10 @@ from __future__ import unicode_literals
# The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'j E Y г.'
DATE_FORMAT = 'j E Y'
TIME_FORMAT = 'G:i'
DATETIME_FORMAT = 'j E Y г. G:i'
YEAR_MONTH_FORMAT = 'F Y г.'
DATETIME_FORMAT = 'j E Y, G:i'
YEAR_MONTH_FORMAT = 'F Y'
MONTH_DAY_FORMAT = 'j F'
SHORT_DATE_FORMAT = 'd.m.Y'
SHORT_DATETIME_FORMAT = 'd.m.Y H:i'