diff options
author | Jeremy Katz <katzj@redhat.com> | 2007-04-20 14:55:06 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2007-04-20 14:55:06 +0000 |
commit | d363ae851a5049085483e7dbe2eb6dff110f91eb (patch) | |
tree | 54a34e2a08a21ae8edd7dbaf4c9d02822f4979cd /textw | |
parent | 65a079534d354d75fd4cc4e70aea745e01e8c04f (diff) | |
download | anaconda-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 'textw')
-rw-r--r-- | textw/upgrade_bootloader_text.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/textw/upgrade_bootloader_text.py b/textw/upgrade_bootloader_text.py index 5ebc50643..abba18114 100644 --- a/textw/upgrade_bootloader_text.py +++ b/textw/upgrade_bootloader_text.py @@ -73,9 +73,15 @@ class UpgradeBootloaderWindow: update = 1 if newToLibata or self.type is None or self.bootDev is None: - t = TextboxReflowed(53, + if newToLibata: + t = TextboxReflowed(53, + _("Due to system changes, your boot loader " + "configuration can not be automatically updated.")) + else: + t = TextboxReflowed(53, _("The installer is unable to detect the boot loader " "currently in use on your system.")) + self.update_radio = blradio.add(_("Update boot loader configuration"), "update", update) |