diff --git a/designatedashboard/enabled/_1710_project_dns_panel_group.py b/designatedashboard/enabled/_1710_project_dns_panel_group.py index 4473e40..ae66026 100644 --- a/designatedashboard/enabled/_1710_project_dns_panel_group.py +++ b/designatedashboard/enabled/_1710_project_dns_panel_group.py @@ -12,9 +12,11 @@ # License for the specific language governing permissions and limitations # under the License. +from django.utils.translation import gettext_lazy as _ + # The name of the panel group to be added to HORIZON_CONFIG. Required. PANEL_GROUP = 'dns' # The display name of the PANEL_GROUP. Required. -PANEL_GROUP_NAME = 'DNS' +PANEL_GROUP_NAME = _('DNS') # The name of the dashboard the PANEL_GROUP associated with. Required. PANEL_GROUP_DASHBOARD = 'project'