diff options
author | Mathieu Othacehe <m.othacehe@gmail.com> | 2018-12-05 22:08:33 +0900 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-01-17 14:04:25 +0100 |
commit | d700d131be31bd2838206bfc13ddd418affb185b (patch) | |
tree | 1d34cd6984b8f22b8df4414465cc7378c2eeed36 /gnu/installer/newt/page.scm | |
parent | cbeb27025f39694b8d12e07ee7e5ce8031690c4e (diff) | |
download | patches-d700d131be31bd2838206bfc13ddd418affb185b.tar patches-d700d131be31bd2838206bfc13ddd418affb185b.tar.gz |
installer: Make sure every sentence is dot terminated.
gnu/installer/newt/hostname.scm: Finish sentences by a dot.
gnu/installer/newt/network.scm: Ditto.
gnu/installer/newt/page.scm: Ditto.
gnu/installer/newt/partition.scm: Ditto.
gnu/installer/newt/user.scm: Ditto.
gnu/installer/newt/wifi.scm: Ditto.
Diffstat (limited to 'gnu/installer/newt/page.scm')
-rw-r--r-- | gnu/installer/newt/page.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/installer/newt/page.scm b/gnu/installer/newt/page.scm index 98cbbb9c05..c6577c8a8c 100644 --- a/gnu/installer/newt/page.scm +++ b/gnu/installer/newt/page.scm @@ -98,7 +98,7 @@ enters an empty input." (add-components-to-form form text-box input-entry ok-button) (make-wrapped-grid-window grid title) (let ((error-page (lambda () - (run-error-page (G_ "Please enter a non empty input") + (run-error-page (G_ "Please enter a non empty input.") (G_ "Empty input"))))) (let loop () (receive (exit-reason argument) |