blob: 357afe22ab7c5f093791b6add837df33881e20e8 (
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 gettext_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")
|