marketGoodsItemManageLang.js
989 Bytes
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
export const messages = {
en: {
marketGoodsItem: {
search: {
title: 'Search Conditions',
prodName: 'Please enter product name'
},
list: {
title: 'Marketing Products'
},
table: {
picUrl: 'Image',
prodName: 'Product Name',
prodDesc: 'Product Description',
picLink: 'Access URL',
price: 'Price',
shopName: 'Shop Name',
sort: 'Sort'
},
fetchError: 'Failed to get marketing products'
}
},
zh: {
marketGoodsItem: {
search: {
title: '查询条件',
prodName: '请输入商品名称'
},
list: {
title: '营销商品'
},
table: {
picUrl: '图片',
prodName: '商品名称',
prodDesc: '商品简介',
picLink: '访问地址',
price: '金额',
shopName: '商铺名称',
sort: '排序'
},
fetchError: '获取营销商品失败'
}
}
}