summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKun Huang <academicgareth@gmail.com>2013-11-15 10:42:20 +0800
committerJulie Pichon <jpichon@redhat.com>2014-01-08 17:12:58 +0000
commitf3d10fcec899c0394beae6870bbfb8d818f54efe (patch)
treef312b87d4e02437a04ba87b6a9daf7431d921d21
parent2c1f1f39565ca7bdc8a7bde2ce45f2a0019357da (diff)
downloadhorizon-f3d10fcec899c0394beae6870bbfb8d818f54efe.tar.gz
fix help text in "Create An image" window
In the "Create An image" window, there are "minimum disk" and "minimun memory" text input. But both help text on the two text inputs are using "the minimum disk size...". Actually for the second one we should say "the minimum memory size...", and now this patch fix this. Change-Id: Ife19acba5fafb41d99e9416d2f9e8082b9eaef53 (cherry picked from commit 0314d54391775f09b35759a650dbae2e2ba567aa)
-rw-r--r--openstack_dashboard/dashboards/project/images_and_snapshots/images/forms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/openstack_dashboard/dashboards/project/images_and_snapshots/images/forms.py b/openstack_dashboard/dashboards/project/images_and_snapshots/images/forms.py
index b5ec7d3ea..16c49b1e0 100644
--- a/openstack_dashboard/dashboards/project/images_and_snapshots/images/forms.py
+++ b/openstack_dashboard/dashboards/project/images_and_snapshots/images/forms.py
@@ -80,7 +80,7 @@ class CreateImageForm(forms.SelfHandlingForm):
' (no minimum).'),
required=False)
minimum_ram = forms.IntegerField(label=_("Minimum Ram (MB)"),
- help_text=_('The minimum disk size'
+ help_text=_('The minimum memory size'
' required to boot the'
' image. If unspecified, this'
' value defaults to 0 (no'