From 0a88a89f92c543af1b2b3a6b6f368f59ed73a6ab Mon Sep 17 00:00:00 2001 From: Jay Sheen Date: Fri, 31 Oct 2025 17:47:15 +0900 Subject: [PATCH] Add missing Korean translations for QNA pages MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added missing detailLabels and formLabels sections to ko.json qna section: detailLabels: - title: 제목 - type: 유형 - registrationDate: 등록일 - answerDate: 답변일 - inquiryAnswer: 문의 답변 - inquiryContents: 문의 내용 formLabels: - title: 제목 - inquiryType: 문의 유형 - requesterName: 요청자명 - phoneNumber: 휴대폰번호 - emailAddress: 이메일 주소 - inquiryContents: 문의 내용 - required: * - phonePlaceholder: '-' 없이 입력 - emailPlaceholder: TEST123@nicepay.com These translations are used in qna detail-page and register-page. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- src/locales/ko.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/src/locales/ko.json b/src/locales/ko.json index ca5e3be..6db6c27 100644 --- a/src/locales/ko.json +++ b/src/locales/ko.json @@ -238,6 +238,25 @@ "requestTel": "휴대폰번호은 필수 항목 입니다.", "requestEmail": "이메일 형식이 맞지 않습니다.", "contents": "문의내용은 필수 항목 입니다." + }, + "detailLabels": { + "title": "제목", + "type": "유형", + "registrationDate": "등록일", + "answerDate": "답변일", + "inquiryAnswer": "문의 답변", + "inquiryContents": "문의 내용" + }, + "formLabels": { + "title": "제목", + "inquiryType": "문의 유형", + "requesterName": "요청자명", + "phoneNumber": "휴대폰번호", + "emailAddress": "이메일 주소", + "inquiryContents": "문의 내용", + "required": "*", + "phonePlaceholder": "'-' 없이 입력", + "emailPlaceholder": "TEST123@nicepay.com" } } },