From b260b0a4acc663042c9e4451ea22563b3467bc1a Mon Sep 17 00:00:00 2001 From: Juan Manuel Olle Date: Mon, 17 Mar 2014 12:02:09 -0300 Subject: [PATCH] Better tab name on Hosts Aggregate modal. Change the Tab name on "Create Host Aggregate" modal for a better match with the action. Change-Id: I87d1ae63d719afcb6d5f9827171f8392d6dc3a8d Closes-Bug: #1291120 --- openstack_dashboard/dashboards/admin/aggregates/workflows.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openstack_dashboard/dashboards/admin/aggregates/workflows.py b/openstack_dashboard/dashboards/admin/aggregates/workflows.py index 867ccfdfab..41bc4141d1 100644 --- a/openstack_dashboard/dashboards/admin/aggregates/workflows.py +++ b/openstack_dashboard/dashboards/admin/aggregates/workflows.py @@ -91,7 +91,7 @@ class AddHostsToAggregateAction(workflows.MembershipAction): [(host_name, host_name) for host_name in host_names] class Meta: - name = _("Hosts within aggregate") + name = _("Manage Hosts within Aggregate") slug = "add_host_to_aggregate" @@ -131,7 +131,7 @@ class ManageAggregateHostsAction(workflows.MembershipAction): self.fields[field_name].initial = current_aggregate_hosts class Meta: - name = _("Hosts within aggregate") + name = _("Manage Hosts within Aggregate") class AddHostsToAggregateStep(workflows.UpdateMembersStep):