Blame view

src/views/oa/printQuestionAnswerLang.js 874 Bytes
0bf7e6a5   wuxw   加入问卷功能代码
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
  export const messages = {
    en: {
      printQuestionAnswer: {
        table: {
          name: 'Name',
          type: 'Type',
          options: 'Options',
          selectCount: 'Select Count'
        },
        type: {
          single: 'Single Choice',
          multiple: 'Multiple Choice',
          shortAnswer: 'Short Answer'
        },
        label: {
          total: 'Total',
          submitted: 'Submitted'
        },
        unit: {
          person: 'person(s)'
        }
      }
    },
    zh: {
      printQuestionAnswer: {
        table: {
          name: '名称',
          type: '类型',
          options: '选项',
          selectCount: '选择人数'
        },
        type: {
          single: '单选',
          multiple: '多选',
          shortAnswer: '简答'
        },
        label: {
          total: '总数',
          submitted: '已提交'
        },
        unit: {
          person: '人'
        }
      }
    }
  }