diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2019-04-27 19:30:22 +0200 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2019-04-27 19:31:50 +0200 |
| commit | 7dbdbbfd6e323e4b2932a68a48988f2b60f75712 (patch) | |
| tree | fe859cb74ebbc2401d3e4c56ddfb79be977a4176 | |
| parent | 339586e402493df5c21e72f91820b8f91a82c559 (diff) | |
installer: Add missing i18n in the partitioning pages.
* gnu/installer/newt/partition.scm (run-scheme-page): Add missing 'G_'
for ITEMS.
(run-partioning-page): Likewise.
(run-partition-page): Move misplaced call to 'G_'.
| -rw-r--r-- | gnu/installer/newt/partition.scm | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gnu/installer/newt/partition.scm b/gnu/installer/newt/partition.scm index 5eaba7aea91..8cce7da93b1 100644 --- a/gnu/installer/newt/partition.scm +++ b/gnu/installer/newt/partition.scm | |||
| @@ -42,8 +42,8 @@ | |||
| 42 | (define (run-scheme-page) | 42 | (define (run-scheme-page) |
| 43 | "Run a page asking the user for a partitioning scheme." | 43 | "Run a page asking the user for a partitioning scheme." |
| 44 | (let* ((items | 44 | (let* ((items |
| 45 | '((root . "Everything is one partition") | 45 | `((root . ,(G_ "Everything is one partition")) |
| 46 | (root-home . "Separate /home partition"))) | 46 | (root-home . ,(G_ "Separate /home partition")))) |
| 47 | (result (run-listbox-selection-page | 47 | (result (run-listbox-selection-page |
| 48 | #:info-text (G_ "Please select a partitioning scheme.") | 48 | #:info-text (G_ "Please select a partitioning scheme.") |
| 49 | #:title (G_ "Partition scheme") | 49 | #:title (G_ "Partition scheme") |
| @@ -429,10 +429,10 @@ partition. Leave this field empty if you don't want to set a mounting point.") | |||
| 429 | (run-listbox-selection-page | 429 | (run-listbox-selection-page |
| 430 | #:info-text | 430 | #:info-text |
| 431 | (if creation? | 431 | (if creation? |
| 432 | (G_ (format #f "Creating ~a partition starting at ~a of ~a." | 432 | (format #f (G_ "Creating ~a partition starting at ~a of ~a.") |
| 433 | type-str start file-name)) | 433 | type-str start file-name) |
| 434 | (G_ (format #f "You are currently editing partition ~a." | 434 | (format #f (G_ "You are currently editing partition ~a.") |
| 435 | number-str))) | 435 | number-str)) |
| 436 | #:title (if creation? | 436 | #:title (if creation? |
| 437 | (G_ "Partition creation") | 437 | (G_ "Partition creation") |
| 438 | (G_ "Partition edit")) | 438 | (G_ "Partition edit")) |
| @@ -724,9 +724,9 @@ by pressing the Exit button.~%~%"))) | |||
| 724 | "Run a page asking the user for a partitioning method." | 724 | "Run a page asking the user for a partitioning method." |
| 725 | (define (run-page devices) | 725 | (define (run-page devices) |
| 726 | (let* ((items | 726 | (let* ((items |
| 727 | '((entire . "Guided - using the entire disk") | 727 | `((entire . ,(G_ "Guided - using the entire disk")) |
| 728 | (entire-encrypted . "Guided - using the entire disk with encryption") | 728 | (entire-encrypted . ,(G_ "Guided - using the entire disk with encryption")) |
| 729 | (manual . "Manual"))) | 729 | (manual . ,(G_ "Manual")))) |
| 730 | (result (run-listbox-selection-page | 730 | (result (run-listbox-selection-page |
| 731 | #:info-text (G_ "Please select a partitioning method.") | 731 | #:info-text (G_ "Please select a partitioning method.") |
| 732 | #:title (G_ "Partitioning method") | 732 | #:title (G_ "Partitioning method") |
