Django

Code

Changeset 1206

Show
Ignore:
Timestamp:
11/12/05 15:36:38 (3 years ago)
Author:
hugo
Message:

added the LANGUAGES setting to the settings documentation

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/settings.txt

    r1184 r1206  
    401401.. _internationalization docs: http://www.djangoproject.com/documentation/i18n/ 
    402402 
     403LANGUAGES 
     404--------- 
     405 
     406Default: a list of available languages and their name 
     407 
     408This is a list of two-tuples with language code and language name that are available 
     409for language selection. See the `internationalization docs`_ for details. It usually 
     410isn't defined, only if you want to restrict language selection to a subset of the 
     411django-provided languages you need to set it. 
     412 
    403413MANAGERS 
    404414--------