diff --git a/.github/l10n/exceptions.json b/.github/l10n/exceptions.json
index 951a10611f..4ddc3db5ae 100644
--- a/.github/l10n/exceptions.json
+++ b/.github/l10n/exceptions.json
@@ -1,7 +1,7 @@
{
"characters": [
"vpn.inAppAuth.termsOfServiceAndPrivacyDisclaimer",
- "vpn.inAppAuth.ssoInstructionLine2"
+ "vpn.inAppAuth.ssoInstructionLine2a"
],
"comments": [],
"empty": []
diff --git a/src/translations/strings.yaml b/src/translations/strings.yaml
index 1207a2644c..89614fdaf5 100644
--- a/src/translations/strings.yaml
+++ b/src/translations/strings.yaml
@@ -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 Change password in your Mozilla account settings.
+ ssoInstructionLine2a:
+ value: 1. Go to Create password 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 ''.
ssoInstructionLine3:
value: 2. Create a password.
diff --git a/src/ui/authenticationInApp/ViewAuthenticationSsoAccount.qml b/src/ui/authenticationInApp/ViewAuthenticationSsoAccount.qml
index 12120917ea..16f9e52cd6 100644
--- a/src/ui/authenticationInApp/ViewAuthenticationSsoAccount.qml
+++ b/src/ui/authenticationInApp/ViewAuthenticationSsoAccount.qml
@@ -31,7 +31,7 @@ MZInAppAuthenticationThirdParty {
MZTextBlock {
id: ssoInstructionLine2
- text: MZI18n.InAppAuthSsoInstructionLine2
+ text: MZI18n.InAppAuthSsoInstructionLine2a
Layout.fillWidth: true
Layout.leftMargin: MZTheme.theme.vSpacing / 2
diff --git a/src/urlopener.cpp b/src/urlopener.cpp
index ce5cc0ebb3..923acc820d 100644
--- a/src/urlopener.cpp
+++ b/src/urlopener.cpp
@@ -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());
});
}