summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Smith <nathanrandal@hotmail.com>2014-03-14 14:00:27 -0400
committerNathan Smith <nathanrandal@hotmail.com>2014-03-14 14:00:27 -0400
commitcfbc887b2ca5824eaec1267864c6d6ed9df1a204 (patch)
tree2372491c80862d6f83a232b69c4c44d41a1d6f77
parent666a2ad22ff868c214bf251d1171148d943cfc82 (diff)
Changed start of week for Australia to Sunday as requested in https://code.djangoproject.com/ticket/21989
-rw-r--r--django/conf/locale/en_AU/formats.py2
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