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/hostname.scm | |
parent | cbeb27025f39694b8d12e07ee7e5ce8031690c4e (diff) |
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/hostname.scm')
-rw-r--r-- | gnu/installer/newt/hostname.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/installer/newt/hostname.scm b/gnu/installer/newt/hostname.scm index a8209bc2de..7783fa6360 100644 --- a/gnu/installer/newt/hostname.scm +++ b/gnu/installer/newt/hostname.scm @@ -22,5 +22,5 @@ #:export (run-hostname-page)) (define (run-hostname-page) - (run-input-page (G_ "Please enter the system hostname") + (run-input-page (G_ "Please enter the system hostname.") (G_ "Hostname"))) |