diff options
author | Jeremy Katz <katzj@redhat.com> | 2007-07-02 19:05:21 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2007-07-02 19:05:21 +0000 |
commit | 364ff49c54df8d6a03d6fbee9c656d0062caaea4 (patch) | |
tree | 574ba486b153b3c787e06549ab6834e95c233be1 /gui.py | |
parent | 164ed6fae2eab24b0ec3fafbdcfb2ee789994de8 (diff) | |
download | anaconda-364ff49c54df8d6a03d6fbee9c656d0062caaea4.tar.gz anaconda-364ff49c54df8d6a03d6fbee9c656d0062caaea4.tar.xz anaconda-364ff49c54df8d6a03d6fbee9c656d0062caaea4.zip |
2007-07-02 Jeremy Katz <katzj@redhat.com>
* autopart.py: Change references of "Reboot" -> "Exit installer"
to make more sense in live install case.
* exception.py: Likewise.
* fsset.py: Likewise.
* gui.py: Likewise.
* harddrive.py: Likewise.
* image.py: Likewise.
* packages.py: Likewise.
* upgrade.py: Likewise.
* urlinstall: Likewise.
* yuminstall.py: Likewise.
* livecd.py (LiveCDCopyBackend.doRepoSetup): Add mnemonics
Diffstat (limited to 'gui.py')
-rwxr-xr-x | gui.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -962,7 +962,7 @@ class InstallInterface: return self.messageWindow(_("Error Parsing Kickstart Config"), s, type = "custom", - custom_buttons = [_("_Reboot")], + custom_buttons = [_("_Exit installer")], custom_icon = "error") def dumpWindow(self): @@ -1111,12 +1111,12 @@ class InstallControlWindow: if not win.getrc(): if flags.rootpath: msg = _("The installer will now exit...") - buttons = [_("_Exit")] + buttons = [_("_Exit installer")] else: msg = _("Your system will now be rebooted...") buttons = [_("_Reboot")] - MessageWindow(_("Rebooting System"), + MessageWindow(_("Exiting"), msg, type="custom", custom_icon="warning", |