2021-02-27 23:08:12 +08:00
|
|
|
import { genMessage } from '../helper';
|
|
|
|
|
import antdLocale from 'ant-design-vue/es/locale/en_US';
|
|
|
|
|
|
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-11-10 22:12:10 +08:00
|
|
|
dateLocale: null,
|
|
|
|
|
dateLocaleName: 'en',
|
2021-02-27 23:08:12 +08:00
|
|
|
};
|