console_conf/ui/views/chooser: use lowercase action title in canned summary

Signed-off-by: Maciej Borzecki <maciej.zenon.borzecki@canonical.com>
This commit is contained in:
Maciej Borzecki 2020-04-08 11:57:00 +02:00
parent a957c5b889
commit 3967329832
1 changed files with 3 additions and 2 deletions

View File

@ -176,8 +176,8 @@ class ChooserConfirmView(ChooserBaseView):
"run": "Continue running the system without any changes.",
"recover": ("You have requested to reboot the system into recovery "
"mode."),
"install": ("You are about to {action} the system version {version} "
"for {model} from {publisher}.\n\n"
"install": ("You are about to {action_lower} the system version "
"{version} for {model} from {publisher}.\n\n"
"This will remove all existing user data on the "
"device.\n\n"
"The system will reboot in the process."),
@ -198,6 +198,7 @@ class ChooserConfirmView(ChooserBaseView):
fmt = self.canned_summary.get(selection.action.mode,
self.default_summary)
summary = fmt.format(action=selection.action.title,
action_lower=selection.action.title.lower(),
model=selection.system.model.display_name,
publisher=selection.system.brand.display_name,
version=selection.system.label)