businessDatabusLang.js
3.33 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
export const messages = {
en: {
businessDatabus: {
search: {
title: 'Search Condition',
databusName: 'databusName',
businessTypeCd: 'businessTypeCd',
beanName: 'beanName',
seq: 'seq',
state: 'state',
createTime: 'createTime',
placeholder: 'Please enter businessDatabus name'
},
list: {
title: 'businessDatabus List'
},
dialog: {
addTitle: 'Add BusinessDatabus',
editTitle: 'Edit BusinessDatabus',
delTitle: 'Delete BusinessDatabus',
cancel: 'Cancel',
confirm: 'Confirm'
},
form: {
databusId: 'databusId',
databusName: 'databusName',
businessTypeCd: 'businessTypeCd',
beanName: 'beanName',
seq: 'seq',
state: 'state',
createTime: 'createTime',
},
table: {
databusId: 'databusId',
databusName: 'databusName',
businessTypeCd: 'businessTypeCd',
beanName: 'beanName',
seq: 'seq',
state: 'state',
createTime: 'createTime',
},
validate: {
databusId: 'Please enter databusId',
databusName: 'Please enter databusName',
businessTypeCd: 'Please enter businessTypeCd',
beanName: 'Please enter beanName',
seq: 'Please enter seq',
state: 'Please enter state',
createTime: 'Please enter createTime',
},
add: {
success: 'Add BusinessDatabus success'
},
edit: {
success: 'Edit BusinessDatabus success'
},
delete: {
success: 'Delete BusinessDatabus success',
confirm: 'Are you sure to delete this businessDatabus?'
},
fetchError: 'Failed to fetch businessDatabus list'
}
},
zh: {
businessDatabus: {
search: {
title: '查询条件',
databusName: '名称',
businessTypeCd: '业务类型',
beanName: '适配器',
seq: '顺序',
state: '状态',
createTime: '创建时间',
placeholder: '请输入Databus名称'
},
list: {
title: 'Databus'
},
dialog: {
addTitle: '添加Databus',
editTitle: '编辑Databus',
delTitle: '删除Databus',
cancel: '取消',
confirm: '确定'
},
form: {
databusId: '编号',
databusName: '名称',
businessTypeCd: '业务类型',
beanName: '适配器',
seq: '顺序',
state: '状态',
createTime: '创建时间',
},
table: {
databusId: '编号',
databusName: '名称',
businessTypeCd: '业务类型',
beanName: '适配器',
seq: '顺序',
state: '状态',
createTime: '创建时间',
},
validate: {
databusId: '请输入编号',
databusName: '请输入名称',
businessTypeCd: '请输入业务类型',
beanName: '请输入适配器',
seq: '请输入顺序',
state: '状态',
createTime: '请输入创建时间',
},
add: {
success: '添加Databus成功'
},
edit: {
success: '编辑Databus成功'
},
delete: {
success: '删除Databus成功',
confirm: '确认删除该Databus吗?'
},
fetchError: '获取Databus列表失败'
}
}
}