Fix two typos in share network messages

s/netwrok/network/
This commit is contained in:
Ponomaryov Valeriy 2015-04-16 15:01:15 +03:00
parent fd2d15e330
commit 1c625bd29e
1 changed files with 2 additions and 2 deletions

View File

@ -90,7 +90,7 @@ class AddSecurityServiceAction(workflows.MembershipAction):
class AddSecurityServiceStep(workflows.UpdateMembersStep):
action_class = AddSecurityServiceAction
help_text = _("Add security services to share netwrok.")
help_text = _("Add security services to share network.")
available_list_title = _("Available security services")
members_list_title = _("Selected security services")
no_available_text = _("No security services found.")
@ -111,7 +111,7 @@ class UpdateShareNetworkWorkflow(workflows.Workflow):
name = _("Update Share Network")
finalize_button_name = _("Update Share Network")
success_message = _('Updated share network "%s".')
failure_message = _('Unable to update share netwrok "%s".')
failure_message = _('Unable to update share network "%s".')
success_url = 'horizon:project:shares:index'
default_steps = (UpdateShareNetworkInfoStep, AddSecurityServiceStep)