Ticket #31268: formats.py

File formats.py, 949 bytes (added by infosrabah, 4 years ago)

correct format ar-DZ locale for Algeria country

Line 
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
5DATE_FORMAT = 'j F Y'
6TIME_FORMAT = 'H:i'
7DATETIME_FORMAT = 'j F Y H:i'
8YEAR_MONTH_FORMAT = 'F Y'
9MONTH_DAY_FORMAT = 'j F'
10SHORT_DATE_FORMAT = 'j N Y'
11SHORT_DATETIME_FORMAT = 'j N Y H:i'
12FIRST_DAY_OF_WEEK = 0 # Sunday
13
14# The *_INPUT_FORMATS strings use the Python strftime format syntax,
15# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
16DATE_INPUT_FORMATS = [
17 '%Y/%m/%d', '%y/%m/%d', # '2006/10/25', '06/10/25'
18]
19TIME_INPUT_FORMATS = [
20 '%H:%M', # '14:30
21 '%H:%M:%S', # '14:30:59'
22]
23DATETIME_INPUT_FORMATS = [
24 '%Y/%m/%d %H:%M', # '2006/10/25 14:30'
25 '%Y/%m/%d %H:%M:%S', # '2006/10/25 14:30:59'
26]
27DECIMAL_SEPARATOR = ','
28THOUSAND_SEPARATOR = '.'
29NUMBER_GROUPING = 3
Back to Top