건수 번역 키 수정 및 영어 번역 추가
변경사항:
- 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="label">{t('additionalService.common.request')}</span>
|
||||||
<span className="value">
|
<span className="value">
|
||||||
{t('home.money', { value: new Intl.NumberFormat('en-US').format(totalRequestAmount) })}
|
{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>
|
</span>
|
||||||
</li>
|
</li>
|
||||||
<li className="summary-amount-item">
|
<li className="summary-amount-item">
|
||||||
<span className="label">{t('additionalService.common.success')}</span>
|
<span className="label">{t('additionalService.common.success')}</span>
|
||||||
<span className="value">
|
<span className="value">
|
||||||
{t('home.money', { value: new Intl.NumberFormat('en-US').format(totalSuccessAmount) })}
|
{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>
|
</span>
|
||||||
</li>
|
</li>
|
||||||
<li className="summary-amount-item">
|
<li className="summary-amount-item">
|
||||||
<span className="label">{t('additionalService.common.fail')}</span>
|
<span className="label">{t('additionalService.common.fail')}</span>
|
||||||
<span className="value">
|
<span className="value">
|
||||||
{t('home.money', { value: new Intl.NumberFormat('en-US').format(totalFailAmount) })}
|
{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>
|
</span>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|||||||
@@ -366,7 +366,7 @@
|
|||||||
"todaySettlement": "Today's Settlement",
|
"todaySettlement": "Today's Settlement",
|
||||||
"approvalCount": "Approved",
|
"approvalCount": "Approved",
|
||||||
"cancelCount": "Cancelled",
|
"cancelCount": "Cancelled",
|
||||||
"count": "",
|
"count": " cases",
|
||||||
"depositCompleted": "Completed",
|
"depositCompleted": "Completed",
|
||||||
"settlementLimit": "Settlement Limit",
|
"settlementLimit": "Settlement Limit",
|
||||||
"percentRemaining": "% remaining",
|
"percentRemaining": "% remaining",
|
||||||
|
|||||||
Reference in New Issue
Block a user