diff --git a/web/apps/accounts/src/pages/passkeys/verify.tsx b/web/apps/accounts/src/pages/passkeys/verify.tsx index 010c3bbfdf..c97a92e069 100644 --- a/web/apps/accounts/src/pages/passkeys/verify.tsx +++ b/web/apps/accounts/src/pages/passkeys/verify.tsx @@ -321,12 +321,12 @@ const Redirecting: React.FC = ({ onRetry }) => { return ( - Passkey verified + {t("passkey_verified")} - Redirecting you back to the app... + {t("redirecting_back_to_app")} - You can close this window after the app opens. + {t("redirect_close_instructions")} = ({ onRetry }) => { type="button" variant="text" > - Redirect again + {t("redirect_again")} diff --git a/web/packages/next/locales/en-US/translation.json b/web/packages/next/locales/en-US/translation.json index d218c94ec4..f668e8c01b 100644 --- a/web/packages/next/locales/en-US/translation.json +++ b/web/packages/next/locales/en-US/translation.json @@ -627,6 +627,10 @@ "TRY_AGAIN": "Try again", "passkey_login_instructions": "Follow the steps from your browser to continue logging in.", "passkey_login": "Login with passkey", + "passkey_verified": "Passkey verified", + "redirecting_back_to_app": "Redirecting you back to the app...", + "redirect_close_instructions": "You can close this window after the app opens.", + "redirect_again": "Redirect again", "autogenerated_first_album_name": "My First Album", "autogenerated_default_album_name": "New Album" }