From 344e5c324a8aac7f9a5be3bb0f7f12e5a274448a Mon Sep 17 00:00:00 2001 From: Jay Sheen Date: Mon, 3 Nov 2025 17:34:03 +0900 Subject: [PATCH] Localize account holder auth page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Replace hardcoded Korean text with translation keys - Update header title to use t('additionalService.accountHolderAuth.title') - Localize filter and download button labels - Localize sort options (latest/oldest) - All translation keys already exist in ko.json and en.json πŸ€– Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .../account-holder-auth-page.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/pages/additional-service/account-holder-auth/account-holder-auth-page.tsx b/src/pages/additional-service/account-holder-auth/account-holder-auth-page.tsx index 35bd5f0..9816794 100644 --- a/src/pages/additional-service/account-holder-auth/account-holder-auth-page.tsx +++ b/src/pages/additional-service/account-holder-auth/account-holder-auth-page.tsx @@ -47,7 +47,7 @@ export const AccountHolderAuthPage = () => { const [toDate, setToDate] = useState(moment().format('YYYYMMDD')); const [authStatus, setAuthStatus] = useState(AccountHolderAuthStatus.ALL) const [emailBottomSheetOn, setEmailBottomSheetOn] = useState(false); - useSetHeaderTitle('κ³„μ’Œμ μœ μΈμ¦'); + useSetHeaderTitle(t('additionalService.accountHolderAuth.title')); useSetHeaderType(HeaderType.LeftArrow); useSetFooterMode(false); useSetOnBack(() => { @@ -184,23 +184,23 @@ export const AccountHolderAuthPage = () => { /> @@ -211,8 +211,8 @@ export const AccountHolderAuthPage = () => { sortType={sortType} onClickToSort={onClickToSort} sortOptions={[ - { key: SortTypeKeys.LATEST, label: 'μ΅œμ‹ μˆœ' }, - { key: SortTypeKeys.OLDEST, label: '였래된순' } + { key: SortTypeKeys.LATEST, label: t('common.latest') }, + { key: SortTypeKeys.OLDEST, label: t('common.oldest') } ]} >