From b0bd1f0e19857ed8c085f4621c5b7fcfde5ec040 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Padilla?= Date: Sat, 2 May 2015 08:12:20 -0400 Subject: [PATCH] Fixed typo in translation import statement --- docs/topics/i18n/translation.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/i18n/translation.txt b/docs/topics/i18n/translation.txt index 92ece9df2f..6654082f2b 100644 --- a/docs/topics/i18n/translation.txt +++ b/docs/topics/i18n/translation.txt @@ -1779,7 +1779,7 @@ To help write more concise code, there is also a context manager ``django.utils.translation.override()`` that stores the current language on enter and restores it on exit. With it, the above example becomes:: - from django.utils import tranlations + from django.utils import translation def welcome_translated(language): with translation.override(language):