summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJosé Padilla <jpadilla@webapplicate.com>2015-05-02 08:12:20 -0400
committerMarkus Holtermann <info@markusholtermann.eu>2015-05-02 20:18:34 +0200
commitb0bd1f0e19857ed8c085f4621c5b7fcfde5ec040 (patch)
tree02667605c6cfc2ec4d0da09f9df66f3ce2b8280b /docs
parent69ddc1b3da043195a0f4e09211d395724b42c70b (diff)
Fixed typo in translation import statement
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/i18n/translation.txt2
1 files changed, 1 insertions, 1 deletions
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):