From 07fffd4ef6a1b3127a7fcc8223d74ed76434917a Mon Sep 17 00:00:00 2001 From: David Cantrell Date: Fri, 3 Feb 2006 19:59:16 +0000 Subject: * 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). --- iw/lvm_dialog_gui.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'iw') 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 -- cgit