first commit

This commit is contained in:
lingxiao865
2026-02-10 08:05:03 +08:00
commit c5af079d8c
1094 changed files with 97530 additions and 0 deletions

View File

@@ -0,0 +1,81 @@
// dayjs 语言包
import * as enLocale from '../../npm/dayjs/esm/locale/en';
import * as zhLocale from '../../npm/dayjs/esm/locale/zh-cn';
import * as tcLocale from '../../npm/dayjs/esm/locale/zh-tw'; // 繁体
import * as koLocale from '../../npm/dayjs/esm/locale/ko'; // 韩语
import * as jaLocale from '../../npm/dayjs/esm/locale/ja'; // 日语
import * as ruLocale from '../../npm/dayjs/esm/locale/ru'; // 俄语
// 本地语言包
import en from './en';
import zh from './zh';
import tc from './tc';
import ko from './ko';
import ja from './ja';
import ru from './ru';
export default {
default: {
key: 'zh-cn',
label: '简体中文',
locale: zhLocale,
i18n: zh,
},
en: {
key: 'en',
label: 'English',
locale: enLocale,
i18n: en,
},
'zh-cn': {
key: 'zh-cn',
label: '简体中文',
locale: zhLocale,
i18n: zh,
},
// 容错处理
zh: {
key: 'zh-cn',
label: '简体中文',
locale: zhLocale,
i18n: zh,
},
'zh-tw': {
key: 'zh-tw',
label: '繁体中文',
locale: tcLocale,
i18n: tc,
},
// 容错处理
tc: {
key: 'zh-tw',
label: '繁体中文',
locale: tcLocale,
i18n: tc,
},
ko: {
key: 'ko',
label: '한국어',
locale: koLocale,
i18n: ko,
},
// 容错处理
kr: {
key: 'ko',
label: '한국어',
locale: koLocale,
i18n: ko,
},
ja: {
key: 'ja',
label: '日本語',
locale: jaLocale,
i18n: ja,
},
ru: {
key: 'ru',
label: 'русский',
locale: ruLocale,
i18n: ru,
},
};

View File

@@ -0,0 +1,12 @@
export default {
year: '',
month: '',
date: '',
hour: '',
minute: '',
second: '',
am: 'AM',
pm: 'PM',
confirm: 'confirm',
cancel: 'cancel',
};

View File

@@ -0,0 +1,12 @@
export default {
year: '年',
month: '月',
date: '日',
hour: '時',
minute: '分',
second: '秒',
am: '午前',
pm: '午後',
confirm: '確認',
cancel: 'キャンセル',
};

View File

@@ -0,0 +1,12 @@
export default {
year: '년',
month: '월',
date: '일',
hour: '시',
minute: '분',
second: '초',
am: '오전',
pm: '오후',
confirm: '확인',
cancel: '취소',
};

View File

@@ -0,0 +1,12 @@
export default {
year: '',
month: '',
date: '',
hour: '',
minute: '',
second: '',
am: 'до полудня',
pm: 'после полудня',
confirm: 'подтвердить',
cancel: 'отменить',
};

View File

@@ -0,0 +1,12 @@
export default {
year: '年',
month: '月',
date: '日',
hour: '時',
minute: '分',
second: '秒',
am: '上午',
pm: '下午',
confirm: '確定',
cancel: '取消',
};

View File

@@ -0,0 +1,12 @@
export default {
year: '年',
month: '月',
date: '日',
hour: '时',
minute: '分',
second: '秒',
am: '上午',
pm: '下午',
confirm: '确定',
cancel: '取消',
};