Django

Code

Show
Ignore:
Timestamp:
07/05/08 23:08:13 (3 months ago)
Author:
mtredinnick
Message:

Fixed #7061 -- Fixed a small inaccuracy in the i18n docs. Thanks akaihola.

Files:

Legend:

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

    r7361 r7842  
    267267 
    268268    * ``LANGUAGES`` is a list of tuples in which the first element is the 
    269       language code and the second is the language name (in that language). 
     269      language code and the second is the language name (translated into the 
     270      currently active locale). 
    270271    * ``LANGUAGE_CODE`` is the current user's preferred language, as a string. 
    271272      Example: ``en-us``. (See "How language preference is discovered", below.) 
    272     * ``LANGUAGE_BIDI`` is the current language's direction. If True, it's a 
     273    * ``LANGUAGE_BIDI`` is the current locale's direction. If True, it's a 
    273274      right-to-left language, e.g: Hebrew, Arabic. If False it's a 
    274275      left-to-right language, e.g: English, French, German etc.