Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
lang.SelectLanguage,
step.Welcome,
disk.SelectDisk,
+
+ # Done!
+ step.Congratulations,
)
def __call__(self):
)
+class Congratulations(InteractiveStep):
+ """
+ Shows a message that the installation is complete
+ """
+ def run(self, tui):
+ tui.message(
+ _("Congratulations"),
+ _(
+ "The installation has been completed successfully."
+ "\n\n"
+ "You can now safely remove any media used for the installation."
+ ),
+ buttons=[_("Finish")],
+
+ # Make the window a litte bit bigger
+ width=50,
+ )
+
class UnattendedWarning(Step):
@property
def enabled(self):