diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-01-16 18:01:38 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-01-17 14:04:28 +0100 |
commit | 938ee975af8f35ae16c15443a7a76be7d31278eb (patch) | |
tree | 3606fd1af040cf6236cf027804098f8c282c555d /gnu/installer | |
parent | 077589459c1c3ce4cb690447d82b75a46712f896 (diff) | |
download | guix-938ee975af8f35ae16c15443a7a76be7d31278eb.tar guix-938ee975af8f35ae16c15443a7a76be7d31278eb.tar.gz |
installer: Adjust messages on the final page.
* gnu/installer/newt/final.scm (run-config-display-page)
(run-install-success-page, run-install-failed-page): Adjust messages.
Diffstat (limited to 'gnu/installer')
-rw-r--r-- | gnu/installer/newt/final.scm | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/gnu/installer/newt/final.scm b/gnu/installer/newt/final.scm index 81af949de1..645c1e8689 100644 --- a/gnu/installer/newt/final.scm +++ b/gnu/installer/newt/final.scm @@ -34,9 +34,10 @@ (height (nearest-exact-integer (/ (screen-rows) 2)))) (run-file-textbox-page - #:info-text (G_ "Congratulations, the installation is almost over! A \ -system configuration file has been generated, it is displayed just below. The \ -new system will be created from this file when pression the Ok button.") + #:info-text (G_ "We're now ready to proceed with the installation! \ +A system configuration file has been generated, it is displayed below. \ +The new system will be created from this file once you've pressed OK. \ +This will take a few minutes.") #:title (G_ "Configuration file") #:file (%installer-configuration-file) #:info-textbox-width width @@ -52,15 +53,16 @@ new system will be created from this file when pression the Ok button.") (message-window (G_ "Installation complete") (G_ "Reboot") - (G_ "The installation finished with success. You may now remove the device \ -with the installation image and press the button to reboot."))) + (G_ "Congratulations! Installation is now complete. \ +You may remove the device containing the installation image and \ +press the button to reboot."))) (define (run-install-failed-page) (choice-window (G_ "Installation failed") (G_ "Restart installer") (G_ "Retry system install") - (G_ "The final system installation step failed. You can retry the \ + (G_ "The final system installation step failed. You can retry the \ last step, or restart the installer."))) (define (run-install-shell) |