From 0c1779bfadfd4a68104d3b07d9acaec252142448 Mon Sep 17 00:00:00 2001 From: Doug Fish Date: Thu, 29 May 2014 14:20:49 -0500 Subject: [PATCH] Remove "Panel" from navigation elements "Panel" isn't really needed or helpful in the Navigation. It should be removed for consistency with the other dashboard. Change-Id: I0b7fe66a500cae7bd922bcc81a4c930ba03e3028 Closes-Bug: #1324661 --- horizon/base.py | 2 +- openstack_dashboard/dashboards/admin/dashboard.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/horizon/base.py b/horizon/base.py index a26234dec6..78f194db01 100644 --- a/horizon/base.py +++ b/horizon/base.py @@ -311,7 +311,7 @@ class Dashboard(Registry, HorizonComponent): class SystemPanels(horizon.PanelGroup): slug = "syspanel" - name = _("System Panel") + name = _("System") panels = ('overview', 'instances', ...) class Syspanel(horizon.Dashboard): diff --git a/openstack_dashboard/dashboards/admin/dashboard.py b/openstack_dashboard/dashboards/admin/dashboard.py index 41e72f00b4..5eb41ef7cf 100644 --- a/openstack_dashboard/dashboards/admin/dashboard.py +++ b/openstack_dashboard/dashboards/admin/dashboard.py @@ -19,7 +19,7 @@ import horizon class SystemPanels(horizon.PanelGroup): slug = "admin" - name = _("System Panel") + name = _("System") panels = ('overview', 'metering', 'hypervisors', 'aggregates', 'instances', 'volumes', 'flavors', 'images', 'networks', 'routers', 'info') @@ -27,7 +27,7 @@ class SystemPanels(horizon.PanelGroup): class IdentityPanels(horizon.PanelGroup): slug = "identity" - name = _("Identity Panel") + name = _("Identity") panels = ('domains', 'projects', 'users', 'groups', 'roles')