Skip to content

Commit

Permalink
Enhances consistency in 'Create Project' modal
Browse files Browse the repository at this point in the history
Substitutes 'Add Project' (modal title) and
'Finish' (modal button) strings for
'Create Project' in order to improve consistency
as well as to make it clear the action
is being made.

Change-Id: I04204f35d9da53cd7827ca10dd41191352870f8b
Implements: String replacement
Fixes: bug #1107982
  • Loading branch information
vkmc committed Jan 31, 2013
1 parent b6dac7c commit f36efbb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions openstack_dashboard/dashboards/admin/projects/workflows.py
Expand Up @@ -181,9 +181,9 @@ def contribute(self, data, context):


class CreateProject(workflows.Workflow):
slug = "add_project"
name = _("Add Project")
finalize_button_name = _("Finish")
slug = "create_project"
name = _("Create Project")
finalize_button_name = _("Create Project")
success_message = _('Created new project "%s".')
failure_message = _('Unable to create project "%s".')
success_url = "horizon:admin:projects:index"
Expand Down

0 comments on commit f36efbb

Please sign in to comment.