summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2007-04-20 14:55:06 +0000
committerJeremy Katz <katzj@redhat.com>2007-04-20 14:55:06 +0000
commitd363ae851a5049085483e7dbe2eb6dff110f91eb (patch)
tree54a34e2a08a21ae8edd7dbaf4c9d02822f4979cd /iw
parent65a079534d354d75fd4cc4e70aea745e01e8c04f (diff)
downloadanaconda-d363ae851a5049085483e7dbe2eb6dff110f91eb.tar.gz
anaconda-d363ae851a5049085483e7dbe2eb6dff110f91eb.tar.xz
anaconda-d363ae851a5049085483e7dbe2eb6dff110f91eb.zip
2007-04-20 Jeremy Katz <katzj@redhat.com>
* textw/upgrade_bootloader_text.py: Clear up the text for the upgrade case where the bootloader can't be updated. * iw/upgrade_bootloader_gui.py: Likewise.
Diffstat (limited to 'iw')
-rw-r--r--iw/upgrade_bootloader_gui.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/iw/upgrade_bootloader_gui.py b/iw/upgrade_bootloader_gui.py
index d4a5d8984..25a3a9faa 100644
--- a/iw/upgrade_bootloader_gui.py
+++ b/iw/upgrade_bootloader_gui.py
@@ -96,8 +96,12 @@ class UpgradeBootloaderWindow (InstallWindow):
updatestr = _("This will update your current boot loader.")
if newToLibata or (self.type is None or self.bootDev is None):
- current = _("The installer is unable to detect the boot loader "
- "currently in use on your system.")
+ if newToLibata:
+ current = _("Due to system changes, your boot loader "
+ "configuration can not be automatically updated.")
+ else:
+ current = _("The installer is unable to detect the boot loader "
+ "currently in use on your system.")
self.update_label = gtk.Label("%s" % (updatestr,))
self.update_radio.set_sensitive(False)
self.update_label.set_sensitive(False)