diff options
| author | Duncan Parkes <duncan@mysociety.org> | 2014-08-27 16:18:23 +0100 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-09-01 08:39:21 -0400 |
| commit | be8ccc26488552123cd371645dcb4fd13c05fe80 (patch) | |
| tree | 9350b9f0a7313e7472759c6d833e22c05d8263f8 | |
| parent | ab9c886459e179a7741efd3be440653afe260dff (diff) | |
Fixed #23371 -- Changed en_GB first day of the week to Monday.
| -rw-r--r-- | django/conf/locale/en_GB/formats.py | 2 | ||||
| -rw-r--r-- | docs/releases/1.8.txt | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/django/conf/locale/en_GB/formats.py b/django/conf/locale/en_GB/formats.py index c2edd23bcd..3ef4d4500f 100644 --- a/django/conf/locale/en_GB/formats.py +++ b/django/conf/locale/en_GB/formats.py @@ -12,7 +12,7 @@ YEAR_MONTH_FORMAT = 'F Y' # 'October 2006' MONTH_DAY_FORMAT = 'j F' # '25 October' SHORT_DATE_FORMAT = 'd/m/Y' # '25/10/2006' SHORT_DATETIME_FORMAT = 'd/m/Y P' # '25/10/2006 2:30 pm' -FIRST_DAY_OF_WEEK = 0 # Sunday +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.8.txt b/docs/releases/1.8.txt index f060691d83..8b1df14418 100644 --- a/docs/releases/1.8.txt +++ b/docs/releases/1.8.txt @@ -533,6 +533,9 @@ Miscellaneous * When a dictionary setting is overridden in user settings, both dictionaries are merged by default. See :ref:`dictionary-settings`. +* For consistency with other major vendors, the ``en_GB`` locale now has Monday + as the first day of the week. + .. _deprecated-features-1.8: Features deprecated in 1.8 |
