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.
This commit is contained in:
commit
bb2c58c701
|
@ -12,7 +12,7 @@ YEAR_MONTH_FORMAT = 'F Y' # 'October 2006'
|
||||||
MONTH_DAY_FORMAT = 'j F' # '25 October'
|
MONTH_DAY_FORMAT = 'j F' # '25 October'
|
||||||
SHORT_DATE_FORMAT = 'd/m/Y' # '25/10/2006'
|
SHORT_DATE_FORMAT = 'd/m/Y' # '25/10/2006'
|
||||||
SHORT_DATETIME_FORMAT = 'd/m/Y P' # '25/10/2006 2:30 pm'
|
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,
|
# 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
|
||||||
|
|
Loading…
Reference in New Issue