summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-07-06 04:08:13 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-07-06 04:08:13 +0000
commitc71686489b70223dddeba760785217ef63804b44 (patch)
tree35d144abd3ebc14b52886cc5f4d220376b1d2b28 /docs
parent31b61d57d593f6b10fcf055b529e086a72f647ff (diff)
Fixed #7061 -- Fixed a small inaccuracy in the i18n docs. Thanks akaihola.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7842 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/i18n.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/i18n.txt b/docs/i18n.txt
index d6c86e1c9d..c5e0b56e67 100644
--- a/docs/i18n.txt
+++ b/docs/i18n.txt
@@ -266,10 +266,11 @@ Internally, all block and inline translations use the appropriate
Each ``RequestContext`` has access to three translation-specific variables:
* ``LANGUAGES`` is a list of tuples in which the first element is the
- language code and the second is the language name (in that language).
+ language code and the second is the language name (translated into the
+ currently active locale).
* ``LANGUAGE_CODE`` is the current user's preferred language, as a string.
Example: ``en-us``. (See "How language preference is discovered", below.)
- * ``LANGUAGE_BIDI`` is the current language's direction. If True, it's a
+ * ``LANGUAGE_BIDI`` is the current locale's direction. If True, it's a
right-to-left language, e.g: Hebrew, Arabic. If False it's a
left-to-right language, e.g: English, French, German etc.