에스크로 메일 재발송 다국어 추가

- 에스크로 메일 재발송 바텀시트 다국어 적용
- 에스크로 상세 페이지 메일 재발송 성공 메시지 다국어 적용
- 한글/영문 번역 키 추가

🤖 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-17 14:35:50 +09:00
parent d7086eeb38
commit f4b8565358
4 changed files with 19 additions and 9 deletions

View File

@@ -118,7 +118,7 @@ export const EscrowDetail = ({
tid: tid,
};
escrowMailResend(params).then((rs: EscrowMailResendResponse) => {
snackBar('메일 재발송을 성공하였습니다.');
snackBar(t('escrow.mailResendSuccess'));
}).catch((e: any) => {
if(e.response?.data?.error?.message){
snackBar(e.response?.data?.error?.message);

View File

@@ -51,7 +51,7 @@ export const EscrowMailResendBottomSheet = ({
>
<div className="bottomsheet-header">
<div className="bottomsheet-title">
<h2> </h2>
<h2>{ t('transaction.bottomSheet.escrowMailResend.resendTitle') }</h2>
<button
className="close-btn"
type="button"
@@ -68,10 +68,10 @@ export const EscrowMailResendBottomSheet = ({
<div className="bottomsheet-content">
<div className="bottom-section">
<p>
.
{ t('transaction.bottomSheet.escrowMailResend.resendDescription') }
<br />
<br />
?
{ t('transaction.bottomSheet.escrowMailResend.resendConfirmation') }
</p>
</div>
</div>
@@ -81,7 +81,7 @@ export const EscrowMailResendBottomSheet = ({
className="btn-50 btn-blue flex-1"
type="button"
onClick={ () => onClickToMailResend() }
></button>
>{ t('transaction.bottomSheet.escrowMailResend.resendButton') }</button>
</div>
</motion.div>
</>