blob: 3cda637295068ba05de33a7ec85f0c0430ace701 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# force the retranslation of generated strings and external module
from django.utils.translation import ugettext_lazy as _
from .celery_app import app as celery_app
__all__ = ('celery_app',)
_("username")
_("email address")
_("warehouse")
_("New warehouse")
_("warehouse")
_("New organization")
_("New person")
_("New author")
|