|
| 1 | +# This file is distributed under the same license as the Django package. |
| 2 | +# |
| 3 | +# The *_FORMAT strings use the Django date format syntax, |
| 4 | +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
| 5 | +DATE_FORMAT = "N j, Y" |
| 6 | +TIME_FORMAT = "P" |
| 7 | +DATETIME_FORMAT = "N j, Y, P" |
| 8 | +YEAR_MONTH_FORMAT = "F Y" |
| 9 | +MONTH_DAY_FORMAT = "F j" |
| 10 | +SHORT_DATE_FORMAT = "d/m/Y" |
| 11 | +SHORT_DATETIME_FORMAT = "d/m/Y P" |
| 12 | +FIRST_DAY_OF_WEEK = 0 |
| 13 | + |
| 14 | +# The *_INPUT_FORMATS strings use the Python strftime format syntax, |
| 15 | +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior |
| 16 | +DATE_INPUT_FORMATS = [ |
| 17 | + "%Y-%m-%d", # '2006-10-25' |
| 18 | + "%m/%d/%Y", # '10/25/2006' |
| 19 | + "%m/%d/%y", # '10/25/06' |
| 20 | + "%b %d %Y", # 'Oct 25 2006' |
| 21 | + "%b %d, %Y", # 'Oct 25, 2006' |
| 22 | + "%d %b %Y", # '25 Oct 2006' |
| 23 | + "%d %b, %Y", # '25 Oct, 2006' |
| 24 | + "%B %d %Y", # 'October 25 2006' |
| 25 | + "%B %d, %Y", # 'October 25, 2006' |
| 26 | + "%d %B %Y", # '25 October 2006' |
| 27 | + "%d %B, %Y", # '25 October, 2006' |
| 28 | +] |
| 29 | +DATETIME_INPUT_FORMATS = [ |
| 30 | + "%Y-%m-%d %H:%M:%S", # '2006-10-25 14:30:59' |
| 31 | + "%Y-%m-%d %H:%M:%S.%f", # '2006-10-25 14:30:59.000200' |
| 32 | + "%Y-%m-%d %H:%M", # '2006-10-25 14:30' |
| 33 | + "%m/%d/%Y %H:%M:%S", # '10/25/2006 14:30:59' |
| 34 | + "%m/%d/%Y %H:%M:%S.%f", # '10/25/2006 14:30:59.000200' |
| 35 | + "%m/%d/%Y %H:%M", # '10/25/2006 14:30' |
| 36 | + "%m/%d/%y %H:%M:%S", # '10/25/06 14:30:59' |
| 37 | + "%m/%d/%y %H:%M:%S.%f", # '10/25/06 14:30:59.000200' |
| 38 | + "%m/%d/%y %H:%M", # '10/25/06 14:30' |
| 39 | +] |
| 40 | +TIME_INPUT_FORMATS = [ |
| 41 | + "%H:%M:%S", # '14:30:59' |
| 42 | + "%H:%M:%S.%f", # '14:30:59.000200' |
| 43 | + "%H:%M", # '14:30' |
| 44 | +] |
| 45 | + |
| 46 | +DECIMAL_SEPARATOR = "," |
| 47 | +THOUSAND_SEPARATOR = "\xa0" |
| 48 | +NUMBER_GROUPING = 3 |
0 commit comments