diff --git a/src/entities/transaction/ui/detail/escrow-detail.tsx b/src/entities/transaction/ui/detail/escrow-detail.tsx
index d55aec2..1115735 100644
--- a/src/entities/transaction/ui/detail/escrow-detail.tsx
+++ b/src/entities/transaction/ui/detail/escrow-detail.tsx
@@ -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);
diff --git a/src/entities/transaction/ui/escrow-mail-resend-bottom-sheet.tsx b/src/entities/transaction/ui/escrow-mail-resend-bottom-sheet.tsx
index 1d9b16e..bf61c40 100644
--- a/src/entities/transaction/ui/escrow-mail-resend-bottom-sheet.tsx
+++ b/src/entities/transaction/ui/escrow-mail-resend-bottom-sheet.tsx
@@ -51,7 +51,7 @@ export const EscrowMailResendBottomSheet = ({
>
-
메일 재발송
+
{ t('transaction.bottomSheet.escrowMailResend.resendTitle') }
@@ -81,7 +81,7 @@ export const EscrowMailResendBottomSheet = ({
className="btn-50 btn-blue flex-1"
type="button"
onClick={ () => onClickToMailResend() }
- >재발송
+ >{ t('transaction.bottomSheet.escrowMailResend.resendButton') }
>
diff --git a/src/locales/en.json b/src/locales/en.json
index b9c0d78..8bfb730 100644
--- a/src/locales/en.json
+++ b/src/locales/en.json
@@ -499,7 +499,11 @@
"mailLabel": "Receive by Email",
"mail": "Mail",
"select": "Select",
- "errorNoEmail": "No registered email information.\nPlease add email authentication information from the user management menu before applying."
+ "errorNoEmail": "No registered email information.\nPlease add email authentication information from the user management menu before applying.",
+ "resendTitle": "Resend Email",
+ "resendDescription": "You can resend the escrow email to customers who did not receive the email.",
+ "resendConfirmation": "Do you want to resend the email?",
+ "resendButton": "Resend"
},
"cashReceiptPurposeUpdate": {
"title": "Cash Receipt Purpose Change Notice",
@@ -764,7 +768,8 @@
"escrow": {
"title": "Escrow",
"detailTitle": "Escrow Details",
- "mailResend": "Resend Email"
+ "mailResend": "Resend Email",
+ "mailResendSuccess": "Email has been resent successfully."
},
"billing": {
"title": "Billing",
diff --git a/src/locales/ko.json b/src/locales/ko.json
index 876d675..34cded2 100644
--- a/src/locales/ko.json
+++ b/src/locales/ko.json
@@ -499,7 +499,11 @@
"mailLabel": "메일로 받기",
"mail": "메일",
"select": "선택",
- "errorNoEmail": "등록된 메일 정보가 없습니다.\n이메일 인증정보를 사용자관리 메뉴에서 추가 후 신청하세요."
+ "errorNoEmail": "등록된 메일 정보가 없습니다.\n이메일 인증정보를 사용자관리 메뉴에서 추가 후 신청하세요.",
+ "resendTitle": "메일 재발송",
+ "resendDescription": "메일 미수신 고객에게 에스크로 메일 재발송이 가능합니다.",
+ "resendConfirmation": "메일을 재발송 하시겠습니까?",
+ "resendButton": "재발송"
},
"cashReceiptPurposeUpdate": {
"title": "현금영수증 용도 변경 안내",
@@ -764,7 +768,8 @@
"escrow": {
"title": "에스크로",
"detailTitle": "에스크로 상세",
- "mailResend": "메일 재발송"
+ "mailResend": "메일 재발송",
+ "mailResendSuccess": "메일 재발송을 성공하였습니다."
},
"billing": {
"title": "빌링",