Blame view

src/views/iot/adminChargeMachineLang.js 1.55 KB
0d6fa19e   wuxw   admin加入物联网相关功能
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: {
      adminChargeMachine: {
        search: {
          title: 'Search Conditions',
          machineName: 'Please enter machine name',
          machineCode: 'Please enter machine code'
        },
        list: {
          title: 'Charge Machines'
        },
        table: {
          communityName: 'Community Name',
          machineName: 'Machine Name',
          machineCode: 'Machine Code',
          factoryName: 'Factory',
          portCount: 'Port Count',
          ruleName: 'Charge Rule',
          chargeTypeName: 'Charge Type',
          stateName: 'Status',
          heartbeatTime: 'Heartbeat Time',
          monitorName: 'Monitor'
        },
        allCommunities: 'All Communities',
        fetchError: 'Failed to fetch charge machines',
        fetchCommunityError: 'Failed to fetch communities'
      }
    },
    zh: {
      adminChargeMachine: {
        search: {
          title: '查询条件',
          machineName: '请输入设备名称',
          machineCode: '请输入设备编号'
        },
        list: {
          title: '充电桩列表'
        },
        table: {
          communityName: '小区名称',
          machineName: '设备名称',
          machineCode: '设备编号',
          factoryName: '厂家',
          portCount: '插槽/桩个数',
          ruleName: '充电规则',
          chargeTypeName: '充电类型',
          stateName: '状态',
          heartbeatTime: '心跳时间',
          monitorName: '监控'
        },
        allCommunities: '全部小区',
        fetchError: '获取充电桩列表失败',
        fetchCommunityError: '获取小区列表失败'
      }
    }
  }