productSjLang.js
1.17 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
export const messages = {
en: {
productSj: {
search: {
title: 'Search Conditions',
prodName: 'Please enter product name'
},
list: {
title: 'Shelved Products',
today: 'Today',
all: 'All Shelved'
},
table: {
productId: 'Product ID',
coverPhoto: 'Product Image',
categoryName: 'Product Category',
prodName: 'Product Name',
sales: 'Sales',
stock: 'Stock',
price: 'Price',
sort: 'Sort',
state: 'Status'
},
fetchError: 'Failed to fetch product list'
}
},
zh: {
productSj: {
search: {
title: '查询条件',
prodName: '请输入商品名称'
},
list: {
title: '上架商品',
today: '今日上架',
all: '所有上架'
},
table: {
productId: '商品ID',
coverPhoto: '商品图片',
categoryName: '商品分组',
prodName: '商品名称',
sales: '销量',
stock: '库存',
price: '价格',
sort: '排序',
state: '状态'
},
fetchError: '获取商品列表失败'
}
}
}