summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2010-04-30 16:40:40 -1000
committerDavid Cantrell <dcantrell@redhat.com>2010-05-04 06:09:00 -1000
commitaa38414669a63ac53fa27935e7a2c1c90f670056 (patch)
treea886a232be927c7585d164810c68495804bd4c31 /iw
parentf19f17b598ba49ed886c2a6f065cca80043b8731 (diff)
downloadanaconda-aa38414669a63ac53fa27935e7a2c1c90f670056.tar.gz
anaconda-aa38414669a63ac53fa27935e7a2c1c90f670056.tar.xz
anaconda-aa38414669a63ac53fa27935e7a2c1c90f670056.zip
Clean up wording for oversized LVs (#587459)
Diffstat (limited to 'iw')
-rw-r--r--iw/lvm_dialog_gui.py16
1 files changed, 9 insertions, 7 deletions
diff --git a/iw/lvm_dialog_gui.py b/iw/lvm_dialog_gui.py
index 010cbd1a3..73a27f72d 100644
--- a/iw/lvm_dialog_gui.py
+++ b/iw/lvm_dialog_gui.py
@@ -709,13 +709,15 @@ class VolumeGroupEditor:
templv.size = size
except ValueError:
self.intf.messageWindow(_("Not enough space"),
- _("The logical volumes you have "
- "configured require %(size)d MB,"
- " but the volume group only has "
- "%(tempvgsize)d MB. Please "
- "either make the volume group "
- "larger or make the logical "
- "volume(s) smaller.")
+ _("The size entered for this "
+ "logical volume (%(size)d MB) "
+ "combined with the size of the "
+ "other logical volume(s) "
+ "exceeds the size of the "
+ "volume group (%(tempvgsize)d "
+ "MB). Please make the volume "
+ "group larger or make the "
+ "logical volume smaller.")
% {'size': size,
'tempvgsize': tempvg.size},
custom_icon="error")