devServiceProvideLang.js
3.05 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
export const messages = {
en: {
devServiceProvide: {
prevStep: 'Previous',
nextStep: 'Next',
finish: 'Finish',
stepTitles: ['Select Service', 'Develop Service', 'Remark Info']
},
viewServiceInfo: {
title: 'Service Info',
selectService: 'Select Service',
addService: 'Add Service',
serviceId: 'Service ID',
name: 'Service Name',
serviceCode: 'Service Code',
messageQueue: 'Message Queue',
isInstance: 'Is Instance',
url: 'URL',
method: 'Method',
timeout: 'Timeout',
retryCount: 'Retry Count'
},
addService: {
title: 'Add Service',
name: 'Service Name',
serviceCode: 'Service Code',
url: 'URL',
method: 'Method',
timeout: 'Timeout',
retryCount: 'Retry Count',
save: 'Save',
cancel: 'Cancel',
required: 'Required'
},
chooseService: {
title: 'Choose Service',
search: 'Search',
name: 'Service Name',
serviceCode: 'Service Code',
method: 'Method',
operation: 'Operation',
select: 'Select'
},
devServiceProvideView: {
title: 'Develop Service',
implMethod: 'Implementation Method',
params: 'Parameters',
sql: 'SQL',
template: 'Output Template',
proc: 'Procedure',
javaScript: 'JavaScript',
required: 'Required',
optional: 'Optional'
},
serviceProvideRemarkView: {
title: 'Service Provide Remark',
description: 'Description',
optional: 'Optional'
}
},
zh: {
devServiceProvide: {
prevStep: '上一步',
nextStep: '下一步',
finish: '完成',
stepTitles: ['选择服务', '开发服务实现', '备注信息']
},
viewServiceInfo: {
title: '服务信息',
selectService: '选择服务',
addService: '添加服务',
serviceId: '服务ID',
name: '服务名称',
serviceCode: '服务编码',
messageQueue: '消息队列',
isInstance: '是否实例',
url: '调用地址',
method: '调用方式',
timeout: '超时时间',
retryCount: '重试次数'
},
addService: {
title: '添加服务',
name: '服务名称',
serviceCode: '服务编码',
url: '调用地址',
method: '调用方式',
timeout: '超时时间',
retryCount: '重试次数',
save: '保存',
cancel: '取消',
required: '必填'
},
chooseService: {
title: '选择服务',
search: '查询',
name: '服务名称',
serviceCode: '服务编码',
method: '调用方式',
operation: '操作',
select: '选择'
},
devServiceProvideView: {
title: '开发服务',
implMethod: '实现方式',
params: '参数',
sql: 'SQL',
template: '输出模板',
proc: '存储过程',
javaScript: 'JavaScript',
required: '必填',
optional: '选填'
},
serviceProvideRemarkView: {
title: '开发服务提供',
description: '描述',
optional: '选填'
}
}
}