diff --git a/django/utils/translation/__init__.py b/django/utils/translation/__init__.py
index 43ce3e5..c0a0df9 100644
a
|
b
|
__all__ = ['gettext', 'gettext_noop', 'gettext_lazy', 'ngettext',
|
8 | 8 | 'ngettext_lazy', 'string_concat', 'activate', 'deactivate', |
9 | 9 | 'get_language', 'get_language_bidi', 'get_date_formats', |
10 | 10 | 'get_partial_date_formats', 'check_for_language', 'to_locale', |
11 | | 'get_language_from_request', 'templatize', 'ugettext', |
| 11 | 'get_language_from_request', 'templatize', 'ugettext', 'ugettext_lazy', |
12 | 12 | 'ungettext', 'deactivate_all'] |
13 | 13 | |
14 | 14 | # Here be dragons, so a short explanation of the logic won't hurt: |