transferGoodsManageLang.js
2.55 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
export const messages = {
en: {
transferGoodsManage: {
recipient: 'Recipient',
requiredContact: 'Required, please fill in the contact',
selectRecipient: 'Select Recipient',
transferDescription: 'Transfer Description',
requiredDescription: 'Required, please fill in the transfer description',
goodsInfo: 'Goods Information',
selectGoods: 'Select Goods',
goodsName: 'Goods Name',
goodsCode: 'Goods Code',
goodsType: 'Goods Type',
isFixedGoods: 'Is Fixed Goods',
goodsStock: 'Goods Stock',
miniStock: 'Minimum Stock',
transferQuantity: 'Transfer Quantity',
remark: 'Remark',
operation: 'Operation',
remove: 'Remove',
submit: 'Submit',
selectGoodsType: 'Select Goods Type',
selectSubCategory: 'Select Sub Category',
inputGoodsName: 'Input Goods Name',
cannotTransferToSelf: 'Cannot transfer to yourself',
selectRecipientFirst: 'Please select recipient first',
fillDescriptionFirst: 'Please fill in description first',
selectGoodsFirst: 'Please select goods first',
fillQuantityFirst: 'Please fill in quantity first',
insufficientStock: 'Insufficient stock',
orgInfo: 'Organization Information',
staffInfo: 'Staff Information',
selectStaffFirst: 'Please select staff first'
}
},
zh: {
transferGoodsManage: {
recipient: '受赠人',
requiredContact: '必填,请填写联系人',
selectRecipient: '选择受赠人',
transferDescription: '转赠说明',
requiredDescription: '必填,请填写转赠说明',
goodsInfo: '物品信息',
selectGoods: '选择物品',
goodsName: '物品名称',
goodsCode: '物品编码',
goodsType: '物品类型',
isFixedGoods: '是否是固定物品',
goodsStock: '物品库存',
miniStock: '最小计量总数',
transferQuantity: '转赠数量',
remark: '备注',
operation: '操作',
remove: '移除',
submit: '提交',
selectGoodsType: '请选择物品类型',
selectSubCategory: '请选择二级分类',
inputGoodsName: '输入物品名称',
cannotTransferToSelf: '不能转赠给自己',
selectRecipientFirst: '请先选择受赠人',
fillDescriptionFirst: '请先填写转赠说明',
selectGoodsFirst: '请先选择物品',
fillQuantityFirst: '请先填写数量',
insufficientStock: '库存不足',
orgInfo: '组织信息',
staffInfo: '员工信息',
selectStaffFirst: '请先选择员工'
}
}
}