Merge pull request #1909 from ogayot/mantic-merge-2024-02-12

Mantic merge 2024 02 12
This commit is contained in:
Dan Bungert 2024-02-12 20:15:18 -07:00 committed by GitHub
commit f07e5ae1f6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 8 additions and 8 deletions

View File

@ -216,7 +216,7 @@ class FilesystemController(SubiquityTuiController, FilesystemManipulator):
return return
if isinstance(body.stretchy, ConfirmDeleteStretchy): if isinstance(body.stretchy, ConfirmDeleteStretchy):
if action.get("submit", True): if action.get("submit", True):
body.stretchy.done() body.stretchy.confirm()
else: else:
async for _ in self._enter_form_data( async for _ in self._enter_form_data(
body.stretchy.form, action["data"], action.get("submit", True) body.stretchy.form, action["data"], action.get("submit", True)

View File

@ -181,7 +181,7 @@ class IdentityView(BaseView):
title = _("Profile setup") title = _("Profile setup")
excerpt = _( excerpt = _(
"Enter the username and password you will use to log in to " "Enter the username and password you will use to log in to "
"the system. You can configure SSH access on the next screen " "the system. You can configure SSH access on a later screen "
"but a password is still needed for sudo." "but a password is still needed for sudo."
) )

View File

@ -82,7 +82,7 @@ MIRROR_CHECK_STATUS_TEXTS = {
(False, None): _( (False, None): _(
"The mirror location cannot be checked because no network has been configured." "The mirror location cannot be checked because no network has been configured."
), ),
(True, None): _("The mirror location has not yet started."), (True, None): _("Testing of the mirror location has not yet started."),
(True, MirrorCheckStatus.RUNNING): _("The mirror location is being tested."), (True, MirrorCheckStatus.RUNNING): _("The mirror location is being tested."),
(True, MirrorCheckStatus.OK): _("This mirror location passed tests."), (True, MirrorCheckStatus.OK): _("This mirror location passed tests."),
(True, MirrorCheckStatus.FAILED): _( (True, MirrorCheckStatus.FAILED): _(

View File

@ -222,7 +222,7 @@ class UpgradeYesNoFormNoNetwork(UpgradeYesNoForm):
help="\n" help="\n"
+ _( + _(
"Once you are connected to the Internet, you can" "Once you are connected to the Internet, you can"
" enable Ubuntu Po via the 'pro attach' command." " enable Ubuntu Pro via the 'pro attach' command."
), ),
) )
@ -779,7 +779,7 @@ class AboutProWidget(Stretchy):
| ... | | ... |
| ... | | ... |
| | | |
| Ubuntu Pro is free for personal use on up to 3 machines.| | Ubuntu Pro is free for personal use on up to 5 machines.|
| More information is at ubuntu.com/pro | | More information is at ubuntu.com/pro |
| | | |
| [ Continue ] | | [ Continue ] |
@ -832,7 +832,7 @@ class AboutProWidget(Stretchy):
Text(""), Text(""),
Pile([itemize(svc, marker="") for svc in services]), Pile([itemize(svc, marker="") for svc in services]),
Text(""), Text(""),
Text(_("Ubuntu Pro is free for personal use on up to 3 machines.")), Text(_("Ubuntu Pro is free for personal use on up to 5 machines.")),
Text(_("More information is at ubuntu.com/pro")), Text(_("More information is at ubuntu.com/pro")),
Text(""), Text(""),
button_pile([ok]), button_pile([ok]),
@ -851,7 +851,7 @@ class HowToRegisterWidget(Stretchy):
| | | |
|_Create your Ubuntu One account with your email. Each | |_Create your Ubuntu One account with your email. Each |
| Ubuntu One account gets a free personal Ubuntu Pro | | Ubuntu One account gets a free personal Ubuntu Pro |
| subscription for up to three machines, including | | subscription for up to five machines, including |
| laptops, servers or cloud virtual machines. | | laptops, servers or cloud virtual machines. |
| | | |
| Visit ubuntu.com/pro to get started. | | Visit ubuntu.com/pro to get started. |
@ -870,7 +870,7 @@ class HowToRegisterWidget(Stretchy):
header = _( header = _(
"Create your Ubuntu One account with your email. Each" "Create your Ubuntu One account with your email. Each"
" Ubuntu One account gets a free personal Ubuntu Pro" " Ubuntu One account gets a free personal Ubuntu Pro"
" subscription for up to three machines, including" " subscription for up to five machines, including"
" laptops, servers or cloud virtual machines." " laptops, servers or cloud virtual machines."
) )