From ab8b29965a64ffc68aa034d75019910e4f07d3aa Mon Sep 17 00:00:00 2001 From: Parth <143504541+parrth20@users.noreply.github.com> Date: Fri, 20 Feb 2026 16:21:50 +0530 Subject: [PATCH] chore(i18n): localize hardcoded login labels and messages (#1130) * chore(i18n): add login copy keys * refactor(login): localize login card title and subtitle * refactor(login): localize wallet selector and password labels --- src/components/login/LoginCard.tsx | 4 ++-- src/components/login/LoginForm.tsx | 8 +++++--- src/i18n/locales/en/translation.json | 8 ++++++++ 3 files changed, 15 insertions(+), 5 deletions(-) diff --git a/src/components/login/LoginCard.tsx b/src/components/login/LoginCard.tsx index 15755683..628f239d 100644 --- a/src/components/login/LoginCard.tsx +++ b/src/components/login/LoginCard.tsx @@ -88,13 +88,13 @@ export const LoginCard = ({ )} - {/*TODO: i18n */}Welcome to Jam + {t('login.title')} {listWalletsLoading ? ( <> ) : wallets && wallets.length > 0 ? ( - {/*TODO: i18n */}Select a wallet and enter your password to continue. + {t('login.subtitle')} ) : undefined} {enableOnboardingDialog ? (