mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 14:56:54 +01:00
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.
This commit is contained in:
parent
cbeb27025f
commit
d700d131be
6 changed files with 11 additions and 11 deletions
|
@ -22,5 +22,5 @@ (define-module (gnu installer newt hostname)
|
|||
#: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")))
|
||||
|
|
|
@ -113,7 +113,7 @@ (define (wait-service-online)
|
|||
(let* ((full-value 5))
|
||||
(run-scale-page
|
||||
#:title (G_ "Checking connectivity")
|
||||
#:info-text (G_ "Waiting internet access is established")
|
||||
#:info-text (G_ "Waiting internet access is established.")
|
||||
#:scale-full-value full-value
|
||||
#:scale-update-proc
|
||||
(lambda (value)
|
||||
|
|
|
@ -98,7 +98,7 @@ (define* (run-input-page text title
|
|||
(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)
|
||||
|
|
|
@ -98,7 +98,7 @@ (define (run-type-page partition)
|
|||
'()
|
||||
'(extended)))))
|
||||
(run-listbox-selection-page
|
||||
#:info-text (G_ "Please select a partition type")
|
||||
#:info-text (G_ "Please select a partition type.")
|
||||
#:title (G_ "Partition type")
|
||||
#:listbox-items items
|
||||
#:listbox-item->text symbol->string
|
||||
|
@ -109,7 +109,7 @@ (define (run-type-page partition)
|
|||
(define (run-fs-type-page)
|
||||
"Run a page asking the user to select a file-system type."
|
||||
(run-listbox-selection-page
|
||||
#:info-text (G_ "Please select the file-system type for this partition")
|
||||
#:info-text (G_ "Please select the file-system type for this partition.")
|
||||
#:title (G_ "File-system type")
|
||||
#:listbox-items '(ext4 btrfs fat32 swap)
|
||||
#:listbox-item->text user-fs-type-name
|
||||
|
@ -123,17 +123,17 @@ (define (inform-can-create-partition? user-partition)
|
|||
an inform the user with an appropriate error-page and return #f."
|
||||
(guard (c ((max-primary-exceeded? c)
|
||||
(run-error-page
|
||||
(G_ "Primary partitions count exceeded")
|
||||
(G_ "Primary partitions count exceeded.")
|
||||
(G_ "Creation error"))
|
||||
#f)
|
||||
((extended-creation-error? c)
|
||||
(run-error-page
|
||||
(G_ "Extended partition creation error")
|
||||
(G_ "Extended partition creation error.")
|
||||
(G_ "Creation error"))
|
||||
#f)
|
||||
((logical-creation-error? c)
|
||||
(run-error-page
|
||||
(G_ "Logical partition creation error")
|
||||
(G_ "Logical partition creation error.")
|
||||
(G_ "Creation error"))
|
||||
#f))
|
||||
(can-create-partition? user-partition)))
|
||||
|
@ -625,7 +625,7 @@ (define (hotkey-action key listbox-item)
|
|||
(guard
|
||||
(c ((no-root-mount-point? c)
|
||||
(run-error-page
|
||||
(G_ "No root mount point found")
|
||||
(G_ "No root mount point found.")
|
||||
(G_ "Missing mount point"))
|
||||
#f))
|
||||
(check-user-partitions user-partitions))))
|
||||
|
|
|
@ -72,7 +72,7 @@ (define (pad-label label)
|
|||
title)
|
||||
(let ((error-page
|
||||
(lambda ()
|
||||
(run-error-page (G_ "Empty inputs are not allowed")
|
||||
(run-error-page (G_ "Empty inputs are not allowed.")
|
||||
(G_ "Empty input")))))
|
||||
(receive (exit-reason argument)
|
||||
(run-form form)
|
||||
|
|
|
@ -86,7 +86,7 @@ (define (draw-scanning-page)
|
|||
|
||||
(define (run-wifi-password-page)
|
||||
"Run a page prompting user for a password and return it."
|
||||
(run-input-page (G_ "Please enter the wifi password")
|
||||
(run-input-page (G_ "Please enter the wifi password.")
|
||||
(G_ "Password required")))
|
||||
|
||||
(define (run-wrong-password-page service-name)
|
||||
|
|
Loading…
Reference in a new issue