From 9bcfc1fae9da5fc788293a301c48e61a20c7a68a Mon Sep 17 00:00:00 2001 From: Travis Tripp Date: Wed, 23 Apr 2014 15:01:27 +0000 Subject: [PATCH] Flavor access list titles consistent capitalization. On the flavor access tab of the edit flavor workflow, you can select the projects that have access to the flavor. Currently, the left list is "All Projects" and the right list is "Selected projects". The "p" should be capitalized in Selected projects. This changes "Projects" in both list titles to be capitalized. Change-Id: Ica2958b50bd4d5dad7c1237bb2450a1c6f3e6efe Closes-Bug: #1311715 --- openstack_dashboard/dashboards/admin/flavors/workflows.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openstack_dashboard/dashboards/admin/flavors/workflows.py b/openstack_dashboard/dashboards/admin/flavors/workflows.py index d600aa321c..47f942c95b 100644 --- a/openstack_dashboard/dashboards/admin/flavors/workflows.py +++ b/openstack_dashboard/dashboards/admin/flavors/workflows.py @@ -160,7 +160,7 @@ class UpdateFlavorAccess(workflows.UpdateMembersStep): "projects in the right column, all projects can use the " "flavor.") available_list_title = _("All Projects") - members_list_title = _("Selected projects") + members_list_title = _("Selected Projects") no_available_text = _("No projects found.") no_members_text = _("No projects selected. " "All projects can use the flavor.")