diff --git a/openstack_dashboard/dashboards/admin/group_types/specs/forms.py b/openstack_dashboard/dashboards/admin/group_types/specs/forms.py index da958feb5d..66e7c6d213 100644 --- a/openstack_dashboard/dashboards/admin/group_types/specs/forms.py +++ b/openstack_dashboard/dashboards/admin/group_types/specs/forms.py @@ -71,7 +71,7 @@ class EditSpec(forms.SelfHandlingForm): api.cinder.group_type_spec_set(request, group_type_id, {key: data['value']}) - msg = _('Saved group spec "%s".') % key + msg = _('Saved group type spec "%s".') % key messages.success(request, msg) return True except Exception: diff --git a/openstack_dashboard/dashboards/admin/group_types/templates/group_types/specs/_create.html b/openstack_dashboard/dashboards/admin/group_types/templates/group_types/specs/_create.html index e7cb7baa14..6f5646ea7c 100644 --- a/openstack_dashboard/dashboards/admin/group_types/templates/group_types/specs/_create.html +++ b/openstack_dashboard/dashboards/admin/group_types/templates/group_types/specs/_create.html @@ -3,5 +3,5 @@ {% block modal-body-right %}

{% trans "Description:" %}

-

{% trans 'Create a new "group spec" key-value pair for a group type.' %}

+

{% trans 'Create a new "group type spec" key-value pair for a group type.' %}

{% endblock %} diff --git a/openstack_dashboard/dashboards/admin/group_types/templates/group_types/specs/_edit.html b/openstack_dashboard/dashboards/admin/group_types/templates/group_types/specs/_edit.html index d4aef0c62b..fea09fafee 100644 --- a/openstack_dashboard/dashboards/admin/group_types/templates/group_types/specs/_edit.html +++ b/openstack_dashboard/dashboards/admin/group_types/templates/group_types/specs/_edit.html @@ -3,5 +3,5 @@ {% block modal-body-right %}

{% trans "Description:" %}

-

{% blocktrans with key=key %}Update the "group spec" value for "{{ key }}"{% endblocktrans %}

+

{% blocktrans with key=key %}Update the "group type spec" value for "{{ key }}"{% endblocktrans %}

{% endblock %}