6b73abdb
wuxw
开发完成运营功能
|
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
|
export const messages = {
en: {
junkRequirement: {
search: {
title: 'Search Conditions',
classification: 'Please select classification',
publishUserName: 'Please enter publisher name',
publishUserLink: 'Please enter contact information',
state: 'Please select state'
},
list: {
title: 'Junk Information'
},
table: {
junkRequirementId: 'Code',
classification: 'Classification',
referencePrice: 'Reference Price',
publishUserName: 'Publisher',
publishUserLink: 'Contact',
state: 'State'
},
edit: {
title: 'Edit Junk',
classification: 'Classification',
context: 'Content',
referencePrice: 'Reference Price',
publishUserName: 'Publisher',
publishUserLink: 'Contact',
state: 'State',
stateRequired: 'State is required',
success: 'Review successful',
error: 'Review failed'
},
delete: {
title: 'Confirm Operation',
confirm: 'Are you sure to delete this junk?',
success: 'Delete successful',
error: 'Delete failed'
},
classification: {
furniture: 'Furniture',
appliance: 'Appliance'
},
state: {
unreviewed: 'Unreviewed',
reviewed: 'Reviewed',
reviewFailed: 'Review Failed',
completed: 'Completed'
},
fetchError: 'Failed to fetch junk requirements'
},
|
6b73abdb
wuxw
开发完成运营功能
|
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
|
},
zh: {
junkRequirement: {
search: {
title: '查询条件',
classification: '请选择类别',
publishUserName: '请输入发布人',
publishUserLink: '请输入联系方式',
state: '请选择状态'
},
list: {
title: '旧货信息'
},
table: {
junkRequirementId: '编码',
classification: '类别',
referencePrice: '参考价格',
publishUserName: '发布人',
publishUserLink: '联系方式',
state: '状态'
},
edit: {
title: '修改旧货',
classification: '类别',
context: '内容',
referencePrice: '参考价格',
publishUserName: '发布人',
publishUserLink: '联系方式',
state: '状态',
stateRequired: '状态不能为空',
success: '审核成功',
error: '审核失败'
},
delete: {
title: '请确认您的操作',
confirm: '确定删除旧货吗?',
success: '删除成功',
error: '删除失败'
},
classification: {
furniture: '家具',
appliance: '电器'
},
state: {
unreviewed: '未审核',
reviewed: '审核通过',
reviewFailed: '审核失败',
completed: '处理完成'
},
fetchError: '获取旧货需求失败'
},
|