건수 번역 키 수정 및 영어 번역 추가
변경사항:
- 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:
@@ -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>
|
||||
|
||||
@@ -366,7 +366,7 @@
|
||||
"todaySettlement": "Today's Settlement",
|
||||
"approvalCount": "Approved",
|
||||
"cancelCount": "Cancelled",
|
||||
"count": "",
|
||||
"count": " cases",
|
||||
"depositCompleted": "Completed",
|
||||
"settlementLimit": "Settlement Limit",
|
||||
"percentRemaining": "% remaining",
|
||||
|
||||
Reference in New Issue
Block a user