repo
stringlengths
7
90
file_url
stringlengths
81
315
file_path
stringlengths
4
228
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 14:38:15
2026-01-05 02:33:18
truncated
bool
2 classes
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/ka/__init__.py
django/conf/locale/ka/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/ja/formats.py
django/conf/locale/ja/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = "Y年n月j日" TIME_FORMAT = "G:i" DATETIME_FORMAT = "Y年n月j日G:i" YEAR_MONTH_FORMAT = "Y年n月" MONTH_DAY_FORMAT = "n月j日" SHORT_DATE_FORMAT = "Y/m/d" SHORT_DATETIME_FORMAT = "Y/m/d G:i" # FIRST_DAY_OF_WEEK = # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior # DATE_INPUT_FORMATS = # TIME_INPUT_FORMATS = # DATETIME_INPUT_FORMATS = DECIMAL_SEPARATOR = "." THOUSAND_SEPARATOR = "," NUMBER_GROUPING = 3
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/ja/__init__.py
django/conf/locale/ja/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/sq/formats.py
django/conf/locale/sq/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = "d F Y" TIME_FORMAT = "g.i.A" # DATETIME_FORMAT = YEAR_MONTH_FORMAT = "F Y" MONTH_DAY_FORMAT = "j F" SHORT_DATE_FORMAT = "Y-m-d" # SHORT_DATETIME_FORMAT = # FIRST_DAY_OF_WEEK = # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior # DATE_INPUT_FORMATS = # TIME_INPUT_FORMATS = # DATETIME_INPUT_FORMATS = DECIMAL_SEPARATOR = "," THOUSAND_SEPARATOR = "." # NUMBER_GROUPING =
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/sq/__init__.py
django/conf/locale/sq/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/pl/formats.py
django/conf/locale/pl/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = "j E Y" TIME_FORMAT = "H:i" DATETIME_FORMAT = "j E Y H:i" YEAR_MONTH_FORMAT = "F Y" MONTH_DAY_FORMAT = "j E" SHORT_DATE_FORMAT = "d-m-Y" SHORT_DATETIME_FORMAT = "d-m-Y H:i" FIRST_DAY_OF_WEEK = 1 # Monday # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior DATE_INPUT_FORMATS = [ "%d.%m.%Y", # '25.10.2006' "%d.%m.%y", # '25.10.06' "%y-%m-%d", # '06-10-25' # "%d. %B %Y", # '25. października 2006' # "%d. %b. %Y", # '25. paź. 2006' ] DATETIME_INPUT_FORMATS = [ "%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' ] DECIMAL_SEPARATOR = "," THOUSAND_SEPARATOR = " " NUMBER_GROUPING = 3
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/pl/__init__.py
django/conf/locale/pl/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/ar/formats.py
django/conf/locale/ar/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = "j F، Y" TIME_FORMAT = "g:i A" # DATETIME_FORMAT = YEAR_MONTH_FORMAT = "F Y" MONTH_DAY_FORMAT = "j F" SHORT_DATE_FORMAT = "d‏/m‏/Y" # SHORT_DATETIME_FORMAT = # FIRST_DAY_OF_WEEK = # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior # DATE_INPUT_FORMATS = # TIME_INPUT_FORMATS = # DATETIME_INPUT_FORMATS = DECIMAL_SEPARATOR = "," THOUSAND_SEPARATOR = "." # NUMBER_GROUPING =
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/ar/__init__.py
django/conf/locale/ar/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/es_PR/formats.py
django/conf/locale/es_PR/formats.py
# This file is distributed under the same license as the Django package. # DATE_FORMAT = r"j \d\e F \d\e Y" TIME_FORMAT = "H:i" DATETIME_FORMAT = r"j \d\e F \d\e Y \a \l\a\s H:i" YEAR_MONTH_FORMAT = r"F \d\e Y" MONTH_DAY_FORMAT = r"j \d\e F" SHORT_DATE_FORMAT = "d/m/Y" SHORT_DATETIME_FORMAT = "d/m/Y H:i" FIRST_DAY_OF_WEEK = 0 # Sunday DATE_INPUT_FORMATS = [ "%d/%m/%Y", # '31/12/2009' "%d/%m/%y", # '31/12/09' ] DATETIME_INPUT_FORMATS = [ "%d/%m/%Y %H:%M:%S", "%d/%m/%Y %H:%M:%S.%f", "%d/%m/%Y %H:%M", "%d/%m/%y %H:%M:%S", "%d/%m/%y %H:%M:%S.%f", "%d/%m/%y %H:%M", ] DECIMAL_SEPARATOR = "." THOUSAND_SEPARATOR = "," NUMBER_GROUPING = 3
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/es_PR/__init__.py
django/conf/locale/es_PR/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/es_NI/formats.py
django/conf/locale/es_NI/formats.py
# This file is distributed under the same license as the Django package. # DATE_FORMAT = r"j \d\e F \d\e Y" TIME_FORMAT = "H:i" DATETIME_FORMAT = r"j \d\e F \d\e Y \a \l\a\s H:i" YEAR_MONTH_FORMAT = r"F \d\e Y" MONTH_DAY_FORMAT = r"j \d\e F" SHORT_DATE_FORMAT = "d/m/Y" SHORT_DATETIME_FORMAT = "d/m/Y H:i" FIRST_DAY_OF_WEEK = 1 # Monday: ISO 8601 DATE_INPUT_FORMATS = [ "%d/%m/%Y", # '25/10/2006' "%d/%m/%y", # '25/10/06' "%Y%m%d", # '20061025' ] DATETIME_INPUT_FORMATS = [ "%d/%m/%Y %H:%M:%S", "%d/%m/%Y %H:%M:%S.%f", "%d/%m/%Y %H:%M", "%d/%m/%y %H:%M:%S", "%d/%m/%y %H:%M:%S.%f", "%d/%m/%y %H:%M", ] DECIMAL_SEPARATOR = "." THOUSAND_SEPARATOR = "," NUMBER_GROUPING = 3
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/es_NI/__init__.py
django/conf/locale/es_NI/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/mn/formats.py
django/conf/locale/mn/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = "d F Y" TIME_FORMAT = "g:i A" # DATETIME_FORMAT = # YEAR_MONTH_FORMAT = # MONTH_DAY_FORMAT = SHORT_DATE_FORMAT = "j M Y" # SHORT_DATETIME_FORMAT = # FIRST_DAY_OF_WEEK = # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior # DATE_INPUT_FORMATS = # TIME_INPUT_FORMATS = # DATETIME_INPUT_FORMATS = # DECIMAL_SEPARATOR = # THOUSAND_SEPARATOR = # NUMBER_GROUPING =
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/mn/__init__.py
django/conf/locale/mn/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/vi/formats.py
django/conf/locale/vi/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = r"\N\gà\y d \t\há\n\g n \nă\m Y" TIME_FORMAT = "H:i" DATETIME_FORMAT = r"H:i \N\gà\y d \t\há\n\g n \nă\m Y" YEAR_MONTH_FORMAT = "F Y" MONTH_DAY_FORMAT = "j F" SHORT_DATE_FORMAT = "d-m-Y" SHORT_DATETIME_FORMAT = "H:i d-m-Y" # FIRST_DAY_OF_WEEK = # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior # DATE_INPUT_FORMATS = # TIME_INPUT_FORMATS = # DATETIME_INPUT_FORMATS = DECIMAL_SEPARATOR = "," THOUSAND_SEPARATOR = "." # NUMBER_GROUPING =
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/vi/__init__.py
django/conf/locale/vi/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/nl/formats.py
django/conf/locale/nl/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = "j F Y" # '20 januari 2009' TIME_FORMAT = "H:i" # '15:23' DATETIME_FORMAT = "j F Y H:i" # '20 januari 2009 15:23' YEAR_MONTH_FORMAT = "F Y" # 'januari 2009' MONTH_DAY_FORMAT = "j F" # '20 januari' SHORT_DATE_FORMAT = "j-n-Y" # '20-1-2009' SHORT_DATETIME_FORMAT = "j-n-Y H:i" # '20-1-2009 15:23' FIRST_DAY_OF_WEEK = 1 # Monday (in Dutch 'maandag') # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior DATE_INPUT_FORMATS = [ "%d-%m-%Y", # '20-01-2009' "%d-%m-%y", # '20-01-09' "%d/%m/%Y", # '20/01/2009' "%d/%m/%y", # '20/01/09' "%Y/%m/%d", # '2009/01/20' # "%d %b %Y", # '20 jan 2009' # "%d %b %y", # '20 jan 09' # "%d %B %Y", # '20 januari 2009' # "%d %B %y", # '20 januari 09' ] # Kept ISO formats as one is in first position TIME_INPUT_FORMATS = [ "%H:%M:%S", # '15:23:35' "%H:%M:%S.%f", # '15:23:35.000200' "%H.%M:%S", # '15.23:35' "%H.%M:%S.%f", # '15.23:35.000200' "%H.%M", # '15.23' "%H:%M", # '15:23' ] DATETIME_INPUT_FORMATS = [ # With time in %H:%M:%S : "%d-%m-%Y %H:%M:%S", # '20-01-2009 15:23:35' "%d-%m-%y %H:%M:%S", # '20-01-09 15:23:35' "%Y-%m-%d %H:%M:%S", # '2009-01-20 15:23:35' "%d/%m/%Y %H:%M:%S", # '20/01/2009 15:23:35' "%d/%m/%y %H:%M:%S", # '20/01/09 15:23:35' "%Y/%m/%d %H:%M:%S", # '2009/01/20 15:23:35' # "%d %b %Y %H:%M:%S", # '20 jan 2009 15:23:35' # "%d %b %y %H:%M:%S", # '20 jan 09 15:23:35' # "%d %B %Y %H:%M:%S", # '20 januari 2009 15:23:35' # "%d %B %y %H:%M:%S", # '20 januari 2009 15:23:35' # With time in %H:%M:%S.%f : "%d-%m-%Y %H:%M:%S.%f", # '20-01-2009 15:23:35.000200' "%d-%m-%y %H:%M:%S.%f", # '20-01-09 15:23:35.000200' "%Y-%m-%d %H:%M:%S.%f", # '2009-01-20 15:23:35.000200' "%d/%m/%Y %H:%M:%S.%f", # '20/01/2009 15:23:35.000200' "%d/%m/%y %H:%M:%S.%f", # '20/01/09 15:23:35.000200' "%Y/%m/%d %H:%M:%S.%f", # '2009/01/20 15:23:35.000200' # With time in %H.%M:%S : "%d-%m-%Y %H.%M:%S", # '20-01-2009 15.23:35' "%d-%m-%y %H.%M:%S", # '20-01-09 15.23:35' "%d/%m/%Y %H.%M:%S", # '20/01/2009 15.23:35' "%d/%m/%y %H.%M:%S", # '20/01/09 15.23:35' # "%d %b %Y %H.%M:%S", # '20 jan 2009 15.23:35' # "%d %b %y %H.%M:%S", # '20 jan 09 15.23:35' # "%d %B %Y %H.%M:%S", # '20 januari 2009 15.23:35' # "%d %B %y %H.%M:%S", # '20 januari 2009 15.23:35' # With time in %H.%M:%S.%f : "%d-%m-%Y %H.%M:%S.%f", # '20-01-2009 15.23:35.000200' "%d-%m-%y %H.%M:%S.%f", # '20-01-09 15.23:35.000200' "%d/%m/%Y %H.%M:%S.%f", # '20/01/2009 15.23:35.000200' "%d/%m/%y %H.%M:%S.%f", # '20/01/09 15.23:35.000200' # With time in %H:%M : "%d-%m-%Y %H:%M", # '20-01-2009 15:23' "%d-%m-%y %H:%M", # '20-01-09 15:23' "%Y-%m-%d %H:%M", # '2009-01-20 15:23' "%d/%m/%Y %H:%M", # '20/01/2009 15:23' "%d/%m/%y %H:%M", # '20/01/09 15:23' "%Y/%m/%d %H:%M", # '2009/01/20 15:23' # "%d %b %Y %H:%M", # '20 jan 2009 15:23' # "%d %b %y %H:%M", # '20 jan 09 15:23' # "%d %B %Y %H:%M", # '20 januari 2009 15:23' # "%d %B %y %H:%M", # '20 januari 2009 15:23' # With time in %H.%M : "%d-%m-%Y %H.%M", # '20-01-2009 15.23' "%d-%m-%y %H.%M", # '20-01-09 15.23' "%d/%m/%Y %H.%M", # '20/01/2009 15.23' "%d/%m/%y %H.%M", # '20/01/09 15.23' # "%d %b %Y %H.%M", # '20 jan 2009 15.23' # "%d %b %y %H.%M", # '20 jan 09 15.23' # "%d %B %Y %H.%M", # '20 januari 2009 15.23' # "%d %B %y %H.%M", # '20 januari 2009 15.23' ] DECIMAL_SEPARATOR = "," THOUSAND_SEPARATOR = "." NUMBER_GROUPING = 3
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/nl/__init__.py
django/conf/locale/nl/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/fr/formats.py
django/conf/locale/fr/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = "j F Y" TIME_FORMAT = "H:i" DATETIME_FORMAT = "j F Y H:i" YEAR_MONTH_FORMAT = "F Y" MONTH_DAY_FORMAT = "j F" SHORT_DATE_FORMAT = "d/m/Y" SHORT_DATETIME_FORMAT = "d/m/Y H:i" FIRST_DAY_OF_WEEK = 1 # Monday # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior DATE_INPUT_FORMATS = [ "%d/%m/%Y", # '25/10/2006' "%d/%m/%y", # '25/10/06' ] DATETIME_INPUT_FORMATS = [ "%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' ] DECIMAL_SEPARATOR = "," THOUSAND_SEPARATOR = "\xa0" # non-breaking space NUMBER_GROUPING = 3
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/fr/__init__.py
django/conf/locale/fr/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/pt/formats.py
django/conf/locale/pt/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = r"j \d\e F \d\e Y" TIME_FORMAT = "H:i" DATETIME_FORMAT = r"j \d\e F \d\e Y à\s H:i" YEAR_MONTH_FORMAT = r"F \d\e Y" MONTH_DAY_FORMAT = r"j \d\e F" SHORT_DATE_FORMAT = "d/m/Y" SHORT_DATETIME_FORMAT = "d/m/Y H:i" FIRST_DAY_OF_WEEK = 0 # Sunday # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior # Kept ISO formats as they are in first position DATE_INPUT_FORMATS = [ "%Y-%m-%d", # '2006-10-25' "%d/%m/%Y", # '25/10/2006' "%d/%m/%y", # '25/10/06' # "%d de %b de %Y", # '25 de Out de 2006' # "%d de %b, %Y", # '25 Out, 2006' # "%d de %B de %Y", # '25 de Outubro de 2006' # "%d de %B, %Y", # '25 de Outubro, 2006' ] DATETIME_INPUT_FORMATS = [ "%Y-%m-%d %H:%M:%S", # '2006-10-25 14:30:59' "%Y-%m-%d %H:%M:%S.%f", # '2006-10-25 14:30:59.000200' "%Y-%m-%d %H:%M", # '2006-10-25 14:30' "%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' "%d/%m/%y %H:%M:%S", # '25/10/06 14:30:59' "%d/%m/%y %H:%M:%S.%f", # '25/10/06 14:30:59.000200' "%d/%m/%y %H:%M", # '25/10/06 14:30' ] DECIMAL_SEPARATOR = "," THOUSAND_SEPARATOR = "." NUMBER_GROUPING = 3
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/pt/__init__.py
django/conf/locale/pt/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/sr_Latn/formats.py
django/conf/locale/sr_Latn/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = "j. F Y." TIME_FORMAT = "H:i" DATETIME_FORMAT = "j. F Y. H:i" YEAR_MONTH_FORMAT = "F Y." MONTH_DAY_FORMAT = "j. F" SHORT_DATE_FORMAT = "j.m.Y." SHORT_DATETIME_FORMAT = "j.m.Y. H:i" FIRST_DAY_OF_WEEK = 1 # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior DATE_INPUT_FORMATS = [ "%d.%m.%Y.", # '25.10.2006.' "%d.%m.%y.", # '25.10.06.' "%d. %m. %Y.", # '25. 10. 2006.' "%d. %m. %y.", # '25. 10. 06.' # "%d. %b %y.", # '25. Oct 06.' # "%d. %B %y.", # '25. October 06.' # "%d. %b '%y.", # '25. Oct '06.' # "%d. %B '%y.", #'25. October '06.' # "%d. %b %Y.", # '25. Oct 2006.' # "%d. %B %Y.", # '25. October 2006.' ] DATETIME_INPUT_FORMATS = [ "%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' "%d.%m.%y. %H:%M:%S", # '25.10.06. 14:30:59' "%d.%m.%y. %H:%M:%S.%f", # '25.10.06. 14:30:59.000200' "%d.%m.%y. %H:%M", # '25.10.06. 14:30' "%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' "%d. %m. %y. %H:%M:%S", # '25. 10. 06. 14:30:59' "%d. %m. %y. %H:%M:%S.%f", # '25. 10. 06. 14:30:59.000200' "%d. %m. %y. %H:%M", # '25. 10. 06. 14:30' ] DECIMAL_SEPARATOR = "," THOUSAND_SEPARATOR = "." NUMBER_GROUPING = 3
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/sr_Latn/__init__.py
django/conf/locale/sr_Latn/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/it/formats.py
django/conf/locale/it/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = "d F Y" # 25 Ottobre 2006 TIME_FORMAT = "H:i" # 14:30 DATETIME_FORMAT = "l d F Y H:i" # Mercoledì 25 Ottobre 2006 14:30 YEAR_MONTH_FORMAT = "F Y" # Ottobre 2006 MONTH_DAY_FORMAT = "j F" # 25 Ottobre SHORT_DATE_FORMAT = "d/m/Y" # 25/12/2009 SHORT_DATETIME_FORMAT = "d/m/Y H:i" # 25/10/2009 14:30 FIRST_DAY_OF_WEEK = 1 # Lunedì # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior DATE_INPUT_FORMATS = [ "%d/%m/%Y", # '25/10/2006' "%Y/%m/%d", # '2006/10/25' "%d-%m-%Y", # '25-10-2006' "%Y-%m-%d", # '2006-10-25' "%d-%m-%y", # '25-10-06' "%d/%m/%y", # '25/10/06' ] DATETIME_INPUT_FORMATS = [ "%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' "%d/%m/%y %H:%M:%S", # '25/10/06 14:30:59' "%d/%m/%y %H:%M:%S.%f", # '25/10/06 14:30:59.000200' "%d/%m/%y %H:%M", # '25/10/06 14:30' "%Y-%m-%d %H:%M:%S", # '2006-10-25 14:30:59' "%Y-%m-%d %H:%M:%S.%f", # '2006-10-25 14:30:59.000200' "%Y-%m-%d %H:%M", # '2006-10-25 14:30' "%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' "%d-%m-%y %H:%M:%S", # '25-10-06 14:30:59' "%d-%m-%y %H:%M:%S.%f", # '25-10-06 14:30:59.000200' "%d-%m-%y %H:%M", # '25-10-06 14:30' ] DECIMAL_SEPARATOR = "," THOUSAND_SEPARATOR = "." NUMBER_GROUPING = 3
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/it/__init__.py
django/conf/locale/it/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/lt/formats.py
django/conf/locale/lt/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = r"Y \m. E j \d." TIME_FORMAT = "H:i" DATETIME_FORMAT = r"Y \m. E j \d., H:i" YEAR_MONTH_FORMAT = r"Y \m. F" MONTH_DAY_FORMAT = r"E j \d." SHORT_DATE_FORMAT = "Y-m-d" SHORT_DATETIME_FORMAT = "Y-m-d H:i" FIRST_DAY_OF_WEEK = 1 # Monday # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior DATE_INPUT_FORMATS = [ "%Y-%m-%d", # '2006-10-25' "%d.%m.%Y", # '25.10.2006' "%d.%m.%y", # '25.10.06' ] TIME_INPUT_FORMATS = [ "%H:%M:%S", # '14:30:59' "%H:%M:%S.%f", # '14:30:59.000200' "%H:%M", # '14:30' "%H.%M.%S", # '14.30.59' "%H.%M.%S.%f", # '14.30.59.000200' "%H.%M", # '14.30' ] DATETIME_INPUT_FORMATS = [ "%Y-%m-%d %H:%M:%S", # '2006-10-25 14:30:59' "%Y-%m-%d %H:%M:%S.%f", # '2006-10-25 14:30:59.000200' "%Y-%m-%d %H:%M", # '2006-10-25 14:30' "%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' "%d.%m.%y %H:%M:%S", # '25.10.06 14:30:59' "%d.%m.%y %H:%M:%S.%f", # '25.10.06 14:30:59.000200' "%d.%m.%y %H:%M", # '25.10.06 14:30' "%d.%m.%y %H.%M.%S", # '25.10.06 14.30.59' "%d.%m.%y %H.%M.%S.%f", # '25.10.06 14.30.59.000200' "%d.%m.%y %H.%M", # '25.10.06 14.30' ] DECIMAL_SEPARATOR = "," THOUSAND_SEPARATOR = "." NUMBER_GROUPING = 3
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/lt/__init__.py
django/conf/locale/lt/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/hu/formats.py
django/conf/locale/hu/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = "Y. F j." TIME_FORMAT = "H:i" DATETIME_FORMAT = "Y. F j. H:i" YEAR_MONTH_FORMAT = "Y. F" MONTH_DAY_FORMAT = "F j." SHORT_DATE_FORMAT = "Y.m.d." SHORT_DATETIME_FORMAT = "Y.m.d. H:i" FIRST_DAY_OF_WEEK = 1 # Monday # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior DATE_INPUT_FORMATS = [ "%Y.%m.%d.", # '2006.10.25.' ] TIME_INPUT_FORMATS = [ "%H:%M:%S", # '14:30:59' "%H:%M", # '14:30' ] DATETIME_INPUT_FORMATS = [ "%Y.%m.%d. %H:%M:%S", # '2006.10.25. 14:30:59' "%Y.%m.%d. %H:%M:%S.%f", # '2006.10.25. 14:30:59.000200' "%Y.%m.%d. %H:%M", # '2006.10.25. 14:30' ] DECIMAL_SEPARATOR = "," THOUSAND_SEPARATOR = " " # Non-breaking space NUMBER_GROUPING = 3
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/hu/__init__.py
django/conf/locale/hu/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/zh_Hans/formats.py
django/conf/locale/zh_Hans/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = "Y年n月j日" # 2016年9月5日 TIME_FORMAT = "H:i" # 20:45 DATETIME_FORMAT = "Y年n月j日 H:i" # 2016年9月5日 20:45 YEAR_MONTH_FORMAT = "Y年n月" # 2016年9月 MONTH_DAY_FORMAT = "m月j日" # 9月5日 SHORT_DATE_FORMAT = "Y年n月j日" # 2016年9月5日 SHORT_DATETIME_FORMAT = "Y年n月j日 H:i" # 2016年9月5日 20:45 FIRST_DAY_OF_WEEK = 1 # 星期一 (Monday) # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior DATE_INPUT_FORMATS = [ "%Y/%m/%d", # '2016/09/05' "%Y-%m-%d", # '2016-09-05' "%Y年%n月%j日", # '2016年9月5日' ] TIME_INPUT_FORMATS = [ "%H:%M", # '20:45' "%H:%M:%S", # '20:45:29' "%H:%M:%S.%f", # '20:45:29.000200' ] DATETIME_INPUT_FORMATS = [ "%Y/%m/%d %H:%M", # '2016/09/05 20:45' "%Y-%m-%d %H:%M", # '2016-09-05 20:45' "%Y年%n月%j日 %H:%M", # '2016年9月5日 14:45' "%Y/%m/%d %H:%M:%S", # '2016/09/05 20:45:29' "%Y-%m-%d %H:%M:%S", # '2016-09-05 20:45:29' "%Y年%n月%j日 %H:%M:%S", # '2016年9月5日 20:45:29' "%Y/%m/%d %H:%M:%S.%f", # '2016/09/05 20:45:29.000200' "%Y-%m-%d %H:%M:%S.%f", # '2016-09-05 20:45:29.000200' "%Y年%n月%j日 %H:%n:%S.%f", # '2016年9月5日 20:45:29.000200' ] DECIMAL_SEPARATOR = "." THOUSAND_SEPARATOR = "" NUMBER_GROUPING = 4
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/zh_Hans/__init__.py
django/conf/locale/zh_Hans/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/el/formats.py
django/conf/locale/el/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = "d/m/Y" TIME_FORMAT = "P" DATETIME_FORMAT = "d/m/Y P" YEAR_MONTH_FORMAT = "F Y" MONTH_DAY_FORMAT = "j F" SHORT_DATE_FORMAT = "d/m/Y" SHORT_DATETIME_FORMAT = "d/m/Y P" FIRST_DAY_OF_WEEK = 0 # Sunday # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior DATE_INPUT_FORMATS = [ "%d/%m/%Y", # '25/10/2006' "%d/%m/%y", # '25/10/06' "%Y-%m-%d", # '2006-10-25' ] DATETIME_INPUT_FORMATS = [ "%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' "%d/%m/%y %H:%M:%S", # '25/10/06 14:30:59' "%d/%m/%y %H:%M:%S.%f", # '25/10/06 14:30:59.000200' "%d/%m/%y %H:%M", # '25/10/06 14:30' "%Y-%m-%d %H:%M:%S", # '2006-10-25 14:30:59' "%Y-%m-%d %H:%M:%S.%f", # '2006-10-25 14:30:59.000200' "%Y-%m-%d %H:%M", # '2006-10-25 14:30' ] DECIMAL_SEPARATOR = "," THOUSAND_SEPARATOR = "." NUMBER_GROUPING = 3
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/el/__init__.py
django/conf/locale/el/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/ca/formats.py
django/conf/locale/ca/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = r"j E \d\e Y" TIME_FORMAT = "G:i" DATETIME_FORMAT = r"j E \d\e Y \a \l\e\s G:i" YEAR_MONTH_FORMAT = r"F \d\e\l Y" MONTH_DAY_FORMAT = r"j E" SHORT_DATE_FORMAT = "d/m/Y" SHORT_DATETIME_FORMAT = "d/m/Y G:i" FIRST_DAY_OF_WEEK = 1 # Monday # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior DATE_INPUT_FORMATS = [ "%d/%m/%Y", # '31/12/2009' "%d/%m/%y", # '31/12/09' ] DATETIME_INPUT_FORMATS = [ "%d/%m/%Y %H:%M:%S", "%d/%m/%Y %H:%M:%S.%f", "%d/%m/%Y %H:%M", "%d/%m/%y %H:%M:%S", "%d/%m/%y %H:%M:%S.%f", "%d/%m/%y %H:%M", ] DECIMAL_SEPARATOR = "," THOUSAND_SEPARATOR = "." NUMBER_GROUPING = 3
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/ca/__init__.py
django/conf/locale/ca/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/ig/formats.py
django/conf/locale/ig/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = "j F Y" TIME_FORMAT = "P" DATETIME_FORMAT = "j F Y P" YEAR_MONTH_FORMAT = "F Y" MONTH_DAY_FORMAT = "j F" SHORT_DATE_FORMAT = "d.m.Y" SHORT_DATETIME_FORMAT = "d.m.Y H:i" FIRST_DAY_OF_WEEK = 1 # Monday # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior DATE_INPUT_FORMATS = [ "%d.%m.%Y", # '25.10.2006' "%d.%m.%y", # '25.10.06' ] DATETIME_INPUT_FORMATS = [ "%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' "%d.%m.%Y", # '25.10.2006' "%d.%m.%y %H:%M:%S", # '25.10.06 14:30:59' "%d.%m.%y %H:%M:%S.%f", # '25.10.06 14:30:59.000200' "%d.%m.%y %H:%M", # '25.10.06 14:30' "%d.%m.%y", # '25.10.06' ] DECIMAL_SEPARATOR = "." THOUSAND_SEPARATOR = "," NUMBER_GROUPING = 3
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/ig/__init__.py
django/conf/locale/ig/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/eo/formats.py
django/conf/locale/eo/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = r"j\-\a \d\e F Y" # '26-a de julio 1887' TIME_FORMAT = "H:i" # '18:59' DATETIME_FORMAT = r"j\-\a \d\e F Y\, \j\e H:i" # '26-a de julio 1887, je 18:59' YEAR_MONTH_FORMAT = r"F \d\e Y" # 'julio de 1887' MONTH_DAY_FORMAT = r"j\-\a \d\e F" # '26-a de julio' SHORT_DATE_FORMAT = "Y-m-d" # '1887-07-26' SHORT_DATETIME_FORMAT = "Y-m-d H:i" # '1887-07-26 18:59' FIRST_DAY_OF_WEEK = 1 # Monday (lundo) # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior DATE_INPUT_FORMATS = [ "%Y-%m-%d", # '1887-07-26' "%y-%m-%d", # '87-07-26' "%Y %m %d", # '1887 07 26' "%Y.%m.%d", # '1887.07.26' "%d-a de %b %Y", # '26-a de jul 1887' "%d %b %Y", # '26 jul 1887' "%d-a de %B %Y", # '26-a de julio 1887' "%d %B %Y", # '26 julio 1887' "%d %m %Y", # '26 07 1887' "%d/%m/%Y", # '26/07/1887' ] TIME_INPUT_FORMATS = [ "%H:%M:%S", # '18:59:00' "%H:%M", # '18:59' ] DATETIME_INPUT_FORMATS = [ "%Y-%m-%d %H:%M:%S", # '1887-07-26 18:59:00' "%Y-%m-%d %H:%M", # '1887-07-26 18:59' "%Y.%m.%d %H:%M:%S", # '1887.07.26 18:59:00' "%Y.%m.%d %H:%M", # '1887.07.26 18:59' "%d/%m/%Y %H:%M:%S", # '26/07/1887 18:59:00' "%d/%m/%Y %H:%M", # '26/07/1887 18:59' "%y-%m-%d %H:%M:%S", # '87-07-26 18:59:00' "%y-%m-%d %H:%M", # '87-07-26 18:59' ] DECIMAL_SEPARATOR = "," THOUSAND_SEPARATOR = "\xa0" # non-breaking space NUMBER_GROUPING = 3
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/eo/__init__.py
django/conf/locale/eo/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/ky/formats.py
django/conf/locale/ky/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = "j E Y ж." TIME_FORMAT = "G:i" DATETIME_FORMAT = "j E Y ж. G:i" YEAR_MONTH_FORMAT = "F Y ж." MONTH_DAY_FORMAT = "j F" SHORT_DATE_FORMAT = "d.m.Y" SHORT_DATETIME_FORMAT = "d.m.Y H:i" FIRST_DAY_OF_WEEK = 1 # Дүйшөмбү, Monday # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior DATE_INPUT_FORMATS = [ "%d.%m.%Y", # '25.10.2006' "%d.%m.%y", # '25.10.06' ] DATETIME_INPUT_FORMATS = [ "%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' "%d.%m.%Y", # '25.10.2006' "%d.%m.%y %H:%M:%S", # '25.10.06 14:30:59' "%d.%m.%y %H:%M:%S.%f", # '25.10.06 14:30:59.000200' "%d.%m.%y %H:%M", # '25.10.06 14:30' "%d.%m.%y", # '25.10.06' ] DECIMAL_SEPARATOR = "." THOUSAND_SEPARATOR = "\xa0" # non-breaking space NUMBER_GROUPING = 3
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/ky/__init__.py
django/conf/locale/ky/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/sr/formats.py
django/conf/locale/sr/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = "j. F Y." TIME_FORMAT = "H:i" DATETIME_FORMAT = "j. F Y. H:i" YEAR_MONTH_FORMAT = "F Y." MONTH_DAY_FORMAT = "j. F" SHORT_DATE_FORMAT = "j.m.Y." SHORT_DATETIME_FORMAT = "j.m.Y. H:i" FIRST_DAY_OF_WEEK = 1 # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior DATE_INPUT_FORMATS = [ "%d.%m.%Y.", # '25.10.2006.' "%d.%m.%y.", # '25.10.06.' "%d. %m. %Y.", # '25. 10. 2006.' "%d. %m. %y.", # '25. 10. 06.' # "%d. %b %y.", # '25. Oct 06.' # "%d. %B %y.", # '25. October 06.' # "%d. %b '%y.", # '25. Oct '06.' # "%d. %B '%y.", # '25. October '06.' # "%d. %b %Y.", # '25. Oct 2006.' # "%d. %B %Y.", # '25. October 2006.' ] DATETIME_INPUT_FORMATS = [ "%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' "%d.%m.%y. %H:%M:%S", # '25.10.06. 14:30:59' "%d.%m.%y. %H:%M:%S.%f", # '25.10.06. 14:30:59.000200' "%d.%m.%y. %H:%M", # '25.10.06. 14:30' "%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' "%d. %m. %y. %H:%M:%S", # '25. 10. 06. 14:30:59' "%d. %m. %y. %H:%M:%S.%f", # '25. 10. 06. 14:30:59.000200' "%d. %m. %y. %H:%M", # '25. 10. 06. 14:30' ] DECIMAL_SEPARATOR = "," THOUSAND_SEPARATOR = "." NUMBER_GROUPING = 3
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/sr/__init__.py
django/conf/locale/sr/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/en_GB/formats.py
django/conf/locale/en_GB/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = "j M Y" # '25 Oct 2006' TIME_FORMAT = "P" # '2:30 p.m.' DATETIME_FORMAT = "j M Y, P" # '25 Oct 2006, 2:30 p.m.' 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 p.m.' FIRST_DAY_OF_WEEK = 1 # Monday # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior DATE_INPUT_FORMATS = [ "%d/%m/%Y", # '25/10/2006' "%d/%m/%y", # '25/10/06' # "%b %d %Y", # 'Oct 25 2006' # "%b %d, %Y", # 'Oct 25, 2006' # "%d %b %Y", # '25 Oct 2006' # "%d %b, %Y", # '25 Oct, 2006' # "%B %d %Y", # 'October 25 2006' # "%B %d, %Y", # 'October 25, 2006' # "%d %B %Y", # '25 October 2006' # "%d %B, %Y", # '25 October, 2006' ] DATETIME_INPUT_FORMATS = [ "%Y-%m-%d %H:%M:%S", # '2006-10-25 14:30:59' "%Y-%m-%d %H:%M:%S.%f", # '2006-10-25 14:30:59.000200' "%Y-%m-%d %H:%M", # '2006-10-25 14:30' "%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' "%d/%m/%y %H:%M:%S", # '25/10/06 14:30:59' "%d/%m/%y %H:%M:%S.%f", # '25/10/06 14:30:59.000200' "%d/%m/%y %H:%M", # '25/10/06 14:30' ] DECIMAL_SEPARATOR = "." THOUSAND_SEPARATOR = "," NUMBER_GROUPING = 3
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/en_GB/__init__.py
django/conf/locale/en_GB/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/hr/formats.py
django/conf/locale/hr/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = "j. E Y." TIME_FORMAT = "H:i" DATETIME_FORMAT = "j. E Y. H:i" YEAR_MONTH_FORMAT = "F Y." MONTH_DAY_FORMAT = "j. F" SHORT_DATE_FORMAT = "j.m.Y." SHORT_DATETIME_FORMAT = "j.m.Y. H:i" FIRST_DAY_OF_WEEK = 1 # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior # Kept ISO formats as they are in first position DATE_INPUT_FORMATS = [ "%Y-%m-%d", # '2006-10-25' "%d.%m.%Y.", # '25.10.2006.' "%d.%m.%y.", # '25.10.06.' "%d. %m. %Y.", # '25. 10. 2006.' "%d. %m. %y.", # '25. 10. 06.' ] DATETIME_INPUT_FORMATS = [ "%Y-%m-%d %H:%M:%S", # '2006-10-25 14:30:59' "%Y-%m-%d %H:%M:%S.%f", # '2006-10-25 14:30:59.000200' "%Y-%m-%d %H:%M", # '2006-10-25 14:30' "%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' "%d.%m.%y. %H:%M:%S", # '25.10.06. 14:30:59' "%d.%m.%y. %H:%M:%S.%f", # '25.10.06. 14:30:59.000200' "%d.%m.%y. %H:%M", # '25.10.06. 14:30' "%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' "%d. %m. %y. %H:%M:%S", # '25. 10. 06. 14:30:59' "%d. %m. %y. %H:%M:%S.%f", # '25. 10. 06. 14:30:59.000200' "%d. %m. %y. %H:%M", # '25. 10. 06. 14:30' ] DECIMAL_SEPARATOR = "," THOUSAND_SEPARATOR = "." NUMBER_GROUPING = 3
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/hr/__init__.py
django/conf/locale/hr/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/nn/formats.py
django/conf/locale/nn/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = "j. F Y" TIME_FORMAT = "H:i" DATETIME_FORMAT = "j. F Y H:i" YEAR_MONTH_FORMAT = "F Y" MONTH_DAY_FORMAT = "j. F" SHORT_DATE_FORMAT = "d.m.Y" SHORT_DATETIME_FORMAT = "d.m.Y H:i" FIRST_DAY_OF_WEEK = 1 # Monday # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior # Kept ISO formats as they are in first position DATE_INPUT_FORMATS = [ "%Y-%m-%d", # '2006-10-25' "%d.%m.%Y", # '25.10.2006' "%d.%m.%y", # '25.10.06' # "%d. %b %Y", # '25. okt 2006' # "%d %b %Y", # '25 okt 2006' # "%d. %b. %Y", # '25. okt. 2006' # "%d %b. %Y", # '25 okt. 2006' # "%d. %B %Y", # '25. oktober 2006' # "%d %B %Y", # '25 oktober 2006' ] DATETIME_INPUT_FORMATS = [ "%Y-%m-%d %H:%M:%S", # '2006-10-25 14:30:59' "%Y-%m-%d %H:%M:%S.%f", # '2006-10-25 14:30:59.000200' "%Y-%m-%d %H:%M", # '2006-10-25 14:30' "%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' "%d.%m.%y %H:%M:%S", # '25.10.06 14:30:59' "%d.%m.%y %H:%M:%S.%f", # '25.10.06 14:30:59.000200' "%d.%m.%y %H:%M", # '25.10.06 14:30' ] DECIMAL_SEPARATOR = "," THOUSAND_SEPARATOR = "\xa0" # non-breaking space NUMBER_GROUPING = 3
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/nn/__init__.py
django/conf/locale/nn/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/bs/formats.py
django/conf/locale/bs/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = "j. N Y." TIME_FORMAT = "G:i" DATETIME_FORMAT = "j. N. Y. G:i T" YEAR_MONTH_FORMAT = "F Y." MONTH_DAY_FORMAT = "j. F" SHORT_DATE_FORMAT = "Y M j" # SHORT_DATETIME_FORMAT = # FIRST_DAY_OF_WEEK = # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior # DATE_INPUT_FORMATS = # TIME_INPUT_FORMATS = # DATETIME_INPUT_FORMATS = DECIMAL_SEPARATOR = "," THOUSAND_SEPARATOR = "." # NUMBER_GROUPING =
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/bs/__init__.py
django/conf/locale/bs/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/ro/formats.py
django/conf/locale/ro/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = "j F Y" TIME_FORMAT = "H:i" DATETIME_FORMAT = "j F Y, H:i" YEAR_MONTH_FORMAT = "F Y" MONTH_DAY_FORMAT = "j F" SHORT_DATE_FORMAT = "d.m.Y" SHORT_DATETIME_FORMAT = "d.m.Y, H:i" FIRST_DAY_OF_WEEK = 1 # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior DATE_INPUT_FORMATS = [ "%d.%m.%Y", "%d.%b.%Y", "%d %B %Y", "%A, %d %B %Y", ] TIME_INPUT_FORMATS = [ "%H:%M", "%H:%M:%S", "%H:%M:%S.%f", ] DATETIME_INPUT_FORMATS = [ "%d.%m.%Y, %H:%M", "%d.%m.%Y, %H:%M:%S", "%d.%B.%Y, %H:%M", "%d.%B.%Y, %H:%M:%S", ] DECIMAL_SEPARATOR = "," THOUSAND_SEPARATOR = "." NUMBER_GROUPING = 3
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/ro/__init__.py
django/conf/locale/ro/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/zh_Hant/formats.py
django/conf/locale/zh_Hant/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = "Y年n月j日" # 2016年9月5日 TIME_FORMAT = "H:i" # 20:45 DATETIME_FORMAT = "Y年n月j日 H:i" # 2016年9月5日 20:45 YEAR_MONTH_FORMAT = "Y年n月" # 2016年9月 MONTH_DAY_FORMAT = "m月j日" # 9月5日 SHORT_DATE_FORMAT = "Y年n月j日" # 2016年9月5日 SHORT_DATETIME_FORMAT = "Y年n月j日 H:i" # 2016年9月5日 20:45 FIRST_DAY_OF_WEEK = 1 # 星期一 (Monday) # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior DATE_INPUT_FORMATS = [ "%Y/%m/%d", # '2016/09/05' "%Y-%m-%d", # '2016-09-05' "%Y年%n月%j日", # '2016年9月5日' ] TIME_INPUT_FORMATS = [ "%H:%M", # '20:45' "%H:%M:%S", # '20:45:29' "%H:%M:%S.%f", # '20:45:29.000200' ] DATETIME_INPUT_FORMATS = [ "%Y/%m/%d %H:%M", # '2016/09/05 20:45' "%Y-%m-%d %H:%M", # '2016-09-05 20:45' "%Y年%n月%j日 %H:%M", # '2016年9月5日 14:45' "%Y/%m/%d %H:%M:%S", # '2016/09/05 20:45:29' "%Y-%m-%d %H:%M:%S", # '2016-09-05 20:45:29' "%Y年%n月%j日 %H:%M:%S", # '2016年9月5日 20:45:29' "%Y/%m/%d %H:%M:%S.%f", # '2016/09/05 20:45:29.000200' "%Y-%m-%d %H:%M:%S.%f", # '2016-09-05 20:45:29.000200' "%Y年%n月%j日 %H:%n:%S.%f", # '2016年9月5日 20:45:29.000200' ] DECIMAL_SEPARATOR = "." THOUSAND_SEPARATOR = "" NUMBER_GROUPING = 4
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/zh_Hant/__init__.py
django/conf/locale/zh_Hant/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/ko/formats.py
django/conf/locale/ko/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = "Y년 n월 j일" TIME_FORMAT = "A g:i" DATETIME_FORMAT = "Y년 n월 j일 g:i A" YEAR_MONTH_FORMAT = "Y년 n월" MONTH_DAY_FORMAT = "n월 j일" SHORT_DATE_FORMAT = "Y-n-j" SHORT_DATETIME_FORMAT = "Y-n-j H:i" # FIRST_DAY_OF_WEEK = # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior # Kept ISO formats as they are in first position DATE_INPUT_FORMATS = [ "%Y-%m-%d", # '2006-10-25' "%m/%d/%Y", # '10/25/2006' "%m/%d/%y", # '10/25/06' # "%b %d %Y", # 'Oct 25 2006' # "%b %d, %Y", # 'Oct 25, 2006' # "%d %b %Y", # '25 Oct 2006' # "%d %b, %Y", #'25 Oct, 2006' # "%B %d %Y", # 'October 25 2006' # "%B %d, %Y", #'October 25, 2006' # "%d %B %Y", # '25 October 2006' # "%d %B, %Y", # '25 October, 2006' "%Y년 %m월 %d일", # '2006년 10월 25일', with localized suffix. ] TIME_INPUT_FORMATS = [ "%H:%M:%S", # '14:30:59' "%H:%M:%S.%f", # '14:30:59.000200' "%H:%M", # '14:30' "%H시 %M분 %S초", # '14시 30분 59초' "%H시 %M분", # '14시 30분' ] DATETIME_INPUT_FORMATS = [ "%Y-%m-%d %H:%M:%S", # '2006-10-25 14:30:59' "%Y-%m-%d %H:%M:%S.%f", # '2006-10-25 14:30:59.000200' "%Y-%m-%d %H:%M", # '2006-10-25 14:30' "%m/%d/%Y %H:%M:%S", # '10/25/2006 14:30:59' "%m/%d/%Y %H:%M:%S.%f", # '10/25/2006 14:30:59.000200' "%m/%d/%Y %H:%M", # '10/25/2006 14:30' "%m/%d/%y %H:%M:%S", # '10/25/06 14:30:59' "%m/%d/%y %H:%M:%S.%f", # '10/25/06 14:30:59.000200' "%m/%d/%y %H:%M", # '10/25/06 14:30' "%Y년 %m월 %d일 %H시 %M분 %S초", # '2006년 10월 25일 14시 30분 59초' "%Y년 %m월 %d일 %H시 %M분", # '2006년 10월 25일 14시 30분' ] DECIMAL_SEPARATOR = "." THOUSAND_SEPARATOR = "," NUMBER_GROUPING = 3
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/ko/__init__.py
django/conf/locale/ko/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/is/formats.py
django/conf/locale/is/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = "j. F Y" TIME_FORMAT = "H:i" # DATETIME_FORMAT = YEAR_MONTH_FORMAT = "F Y" MONTH_DAY_FORMAT = "j. F" SHORT_DATE_FORMAT = "j.n.Y" # SHORT_DATETIME_FORMAT = # FIRST_DAY_OF_WEEK = # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior # DATE_INPUT_FORMATS = # TIME_INPUT_FORMATS = # DATETIME_INPUT_FORMATS = DECIMAL_SEPARATOR = "," THOUSAND_SEPARATOR = "." NUMBER_GROUPING = 3
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/is/__init__.py
django/conf/locale/is/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/id/formats.py
django/conf/locale/id/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = "j N Y" DATETIME_FORMAT = "j N Y, G.i" TIME_FORMAT = "G.i" YEAR_MONTH_FORMAT = "F Y" MONTH_DAY_FORMAT = "j F" SHORT_DATE_FORMAT = "d-m-Y" SHORT_DATETIME_FORMAT = "d-m-Y G.i" FIRST_DAY_OF_WEEK = 1 # Monday # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior DATE_INPUT_FORMATS = [ "%d-%m-%Y", # '25-10-2009' "%d/%m/%Y", # '25/10/2009' "%d-%m-%y", # '25-10-09' "%d/%m/%y", # '25/10/09' "%d %b %Y", # '25 Oct 2006', "%d %B %Y", # '25 October 2006' "%m/%d/%y", # '10/25/06' "%m/%d/%Y", # '10/25/2009' ] TIME_INPUT_FORMATS = [ "%H.%M.%S", # '14.30.59' "%H.%M", # '14.30' ] DATETIME_INPUT_FORMATS = [ "%d-%m-%Y %H.%M.%S", # '25-10-2009 14.30.59' "%d-%m-%Y %H.%M.%S.%f", # '25-10-2009 14.30.59.000200' "%d-%m-%Y %H.%M", # '25-10-2009 14.30' "%d-%m-%y %H.%M.%S", # '25-10-09' 14.30.59' "%d-%m-%y %H.%M.%S.%f", # '25-10-09' 14.30.59.000200' "%d-%m-%y %H.%M", # '25-10-09' 14.30' "%m/%d/%y %H.%M.%S", # '10/25/06 14.30.59' "%m/%d/%y %H.%M.%S.%f", # '10/25/06 14.30.59.000200' "%m/%d/%y %H.%M", # '10/25/06 14.30' "%m/%d/%Y %H.%M.%S", # '25/10/2009 14.30.59' "%m/%d/%Y %H.%M.%S.%f", # '25/10/2009 14.30.59.000200' "%m/%d/%Y %H.%M", # '25/10/2009 14.30' ] DECIMAL_SEPARATOR = "," THOUSAND_SEPARATOR = "." NUMBER_GROUPING = 3
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/id/__init__.py
django/conf/locale/id/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/fa/formats.py
django/conf/locale/fa/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = "j F Y" TIME_FORMAT = "G:i" DATETIME_FORMAT = "j F Y، ساعت G:i" YEAR_MONTH_FORMAT = "F Y" MONTH_DAY_FORMAT = "j F" SHORT_DATE_FORMAT = "Y/n/j" SHORT_DATETIME_FORMAT = "Y/n/j،‏ G:i" FIRST_DAY_OF_WEEK = 6 # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior # DATE_INPUT_FORMATS = # TIME_INPUT_FORMATS = # DATETIME_INPUT_FORMATS = DECIMAL_SEPARATOR = "." THOUSAND_SEPARATOR = "," # NUMBER_GROUPING =
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/fa/__init__.py
django/conf/locale/fa/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/gl/formats.py
django/conf/locale/gl/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = r"j \d\e F \d\e Y" TIME_FORMAT = "H:i" DATETIME_FORMAT = r"j \d\e F \d\e Y \á\s H:i" YEAR_MONTH_FORMAT = r"F \d\e Y" MONTH_DAY_FORMAT = r"j \d\e F" SHORT_DATE_FORMAT = "d-m-Y" SHORT_DATETIME_FORMAT = "d-m-Y, H:i" FIRST_DAY_OF_WEEK = 1 # Monday # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior # DATE_INPUT_FORMATS = # TIME_INPUT_FORMATS = # DATETIME_INPUT_FORMATS = DECIMAL_SEPARATOR = "," THOUSAND_SEPARATOR = "." # NUMBER_GROUPING =
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/gl/__init__.py
django/conf/locale/gl/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/hi/formats.py
django/conf/locale/hi/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = "j F Y" TIME_FORMAT = "g:i A" # DATETIME_FORMAT = # YEAR_MONTH_FORMAT = MONTH_DAY_FORMAT = "j F" SHORT_DATE_FORMAT = "d-m-Y" # SHORT_DATETIME_FORMAT = # FIRST_DAY_OF_WEEK = # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior # DATE_INPUT_FORMATS = # TIME_INPUT_FORMATS = # DATETIME_INPUT_FORMATS = DECIMAL_SEPARATOR = "." THOUSAND_SEPARATOR = "," # NUMBER_GROUPING =
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/hi/__init__.py
django/conf/locale/hi/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/ru/formats.py
django/conf/locale/ru/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = "j E Y г." TIME_FORMAT = "G:i" DATETIME_FORMAT = "j E Y г. G:i" YEAR_MONTH_FORMAT = "F Y г." MONTH_DAY_FORMAT = "j F" SHORT_DATE_FORMAT = "d.m.Y" SHORT_DATETIME_FORMAT = "d.m.Y H:i" FIRST_DAY_OF_WEEK = 1 # Monday # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior DATE_INPUT_FORMATS = [ "%d.%m.%Y", # '25.10.2006' "%d.%m.%y", # '25.10.06' ] DATETIME_INPUT_FORMATS = [ "%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' "%d.%m.%y %H:%M:%S", # '25.10.06 14:30:59' "%d.%m.%y %H:%M:%S.%f", # '25.10.06 14:30:59.000200' "%d.%m.%y %H:%M", # '25.10.06 14:30' ] DECIMAL_SEPARATOR = "," THOUSAND_SEPARATOR = "\xa0" # non-breaking space NUMBER_GROUPING = 3
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/ru/__init__.py
django/conf/locale/ru/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/gd/formats.py
django/conf/locale/gd/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = "j F Y" TIME_FORMAT = "h:ia" DATETIME_FORMAT = "j F Y h:ia" # YEAR_MONTH_FORMAT = MONTH_DAY_FORMAT = "j F" SHORT_DATE_FORMAT = "j M Y" SHORT_DATETIME_FORMAT = "j M Y h:ia" FIRST_DAY_OF_WEEK = 1 # Monday # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior # DATE_INPUT_FORMATS = # TIME_INPUT_FORMATS = # DATETIME_INPUT_FORMATS = DECIMAL_SEPARATOR = "." THOUSAND_SEPARATOR = "," # NUMBER_GROUPING =
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/gd/__init__.py
django/conf/locale/gd/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/ga/formats.py
django/conf/locale/ga/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = "j F Y" TIME_FORMAT = "H:i" # DATETIME_FORMAT = # YEAR_MONTH_FORMAT = MONTH_DAY_FORMAT = "j F" SHORT_DATE_FORMAT = "j M Y" # SHORT_DATETIME_FORMAT = # FIRST_DAY_OF_WEEK = # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior # DATE_INPUT_FORMATS = # TIME_INPUT_FORMATS = # DATETIME_INPUT_FORMATS = DECIMAL_SEPARATOR = "." THOUSAND_SEPARATOR = "," # NUMBER_GROUPING =
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/ga/__init__.py
django/conf/locale/ga/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/es_AR/formats.py
django/conf/locale/es_AR/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = r"j N Y" TIME_FORMAT = r"H:i" DATETIME_FORMAT = r"j N Y H:i" YEAR_MONTH_FORMAT = r"F Y" MONTH_DAY_FORMAT = r"j \d\e F" SHORT_DATE_FORMAT = r"d/m/Y" SHORT_DATETIME_FORMAT = r"d/m/Y H:i" FIRST_DAY_OF_WEEK = 0 # 0: Sunday, 1: Monday # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior DATE_INPUT_FORMATS = [ "%d/%m/%Y", # '31/12/2009' "%d/%m/%y", # '31/12/09' ] DATETIME_INPUT_FORMATS = [ "%d/%m/%Y %H:%M:%S", "%d/%m/%Y %H:%M:%S.%f", "%d/%m/%Y %H:%M", "%d/%m/%y %H:%M:%S", "%d/%m/%y %H:%M:%S.%f", "%d/%m/%y %H:%M", ] DECIMAL_SEPARATOR = "," THOUSAND_SEPARATOR = "." NUMBER_GROUPING = 3
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/es_AR/__init__.py
django/conf/locale/es_AR/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/cy/formats.py
django/conf/locale/cy/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = "j F Y" # '25 Hydref 2006' TIME_FORMAT = "P" # '2:30 y.b.' DATETIME_FORMAT = "j F Y, P" # '25 Hydref 2006, 2:30 y.b.' YEAR_MONTH_FORMAT = "F Y" # 'Hydref 2006' MONTH_DAY_FORMAT = "j F" # '25 Hydref' SHORT_DATE_FORMAT = "d/m/Y" # '25/10/2006' SHORT_DATETIME_FORMAT = "d/m/Y P" # '25/10/2006 2:30 y.b.' FIRST_DAY_OF_WEEK = 1 # 'Dydd Llun' # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior DATE_INPUT_FORMATS = [ "%d/%m/%Y", # '25/10/2006' "%d/%m/%y", # '25/10/06' ] DATETIME_INPUT_FORMATS = [ "%Y-%m-%d %H:%M:%S", # '2006-10-25 14:30:59' "%Y-%m-%d %H:%M:%S.%f", # '2006-10-25 14:30:59.000200' "%Y-%m-%d %H:%M", # '2006-10-25 14:30' "%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' "%d/%m/%y %H:%M:%S", # '25/10/06 14:30:59' "%d/%m/%y %H:%M:%S.%f", # '25/10/06 14:30:59.000200' "%d/%m/%y %H:%M", # '25/10/06 14:30' ] DECIMAL_SEPARATOR = "." THOUSAND_SEPARATOR = "," NUMBER_GROUPING = 3
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/cy/__init__.py
django/conf/locale/cy/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/ar_DZ/formats.py
django/conf/locale/ar_DZ/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = "j F Y" TIME_FORMAT = "H:i" DATETIME_FORMAT = "j F Y H:i" YEAR_MONTH_FORMAT = "F Y" MONTH_DAY_FORMAT = "j F" SHORT_DATE_FORMAT = "j F Y" SHORT_DATETIME_FORMAT = "j F Y H:i" FIRST_DAY_OF_WEEK = 0 # Sunday # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior DATE_INPUT_FORMATS = [ "%Y/%m/%d", # '2006/10/25' ] TIME_INPUT_FORMATS = [ "%H:%M", # '14:30 "%H:%M:%S", # '14:30:59' ] DATETIME_INPUT_FORMATS = [ "%Y/%m/%d %H:%M", # '2006/10/25 14:30' "%Y/%m/%d %H:%M:%S", # '2006/10/25 14:30:59' ] DECIMAL_SEPARATOR = "," THOUSAND_SEPARATOR = "." NUMBER_GROUPING = 3
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/ar_DZ/__init__.py
django/conf/locale/ar_DZ/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/es_CO/formats.py
django/conf/locale/es_CO/formats.py
# This file is distributed under the same license as the Django package. # DATE_FORMAT = r"j \d\e F \d\e Y" TIME_FORMAT = "H:i" DATETIME_FORMAT = r"j \d\e F \d\e Y \a \l\a\s H:i" YEAR_MONTH_FORMAT = r"F \d\e Y" MONTH_DAY_FORMAT = r"j \d\e F" SHORT_DATE_FORMAT = "d/m/Y" SHORT_DATETIME_FORMAT = "d/m/Y H:i" FIRST_DAY_OF_WEEK = 1 DATE_INPUT_FORMATS = [ "%d/%m/%Y", # '25/10/2006' "%d/%m/%y", # '25/10/06' "%Y%m%d", # '20061025' ] DATETIME_INPUT_FORMATS = [ "%d/%m/%Y %H:%M:%S", "%d/%m/%Y %H:%M:%S.%f", "%d/%m/%Y %H:%M", "%d/%m/%y %H:%M:%S", "%d/%m/%y %H:%M:%S.%f", "%d/%m/%y %H:%M", ] DECIMAL_SEPARATOR = "," THOUSAND_SEPARATOR = "." NUMBER_GROUPING = 3
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/es_CO/__init__.py
django/conf/locale/es_CO/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/en_AU/formats.py
django/conf/locale/en_AU/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = "j M Y" # '25 Oct 2006' TIME_FORMAT = "P" # '2:30 p.m.' DATETIME_FORMAT = "j M Y, P" # '25 Oct 2006, 2:30 p.m.' 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 p.m.' FIRST_DAY_OF_WEEK = 0 # Sunday # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior DATE_INPUT_FORMATS = [ "%d/%m/%Y", # '25/10/2006' "%d/%m/%y", # '25/10/06' # "%b %d %Y", # 'Oct 25 2006' # "%b %d, %Y", # 'Oct 25, 2006' # "%d %b %Y", # '25 Oct 2006' # "%d %b, %Y", # '25 Oct, 2006' # "%B %d %Y", # 'October 25 2006' # "%B %d, %Y", # 'October 25, 2006' # "%d %B %Y", # '25 October 2006' # "%d %B, %Y", # '25 October, 2006' ] DATETIME_INPUT_FORMATS = [ "%Y-%m-%d %H:%M:%S", # '2006-10-25 14:30:59' "%Y-%m-%d %H:%M:%S.%f", # '2006-10-25 14:30:59.000200' "%Y-%m-%d %H:%M", # '2006-10-25 14:30' "%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' "%d/%m/%y %H:%M:%S", # '25/10/06 14:30:59' "%d/%m/%y %H:%M:%S.%f", # '25/10/06 14:30:59.000200' "%d/%m/%y %H:%M", # '25/10/06 14:30' ] DECIMAL_SEPARATOR = "." THOUSAND_SEPARATOR = "," NUMBER_GROUPING = 3
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/en_AU/__init__.py
django/conf/locale/en_AU/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/sv/formats.py
django/conf/locale/sv/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = "j F Y" TIME_FORMAT = "H:i" DATETIME_FORMAT = "j F Y H:i" YEAR_MONTH_FORMAT = "F Y" MONTH_DAY_FORMAT = "j F" SHORT_DATE_FORMAT = "Y-m-d" SHORT_DATETIME_FORMAT = "Y-m-d H:i" FIRST_DAY_OF_WEEK = 1 # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior # Kept ISO formats as they are in first position DATE_INPUT_FORMATS = [ "%Y-%m-%d", # '2006-10-25' "%m/%d/%Y", # '10/25/2006' "%m/%d/%y", # '10/25/06' ] DATETIME_INPUT_FORMATS = [ "%Y-%m-%d %H:%M:%S", # '2006-10-25 14:30:59' "%Y-%m-%d %H:%M:%S.%f", # '2006-10-25 14:30:59.000200' "%Y-%m-%d %H:%M", # '2006-10-25 14:30' "%m/%d/%Y %H:%M:%S", # '10/25/2006 14:30:59' "%m/%d/%Y %H:%M:%S.%f", # '10/25/2006 14:30:59.000200' "%m/%d/%Y %H:%M", # '10/25/2006 14:30' "%m/%d/%y %H:%M:%S", # '10/25/06 14:30:59' "%m/%d/%y %H:%M:%S.%f", # '10/25/06 14:30:59.000200' "%m/%d/%y %H:%M", # '10/25/06 14:30' ] DECIMAL_SEPARATOR = "," THOUSAND_SEPARATOR = "\xa0" # non-breaking space NUMBER_GROUPING = 3
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/sv/__init__.py
django/conf/locale/sv/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/mk/formats.py
django/conf/locale/mk/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = "d F Y" TIME_FORMAT = "H:i" DATETIME_FORMAT = "j. F Y H:i" YEAR_MONTH_FORMAT = "F Y" MONTH_DAY_FORMAT = "j. F" SHORT_DATE_FORMAT = "j.m.Y" SHORT_DATETIME_FORMAT = "j.m.Y H:i" FIRST_DAY_OF_WEEK = 1 # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior DATE_INPUT_FORMATS = [ "%d.%m.%Y", # '25.10.2006' "%d.%m.%y", # '25.10.06' "%d. %m. %Y", # '25. 10. 2006' "%d. %m. %y", # '25. 10. 06' ] DATETIME_INPUT_FORMATS = [ "%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' "%d.%m.%y %H:%M:%S", # '25.10.06 14:30:59' "%d.%m.%y %H:%M:%S.%f", # '25.10.06 14:30:59.000200' "%d.%m.%y %H:%M", # '25.10.06 14:30' "%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' "%d. %m. %y %H:%M:%S", # '25. 10. 06 14:30:59' "%d. %m. %y %H:%M:%S.%f", # '25. 10. 06 14:30:59.000200' "%d. %m. %y %H:%M", # '25. 10. 06 14:30' ] DECIMAL_SEPARATOR = "," THOUSAND_SEPARATOR = "." NUMBER_GROUPING = 3
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/mk/__init__.py
django/conf/locale/mk/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/eu/formats.py
django/conf/locale/eu/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = r"Y\k\o N j\a" TIME_FORMAT = "H:i" DATETIME_FORMAT = r"Y\k\o N j\a, H:i" YEAR_MONTH_FORMAT = r"Y\k\o F" MONTH_DAY_FORMAT = r"F\r\e\n j\a" SHORT_DATE_FORMAT = "Y-m-d" SHORT_DATETIME_FORMAT = "Y-m-d H:i" FIRST_DAY_OF_WEEK = 1 # Astelehena # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior # DATE_INPUT_FORMATS = # TIME_INPUT_FORMATS = # DATETIME_INPUT_FORMATS = DECIMAL_SEPARATOR = "," THOUSAND_SEPARATOR = "." NUMBER_GROUPING = 3
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/eu/__init__.py
django/conf/locale/eu/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/tg/formats.py
django/conf/locale/tg/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = "j E Y г." TIME_FORMAT = "G:i" DATETIME_FORMAT = "j E Y г. G:i" YEAR_MONTH_FORMAT = "F Y г." MONTH_DAY_FORMAT = "j F" SHORT_DATE_FORMAT = "d.m.Y" SHORT_DATETIME_FORMAT = "d.m.Y H:i" FIRST_DAY_OF_WEEK = 1 # Monday # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior DATE_INPUT_FORMATS = [ "%d.%m.%Y", # '25.10.2006' "%d.%m.%y", # '25.10.06' ] DATETIME_INPUT_FORMATS = [ "%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' "%d.%m.%Y", # '25.10.2006' "%d.%m.%y %H:%M:%S", # '25.10.06 14:30:59' "%d.%m.%y %H:%M:%S.%f", # '25.10.06 14:30:59.000200' "%d.%m.%y %H:%M", # '25.10.06 14:30' "%d.%m.%y", # '25.10.06' ] DECIMAL_SEPARATOR = "," THOUSAND_SEPARATOR = "\xa0" # non-breaking space NUMBER_GROUPING = 3
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/tg/__init__.py
django/conf/locale/tg/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/es/formats.py
django/conf/locale/es/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = r"j \d\e F \d\e Y" TIME_FORMAT = "H:i" DATETIME_FORMAT = r"j \d\e F \d\e Y \a \l\a\s H:i" YEAR_MONTH_FORMAT = r"F \d\e Y" MONTH_DAY_FORMAT = r"j \d\e F" SHORT_DATE_FORMAT = "d/m/Y" SHORT_DATETIME_FORMAT = "d/m/Y H:i" FIRST_DAY_OF_WEEK = 1 # Monday # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior DATE_INPUT_FORMATS = [ "%d/%m/%Y", # '31/12/2009' "%d/%m/%y", # '31/12/09' ] DATETIME_INPUT_FORMATS = [ "%d/%m/%Y %H:%M:%S", "%d/%m/%Y %H:%M:%S.%f", "%d/%m/%Y %H:%M", "%d/%m/%y %H:%M:%S", "%d/%m/%y %H:%M:%S.%f", "%d/%m/%y %H:%M", ] DECIMAL_SEPARATOR = "," THOUSAND_SEPARATOR = "\xa0" # non-breaking space NUMBER_GROUPING = 3
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/es/__init__.py
django/conf/locale/es/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/fy/formats.py
django/conf/locale/fy/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # DATE_FORMAT = # TIME_FORMAT = # DATETIME_FORMAT = # YEAR_MONTH_FORMAT = # MONTH_DAY_FORMAT = # SHORT_DATE_FORMAT = # SHORT_DATETIME_FORMAT = # FIRST_DAY_OF_WEEK = # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior # DATE_INPUT_FORMATS = # TIME_INPUT_FORMATS = # DATETIME_INPUT_FORMATS = # DECIMAL_SEPARATOR = # THOUSAND_SEPARATOR = # NUMBER_GROUPING =
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/fy/__init__.py
django/conf/locale/fy/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/lv/formats.py
django/conf/locale/lv/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = r"Y. \g\a\d\a j. F" TIME_FORMAT = "H:i" DATETIME_FORMAT = r"Y. \g\a\d\a j. F, H:i" YEAR_MONTH_FORMAT = r"Y. \g. F" MONTH_DAY_FORMAT = "j. F" SHORT_DATE_FORMAT = r"j.m.Y" SHORT_DATETIME_FORMAT = "j.m.Y H:i" FIRST_DAY_OF_WEEK = 1 # Monday # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior # Kept ISO formats as they are in first position DATE_INPUT_FORMATS = [ "%Y-%m-%d", # '2006-10-25' "%d.%m.%Y", # '25.10.2006' "%d.%m.%y", # '25.10.06' ] TIME_INPUT_FORMATS = [ "%H:%M:%S", # '14:30:59' "%H:%M:%S.%f", # '14:30:59.000200' "%H:%M", # '14:30' "%H.%M.%S", # '14.30.59' "%H.%M.%S.%f", # '14.30.59.000200' "%H.%M", # '14.30' ] DATETIME_INPUT_FORMATS = [ "%Y-%m-%d %H:%M:%S", # '2006-10-25 14:30:59' "%Y-%m-%d %H:%M:%S.%f", # '2006-10-25 14:30:59.000200' "%Y-%m-%d %H:%M", # '2006-10-25 14:30' "%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' "%d.%m.%y %H:%M:%S", # '25.10.06 14:30:59' "%d.%m.%y %H:%M:%S.%f", # '25.10.06 14:30:59.000200' "%d.%m.%y %H:%M", # '25.10.06 14:30' "%d.%m.%y %H.%M.%S", # '25.10.06 14.30.59' "%d.%m.%y %H.%M.%S.%f", # '25.10.06 14.30.59.000200' "%d.%m.%y %H.%M", # '25.10.06 14.30' ] DECIMAL_SEPARATOR = "," THOUSAND_SEPARATOR = " " # Non-breaking space NUMBER_GROUPING = 3
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/lv/__init__.py
django/conf/locale/lv/__init__.py
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false
django/django
https://github.com/django/django/blob/3201a895cba335000827b28768a7b7105c81b415/django/conf/locale/da/formats.py
django/conf/locale/da/formats.py
# This file is distributed under the same license as the Django package. # # The *_FORMAT strings use the Django date format syntax, # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = "j. F Y" TIME_FORMAT = "H:i" DATETIME_FORMAT = "j. F Y H:i" YEAR_MONTH_FORMAT = "F Y" MONTH_DAY_FORMAT = "j. F" SHORT_DATE_FORMAT = "d.m.Y" SHORT_DATETIME_FORMAT = "d.m.Y H:i" FIRST_DAY_OF_WEEK = 1 # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior DATE_INPUT_FORMATS = [ "%d.%m.%Y", # '25.10.2006' ] DATETIME_INPUT_FORMATS = [ "%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' ] DECIMAL_SEPARATOR = "," THOUSAND_SEPARATOR = "." NUMBER_GROUPING = 3
python
BSD-3-Clause
3201a895cba335000827b28768a7b7105c81b415
2026-01-04T14:38:15.489092Z
false