Fixed #2572 -- Added all languages to docs/settings.txt. Thanks for the patch, gandalf@owca.info
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3643 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
513ae3a3f4
commit
295429d1c3
|
@ -473,25 +473,36 @@ LANGUAGES
|
||||||
Default: A tuple of all available languages. Currently, this is::
|
Default: A tuple of all available languages. Currently, this is::
|
||||||
|
|
||||||
LANGUAGES = (
|
LANGUAGES = (
|
||||||
|
('ar', _('Arabic')),
|
||||||
('bn', _('Bengali')),
|
('bn', _('Bengali')),
|
||||||
('cs', _('Czech')),
|
('cs', _('Czech')),
|
||||||
('cy', _('Welsh')),
|
('cy', _('Welsh')),
|
||||||
('da', _('Danish')),
|
('da', _('Danish')),
|
||||||
('de', _('German')),
|
('de', _('German')),
|
||||||
|
('el', _('Greek')),
|
||||||
('en', _('English')),
|
('en', _('English')),
|
||||||
('es', _('Spanish')),
|
('es', _('Spanish')),
|
||||||
|
('es_AR', _('Argentinean Spanish')),
|
||||||
('fr', _('French')),
|
('fr', _('French')),
|
||||||
('gl', _('Galician')),
|
('gl', _('Galician')),
|
||||||
|
('hu', _('Hungarian')),
|
||||||
|
('he', _('Hebrew')),
|
||||||
('is', _('Icelandic')),
|
('is', _('Icelandic')),
|
||||||
('it', _('Italian')),
|
('it', _('Italian')),
|
||||||
|
('ja', _('Japanese')),
|
||||||
|
('nl', _('Dutch')),
|
||||||
('no', _('Norwegian')),
|
('no', _('Norwegian')),
|
||||||
('pt-br', _('Brazilian')),
|
('pt-br', _('Brazilian')),
|
||||||
('ro', _('Romanian')),
|
('ro', _('Romanian')),
|
||||||
('ru', _('Russian')),
|
('ru', _('Russian')),
|
||||||
('sk', _('Slovak')),
|
('sk', _('Slovak')),
|
||||||
|
('sl', _('Slovenian')),
|
||||||
('sr', _('Serbian')),
|
('sr', _('Serbian')),
|
||||||
('sv', _('Swedish')),
|
('sv', _('Swedish')),
|
||||||
|
('ta', _('Tamil')),
|
||||||
|
('uk', _('Ukrainian')),
|
||||||
('zh-cn', _('Simplified Chinese')),
|
('zh-cn', _('Simplified Chinese')),
|
||||||
|
('zh-tw', _('Traditional Chinese')),
|
||||||
)
|
)
|
||||||
|
|
||||||
A tuple of two-tuples in the format (language code, language name). This
|
A tuple of two-tuples in the format (language code, language name). This
|
||||||
|
|
Loading…
Reference in New Issue