summaryrefslogtreecommitdiff
path: root/ui/qt5/writeoutpage.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ui/qt5/writeoutpage.cc')
-rw-r--r--ui/qt5/writeoutpage.cc13
1 files changed, 13 insertions, 0 deletions
diff --git a/ui/qt5/writeoutpage.cc b/ui/qt5/writeoutpage.cc
index 8ee1a40..37ee3e8 100644
--- a/ui/qt5/writeoutpage.cc
+++ b/ui/qt5/writeoutpage.cc
@@ -12,7 +12,20 @@
#include "writeoutpage.hh"
+#include <QLabel>
+#include <QVBoxLayout>
+
WriteoutPage::WriteoutPage(QWidget *parent) : HorizonWizardPage(parent) {
setTitle(tr("Save Installation Script"));
loadWatermark("intro");
+
+ QLabel *descLabel = new QLabel(tr("You have provided all the necessary information for System Installation. "
+ "Choose Save to write your installfile to disk and close System Installation.\n\n"
+ "For more information on how to use the installation script you've generated, review the Adélie Linux Installation Handbook.\n\n"
+ "You may also customise the installation script by editing it using a text editor. "
+ "Review the HorizonScript Reference for more information on available options."));
+ descLabel->setWordWrap(true);
+ QVBoxLayout *layout = new QVBoxLayout;
+ layout->addWidget(descLabel);
+ setLayout(layout);
}