From 3e585a162f512a1280d60df4a089f44de27f9c3a Mon Sep 17 00:00:00 2001 From: Robin Newton Date: Wed, 17 Jul 2024 17:34:18 +0100 Subject: [PATCH] CP-45747 Minor wording tweaks for local storage screens - Fixed grammatical error in message shown when a large block SR type is needed but isn't available - Bring the message on the disk selection screen into line with house style. Signed-off-by: Robin Newton --- tui/installer/screens.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tui/installer/screens.py b/tui/installer/screens.py index 490c6561..176d149a 100644 --- a/tui/installer/screens.py +++ b/tui/installer/screens.py @@ -663,7 +663,7 @@ def select_guest_disks(answers): for de in diskEntries: entries.append((diskutil.getHumanDiskLabel(de), de)) - text = TextboxReflowed(54, "Which disks would you like to use for %s storage? \n\nOne storage repository will be created that spans the selected disks. You can choose not to prepare any storage if you wish to create an advanced configuration after installation." % BRAND_GUEST) + text = TextboxReflowed(54, "Which disks do you want to use for %s storage? \n\nOne storage repository will be created that spans the selected disks. You can choose not to prepare any storage if you want to create an advanced configuration after installation." % BRAND_GUEST) buttons = ButtonBar(tui.screen, [('Ok', 'ok'), ('Back', 'back')]) scroll, _ = snackutil.scrollHeight(3, len(entries)) cbt = CheckboxTree(3, scroll) @@ -736,7 +736,7 @@ def get_sr_type(answers): else: content = TextboxReflowed(54, "Only disks with a block size of 512 bytes" - " can be use for %s storage. Please" + " can be used for %s storage. Please" " unselect any disks where the block size" " is different from this." % BRAND_GUEST)