[1.7.x] Updated FIRST_DAY_OF_WEEK for Ukrainian to Monday.

Backport of eab3dc195e from master
This commit is contained in:
slollo 2014-10-29 03:40:02 +03:00 committed by Tim Graham
parent d9bb7128fe
commit ffd31c017f
2 changed files with 3 additions and 1 deletions

View File

@ -13,7 +13,7 @@ YEAR_MONTH_FORMAT = 'F Y'
MONTH_DAY_FORMAT = 'j F' MONTH_DAY_FORMAT = 'j F'
SHORT_DATE_FORMAT = 'j M Y' SHORT_DATE_FORMAT = 'j M Y'
# SHORT_DATETIME_FORMAT = # SHORT_DATETIME_FORMAT =
# FIRST_DAY_OF_WEEK = FIRST_DAY_OF_WEEK = 1 # Monday
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see http://docs.python.org/library/datetime.html#strftime-strptime-behavior

View File

@ -32,3 +32,5 @@ Bugfixes
* Fixed a migration crash when removing a field that is referenced in * Fixed a migration crash when removing a field that is referenced in
``AlterIndexTogether`` or ``AlterUniqueTogether`` (:ticket:`23614`). ``AlterIndexTogether`` or ``AlterUniqueTogether`` (:ticket:`23614`).
* Updated the first day of the week in the Ukrainian locale to Monday.