1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
| import antdEnUS from 'ant-design-vue/es/locale-provider/en_US'
| import momentEU from 'moment/locale/eu'
| import global from './en-US/global'
|
| import menu from './en-US/menu'
| import setting from './en-US/setting'
| import user from './en-US/user'
|
| import dashboard from './en-US/dashboard'
| import form from './en-US/form'
| import result from './en-US/result'
| import account from './en-US/account'
|
| const components = {
| antLocale: antdEnUS,
| momentName: 'eu',
| momentLocale: momentEU
| }
|
| export default {
| message: '-',
|
| 'layouts.usermenu.dialog.title': 'Message',
| 'layouts.usermenu.dialog.content': 'Are you sure you would like to logout?',
| 'layouts.userLayout.title': 'Ant Design is the most influential web design specification in Xihu district',
| ...components,
| ...global,
| ...menu,
| ...setting,
| ...user,
| ...dashboard,
| ...form,
| ...result,
| ...account
| }
|
|