From a0dce450ae55f72347e0ccbc86c526ecf089c00c Mon Sep 17 00:00:00 2001 From: Jay Sheen Date: Mon, 3 Nov 2025 16:54:48 +0900 Subject: [PATCH] =?UTF-8?q?=EA=B1=B4=EC=88=98=20=EB=B2=88=EC=97=AD=20?= =?UTF-8?q?=ED=82=A4=20=EC=88=98=EC=A0=95=20=EB=B0=8F=20=EC=98=81=EC=96=B4?= =?UTF-8?q?=20=EB=B2=88=EC=97=AD=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 변경사항: - home.count 영어 번역 추가 (" cases") - result-list-wrap.tsx에서 transaction.count를 home.count로 수정 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .../additional-service/ui/fund-account/result-list-wrap.tsx | 6 +++--- src/locales/en.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/entities/additional-service/ui/fund-account/result-list-wrap.tsx b/src/entities/additional-service/ui/fund-account/result-list-wrap.tsx index 004425b..471c055 100644 --- a/src/entities/additional-service/ui/fund-account/result-list-wrap.tsx +++ b/src/entities/additional-service/ui/fund-account/result-list-wrap.tsx @@ -278,21 +278,21 @@ export const FundAccountResultListWrap = () => { {t('additionalService.common.request')} {t('home.money', { value: new Intl.NumberFormat('en-US').format(totalRequestAmount) })} - ({new Intl.NumberFormat('en-US').format(totalRequestCount)}{t('transaction.count')}) + ({new Intl.NumberFormat('en-US').format(totalRequestCount)}{t('home.count')})
  • {t('additionalService.common.success')} {t('home.money', { value: new Intl.NumberFormat('en-US').format(totalSuccessAmount) })} - ({new Intl.NumberFormat('en-US').format(totalSuccessCount)}{t('transaction.count')}) + ({new Intl.NumberFormat('en-US').format(totalSuccessCount)}{t('home.count')})
  • {t('additionalService.common.fail')} {t('home.money', { value: new Intl.NumberFormat('en-US').format(totalFailAmount) })} - ({new Intl.NumberFormat('en-US').format(totalFailCount)}{t('transaction.count')}) + ({new Intl.NumberFormat('en-US').format(totalFailCount)}{t('home.count')})
  • diff --git a/src/locales/en.json b/src/locales/en.json index 094fd7a..1178cb2 100644 --- a/src/locales/en.json +++ b/src/locales/en.json @@ -366,7 +366,7 @@ "todaySettlement": "Today's Settlement", "approvalCount": "Approved", "cancelCount": "Cancelled", - "count": "", + "count": " cases", "depositCompleted": "Completed", "settlementLimit": "Settlement Limit", "percentRemaining": "% remaining",