diff --git a/django/utils/translation/__init__.py b/django/utils/translation/__init__.py index 39ebd6f75a..dbb97af76c 100644 --- a/django/utils/translation/__init__.py +++ b/django/utils/translation/__init__.py @@ -7,7 +7,7 @@ __all__ = ['gettext', 'gettext_noop', 'gettext_lazy', 'ngettext', 'ngettext_lazy', 'string_concat', 'activate', 'deactivate', 'get_language', 'get_language_bidi', 'get_date_formats', 'get_partial_date_formats', 'check_for_language', 'to_locale', - 'get_language_from_request', 'install'] + 'get_language_from_request', 'install', 'templatize'] # Here be dragons, so a short explanation of the logic won't hurt: # We are trying to solve two problems: (1) access settings, in particular @@ -92,3 +92,6 @@ def get_language_from_request(request): def install(): return real_install() +def templatize(src): + return real_templatize(src) +