adminEquipmentLang.js
1.69 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
export const messages = {
en: {
adminEquipment: {
search: {
title: 'Search Conditions',
machineName: 'Machine Name',
machineCode: 'Machine Code',
state: 'Select Status',
importanceLevel: 'Select Importance Level'
},
table: {
machineName: 'Machine Name',
machineCode: 'Machine Code',
brand: 'Machine Brand',
model: 'Machine Model',
locationDetail: 'Location Detail',
firstEnableTime: 'First Enable Time',
warrantyDeadline: 'Warranty Deadline',
usefulLife: 'Useful Life',
levelName: 'Importance Level',
stateName: 'Status',
purchasePrice: 'Purchase Price',
netWorth: 'Net Worth'
},
statusTip: 'Equipment status is divided into: in use, disabled, etc.',
fetchError: 'Failed to fetch equipment list'
}
},
zh: {
adminEquipment: {
search: {
title: '查询条件',
machineName: '设备名称',
machineCode: '设备编码',
state: '请选择状态',
importanceLevel: '请选择重要等级'
},
table: {
machineName: '设备名称',
machineCode: '设备编码',
brand: '设备品牌',
model: '设备型号',
locationDetail: '位置详情',
firstEnableTime: '首次启用时间',
warrantyDeadline: '保修截止日期',
usefulLife: '使用年限',
levelName: '重要等级',
stateName: '使用状态',
purchasePrice: '采购价格',
netWorth: '资产净值'
},
statusTip: '设备状态分为:使用中,停用中 等状态',
fetchError: '获取设备列表失败'
}
}
}