건수 번역 키 수정 및 영어 번역 추가

변경사항:
- home.count 영어 번역 추가 (" cases")
- result-list-wrap.tsx에서 transaction.count를 home.count로 수정

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Jay Sheen
2025-11-03 16:54:48 +09:00
parent 156b676081
commit a0dce450ae
2 changed files with 4 additions and 4 deletions

View File

@@ -278,21 +278,21 @@ export const FundAccountResultListWrap = () => {
<span className="label">{t('additionalService.common.request')}</span>
<span className="value">
{t('home.money', { value: new Intl.NumberFormat('en-US').format(totalRequestAmount) })}
<span className="unit"> ({new Intl.NumberFormat('en-US').format(totalRequestCount)}{t('transaction.count')})</span>
<span className="unit"> ({new Intl.NumberFormat('en-US').format(totalRequestCount)}{t('home.count')})</span>
</span>
</li>
<li className="summary-amount-item">
<span className="label">{t('additionalService.common.success')}</span>
<span className="value">
{t('home.money', { value: new Intl.NumberFormat('en-US').format(totalSuccessAmount) })}
<span className="unit"> ({new Intl.NumberFormat('en-US').format(totalSuccessCount)}{t('transaction.count')})</span>
<span className="unit"> ({new Intl.NumberFormat('en-US').format(totalSuccessCount)}{t('home.count')})</span>
</span>
</li>
<li className="summary-amount-item">
<span className="label">{t('additionalService.common.fail')}</span>
<span className="value">
{t('home.money', { value: new Intl.NumberFormat('en-US').format(totalFailAmount) })}
<span className="unit"> ({new Intl.NumberFormat('en-US').format(totalFailCount)}{t('transaction.count')})</span>
<span className="unit"> ({new Intl.NumberFormat('en-US').format(totalFailCount)}{t('home.count')})</span>
</span>
</li>
</ul>

View File

@@ -366,7 +366,7 @@
"todaySettlement": "Today's Settlement",
"approvalCount": "Approved",
"cancelCount": "Cancelled",
"count": "",
"count": " cases",
"depositCompleted": "Completed",
"settlementLimit": "Settlement Limit",
"percentRemaining": "% remaining",