2021-02-27 23:08:12 +08:00
|
|
|
import { genMessage } from '../helper';
|
|
|
|
|
import antdLocale from 'ant-design-vue/es/locale/en_US';
|
2021-07-23 01:02:05 +08:00
|
|
|
// import momentLocale from 'moment/dist/locale/en-us';
|
2021-02-27 23:08:12 +08:00
|
|
|
|
2021-03-02 20:54:15 +08:00
|
|
|
const modules = import.meta.globEager('./en/**/*.ts');
|
2021-02-27 23:08:12 +08:00
|
|
|
export default {
|
|
|
|
|
message: {
|
|
|
|
|
...genMessage(modules, 'en'),
|
|
|
|
|
antdLocale,
|
|
|
|
|
},
|
2021-07-23 01:02:05 +08:00
|
|
|
momentLocale: null,
|
|
|
|
|
momentLocaleName: 'en',
|
2021-02-27 23:08:12 +08:00
|
|
|
};
|