diff options
author | Jeremy Katz <katzj@redhat.com> | 2003-02-25 21:31:56 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2003-02-25 21:31:56 +0000 |
commit | caac8332fc5c41db8c3a6974b557be119043606d (patch) | |
tree | fe05191c05c6f846f2bdf4f8d31c413c03be02c3 /autopart.py | |
parent | 1cbe671a0c4fe9b12fe788f2a863e6bc4e965d76 (diff) | |
download | anaconda-caac8332fc5c41db8c3a6974b557be119043606d.tar.gz anaconda-caac8332fc5c41db8c3a6974b557be119043606d.tar.xz anaconda-caac8332fc5c41db8c3a6974b557be119043606d.zip |
make error messages more correct (#84031)
Diffstat (limited to 'autopart.py')
-rw-r--r-- | autopart.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/autopart.py b/autopart.py index 1ef172096..b73627c4a 100644 --- a/autopart.py +++ b/autopart.py @@ -1183,8 +1183,8 @@ def doAutoPartition(dir, diskset, partitions, intf, instClass, dispatch): request.preexist == 1): req = partitions.getRequestByDeviceName(request.device) if not req or req.preexist == 0: - intf.messageWindow(_("Requested Partition Does Not Exist"), - _("Unable to locate partition %s to use " + intf.messageWindow(_("Requested Raid Device Does Not Exist"), + _("Unable to locate raid device %s to use " "for %s.\n\n" "Press 'OK' to reboot your system.") % (request.device, @@ -1213,8 +1213,8 @@ def doAutoPartition(dir, diskset, partitions, intf, instClass, dispatch): # get the preexisting partition they want to use req = partitions.getRequestByVolumeGroupName(request.volumeGroupName) if not req or req.preexist == 0 or req.format == 1: - intf.messageWindow(_("Requested Partition Does Not Exist"), - _("Unable to locate partition %s to use " + intf.messageWindow(_("Requested Volume Group Does Not Exist"), + _("Unable to locate volume group %s to use " "for %s.\n\n" "Press 'OK' to reboot your system.") % (request.volumeGroupName, @@ -1249,8 +1249,8 @@ def doAutoPartition(dir, diskset, partitions, intf, instClass, dispatch): # get the preexisting partition they want to use req = partitions.getRequestByLogicalVolumeName(request.logicalVolumeName) if not req or req.preexist == 0: - intf.messageWindow(_("Requested Partition Does Not Exist"), - _("Unable to locate partition %s to use " + intf.messageWindow(_("Requested Logical Volume Does Not Exist"), + _("Unable to locate logical volume %s to use " "for %s.\n\n" "Press 'OK' to reboot your system.") % (request.logicalVolumeName, |