测试gitnore

This commit is contained in:
ladeng07
2022-05-06 15:45:57 +08:00
parent 12f390949b
commit 51552904f9
2347 changed files with 120102 additions and 53549 deletions
@@ -1,15 +1,14 @@
# This file is distributed under the same license as the Django package.
#
# Translators:
# Mariusz Felisiak <felisiak.mariusz@gmail.com>, 2021
# Soyuzbek Orozbek uulu <soyuzbek196.kg@gmail.com>, 2020-2021
# Soyuzbek Orozbek uulu <soyuzbek196.kg@gmail.com>, 2020
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-09-21 10:22+0200\n"
"PO-Revision-Date: 2021-11-27 14:11+0000\n"
"POT-Creation-Date: 2021-01-15 09:00+0100\n"
"PO-Revision-Date: 2021-04-02 11:54+0000\n"
"Last-Translator: Soyuzbek Orozbek uulu <soyuzbek196.kg@gmail.com>\n"
"Language-Team: Kyrgyz (http://www.transifex.com/django/django/language/ky/)\n"
"MIME-Version: 1.0\n"
@@ -207,9 +206,6 @@ msgstr "Монголчо"
msgid "Marathi"
msgstr "Марати"
msgid "Malay"
msgstr "Малай"
msgid "Burmese"
msgstr "Бурмача"
@@ -1083,7 +1079,7 @@ msgstr "Бул туура эмес IPv6 дареги"
#, python-format
msgctxt "String to return when truncating text"
msgid "%(truncated_text)s…"
msgstr "%(truncated_text)s"
msgstr "%(truncated_text)s..."
msgid "or"
msgstr "же"
@@ -1093,34 +1089,34 @@ msgid ", "
msgstr ","
#, python-format
msgid "%(num)d year"
msgid_plural "%(num)d years"
msgstr[0] "%(num)d жыл"
msgid "%d year"
msgid_plural "%d years"
msgstr[0] "%dжыл"
#, python-format
msgid "%(num)d month"
msgid_plural "%(num)d months"
msgstr[0] "%(num)d ай"
msgid "%d month"
msgid_plural "%d months"
msgstr[0] "%dай"
#, python-format
msgid "%(num)d week"
msgid_plural "%(num)d weeks"
msgstr[0] "%(num)d апта"
msgid "%d week"
msgid_plural "%d weeks"
msgstr[0] "%dжума"
#, python-format
msgid "%(num)d day"
msgid_plural "%(num)d days"
msgstr[0] "%(num)d күн"
msgid "%d day"
msgid_plural "%d days"
msgstr[0] "%dкүн"
#, python-format
msgid "%(num)d hour"
msgid_plural "%(num)d hours"
msgstr[0] "%(num)d саат"
msgid "%d hour"
msgid_plural "%d hours"
msgstr[0] "%dсаат"
#, python-format
msgid "%(num)d minute"
msgid_plural "%(num)d minutes"
msgstr[0] "%(num)d мүнөт"
msgid "%d minute"
msgid_plural "%d minutes"
msgstr[0] "%dмүнөт"
msgid "Forbidden"
msgstr "Тыйылган"
@@ -1130,13 +1126,14 @@ msgstr "CSRF текшерүү кыйрады. Суроо четке кагылд
msgid ""
"You are seeing this message because this HTTPS site requires a “Referer "
"header” to be sent by your web browser, but none was sent. This header is "
"header” to be sent by your Web browser, but none was sent. This header is "
"required for security reasons, to ensure that your browser is not being "
"hijacked by third parties."
msgstr ""
"Браузер тараптан \"Referer header\" HTTPS сайтына жиберилбей калгандыгы үчүн "
"бул билдирүүнү көрүп турасыз. Бул хэдэр сиздин браузер үчүнчү жактан "
"чабуулга учурабаганын текшерүүгө коопсуздук үчүн керек."
"Сиз бул билдирүүнү HTTPS сайты, браузер тарабынан жөнөтүлчү “Referer header” "
"тарабынан талап кылынганы бирок жөнөтүлбөгөндүгү үчүн көрүп атасыз. Бул "
"хэдер коопсуздук чаралары үчүн керек болот. Сиздин броузер үчүнчү тараптан "
"барымтага алынбаганын текшериңиз."
msgid ""
"If you have configured your browser to disable “Referer” headers, please re-"
@@ -2,31 +2,31 @@
#
# 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"
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'
'%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'
'%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
DECIMAL_SEPARATOR = '.'
THOUSAND_SEPARATOR = '\xa0' # non-breaking space
NUMBER_GROUPING = 3