New Huajishe Check ChaoXing
This commit is contained in:
174
HuajisheCheckChaoXing/miniprogram_npm/tdesign-miniprogram/date-time-picker/locale/dayjs.d.ts
vendored
Normal file
174
HuajisheCheckChaoXing/miniprogram_npm/tdesign-miniprogram/date-time-picker/locale/dayjs.d.ts
vendored
Normal file
@@ -0,0 +1,174 @@
|
||||
import enLocale from 'dayjs/locale/en';
|
||||
declare const _default: {
|
||||
default: {
|
||||
key: string;
|
||||
label: string;
|
||||
locale: enLocale.Locale;
|
||||
i18n: {
|
||||
year: string;
|
||||
month: string;
|
||||
date: string;
|
||||
hour: string;
|
||||
minute: string;
|
||||
second: string;
|
||||
am: string;
|
||||
pm: string;
|
||||
confirm: string;
|
||||
cancel: string;
|
||||
};
|
||||
};
|
||||
en: {
|
||||
key: string;
|
||||
label: string;
|
||||
locale: enLocale.Locale;
|
||||
i18n: {
|
||||
year: string;
|
||||
month: string;
|
||||
date: string;
|
||||
hour: string;
|
||||
minute: string;
|
||||
second: string;
|
||||
am: string;
|
||||
pm: string;
|
||||
confirm: string;
|
||||
cancel: string;
|
||||
};
|
||||
};
|
||||
'zh-cn': {
|
||||
key: string;
|
||||
label: string;
|
||||
locale: enLocale.Locale;
|
||||
i18n: {
|
||||
year: string;
|
||||
month: string;
|
||||
date: string;
|
||||
hour: string;
|
||||
minute: string;
|
||||
second: string;
|
||||
am: string;
|
||||
pm: string;
|
||||
confirm: string;
|
||||
cancel: string;
|
||||
};
|
||||
};
|
||||
zh: {
|
||||
key: string;
|
||||
label: string;
|
||||
locale: enLocale.Locale;
|
||||
i18n: {
|
||||
year: string;
|
||||
month: string;
|
||||
date: string;
|
||||
hour: string;
|
||||
minute: string;
|
||||
second: string;
|
||||
am: string;
|
||||
pm: string;
|
||||
confirm: string;
|
||||
cancel: string;
|
||||
};
|
||||
};
|
||||
'zh-tw': {
|
||||
key: string;
|
||||
label: string;
|
||||
locale: enLocale.Locale;
|
||||
i18n: {
|
||||
year: string;
|
||||
month: string;
|
||||
date: string;
|
||||
hour: string;
|
||||
minute: string;
|
||||
second: string;
|
||||
am: string;
|
||||
pm: string;
|
||||
confirm: string;
|
||||
cancel: string;
|
||||
};
|
||||
};
|
||||
tc: {
|
||||
key: string;
|
||||
label: string;
|
||||
locale: enLocale.Locale;
|
||||
i18n: {
|
||||
year: string;
|
||||
month: string;
|
||||
date: string;
|
||||
hour: string;
|
||||
minute: string;
|
||||
second: string;
|
||||
am: string;
|
||||
pm: string;
|
||||
confirm: string;
|
||||
cancel: string;
|
||||
};
|
||||
};
|
||||
ko: {
|
||||
key: string;
|
||||
label: string;
|
||||
locale: enLocale.Locale;
|
||||
i18n: {
|
||||
year: string;
|
||||
month: string;
|
||||
date: string;
|
||||
hour: string;
|
||||
minute: string;
|
||||
second: string;
|
||||
am: string;
|
||||
pm: string;
|
||||
confirm: string;
|
||||
cancel: string;
|
||||
};
|
||||
};
|
||||
kr: {
|
||||
key: string;
|
||||
label: string;
|
||||
locale: enLocale.Locale;
|
||||
i18n: {
|
||||
year: string;
|
||||
month: string;
|
||||
date: string;
|
||||
hour: string;
|
||||
minute: string;
|
||||
second: string;
|
||||
am: string;
|
||||
pm: string;
|
||||
confirm: string;
|
||||
cancel: string;
|
||||
};
|
||||
};
|
||||
ja: {
|
||||
key: string;
|
||||
label: string;
|
||||
locale: enLocale.Locale;
|
||||
i18n: {
|
||||
year: string;
|
||||
month: string;
|
||||
date: string;
|
||||
hour: string;
|
||||
minute: string;
|
||||
second: string;
|
||||
am: string;
|
||||
pm: string;
|
||||
confirm: string;
|
||||
cancel: string;
|
||||
};
|
||||
};
|
||||
ru: {
|
||||
key: string;
|
||||
label: string;
|
||||
locale: enLocale.Locale;
|
||||
i18n: {
|
||||
year: string;
|
||||
month: string;
|
||||
date: string;
|
||||
hour: string;
|
||||
minute: string;
|
||||
second: string;
|
||||
am: string;
|
||||
pm: string;
|
||||
confirm: string;
|
||||
cancel: string;
|
||||
};
|
||||
};
|
||||
};
|
||||
export default _default;
|
||||
@@ -0,0 +1,74 @@
|
||||
import enLocale from 'dayjs/locale/en';
|
||||
import zhLocale from 'dayjs/locale/zh-cn';
|
||||
import tcLocale from 'dayjs/locale/zh-tw';
|
||||
import koLocale from 'dayjs/locale/ko';
|
||||
import jaLocale from 'dayjs/locale/ja';
|
||||
import ruLocale from 'dayjs/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,
|
||||
},
|
||||
};
|
||||
13
HuajisheCheckChaoXing/miniprogram_npm/tdesign-miniprogram/date-time-picker/locale/en.d.ts
vendored
Normal file
13
HuajisheCheckChaoXing/miniprogram_npm/tdesign-miniprogram/date-time-picker/locale/en.d.ts
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
declare const _default: {
|
||||
year: string;
|
||||
month: string;
|
||||
date: string;
|
||||
hour: string;
|
||||
minute: string;
|
||||
second: string;
|
||||
am: string;
|
||||
pm: string;
|
||||
confirm: string;
|
||||
cancel: string;
|
||||
};
|
||||
export default _default;
|
||||
@@ -0,0 +1,12 @@
|
||||
export default {
|
||||
year: '',
|
||||
month: '',
|
||||
date: '',
|
||||
hour: '',
|
||||
minute: '',
|
||||
second: '',
|
||||
am: 'AM',
|
||||
pm: 'PM',
|
||||
confirm: 'confirm',
|
||||
cancel: 'cancel',
|
||||
};
|
||||
13
HuajisheCheckChaoXing/miniprogram_npm/tdesign-miniprogram/date-time-picker/locale/ja.d.ts
vendored
Normal file
13
HuajisheCheckChaoXing/miniprogram_npm/tdesign-miniprogram/date-time-picker/locale/ja.d.ts
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
declare const _default: {
|
||||
year: string;
|
||||
month: string;
|
||||
date: string;
|
||||
hour: string;
|
||||
minute: string;
|
||||
second: string;
|
||||
am: string;
|
||||
pm: string;
|
||||
confirm: string;
|
||||
cancel: string;
|
||||
};
|
||||
export default _default;
|
||||
@@ -0,0 +1,12 @@
|
||||
export default {
|
||||
year: '年',
|
||||
month: '月',
|
||||
date: '日',
|
||||
hour: '時',
|
||||
minute: '分',
|
||||
second: '秒',
|
||||
am: '午前',
|
||||
pm: '午後',
|
||||
confirm: '確認',
|
||||
cancel: 'キャンセル',
|
||||
};
|
||||
13
HuajisheCheckChaoXing/miniprogram_npm/tdesign-miniprogram/date-time-picker/locale/ko.d.ts
vendored
Normal file
13
HuajisheCheckChaoXing/miniprogram_npm/tdesign-miniprogram/date-time-picker/locale/ko.d.ts
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
declare const _default: {
|
||||
year: string;
|
||||
month: string;
|
||||
date: string;
|
||||
hour: string;
|
||||
minute: string;
|
||||
second: string;
|
||||
am: string;
|
||||
pm: string;
|
||||
confirm: string;
|
||||
cancel: string;
|
||||
};
|
||||
export default _default;
|
||||
@@ -0,0 +1,12 @@
|
||||
export default {
|
||||
year: '년',
|
||||
month: '월',
|
||||
date: '일',
|
||||
hour: '시',
|
||||
minute: '분',
|
||||
second: '초',
|
||||
am: '오전',
|
||||
pm: '오후',
|
||||
confirm: '확인',
|
||||
cancel: '취소',
|
||||
};
|
||||
13
HuajisheCheckChaoXing/miniprogram_npm/tdesign-miniprogram/date-time-picker/locale/ru.d.ts
vendored
Normal file
13
HuajisheCheckChaoXing/miniprogram_npm/tdesign-miniprogram/date-time-picker/locale/ru.d.ts
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
declare const _default: {
|
||||
year: string;
|
||||
month: string;
|
||||
date: string;
|
||||
hour: string;
|
||||
minute: string;
|
||||
second: string;
|
||||
am: string;
|
||||
pm: string;
|
||||
confirm: string;
|
||||
cancel: string;
|
||||
};
|
||||
export default _default;
|
||||
@@ -0,0 +1,12 @@
|
||||
export default {
|
||||
year: '',
|
||||
month: '',
|
||||
date: '',
|
||||
hour: '',
|
||||
minute: '',
|
||||
second: '',
|
||||
am: 'до полудня',
|
||||
pm: 'после полудня',
|
||||
confirm: 'подтвердить',
|
||||
cancel: 'отменить',
|
||||
};
|
||||
13
HuajisheCheckChaoXing/miniprogram_npm/tdesign-miniprogram/date-time-picker/locale/tc.d.ts
vendored
Normal file
13
HuajisheCheckChaoXing/miniprogram_npm/tdesign-miniprogram/date-time-picker/locale/tc.d.ts
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
declare const _default: {
|
||||
year: string;
|
||||
month: string;
|
||||
date: string;
|
||||
hour: string;
|
||||
minute: string;
|
||||
second: string;
|
||||
am: string;
|
||||
pm: string;
|
||||
confirm: string;
|
||||
cancel: string;
|
||||
};
|
||||
export default _default;
|
||||
@@ -0,0 +1,12 @@
|
||||
export default {
|
||||
year: '年',
|
||||
month: '月',
|
||||
date: '日',
|
||||
hour: '時',
|
||||
minute: '分',
|
||||
second: '秒',
|
||||
am: '上午',
|
||||
pm: '下午',
|
||||
confirm: '確定',
|
||||
cancel: '取消',
|
||||
};
|
||||
13
HuajisheCheckChaoXing/miniprogram_npm/tdesign-miniprogram/date-time-picker/locale/zh.d.ts
vendored
Normal file
13
HuajisheCheckChaoXing/miniprogram_npm/tdesign-miniprogram/date-time-picker/locale/zh.d.ts
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
declare const _default: {
|
||||
year: string;
|
||||
month: string;
|
||||
date: string;
|
||||
hour: string;
|
||||
minute: string;
|
||||
second: string;
|
||||
am: string;
|
||||
pm: string;
|
||||
confirm: string;
|
||||
cancel: string;
|
||||
};
|
||||
export default _default;
|
||||
@@ -0,0 +1,12 @@
|
||||
export default {
|
||||
year: '年',
|
||||
month: '月',
|
||||
date: '日',
|
||||
hour: '时',
|
||||
minute: '分',
|
||||
second: '秒',
|
||||
am: '上午',
|
||||
pm: '下午',
|
||||
confirm: '确定',
|
||||
cancel: '取消',
|
||||
};
|
||||
Reference in New Issue
Block a user