summary refs log tree commit diff
path: root/gnu/installer/newt/partition.scm
diff options
context:
space:
mode:
authorMathieu Othacehe <m.othacehe@gmail.com>2018-12-05 22:08:33 +0900
committerLudovic Courtès <ludo@gnu.org>2019-01-17 14:04:25 +0100
commitd700d131be31bd2838206bfc13ddd418affb185b (patch)
tree1d34cd6984b8f22b8df4414465cc7378c2eeed36 /gnu/installer/newt/partition.scm
parentcbeb27025f39694b8d12e07ee7e5ce8031690c4e (diff)
downloadguix-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/partition.scm')
-rw-r--r--gnu/installer/newt/partition.scm12
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/installer/newt/partition.scm b/gnu/installer/newt/partition.scm
index 04d6192cd0..a3d48eef21 100644
--- a/gnu/installer/newt/partition.scm
+++ b/gnu/installer/newt/partition.scm
@@ -98,7 +98,7 @@ Be careful, all data on the disk will be lost.")
                          '()
                          '(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 @@ Be careful, all data on the disk will be lost.")
 (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 @@ calling CAN-CREATE-PARTITION? procedure. If an exception is raised, catch it
 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 @@ At least one partition must have its mounting point set to '/'.")
                (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))))