mirror of
https://github.com/django/django.git
synced 2025-06-05 03:29:12 +00:00
Merged core translations from 1.5 branch
This commit is contained in:
parent
9e6725c5ea
commit
6ca475d540
@ -48,10 +48,13 @@ LANGUAGE_CODE = 'en-us'
|
|||||||
|
|
||||||
# Languages we provide translations for, out of the box.
|
# Languages we provide translations for, out of the box.
|
||||||
LANGUAGES = (
|
LANGUAGES = (
|
||||||
|
('af', gettext_noop('Afrikaans')),
|
||||||
('ar', gettext_noop('Arabic')),
|
('ar', gettext_noop('Arabic')),
|
||||||
('az', gettext_noop('Azerbaijani')),
|
('az', gettext_noop('Azerbaijani')),
|
||||||
('bg', gettext_noop('Bulgarian')),
|
('bg', gettext_noop('Bulgarian')),
|
||||||
|
('be', gettext_noop('Belarusian')),
|
||||||
('bn', gettext_noop('Bengali')),
|
('bn', gettext_noop('Bengali')),
|
||||||
|
('br', gettext_noop('Breton')),
|
||||||
('bs', gettext_noop('Bosnian')),
|
('bs', gettext_noop('Bosnian')),
|
||||||
('ca', gettext_noop('Catalan')),
|
('ca', gettext_noop('Catalan')),
|
||||||
('cs', gettext_noop('Czech')),
|
('cs', gettext_noop('Czech')),
|
||||||
@ -66,6 +69,7 @@ LANGUAGES = (
|
|||||||
('es-ar', gettext_noop('Argentinian Spanish')),
|
('es-ar', gettext_noop('Argentinian Spanish')),
|
||||||
('es-mx', gettext_noop('Mexican Spanish')),
|
('es-mx', gettext_noop('Mexican Spanish')),
|
||||||
('es-ni', gettext_noop('Nicaraguan Spanish')),
|
('es-ni', gettext_noop('Nicaraguan Spanish')),
|
||||||
|
('es-ve', gettext_noop('Venezuelan Spanish')),
|
||||||
('et', gettext_noop('Estonian')),
|
('et', gettext_noop('Estonian')),
|
||||||
('eu', gettext_noop('Basque')),
|
('eu', gettext_noop('Basque')),
|
||||||
('fa', gettext_noop('Persian')),
|
('fa', gettext_noop('Persian')),
|
||||||
@ -78,6 +82,7 @@ LANGUAGES = (
|
|||||||
('hi', gettext_noop('Hindi')),
|
('hi', gettext_noop('Hindi')),
|
||||||
('hr', gettext_noop('Croatian')),
|
('hr', gettext_noop('Croatian')),
|
||||||
('hu', gettext_noop('Hungarian')),
|
('hu', gettext_noop('Hungarian')),
|
||||||
|
('ia', gettext_noop('Interlingua')),
|
||||||
('id', gettext_noop('Indonesian')),
|
('id', gettext_noop('Indonesian')),
|
||||||
('is', gettext_noop('Icelandic')),
|
('is', gettext_noop('Icelandic')),
|
||||||
('it', gettext_noop('Italian')),
|
('it', gettext_noop('Italian')),
|
||||||
@ -87,6 +92,7 @@ LANGUAGES = (
|
|||||||
('km', gettext_noop('Khmer')),
|
('km', gettext_noop('Khmer')),
|
||||||
('kn', gettext_noop('Kannada')),
|
('kn', gettext_noop('Kannada')),
|
||||||
('ko', gettext_noop('Korean')),
|
('ko', gettext_noop('Korean')),
|
||||||
|
('lb', gettext_noop('Luxembourgish')),
|
||||||
('lt', gettext_noop('Lithuanian')),
|
('lt', gettext_noop('Lithuanian')),
|
||||||
('lv', gettext_noop('Latvian')),
|
('lv', gettext_noop('Latvian')),
|
||||||
('mk', gettext_noop('Macedonian')),
|
('mk', gettext_noop('Macedonian')),
|
||||||
@ -114,6 +120,7 @@ LANGUAGES = (
|
|||||||
('th', gettext_noop('Thai')),
|
('th', gettext_noop('Thai')),
|
||||||
('tr', gettext_noop('Turkish')),
|
('tr', gettext_noop('Turkish')),
|
||||||
('tt', gettext_noop('Tatar')),
|
('tt', gettext_noop('Tatar')),
|
||||||
|
('udm', gettext_noop('Udmurt')),
|
||||||
('uk', gettext_noop('Ukrainian')),
|
('uk', gettext_noop('Ukrainian')),
|
||||||
('ur', gettext_noop('Urdu')),
|
('ur', gettext_noop('Urdu')),
|
||||||
('vi', gettext_noop('Vietnamese')),
|
('vi', gettext_noop('Vietnamese')),
|
||||||
|
@ -4,6 +4,12 @@ from __future__ import unicode_literals
|
|||||||
# inside a sentence in your language.
|
# inside a sentence in your language.
|
||||||
|
|
||||||
LANG_INFO = {
|
LANG_INFO = {
|
||||||
|
'af': {
|
||||||
|
'bidi': False,
|
||||||
|
'code': 'af',
|
||||||
|
'name': 'Afrikaans',
|
||||||
|
'name_local': 'Afrikaans',
|
||||||
|
},
|
||||||
'ar': {
|
'ar': {
|
||||||
'bidi': True,
|
'bidi': True,
|
||||||
'code': 'ar',
|
'code': 'ar',
|
||||||
@ -16,6 +22,12 @@ LANG_INFO = {
|
|||||||
'name': 'Azerbaijani',
|
'name': 'Azerbaijani',
|
||||||
'name_local': 'az\u0259rbaycan dili',
|
'name_local': 'az\u0259rbaycan dili',
|
||||||
},
|
},
|
||||||
|
'be': {
|
||||||
|
'bidi': False,
|
||||||
|
'code': 'be',
|
||||||
|
'name': 'Belarusian',
|
||||||
|
'name_local': '\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u043a\u0430\u044f',
|
||||||
|
},
|
||||||
'bg': {
|
'bg': {
|
||||||
'bidi': False,
|
'bidi': False,
|
||||||
'code': 'bg',
|
'code': 'bg',
|
||||||
@ -28,6 +40,12 @@ LANG_INFO = {
|
|||||||
'name': 'Bengali',
|
'name': 'Bengali',
|
||||||
'name_local': '\u09ac\u09be\u0982\u09b2\u09be',
|
'name_local': '\u09ac\u09be\u0982\u09b2\u09be',
|
||||||
},
|
},
|
||||||
|
'br': {
|
||||||
|
'bidi': False,
|
||||||
|
'code': 'br',
|
||||||
|
'name': 'Breton',
|
||||||
|
'name_local': 'brezhoneg',
|
||||||
|
},
|
||||||
'bs': {
|
'bs': {
|
||||||
'bidi': False,
|
'bidi': False,
|
||||||
'code': 'bs',
|
'code': 'bs',
|
||||||
@ -112,6 +130,12 @@ LANG_INFO = {
|
|||||||
'name': 'Nicaraguan Spanish',
|
'name': 'Nicaraguan Spanish',
|
||||||
'name_local': 'espa\xf1ol de Nicaragua',
|
'name_local': 'espa\xf1ol de Nicaragua',
|
||||||
},
|
},
|
||||||
|
'es-ve': {
|
||||||
|
'bidi': False,
|
||||||
|
'code': 'es-ve',
|
||||||
|
'name': 'Venezuelan Spanish',
|
||||||
|
'name_local': 'espa\xf1ol de Venezuela',
|
||||||
|
},
|
||||||
'et': {
|
'et': {
|
||||||
'bidi': False,
|
'bidi': False,
|
||||||
'code': 'et',
|
'code': 'et',
|
||||||
@ -184,6 +208,12 @@ LANG_INFO = {
|
|||||||
'name': 'Hungarian',
|
'name': 'Hungarian',
|
||||||
'name_local': 'Magyar',
|
'name_local': 'Magyar',
|
||||||
},
|
},
|
||||||
|
'ia': {
|
||||||
|
'bidi': False,
|
||||||
|
'code': 'ia',
|
||||||
|
'name': 'Interlingua',
|
||||||
|
'name_local': 'Interlingua',
|
||||||
|
},
|
||||||
'id': {
|
'id': {
|
||||||
'bidi': False,
|
'bidi': False,
|
||||||
'code': 'id',
|
'code': 'id',
|
||||||
@ -238,6 +268,12 @@ LANG_INFO = {
|
|||||||
'name': 'Korean',
|
'name': 'Korean',
|
||||||
'name_local': '\ud55c\uad6d\uc5b4',
|
'name_local': '\ud55c\uad6d\uc5b4',
|
||||||
},
|
},
|
||||||
|
'lb': {
|
||||||
|
'bidi': False,
|
||||||
|
'code': 'lb',
|
||||||
|
'name': 'Luxembourgish',
|
||||||
|
'name_local': 'L\u00ebtzebuergesch',
|
||||||
|
},
|
||||||
'lt': {
|
'lt': {
|
||||||
'bidi': False,
|
'bidi': False,
|
||||||
'code': 'lt',
|
'code': 'lt',
|
||||||
@ -406,6 +442,12 @@ LANG_INFO = {
|
|||||||
'name': 'Tatar',
|
'name': 'Tatar',
|
||||||
'name_local': '\u0422\u0430\u0442\u0430\u0440\u0447\u0430',
|
'name_local': '\u0422\u0430\u0442\u0430\u0440\u0447\u0430',
|
||||||
},
|
},
|
||||||
|
'udm': {
|
||||||
|
'bidi': False,
|
||||||
|
'code': 'udm',
|
||||||
|
'name': 'Udmurt',
|
||||||
|
'name_local': '\u0423\u0434\u043c\u0443\u0440\u0442',
|
||||||
|
},
|
||||||
'uk': {
|
'uk': {
|
||||||
'bidi': False,
|
'bidi': False,
|
||||||
'code': 'uk',
|
'code': 'uk',
|
||||||
|
BIN
django/conf/locale/af/LC_MESSAGES/django.mo
Normal file
BIN
django/conf/locale/af/LC_MESSAGES/django.mo
Normal file
Binary file not shown.
1263
django/conf/locale/af/LC_MESSAGES/django.po
Normal file
1263
django/conf/locale/af/LC_MESSAGES/django.po
Normal file
File diff suppressed because it is too large
Load Diff
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
BIN
django/conf/locale/be/LC_MESSAGES/django.mo
Normal file
BIN
django/conf/locale/be/LC_MESSAGES/django.mo
Normal file
Binary file not shown.
1261
django/conf/locale/be/LC_MESSAGES/django.po
Normal file
1261
django/conf/locale/be/LC_MESSAGES/django.po
Normal file
File diff suppressed because it is too large
Load Diff
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
BIN
django/conf/locale/br/LC_MESSAGES/django.mo
Normal file
BIN
django/conf/locale/br/LC_MESSAGES/django.mo
Normal file
Binary file not shown.
1259
django/conf/locale/br/LC_MESSAGES/django.po
Normal file
1259
django/conf/locale/br/LC_MESSAGES/django.po
Normal file
File diff suppressed because it is too large
Load Diff
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
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
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
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -4,7 +4,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Django\n"
|
"Project-Id-Version: Django\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2012-10-15 10:55+0200\n"
|
"POT-Creation-Date: 2013-01-01 16:10+0100\n"
|
||||||
"PO-Revision-Date: 2010-05-13 15:35+0200\n"
|
"PO-Revision-Date: 2010-05-13 15:35+0200\n"
|
||||||
"Last-Translator: Django team\n"
|
"Last-Translator: Django team\n"
|
||||||
"Language-Team: English <en@li.org>\n"
|
"Language-Team: English <en@li.org>\n"
|
||||||
@ -14,286 +14,314 @@ msgstr ""
|
|||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: conf/global_settings.py:48
|
#: conf/global_settings.py:48
|
||||||
msgid "Arabic"
|
msgid "Afrikaans"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:49
|
#: conf/global_settings.py:49
|
||||||
msgid "Azerbaijani"
|
msgid "Arabic"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:50
|
#: conf/global_settings.py:50
|
||||||
msgid "Bulgarian"
|
msgid "Azerbaijani"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:51
|
#: conf/global_settings.py:51
|
||||||
msgid "Bengali"
|
msgid "Bulgarian"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:52
|
#: conf/global_settings.py:52
|
||||||
msgid "Bosnian"
|
msgid "Belarusian"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:53
|
#: conf/global_settings.py:53
|
||||||
msgid "Catalan"
|
msgid "Bengali"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:54
|
#: conf/global_settings.py:54
|
||||||
msgid "Czech"
|
msgid "Breton"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:55
|
#: conf/global_settings.py:55
|
||||||
msgid "Welsh"
|
msgid "Bosnian"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:56
|
#: conf/global_settings.py:56
|
||||||
msgid "Danish"
|
msgid "Catalan"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:57
|
#: conf/global_settings.py:57
|
||||||
msgid "German"
|
msgid "Czech"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:58
|
#: conf/global_settings.py:58
|
||||||
msgid "Greek"
|
msgid "Welsh"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:59
|
#: conf/global_settings.py:59
|
||||||
msgid "English"
|
msgid "Danish"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:60
|
#: conf/global_settings.py:60
|
||||||
msgid "British English"
|
msgid "German"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:61
|
#: conf/global_settings.py:61
|
||||||
msgid "Esperanto"
|
msgid "Greek"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:62
|
#: conf/global_settings.py:62
|
||||||
msgid "Spanish"
|
msgid "English"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:63
|
#: conf/global_settings.py:63
|
||||||
msgid "Argentinian Spanish"
|
msgid "British English"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:64
|
#: conf/global_settings.py:64
|
||||||
msgid "Mexican Spanish"
|
msgid "Esperanto"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:65
|
#: conf/global_settings.py:65
|
||||||
msgid "Nicaraguan Spanish"
|
msgid "Spanish"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:66
|
#: conf/global_settings.py:66
|
||||||
msgid "Estonian"
|
msgid "Argentinian Spanish"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:67
|
#: conf/global_settings.py:67
|
||||||
msgid "Basque"
|
msgid "Mexican Spanish"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:68
|
#: conf/global_settings.py:68
|
||||||
msgid "Persian"
|
msgid "Nicaraguan Spanish"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:69
|
#: conf/global_settings.py:69
|
||||||
msgid "Finnish"
|
msgid "Venezuelan Spanish"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:70
|
#: conf/global_settings.py:70
|
||||||
msgid "French"
|
msgid "Estonian"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:71
|
#: conf/global_settings.py:71
|
||||||
msgid "Frisian"
|
msgid "Basque"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:72
|
#: conf/global_settings.py:72
|
||||||
msgid "Irish"
|
msgid "Persian"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:73
|
#: conf/global_settings.py:73
|
||||||
msgid "Galician"
|
msgid "Finnish"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:74
|
#: conf/global_settings.py:74
|
||||||
msgid "Hebrew"
|
msgid "French"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:75
|
#: conf/global_settings.py:75
|
||||||
msgid "Hindi"
|
msgid "Frisian"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:76
|
#: conf/global_settings.py:76
|
||||||
msgid "Croatian"
|
msgid "Irish"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:77
|
#: conf/global_settings.py:77
|
||||||
msgid "Hungarian"
|
msgid "Galician"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:78
|
#: conf/global_settings.py:78
|
||||||
msgid "Indonesian"
|
msgid "Hebrew"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:79
|
#: conf/global_settings.py:79
|
||||||
msgid "Icelandic"
|
msgid "Hindi"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:80
|
#: conf/global_settings.py:80
|
||||||
msgid "Italian"
|
msgid "Croatian"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:81
|
#: conf/global_settings.py:81
|
||||||
msgid "Japanese"
|
msgid "Hungarian"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:82
|
#: conf/global_settings.py:82
|
||||||
msgid "Georgian"
|
msgid "Interlingua"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:83
|
#: conf/global_settings.py:83
|
||||||
msgid "Kazakh"
|
msgid "Indonesian"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:84
|
#: conf/global_settings.py:84
|
||||||
msgid "Khmer"
|
msgid "Icelandic"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:85
|
#: conf/global_settings.py:85
|
||||||
msgid "Kannada"
|
msgid "Italian"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:86
|
#: conf/global_settings.py:86
|
||||||
msgid "Korean"
|
msgid "Japanese"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:87
|
#: conf/global_settings.py:87
|
||||||
msgid "Lithuanian"
|
msgid "Georgian"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:88
|
#: conf/global_settings.py:88
|
||||||
msgid "Latvian"
|
msgid "Kazakh"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:89
|
#: conf/global_settings.py:89
|
||||||
msgid "Macedonian"
|
msgid "Khmer"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:90
|
#: conf/global_settings.py:90
|
||||||
msgid "Malayalam"
|
msgid "Kannada"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:91
|
#: conf/global_settings.py:91
|
||||||
msgid "Mongolian"
|
msgid "Korean"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:92
|
#: conf/global_settings.py:92
|
||||||
msgid "Norwegian Bokmal"
|
msgid "Luxembourgish"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:93
|
#: conf/global_settings.py:93
|
||||||
msgid "Nepali"
|
msgid "Lithuanian"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:94
|
#: conf/global_settings.py:94
|
||||||
msgid "Dutch"
|
msgid "Latvian"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:95
|
#: conf/global_settings.py:95
|
||||||
msgid "Norwegian Nynorsk"
|
msgid "Macedonian"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:96
|
#: conf/global_settings.py:96
|
||||||
msgid "Punjabi"
|
msgid "Malayalam"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:97
|
#: conf/global_settings.py:97
|
||||||
msgid "Polish"
|
msgid "Mongolian"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:98
|
#: conf/global_settings.py:98
|
||||||
msgid "Portuguese"
|
msgid "Norwegian Bokmal"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:99
|
#: conf/global_settings.py:99
|
||||||
msgid "Brazilian Portuguese"
|
msgid "Nepali"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:100
|
#: conf/global_settings.py:100
|
||||||
msgid "Romanian"
|
msgid "Dutch"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:101
|
#: conf/global_settings.py:101
|
||||||
msgid "Russian"
|
msgid "Norwegian Nynorsk"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:102
|
#: conf/global_settings.py:102
|
||||||
msgid "Slovak"
|
msgid "Punjabi"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:103
|
#: conf/global_settings.py:103
|
||||||
msgid "Slovenian"
|
msgid "Polish"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:104
|
#: conf/global_settings.py:104
|
||||||
msgid "Albanian"
|
msgid "Portuguese"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:105
|
#: conf/global_settings.py:105
|
||||||
msgid "Serbian"
|
msgid "Brazilian Portuguese"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:106
|
#: conf/global_settings.py:106
|
||||||
msgid "Serbian Latin"
|
msgid "Romanian"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:107
|
#: conf/global_settings.py:107
|
||||||
msgid "Swedish"
|
msgid "Russian"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:108
|
#: conf/global_settings.py:108
|
||||||
msgid "Swahili"
|
msgid "Slovak"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:109
|
#: conf/global_settings.py:109
|
||||||
msgid "Tamil"
|
msgid "Slovenian"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:110
|
#: conf/global_settings.py:110
|
||||||
msgid "Telugu"
|
msgid "Albanian"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:111
|
#: conf/global_settings.py:111
|
||||||
msgid "Thai"
|
msgid "Serbian"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:112
|
#: conf/global_settings.py:112
|
||||||
msgid "Turkish"
|
msgid "Serbian Latin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:113
|
#: conf/global_settings.py:113
|
||||||
msgid "Tatar"
|
msgid "Swedish"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:114
|
#: conf/global_settings.py:114
|
||||||
msgid "Ukrainian"
|
msgid "Swahili"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:115
|
#: conf/global_settings.py:115
|
||||||
msgid "Urdu"
|
msgid "Tamil"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:116
|
#: conf/global_settings.py:116
|
||||||
msgid "Vietnamese"
|
msgid "Telugu"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:117
|
#: conf/global_settings.py:117
|
||||||
msgid "Simplified Chinese"
|
msgid "Thai"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: conf/global_settings.py:118
|
#: conf/global_settings.py:118
|
||||||
|
msgid "Turkish"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: conf/global_settings.py:119
|
||||||
|
msgid "Tatar"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: conf/global_settings.py:120
|
||||||
|
msgid "Udmurt"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: conf/global_settings.py:121
|
||||||
|
msgid "Ukrainian"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: conf/global_settings.py:122
|
||||||
|
msgid "Urdu"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: conf/global_settings.py:123
|
||||||
|
msgid "Vietnamese"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: conf/global_settings.py:124
|
||||||
|
msgid "Simplified Chinese"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: conf/global_settings.py:125
|
||||||
msgid "Traditional Chinese"
|
msgid "Traditional Chinese"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -355,16 +383,16 @@ msgid ""
|
|||||||
"%(show_value)d)."
|
"%(show_value)d)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: db/models/base.py:843
|
#: db/models/base.py:857
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s."
|
msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: db/models/base.py:866 forms/models.py:573
|
#: db/models/base.py:880 forms/models.py:573
|
||||||
msgid "and"
|
msgid "and"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: db/models/base.py:867 db/models/fields/__init__.py:70
|
#: db/models/base.py:881 db/models/fields/__init__.py:70
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(model_name)s with this %(field_label)s already exists."
|
msgid "%(model_name)s with this %(field_label)s already exists."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -536,37 +564,32 @@ msgstr ""
|
|||||||
msgid "URL"
|
msgid "URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: db/models/fields/files.py:211
|
#: db/models/fields/files.py:216
|
||||||
#, python-format
|
|
||||||
msgid "Filename is %(extra)d characters too long."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: db/models/fields/files.py:221
|
|
||||||
msgid "File"
|
msgid "File"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: db/models/fields/files.py:347
|
#: db/models/fields/files.py:323
|
||||||
msgid "Image"
|
msgid "Image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: db/models/fields/related.py:950
|
#: db/models/fields/related.py:979
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Model %(model)s with pk %(pk)r does not exist."
|
msgid "Model %(model)s with pk %(pk)r does not exist."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: db/models/fields/related.py:952
|
#: db/models/fields/related.py:981
|
||||||
msgid "Foreign Key (type determined by related field)"
|
msgid "Foreign Key (type determined by related field)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: db/models/fields/related.py:1082
|
#: db/models/fields/related.py:1111
|
||||||
msgid "One-to-one relationship"
|
msgid "One-to-one relationship"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: db/models/fields/related.py:1149
|
#: db/models/fields/related.py:1178
|
||||||
msgid "Many-to-many relationship"
|
msgid "Many-to-many relationship"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: db/models/fields/related.py:1174
|
#: db/models/fields/related.py:1203
|
||||||
msgid ""
|
msgid ""
|
||||||
"Hold down \"Control\", or \"Command\" on a Mac, to select more than one."
|
"Hold down \"Control\", or \"Command\" on a Mac, to select more than one."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -647,15 +670,15 @@ msgstr ""
|
|||||||
msgid "Select a valid choice. %(value)s is not one of the available choices."
|
msgid "Select a valid choice. %(value)s is not one of the available choices."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: forms/fields.py:747 forms/fields.py:835 forms/models.py:999
|
#: forms/fields.py:747 forms/fields.py:835 forms/models.py:1002
|
||||||
msgid "Enter a list of values."
|
msgid "Enter a list of values."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: forms/formsets.py:323 forms/formsets.py:325
|
#: forms/formsets.py:324 forms/formsets.py:326
|
||||||
msgid "Order"
|
msgid "Order"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: forms/formsets.py:327
|
#: forms/formsets.py:328
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -680,20 +703,20 @@ msgstr ""
|
|||||||
msgid "Please correct the duplicate values below."
|
msgid "Please correct the duplicate values below."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: forms/models.py:849
|
#: forms/models.py:852
|
||||||
msgid "The inline foreign key did not match the parent instance primary key."
|
msgid "The inline foreign key did not match the parent instance primary key."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: forms/models.py:910
|
#: forms/models.py:913
|
||||||
msgid "Select a valid choice. That choice is not one of the available choices."
|
msgid "Select a valid choice. That choice is not one of the available choices."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: forms/models.py:1000
|
#: forms/models.py:1003
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Select a valid choice. %s is not one of the available choices."
|
msgid "Select a valid choice. %s is not one of the available choices."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: forms/models.py:1002
|
#: forms/models.py:1005
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "\"%s\" is not a valid value for a primary key."
|
msgid "\"%s\" is not a valid value for a primary key."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -717,15 +740,15 @@ msgstr ""
|
|||||||
msgid "Clear"
|
msgid "Clear"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: forms/widgets.py:591
|
#: forms/widgets.py:594
|
||||||
msgid "Unknown"
|
msgid "Unknown"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: forms/widgets.py:592
|
#: forms/widgets.py:595
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: forms/widgets.py:593
|
#: forms/widgets.py:596
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1126,11 +1149,11 @@ msgstr ""
|
|||||||
msgid ", %(number)d %(type)s"
|
msgid ", %(number)d %(type)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: views/static.py:55
|
#: views/static.py:56
|
||||||
msgid "Directory indexes are not allowed here."
|
msgid "Directory indexes are not allowed here."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: views/static.py:57
|
#: views/static.py:58
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "\"%(path)s\" does not exist"
|
msgid "\"%(path)s\" does not exist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1178,16 +1201,16 @@ msgstr ""
|
|||||||
msgid "No %(verbose_name)s found matching the query"
|
msgid "No %(verbose_name)s found matching the query"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: views/generic/list.py:49
|
#: views/generic/list.py:51
|
||||||
msgid "Page is not 'last', nor can it be converted to an int."
|
msgid "Page is not 'last', nor can it be converted to an int."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: views/generic/list.py:54
|
#: views/generic/list.py:56
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Invalid page (%(page_number)s)"
|
msgid "Invalid page (%(page_number)s): %(message)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: views/generic/list.py:134
|
#: views/generic/list.py:137
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Empty list and '%(class_name)s.allow_empty' is False."
|
msgid "Empty list and '%(class_name)s.allow_empty' is False."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
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
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
Binary file not shown.
File diff suppressed because it is too large
Load Diff
BIN
django/conf/locale/es_VE/LC_MESSAGES/django.mo
Normal file
BIN
django/conf/locale/es_VE/LC_MESSAGES/django.mo
Normal file
Binary file not shown.
1229
django/conf/locale/es_VE/LC_MESSAGES/django.po
Normal file
1229
django/conf/locale/es_VE/LC_MESSAGES/django.po
Normal file
File diff suppressed because it is too large
Load Diff
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
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
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
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
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
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
BIN
django/conf/locale/ia/LC_MESSAGES/django.mo
Normal file
BIN
django/conf/locale/ia/LC_MESSAGES/django.mo
Normal file
Binary file not shown.
1258
django/conf/locale/ia/LC_MESSAGES/django.po
Normal file
1258
django/conf/locale/ia/LC_MESSAGES/django.po
Normal file
File diff suppressed because it is too large
Load Diff
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
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
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
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
Binary file not shown.
File diff suppressed because it is too large
Load Diff
BIN
django/conf/locale/lb/LC_MESSAGES/django.mo
Normal file
BIN
django/conf/locale/lb/LC_MESSAGES/django.mo
Normal file
Binary file not shown.
1221
django/conf/locale/lb/LC_MESSAGES/django.po
Normal file
1221
django/conf/locale/lb/LC_MESSAGES/django.po
Normal file
File diff suppressed because it is too large
Load Diff
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
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
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user