Fixed #22283 -- Updated documentation referring to non-existent tuples.

This commit is contained in:
Matthew Somerville 2014-03-17 17:06:11 +00:00 committed by Baptiste Mispelon
parent b47ef04ea2
commit 61296fb1ba
1 changed files with 3 additions and 4 deletions

View File

@ -21,7 +21,7 @@ from django.utils.six import StringIO
from django.utils.translation import TranslatorCommentWarning, trim_whitespace, LANGUAGE_SESSION_KEY from django.utils.translation import TranslatorCommentWarning, trim_whitespace, LANGUAGE_SESSION_KEY
# Translations are cached in a dictionary for every language+app tuple. # Translations are cached in a dictionary for every language.
# The active translations are stored by threadid to make them thread local. # The active translations are stored by threadid to make them thread local.
_translations = {} _translations = {}
_active = local() _active = local()
@ -206,9 +206,8 @@ def translation(language):
def activate(language): def activate(language):
""" """
Fetches the translation object for a given tuple of application name and Fetches the translation object for a given language and installs it as the
language and installs it as the current translation object for the current current translation object for the current thread.
thread.
""" """
if language in _DJANGO_DEPRECATED_LOCALES: if language in _DJANGO_DEPRECATED_LOCALES:
msg = ("The use of the language code '%s' is deprecated. " msg = ("The use of the language code '%s' is deprecated. "