Browse Source

Updated FIRST_DAY_OF_WEEK for Ukrainian to Monday.

slollo 10 năm trước cách đây
mục cha
commit
eab3dc195e
2 tập tin đã thay đổi với 3 bổ sung1 xóa
  1. 1 1
      django/conf/locale/uk/formats.py
  2. 2 0
      docs/releases/1.7.2.txt

+ 1 - 1
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

+ 2 - 0
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.