docker setup
This commit is contained in:
		| @ -0,0 +1,623 @@ | ||||
| """ | ||||
| LANG_INFO is a dictionary structure to provide meta information about languages. | ||||
|  | ||||
| About name_local: capitalize it as if your language name was appearing | ||||
| inside a sentence in your language. | ||||
| The 'fallback' key can be used to specify a special fallback logic which doesn't | ||||
| follow the traditional 'fr-ca' -> 'fr' fallback logic. | ||||
| """ | ||||
|  | ||||
| LANG_INFO = { | ||||
|     "af": { | ||||
|         "bidi": False, | ||||
|         "code": "af", | ||||
|         "name": "Afrikaans", | ||||
|         "name_local": "Afrikaans", | ||||
|     }, | ||||
|     "ar": { | ||||
|         "bidi": True, | ||||
|         "code": "ar", | ||||
|         "name": "Arabic", | ||||
|         "name_local": "العربيّة", | ||||
|     }, | ||||
|     "ar-dz": { | ||||
|         "bidi": True, | ||||
|         "code": "ar-dz", | ||||
|         "name": "Algerian Arabic", | ||||
|         "name_local": "العربية الجزائرية", | ||||
|     }, | ||||
|     "ast": { | ||||
|         "bidi": False, | ||||
|         "code": "ast", | ||||
|         "name": "Asturian", | ||||
|         "name_local": "asturianu", | ||||
|     }, | ||||
|     "az": { | ||||
|         "bidi": True, | ||||
|         "code": "az", | ||||
|         "name": "Azerbaijani", | ||||
|         "name_local": "Azərbaycanca", | ||||
|     }, | ||||
|     "be": { | ||||
|         "bidi": False, | ||||
|         "code": "be", | ||||
|         "name": "Belarusian", | ||||
|         "name_local": "беларуская", | ||||
|     }, | ||||
|     "bg": { | ||||
|         "bidi": False, | ||||
|         "code": "bg", | ||||
|         "name": "Bulgarian", | ||||
|         "name_local": "български", | ||||
|     }, | ||||
|     "bn": { | ||||
|         "bidi": False, | ||||
|         "code": "bn", | ||||
|         "name": "Bengali", | ||||
|         "name_local": "বাংলা", | ||||
|     }, | ||||
|     "br": { | ||||
|         "bidi": False, | ||||
|         "code": "br", | ||||
|         "name": "Breton", | ||||
|         "name_local": "brezhoneg", | ||||
|     }, | ||||
|     "bs": { | ||||
|         "bidi": False, | ||||
|         "code": "bs", | ||||
|         "name": "Bosnian", | ||||
|         "name_local": "bosanski", | ||||
|     }, | ||||
|     "ca": { | ||||
|         "bidi": False, | ||||
|         "code": "ca", | ||||
|         "name": "Catalan", | ||||
|         "name_local": "català", | ||||
|     }, | ||||
|     "ckb": { | ||||
|         "bidi": True, | ||||
|         "code": "ckb", | ||||
|         "name": "Central Kurdish (Sorani)", | ||||
|         "name_local": "کوردی", | ||||
|     }, | ||||
|     "cs": { | ||||
|         "bidi": False, | ||||
|         "code": "cs", | ||||
|         "name": "Czech", | ||||
|         "name_local": "česky", | ||||
|     }, | ||||
|     "cy": { | ||||
|         "bidi": False, | ||||
|         "code": "cy", | ||||
|         "name": "Welsh", | ||||
|         "name_local": "Cymraeg", | ||||
|     }, | ||||
|     "da": { | ||||
|         "bidi": False, | ||||
|         "code": "da", | ||||
|         "name": "Danish", | ||||
|         "name_local": "dansk", | ||||
|     }, | ||||
|     "de": { | ||||
|         "bidi": False, | ||||
|         "code": "de", | ||||
|         "name": "German", | ||||
|         "name_local": "Deutsch", | ||||
|     }, | ||||
|     "dsb": { | ||||
|         "bidi": False, | ||||
|         "code": "dsb", | ||||
|         "name": "Lower Sorbian", | ||||
|         "name_local": "dolnoserbski", | ||||
|     }, | ||||
|     "el": { | ||||
|         "bidi": False, | ||||
|         "code": "el", | ||||
|         "name": "Greek", | ||||
|         "name_local": "Ελληνικά", | ||||
|     }, | ||||
|     "en": { | ||||
|         "bidi": False, | ||||
|         "code": "en", | ||||
|         "name": "English", | ||||
|         "name_local": "English", | ||||
|     }, | ||||
|     "en-au": { | ||||
|         "bidi": False, | ||||
|         "code": "en-au", | ||||
|         "name": "Australian English", | ||||
|         "name_local": "Australian English", | ||||
|     }, | ||||
|     "en-gb": { | ||||
|         "bidi": False, | ||||
|         "code": "en-gb", | ||||
|         "name": "British English", | ||||
|         "name_local": "British English", | ||||
|     }, | ||||
|     "eo": { | ||||
|         "bidi": False, | ||||
|         "code": "eo", | ||||
|         "name": "Esperanto", | ||||
|         "name_local": "Esperanto", | ||||
|     }, | ||||
|     "es": { | ||||
|         "bidi": False, | ||||
|         "code": "es", | ||||
|         "name": "Spanish", | ||||
|         "name_local": "español", | ||||
|     }, | ||||
|     "es-ar": { | ||||
|         "bidi": False, | ||||
|         "code": "es-ar", | ||||
|         "name": "Argentinian Spanish", | ||||
|         "name_local": "español de Argentina", | ||||
|     }, | ||||
|     "es-co": { | ||||
|         "bidi": False, | ||||
|         "code": "es-co", | ||||
|         "name": "Colombian Spanish", | ||||
|         "name_local": "español de Colombia", | ||||
|     }, | ||||
|     "es-mx": { | ||||
|         "bidi": False, | ||||
|         "code": "es-mx", | ||||
|         "name": "Mexican Spanish", | ||||
|         "name_local": "español de Mexico", | ||||
|     }, | ||||
|     "es-ni": { | ||||
|         "bidi": False, | ||||
|         "code": "es-ni", | ||||
|         "name": "Nicaraguan Spanish", | ||||
|         "name_local": "español de Nicaragua", | ||||
|     }, | ||||
|     "es-ve": { | ||||
|         "bidi": False, | ||||
|         "code": "es-ve", | ||||
|         "name": "Venezuelan Spanish", | ||||
|         "name_local": "español de Venezuela", | ||||
|     }, | ||||
|     "et": { | ||||
|         "bidi": False, | ||||
|         "code": "et", | ||||
|         "name": "Estonian", | ||||
|         "name_local": "eesti", | ||||
|     }, | ||||
|     "eu": { | ||||
|         "bidi": False, | ||||
|         "code": "eu", | ||||
|         "name": "Basque", | ||||
|         "name_local": "Basque", | ||||
|     }, | ||||
|     "fa": { | ||||
|         "bidi": True, | ||||
|         "code": "fa", | ||||
|         "name": "Persian", | ||||
|         "name_local": "فارسی", | ||||
|     }, | ||||
|     "fi": { | ||||
|         "bidi": False, | ||||
|         "code": "fi", | ||||
|         "name": "Finnish", | ||||
|         "name_local": "suomi", | ||||
|     }, | ||||
|     "fr": { | ||||
|         "bidi": False, | ||||
|         "code": "fr", | ||||
|         "name": "French", | ||||
|         "name_local": "français", | ||||
|     }, | ||||
|     "fy": { | ||||
|         "bidi": False, | ||||
|         "code": "fy", | ||||
|         "name": "Frisian", | ||||
|         "name_local": "frysk", | ||||
|     }, | ||||
|     "ga": { | ||||
|         "bidi": False, | ||||
|         "code": "ga", | ||||
|         "name": "Irish", | ||||
|         "name_local": "Gaeilge", | ||||
|     }, | ||||
|     "gd": { | ||||
|         "bidi": False, | ||||
|         "code": "gd", | ||||
|         "name": "Scottish Gaelic", | ||||
|         "name_local": "Gàidhlig", | ||||
|     }, | ||||
|     "gl": { | ||||
|         "bidi": False, | ||||
|         "code": "gl", | ||||
|         "name": "Galician", | ||||
|         "name_local": "galego", | ||||
|     }, | ||||
|     "he": { | ||||
|         "bidi": True, | ||||
|         "code": "he", | ||||
|         "name": "Hebrew", | ||||
|         "name_local": "עברית", | ||||
|     }, | ||||
|     "hi": { | ||||
|         "bidi": False, | ||||
|         "code": "hi", | ||||
|         "name": "Hindi", | ||||
|         "name_local": "हिंदी", | ||||
|     }, | ||||
|     "hr": { | ||||
|         "bidi": False, | ||||
|         "code": "hr", | ||||
|         "name": "Croatian", | ||||
|         "name_local": "Hrvatski", | ||||
|     }, | ||||
|     "hsb": { | ||||
|         "bidi": False, | ||||
|         "code": "hsb", | ||||
|         "name": "Upper Sorbian", | ||||
|         "name_local": "hornjoserbsce", | ||||
|     }, | ||||
|     "hu": { | ||||
|         "bidi": False, | ||||
|         "code": "hu", | ||||
|         "name": "Hungarian", | ||||
|         "name_local": "Magyar", | ||||
|     }, | ||||
|     "hy": { | ||||
|         "bidi": False, | ||||
|         "code": "hy", | ||||
|         "name": "Armenian", | ||||
|         "name_local": "հայերեն", | ||||
|     }, | ||||
|     "ia": { | ||||
|         "bidi": False, | ||||
|         "code": "ia", | ||||
|         "name": "Interlingua", | ||||
|         "name_local": "Interlingua", | ||||
|     }, | ||||
|     "io": { | ||||
|         "bidi": False, | ||||
|         "code": "io", | ||||
|         "name": "Ido", | ||||
|         "name_local": "ido", | ||||
|     }, | ||||
|     "id": { | ||||
|         "bidi": False, | ||||
|         "code": "id", | ||||
|         "name": "Indonesian", | ||||
|         "name_local": "Bahasa Indonesia", | ||||
|     }, | ||||
|     "ig": { | ||||
|         "bidi": False, | ||||
|         "code": "ig", | ||||
|         "name": "Igbo", | ||||
|         "name_local": "Asụsụ Ìgbò", | ||||
|     }, | ||||
|     "is": { | ||||
|         "bidi": False, | ||||
|         "code": "is", | ||||
|         "name": "Icelandic", | ||||
|         "name_local": "Íslenska", | ||||
|     }, | ||||
|     "it": { | ||||
|         "bidi": False, | ||||
|         "code": "it", | ||||
|         "name": "Italian", | ||||
|         "name_local": "italiano", | ||||
|     }, | ||||
|     "ja": { | ||||
|         "bidi": False, | ||||
|         "code": "ja", | ||||
|         "name": "Japanese", | ||||
|         "name_local": "日本語", | ||||
|     }, | ||||
|     "ka": { | ||||
|         "bidi": False, | ||||
|         "code": "ka", | ||||
|         "name": "Georgian", | ||||
|         "name_local": "ქართული", | ||||
|     }, | ||||
|     "kab": { | ||||
|         "bidi": False, | ||||
|         "code": "kab", | ||||
|         "name": "Kabyle", | ||||
|         "name_local": "taqbaylit", | ||||
|     }, | ||||
|     "kk": { | ||||
|         "bidi": False, | ||||
|         "code": "kk", | ||||
|         "name": "Kazakh", | ||||
|         "name_local": "Қазақ", | ||||
|     }, | ||||
|     "km": { | ||||
|         "bidi": False, | ||||
|         "code": "km", | ||||
|         "name": "Khmer", | ||||
|         "name_local": "Khmer", | ||||
|     }, | ||||
|     "kn": { | ||||
|         "bidi": False, | ||||
|         "code": "kn", | ||||
|         "name": "Kannada", | ||||
|         "name_local": "Kannada", | ||||
|     }, | ||||
|     "ko": { | ||||
|         "bidi": False, | ||||
|         "code": "ko", | ||||
|         "name": "Korean", | ||||
|         "name_local": "한국어", | ||||
|     }, | ||||
|     "ky": { | ||||
|         "bidi": False, | ||||
|         "code": "ky", | ||||
|         "name": "Kyrgyz", | ||||
|         "name_local": "Кыргызча", | ||||
|     }, | ||||
|     "lb": { | ||||
|         "bidi": False, | ||||
|         "code": "lb", | ||||
|         "name": "Luxembourgish", | ||||
|         "name_local": "Lëtzebuergesch", | ||||
|     }, | ||||
|     "lt": { | ||||
|         "bidi": False, | ||||
|         "code": "lt", | ||||
|         "name": "Lithuanian", | ||||
|         "name_local": "Lietuviškai", | ||||
|     }, | ||||
|     "lv": { | ||||
|         "bidi": False, | ||||
|         "code": "lv", | ||||
|         "name": "Latvian", | ||||
|         "name_local": "latviešu", | ||||
|     }, | ||||
|     "mk": { | ||||
|         "bidi": False, | ||||
|         "code": "mk", | ||||
|         "name": "Macedonian", | ||||
|         "name_local": "Македонски", | ||||
|     }, | ||||
|     "ml": { | ||||
|         "bidi": False, | ||||
|         "code": "ml", | ||||
|         "name": "Malayalam", | ||||
|         "name_local": "മലയാളം", | ||||
|     }, | ||||
|     "mn": { | ||||
|         "bidi": False, | ||||
|         "code": "mn", | ||||
|         "name": "Mongolian", | ||||
|         "name_local": "Mongolian", | ||||
|     }, | ||||
|     "mr": { | ||||
|         "bidi": False, | ||||
|         "code": "mr", | ||||
|         "name": "Marathi", | ||||
|         "name_local": "मराठी", | ||||
|     }, | ||||
|     "ms": { | ||||
|         "bidi": False, | ||||
|         "code": "ms", | ||||
|         "name": "Malay", | ||||
|         "name_local": "Bahasa Melayu", | ||||
|     }, | ||||
|     "my": { | ||||
|         "bidi": False, | ||||
|         "code": "my", | ||||
|         "name": "Burmese", | ||||
|         "name_local": "မြန်မာဘာသာ", | ||||
|     }, | ||||
|     "nb": { | ||||
|         "bidi": False, | ||||
|         "code": "nb", | ||||
|         "name": "Norwegian Bokmal", | ||||
|         "name_local": "norsk (bokmål)", | ||||
|     }, | ||||
|     "ne": { | ||||
|         "bidi": False, | ||||
|         "code": "ne", | ||||
|         "name": "Nepali", | ||||
|         "name_local": "नेपाली", | ||||
|     }, | ||||
|     "nl": { | ||||
|         "bidi": False, | ||||
|         "code": "nl", | ||||
|         "name": "Dutch", | ||||
|         "name_local": "Nederlands", | ||||
|     }, | ||||
|     "nn": { | ||||
|         "bidi": False, | ||||
|         "code": "nn", | ||||
|         "name": "Norwegian Nynorsk", | ||||
|         "name_local": "norsk (nynorsk)", | ||||
|     }, | ||||
|     "no": { | ||||
|         "bidi": False, | ||||
|         "code": "no", | ||||
|         "name": "Norwegian", | ||||
|         "name_local": "norsk", | ||||
|     }, | ||||
|     "os": { | ||||
|         "bidi": False, | ||||
|         "code": "os", | ||||
|         "name": "Ossetic", | ||||
|         "name_local": "Ирон", | ||||
|     }, | ||||
|     "pa": { | ||||
|         "bidi": False, | ||||
|         "code": "pa", | ||||
|         "name": "Punjabi", | ||||
|         "name_local": "Punjabi", | ||||
|     }, | ||||
|     "pl": { | ||||
|         "bidi": False, | ||||
|         "code": "pl", | ||||
|         "name": "Polish", | ||||
|         "name_local": "polski", | ||||
|     }, | ||||
|     "pt": { | ||||
|         "bidi": False, | ||||
|         "code": "pt", | ||||
|         "name": "Portuguese", | ||||
|         "name_local": "Português", | ||||
|     }, | ||||
|     "pt-br": { | ||||
|         "bidi": False, | ||||
|         "code": "pt-br", | ||||
|         "name": "Brazilian Portuguese", | ||||
|         "name_local": "Português Brasileiro", | ||||
|     }, | ||||
|     "ro": { | ||||
|         "bidi": False, | ||||
|         "code": "ro", | ||||
|         "name": "Romanian", | ||||
|         "name_local": "Română", | ||||
|     }, | ||||
|     "ru": { | ||||
|         "bidi": False, | ||||
|         "code": "ru", | ||||
|         "name": "Russian", | ||||
|         "name_local": "Русский", | ||||
|     }, | ||||
|     "sk": { | ||||
|         "bidi": False, | ||||
|         "code": "sk", | ||||
|         "name": "Slovak", | ||||
|         "name_local": "Slovensky", | ||||
|     }, | ||||
|     "sl": { | ||||
|         "bidi": False, | ||||
|         "code": "sl", | ||||
|         "name": "Slovenian", | ||||
|         "name_local": "Slovenščina", | ||||
|     }, | ||||
|     "sq": { | ||||
|         "bidi": False, | ||||
|         "code": "sq", | ||||
|         "name": "Albanian", | ||||
|         "name_local": "shqip", | ||||
|     }, | ||||
|     "sr": { | ||||
|         "bidi": False, | ||||
|         "code": "sr", | ||||
|         "name": "Serbian", | ||||
|         "name_local": "српски", | ||||
|     }, | ||||
|     "sr-latn": { | ||||
|         "bidi": False, | ||||
|         "code": "sr-latn", | ||||
|         "name": "Serbian Latin", | ||||
|         "name_local": "srpski (latinica)", | ||||
|     }, | ||||
|     "sv": { | ||||
|         "bidi": False, | ||||
|         "code": "sv", | ||||
|         "name": "Swedish", | ||||
|         "name_local": "svenska", | ||||
|     }, | ||||
|     "sw": { | ||||
|         "bidi": False, | ||||
|         "code": "sw", | ||||
|         "name": "Swahili", | ||||
|         "name_local": "Kiswahili", | ||||
|     }, | ||||
|     "ta": { | ||||
|         "bidi": False, | ||||
|         "code": "ta", | ||||
|         "name": "Tamil", | ||||
|         "name_local": "தமிழ்", | ||||
|     }, | ||||
|     "te": { | ||||
|         "bidi": False, | ||||
|         "code": "te", | ||||
|         "name": "Telugu", | ||||
|         "name_local": "తెలుగు", | ||||
|     }, | ||||
|     "tg": { | ||||
|         "bidi": False, | ||||
|         "code": "tg", | ||||
|         "name": "Tajik", | ||||
|         "name_local": "тоҷикӣ", | ||||
|     }, | ||||
|     "th": { | ||||
|         "bidi": False, | ||||
|         "code": "th", | ||||
|         "name": "Thai", | ||||
|         "name_local": "ภาษาไทย", | ||||
|     }, | ||||
|     "tk": { | ||||
|         "bidi": False, | ||||
|         "code": "tk", | ||||
|         "name": "Turkmen", | ||||
|         "name_local": "Türkmençe", | ||||
|     }, | ||||
|     "tr": { | ||||
|         "bidi": False, | ||||
|         "code": "tr", | ||||
|         "name": "Turkish", | ||||
|         "name_local": "Türkçe", | ||||
|     }, | ||||
|     "tt": { | ||||
|         "bidi": False, | ||||
|         "code": "tt", | ||||
|         "name": "Tatar", | ||||
|         "name_local": "Татарча", | ||||
|     }, | ||||
|     "udm": { | ||||
|         "bidi": False, | ||||
|         "code": "udm", | ||||
|         "name": "Udmurt", | ||||
|         "name_local": "Удмурт", | ||||
|     }, | ||||
|     "uk": { | ||||
|         "bidi": False, | ||||
|         "code": "uk", | ||||
|         "name": "Ukrainian", | ||||
|         "name_local": "Українська", | ||||
|     }, | ||||
|     "ur": { | ||||
|         "bidi": True, | ||||
|         "code": "ur", | ||||
|         "name": "Urdu", | ||||
|         "name_local": "اردو", | ||||
|     }, | ||||
|     "uz": { | ||||
|         "bidi": False, | ||||
|         "code": "uz", | ||||
|         "name": "Uzbek", | ||||
|         "name_local": "oʻzbek tili", | ||||
|     }, | ||||
|     "vi": { | ||||
|         "bidi": False, | ||||
|         "code": "vi", | ||||
|         "name": "Vietnamese", | ||||
|         "name_local": "Tiếng Việt", | ||||
|     }, | ||||
|     "zh-cn": { | ||||
|         "fallback": ["zh-hans"], | ||||
|     }, | ||||
|     "zh-hans": { | ||||
|         "bidi": False, | ||||
|         "code": "zh-hans", | ||||
|         "name": "Simplified Chinese", | ||||
|         "name_local": "简体中文", | ||||
|     }, | ||||
|     "zh-hant": { | ||||
|         "bidi": False, | ||||
|         "code": "zh-hant", | ||||
|         "name": "Traditional Chinese", | ||||
|         "name_local": "繁體中文", | ||||
|     }, | ||||
|     "zh-hk": { | ||||
|         "fallback": ["zh-hant"], | ||||
|     }, | ||||
|     "zh-mo": { | ||||
|         "fallback": ["zh-hant"], | ||||
|     }, | ||||
|     "zh-my": { | ||||
|         "fallback": ["zh-hans"], | ||||
|     }, | ||||
|     "zh-sg": { | ||||
|         "fallback": ["zh-hans"], | ||||
|     }, | ||||
|     "zh-tw": { | ||||
|         "fallback": ["zh-hant"], | ||||
|     }, | ||||
| } | ||||
										
											Binary file not shown.
										
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @ -0,0 +1,21 @@ | ||||
| # 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 = | ||||
										
											Binary file not shown.
										
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @ -0,0 +1,29 @@ | ||||
| # 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 | ||||
										
											Binary file not shown.
										
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @ -0,0 +1,30 @@ | ||||
| # 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 | ||||
										
											Binary file not shown.
										
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @ -0,0 +1,21 @@ | ||||
| # 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 = | ||||
| # 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 = " "  # Non-breaking space | ||||
| # NUMBER_GROUPING = | ||||
										
											Binary file not shown.
										
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @ -0,0 +1,32 @@ | ||||
| # 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 = "j M, Y" | ||||
| # SHORT_DATETIME_FORMAT = | ||||
| FIRST_DAY_OF_WEEK = 6  # Saturday | ||||
|  | ||||
| # 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/2016 | ||||
|     "%d/%m/%y",  # 25/10/16 | ||||
|     "%d-%m-%Y",  # 25-10-2016 | ||||
|     "%d-%m-%y",  # 25-10-16 | ||||
| ] | ||||
| TIME_INPUT_FORMATS = [ | ||||
|     "%H:%M:%S",  # 14:30:59 | ||||
|     "%H:%M",  # 14:30 | ||||
| ] | ||||
| DATETIME_INPUT_FORMATS = [ | ||||
|     "%d/%m/%Y %H:%M:%S",  # 25/10/2006 14:30:59 | ||||
|     "%d/%m/%Y %H:%M",  # 25/10/2006 14:30 | ||||
| ] | ||||
| DECIMAL_SEPARATOR = "." | ||||
| THOUSAND_SEPARATOR = "," | ||||
| # NUMBER_GROUPING = | ||||
										
											Binary file not shown.
										
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @ -0,0 +1,21 @@ | ||||
| # 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 = | ||||
										
											Binary file not shown.
										
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @ -0,0 +1,30 @@ | ||||
| # 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 | ||||
										
											Binary file not shown.
										
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @ -0,0 +1,21 @@ | ||||
| # 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 = | ||||
										
											Binary file not shown.
										
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @ -0,0 +1,43 @@ | ||||
| # 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 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",  # '05.01.2006' | ||||
|     "%d.%m.%y",  # '05.01.06' | ||||
|     "%d. %m. %Y",  # '5. 1. 2006' | ||||
|     "%d. %m. %y",  # '5. 1. 06' | ||||
|     # "%d. %B %Y",  # '25. October 2006' | ||||
|     # "%d. %b. %Y",  # '25. Oct. 2006' | ||||
| ] | ||||
| # Kept ISO formats as one is in first position | ||||
| TIME_INPUT_FORMATS = [ | ||||
|     "%H:%M:%S",  # '04:30:59' | ||||
|     "%H.%M",  # '04.30' | ||||
|     "%H:%M",  # '04:30' | ||||
| ] | ||||
| DATETIME_INPUT_FORMATS = [ | ||||
|     "%d.%m.%Y %H:%M:%S",  # '05.01.2006 04:30:59' | ||||
|     "%d.%m.%Y %H:%M:%S.%f",  # '05.01.2006 04:30:59.000200' | ||||
|     "%d.%m.%Y %H.%M",  # '05.01.2006 04.30' | ||||
|     "%d.%m.%Y %H:%M",  # '05.01.2006 04:30' | ||||
|     "%d. %m. %Y %H:%M:%S",  # '05. 01. 2006 04:30:59' | ||||
|     "%d. %m. %Y %H:%M:%S.%f",  # '05. 01. 2006 04:30:59.000200' | ||||
|     "%d. %m. %Y %H.%M",  # '05. 01. 2006 04.30' | ||||
|     "%d. %m. %Y %H:%M",  # '05. 01. 2006 04:30' | ||||
|     "%Y-%m-%d %H.%M",  # '2006-01-05 04.30' | ||||
| ] | ||||
| DECIMAL_SEPARATOR = "," | ||||
| THOUSAND_SEPARATOR = "\xa0"  # non-breaking space | ||||
| NUMBER_GROUPING = 3 | ||||
										
											Binary file not shown.
										
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @ -0,0 +1,33 @@ | ||||
| # 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 | ||||
										
											Binary file not shown.
										
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @ -0,0 +1,26 @@ | ||||
| # 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 | ||||
										
											Binary file not shown.
										
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @ -0,0 +1,29 @@ | ||||
| # 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' | ||||
|     # "%d. %B %Y",  # '25. October 2006' | ||||
|     # "%d. %b. %Y",  # '25. Oct. 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 | ||||
| @ -0,0 +1,35 @@ | ||||
| # 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' | ||||
|     # "%d. %B %Y",  # '25. October 2006' | ||||
|     # "%d. %b. %Y",  # '25. Oct. 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' | ||||
| ] | ||||
|  | ||||
| # these are the separators for non-monetary numbers. For monetary numbers, | ||||
| # the DECIMAL_SEPARATOR is a . (decimal point) and the THOUSAND_SEPARATOR is a | ||||
| # ' (single quote). | ||||
| # For details, please refer to the documentation and the following link: | ||||
| # https://www.bk.admin.ch/bk/de/home/dokumentation/sprachen/hilfsmittel-textredaktion/schreibweisungen.html | ||||
| DECIMAL_SEPARATOR = "," | ||||
| THOUSAND_SEPARATOR = "\xa0"  # non-breaking space | ||||
| NUMBER_GROUPING = 3 | ||||
										
											Binary file not shown.
										
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @ -0,0 +1,34 @@ | ||||
| # 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 | ||||
										
											Binary file not shown.
										
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @ -0,0 +1,65 @@ | ||||
| # 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 | ||||
|  | ||||
| # Formatting for date objects. | ||||
| DATE_FORMAT = "N j, Y" | ||||
| # Formatting for time objects. | ||||
| TIME_FORMAT = "P" | ||||
| # Formatting for datetime objects. | ||||
| DATETIME_FORMAT = "N j, Y, P" | ||||
| # Formatting for date objects when only the year and month are relevant. | ||||
| YEAR_MONTH_FORMAT = "F Y" | ||||
| # Formatting for date objects when only the month and day are relevant. | ||||
| MONTH_DAY_FORMAT = "F j" | ||||
| # Short formatting for date objects. | ||||
| SHORT_DATE_FORMAT = "m/d/Y" | ||||
| # Short formatting for datetime objects. | ||||
| SHORT_DATETIME_FORMAT = "m/d/Y P" | ||||
| # First day of week, to be used on calendars. | ||||
| # 0 means Sunday, 1 means Monday... | ||||
| FIRST_DAY_OF_WEEK = 0 | ||||
|  | ||||
| # Formats to be used when parsing dates from input boxes, in order. | ||||
| # The *_INPUT_FORMATS strings use the Python strftime format syntax, | ||||
| # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior | ||||
| # Note that these format strings are different from the ones to display dates. | ||||
| # 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' | ||||
| ] | ||||
| 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' | ||||
| ] | ||||
| TIME_INPUT_FORMATS = [ | ||||
|     "%H:%M:%S",  # '14:30:59' | ||||
|     "%H:%M:%S.%f",  # '14:30:59.000200' | ||||
|     "%H:%M",  # '14:30' | ||||
| ] | ||||
|  | ||||
| # Decimal separator symbol. | ||||
| DECIMAL_SEPARATOR = "." | ||||
| # Thousand separator symbol. | ||||
| THOUSAND_SEPARATOR = "," | ||||
| # Number of digits that will be together, when splitting them by | ||||
| # THOUSAND_SEPARATOR. 0 means no grouping, 3 means splitting by thousands. | ||||
| NUMBER_GROUPING = 3 | ||||
										
											Binary file not shown.
										
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @ -0,0 +1,41 @@ | ||||
| # 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 | ||||
										
											Binary file not shown.
										
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @ -0,0 +1,41 @@ | ||||
| # 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 | ||||
										
											Binary file not shown.
										
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @ -0,0 +1,44 @@ | ||||
| # 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 | ||||
										
											Binary file not shown.
										
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @ -0,0 +1,30 @@ | ||||
| # 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 | ||||
										
											Binary file not shown.
										
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @ -0,0 +1,30 @@ | ||||
| # 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 | ||||
										
											Binary file not shown.
										
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @ -0,0 +1,26 @@ | ||||
| # 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 | ||||
										
											Binary file not shown.
										
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @ -0,0 +1,26 @@ | ||||
| # 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 = "."  # ',' is also official (less common): NOM-008-SCFI-2002 | ||||
| THOUSAND_SEPARATOR = "," | ||||
| NUMBER_GROUPING = 3 | ||||
| @ -0,0 +1,26 @@ | ||||
| # 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 | ||||
Some files were not shown because too many files have changed in this diff Show More
		Reference in New Issue
	
	Block a user