2009-12-23 01:58:49 +08:00
|
|
|
# This file is distributed under the same license as the Django package.
|
|
|
|
#
|
2010-12-13 07:02:10 +08:00
|
|
|
# The *_FORMAT strings use the Django date format syntax,
|
2018-09-26 14:48:47 +08:00
|
|
|
# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
|
2009-12-23 01:58:49 +08:00
|
|
|
DATE_FORMAT = "j F Y"
|
2014-09-11 20:43:49 +08:00
|
|
|
TIME_FORMAT = "H:i"
|
|
|
|
DATETIME_FORMAT = "j F Y H:i"
|
2009-12-23 01:58:49 +08:00
|
|
|
YEAR_MONTH_FORMAT = "F Y"
|
|
|
|
MONTH_DAY_FORMAT = "j F"
|
2010-02-22 07:37:01 +08:00
|
|
|
SHORT_DATE_FORMAT = "j N Y"
|
2014-09-11 20:43:49 +08:00
|
|
|
SHORT_DATETIME_FORMAT = "j N Y H:i"
|
2013-11-03 05:02:56 +08:00
|
|
|
FIRST_DAY_OF_WEEK = 1 # Monday
|
2010-12-13 07:02:10 +08:00
|
|
|
|
|
|
|
# The *_INPUT_FORMATS strings use the Python strftime format syntax,
|
2018-09-26 14:48:47 +08:00
|
|
|
# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
|
2015-01-22 00:55:57 +08:00
|
|
|
DATE_INPUT_FORMATS = [
|
2013-11-03 05:02:56 +08:00
|
|
|
"%d/%m/%Y", # '25/10/2006'
|
|
|
|
"%d/%m/%y", # '25/10/06'
|
2015-01-22 00:55:57 +08:00
|
|
|
"%d.%m.%Y", # Swiss [fr_CH] '25.10.2006'
|
|
|
|
"%d.%m.%y", # Swiss [fr_CH] '25.10.06'
|
2010-04-28 19:27:38 +08:00
|
|
|
# '%d %B %Y', '%d %b %Y', # '25 octobre 2006', '25 oct. 2006'
|
2015-01-22 00:55:57 +08:00
|
|
|
]
|
|
|
|
DATETIME_INPUT_FORMATS = [
|
2013-11-03 05:02:56 +08:00
|
|
|
"%d/%m/%Y %H:%M:%S", # '25/10/2006 14:30:59'
|
|
|
|
"%d/%m/%Y %H:%M:%S.%f", # '25/10/2006 14:30:59.000200'
|
|
|
|
"%d/%m/%Y %H:%M", # '25/10/2006 14:30'
|
2015-01-22 00:55:57 +08:00
|
|
|
"%d.%m.%Y %H:%M:%S", # Swiss [fr_CH), '25.10.2006 14:30:59'
|
2013-11-03 05:02:56 +08:00
|
|
|
"%d.%m.%Y %H:%M:%S.%f", # Swiss (fr_CH), '25.10.2006 14:30:59.000200'
|
|
|
|
"%d.%m.%Y %H:%M", # Swiss (fr_CH), '25.10.2006 14:30'
|
2015-01-22 00:55:57 +08:00
|
|
|
]
|
2009-12-23 01:58:49 +08:00
|
|
|
DECIMAL_SEPARATOR = ","
|
2013-11-03 05:02:56 +08:00
|
|
|
THOUSAND_SEPARATOR = "\xa0" # non-breaking space
|
2010-02-22 07:37:01 +08:00
|
|
|
NUMBER_GROUPING = 3
|