diff options
author | bfox <bfox> | 2001-07-24 05:47:22 +0000 |
---|---|---|
committer | bfox <bfox> | 2001-07-24 05:47:22 +0000 |
commit | fb5efdaf4fa7e1ed22d2f478855083f58e7c49b5 (patch) | |
tree | aa8781e8680af3551c2b59389a104405cbc06588 /textw | |
parent | aa9fd67cb8b9e4450ec80619939e86ac23c4d95b (diff) | |
download | anaconda-fb5efdaf4fa7e1ed22d2f478855083f58e7c49b5.tar.gz anaconda-fb5efdaf4fa7e1ed22d2f478855083f58e7c49b5.tar.xz anaconda-fb5efdaf4fa7e1ed22d2f478855083f58e7c49b5.zip |
say Enter instead of Return
Diffstat (limited to 'textw')
-rw-r--r-- | textw/complete_text.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/textw/complete_text.py b/textw/complete_text.py index 8d687fdc4..807c87b82 100644 --- a/textw/complete_text.py +++ b/textw/complete_text.py @@ -22,7 +22,7 @@ class FinishedWindow: if (iutil.getArch() != "s390" and iutil.getArch() != "s390x"): def __call__ (self, screen): - screen.pushHelpLine (string.center(_("<Return> to reboot"), + screen.pushHelpLine (string.center(_("<Enter> to reboot"), screen.width)) rc = ButtonChoiceWindow (screen, _("Complete"), @@ -45,7 +45,7 @@ class FinishedWindow: else: def __call__ (self, screen): - screen.pushHelpLine (string.center(_("<Return> to continue"), + screen.pushHelpLine (string.center(_("<Enter> to continue"), screen.width)) rc = ButtonChoiceWindow (screen, _("Complete"), _("Congratulations, package installation is complete.\n\n" @@ -59,7 +59,7 @@ class FinishedWindow: class ReconfigFinishedWindow: def __call__ (self, screen): - screen.pushHelpLine (string.center(_("<Return> to exit"), + screen.pushHelpLine (string.center(_("<Enter> to exit"), screen.width)) rc = ButtonChoiceWindow (screen, _("Complete"), |