Enhances consistency in 'Create Project' modal

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
This commit is contained in:
Victoria Martínez de la Cruz 2013-01-31 10:06:11 -03:00
parent b6dac7c6c4
commit f36efbb875

View File

@ -181,9 +181,9 @@ class UpdateProjectMembers(workflows.Step):
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"