From 1fc60de492ba4939769cd03d166c6acf3db80270 Mon Sep 17 00:00:00 2001 From: Hamthoven Date: Mon, 9 Jan 2023 11:07:51 +0900 Subject: [PATCH] KR Translation --- public/locales/kr/bank-account-form.json | 9 +++++ public/locales/kr/bank-accounts-list.json | 6 ++++ public/locales/kr/client-fields.json | 10 ++++++ public/locales/kr/client-form.json | 36 +++++++++++++++++++ public/locales/kr/client-selector.json | 6 ++++ public/locales/kr/customizations-modal.json | 5 +++ public/locales/kr/empty-state.json | 3 ++ public/locales/kr/import-modal.json | 6 ++++ public/locales/kr/invoice-bank-details.json | 5 +++ public/locales/kr/invoice-client-details.json | 8 +++++ .../locales/kr/invoice-company-details.json | 9 +++++ .../locales/kr/invoice-contact-details.json | 5 +++ public/locales/kr/invoice-controls.json | 16 +++++++++ public/locales/kr/invoice-form.json | 3 ++ public/locales/kr/invoice-header.json | 10 ++++++ public/locales/kr/invoice-row.json | 7 ++++ public/locales/kr/invoice-rows-header.json | 7 ++++ public/locales/kr/invoice-totals.json | 5 +++ public/locales/kr/invoices-list.json | 7 ++++ public/locales/kr/invoices.json | 6 ++++ public/locales/kr/statuses.json | 9 +++++ public/locales/kr/team-fields.json | 10 ++++++ public/locales/kr/team-form.json | 36 +++++++++++++++++++ public/locales/kr/team-logo.json | 7 ++++ public/locales/kr/team-taxes.json | 10 ++++++ public/locales/kr/the-footer.json | 9 +++++ 26 files changed, 250 insertions(+) create mode 100644 public/locales/kr/bank-account-form.json create mode 100644 public/locales/kr/bank-accounts-list.json create mode 100644 public/locales/kr/client-fields.json create mode 100644 public/locales/kr/client-form.json create mode 100644 public/locales/kr/client-selector.json create mode 100644 public/locales/kr/customizations-modal.json create mode 100644 public/locales/kr/empty-state.json create mode 100644 public/locales/kr/import-modal.json create mode 100644 public/locales/kr/invoice-bank-details.json create mode 100644 public/locales/kr/invoice-client-details.json create mode 100644 public/locales/kr/invoice-company-details.json create mode 100644 public/locales/kr/invoice-contact-details.json create mode 100644 public/locales/kr/invoice-controls.json create mode 100644 public/locales/kr/invoice-form.json create mode 100644 public/locales/kr/invoice-header.json create mode 100644 public/locales/kr/invoice-row.json create mode 100644 public/locales/kr/invoice-rows-header.json create mode 100644 public/locales/kr/invoice-totals.json create mode 100644 public/locales/kr/invoices-list.json create mode 100644 public/locales/kr/invoices.json create mode 100644 public/locales/kr/statuses.json create mode 100644 public/locales/kr/team-fields.json create mode 100644 public/locales/kr/team-form.json create mode 100644 public/locales/kr/team-logo.json create mode 100644 public/locales/kr/team-taxes.json create mode 100644 public/locales/kr/the-footer.json diff --git a/public/locales/kr/bank-account-form.json b/public/locales/kr/bank-account-form.json new file mode 100644 index 0000000..895c8ee --- /dev/null +++ b/public/locales/kr/bank-account-form.json @@ -0,0 +1,9 @@ +{ + "title": "은행 계좌", + "bank_name": "은행 이름", + "account_no": "은행 계좌 상세 정보", + "loading": "실행 중", + "done": "완료", + "create": "생성하기", + "notification_updated": "수정되었습니다" +} diff --git a/public/locales/kr/bank-accounts-list.json b/public/locales/kr/bank-accounts-list.json new file mode 100644 index 0000000..5a2ba1c --- /dev/null +++ b/public/locales/kr/bank-accounts-list.json @@ -0,0 +1,6 @@ +{ + "loading": "실행 중", + "bank": "은행", + "bank_account_details": "은행 계좌 상세 정보", + "add_bank_account": "은행 계좌 추가하기" +} diff --git a/public/locales/kr/client-fields.json b/public/locales/kr/client-fields.json new file mode 100644 index 0000000..42ff03e --- /dev/null +++ b/public/locales/kr/client-fields.json @@ -0,0 +1,10 @@ +{ + "label": "항목", + "field": "내용", + "delete_modal": { + "title": "항목을 삭제하시겠습니까", + "ok_title": "삭제하기", + "cancel_title": "취소" + }, + "notification_deleted": "항목이 삭제되었습니다" +} diff --git a/public/locales/kr/client-form.json b/public/locales/kr/client-form.json new file mode 100644 index 0000000..ebcfe06 --- /dev/null +++ b/public/locales/kr/client-form.json @@ -0,0 +1,36 @@ +{ + "title": "고객", + "delete": "삭제", + "done": "완료", + "create": "생성하기", + "loading": "실행 중", + "tabs": { + "general": "일반", + "invoicing": "송장 정보", + "address": "주소" + }, + "general": { + "company_name": "회사 이름", + "invoice_email": "이메일" + }, + "invoicing": { + "currency": "통화", + "rate": "시간당 요금", + "has_tax": "세금 적용 여부", + "bank_account": "은행 계좌" + }, + "address": { + "company_address": "회사 주소", + "company_postal_code": "우편 번호", + "company_city": "읍/면/동", + "company_county": "시/도", + "company_country": "국가" + }, + "delete_modal": { + "title": "고객 삭제", + "ok_title": "식제", + "cancel_title": "취소" + }, + "notification_deleted": "삭제되었습니다", + "notification_updated": "수정되었습니다" +} diff --git a/public/locales/kr/client-selector.json b/public/locales/kr/client-selector.json new file mode 100644 index 0000000..e920aa7 --- /dev/null +++ b/public/locales/kr/client-selector.json @@ -0,0 +1,6 @@ +{ + "client": "고객", + "create": "생성하기:", + "new": "신규 고객", + "suggest_placeholder": "고객 검색하기" +} diff --git a/public/locales/kr/customizations-modal.json b/public/locales/kr/customizations-modal.json new file mode 100644 index 0000000..fc79674 --- /dev/null +++ b/public/locales/kr/customizations-modal.json @@ -0,0 +1,5 @@ +{ + "title": "당신의 송장을 자유롭게 제작하세요", + "textarea_label": "사용자 지정 CSS를 삽입하세요", + "updated": "수정되었습니다" +} diff --git a/public/locales/kr/empty-state.json b/public/locales/kr/empty-state.json new file mode 100644 index 0000000..88cb788 --- /dev/null +++ b/public/locales/kr/empty-state.json @@ -0,0 +1,3 @@ +{ + "content": "아직 아무것도 없습니다" +} diff --git a/public/locales/kr/import-modal.json b/public/locales/kr/import-modal.json new file mode 100644 index 0000000..9b4664c --- /dev/null +++ b/public/locales/kr/import-modal.json @@ -0,0 +1,6 @@ +{ + "title": "송장 정보 가져오기", + "warning": "현재 정보는 지워지거나 가져온 정보로 덮어쓰기 됩니다!", + "button_text": "가져오기할 정보 선택하기", + "import-error": "가져오기 불가능한 JSON 형식입니다" +} diff --git a/public/locales/kr/invoice-bank-details.json b/public/locales/kr/invoice-bank-details.json new file mode 100644 index 0000000..f5d58c6 --- /dev/null +++ b/public/locales/kr/invoice-bank-details.json @@ -0,0 +1,5 @@ +{ + "bank_name": "은행 추가하기", + "bank_account_no": "은행 세부 정보 추가하기", + "bank_account_modal_title": "은행 계좌 선택하기" +} diff --git a/public/locales/kr/invoice-client-details.json b/public/locales/kr/invoice-client-details.json new file mode 100644 index 0000000..ae470a5 --- /dev/null +++ b/public/locales/kr/invoice-client-details.json @@ -0,0 +1,8 @@ +{ + "client_address": "주소", + "client_postal_code": "우편 번호", + "client_city": "읍/면/동", + "client_county": "시/도", + "client_country": "국가", + "client_email": "고객 이메일" +} diff --git a/public/locales/kr/invoice-company-details.json b/public/locales/kr/invoice-company-details.json new file mode 100644 index 0000000..35dd0b3 --- /dev/null +++ b/public/locales/kr/invoice-company-details.json @@ -0,0 +1,9 @@ +{ + "your_company_name": "당신의 회사 이름", + "address": "주소", + "postal_code": "우편 번호", + "city": "읍/면/동", + "county": "시/도", + "country": "국가", + "your_email": "당신의 이메일" +} diff --git a/public/locales/kr/invoice-contact-details.json b/public/locales/kr/invoice-contact-details.json new file mode 100644 index 0000000..03783f8 --- /dev/null +++ b/public/locales/kr/invoice-contact-details.json @@ -0,0 +1,5 @@ +{ + "add_website": "웹사이트 추가", + "add_email": "이메일 추가", + "add_phone": "전화번호 추가" +} diff --git a/public/locales/kr/invoice-controls.json b/public/locales/kr/invoice-controls.json new file mode 100644 index 0000000..dc89a2d --- /dev/null +++ b/public/locales/kr/invoice-controls.json @@ -0,0 +1,16 @@ +{ + "back": "뒤로가기", + "book": "예약하기", + "design_and_layout": "디자인 & 레이아웃", + "compact": "여백 줄이기", + "comfortable": "여백 늘리기", + "customize": "사용자 지정하기", + "download_pdf": "PDF 다운로드", + "delete": "삭제하기", + "delete_modal": { + "title": "송장 삭제하기", + "ok_title": "삭제하기", + "cancel_title": "취소" + }, + "notification_deleted": "삭제되었습니다" +} diff --git a/public/locales/kr/invoice-form.json b/public/locales/kr/invoice-form.json new file mode 100644 index 0000000..7316572 --- /dev/null +++ b/public/locales/kr/invoice-form.json @@ -0,0 +1,3 @@ +{ + "insert_note": "기타 사항" +} diff --git a/public/locales/kr/invoice-header.json b/public/locales/kr/invoice-header.json new file mode 100644 index 0000000..0ac3dbb --- /dev/null +++ b/public/locales/kr/invoice-header.json @@ -0,0 +1,10 @@ +{ + "invoice_title": "송장 ", + "invoice_number": "번호", + "issued_at": "계약년월일: ", + "due_at": "납품기한:", + "late_fee": "연착 비용:", + "add_late_fee": "연착 비용 추가하기", + "modal_issued_at_title": "계약년월일 설정", + "modal_due_at_title": "납품기한 설정" +} diff --git a/public/locales/kr/invoice-row.json b/public/locales/kr/invoice-row.json new file mode 100644 index 0000000..2d4ced4 --- /dev/null +++ b/public/locales/kr/invoice-row.json @@ -0,0 +1,7 @@ +{ + "enter_item": "항목 입력하기", + "enter_quantity": "수량 입력하기", + "enter_unit": "단위 입력하기", + "enter_price": "가격 입력하기", + "enter_tax": "세금 입력하기" +} diff --git a/public/locales/kr/invoice-rows-header.json b/public/locales/kr/invoice-rows-header.json new file mode 100644 index 0000000..8388aff --- /dev/null +++ b/public/locales/kr/invoice-rows-header.json @@ -0,0 +1,7 @@ +{ + "item": "항목", + "quantity": "수량", + "unit": "단위", + "price": "가격", + "sum": "합계" +} diff --git a/public/locales/kr/invoice-totals.json b/public/locales/kr/invoice-totals.json new file mode 100644 index 0000000..f7ca846 --- /dev/null +++ b/public/locales/kr/invoice-totals.json @@ -0,0 +1,5 @@ +{ + "subtotal": "부분 합계", + "total": "총계", + "add_currency": "통화 추가하기" +} diff --git a/public/locales/kr/invoices-list.json b/public/locales/kr/invoices-list.json new file mode 100644 index 0000000..81933fb --- /dev/null +++ b/public/locales/kr/invoices-list.json @@ -0,0 +1,7 @@ +{ + "invoice_number": "번호", + "client": "고객", + "issued_at": "계약년월일", + "total": "총계", + "status": "상태" +} diff --git a/public/locales/kr/invoices.json b/public/locales/kr/invoices.json new file mode 100644 index 0000000..adc54f2 --- /dev/null +++ b/public/locales/kr/invoices.json @@ -0,0 +1,6 @@ +{ + "title": "송장 내역", + "new_invoice": "신규 송장", + "export": "내보내기", + "import": "가져오기" +} diff --git a/public/locales/kr/statuses.json b/public/locales/kr/statuses.json new file mode 100644 index 0000000..18125a8 --- /dev/null +++ b/public/locales/kr/statuses.json @@ -0,0 +1,9 @@ +{ + "statuses": { + "draft": "초안", + "booked": "예약됨", + "sent": "발송됨", + "paid": "결제됨", + "cancelled": "취소됨" + } +} diff --git a/public/locales/kr/team-fields.json b/public/locales/kr/team-fields.json new file mode 100644 index 0000000..7dd228f --- /dev/null +++ b/public/locales/kr/team-fields.json @@ -0,0 +1,10 @@ +{ + "label": "항목", + "field": "내용", + "delete_modal": { + "title": "항목을 삭제하시겠습니까", + "ok_title": "삭제하기", + "cancel_title": "취소" + }, + "notification_delete": "삭제되었습니다" +} diff --git a/public/locales/kr/team-form.json b/public/locales/kr/team-form.json new file mode 100644 index 0000000..c0b2f44 --- /dev/null +++ b/public/locales/kr/team-form.json @@ -0,0 +1,36 @@ +{ + "title": "당신의 회사", + "done": "완료", + "updated": "수정되었습니다", + "loading": "실행 중", + "tabs": { + "general": "일반", + "invoicing": "송장 정보", + "address": "주소", + "taxes": "세금" + }, + "general": { + "company_name": "회사 이름", + "contact_email": "이메일", + "contact_phone": "전화번호", + "website": "웹사이트" + }, + "invoicing": { + "invoice_late_fee": "연착 요금 (%)", + "invoice_due_days": "지불조건, 일", + "currency": "기본 통화" + }, + "address": { + "company_address": "회사 주소", + "company_postal_code": "우편번호", + "company_city": "읍/면/동", + "company_county": "시/도", + "company_country": "국가" + }, + "tax_modal": { + "title": "현재 송장의 세금 항목을 젚어쓰기 하시겠습니까?", + "ok_title": "덮어쓰기", + "cancel_title": "취소", + "taxes_updated": "세금 정보가 수정되었습니다" + } +} diff --git a/public/locales/kr/team-logo.json b/public/locales/kr/team-logo.json new file mode 100644 index 0000000..b7ed44a --- /dev/null +++ b/public/locales/kr/team-logo.json @@ -0,0 +1,7 @@ +{ + "modal_title": "상표(로고) 선택하기", + "button_text": "파일 가져오기", + "logo_url": "웹 URL 입력하기", + "logo_url_err": "상표 파일의 용량은 512kb 이하여야 합니다.", + "or": "혹은" +} diff --git a/public/locales/kr/team-taxes.json b/public/locales/kr/team-taxes.json new file mode 100644 index 0000000..e7cee75 --- /dev/null +++ b/public/locales/kr/team-taxes.json @@ -0,0 +1,10 @@ +{ + "label": "세금 이름", + "tax": "세금", + "delete_modal": { + "title": "세금 항목을 삭제하시겠습니까", + "ok_title": "삭제하기", + "cancel_title": "취소" + }, + "notification_deleted": "삭제되었습니다" +} diff --git a/public/locales/kr/the-footer.json b/public/locales/kr/the-footer.json new file mode 100644 index 0000000..9f75afd --- /dev/null +++ b/public/locales/kr/the-footer.json @@ -0,0 +1,9 @@ +{ + "lights-on": "밝은 배경으로 보기", + "lights-off": "어두운 배경으로 보기", + "title": "당신의 모든 정보는 서버가 아니라 당신의 브라우저에 저장되어있습니다. \n 이 응용 프로그램은 서버리스이며 오직 당신만이 당신의 정보에 접근할 수 있습니다.", + "what_about_my_data": "제 정보는 어떻게 보호받나요? ", + "made_with": "Made with", + "by": "by", + "upgrade": "업그레이드" +}