🌐 Added translations to new Question Type Selection Popup
This commit is contained in:
@@ -36,38 +36,38 @@
|
|||||||
type: QuizQuestionType;
|
type: QuizQuestionType;
|
||||||
}[] = [
|
}[] = [
|
||||||
{
|
{
|
||||||
name: 'Multiple Choice',
|
name: $t('words.multiple_choice'),
|
||||||
description: '',
|
description: $t('editor.abcd_description'),
|
||||||
answers: [],
|
answers: [],
|
||||||
type: QuizQuestionType.ABCD
|
type: QuizQuestionType.ABCD
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Voting',
|
name: $t('words.voting'),
|
||||||
description: '',
|
description: $t('editor.voting_description'),
|
||||||
answers: [],
|
answers: [],
|
||||||
type: QuizQuestionType.VOTING
|
type: QuizQuestionType.VOTING
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Check Choice',
|
name: $t('words.check_choice'),
|
||||||
description: '',
|
description: $t('editor.check_choice_description'),
|
||||||
answers: [],
|
answers: [],
|
||||||
type: QuizQuestionType.CHECK
|
type: QuizQuestionType.CHECK
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Order',
|
name: $t('words.order'),
|
||||||
description: '',
|
description: $t('editor.order_description'),
|
||||||
answers: [],
|
answers: [],
|
||||||
type: QuizQuestionType.ORDER
|
type: QuizQuestionType.ORDER
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Text',
|
name: $t('words.text'),
|
||||||
description: '',
|
description: $t('editor.text_description'),
|
||||||
answers: [],
|
answers: [],
|
||||||
type: QuizQuestionType.TEXT
|
type: QuizQuestionType.TEXT
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Range',
|
name: $t('words.range'),
|
||||||
description: '',
|
description: $t('editor.range_description'),
|
||||||
answers: {
|
answers: {
|
||||||
max: 10,
|
max: 10,
|
||||||
min: 0,
|
min: 0,
|
||||||
|
|||||||
@@ -158,7 +158,7 @@
|
|||||||
"backup_code": "Backup-code",
|
"backup_code": "Backup-code",
|
||||||
"totp": "Totp",
|
"totp": "Totp",
|
||||||
"text": "Text",
|
"text": "Text",
|
||||||
"order": "order",
|
"order": "Order",
|
||||||
"results": "Results",
|
"results": "Results",
|
||||||
"note": "Note",
|
"note": "Note",
|
||||||
"player_plural": "Players",
|
"player_plural": "Players",
|
||||||
@@ -204,7 +204,13 @@
|
|||||||
"text_description": "Smaller longer text",
|
"text_description": "Smaller longer text",
|
||||||
"rectangle": "Rectangle",
|
"rectangle": "Rectangle",
|
||||||
"rectangle_description": "Just a rectangle"
|
"rectangle_description": "Just a rectangle"
|
||||||
}
|
},
|
||||||
|
"abcd_description": "Only one answer can be chosen",
|
||||||
|
"voting_description": "Answers don't add any points",
|
||||||
|
"check_choice_description": "All correct answers have to be chosen to score points",
|
||||||
|
"order_description": "Answers can be brought into the correct order",
|
||||||
|
"text_description": "Players can enter text",
|
||||||
|
"range_description": "A number-range can be selected with a slider"
|
||||||
},
|
},
|
||||||
"import_page": {
|
"import_page": {
|
||||||
"need_help": "Need help?",
|
"need_help": "Need help?",
|
||||||
|
|||||||
Reference in New Issue
Block a user