Skip to content

Commit

Permalink
CP-45747 Minor wording tweaks for local storage screens
Browse files Browse the repository at this point in the history
- 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 <[email protected]>
  • Loading branch information
Robin Newton authored and liulinC committed Jul 30, 2024
1 parent 11ff548 commit 3e585a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tui/installer/screens.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit 3e585a1

Please sign in to comment.