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
| export default {
| messages: {
| CN: {
| Region: "区域",
| Pleaseenterthetestsitename: "请输入站点名称",
| System: "系统",
| Pleaseenterthesystemname: "请输入系统名称",
| BatteryBrand: "电池品牌",
| Pleaseenterthebatterybrand: "请输入电池品牌",
| BatteryModel: "电池型号",
| Pleaseenterthebatterymodel: "请输入电池型号",
| BatteryType: "电池类型",
| Pleaseenterthebatterytype: "请输入电池类型",
| CellQty: "电池数量(节)",
| Pleaseenterthecellquantity: "请输入电池数量",
| RatedCapacity: "标称容量",
| Pleaseentertheratedcapacity: "请输入标称容量",
| ReferenceResistance: "参考内阻",
| Pleaseenterthereferenceresistance: "请输入参考内阻",
| ConnectionBar: "连接条",
| InstallationTime: "安装时间",
| Pleaseselecttheinstallationtime: "请选择安装时间",
| AppearanceMark: "外观标记",
| noabnormalities: "无异常",
| Excessiveinternalresistance: "内阻超标",
| Good: "良好",
| Bulging: "鼓包",
| Leaking: "漏液",
| Cracking: "开裂",
| Exit: "退出",
| Pleaseentertheconnectionbarreferenceresistance: "请输入连接条参考电阻",
| Thereexistsunverifieddata: "存在校验未通过的数据!",
| },
| US: {
| Region: "Region",
| Pleaseenterthetestsitename: "Please enter the test site name",
| System: "System",
| Pleaseenterthesystemname: "Please enter the system name",
| BatteryBrand: "Battery Brand",
| Pleaseenterthebatterybrand: "Please enter the battery brand",
| BatteryModel: "Battery Model",
| Pleaseenterthebatterymodel: "Please enter the battery model",
| BatteryType: "Battery Type",
| Pleaseenterthebatterytype: "Please enter the battery type",
| CellQty: "Cell Qty",
| Pleaseenterthecellquantity: "Please enter the cell quantity",
| RatedCapacity: "Rated Capacity",
| Pleaseentertheratedcapacity: "Please enter the rated capacity",
| ReferenceResistance: "Reference Resistance",
| Pleaseenterthereferenceresistance: "Please enter the reference resistance",
| ConnectionBar: "Connection Bar",
| InstallationTime: "Installation Time",
| Pleaseselecttheinstallationtime: "Please select the installation time",
| AppearanceMark: "Appearance Mark",
| noabnormalities: "no abnormalities",
| Excessiveinternalresistance: "Excessive internal resistance",
| Good: "Good",
| Bulging: "Bulging",
| Leaking: "Leaking",
| Cracking: "Cracking",
| Exit: "Exit",
| Pleaseentertheconnectionbarreferenceresistance: "Please enter the connection bar reference resistance",
| Thereexistsunverifieddata: "There exists unverified data!",
| },
| },
| };
|
|