From a52538c7c5f4615938c71802eb8d2f9e83b68cca Mon Sep 17 00:00:00 2001 From: ssmyaojiayouya <2861884324@qq.com> Date: Tue, 12 Mar 2024 15:59:05 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20feat:=20=E5=9B=BD=E9=99=85=E5=8C=96?= =?UTF-8?q?=E6=96=B0=E5=A2=9E=E9=9F=A9=E8=AF=ADko?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit feat #1251 --- src/locale/ko.ts | 76 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 src/locale/ko.ts diff --git a/src/locale/ko.ts b/src/locale/ko.ts new file mode 100644 index 000000000..a3626e29d --- /dev/null +++ b/src/locale/ko.ts @@ -0,0 +1,76 @@ +// 文件有效,为国际化做准备 +import 'dayjs/locale/ko'; + +export default { + actionSheet: { + cancel: '취소', + }, + calendar: { + confirm: '확인', + title: '날짜 선택', + weekdays: ['일', '월', '화', '수', '목', '금', '토'], + monthTitle: '{month} {year}', + months: ['1월', '2월', '3월', '4월', '5월', '6월', '7월', '8월', '9월', '10월', '11월', '12월'], + }, + cascader: { + title: '제목', + placeholder: '옵션 선택', + }, + dropdownMenu: { + reset: '초기화', + confirm: '확인', + }, + dateTimePicker: { + title: '날짜 선택', + cancel: '취소', + confirm: '확인', + format: 'YYYY-MM-DD', + yearLabel: '년', + monthLabel: '월', + dateLabel: '일', + hourLabel: '시', + minuteLabel: '분', + secondLabel: '초', + }, + picker: { + cancel: '취소', + confirm: '확인', + }, + pullDownRefresh: { + loadingTexts: ['새로고침을 당겨주세요', '느슨하게 하여 새로 고침', '새로고침 중...', '새로고침 완료'], + }, + rate: { + valueText: '{value}점', + noValueText: '점수 없음', + }, + tabBar: { + newsAriaLabel: '새 뉴스가 있습니다', + moreNewsAriaLabel: '많은 뉴스가 있습니다', + haveMoreNewsAriaLabel: '{value}+건의 뉴스가 있습니다', + haveNewsAriaLabel: '{value}건의 뉴스가 있습니다', + }, + table: { + empty: '빈 데이터', + }, + list: { + loading: '로딩 중...', + loadingMoreText: '더 많은 것을 보시려면 클릭하세요', + pulling: '새로고침을 당겨주세요...', + loosing: '느슨하게 하여 새로 고침...', + success: '새로고침 성공', + }, + upload: { + progress: { + uploadingText: '업로드 중...', + waitingText: '대기 중', + failText: '실패했습니다', + successText: '성공했습니다', + }, + }, + guide: { + next: '다음', + skip: '건너뛰기', + finish: '완료', + back: '뒤로', + }, +};