diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-02-12 15:43:15 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-02-28 12:15:24 +0100 |
commit | 6e4f7a0390b7f49ce79f0e15e07e1d6df309f3ce (patch) | |
tree | bb7c35ca850f60028c576ee42e3fb95db20a64be /example_project/__init__.py.base.sample | |
parent | 8ec062dab58750d8eb7fc0217d7adcf71d222747 (diff) | |
download | Ishtar-6e4f7a0390b7f49ce79f0e15e07e1d6df309f3ce.tar.bz2 Ishtar-6e4f7a0390b7f49ce79f0e15e07e1d6df309f3ce.zip |
Refactor - clean
Diffstat (limited to 'example_project/__init__.py.base.sample')
-rw-r--r-- | example_project/__init__.py.base.sample | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/example_project/__init__.py.base.sample b/example_project/__init__.py.base.sample index c6adb7559..6631c46d5 100644 --- a/example_project/__init__.py.base.sample +++ b/example_project/__init__.py.base.sample @@ -1,11 +1,11 @@ # force the retranslation of generated strings and external module from django.utils.translation import ugettext_lazy as _ -_(u"username") -_(u"email address") -_(u"warehouse") -_(u"New warehouse") -_(u"warehouse") -_(u"New organization") -_(u"New person") -_(u"New author") +_("username") +_("email address") +_("warehouse") +_("New warehouse") +_("warehouse") +_("New organization") +_("New person") +_("New author") |