summaryrefslogtreecommitdiffstats
path: root/gui.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2007-07-02 19:05:21 +0000
committerJeremy Katz <katzj@redhat.com>2007-07-02 19:05:21 +0000
commit364ff49c54df8d6a03d6fbee9c656d0062caaea4 (patch)
tree574ba486b153b3c787e06549ab6834e95c233be1 /gui.py
parent164ed6fae2eab24b0ec3fafbdcfb2ee789994de8 (diff)
downloadanaconda-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-xgui.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/gui.py b/gui.py
index 14c06eef5..f464d71e9 100755
--- a/gui.py
+++ b/gui.py
@@ -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",