From e6dface557bd9481219e0af30097494568d65d3f Mon Sep 17 00:00:00 2001 From: Merike Sell Date: Mon, 12 Sep 2016 17:21:15 +0300 Subject: [PATCH] Fixed #27206 -- Corrected MONTH_DAY/DATE_FORMAT for et locale. --- django/conf/locale/et/formats.py | 4 ++-- 1 file 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 =