diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2014-03-15 09:26:53 +0800 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2014-03-15 09:26:53 +0800 |
| commit | bb2c58c70133b3a03437e7d45510b062cb31b36c (patch) | |
| tree | 5955051eeddb41ca73f28363d758836ae9a87921 /django | |
| parent | d22b291890c1736a40c0ad97448c7318df2eebb2 (diff) | |
| parent | cfbc887b2ca5824eaec1267864c6d6ed9df1a204 (diff) | |
Merge pull request #2430 from NathanRSmith/ticket_21989
Fixed #21989 - Modified first day of week in AU locale.
Although Australia is a signatory to ISO 8601, there's a lot of evidence to suggest that this is in the same category as "officially, the USA uses metric". See the ticket for supporting details.
Diffstat (limited to 'django')
| -rw-r--r-- | django/conf/locale/en_AU/formats.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/conf/locale/en_AU/formats.py b/django/conf/locale/en_AU/formats.py index 3ef4d4500f..c2edd23bcd 100644 --- a/django/conf/locale/en_AU/formats.py +++ b/django/conf/locale/en_AU/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 = 1 # Monday +FIRST_DAY_OF_WEEK = 0 # Sunday # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
