assetInventoryAuditLang.js
1.61 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
export const messages = {
en: {
assetInventoryAudit: {
inventoryInfo: 'Inventory Information',
inventoryProducts: 'Inventory Products',
auditOpinion: 'Audit Opinion',
inventoryName: 'Inventory Name',
inventoryPerson: 'Inventory Person',
warehouse: 'Warehouse',
inventoryDate: 'Inventory Date',
remark: 'Remark',
productType: 'Product Type',
productName: 'Product Name',
specification: 'Specification',
productCode: 'Product Code',
isFixed: 'Is Fixed',
referencePrice: 'Reference Price',
originalStock: 'Original Stock',
afterInventory: 'After Inventory',
opinionPlaceholder: 'Required, please enter audit opinion',
opinionRequired: 'Audit opinion cannot be empty',
approve: 'Approve',
reject: 'Reject'
}
},
zh: {
assetInventoryAudit: {
inventoryInfo: '盘点信息',
inventoryProducts: '盘点商品',
auditOpinion: '审核意见',
inventoryName: '盘点名称',
inventoryPerson: '盘点人',
warehouse: '选择仓库',
inventoryDate: '盘点日期',
remark: '盘点说明',
productType: '物品类型',
productName: '物品名称',
specification: '物品规格',
productCode: '物品编码',
isFixed: '是否是固定物品',
referencePrice: '参考价格',
originalStock: '原有库存',
afterInventory: '盘点后数量',
opinionPlaceholder: '必填,请输入审核意见',
opinionRequired: '审核意见不能为空',
approve: '审核通过',
reject: '审核不通过'
}
}
}