diff --git a/doc/source/admin/set-quotas.rst b/doc/source/admin/set-quotas.rst index f9b87d6964..def9d788e3 100644 --- a/doc/source/admin/set-quotas.rst +++ b/doc/source/admin/set-quotas.rst @@ -87,7 +87,7 @@ View default project quotas from the drop-down list. #. On the :guilabel:`Admin` tab, open the :guilabel:`System` tab - and click the :guilabel:`Defaults` category. + and click the :guilabel:`Default Quotas` category. #. The default quota values are displayed. @@ -105,7 +105,7 @@ Update project quotas from the drop-down list. #. On the :guilabel:`Admin` tab, open the :guilabel:`System` tab - and click the :guilabel:`Defaults` category. + and click the :guilabel:`Default Quotas` category. #. Click the :guilabel:`Update Defaults` button. diff --git a/doc/source/user/log-in.rst b/doc/source/user/log-in.rst index 21fdfe0718..fe2cadce77 100644 --- a/doc/source/user/log-in.rst +++ b/doc/source/user/log-in.rst @@ -185,7 +185,7 @@ Network tab System tab ---------- -* :guilabel:`Defaults`: View default quota values. Quotas are hard-coded in +* :guilabel:`Default Quotas`: View default quota values. Quotas are hard-coded in OpenStack Compute and define the maximum allowable size and number of resources. diff --git a/openstack_dashboard/dashboards/admin/defaults/panel.py b/openstack_dashboard/dashboards/admin/defaults/panel.py index 2d95973881..002376cc48 100644 --- a/openstack_dashboard/dashboards/admin/defaults/panel.py +++ b/openstack_dashboard/dashboards/admin/defaults/panel.py @@ -19,7 +19,7 @@ import horizon class Defaults(horizon.Panel): - name = _("Defaults") + name = _("Default Quotas") slug = 'defaults' policy_rules = (("compute", "context_is_admin"), ("volume", "context_is_admin"),) diff --git a/openstack_dashboard/dashboards/admin/defaults/templates/defaults/index.html b/openstack_dashboard/dashboards/admin/defaults/templates/defaults/index.html index a1f878a398..c7cc1b0e73 100644 --- a/openstack_dashboard/dashboards/admin/defaults/templates/defaults/index.html +++ b/openstack_dashboard/dashboards/admin/defaults/templates/defaults/index.html @@ -1,6 +1,6 @@ {% extends 'base.html' %} {% load i18n %} -{% block title %}{% trans "Defaults" %}{% endblock %} +{% block title %}{% trans "Default Quotas" %}{% endblock %} {% block main %}
diff --git a/openstack_dashboard/dashboards/admin/defaults/views.py b/openstack_dashboard/dashboards/admin/defaults/views.py index 9dc4645325..69f62e5112 100644 --- a/openstack_dashboard/dashboards/admin/defaults/views.py +++ b/openstack_dashboard/dashboards/admin/defaults/views.py @@ -26,7 +26,7 @@ from openstack_dashboard.usage import quotas class IndexView(tabs.TabbedTableView): tab_group_class = project_tabs.DefaultsTabs template_name = 'admin/defaults/index.html' - page_title = _("Defaults") + page_title = _("Default Quotas") class UpdateDefaultQuotasView(workflows.WorkflowView): diff --git a/openstack_dashboard/test/selenium/ui/test_browse.py b/openstack_dashboard/test/selenium/ui/test_browse.py index f3d268bc1e..2343add3cf 100644 --- a/openstack_dashboard/test/selenium/ui/test_browse.py +++ b/openstack_dashboard/test/selenium/ui/test_browse.py @@ -93,8 +93,8 @@ t_b_p_s = conf.theme.browse_left_panel_sec "Trunks - OpenStack Dashboard", "Trunks"), (t_b_p_m[30], t_b_p_s[30], "RBAC Policies", "RBAC Policies - OpenStack Dashboard", "RBAC Policies"), - (t_b_p_m[31], t_b_p_s[31], "Defaults", - "Defaults - OpenStack Dashboard", "Defaults"), + (t_b_p_m[31], t_b_p_s[31], "Default Quotas", + "Default Quotas - OpenStack Dashboard", "Default Quotas"), (t_b_p_m[32], t_b_p_s[32], "Metadata Definitions", "Metadata Definitions - OpenStack Dashboard", "Metadata Definitions"),