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
| export default {
| messages: {
| CN: {
| Date: '日期',
| Selectthestartdate: '选择起始日期',
| Selecttheexpirydate: '选择截止日期',
| BatteryType: '电池类型',
| All: '全部',
| Properties: '属性',
| Resistance: '内阻',
| Voltage: '电压',
| Conductance: '电导',
| ConnectionBar: '连接条',
| Evaluation: '评价',
| excellent: '优',
| Good: '良',
| bad: '差',
| import: '导入',
| export: '导出',
| importmessage: '导入操作将覆盖数据库记录,确定导入吗?',
| deleteMessage: '删除后将删除数据库记录后对应的站内关联,确定删除吗?',
| TestSite: '站点',
| System: '系统',
| TestTime: '测试时间',
| CellQty: '电池节数',
| OperationSuccessfully: '操作成功',
| OperationFailed: '操作失败',
| closeMessage: '请不要关闭程序, 等待程序自动重启',
| },
| US: {
| Date: 'Date',
| Selectthestartdate: 'Select the start date',
| Selecttheexpirydate: 'Select the expiry date',
| BatteryType: 'Battery Type',
| All: 'All',
| Properties: 'Properties',
| Resistance: 'Resistance',
| Voltage: 'Voltage',
| Conductance: 'Conductance',
| ConnectionBar: 'Connection Bar',
| Evaluation: 'Evaluation',
| excellent: 'excellent',
| Good: 'Good',
| bad: 'bad',
| import: 'import',
| export: 'export',
| importmessage: 'The import operation will overwrite the database records. Are you sure to import?',
| deleteMessage: 'After deletion, the corresponding intra-site association after the database record will be deleted. Are you sure to delete it?',
| TestSite: 'Test Site',
| System: 'System',
| TestTime: 'Test Time',
| CellQty: 'Cell Qty',
| OperationSuccessfully: 'Operation Successfully',
| OperationFailed: 'Operation Failed',
| closeMessage: 'Please do not close the program and wait for the program to restart automatically',
| }
| }
| }
|
|