🌐 Added translations to new Question Type Selection Popup

This commit is contained in:
Mawoka
2023-06-17 13:43:26 +02:00
parent cc7d3a489b
commit 77cdfc701a
2 changed files with 20 additions and 14 deletions
@@ -36,38 +36,38 @@
type: QuizQuestionType;
}[] = [
{
name: 'Multiple Choice',
description: '',
name: $t('words.multiple_choice'),
description: $t('editor.abcd_description'),
answers: [],
type: QuizQuestionType.ABCD
},
{
name: 'Voting',
description: '',
name: $t('words.voting'),
description: $t('editor.voting_description'),
answers: [],
type: QuizQuestionType.VOTING
},
{
name: 'Check Choice',
description: '',
name: $t('words.check_choice'),
description: $t('editor.check_choice_description'),
answers: [],
type: QuizQuestionType.CHECK
},
{
name: 'Order',
description: '',
name: $t('words.order'),
description: $t('editor.order_description'),
answers: [],
type: QuizQuestionType.ORDER
},
{
name: 'Text',
description: '',
name: $t('words.text'),
description: $t('editor.text_description'),
answers: [],
type: QuizQuestionType.TEXT
},
{
name: 'Range',
description: '',
name: $t('words.range'),
description: $t('editor.range_description'),
answers: {
max: 10,
min: 0,