From ffd31c017f94234e1024a3345f601b020980aa47 Mon Sep 17 00:00:00 2001 From: slollo Date: Wed, 29 Oct 2014 03:40:02 +0300 Subject: [PATCH] [1.7.x] Updated FIRST_DAY_OF_WEEK for Ukrainian to Monday. Backport of eab3dc195e from master --- django/conf/locale/uk/formats.py | 2 +- docs/releases/1.7.2.txt | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/django/conf/locale/uk/formats.py b/django/conf/locale/uk/formats.py index e2a3363ca8..821585fbb2 100644 --- a/django/conf/locale/uk/formats.py +++ b/django/conf/locale/uk/formats.py @@ -13,7 +13,7 @@ YEAR_MONTH_FORMAT = 'F Y' MONTH_DAY_FORMAT = 'j F' SHORT_DATE_FORMAT = 'j M Y' # SHORT_DATETIME_FORMAT = -# FIRST_DAY_OF_WEEK = +FIRST_DAY_OF_WEEK = 1 # Monday # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see http://docs.python.org/library/datetime.html#strftime-strptime-behavior diff --git a/docs/releases/1.7.2.txt b/docs/releases/1.7.2.txt index 245512650f..9f20e0a01b 100644 --- a/docs/releases/1.7.2.txt +++ b/docs/releases/1.7.2.txt @@ -32,3 +32,5 @@ Bugfixes * Fixed a migration crash when removing a field that is referenced in ``AlterIndexTogether`` or ``AlterUniqueTogether`` (:ticket:`23614`). + +* Updated the first day of the week in the Ukrainian locale to Monday.