summaryrefslogtreecommitdiffstats
path: root/textw/complete_text.py
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>2001-06-20 02:00:44 +0000
committerErik Troan <ewt@redhat.com>2001-06-20 02:00:44 +0000
commit1a0247090d0d3629a9cd150d63597f94c4f27fad (patch)
tree1508f8237c8e7fb62f187706bfc5173df8819236 /textw/complete_text.py
parentdbb4861e176cadfb14c48313fd9922d3dbfcefed (diff)
downloadanaconda-1a0247090d0d3629a9cd150d63597f94c4f27fad.tar.gz
anaconda-1a0247090d0d3629a9cd150d63597f94c4f27fad.tar.xz
anaconda-1a0247090d0d3629a9cd150d63597f94c4f27fad.zip
merge from (now defunct) anaconda-dispatch branch
Diffstat (limited to 'textw/complete_text.py')
-rw-r--r--textw/complete_text.py43
1 files changed, 43 insertions, 0 deletions
diff --git a/textw/complete_text.py b/textw/complete_text.py
new file mode 100644
index 000000000..84526b38e
--- /dev/null
+++ b/textw/complete_text.py
@@ -0,0 +1,43 @@
+from snack import *
+from constants_text import *
+from translate import _
+
+class FinishedWindow:
+ def __call__ (self, screen):
+
+
+ screen.pushHelpLine (_(" <Return> to reboot "))
+
+ rc = ButtonChoiceWindow (screen, _("Complete"),
+ _("Congratulations, installation is complete.\n\n"
+ "Press return to reboot, and be sure to remove your "
+ "boot medium after the system reboots, or your system "
+ "will rerun the install. For information on fixes which "
+ "are available for this release of Red Hat Linux, "
+ "consult the "
+ "Errata available from http://www.redhat.com/errata.\n\n"
+ "Information on configuring and using your Red Hat "
+ "Linux system is contained in the Red Hat Linux "
+ "manuals."),
+ [ _("OK") ], help = "finished")
+
+ return INSTALL_OK
+
+
+class ReconfigFinishedWindow:
+ def __call__ (self, screen):
+
+ screen.pushHelpLine (_(" <Return> to exit "))
+
+ rc = ButtonChoiceWindow (screen, _("Complete"),
+ _("Congratulations, configuration is complete.\n\n"
+ " For information on fixes which "
+ "are available for this release of Red Hat Linux, "
+ "consult the "
+ "Errata available from http://www.redhat.com.\n\n"
+ "Information on further configuring your system is "
+ "available at http://www.redhat.com/support/manuals/"),
+
+ [ _("OK") ], help = "reconfigfinished")
+
+ return INSTALL_OK