diff options
| -rw-r--r-- | example_project/__init__.py | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/example_project/__init__.py b/example_project/__init__.py index 0cfc3ae26..c6adb7559 100644 --- a/example_project/__init__.py +++ b/example_project/__init__.py @@ -1,5 +1,6 @@  # force the retranslation of generated strings and external module -from django.utils.translation import ugettext as _ +from django.utils.translation import ugettext_lazy as _ +  _(u"username")  _(u"email address")  _(u"warehouse") | 
