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
|
export const messages = {
en: {
printQuestionAnswerDetail: {
table: {
title: 'Title',
type: 'Type',
options: 'Options',
choices: 'Choices'
},
singleChoice: 'Single Choice',
multipleChoice: 'Multiple Choice',
shortAnswer: 'Short Answer',
total: 'Total',
submitted: 'Submitted',
people: 'people',
print: 'Print',
cancel: 'Cancel'
}
},
zh: {
printQuestionAnswerDetail: {
table: {
title: '名称',
type: '类型',
options: '选项',
choices: '选择'
},
singleChoice: '单选',
multipleChoice: '多选',
shortAnswer: '简答',
total: '总数',
submitted: '已提交',
people: '人',
print: '打印',
cancel: '取消'
}
}
}
|