cd7c1b5110
django.utils.translation.ugettext(), ugettext_lazy(), ugettext_noop(), ungettext(), and ungettext_lazy() are deprecated in favor of the functions that they’re aliases for: django.utils.translation.gettext(), gettext_lazy(), gettext_noop(), ngettext(), and ngettext_lazy(). https://docs.djangoproject.com/en/4.0/releases/3.0/#id3 Change-Id: I77878f84e9d10cf6a136dada81eabf4e18676250
9 lines
337 B
Python
9 lines
337 B
Python
from django.utils.translation import gettext_lazy as _
|
|
|
|
# The slug of the panel group to be added to HORIZON_CONFIG. Required.
|
|
PANEL_GROUP = 'volumes'
|
|
# The display name of the PANEL_GROUP. Required.
|
|
PANEL_GROUP_NAME = _('Volumes')
|
|
# The slug of the dashboard the PANEL_GROUP associated with. Required.
|
|
PANEL_GROUP_DASHBOARD = 'project'
|