summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2006-02-03 19:59:16 +0000
committerDavid Cantrell <dcantrell@redhat.com>2006-02-03 19:59:16 +0000
commit07fffd4ef6a1b3127a7fcc8223d74ed76434917a (patch)
treea9ba65340c2702a1bb18232477b785e31ef3611d /iw
parentb80603879b3212fc51ae05ffdaf7377a4f439407 (diff)
downloadanaconda-07fffd4ef6a1b3127a7fcc8223d74ed76434917a.tar.gz
anaconda-07fffd4ef6a1b3127a7fcc8223d74ed76434917a.tar.xz
anaconda-07fffd4ef6a1b3127a7fcc8223d74ed76434917a.zip
* iw/lvm_dialog_gui.py (VolumeGroupEditor.editLogicalVolume):
Increase logical volume label field to 32 characters. Changed dialog text with a better explanation for increasing available space since you can't change the physical extent size after a group has been created. (#174661).
Diffstat (limited to 'iw')
-rw-r--r--iw/lvm_dialog_gui.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/iw/lvm_dialog_gui.py b/iw/lvm_dialog_gui.py
index 649a54f0b..6b2700182 100644
--- a/iw/lvm_dialog_gui.py
+++ b/iw/lvm_dialog_gui.py
@@ -413,7 +413,7 @@ class VolumeGroupEditor:
if not logrequest or not logrequest.getPreExisting():
lbl = createAlignedLabel(_("_Logical Volume Name:"))
- lvnameEntry = gtk.Entry(16)
+ lvnameEntry = gtk.Entry(32)
lbl.set_mnemonic_widget(lvnameEntry)
if logrequest and logrequest.logicalVolumeName:
lvnameEntry.set_text(logrequest.logicalVolumeName)
@@ -594,9 +594,10 @@ class VolumeGroupEditor:
"(%10.2f MB) is larger than maximum "
"logical volume size (%10.2f MB). "
"To increase this limit you can "
- "increase the Physical Extent size "
- "for this Volume Group.") %(size,
- maxlv),
+ "create more Physical Volumes from "
+ "unpartitioned disk space and "
+ "add them to this Volume Group.")
+ %(size, maxlv),
custom_icon="error")
continue