storehouseManageLang.js
2.09 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
export const messages = {
en: {
storehouseManage: {
searchTitle: 'Query Conditions',
listTitle: 'Warehouse Information',
placeholders: {
shName: 'Please enter warehouse name',
shId: 'Please enter warehouse ID',
isShow: 'Please select whether it is open to the public'
},
options: {
all: 'All',
yes: 'Yes',
no: 'No',
noAudit: 'No audit'
},
buttons: {
search: 'Search',
reset: 'Reset',
add: 'Add',
edit: 'Edit',
delete: 'Delete',
detail: 'Details'
},
table: {
shId: 'Warehouse ID',
shName: 'Warehouse Name',
isShow: 'Open to Public',
allowPurchase: 'Allow Purchase',
allowUse: 'Allow Use',
purchaseSwitch: 'Purchase Audit',
useSwitch: 'Use Audit',
allocationSwitch: 'Allocation Audit',
createTime: 'Creation Time',
shDesc: 'Description',
operations: 'Operations'
},
messages: {
fetchError: 'Failed to fetch warehouse data'
}
}
},
zh: {
storehouseManage: {
searchTitle: '查询条件',
listTitle: '仓库信息',
placeholders: {
shName: '请输入仓库名称',
shId: '请输入仓库编号',
isShow: '请选择是否对外开放'
},
options: {
all: '全部',
yes: '是',
no: '否',
noAudit: '不审核'
},
buttons: {
search: '查询',
reset: '重置',
add: '添加',
edit: '修改',
delete: '删除',
detail: '详情'
},
table: {
shId: '仓库编号',
shName: '仓库名称',
isShow: '对外开放',
allowPurchase: '允许采购',
allowUse: '允许领用',
purchaseSwitch: '采购审核',
useSwitch: '领用审核',
allocationSwitch: '调拨审核',
createTime: '创建时间',
shDesc: '描述',
operations: '操作'
},
messages: {
fetchError: '获取仓库数据失败'
}
}
}
}