Fixed #4188 -- Removed the explicit list of default LANGUAGES setting values,
because it will keep getting out of date. Replaced it with a pointer to the source of the that list. git-svn-id: http://code.djangoproject.com/svn/django/trunk@5129 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
1cae38c731
commit
94cb93edca
|
@ -500,44 +500,17 @@ in standard language format. For example, U.S. English is ``"en-us"``. See the
|
||||||
LANGUAGES
|
LANGUAGES
|
||||||
---------
|
---------
|
||||||
|
|
||||||
Default: A tuple of all available languages. Currently, this is::
|
Default: A tuple of all available languages. This list is continually growing
|
||||||
|
and including a copy here would inevitably become rapidly out of date. You can
|
||||||
|
see the current list of translated languages by looking in
|
||||||
|
``django/conf/global_settings.py`` (or view the `online source`_).
|
||||||
|
|
||||||
LANGUAGES = (
|
.. _online source: http://code.djangoproject.com/browser/django/trunk/django/conf/global_settings.py
|
||||||
('ar', _('Arabic')),
|
|
||||||
('bn', _('Bengali')),
|
|
||||||
('cs', _('Czech')),
|
|
||||||
('cy', _('Welsh')),
|
|
||||||
('da', _('Danish')),
|
|
||||||
('de', _('German')),
|
|
||||||
('el', _('Greek')),
|
|
||||||
('en', _('English')),
|
|
||||||
('es', _('Spanish')),
|
|
||||||
('es_AR', _('Argentinean Spanish')),
|
|
||||||
('fr', _('French')),
|
|
||||||
('gl', _('Galician')),
|
|
||||||
('hu', _('Hungarian')),
|
|
||||||
('he', _('Hebrew')),
|
|
||||||
('is', _('Icelandic')),
|
|
||||||
('it', _('Italian')),
|
|
||||||
('ja', _('Japanese')),
|
|
||||||
('nl', _('Dutch')),
|
|
||||||
('no', _('Norwegian')),
|
|
||||||
('pt-br', _('Brazilian')),
|
|
||||||
('ro', _('Romanian')),
|
|
||||||
('ru', _('Russian')),
|
|
||||||
('sk', _('Slovak')),
|
|
||||||
('sl', _('Slovenian')),
|
|
||||||
('sr', _('Serbian')),
|
|
||||||
('sv', _('Swedish')),
|
|
||||||
('ta', _('Tamil')),
|
|
||||||
('uk', _('Ukrainian')),
|
|
||||||
('zh-cn', _('Simplified Chinese')),
|
|
||||||
('zh-tw', _('Traditional Chinese')),
|
|
||||||
)
|
|
||||||
|
|
||||||
A tuple of two-tuples in the format (language code, language name). This
|
The list is a tuple of two-tuples in the format (language code, language
|
||||||
specifies which languages are available for language selection. See the
|
name) -- for example, ``('ja', 'Japanese')``. This specifies which languages
|
||||||
`internationalization docs`_ for details.
|
are available for language selection. See the `internationalization docs`_ for
|
||||||
|
details.
|
||||||
|
|
||||||
Generally, the default value should suffice. Only set this setting if you want
|
Generally, the default value should suffice. Only set this setting if you want
|
||||||
to restrict language selection to a subset of the Django-provided languages.
|
to restrict language selection to a subset of the Django-provided languages.
|
||||||
|
|
Loading…
Reference in New Issue