Skip to content

Commit

Permalink
Removed invalid year character from datetime format in Azerbaijani lo…
Browse files Browse the repository at this point in the history
…cale.

Azerbaijani switched to Latin letters after Soviets and doesn't add il when
writing date time formats.
  • Loading branch information
mastizada authored and timgraham committed Sep 19, 2016
1 parent cdde2ea commit 9023f25
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions django/conf/locale/az/formats.py
Expand Up @@ -5,10 +5,10 @@

# 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'
Expand Down

0 comments on commit 9023f25

Please sign in to comment.