diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-01-16 19:20:26 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-01-17 14:04:28 +0100 |
commit | 85caf5f3239a60039eb4593687eed03ba423e52d (patch) | |
tree | ba26c5468e376bde86e78ec913e674896839f3eb /gnu/installer/newt/partition.scm | |
parent | 938ee975af8f35ae16c15443a7a76be7d31278eb (diff) | |
download | patches-85caf5f3239a60039eb4593687eed03ba423e52d.tar patches-85caf5f3239a60039eb4593687eed03ba423e52d.tar.gz |
installer: "formating" → "formatting".
* gnu/installer/newt/partition.scm,
gnu/installer/parted.scm: Replace "formating" with "formatting".
Diffstat (limited to 'gnu/installer/newt/partition.scm')
-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 1c3ce80ce5..c22e1c0290 100644 --- a/gnu/installer/newt/partition.scm +++ b/gnu/installer/newt/partition.scm @@ -52,10 +52,10 @@ #:button-callback-procedure button-exit-action))) (car result))) -(define (draw-formating-page) +(define (draw-formatting-page) "Draw a page to indicate partitions are being formated." (draw-info-page - (format #f (G_ "Partition formating is in progress, please wait.")) + (format #f (G_ "Partition formatting is in progress, please wait.")) (G_ "Preparing partitions"))) (define (run-device-page devices) @@ -288,13 +288,13 @@ by USER-PART, if it is applicable for the partition type." (G_ "Encryption label"))))) (user-partition (inherit target-user-partition) - (need-formating? #t) + (need-formatting? #t) (crypt-label new-label)))) - ((need-formating?) + ((need-formatting?) (user-partition (inherit target-user-partition) - (need-formating? - (not (user-partition-need-formating? + (need-formatting? + (not (user-partition-need-formatting? target-user-partition))))) ((size) (let* ((old-size (user-partition-size target-user-partition)) @@ -392,7 +392,7 @@ partition. Leave this field empty if you don't want to set a mounting point.") (and new-partition (user-partition (inherit new-user-partition) - (need-formating? #t) + (need-formatting? #t) (file-name (partition-get-path new-partition)) (disk-file-name (device-path device)) (parted-object new-partition)))) @@ -758,8 +758,8 @@ by pressing the Exit button.~%~%"))) (user-partitions (run-page non-install-devices)) (user-partitions-with-pass (prompt-luks-passwords user-partitions)) - (form (draw-formating-page))) - ;; Make sure the disks are not in use before proceeding to formating. + (form (draw-formatting-page))) + ;; Make sure the disks are not in use before proceeding to formatting. (free-parted non-install-devices) (format-user-partitions user-partitions-with-pass) (destroy-form-and-pop form) |