Blame view

src/views/log/mqttLogLang.js 1.17 KB
a42b3256   wuxw   HC小区管理系统前段vue版正在开发中
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
  export const messages = {
      en: {
        mqttLog: {
          search: {
            title: 'Search Conditions',
            startTime: 'Start Time',
            endTime: 'End Time',
            startTimePlaceholder: 'Select start time',
            endTimePlaceholder: 'Select end time'
          },
          list: {
            title: 'MQTT Log'
          },
          table: {
            id: 'ID',
            businessId: 'Business ID',
            business: 'Business',
            topic: 'Topic',
            content: 'Content',
            remark: 'Remark'
          },
          fetchError: 'Failed to fetch MQTT logs'
        },
      },
      zh: {
        mqttLog: {
          search: {
            title: '查询条件',
            startTime: '开始时间',
            endTime: '结束时间',
            startTimePlaceholder: '请选择开始时间',
            endTimePlaceholder: '请选择结束时间'
          },
          list: {
            title: 'MQTT日志'
          },
          table: {
            id: '编号',
            businessId: '业务ID',
            business: '业务',
            topic: 'Topic',
            content: '内容',
            remark: '备注'
          },
          fetchError: '获取MQTT日志失败'
        }
      }
    }