hcApiLang.js
3.17 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
127
128
129
130
export const messages = {
en: {
hcApi: {
search: {
title: 'Search Condition',
apiId: 'apiId',
apiCode: 'apiCode',
apiName: 'apiName',
typeId: 'typeId',
seq: 'seq',
docUrl: 'docUrl',
remark: 'remark',
createTime: 'createTime',
placeholder: 'Please enter hcApi name'
},
list: {
title: 'hcApi List'
},
dialog: {
addTitle: 'Add HcApi',
editTitle: 'Edit HcApi',
delTitle: 'Delete HcApi',
cancel: 'Cancel',
confirm: 'Confirm'
},
form: {
apiId: 'apiId',
apiCode: 'apiCode',
apiName: 'apiName',
typeId: 'typeId',
seq: 'seq',
docUrl: 'docUrl',
remark: 'remark',
createTime: 'createTime',
},
table: {
apiId: 'apiId',
apiCode: 'apiCode',
apiName: 'apiName',
typeId: 'typeId',
seq: 'seq',
docUrl: 'docUrl',
remark: 'remark',
createTime: 'createTime',
},
validate: {
apiId: 'Please enter apiId',
apiCode: 'Please enter apiCode',
apiName: 'Please enter apiName',
typeId: 'Please enter typeId',
createTime: 'Please enter createTime',
},
add: {
success: 'Add HcApi success'
},
edit: {
success: 'Edit HcApi success'
},
delete: {
success: 'Delete HcApi success',
confirm: 'Are you sure to delete this hcApi?'
},
fetchError: 'Failed to fetch hcApi list'
}
},
zh: {
hcApi: {
search: {
title: '查询条件',
apiId: '接口ID',
apiCode: '接口编码',
apiName: '接口名称',
typeId: '接口类型',
seq: '顺序',
docUrl: '文档地址',
remark: '备注',
createTime: '创建时间',
placeholder: '请输入接口名称'
},
list: {
title: '接口列表'
},
dialog: {
addTitle: '添加接口',
editTitle: '编辑接口',
delTitle: '删除接口',
cancel: '取消',
confirm: '确定'
},
form: {
apiId: '接口ID',
apiCode: '接口编码',
apiName: '接口名称',
typeId: '接口类型',
seq: '顺序',
docUrl: '文档地址',
remark: '备注',
createTime: '创建时间',
},
table: {
apiId: '接口ID',
apiCode: '接口编码',
apiName: '接口名称',
typeId: '接口类型',
seq: '顺序',
docUrl: '文档地址',
remark: '备注',
createTime: '创建时间',
},
validate: {
apiId: '请输入接口ID',
apiCode: '请输入接口编码',
apiName: '请输入接口名称',
typeId: '请输入接口类型',
createTime: '请输入创建时间',
},
add: {
success: '添加接口成功'
},
edit: {
success: '编辑接口成功'
},
delete: {
success: '删除接口成功',
confirm: '确认删除该接口吗?'
},
fetchError: '获取接口列表失败'
}
}
}