diff options
| author | Merike Sell <merikes@gmail.com> | 2016-09-12 17:21:15 +0300 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-09-12 10:21:15 -0400 |
| commit | e6dface557bd9481219e0af30097494568d65d3f (patch) | |
| tree | f32049938b8aeb7feb2cd719f0213888ef1e8c4a | |
| parent | 767ba009764c6640b20ea6a6dc6ee2559cc87800 (diff) | |
Fixed #27206 -- Corrected MONTH_DAY/DATE_FORMAT for et locale.
| -rw-r--r-- | django/conf/locale/et/formats.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/conf/locale/et/formats.py b/django/conf/locale/et/formats.py index 06df111c82..d43da89dd3 100644 --- a/django/conf/locale/et/formats.py +++ b/django/conf/locale/et/formats.py @@ -5,11 +5,11 @@ 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 F Y' +DATE_FORMAT = 'j. F Y' TIME_FORMAT = 'G:i' # DATETIME_FORMAT = # YEAR_MONTH_FORMAT = -MONTH_DAY_FORMAT = 'j F' +MONTH_DAY_FORMAT = 'j. F' SHORT_DATE_FORMAT = 'd.m.Y' # SHORT_DATETIME_FORMAT = # FIRST_DAY_OF_WEEK = |
