reserveCatalogManageLang.js
4.78 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
export const messages = {
en: {
reserveCatalogManage: {
search: {
title: 'Search Conditions',
namePlaceholder: 'Please enter name',
typePlaceholder: 'Please select type',
typeOption1: 'Reservation Dining',
typeOption2: 'Reservation Service'
},
list: {
title: 'Reservation Catalog List'
},
table: {
type: 'Type',
type1: 'Reservation Dining',
type2: 'Reservation Service',
name: 'Name',
sort: 'Sort',
state: 'Status',
state1: 'Show',
state2: 'Hide',
createTime: 'Create Time'
},
add: {
title: 'Add Reservation Catalog',
name: 'Name',
namePlaceholder: 'Required, please enter name',
sort: 'Sort',
sortPlaceholder: 'Required, please enter sort',
type: 'Type',
typePlaceholder: 'Required, please select type',
typeOption1: 'Reservation Dining',
typeOption2: 'Reservation Service',
state: 'Status',
statePlaceholder: 'Required, please select status',
stateOption1: 'Show',
stateOption2: 'Hide',
success: 'Add successfully',
error: 'Add failed'
},
edit: {
title: 'Edit Reservation Catalog',
name: 'Name',
namePlaceholder: 'Required, please enter name',
sort: 'Sort',
sortPlaceholder: 'Required, please enter sort',
type: 'Type',
typePlaceholder: 'Required, please select type',
typeOption1: 'Reservation Dining',
typeOption2: 'Reservation Service',
state: 'Status',
statePlaceholder: 'Required, please select status',
stateOption1: 'Show',
stateOption2: 'Hide',
success: 'Edit successfully',
error: 'Edit failed'
},
delete: {
title: 'Delete Confirmation',
confirmText1: 'Are you sure to delete the reservation catalog',
confirmText2: '? This operation cannot be undone.',
success: 'Delete successfully',
error: 'Delete failed'
},
validate: {
nameRequired: 'Name is required',
nameMaxLength: 'Name cannot exceed 128 characters',
sortRequired: 'Sort is required',
sortMaxLength: 'Sort cannot exceed 12 characters',
typeRequired: 'Type is required',
stateRequired: 'Status is required',
catalogIdRequired: 'Catalog ID is required'
},
fetchError: 'Failed to fetch data'
}
},
zh: {
reserveCatalogManage: {
search: {
title: '查询条件',
namePlaceholder: '请输入名称',
typePlaceholder: '请选择类型',
typeOption1: '预约就餐',
typeOption2: '预约服务'
},
list: {
title: '预约目录列表'
},
table: {
type: '类型',
type1: '预约就餐',
type2: '预约服务',
name: '名称',
sort: '排序',
state: '状态',
state1: '展示',
state2: '不展示',
createTime: '创建时间'
},
add: {
title: '添加预约目录',
name: '名称',
namePlaceholder: '必填,请输入名称',
sort: '排序',
sortPlaceholder: '必填,请输入排序',
type: '类型',
typePlaceholder: '必填,请选择类型',
typeOption1: '预约就餐',
typeOption2: '预约服务',
state: '状态',
statePlaceholder: '必填,请选择状态',
stateOption1: '展示',
stateOption2: '不展示',
success: '添加成功',
error: '添加失败'
},
edit: {
title: '修改预约目录',
name: '名称',
namePlaceholder: '必填,请输入名称',
sort: '排序',
sortPlaceholder: '必填,请输入排序',
type: '类型',
typePlaceholder: '必填,请选择类型',
typeOption1: '预约就餐',
typeOption2: '预约服务',
state: '状态',
statePlaceholder: '必填,请选择状态',
stateOption1: '展示',
stateOption2: '不展示',
success: '修改成功',
error: '修改失败'
},
delete: {
title: '删除确认',
confirmText1: '确定要删除预约目录',
confirmText2: '?此操作不可撤销。',
success: '删除成功',
error: '删除失败'
},
validate: {
nameRequired: '名称不能为空',
nameMaxLength: '名称不能超过128个字符',
sortRequired: '排序不能为空',
sortMaxLength: '排序不能超过12个字符',
typeRequired: '类型不能为空',
stateRequired: '状态不能为空',
catalogIdRequired: '目录ID不能为空'
},
fetchError: '获取数据失败'
}
}
}