Skip to content

Commit

Permalink
VPN-5871: Passwordless auth: string update (#8937)
Browse files Browse the repository at this point in the history
  • Loading branch information
jswinarton authored Jan 11, 2024
1 parent 08cd070 commit 8bb44a4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/l10n/exceptions.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"characters": [
"vpn.inAppAuth.termsOfServiceAndPrivacyDisclaimer",
"vpn.inAppAuth.ssoInstructionLine2"
"vpn.inAppAuth.ssoInstructionLine2a"
],
"comments": [],
"empty": []
Expand Down
4 changes: 2 additions & 2 deletions src/translations/strings.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -705,8 +705,8 @@ inAppAuth:
ssoInstructionLine1:
value: "To finish setting up your Mozilla account, create a password in your account settings:"
comment: User has tried to log in using an SSO-linked account that does not have a password. The user needs to log in to their Mozilla Account to set a password before proceeding.
ssoInstructionLine2:
value: 1. Go to <a href="open-account">Change password</a> in your Mozilla account settings.
ssoInstructionLine2a:
value: 1. Go to <a href="open-account">Create password</a> in your Mozilla account settings.
comment: User has tried to log in using an SSO-linked account that does not have a password. The user needs to log in to their Mozilla Account to set a password before proceeding. Do not remove or translate the markup '<a href="open-account">'.
ssoInstructionLine3:
value: 2. Create a password.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ MZInAppAuthenticationThirdParty {

MZTextBlock {
id: ssoInstructionLine2
text: MZI18n.InAppAuthSsoInstructionLine2
text: MZI18n.InAppAuthSsoInstructionLine2a

Layout.fillWidth: true
Layout.leftMargin: MZTheme.theme.vSpacing / 2
Expand Down
2 changes: 1 addition & 1 deletion src/urlopener.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ UrlOpener::UrlOpener(QObject* parent) : QObject(parent) {
});

UrlOpener::registerUrlLabel("setSsoPassword", []() -> QString {
return QString("%1/settings/change_password").arg(Constants::fxaUrl());
return QString("%1/settings/create_password").arg(Constants::fxaUrl());
});
}

Expand Down

0 comments on commit 8bb44a4

Please sign in to comment.