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 | 13b9ef1c26bb89349a15be94db7d01512e270d5a (patch) | |
tree | bb7c35ca850f60028c576ee42e3fb95db20a64be /example_project/__init__.py.base.sample | |
parent | 7e6c628ff9f4d27609efda613b790f87bbeacea1 (diff) | |
download | Ishtar-13b9ef1c26bb89349a15be94db7d01512e270d5a.tar.bz2 Ishtar-13b9ef1c26bb89349a15be94db7d01512e270d5a.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") |