From d28f7ed593b716736da01b6ae0d39b565d7c577e Mon Sep 17 00:00:00 2001 From: Bo Wang Date: Mon, 11 Jan 2016 11:34:23 +0800 Subject: [PATCH] Fix help text in "Create Network" dialog "subnet associated with the network can be created in the next panel." create subnet at next tab but not panel. Change-Id: I8906b81c20562a4718351b65682d853653f98901 Closes-Bug: #1531095 --- .../dashboards/project/networks/workflows.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/openstack_dashboard/dashboards/project/networks/workflows.py b/openstack_dashboard/dashboards/project/networks/workflows.py index e871da00ef..38b401c79f 100644 --- a/openstack_dashboard/dashboards/project/networks/workflows.py +++ b/openstack_dashboard/dashboards/project/networks/workflows.py @@ -93,9 +93,9 @@ class CreateNetworkInfoAction(workflows.Action): class Meta(object): name = _("Network") - help_text = _("Create a new network. " - "In addition, a subnet associated with the network " - "can be created in the next panel.") + help_text = _('Create a new network. ' + 'In addition, a subnet associated with the network ' + 'can be created in the following steps of this wizard.') class CreateNetworkInfo(workflows.Step):