diff options
| author | Julien Lepiller <julien@lepiller.eu> | 2026-07-05 17:20:45 +0200 |
|---|---|---|
| committer | Julien Lepiller <julien@lepiller.eu> | 2026-07-11 08:01:36 +0200 |
| commit | 9770f69717e153b7dd4744c83901544644d441b7 (patch) | |
| tree | ecbbf7a569dedc4c5483b43dd8233bb79d5d7d3f /gnu/installer | |
| parent | 8639b05cde255e87371bd532d853ac5916c24f5e (diff) | |
installer: Add missing translations.
* gnu/installer/newt.scm (newt-run-command): Wrap strings with G_.
* gnu/installer/newt/page.scm (run-dump-page): idem.
Change-Id: I36060459b15af9e23b3b786acf8c25ff2469a239
Diffstat (limited to 'gnu/installer')
| -rw-r--r-- | gnu/installer/newt.scm | 6 | ||||
| -rw-r--r-- | gnu/installer/newt/page.scm | 10 |
2 files changed, 8 insertions, 8 deletions
diff --git a/gnu/installer/newt.scm b/gnu/installer/newt.scm index 521668a3b25..10aea05f428 100644 --- a/gnu/installer/newt.scm +++ b/gnu/installer/newt.scm | |||
| @@ -143,11 +143,11 @@ report it by email to ~a.") uploaded-name %guix-bug-report-address) | |||
| 143 | #:content command-output | 143 | #:content command-output |
| 144 | #:buttons-spec | 144 | #:buttons-spec |
| 145 | (list | 145 | (list |
| 146 | (cons "Ignore" (const #t)) | 146 | (cons (G_ "Ignore") (const #t)) |
| 147 | (cons "Abort" | 147 | (cons (G_ "Abort") |
| 148 | (lambda () | 148 | (lambda () |
| 149 | (abort-to-prompt 'installer-step 'abort))) | 149 | (abort-to-prompt 'installer-step 'abort))) |
| 150 | (cons "Report" | 150 | (cons (G_ "Report") |
| 151 | (lambda () | 151 | (lambda () |
| 152 | (raise | 152 | (raise |
| 153 | (condition | 153 | (condition |
diff --git a/gnu/installer/newt/page.scm b/gnu/installer/newt/page.scm index 64a29168263..c4414fc97ab 100644 --- a/gnu/installer/newt/page.scm +++ b/gnu/installer/newt/page.scm | |||
| @@ -904,14 +904,14 @@ component ~a." argument)))))))) | |||
| 904 | 904 | ||
| 905 | (define* (run-dump-page base-dir file-choices) | 905 | (define* (run-dump-page base-dir file-choices) |
| 906 | (define info-textbox | 906 | (define info-textbox |
| 907 | (make-reflowed-textbox -1 -1 "Please select files you wish to include in \ | 907 | (make-reflowed-textbox -1 -1 (G_ "Please select files you wish to include in \ |
| 908 | the dump." | 908 | the dump.") |
| 909 | 50 | 909 | 50 |
| 910 | #:flags FLAG-BORDER)) | 910 | #:flags FLAG-BORDER)) |
| 911 | (define components | 911 | (define components |
| 912 | (map (match-lambda ((file . enabled) | 912 | (map (match-lambda ((file . enabled) |
| 913 | (list | 913 | (list |
| 914 | (make-compact-button -1 -1 "Edit") | 914 | (make-compact-button -1 -1 (G_ "Edit")) |
| 915 | (make-checkbox -1 -1 file (if enabled #\x #\ ) " x") | 915 | (make-checkbox -1 -1 file (if enabled #\x #\ ) " x") |
| 916 | file))) | 916 | file))) |
| 917 | file-choices)) | 917 | file-choices)) |
| @@ -932,12 +932,12 @@ the dump." | |||
| 932 | (vertically-stacked-grid | 932 | (vertically-stacked-grid |
| 933 | GRID-ELEMENT-COMPONENT info-textbox | 933 | GRID-ELEMENT-COMPONENT info-textbox |
| 934 | GRID-ELEMENT-SUBGRID sub-grid | 934 | GRID-ELEMENT-SUBGRID sub-grid |
| 935 | GRID-ELEMENT-COMPONENT (make-button -1 -1 "Create"))) | 935 | GRID-ELEMENT-COMPONENT (make-button -1 -1 (G_ "Create")))) |
| 936 | 936 | ||
| 937 | (define form (make-form #:flags FLAG-NOF12)) | 937 | (define form (make-form #:flags FLAG-NOF12)) |
| 938 | 938 | ||
| 939 | (add-form-to-grid grid form #t) | 939 | (add-form-to-grid grid form #t) |
| 940 | (make-wrapped-grid-window grid "Installer dump") | 940 | (make-wrapped-grid-window grid (G_ "Installer dump")) |
| 941 | 941 | ||
| 942 | (define prompt-tag (make-prompt-tag)) | 942 | (define prompt-tag (make-prompt-tag)) |
| 943 | 943 | ||
