Compare commits

..

1 Commits

Author SHA1 Message Date
Thomas 182aa5b67e
Revert "Max score" 2018-06-26 15:08:07 +02:00
48 changed files with 1685 additions and 5352 deletions

View File

@ -247,9 +247,3 @@
.h5p-no-frame .questionset .h5p-question > *:last-child {
margin-bottom: 0;
}
/* Hide the fullscreen button rendered by H5P.DragQuestion */
.questionset .h5p-question.h5p-dragquestion .h5p-my-fullscreen-button-enter,
.questionset .h5p-question.h5p-dragquestion .h5p-my-fullscreen-button-exit {
display: none;
}

View File

@ -35,7 +35,6 @@ H5P.QuestionSet = function (options, contentId, contentData) {
prevButton: 'Previous question',
nextButton: 'Next question',
finishButton: 'Finish',
submitButton: 'Submit',
textualProgress: 'Question: @current of @total questions',
jumpToQuestion: 'Question %d of %total',
questionLabel: 'Question',
@ -56,19 +55,15 @@ H5P.QuestionSet = function (options, contentId, contentData) {
},
overallFeedback: [],
finishButtonText: 'Finish',
submitButtonText: 'Submit',
solutionButtonText: 'Show solution',
retryButtonText: 'Retry',
showAnimations: false,
skipButtonText: 'Skip video',
showSolutionButton: true,
showRetryButton: true
showSolutionButton: true
},
override: {},
disableBackwardsNavigation: false
};
this.isSubmitting = contentData
&& (contentData.isScoringEnabled || contentData.isReportingEnabled);
var params = $.extend(true, {}, defaults, options);
var texttemplate =
@ -113,12 +108,8 @@ H5P.QuestionSet = function (options, contentId, contentData) {
'</div>';
var solutionButtonTemplate = params.endGame.showSolutionButton ?
' <button type="button" class="h5p-joubelui-button h5p-button qs-solutionbutton"><%= solutionButtonText %></button>':
'';
const retryButtonTemplate = params.endGame.showRetryButton ?
' <button type="button" class="h5p-joubelui-button h5p-button qs-retrybutton"><%= retryButtonText %></button>':
'';
' <button type="button" class="h5p-joubelui-button h5p-button qs-solutionbutton"><%= solutionButtonText %></button>':
'';
var resulttemplate =
'<div class="questionset-results">' +
@ -135,7 +126,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
' <% } %>' +
' <div class="buttons">' +
solutionButtonTemplate +
retryButtonTemplate +
' <button type="button" class="h5p-joubelui-button h5p-button qs-retrybutton"><%= retryButtonText %></button>' +
' </div>' +
'</div>';
@ -170,9 +161,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
var randomizeQuestionOrdering = function (questions) {
// Save the original order of the questions in a multidimensional array [[question0,0],[question1,1]...
var questionOrdering = questions.map(function (questionInstance, index) {
return [questionInstance, index];
});
var questionOrdering = questions.map(function (questionInstance, index) { return [questionInstance, index]; });
// Shuffle the multidimensional array
questionOrdering = H5P.shuffleArray(questionOrdering);
@ -354,7 +343,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
questionInstances[currentQuestion].hideButton('finish');
}
}
};
};
var _stopQuestion = function (questionNumber) {
if (questionInstances[questionNumber]) {
@ -474,7 +463,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
questionInstances[i].showSolutions();
questionInstances[i].toggleReadSpeaker(false);
}
catch (error) {
catch(error) {
H5P.error("subcontent does not contain a valid showSolutions function");
H5P.error(error);
}
@ -500,7 +489,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
* Used for contracts with integrated content.
* @public
*/
this.resetTask = function () {
var resetTask = function () {
// Clear previous state to ensure questions are created cleanly
contentData.previousState = [];
@ -526,7 +515,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
questionInstances[i].hideButton('prev');
}
}
catch (error) {
catch(error) {
H5P.error("subcontent does not contain a valid resetTask function");
H5P.error(error);
}
@ -564,8 +553,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
// Update buttons
initializeQuestion();
}
else if (params.randomQuestions) {
} else if (params.randomQuestions) {
randomizeQuestions();
}
@ -754,7 +742,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
message: params.endGame.showResultPage ? params.endGame.message : params.endGame.noResultMessage,
comment: params.endGame.showResultPage ? (success ? params.endGame.oldFeedback.successGreeting : params.endGame.oldFeedback.failGreeting) : undefined,
resulttext: params.endGame.showResultPage ? (success ? params.endGame.oldFeedback.successComment : params.endGame.oldFeedback.failComment) : undefined,
finishButtonText: (self.isSubmitting) ? params.endGame.submitButtonText : params.endGame.finishButtonText,
finishButtonText: params.endGame.finishButtonText,
solutionButtonText: params.endGame.solutionButtonText,
retryButtonText: params.endGame.retryButtonText
};
@ -770,7 +758,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
_showQuestion(params.initialQuestion);
});
hookUpButton('.qs-retrybutton', function () {
self.resetTask();
resetTask();
$myDom.children().hide();
var $intro = $('.intro-page', $myDom);
@ -800,7 +788,6 @@ H5P.QuestionSet = function (options, contentId, contentData) {
eparams.comment + '.' +
eparams.resulttext)
.show().focus();
scoreBar.setMaxScore(totals);
scoreBar.setScore(finals);
}, 0);
}
@ -877,8 +864,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
registerImageLoadedListener(question);
// Add finish button
const finishButtonText = (self.isSubmitting) ? params.texts.submitButton : params.endGame.finishButton
question.addButton('finish', finishButtonText,
question.addButton('finish', params.texts.finishButton,
moveQuestion.bind(this, 1), false);
// Add next button
@ -979,7 +965,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
$('.questionset', $myDom).show();
_showQuestion(params.initialQuestion);
event.preventDefault();
}
}
});
/**
@ -1097,8 +1083,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
var questionCopyrights;
for (var i = 0; i < questionInstances.length; i++) {
var instance = questionInstances[i];
var instanceParams = params.questions[i].params;
var qParams = params.questions[i].params;
questionCopyrights = undefined;
if (instance.getCopyrights !== undefined) {
@ -1108,16 +1093,13 @@ H5P.QuestionSet = function (options, contentId, contentData) {
if (questionCopyrights === undefined) {
// Create a generic flat copyright list
questionCopyrights = new H5P.ContentCopyrights();
H5P.findCopyrights(questionCopyrights, instanceParams.params, contentId,{
metadata: instanceParams.metadata,
machineName: instanceParams.library.split(' ')[0]
});
H5P.findCopyrights(questionCopyrights, qParams, contentId);
}
// Determine label
var label = (params.texts.questionLabel + ' ' + (i + 1));
if (instanceParams.params.contentName !== undefined) {
label += ': ' + instanceParams.params.contentName;
if (qParams.contentName !== undefined) {
label += ': ' + qParams.contentName;
}
else if (instance.getTitle !== undefined) {
label += ': ' + instance.getTitle();
@ -1245,18 +1227,6 @@ H5P.QuestionSet = function (options, contentId, contentData) {
children: getXAPIDataFromChildren(this)
};
};
/**
* Get context data.
* Contract used for confusion report.
*/
this.getContext = function () {
// Get question index and add 1, count starts from 0
return {
type: 'question',
value: (currentQuestion + 1)
};
};
};
H5P.QuestionSet.prototype = Object.create(H5P.EventDispatcher.prototype);

View File

@ -75,10 +75,6 @@
"label": "Finish button",
"default": "Finish"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "Progress text",
"description": "Text used if textual progress is selected.",
@ -133,9 +129,6 @@
{
"label": "Display solution button"
},
{
"label": "Display retry button"
},
{
"label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled",
@ -208,10 +201,6 @@
"label": "Finish button text",
"default": "Finish"
},
{
"label": "Submit button text",
"default": "Submit"
},
{
"label": "Display video before quiz results"
},
@ -228,7 +217,7 @@
},
{
"label": "Fail video",
"description": "This video will be played if the user fails the quiz."
"description": "This video will be played if the user failes the quiz."
}
]
},
@ -266,4 +255,4 @@
]
}
]
}
}

View File

@ -1,172 +1,165 @@
{
"semantics": [
{
"label": "Vasvra inleiding",
"label": "Quiz introduction",
"fields": [
{
"label": "Vertoon inleiding"
"label": "Display introduction"
},
{
"label": "Titel",
"description": "Hierdie titel sal bo die inleidende teks vertoon word."
"label": "Title",
"description": "This title will be displayed above the introduction text."
},
{
"label": "Inleidende teks",
"description": "Hierdie teks sal vertoon word voor die vasvra begin."
"label": "Introduction text",
"description": "This text will be displayed before the quiz starts."
},
{
"label": "Beginknoppie teks",
"default": "Begin vasvra"
"label": "Start button text",
"default": "Start Quiz"
},
{
"label": "Agtergrondprent",
"description": "'n Opsionele agtergrondprent vir die inleiding."
"label": "Background image",
"description": "An optional background image for the introduction."
}
]
},
{
"label": "Agtergrondprent",
"description": "'n Vrywillige agtergrondprent vir die vraagstel."
"label": "Background image",
"description": "An optional background image for the Question set."
},
{
"label": "Vorderingaanwyser",
"description": "Vraagstel vorderingaanwyser styl.",
"label": "Progress indicator",
"description": "Question set progress indicator style.",
"options": [
{
"label": "Tekstueel"
"label": "Textual"
},
{
"label": "Kolletjies"
"label": "Dots"
}
]
},
{
"label": "Slaag persentasie",
"description": "Persentasie van totale telling wat vereis word om vasvra te slaag."
"label": "Pass percentage",
"description": "Percentage of Total score required for passing the quiz."
},
{
"label": "Vrae",
"label": "Questions",
"widgets": [
{
"label": "Verstek"
"label": "Default"
},
{
"label": "Tekstueel"
"label": "Textual"
}
],
"entity": "vraag",
"entity": "question",
"field": {
"label": "Vraagtipe",
"description": "Biblioteek vir hierdie vraag."
"label": "Question type",
"description": "Library for this question."
}
},
{
"label": "Koppelvlaktekste in vasvra",
"label": "Interface texts in quiz",
"fields": [
{
"label": "Terug knoppie",
"default": "Vorige vraag"
"label": "Back button",
"default": "Previous question"
},
{
"label": "Volgende knoppie",
"default": "Volgende vraag"
"label": "Next button",
"default": "Next question"
},
{
"label": "Klaar knoppie",
"default": "Klaar"
"label": "Finish button",
"default": "Finish"
},
{
"label": "Submit button",
"default": "Submit"
"label": "Progress text",
"description": "Text used if textual progress is selected.",
"default": "Question: @current of @total questions"
},
{
"label": "Vordering teks",
"description": "Teks gebruik indien tektuele vordering gekies is.",
"default": "Vraag: @current van @total vrae"
"label": "Label for jumping to a certain question",
"description": "You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
"default": "Question %d of %total"
},
{
"label": "Etiket om te spring tot 'n bepaalde vraag",
"description": "Jy moet die plekhouer '%d' in stede van die vraagnommer, en %total in stede van die totale aantal vrae gebruik.",
"default": "Vraag %d van %total"
"label": "Copyright dialog question label",
"default": "Question"
},
{
"label": "Kopiereg dialoog vraagetiket",
"default": "Vraag"
"label": "Readspeaker progress",
"description": "May use @current and @total question variables",
"default": "Question @current of @total"
},
{
"label": "Spreekleser vordering",
"description": "Mag @current en @total vraagveranderlikes gebruik",
"default": "Vraag @current uit @total"
"label": "Unanswered question text",
"default": "Unanswered"
},
{
"label": "Onbeantwoorde vraagteks",
"default": "Onbeantwoord"
"label": "Answered question text",
"default": "Answered"
},
{
"label": "Beantwoorde vraagteks",
"default": "Beantwoord"
},
{
"label": "Huidige vraagteks",
"default": "Huidige vraag"
"label": "Current question text",
"default": "Current question"
}
]
},
{
"label": "Verbied agteruitnavigasie",
"description": "Hierdie keuse laat jou slegs toe om vorentoe te beweeg met die vraagstel"
"label": "Disable backwards navigation",
"description": "This option will only allow you to move forward in Question Set"
},
{
"label": "Skommel vrae",
"description": "Aktiveer ewekansige orde van vrae op vooraansig."
"label": "Randomize questions",
"description": "Enable to randomize the order of questions on display."
},
{
"label": "Aantal vrae om te wys:",
"description": "Skep 'n ewekansige bondel vrae uit die somtotaal."
"label": "Number of questions to be shown:",
"description": "Create a randomized batch of questions from the total."
},
{
"label": "Vasvra klaar",
"label": "Quiz finished",
"fields": [
{
"label": "Vertoon uitslae"
"label": "Display results"
},
{
"label": "Vertoon oplossing knoppie"
"label": "Display solution button"
},
{
"label": "Vertoon probeer weer knoppie"
"label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled",
"default": "Finished"
},
{
"label": "Geen uitslae boodskap",
"description": "Teks word op die eindblad vertoon wanneer 'Vertoonresultate' gedeaktiveer is",
"default": "Klaar"
"label": "Feedback heading",
"default": "Your result:",
"description": "This heading will be displayed at the end of the quiz when the user has answered all questions."
},
{
"label": "Terugvoer opskrif",
"default": "Jou uitslae:",
"description": "Hierdie opskrif sal aan die einde van die vasvra vertoon wanneer die gebruiker al die vrae beantwoord het."
},
{
"label": "Algehele terugvoer",
"label": "Overall Feedback",
"fields": [
{
"widgets": [
{
"label": "Verstek"
"label": "Default"
}
],
"label": "Bepaal verstekterugvoer vir enige reeks tellings",
"description": "Voorbeeld: 0-20% Swak telling, 21-91% Gemiddelde telling, 91-100% Uitstekende telling!",
"entity": "reeks",
"label": "Define custom feedback for any score range",
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
"entity": "range",
"field": {
"fields": [
{
"label": "Telreeks"
"label": "Score Range"
},
{},
{
"label": "Terugvoer vir gedefinieerde telreeks",
"placeholder": "Vul die terugvoer in"
"label": "Feedback for defined score range",
"placeholder": "Fill in the feedback"
}
]
}
@ -174,96 +167,92 @@
]
},
{
"label": "Ou terugvoer",
"label": "Old Feedback",
"fields": [
{
"label": "Vasvra geslaag begroeting",
"description": "Hierdie teks sal bo die telling vertoon word sodra die gebruiker die vasvra suksesvol geslaag het."
"label": "Quiz passed greeting",
"description": "This text will be displayed above the score if the user has successfully passed the quiz."
},
{
"label": "Geslaag kommentaar",
"description": "Hierdie opmerking sal na die telling vertoon word as die gebruiker die vasvra suksesvol geslaag het."
"label": "Passed comment",
"description": "This comment will be displayed after the score if the user has successfully passed the quiz."
},
{
"label": "Vasvra misluk titel",
"description": "Hierdie teks sal bo die telling vertoon word as die gebruiker nie die vasvra het nie."
"label": "Quiz failed title",
"description": "This text will be displayed above the score if the user has failed the quiz."
},
{
"label": "Gedruip kommentaar",
"description": "Hierdie opmerking sal na die telling vertoon word as die gebruiker die vasvra gedruip het."
"label": "Failed comment",
"description": "This comment will be displayed after the score if the user has failed the quiz."
}
]
},
{
"label": "Antwoord knoppie-etiket",
"default": "Wys antwoord",
"description": "Teks vir die antwoord knoppie."
"label": "Solution button label",
"default": "Show solution",
"description": "Text for the solution button."
},
{
"label": "Probeer weer knoppie etiket",
"default": "Probeer weer",
"description": "Teks vir die probeer weer knoppie."
"label": "Retry button label",
"default": "Retry",
"description": "Text for the retry button."
},
{
"label": "Klaar knoppieteks",
"default": "Klaar"
"label": "Finish button text",
"default": "Finish"
},
{
"label": "Submit button text",
"default": "Submit"
"label": "Display video before quiz results"
},
{
"label": "Vertoon video voor vasvra uitslae"
"label": "Enable skip video button"
},
{
"label": "Aktiveer slaan video oor knoppie"
"label": "Skip video button label",
"default": "Skip video"
},
{
"label": "Slaan video oor etiket",
"default": "Slaan video oor"
"label": "Passed video",
"description": "This video will be played if the user successfully passed the quiz."
},
{
"label": "Video geslaag",
"description": "Hierdie video sal gespeel word indien die gebruiker die vasvra geslaag het."
},
{
"label": "Druip video",
"description": "Hierdie video sal gespeel word indien die gebruiker die vasvra gedruip het."
"label": "Fail video",
"description": "This video will be played if the user failes the quiz."
}
]
},
{
"label": "Instellings vir die \"Wys antwoord\" en \"Probeer weer\" knoppies",
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
"fields": [
{
"label": "Wys \"Toets\" knoppies",
"description": "Hierdie opsie bepaal of die \"Toets\" knoppie vir alle vrae gewys sal word."
"label": "Show \"Check\" buttons",
"description": "This option determines if the \"Check\" button will be shown for all questions."
},
{
"label": "Oorskry \"Wys oplossing\" knoppie",
"description": "Hierdie opsie bepaal of die \"Wys antwoord\" -knoppie vir alle vrae getoon word, vir almal uitgeskakel of afsonderlik vir elke vraag ingestel word.",
"label": "Override \"Show Solution\" button",
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
"options": [
{
"label": "Aktiveer"
"label": "Enabled"
},
{
"label": "Deaktiveer"
"label": "Disabled"
}
]
},
{
"label": "Oorskry \"Probeer weer\" knoppie",
"description": "Hierdie opsie bepaal of die \"Probeer weer\" -knoppie vir alle vrae getoon word, vir almal uitgeskakel of afsonderlik vir elke vraag ingestel word.",
"label": "Override \"Retry\" button",
"description": "This option determines if the \"Retry\" button will be shown for all questions, disabled for all or configured for each question individually.",
"options": [
{
"label": "Aktiveer"
"label": "Enabled"
},
{
"label": "Deaktiveer"
"label": "Disabled"
}
]
}
]
}
]
}
}

View File

@ -75,10 +75,6 @@
"label": "زر الانتهاء",
"default": "Finish"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "نص التقدم",
"description": "النص المستخدم إذا تم تحديد التقدم نصيا",
@ -133,9 +129,6 @@
{
"label": "Display solution button"
},
{
"label": "Display retry button"
},
{
"label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled",
@ -208,10 +201,6 @@
"label": "نص زر الانتهاء",
"default": "Finish"
},
{
"label": "Submit button text",
"default": "Submit"
},
{
"label": "عرض الفيديو قبل نتائج المسابقة"
},

View File

@ -1,269 +0,0 @@
{
"semantics": [
{
"label": "Въведение в теста",
"fields": [
{
"label": "Показване на въведение"
},
{
"label": "Заглавие",
"description": "Това заглавие ще се показва над въвеждащия текст."
},
{
"label": "Въвеждащ текст",
"description": "Този текст ще се показва преди началото на теста."
},
{
"label": "Текст на бутона за начало",
"default": "Начало на теста"
},
{
"label": "Фоново изображение",
"description": "Незадължително фоново изображение за въведението."
}
]
},
{
"label": "Фоново изображение",
"description": "Незадължително фоново изображение за въпросите."
},
{
"label": "Индикатор на напредъка",
"description": "Стил за индикатор на напредъка.",
"options": [
{
"label": "Текстов"
},
{
"label": "Точки"
}
]
},
{
"label": "Процент за успешно преминаване",
"description": "Процент от Общия брой точки за успешно решение на теста."
},
{
"label": "Въпроси",
"widgets": [
{
"label": "По подразбиране"
},
{
"label": "Текстов"
}
],
"entity": "въпрос",
"field": {
"label": "Тип въпрос",
"description": "Бибилиотека за този въпрос."
}
},
{
"label": "Текстове в теста",
"fields": [
{
"label": "Назад",
"default": "Предишен въпрос"
},
{
"label": "Напред",
"default": "Следващ въпрос"
},
{
"label": "Бутон Край",
"default": "Край"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "Текст за напредък",
"description": "Текст, който се използва в случай, че е избран да се показва напредъка.",
"default": "Въпрос: @current от @total въпроси"
},
{
"label": "Етикет за преминаване към определен въпрос",
"description": "Трябва да използвате '%d' вместо номер на въпрос и %total вместо общ брой въпроси.",
"default": "Въпрос %d от %total"
},
{
"label": "Етикет за диалогов прозорец Copyright",
"default": "Въпрос"
},
{
"label": "Readspeaker напредък",
"description": "Може да използвате променливи @current и @total за въпросите",
"default": "Въпрос @current от @total"
},
{
"label": "Текст за нерешен въпрос",
"default": "Не е даден отговор"
},
{
"label": "Текст за решен въпрос",
"default": "Даден е отговор"
},
{
"label": "Текст за настоящ въпрос",
"default": "Настоящ въпрос"
}
]
},
{
"label": "Деактивиране на придвижването назад",
"description": "Тази настройка позволява придвижването само напред в теста"
},
{
"label": "Разбъркване на въпросите",
"description": "Позволява разбъркването на въпросите при показване."
},
{
"label": "Брой въпроси, които да бъдат показани:",
"description": "Създава група от произволно подбрани въпроси."
},
{
"label": "Край на теста",
"fields": [
{
"label": "Покажи резултати"
},
{
"label": "Бутон Покажи решение"
},
{
"label": "Display retry button"
},
{
"label": "Няма съобщение за резултати",
"description": "Текст, който ще се показва на последната страница, когато \"Покажи резултати\" не е активирано",
"default": "Завършен"
},
{
"label": "Заглавие за обратна връзка",
"default": "Вашият резултат:",
"description": "Това заглавие ще се показва накрая на теста, когато ученикът е отговорил на всички въпроси."
},
{
"label": "Обща обратна връзка",
"fields": [
{
"widgets": [
{
"label": "По подразбиране"
}
],
"label": "Персонална обратна връзка за всеки диапазон от точки",
"description": "Пример: 0-20% Слаб резултат, 21-91% Среден резултат, 91-100% Отличен резултат!",
"entity": "диапазон",
"field": {
"fields": [
{
"label": "Диапазон на резултата"
},
{},
{
"label": "Обратна връзка за дефиниран диапазон на резултата",
"placeholder": "Въведете обратна връзка"
}
]
}
}
]
},
{
"label": "Стара обратна връзка",
"fields": [
{
"label": "Поздравления за успешно решен тест",
"description": "Този текст ще се показва над резултата, когато ученикът реши теста успешно."
},
{
"label": "Коментар за успешно решен тест",
"description": "Този коментар ще се показва след резултата, когато ученикът реши теста успешно."
},
{
"label": "Заглавие за неуспешно решен тест",
"description": "Този текст ще се показва над резултата, когато ученикът не се справи с теста."
},
{
"label": "Коментар за неуспешно решен тест",
"description": "Този коментар ще се показва след резултата, когато ученикът не се справи с теста."
}
]
},
{
"label": "Етикет за бутон Покажи решение",
"default": "Покажи решение",
"description": "Текст за бутон Покажи решение."
},
{
"label": "Етикет за бутон Опитай пак",
"default": "Опитай пак",
"description": "Текст за бутон Опитай пак."
},
{
"label": "Текст за бутон Край",
"default": "Край"
},
{
"label": "Submit button text",
"default": "Submit"
},
{
"label": "Показване на видео преди резултатите от теста"
},
{
"label": "Разреши бутон Пропусни видеото"
},
{
"label": "Етикет за бутон Пропусни видеото",
"default": "Пропусни видеото"
},
{
"label": "Видео при успех",
"description": "Това видео ще се покаже, когато ученикът премине теста успешно."
},
{
"label": "Видео при неуспех",
"description": "Това видео ще се покаже, когато ученикът НЕ премине теста успешно."
}
]
},
{
"label": "Настройки за бутони \"Покажи решение\" и \"Опитай пак\" ",
"fields": [
{
"label": "Покажи бутони \"Провери\" ",
"description": "Тази настройка определя дали бутон \"Провери\" да се показва за всички въпроси."
},
{
"label": "Отмяна на бутон \"Покажи решение\" ",
"description": "Тази настройка определя дали бутон \"Покажи решение\" да се показва за всички въпроси, да не се показва за всички или да се настройва индивидуално за всеки въпрос.",
"options": [
{
"label": "Активирано"
},
{
"label": "Деактивирано"
}
]
},
{
"label": "Отмяна на бутон \"Опитай пак\" ",
"description": "Тази настройка определя дали бутон \"Опитай пак\" да се показва за всички въпроси, да не се показва за всички или да се настройва индивидуално за всеки въпрос.",
"options": [
{
"label": "Активирано"
},
{
"label": "Деактивирано"
}
]
}
]
}
]
}

View File

@ -65,20 +65,16 @@
"fields": [
{
"label": "Oznaka za dugme \"Nazad\"",
"default": "Nazad"
"default": "Zurück"
},
{
"label": "Oznaka za dugme \"Naprijed\"",
"default": "Dalje"
"default": "Weiter"
},
{
"label": "Oznaka za dugme \"Završi\"",
"default": "Kraj"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "Početni tekst",
"description": "Koristi tekst ako je izabran za napredak u pisanom obliku.",
@ -133,9 +129,6 @@
{
"label": "Napomena ako nema rezultata"
},
{
"label": "Prikaži dugme ponavljanja"
},
{
"label": "Oznaka za povratne informacije",
"description": "Ovaj tekst će biti prikazan na kraju kviza kada korisnik odgovori na pitanja.",
@ -152,21 +145,21 @@
{
"widgets": [
{
"label": "Standardno"
"label": "Default"
}
],
"label": "Definiraj standardni feedback za bilo koji rezultat",
"description": "Primjer: 0-20% Loše, 21-91% Dobro, 91-100% Odlično!",
"label": "Define custom feedback for any score range",
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
"entity": "range",
"field": {
"fields": [
{
"label": "Rezultat"
"label": "Score Range"
},
{},
{
"label": "Feedback za definirani rezultat",
"placeholder": "Unesi feedback"
"label": "Feedback for defined score range",
"placeholder": "Fill in the feedback"
}
]
}
@ -174,7 +167,7 @@
]
},
{
"label": "Stari Feedback",
"label": "Old Feedback",
"fields": [
{
"label": "Komentar za uspješno završen kviz",
@ -202,16 +195,12 @@
{
"label": "Oznaka za dugme \"Završi\"",
"default": "Ponovi",
"description": "Tekst za dugme ponovi."
"description": "Text for the retry button."
},
{
"label": "Prikaži video prije rezultata kviza",
"default": "Kraj"
},
{
"label": "Submit button text",
"default": "Submit"
},
{
"label": "Aktiviraj dugme \"Preskoči vidio\""
},
@ -220,15 +209,15 @@
},
{
"label": "Video nakon položenog kviza",
"default": "Preskoči video"
"default": "Skip video"
},
{
"label": "Video nakon nepoloženog kviza",
"description": "Ovaj video se prikazuje nakon što korisnik neuspješno završi kviz."
},
{
"label": "Video nakon neuspjeha",
"description": "Ovaj video će biti prikazan ako korisnik nije uspješno riješio kviz."
"label": "Fail video",
"description": "This video will be played if the user failes the quiz."
}
]
},
@ -236,8 +225,8 @@
"label": "Podešavanje dugmeta \"Prikaži rješenje\" i \"Ponovi\".",
"fields": [
{
"label": "Prikaži \"Provjeri\" dgme",
"description": "Ova opcija pokazuje da li će dugme \"Provjeri\" biti prikazano za sva pitanja."
"label": "Show \"Check\" buttons",
"description": "This option determines if the \"Check\" button will be shown for all questions."
},
{
"label": "Poništi dugme \"Prikaži rješenje\"",
@ -266,4 +255,4 @@
]
}
]
}
}

View File

@ -1,172 +1,165 @@
{
"semantics": [
{
"label": "Introducció al qüestionari",
"label": "Quiz introduction",
"fields": [
{
"label": "Mostra la introdució"
"label": "Display introduction"
},
{
"label": "Títol",
"description": "Aquest títol es mostrarà a sobre del text dintroducció."
"label": "Title",
"description": "This title will be displayed above the introduction text."
},
{
"label": "Text dintroducció",
"description": "Aquest text es mostrarà abans de començar el qüestionari."
"label": "Text d'introducció",
"description": "This text will be displayed before the quiz starts."
},
{
"label": "Text del botó \"Inicia\"",
"default": "Inicia el qüestionari"
"label": "Start button text",
"default": "Start Quiz"
},
{
"label": "Imatge de fons",
"description": "Una imatge de fons opcional per a la introducció."
"description": "An optional background image for the introduction."
}
]
},
{
"label": "Imatge de fons",
"description": "Imatge de fons opcional per al conjunt de preguntes."
"description": "An optional background image for the Question set."
},
{
"label": "Indicador de progrés",
"description": "Estil de lindicador de progrés del conjunt de preguntes.",
"label": "Progress indicator",
"description": "Question set progress indicator style.",
"options": [
{
"label": "Textual"
},
{
"label": "Punts"
"label": "Dots"
}
]
},
{
"label": "Percentatge per aprovar el qüestionari",
"description": "Percentatge de la puntuació total requerida per aprovar el qüestionari."
"label": "Percentatge per passar",
"description": "Percentage of Total score required for passing the quiz."
},
{
"label": "Preguntes",
"label": "Questions",
"widgets": [
{
"label": "Opció predeterminada"
"label": "Per defecte"
},
{
"label": "Textual"
}
],
"entity": "pregunta",
"entity": "question",
"field": {
"label": "Tipus de pregunta",
"description": "Biblioteca per a aquesta pregunta."
"label": "Question type",
"description": "Library for this question."
}
},
{
"label": "Textos de la interfície al qüestionari",
"label": "Interface texts in quiz",
"fields": [
{
"label": "Botó \"Enrere\"",
"default": "Pregunta anterior"
"label": "Back button",
"default": "Previous question"
},
{
"label": "Botó següent",
"default": "Pregunta següent"
"label": "Next button",
"default": "Next question"
},
{
"label": "Botó \"Finalitza\"",
"default": "Finalitza"
"label": "Finish button",
"default": "Acabar"
},
{
"label": "Submit button",
"default": "Submit"
"label": "Progress text",
"description": "Text used if textual progress is selected.",
"default": "Question: @current of @total questions"
},
{
"label": "Text del progrés",
"description": "Text que sutilitza si se selecciona el progrés textual.",
"default": "Pregunta: @current de @total"
"label": "Label for jumping to a certain question",
"description": "You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
"default": "Question %d of %total"
},
{
"label": "Etiqueta per saltar a una pregunta concreta",
"description": "Heu dutilitzar lespai reservat \"%d\" en lloc del número de pregunta i %total en lloc del nombre de preguntes total.",
"default": "Pregunta %d del %total"
},
{
"label": "Etiqueta de la pregunta del quadre de diàleg de drets dautor",
"label": "Copyright dialog question label",
"default": "Pregunta"
},
{
"label": "Progrés de laltaveu de lectura",
"description": "Pot utilitzar variables de pregunta @current i @total",
"default": "Pregunta @current de @total"
"label": "Readspeaker progress",
"description": "May use @current and @total question variables",
"default": "Question @current of @total"
},
{
"label": "Text de la pregunta sense respondre",
"default": "No sha respost"
"label": "Unanswered question text",
"default": "Unanswered"
},
{
"label": "Text de la pregunta resposta",
"default": "Respost"
"label": "Answered question text",
"default": "Answered"
},
{
"label": "Text de la pregunta actual",
"default": "Pregunta actual"
"label": "Current question text",
"default": "Current question"
}
]
},
{
"label": "Desactiva la possibilitat de navegar enrere",
"description": "Aquesta opció només us permetrà avançar pel conjunt de preguntes"
"label": "Disable backwards navigation",
"description": "This option will only allow you to move forward in Question Set"
},
{
"label": "Distribueix les preguntes aleatòriament",
"description": "Permeteu que les preguntes es distribueixin aleatòriament a la pantalla."
"label": "Randomize questions",
"description": "Enable to randomize the order of questions on display."
},
{
"label": "Nombre de preguntes a mostrar:",
"description": "Creeu un conjunt aleatori de preguntes extret del total de preguntes."
"label": "Number of questions to be shown:",
"description": "Create a randomized batch of questions from the total."
},
{
"label": "El qüestionari ha finalitzat",
"label": "Quiz finished",
"fields": [
{
"label": "Mostra els resultats"
"label": "Display results"
},
{
"label": "Mostra el botó \"Solució\""
"label": "Display solution button"
},
{
"label": "Mostra el botó per tornar-ho a provar"
"label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled",
"default": "Finished"
},
{
"label": "Missatge \"Sense resultats\"",
"description": "Text que es mostra a lúltima pàgina quan lopció \"Mostra els resultats\" està desactivada",
"default": "Finalitzat"
"label": "Feedback heading",
"default": "Your result:",
"description": "This heading will be displayed at the end of the quiz when the user has answered all questions."
},
{
"label": "Encapçalament de la retroacció",
"default": "El seu resultat:",
"description": "Aquest títol es mostrarà al final del qüestionari quan lusuari hagi respost a totes les preguntes."
},
{
"label": "Suggeriment general",
"label": "Overall Feedback",
"fields": [
{
"widgets": [
{
"label": "Opció predeterminada"
"label": "Default"
}
],
"label": "Defineix una valoració per cada rang de puntuació",
"description": "Exemple: 0-20% per a puntuació baixa, 21-91% per a puntuació mitjana, 91-100% per a puntuació excel·lent",
"entity": "rang",
"label": "Define custom feedback for any score range",
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
"entity": "range",
"field": {
"fields": [
{
"label": "Rang de puntuació"
"label": "Score Range"
},
{},
{
"label": "Suggeriment per al rang de puntuació definit",
"placeholder": "Introduïu el suggeriment"
"label": "Feedback for defined score range",
"placeholder": "Fill in the feedback"
}
]
}
@ -174,96 +167,92 @@
]
},
{
"label": "Suggeriments antics",
"label": "Old Feedback",
"fields": [
{
"label": "Lenhorabona per a qüestionari superat",
"description": "Aquest text es mostrarà a sobre de la puntuació, si lusuari ha superat el qüestionari."
"label": "Quiz passed greeting",
"description": "This text will be displayed above the score if the user has successfully passed the quiz."
},
{
"label": "Comentari per a qüestionari superat",
"description": "Aquest comentari es mostrarà després de la puntuació si lusuari ha superat el qüestionari correctament."
"label": "Passed comment",
"description": "This comment will be displayed after the score if the user has successfully passed the quiz."
},
{
"label": "Títol de qüestionari no superat",
"description": "Aquest text es mostrarà a sobre de la puntuació, si lusuari no ha superat el qüestionari."
"label": "Quiz failed title",
"description": "This text will be displayed above the score if the user has failed the quiz."
},
{
"label": "Ha fallat el comentari",
"description": "Aquest comentari es mostrarà després de la puntuació, si lusuari no ha superat el qüestionari."
"label": "Failed comment",
"description": "This comment will be displayed after the score if the user has failed the quiz."
}
]
},
{
"label": "Etiqueta del botó \"Solució\"",
"default": "Mostra la solució",
"description": "Text per al botó de solució."
"label": "Solution button label",
"default": "Mostrar solució",
"description": "Text for the solution button."
},
{
"label": "Etiqueta del botó \"Torna-ho a provar\"",
"default": "Torna-ho a provar",
"description": "Text del botó \"Torna-ho a provar\"."
"label": "Etiqueta del botó \"Tornar-ho a provar\"",
"default": "Tornar-ho a provar",
"description": "Text for the retry button."
},
{
"label": "Text del botó \"Finalitza\"",
"default": "Finalitza"
"label": "Finish button text",
"default": "Acabar"
},
{
"label": "Submit button text",
"default": "Submit"
"label": "Display video before quiz results"
},
{
"label": "Mostra el vídeo abans dels resultats del qüestionari"
"label": "Enable skip video button"
},
{
"label": "Activa el botó de saltar el vídeo"
"label": "Skip video button label",
"default": "Skip video"
},
{
"label": "Etiqueta del botó \"Omet el vídeo\"",
"default": "Omet el vídeo"
"label": "Passed video",
"description": "This video will be played if the user successfully passed the quiz."
},
{
"label": "Vídeo per a qüestionari superat",
"description": "Aquest vídeo es reproduirà si lusuari supera el qüestionari."
},
{
"label": "Vídeo fallit",
"description": "Aquest vídeo es reproduirà si lusuari falla el qüestionari."
"label": "Fail video",
"description": "This video will be played if the user failes the quiz."
}
]
},
{
"label": "Configuració dels botons \"Mostra la solució\" i \"Torna-ho a provar\"",
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
"fields": [
{
"label": "Mostra els botons \"Comprova\"",
"description": "Aquesta opció determina si es mostrarà el botó \"Comprovar\" per a totes les preguntes."
"label": "Show \"Check\" buttons",
"description": "This option determines if the \"Check\" button will be shown for all questions."
},
{
"label": "Substitueix el botó \"Mostra la solució\"",
"description": "Aquesta opció determina si el botó \"Mostra la solució\" es mostrarà per a totes les preguntes, es desactivarà per a totes o es configurarà per a cada pregunta individualment.",
"label": "Override \"Show Solution\" button",
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
"options": [
{
"label": "Activat"
"label": "Enabled"
},
{
"label": "Desactivat"
"label": "Disabled"
}
]
},
{
"label": "Substitueix el botó \"Torna-ho a provar\"",
"description": "Aquesta opció determina si es mostrarà el botó \"Torna-ho a provar\" per a totes les preguntes, es desactivarà per a totes o es configurarà per a cada pregunta individualment.",
"label": "Override \"Retry\" button",
"description": "This option determines if the \"Retry\" button will be shown for all questions, disabled for all or configured for each question individually.",
"options": [
{
"label": "Activat"
"label": "Enabled"
},
{
"label": "Desactivat"
"label": "Disabled"
}
]
}
]
}
]
}
}

View File

@ -1,172 +1,165 @@
{
"semantics": [
{
"label": "Úvod do testu",
"label": "Quiz introduction",
"fields": [
{
"label": "Zobrazit úvod"
"label": "Display introduction"
},
{
"label": "Nadpis",
"description": "Tento nadpis se zobrazí nad úvodním textem."
"label": "Title",
"description": "This title will be displayed above the introduction text."
},
{
"label": "Úvodní text",
"description": "Tento text se zobrazí před spuštěním testu."
"label": "Introduction text",
"description": "This text will be displayed before the quiz starts."
},
{
"label": "Text tlačítka Start",
"default": "Start testu"
"label": "Start button text",
"default": "Start Quiz"
},
{
"label": "Obrázek na pozadí",
"description": "Volitelný obrázek na pozadí pro úvod."
"label": "Background image",
"description": "An optional background image for the introduction."
}
]
},
{
"label": "Obrázek na pozadí",
"description": "Volitelný obrázek na pozadí pro sadu otázek."
"label": "Background image",
"description": "An optional background image for the Question set."
},
{
"label": "Ukazatel průběhu",
"description": "Styl ukazatele průběhu testu.",
"label": "Progress indicator",
"description": "Question set progress indicator style.",
"options": [
{
"label": "Textový"
"label": "Textual"
},
{
"label": "Tečky"
"label": "Dots"
}
]
},
{
"label": "Procento úspěšnosti",
"description": "Procento z celkového skóre požadovaného pro absolvování testu."
"label": "Pass percentage",
"description": "Percentage of Total score required for passing the quiz."
},
{
"label": "Otázky",
"label": "Questions",
"widgets": [
{
"label": "Výchozí"
"label": "Default"
},
{
"label": "Textové"
"label": "Textual"
}
],
"entity": "otázka",
"entity": "question",
"field": {
"label": "Typ otázky",
"description": "Knihovna pro tuto otázku."
"label": "Question type",
"description": "Library for this question."
}
},
{
"label": "Rozhraní v testu",
"label": "Interface texts in quiz",
"fields": [
{
"label": "Tlačítko Zpět",
"default": "Předchozí otázka"
"label": "Back button",
"default": "Previous question"
},
{
"label": "Tlačítko Další",
"default": "Další otázka"
"label": "Next button",
"default": "Next question"
},
{
"label": "Tlačítko Dokončit",
"default": "Dokončit"
"label": "Finish button",
"default": "Finish"
},
{
"label": "Submit button",
"default": "Submit"
"label": "Progress text",
"description": "Text used if textual progress is selected.",
"default": "Question: @current of @total questions"
},
{
"label": "Text průběhu",
"description": "Text použitý, pokud je vybrán textový průběh.",
"default": "Otázka: @current z @total otázek"
"label": "Label for jumping to a certain question",
"description": "You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
"default": "Question %d of %total"
},
{
"label": "Popisek pro skok na určitou otázku",
"description": "Musíte použít zástupný symbol \"%d\" namísto čísla otázky, a %total namísto celkového počtu otázek.",
"default": "Otázka %d z %total"
"label": "Copyright dialog question label",
"default": "Question"
},
{
"label": "Popisek s otázkou dialogového okna autorských práv",
"default": "Otázka"
"label": "Readspeaker progress",
"description": "May use @current and @total question variables",
"default": "Question @current of @total"
},
{
"label": "Průběh čtení čtečky",
"description": "Mohou používat proměnné otázek @current a @total",
"default": "Otázka @current z @total"
"label": "Unanswered question text",
"default": "Unanswered"
},
{
"label": "Text nezodpovězené otázky",
"default": "Nezodpovězeno"
"label": "Answered question text",
"default": "Answered"
},
{
"label": "Text odpovězené otázky",
"default": "Odpovězeno"
},
{
"label": "Text aktuální otázky",
"default": "Aktuální otázka"
"label": "Current question text",
"default": "Current question"
}
]
},
{
"label": "Zakázat navigaci zpět",
"description": "Tato možnost vám umožní postupovat v sadě otázek pouze vpřed"
"label": "Disable backwards navigation",
"description": "This option will only allow you to move forward in Question Set"
},
{
"label": "Náhodné otázky",
"description": "Povolit náhodný výběr pořadí zobrazovaných otázek."
"label": "Randomize questions",
"description": "Enable to randomize the order of questions on display."
},
{
"label": "Počet otázek, které se mají zobrazit:",
"description": "Vytvořte náhodnou dávku otázek z celkového počtu."
"label": "Number of questions to be shown:",
"description": "Create a randomized batch of questions from the total."
},
{
"label": "Test skončil",
"label": "Quiz finished",
"fields": [
{
"label": "Zobrazit výsledky"
"label": "Display results"
},
{
"label": "Zobrazit tlačítko řešení"
"label": "Display solution button"
},
{
"label": "Zobrazit tlačítko opakování"
"label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled",
"default": "Finished"
},
{
"label": "Žádná zpráva o výsledcích",
"description": "Text zobrazený na konci stránky, když je zakázáno \"Zobrazit výsledky\"",
"default": "Dokončeno"
"label": "Feedback heading",
"default": "Your result:",
"description": "This heading will be displayed at the end of the quiz when the user has answered all questions."
},
{
"label": "Zpětná vazba",
"default": "Váš výsledek:",
"description": "Tento nadpis se zobrazí na konci testu, když uživatel odpoví na všechny otázky."
},
{
"label": "Celková zpětná vazba",
"label": "Overall Feedback",
"fields": [
{
"widgets": [
{
"label": "Výchozí"
"label": "Default"
}
],
"label": "Definujte vlastní zpětnou vazbu pro libovolný rozsah skóre",
"description": "Příklad: 0-20% špatné skóre, 21-91% průměrné skóre, 91-100% výborné skóre!",
"entity": "rozsah",
"label": "Define custom feedback for any score range",
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
"entity": "range",
"field": {
"fields": [
{
"label": "Rozsah skóre"
"label": "Score Range"
},
{},
{
"label": "Zpětná vazba pro definovaný rozsah skóre",
"placeholder": "Vyplňte zpětnou vazbu"
"label": "Feedback for defined score range",
"placeholder": "Fill in the feedback"
}
]
}
@ -174,96 +167,92 @@
]
},
{
"label": "Stará zpětná vazba",
"label": "Old Feedback",
"fields": [
{
"label": "Pozdrav úspěšného testu",
"description": "Tento text se zobrazí nad skóre, pokud uživatel úspěšně prošel testem."
"label": "Quiz passed greeting",
"description": "This text will be displayed above the score if the user has successfully passed the quiz."
},
{
"label": "Úspěšný komentář",
"description": "Tento komentář se zobrazí po skóre, pokud uživatel úspěšně prošel testem."
"label": "Passed comment",
"description": "This comment will be displayed after the score if the user has successfully passed the quiz."
},
{
"label": "Test se nezdařil",
"description": "Tento text se zobrazí nad skóre, pokud uživatel byl v testu neúspěšný."
"label": "Quiz failed title",
"description": "This text will be displayed above the score if the user has failed the quiz."
},
{
"label": "Komentář při neúspěchu",
"description": "Tento komentář se zobrazí po skóre, pokud uživatel byl v testu neúspěšný."
"label": "Failed comment",
"description": "This comment will be displayed after the score if the user has failed the quiz."
}
]
},
{
"label": "Popisek tlačítka řešení",
"default": "Zobrazit řešení",
"description": "Text tlačítka řešení."
"label": "Solution button label",
"default": "Show solution",
"description": "Text for the solution button."
},
{
"label": "Popisek tlačítka opakovat",
"default": "Opakovat",
"description": "Text tlačítka opakovat."
"label": "Retry button label",
"default": "Retry",
"description": "Text for the retry button."
},
{
"label": "Popisek tlačítka dokončit",
"default": "Dokončit"
"label": "Finish button text",
"default": "Finish"
},
{
"label": "Submit button text",
"default": "Submit"
"label": "Display video before quiz results"
},
{
"label": "Zobrazit video před výsledky testu"
"label": "Enable skip video button"
},
{
"label": "Povolit tlačítko přeskočit video"
"label": "Skip video button label",
"default": "Skip video"
},
{
"label": "Popisek tlačítka Přeskočit video",
"default": "Přeskočit video"
"label": "Passed video",
"description": "This video will be played if the user successfully passed the quiz."
},
{
"label": "Přehrát video",
"description": "Toto video se přehraje, pokud uživatel úspěšně prošel testem."
},
{
"label": "Video při neúspěchu",
"description": "Toto video se přehraje, pokud uživatel byl v testu neúspěšný."
"label": "Fail video",
"description": "This video will be played if the user failes the quiz."
}
]
},
{
"label": "Nastavení tlačítek \"Zobrazit výsledek\" a \"Opakovat\"",
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
"fields": [
{
"label": "Zobrazit tlačítko \"Zkontrolovat\"",
"description": "Tato volba určuje, zda se u všech otázek zobrazí tlačítko \"Zkontrolovat\" ."
"label": "Show \"Check\" buttons",
"description": "This option determines if the \"Check\" button will be shown for all questions."
},
{
"label": "Přepsat tlačítko \"Zobrazit řešení\"",
"description": "Tato volba určuje, zda se u všech otázek zobrazí tlačítko \"Zobrazit řešení\" , nebo bude zakázané pro všechny nebo nakonfigurované pro každou otázku samostatně.",
"label": "Override \"Show Solution\" button",
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
"options": [
{
"label": "Povoleno"
"label": "Enabled"
},
{
"label": "Zakázáno"
"label": "Disabled"
}
]
},
{
"label": "Přepsat tlačítko \"Opakovat\"",
"description": "Tato volba určuje, zda se u všech otázek zobrazí tlačítko \"Opakovat\" , nebo bude zakázané pro všechny nebo nakonfigurované pro každou otázku samostatně.",
"label": "Override \"Retry\" button",
"description": "This option determines if the \"Retry\" button will be shown for all questions, disabled for all or configured for each question individually.",
"options": [
{
"label": "Povoleno"
"label": "Enabled"
},
{
"label": "Zakázáno"
"label": "Disabled"
}
]
}
]
}
]
}
}

View File

@ -75,10 +75,6 @@
"label": "Finish button",
"default": "Finish"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "Progress text",
"description": "Text used if textual progress is selected.",
@ -133,9 +129,6 @@
{
"label": "Display solution button"
},
{
"label": "Display retry button"
},
{
"label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled",
@ -208,10 +201,6 @@
"label": "Finish button text",
"default": "Finish"
},
{
"label": "Submit button text",
"default": "Submit"
},
{
"label": "Display video before quiz results"
},
@ -228,7 +217,7 @@
},
{
"label": "Fail video",
"description": "This video will be played if the user fails the quiz."
"description": "This video will be played if the user failes the quiz."
}
]
},

View File

@ -16,21 +16,21 @@
},
{
"label": "Beschriftung des \"Start\"-Buttons",
"default": "Quiz starten"
"default": "Starte Quiz"
},
{
"label": "Hintergrundbild",
"description": "Ein optionales Hintergrundbild für die Einführung"
"description": "Ein optionales Hintergrundbild für die Einführung."
}
]
},
{
"label": "Hintergrundbild",
"description": "Ein optionales Hintergrundbild für den Fragensatz"
"description": "Ein optionales Hintergrundbild für das Fragenset."
},
{
"label": "Fortschrittsanzeige",
"description": "Anzeigestil der Fortschrittsanzeige",
"description": "Anzeigestil für die Fortschrittsanzeige des Fragensets.",
"options": [
{
"label": "Text"
@ -48,23 +48,23 @@
"label": "Fragen",
"widgets": [
{
"label": "Eingabemaske"
"label": "Vorgabe"
},
{
"label": "Als Text eingeben"
"label": "Text"
}
],
"entity": "Frage",
"entity": "frage",
"field": {
"label": "Fragentyp",
"description": "Inhaltstyp, der in dieser Frage verwendet wird"
"description": "Bibliothek für diese Frage."
}
},
{
"label": "Bezeichnungen und Beschriftungen",
"label": "Anzeigetexte im Quiz",
"fields": [
{
"label": "Beschriftung des \"Zurück\"-Buttons",
"label": "Zurück-Button",
"default": "Zurück"
},
{
@ -76,26 +76,22 @@
"default": "Beenden"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "Text der Fortschrittsanzeige",
"label": "Fortschrittsanzeigetext",
"description": "Verwendeter Text, wenn Fortschrittsanzeige in Textform gewählt wurde.",
"default": "Aktuelle Frage: @current von @total Fragen"
},
{
"label": "Beschriftung für das Springen zu einer bestimmten Frage",
"description": "Nutze den Platzhalter %d für die Fragennummer und %total für die Gesamtzahl der Fragen.",
"label": "Beschriftung für das Springen zu einem bestimmten Punkt",
"description": "Nutze den Platzhalter '%d' für die Fragennummer und %total für die Gesamtzahl der Fragen.",
"default": "Frage %d von %total"
},
{
"label": "Beschriftung der Frage im Urheberrechtsdialog",
"label": "Beschriftung für eine Frage zum Urheberrechtsdialog",
"default": "Frage"
},
{
"label": "Text, den Vorlesewerkzeuge nutzen, um den derzeitigen Fortschritt auszugeben",
"description": "verwendbare Variablen: @current und @total",
"label": "Fortschritt \"Readspeaker\"",
"description": "Variablen: @current und @total",
"default": "Frage @current von @total"
},
{
@ -107,66 +103,63 @@
"default": "Beantwortet"
},
{
"label": "Text für die aktuelle Frage",
"label": "Text fpr aktuelle Frage",
"default": "Aktuelle Frage"
}
]
},
{
"label": "Rückwärts-Navigation deaktivieren",
"description": "Wenn aktiviert, kann der Nutzer nur vorwärts durch den Fragensatz navigieren"
"label": "Rückwärts-Navigation ausstellen",
"description": "Wenn aktiviert, kann der Nutzer nur vorwärts durch das Fragenset navigieren."
},
{
"label": "Fragen zufällig anordnen",
"description": "Wenn gewählt, werden die Fragen in einer zufälligen Reihenfolge angeordnet."
"description": "Aktivieren, um die Fragen auf dem Bildschirm zufällig anzuordnen."
},
{
"label": "Anzahl der anzuzeigenden Fragen:",
"description": "Kann benutzt werden, um nur eine zufällige Teilmenge von Fragen anzuzeigen."
"description": "Kann benutzt werden, um eine zufällige Auswahl auf mehreren Fragen zu treffen."
},
{
"label": "Quiz beendet",
"fields": [
{
"label": "Ergebnisse anzeigen"
"label": "Ergebnisanzeige"
},
{
"label": "\"Lösung anzeigen\" ermöglichen"
"label": "Hinweis bei keinen Ergebnissen"
},
{
"label": "\"Wiederholen\"-Button anzeigen"
"label": "Kopfzeile für die Rückmeldungen",
"description": "diese Kopfzeile wird am Ende des Quizzes angezeigt, wenn der Nutzer alle Fragen beantwortet hat.",
"default": "Dein Ergebnis:"
},
{
"label": "Nachricht, wenn keine Ergebnisse vorliegen",
"description": "Text, der auf der Endseite angezeigt wird, wenn \"Lösung anzeigen\" deaktiviert ist",
"default": "Quiz beendet"
"label": "Text für die Punkteanzeige",
"default": "Du hast @score Punkte von @total möglichen.",
"description": "Dieser Text wird verwendet, um die Gesamtpunkte des Nutzers anzuzeigen. \"@score\" wird durch die errechnete Punktzahl ersetzt, \"@total\" wird durch die maximal erreichbare Punktzahl ersetzt."
},
{
"label": "Überschrift der Rückmeldung",
"default": "Dein Ergebnis:",
"description": "Diese Überschrift wird am Ende angezeigt, wenn alle Fragen beantwortet wurden."
},
{
"label": "Gesamtrückmeldung",
"label": "Hintergrunddeckkraft für bewegliche Elemente",
"fields": [
{
"widgets": [
{
"label": "Voreinstellung"
"label": "Default"
}
],
"label": "Lege Rückmeldungen für einzelne Punktebereiche fest",
"description": "Klicke auf den \"Bereich hinzufügen\"-Button, um so viele Bereiche hinzuzufügen, wie du brauchst. Beispiel: 0-20% Schlechte Punktzahl, 21-91% Durchschnittliche Punktzahl, 91-100% Großartige Punktzahl!",
"label": "Benutzerdefinierte Rückmeldung für jeden Punkte-Bereich definieren",
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
"entity": "Bereich",
"field": {
"fields": [
{
"label": "Punktebereich"
"label": "Punkte-Bereich"
},
{},
{
"label": "Rückmeldung für jeweiligen Punktebereich",
"placeholder": "Trage die Rückmeldung ein"
"label": "Feedback for defined score range",
"placeholder": "Fill in the feedback"
}
]
}
@ -174,12 +167,8 @@
]
},
{
"label": "Alte Rückmeldung",
"label": "Old Feedback",
"fields": [
{
"label": "Kopfzeile für bestandenes Quiz",
"description": "Dieser Text wird oberhalb der Punkte angezeigt, wenn der Nutzer das Quiz nicht bestanden hat."
},
{
"label": "Kommentar für bestandenes Quiz",
"description": "Dieser Kommentar wird nach den Punkten angezeigt, wenn der Nutzer das Quiz erfolgreich bestanden hat."
@ -191,79 +180,79 @@
{
"label": "Kommentar für nicht bestandenes Quiz",
"description": "Dieser Kommentar wird nach den Punkten angezeigt, wenn der Nutzer das Quiz nicht bestanden hat."
},
{
"label": "Beschriftung des \"Lösung zeigen\"-Buttons",
"description": "Beschriftung des \"Lösung zeigen\"-Buttons"
}
]
},
{
"label": "Beschriftung des \"Lösung anzeigen\"-Buttons",
"default": "Lösung anzeigen",
"description": "Beschriftung des \"Lösung anzeigen\"-Buttons"
},
{
"label": "Beschriftung des \"Wiederholen\"-Buttons",
"default": "Wiederholen",
"default": "Lösung anzeigen",
"description": "Beschriftung des \"Wiederholen\"-Buttons"
},
{
"label": "Beschriftung des \"Beenden\"-Buttons",
"default": "Wiederholen",
"description": "Text for the retry button."
},
{
"label": "Schaltflächentext Beenden",
"default": "Beenden"
},
{
"label": "Submit button text",
"default": "Submit"
"label": "Aktiviere \"Video überspringen\"-Button"
},
{
"label": "Zeige ein Video vor den Ergebnissen an"
},
{
"label": "Zeige \"Video überspringen\"-Button an"
},
{
"label": "Beschriftung des \"Video überspringen\"-Buttons",
"default": "Video überspringen"
"label": "Beschriftung des \"Video überspringen\"-Buttons"
},
{
"label": "Bestanden-Video",
"description": "Dieses Video wird angezeigt, wenn der Nutzer das Quiz bestanden hat."
"default": "Skip video"
},
{
"label": "Nicht-bestanden-Video",
"description": "Dieses Video wird angezeigt, wenn der Nutzer das Quiz nicht bestanden hat."
},
{
"label": "Fail video",
"description": "This video will be played if the user failes the quiz."
}
]
},
{
"label": "Einstellungen für \"Lösung anzeigen\"-Button und \"Wiederholen\"-Button",
"label": "Einstellungen für \"Lösung zeigen\"-Button und \"Nochmal\".",
"fields": [
{
"label": "Überschreiben der Anzeigeoptionen des \"Überprüfen\"-Buttons",
"description": "Diese Option legt fest, ob der \"Überprüfen\"-Button für alle Fragen angezeigt wird."
"label": "Show \"Check\" buttons",
"description": "This option determines if the \"Check\" button will be shown for all questions."
},
{
"label": "Überschreiben der Anzeigeoptionen des \"Lösungen anzeigen\"-Buttons",
"label": "Überschreiben des \"Lösungen anzeigen\"-Buttons",
"description": "Diese Option gibt an, ob der \"Lösung anzeigen\"-Button für alle Fragen angezeigt, ausgeblendet oder für jede Frage individuell konfiguriert wird.",
"options": [
{
"label": "Immer anzeigen"
"label": "Anzeigen"
},
{
"label": "Immer ausblenden"
"label": "Ausblenden"
}
]
},
{
"label": "Überschreiben der Anzeigeoptionen des \"Wiederholen\"-Buttons",
"label": "Überschreiben des \"Wiederholen\"-Buttons",
"description": "Diese Option gibt an, ob der \"Wiederholen\" Button für alle Fragen angezeigt, ausgeblendet oder für jede Frage individuell konfiguriert wird.",
"options": [
{
"label": "Immer anzeigen"
"label": "Anzeigen"
},
{
"label": "Immer ausblenden"
"label": "Ausblenden"
}
]
}
]
}
]
}
}

View File

@ -1,172 +1,165 @@
{
"semantics": [
{
"label": "Εισαγωγή κουίζ",
"label": "Quiz introduction",
"fields": [
{
"label": "Εμφάνιση εισαγωγής"
"label": "Display introduction"
},
{
"label": "Τίτλος",
"description": "Αυτός ο τίτλος θα εμφανίζεται πάνω από το εισαγωγικό κείμενο."
"label": "Title",
"description": "This title will be displayed above the introduction text."
},
{
"label": "Εισαγωγικό κείμενο",
"description": "Αυτό το κείμενο θα εμφανίζεται πριν την έναρξη του κουίζ."
"label": "Introduction text",
"description": "This text will be displayed before the quiz starts."
},
{
"label": "Ετικέτα κουμπιού έναρξης",
"default": "Έναρξη"
"label": "Start button text",
"default": "Start Quiz"
},
{
"label": "Εικόνα φόντου",
"description": "Μια εικόνα φόντου για την εισαγωγή (προαιρετικό)."
"label": "Background image",
"description": "An optional background image for the introduction."
}
]
},
{
"label": "Εικόνα φόντου",
"description": "Μια εικόνα φόντου για τη συλλογή ερωτήσεων (προαιρετικό)."
"label": "Background image",
"description": "An optional background image for the Question set."
},
{
"label": "Δείκτης προόδου",
"description": "Καθορισμός στυλ δείκτη προόδου.",
"label": "Progress indicator",
"description": "Question set progress indicator style.",
"options": [
{
"label": "Κείμενο"
"label": "Textual"
},
{
"label": "Κουκίδες"
"label": "Dots"
}
]
},
{
"label": "Ποσοστό επιτυχίας",
"description": "Απαιτούμενο ποσοστό συνολικής βαθμολογίας για να θεωρηθεί επιτυχημένη η προσπάθεια."
"label": "Pass percentage",
"description": "Percentage of Total score required for passing the quiz."
},
{
"label": "Ερωτήσεις",
"label": "Questions",
"widgets": [
{
"label": "Βασικό"
"label": "Default"
},
{
"label": "Κείμενο"
"label": "Textual"
}
],
"entity": "ερωτηση",
"entity": "question",
"field": {
"label": "Τύπος ερώτησης",
"description": "Βιβλιοθήκη για αυτή την ερώτηση."
"label": "Question type",
"description": "Library for this question."
}
},
{
"label": "Κείμενα διεπαφής για το κουίζ",
"label": "Interface texts in quiz",
"fields": [
{
"label": "Κουμπί για \"προηγούμενο\"",
"default": "Προηγούμενη"
"label": "Back button",
"default": "Previous question"
},
{
"label": "Κουμπί για \"επόμενο\"",
"default": "Επόμενη"
"label": "Next button",
"default": "Next question"
},
{
"label": "Κουμπί ολοκλήρωσης",
"default": "Ολοκλήρωση"
"label": "Finish button",
"default": "Finish"
},
{
"label": "Submit button",
"default": "Submit"
"label": "Progress text",
"description": "Text used if textual progress is selected.",
"default": "Question: @current of @total questions"
},
{
"label": "Κείμενο προόδου",
"description": "Κείμενο που χρησιμοποιείται, εάν έχει επιλεγεί το κειμενικό στυλ εμφάνισης της προόδου.",
"default": "Ερώτηση: @current από @total ερωτήσεις"
"label": "Label for jumping to a certain question",
"description": "You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
"default": "Question %d of %total"
},
{
"label": "Ετικέτα μετάβασης σε συγκεκριμένη ερώτηση",
"description": "Χρειάζεται να χρησιμοποιήσετε το %d αντί για τον αριθμό της ερώτησης και το %total αντί για τον συνολικό αριθμό των ερωτήσεων.",
"default": "Ερώτηση %d από %total"
"label": "Copyright dialog question label",
"default": "Question"
},
{
"label": "Ετικέτα διαλογικού παραθύρου Πνευματικών Δικαιωμάτων",
"default": "Ερώτηση"
"label": "Readspeaker progress",
"description": "May use @current and @total question variables",
"default": "Question @current of @total"
},
{
"label": "Πρόοδος για ακουστική υποβοήθηση",
"description": "Μπορούν να χρησιμοποιηθούν οι μεταβλητές @current και @total",
"default": "Ερώτηση @current από @total"
"label": "Unanswered question text",
"default": "Unanswered"
},
{
"label": "Κείμενο για μη απαντημένη ερώτηση",
"default": "Δεν απαντήθηκε"
"label": "Answered question text",
"default": "Answered"
},
{
"label": "Κείμενο για απαντημένη ερώτηση",
"default": "Απαντήθηκε"
},
{
"label": "Κείμενο τρέχουσας ερώτησης",
"default": "Τρέχουσα ερώτηση"
"label": "Current question text",
"default": "Current question"
}
]
},
{
"label": "Απενεργοποίηση πλοήγησης προς τα πίσω",
"description": "Αυτή η επιλογή επιτρέπει τη μετάβαση μόνο στην επόμενη ερώτηση"
"label": "Disable backwards navigation",
"description": "This option will only allow you to move forward in Question Set"
},
{
"label": "Τυχαιοποίηση ερωτήσεων",
"description": "Ενεργοποίηση της τυχαίας σειράς εμφάνισης των ερωτήσεων."
"label": "Randomize questions",
"description": "Enable to randomize the order of questions on display."
},
{
"label": "Αριθμός ερωτήσεων προς εμφάνιση:",
"description": "Δημιουργήστε μια τυχαία σειρά ερωτήσεων από το σύνολο."
"label": "Number of questions to be shown:",
"description": "Create a randomized batch of questions from the total."
},
{
"label": "Ολοκλήρωση κουίζ",
"label": "Quiz finished",
"fields": [
{
"label": "Εμφάνιση αποτελεσμάτων"
"label": "Display results"
},
{
"label": "Εμφάνιση κουμπιού λύσης"
"label": "Display solution button"
},
{
"label": "Εμφάνιση κουμπιού επανάληψης"
"label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled",
"default": "Finished"
},
{
"label": "Μήνυμα \"Χωρίς αποτελέσματα\"",
"description": "Κείμενο που θα εμφανίζεται στο τέλος της σελίδας όταν το κουμπί \"Αποτελέσματα\" είναι απενεργοποιημένο",
"default": "Ολοκληρώθηκε"
"label": "Feedback heading",
"default": "Your result:",
"description": "This heading will be displayed at the end of the quiz when the user has answered all questions."
},
{
"label": "Επικεφαλίδα ανατροφοδότησης",
"default": "Η βαθμολογία σου:",
"description": "Αυτή η επικεφαλίδα θα εμφανίζεται στο τέλος του κουίζ όταν ο χρήστης θα έχει απαντήσει σε όλες τις ερωτήσεις."
},
{
"label": "Συνολική ανατροφοδότηση",
"label": "Overall Feedback",
"fields": [
{
"widgets": [
{
"label": "Βασικό"
"label": "Default"
}
],
"label": "Χαρακτηρισμός κάθε κλίμακας βαθμολογίας",
"description": "Παράδειγμα: 0-20% Χαμηλή βαθμολογία, 21-91% Μέτρια βαθμολογία, 91-100% Εξαιρετική βαθμολογία!",
"entity": "κλιμακας",
"label": "Define custom feedback for any score range",
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
"entity": "range",
"field": {
"fields": [
{
"label": "Βαθμολογία"
"label": "Score Range"
},
{},
{
"label": "Χαρακτηρισμός",
"placeholder": "Συμπληρώστε τον χαρακτηρισμό"
"label": "Feedback for defined score range",
"placeholder": "Fill in the feedback"
}
]
}
@ -174,96 +167,92 @@
]
},
{
"label": "Ανατροφοδότηση",
"label": "Old Feedback",
"fields": [
{
"label": "Μήνυμα επιτυχούς ολοκλήρωσης",
"description": "Αυτό το κείμενο θα εμφανίζεται πάνω από τη βαθμολογία εάν ο χρήστης έχει ολοκληρώσει επιτυχώς το κουίζ."
"label": "Quiz passed greeting",
"description": "This text will be displayed above the score if the user has successfully passed the quiz."
},
{
"label": "Σχόλιο επιτυχούς ολοκλήρωσης",
"description": "Αυτό το σχόλιο θα εμφανίζεται μετά τη βαθμολογία εάν ο χρήστης έχει ολοκληρώσει επιτυχώς το κουίζ."
"label": "Passed comment",
"description": "This comment will be displayed after the score if the user has successfully passed the quiz."
},
{
"label": "Μήνυμα ανεπιτυχούς ολοκλήρωσης",
"description": "Αυτό το κείμενο θα εμφανίζεται πριν από τη βαθμολογία εάν ο χρήστης έχει δεν ολοκληρώσει επιτυχώς το κουίζ."
"label": "Quiz failed title",
"description": "This text will be displayed above the score if the user has failed the quiz."
},
{
"label": "Σχόλιο ανεπιτυχούς ολοκλήρωσης",
"description": "Αυτό το σχόλιο θα εμφανίζεται μετά τη βαθμολογία εάν ο χρήστης δεν έχει ολοκληρώσει επιτυχώς το κουίζ."
"label": "Failed comment",
"description": "This comment will be displayed after the score if the user has failed the quiz."
}
]
},
{
"label": "Ετικέτα κουμπιού εμφάνισης λύσης",
"default": "Λύση",
"description": "Κείμενο για το κουμπί εμφάνισης λύσης."
"label": "Solution button label",
"default": "Show solution",
"description": "Text for the solution button."
},
{
"label": "Ετικέτα κουμπιού νέας προσπάθειας",
"label": "Retry button label",
"default": "Επανάληψη",
"description": "Κείμενο για το κουμπί νέας προσπάθειας."
"description": "Text for the retry button."
},
{
"label": "Ετικέτα κουμπιού ολοκλήρωσης",
"default": "Ολοκλήρωση"
"label": "Finish button text",
"default": "Finish"
},
{
"label": "Submit button text",
"default": "Submit"
"label": "Display video before quiz results"
},
{
"label": "Εμφάνιση βίντεο πριν τα αποτελέσματα του κουίζ"
"label": "Enable skip video button"
},
{
"label": "Ενεργοποίηση κουμπιού παράβλεψης βίντεο"
"label": "Skip video button label",
"default": "Skip video"
},
{
"label": "Ετικέτα κουμπιού παράβλεψης βίντεο",
"default": "Παράβλεψη"
"label": "Passed video",
"description": "This video will be played if the user successfully passed the quiz."
},
{
"label": "Βίντεο για επιτυχημένη προσπάθεια",
"description": "Αναπαραγωγή του βίντεο εάν ο χρήστης ολοκληρώσει επιτυχώς το κουίζ."
},
{
"label": "Βίντεο για ανεπιτυχή προσπάθεια",
"description": "Αναπαραγωγή του βίντεο εάν ο χρήστης δεν ολοκληρώσει επιτυχώς το κουίζ."
"label": "Fail video",
"description": "This video will be played if the user failes the quiz."
}
]
},
{
"label": "Ρυθμίσεις κουμπιών \"Λύση\" και \"Επανάληψη\"",
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
"fields": [
{
"label": "Εμφάνιση κουμπιού \"Έλεγχος\"",
"description": "Αυτή η επιλογή καθορίζει εάν το κουμπί \"Έλεγχος\" θα εμφανίζεται σε όλες τις ερωτήσεις."
"label": "Show \"Check\" buttons",
"description": "This option determines if the \"Check\" button will be shown for all questions."
},
{
"label": "Αντικατάσταση προεπιλεγμένων ρυθμίσεων κουμπιού \"Λύση\"",
"description": "Αυτή η επιλογή καθορίζει εάν το κουμπί \"Λύση\" θα εμφανίζεται σε όλες τις ερωτήσεις, εάν θα είναι απενεργοποιημένο για όλες τις ερωτήσεις ή εάν θα ρυθμίζεται για κάθε ερώτηση χωριστά.",
"label": "Override \"Show Solution\" button",
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
"options": [
{
"label": "Ενεργοποιημένη"
"label": "Enabled"
},
{
"label": "Απενεργοποιημένη"
"label": "Disabled"
}
]
},
{
"label": "Αντικατάσταση προεπιλεγμένων ρυθμίσεων κουμπιού \"Επανάληψη\"",
"description": "Αυτή η επιλογή καθορίζει εάν το κουμπί \"Επανάληψη\" θα εμφανίζεται σε όλες τις ερωτήσεις, εάν θα είναι απενεργοποιημένο για όλες τις ερωτήσεις ή εάν θα ρυθμίζεται για κάθε ερώτηση χωριστά.",
"label": "Override \"Retry\" button",
"description": "This option determines if the \"Retry\" button will be shown for all questions, disabled for all or configured for each question individually.",
"options": [
{
"label": "Ενεργοποιημένη"
"label": "Enabled"
},
{
"label": "Απενεργοποιημένη"
"label": "Disabled"
}
]
}
]
}
]
}
}

View File

@ -1,269 +0,0 @@
{
"semantics": [
{
"label": "Introducción al Examen",
"fields": [
{
"label": "Mostrar introducción"
},
{
"label": "Título",
"description": "Este título será mostrado arriba del texto introductorio."
},
{
"label": "Texto introductorio",
"description": "Este texto será mostrado antes de que inicie el examen."
},
{
"label": "Texto botón Comenzar",
"default": "Comenzar Examen"
},
{
"label": "Imagen de Fondo",
"description": "Una imagen de fondo opcional para la introducción."
}
]
},
{
"label": "Imagen de fondo",
"description": "Una imagen de fondo opcional para el Conjunto de preguntas."
},
{
"label": "Indicador del Progreso",
"description": "Estilo del indicador del progreso de Conjunto de preguntas.",
"options": [
{
"label": "Textual"
},
{
"label": "Puntos"
}
]
},
{
"label": "Porcentaje aprobatorio",
"description": "Porcentaje del puntaje total requerido para pasar el examen."
},
{
"label": "Preguntas",
"widgets": [
{
"label": "Predeterminado"
},
{
"label": "Textual"
}
],
"entity": "pregunta",
"field": {
"label": "Tipo de pregunta",
"description": "Librería para esta pregunta."
}
},
{
"label": "Textos de interfaz en examen",
"fields": [
{
"label": "Botón de Retroceso",
"default": "Pregunta anterior"
},
{
"label": "Botón Siguiente",
"default": "Pregunta siguiente"
},
{
"label": "Botón Terminar",
"default": "Terminar"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "Texto del Progreso",
"description": "Texto usado si progreso textual es seleccionado.",
"default": "Pregunta: @current de @total preguntas"
},
{
"label": "Etiqueta para saltar a una pregunta dada",
"description": "Usted debe usar el remplazable '%d' en sustitución del número de la pregunta, y %total en lugar de cantidad total de preguntas.",
"default": "Pregunta %d de %total"
},
{
"label": "Etiqueta de diálogo de Copyright de pregunta",
"default": "Pregunta"
},
{
"label": "Progreso para Lector de texto en voz alta",
"description": "Puede usar @current y @total como variables de preguntas",
"default": "Pregunta @current de @total"
},
{
"label": "Texto de pregunta no contestada",
"default": "No contestada"
},
{
"label": "Texto de pregunta contestada",
"default": "Contestada"
},
{
"label": "Texto de pregunta actual",
"default": "Pregunta actual"
}
]
},
{
"label": "Deshabilitar navegación hacia atrás",
"description": "Esta opción solamente le permitirá mover hacia adelante en Conjunto de Preguntas"
},
{
"label": "Barajear preguntas",
"description": "Habilitar para aleatorizar el orden de preguntas mostradas."
},
{
"label": "Número de preguntas a mostrar:",
"description": "Crear un lote aleatorizado de preguntas a partir del total."
},
{
"label": "Examen terminado",
"fields": [
{
"label": "Mostrar resultados"
},
{
"label": "Mostrar botón Solución"
},
{
"label": "Mostrar botón Reintentar"
},
{
"label": "Mensaje para Sin resultados",
"description": "Texto mostrado en página final cuando está deshabilitado el \"Mostrar resultados\"",
"default": "Terminado"
},
{
"label": "Encabezado de Retroalimentación",
"default": "Su resultado:",
"description": "Este encabezado será mostrado al final del examen cuando el usuario haya contestado todas las preguntas."
},
{
"label": "Retroalimentación Global",
"fields": [
{
"widgets": [
{
"label": "Predeterminado"
}
],
"label": "Definir retroalimentación personalizada para cualquier rango de puntaje",
"description": "Ejemplo: 0-20% Mal Puntaje, 21-91% Puntaje Promedio, 91-100% ¡Magnífico Puntaje!",
"entity": "rango",
"field": {
"fields": [
{
"label": "Rango de Puntaje"
},
{},
{
"label": "Retroalimentación para rango definido de puntaje",
"placeholder": "Complete la retroalimentación"
}
]
}
}
]
},
{
"label": "Retroalimentación Antigua",
"fields": [
{
"label": "Felicitación examen aprobado",
"description": "Este texto será mostrado arriba del puntaje si el usuario ha aprobado exitosamente el examen."
},
{
"label": "Comentario para Aprobado",
"description": "Este comentario será mostrado después del puntaje si el usuario ha aprobado exitosamente el examen."
},
{
"label": "Título para examen reprobado",
"description": "Este texto será mostrado arriba del puntaje si el usuario ha reprobado el examen."
},
{
"label": "Comentario para Reprobado",
"description": "Este comentario será mostrado después del puntaje si el usuario ha reprobado el examen."
}
]
},
{
"label": "Etiqueta botón Solución",
"default": "Mostrar solución",
"description": "Texto para el botón de Solución."
},
{
"label": "Etiqueta botón Reintentar",
"default": "Reintentar",
"description": "Texto para el botón Reintentar."
},
{
"label": "Texto botón Terminar",
"default": "Terminar"
},
{
"label": "Submit button text",
"default": "Submit"
},
{
"label": "Mostrar video antes de resultados del examen"
},
{
"label": "Botón habilitar saltar video"
},
{
"label": "Etiqueta botón Saltar video",
"default": "Saltar video"
},
{
"label": "Video para aprobado",
"description": "Este video será reproducido si el usuario ha aprobado exitosamente el examen."
},
{
"label": "Video para reprobado",
"description": "Este video será reproducido si el usuario reprueba el examen."
}
]
},
{
"label": "Configuraciones para botones \"Mostrar solución\" y \"Reintentar\"",
"fields": [
{
"label": "Botones Mostrar \"Comprobar\"",
"description": "Esta opción determina si el botón para \"Comprobar\" será mostrado para todas las preguntas."
},
{
"label": "Anular el botón \"Mostrar Solución\"",
"description": "Esta opción determina si el botón \"Mostrar Solución\" será mostrado en todas las preguntas, desactivado para todas, o configurado para cada pregunta individualmente.",
"options": [
{
"label": "Habilitado"
},
{
"label": "Deshabilitado"
}
]
},
{
"label": "Anular el botón de \"Reintentar\"",
"description": "Esta opción determina si el botón \"Reintentar\" será mostrado para todas las preguntas, deshabilitado para todas, o configurado para cada pregunta individualmente.",
"options": [
{
"label": "Habilitado"
},
{
"label": "Deshabilitado"
}
]
}
]
}
]
}

View File

@ -1,51 +1,51 @@
{
"semantics": [
{
"label": "Introducción al Examen",
"label": "Quiz introduction",
"fields": [
{
"label": "Mostrar introducción"
"label": "Display introduction"
},
{
"label": "Título",
"description": "Este título será mostrado arriba del texto introductorio."
"description": "This title will be displayed above the introduction text."
},
{
"label": "Texto introductorio",
"description": "Este texto será mostrado antes de que inicie el examen."
"label": "Introduction text",
"description": "This text will be displayed before the quiz starts."
},
{
"label": "Texto botón Comenzar",
"default": "Comenzar Examen"
"label": "Start button text",
"default": "Start Quiz"
},
{
"label": "Imagen de Fondo",
"description": "Una imagen de fondo opcional para la introducción."
"label": "Background image",
"description": "An optional background image for the introduction."
}
]
},
{
"label": "Imagen de fondo",
"description": "Una imagen de fondo opcional para el Conjunto de pregunta."
"label": "Background image",
"description": "An optional background image for the Question set."
},
{
"label": "Indicador del Progreso",
"description": "Estilo del indicador del progreso de Conjunto de pregunta.",
"label": "Progress indicator",
"description": "Question set progress indicator style.",
"options": [
{
"label": "Textual"
},
{
"label": "Puntos"
"label": "Dots"
}
]
},
{
"label": "Porcentaje aprobatorio",
"description": "Porcentaje del puntaje total requerido para pasar el examen."
"label": "Pass percentage",
"description": "Percentage of Total score required for passing the quiz."
},
{
"label": "Preguntas",
"label": "Questions",
"widgets": [
{
"label": "Predeterminado"
@ -54,119 +54,112 @@
"label": "Textual"
}
],
"entity": "pregunta",
"entity": "question",
"field": {
"label": "Tipo de pregunta",
"description": "Librería para esta pregunta."
"label": "Question type",
"description": "Library for this question."
}
},
{
"label": "Textos de interfaz en examen",
"label": "Interface texts in quiz",
"fields": [
{
"label": "Botón de retroceso",
"default": "Pregunta anterior"
"default": "Previous question"
},
{
"label": "Botón Siguiente",
"default": "Pregunta siguiente"
"label": "Next button",
"default": "Next question"
},
{
"label": "Botón Terminar",
"default": "Terminar"
"label": "Finish button",
"default": "Finish"
},
{
"label": "Submit button",
"default": "Submit"
"label": "Progress text",
"description": "Text used if textual progress is selected.",
"default": "Question: @current of @total questions"
},
{
"label": "Texto del progreso",
"description": "Texto usado si progreso textual es seleccionado.",
"default": "Pregunta: @current de @total preguntas"
"label": "Label for jumping to a certain question",
"description": "You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
"default": "Question %d of %total"
},
{
"label": "Etiqueta para saltar a una pregunta dada",
"description": "Usted debe usar el remplazable '%d' en sustitución del número de la pregunta, y %total en lugar de cantidad total de preguntas.",
"default": "Pregunta %d de %total"
"label": "Copyright dialog question label",
"default": "Question"
},
{
"label": "Etiqueta de diálogo de Copyright de pregunta",
"default": "Pregunta"
"label": "Readspeaker progress",
"description": "May use @current and @total question variables",
"default": "Question @current of @total"
},
{
"label": "Progreso para Lector de texto en voz alta",
"description": "Puede usar @current y @total como variables de preguntas",
"default": "Pregunta @current de @total"
"label": "Unanswered question text",
"default": "Unanswered"
},
{
"label": "Texto de pregunta no contestada",
"default": "No contestada"
"label": "Answered question text",
"default": "Answered"
},
{
"label": "Texto de pregunta contestada",
"default": "Contestada"
},
{
"label": "Texto de pregunta actual",
"default": "Pregunta actual"
"label": "Current question text",
"default": "Current question"
}
]
},
{
"label": "Deshabilitar navegación hacia atrás",
"description": "Esta opción solamente le permitirá mover hacia adelante en Conjunto de pregunta"
"label": "Disable backwards navigation",
"description": "This option will only allow you to move forward in Question Set"
},
{
"label": "Barajear preguntas",
"description": "Habilitar para aleatorizar el orden de preguntas mostradas."
"label": "Randomize questions",
"description": "Enable to randomize the order of questions on display."
},
{
"label": "Número de preguntas a mostrar:",
"description": "Crear un lote aleatorizado de preguntas a partir del total."
"label": "Number of questions to be shown:",
"description": "Create a randomized batch of questions from the total."
},
{
"label": "Examen terminado",
"label": "Quiz finished",
"fields": [
{
"label": "Mostrar resultados"
"label": "Display results"
},
{
"label": "Mostrar botón Solución"
"label": "Display solution button"
},
{
"label": "Mostrar botón Reintentar"
"label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled",
"default": "Finished"
},
{
"label": "Mensaje para Sin resultados",
"description": "Texto mostrado en página final cuando está deshabilitado el \"Mostrar resultados\"",
"default": "Terminado"
"label": "Feedback heading",
"default": "Your result:",
"description": "This heading will be displayed at the end of the quiz when the user has answered all questions."
},
{
"label": "Encabezado de Retroalimentación",
"default": "Su resultado:",
"description": "Este encabezado será mostrado al final del examen cuando el usuario haya contestado todas las preguntas."
},
{
"label": "Retroalimentación Global",
"label": "Overall Feedback",
"fields": [
{
"widgets": [
{
"label": "Predeterminado"
"label": "Default"
}
],
"label": "Definir retroalimentación personalizada para cualquier rango de puntaje",
"description": "Ejemplo: 0-20% Mal Puntaje, 21-91% Puntaje Promedio, 91-100% ¡Magnífico Puntaje!",
"entity": "rango",
"label": "Define custom feedback for any score range",
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
"entity": "range",
"field": {
"fields": [
{
"label": "Rango de Puntaje"
"label": "Score Range"
},
{},
{
"label": "Retroalimentación para rango definido de puntaje",
"placeholder": "Complete la retroalimentación"
"label": "Feedback for defined score range",
"placeholder": "Fill in the feedback"
}
]
}
@ -174,74 +167,70 @@
]
},
{
"label": "Retroalimentación Antigua",
"label": "Old Feedback",
"fields": [
{
"label": "Felicitación examen pasado",
"description": "Este texto será mostrado arriba del puntaje si el usuario ha aprobado exitosamente el examen."
"label": "Quiz passed greeting",
"description": "This text will be displayed above the score if the user has successfully passed the quiz."
},
{
"label": "Comentario para Aprobado",
"description": "Este comentario será mostrado después del puntaje si el usuario ha aprobado exitosamente el examen."
"label": "Passed comment",
"description": "This comment will be displayed after the score if the user has successfully passed the quiz."
},
{
"label": "Título para examen reprobado",
"description": "Este texto será mostrado arriba del puntaje si el usuario ha reprobado el examen."
"label": "Quiz failed title",
"description": "This text will be displayed above the score if the user has failed the quiz."
},
{
"label": "Comentario para Reprobado",
"description": "Este comentario será mostrado después del puntaje si el usuario ha reprobado el examen."
"label": "Failed comment",
"description": "This comment will be displayed after the score if the user has failed the quiz."
}
]
},
{
"label": "Etiqueta botón Solución",
"label": "Solution button label",
"default": "Mostrar solución",
"description": "Texto para el botón de Solución."
"description": "Text for the solution button."
},
{
"label": "Etiqueta botón Reintentar",
"label": "Retry button label",
"default": "Reintentar",
"description": "Texto para el botón Reintentar."
"description": "Text for the retry button."
},
{
"label": "Texto botón Terminar",
"default": "Terminar"
"label": "Finish button text",
"default": "Finish"
},
{
"label": "Submit button text",
"default": "Submit"
"label": "Display video before quiz results"
},
{
"label": "Mostrar video antes de resultados del examen"
"label": "Enable skip video button"
},
{
"label": "Botón habilitar saltar video"
"label": "Skip video button label",
"default": "Skip video"
},
{
"label": "Etiqueta botón Saltar video",
"default": "Saltar video"
"label": "Passed video",
"description": "This video will be played if the user successfully passed the quiz."
},
{
"label": "Video para aprobado",
"description": "Este video será reproducido si el usuario ha aprobado exitosamente el examen."
},
{
"label": "Video para reprobado",
"description": "Este video será reproducido si el usuario reprueba el examen."
"label": "Fail video",
"description": "This video will be played if the user failes the quiz."
}
]
},
{
"label": "Configuraciones para botones \"Mostrar solución\" y \"Reintentar\"",
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
"fields": [
{
"label": "Botones Mostrar \"Comprobar\"",
"description": "Esta opción determina si el botón para \"Comprobar\" será mostrado para todas las preguntas."
"label": "Show \"Check\" buttons",
"description": "This option determines if the \"Check\" button will be shown for all questions."
},
{
"label": "Anular el botón \"Mostrar Solución\"",
"description": "Esta opción determina si el botón \"Mostrar Solución\" será mostrado en todas las preguntas, desactivado para todas, o configurado para cada pregunta individualmente.",
"label": "Ocultar el botón \"Mostrar solución\"",
"description": "Esta opción determina si el botón \"Mostrar solución\" se muestra en todas las preguntas, se desactiva para todas, o se configura para cada pregunta individualmente.",
"options": [
{
"label": "Habilitado"
@ -252,8 +241,8 @@
]
},
{
"label": "Anular el botón de \"Reintentar\"",
"description": "Esta opción determina si el botón \"Reintentar\" será mostrado para todas las preguntas, deshabilitado para todas o configurado para cada pregunta individualmente.",
"label": "Ocultar el botón de \"Reintentar\"",
"description": "Esta opción determina si el botón \"Reintentar\" se muestra en todas las preguntas, se desactiva para todas, o se configura para cada pregunta individualmente.",
"options": [
{
"label": "Habilitado"
@ -266,4 +255,4 @@
]
}
]
}
}

View File

@ -1,172 +1,165 @@
{
"semantics": [
{
"label": "Viktoriini tutvustus",
"label": "Quiz introduction",
"fields": [
{
"label": "Kuva tutvustus"
"label": "Display introduction"
},
{
"label": "Pealkiri",
"description": "Seda pealkirja näidatakse tutvustusteksti kohal."
"label": "Title",
"description": "This title will be displayed above the introduction text."
},
{
"label": "Tutvustustekst",
"description": "Seda teksti näidatakse enne viktoriini algust."
"label": "Introduction text",
"description": "This text will be displayed before the quiz starts."
},
{
"label": "Alusta nupu tekst",
"default": "Alusta viktoriini"
"label": "Start button text",
"default": "Start Quiz"
},
{
"label": "Taustapilt",
"description": "Valikuline taustapilt tutvustusele."
"label": "Background image",
"description": "An optional background image for the introduction."
}
]
},
{
"label": "Taustapilt",
"description": "Valikuline taustapilt küsimustikule."
"label": "Background image",
"description": "An optional background image for the Question set."
},
{
"label": "Edenemise osuti",
"description": "Küsimustiku edenemisosuti stiil.",
"label": "Progress indicator",
"description": "Question set progress indicator style.",
"options": [
{
"label": "Tekstiline"
"label": "Textual"
},
{
"label": "Punktid"
"label": "Dots"
}
]
},
{
"label": "Läbimise protsent",
"description": "Protsent viktoriini läbimiseks vajalikust punktisummast."
"label": "Pass percentage",
"description": "Percentage of Total score required for passing the quiz."
},
{
"label": "Küsimused",
"label": "Questions",
"widgets": [
{
"label": "Vaikimisi"
"label": "Default"
},
{
"label": "Tekstiline"
"label": "Textual"
}
],
"entity": "küsimus",
"entity": "question",
"field": {
"label": "Küsimuse liik",
"description": "Selle küsimuse teek."
"label": "Question type",
"description": "Library for this question."
}
},
{
"label": "Viktoriini kasutajaliidese tekstid",
"label": "Interface texts in quiz",
"fields": [
{
"label": "Tagasi nupp",
"default": "Eelmine küsimus"
"label": "Back button",
"default": "Previous question"
},
{
"label": "Edasi nupp",
"default": "Järgmine küsimus"
"label": "Next button",
"default": "Next question"
},
{
"label": "Lõpeta nupp",
"default": "Valmis"
"label": "Finish button",
"default": "Finish"
},
{
"label": "Submit button",
"default": "Submit"
"label": "Progress text",
"description": "Text used if textual progress is selected.",
"default": "Question: @current of @total questions"
},
{
"label": "Edenemise tekst",
"description": "Test, mida kasutatakse, kui valitud on tekstiline edenemisosuti.",
"default": "Küsimus: @current kokku @total küsimusest"
"label": "Label for jumping to a certain question",
"description": "You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
"default": "Question %d of %total"
},
{
"label": "Silt kindlale küsimusele hüppamiseks",
"description": "Pead kasutama küsimuse numbri asemel kohatäitjat '%d', ja küsimuste koguarvu asemel kohatäitjat %total.",
"default": "Küsimus %d kokku %total küsimusest"
},
{
"label": "Autoriõiguse dialoogi küsimuse silt",
"label": "Copyright dialog question label",
"default": "Küsimus"
},
{
"label": "Tekstilugeri edenemine",
"description": "Võib kasutada @current ja @total küsimuse muutujaid",
"default": "Küsimus @current kokku @total küsimusest"
"label": "Readspeaker progress",
"description": "May use @current and @total question variables",
"default": "Question @current of @total"
},
{
"label": "Vastamata küsimuse tekst",
"default": "Vastamata"
"label": "Unanswered question text",
"default": "Unanswered"
},
{
"label": "Vastatud küsimuse tekst",
"default": "Vastatud"
"label": "Answered question text",
"default": "Answered"
},
{
"label": "Jooksva küsimuse tekst",
"default": "Jooksev küsimus"
"label": "Current question text",
"default": "Current question"
}
]
},
{
"label": "Keela tagasi liikumine",
"description": "Selle valikuga saab kasutaja küsimustikus vaid edasi liikuda"
"label": "Disable backwards navigation",
"description": "This option will only allow you to move forward in Question Set"
},
{
"label": "Järjesta küsimused juhuslikult",
"description": "Luba näidatavate küsimuste juhuslik järjekord."
"label": "Randomize questions",
"description": "Enable to randomize the order of questions on display."
},
{
"label": "Näidatavate küsimuste arv:",
"description": "Loo kõigist küsimustest kogum juhuslikult järjestatud küsimusi."
"label": "Number of questions to be shown:",
"description": "Create a randomized batch of questions from the total."
},
{
"label": "Viktoriin on lõppenud",
"label": "Quiz finished",
"fields": [
{
"label": "Näita tulemusi"
"label": "Display results"
},
{
"label": "Näita lahendust nupp"
"label": "Display solution button"
},
{
"label": "Display retry button"
"label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled",
"default": "Finished"
},
{
"label": "Tulemusi ei ole sõnum",
"description": "Tekst, mida näidatakse lehe lõpus, kui \"Näita tulemusi\" on keelatud",
"default": "Lõppenud"
"label": "Feedback heading",
"default": "Your result:",
"description": "This heading will be displayed at the end of the quiz when the user has answered all questions."
},
{
"label": "Tagasiside pealkiri",
"default": "Sinu tulemus:",
"description": "Seda pealkirja näidatakse viktoriini lõpus, kui kasutaja on kõik küsimused vastanud."
},
{
"label": "Üldine tagasiside",
"label": "Overall Feedback",
"fields": [
{
"widgets": [
{
"label": "Vaikimisi"
"label": "Default"
}
],
"label": "Määratle kohandatud tagasiside iga punktisumma vahemiku jaoks",
"description": "Näiteks: 0-20% halb tulemus, 21-91% keskmine tulemus, 91-100% suurepärane tulemus!",
"entity": "vahemik",
"label": "Define custom feedback for any score range",
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
"entity": "range",
"field": {
"fields": [
{
"label": "Punktisumma vahemik"
"label": "Score Range"
},
{},
{
"label": "Määratletud punktisummavahemiku tagasiside",
"placeholder": "Sisesta tagasiside"
"label": "Feedback for defined score range",
"placeholder": "Fill in the feedback"
}
]
}
@ -174,92 +167,88 @@
]
},
{
"label": "Vana tagasiside",
"label": "Old Feedback",
"fields": [
{
"label": "Viktoriin läbitud sõnum",
"description": "Seda teksti näidatakse punktisumma kohal, kui kasutaja on edukalt viktoriini läbinud."
"label": "Quiz passed greeting",
"description": "This text will be displayed above the score if the user has successfully passed the quiz."
},
{
"label": "Läbitud kommentaar",
"description": "Seda kommentaari näidatakse punktisumma järel peale seda, kui kasutaja on viktoriini edukalt läbinud."
"label": "Passed comment",
"description": "This comment will be displayed after the score if the user has successfully passed the quiz."
},
{
"label": "Viktoriin ebaõnnestus pealkiri",
"description": "Seda teksti näidatakse punktisumma kohal, kui kasutajal ebaõnnestus viktoriini täitmine."
"label": "Quiz failed title",
"description": "This text will be displayed above the score if the user has failed the quiz."
},
{
"label": "Ebaõnnestus kommentaar",
"description": "Seda kommentaari näidatakse punktisumma järel siis, kui kasutajal ebaõnnestus viktoriini täitmine."
"label": "Failed comment",
"description": "This comment will be displayed after the score if the user has failed the quiz."
}
]
},
{
"label": "Lahendus nupu silt",
"label": "Solution button label",
"default": "Õige vastus",
"description": "Lahendus nupu tekst."
"description": "Text for the solution button."
},
{
"label": "Proovi uuesti nupu silt",
"default": "Proovi uuesti",
"description": "Tekst Proovi uuesti nupule."
"description": "Text for the retry button."
},
{
"label": "Valmis nupu tekst",
"default": "Valmis"
"label": "Finish button text",
"default": "Finish"
},
{
"label": "Submit button text",
"default": "Submit"
"label": "Display video before quiz results"
},
{
"label": "Kuva videot enne viktoriini tulemusi"
"label": "Enable skip video button"
},
{
"label": "Luba video vahelejätmise nupp"
"label": "Skip video button label",
"default": "Skip video"
},
{
"label": "Jäta video vahele nupu silt",
"default": "Jäta video vahele"
"label": "Passed video",
"description": "This video will be played if the user successfully passed the quiz."
},
{
"label": "Läbitud video",
"description": "Seda videot mängitakse, kui kasutaja on viktoriini edukalt läbinud."
},
{
"label": "Ebaõnnestunud video",
"description": "Seda videot näidatakse, kui kasutajal ebaõnnestus viktoriini täitmine."
"label": "Fail video",
"description": "This video will be played if the user failes the quiz."
}
]
},
{
"label": "\"Näita lahendust\" ja \"Proovi uuesti\" nuppude seadistused",
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
"fields": [
{
"label": "Näita \"Kontrolli\" nuppu",
"description": "See valik määrab, kas \"Kontrolli\" nuppu näidatakse kõigi küsimuste juures."
"label": "Show \"Check\" buttons",
"description": "This option determines if the \"Check\" button will be shown for all questions."
},
{
"label": "\"Näita lahendust\" nupu käitumine",
"description": "See valik määrab, kas \"Show Solution\" nuppu näidatakse kõigi küsimuste juures, on kõigil küsimustel keelatud või häälestatakse igal küsimusel eraldi.",
"label": "Override \"Show Solution\" button",
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
"options": [
{
"label": "Lubatud"
"label": "Enabled"
},
{
"label": "Keelatud"
"label": "Disabled"
}
]
},
{
"label": "\"Proovi uuesti\" nupu käitumine",
"description": "See valik määrab, kas \"Proovi uuesti\" nuppu näidatakse kõigi küsimuste juures, on kõigil küsimustel keelatud või häälestatakse igal küsimusel eraldi.",
"label": "Override \"Retry\" button",
"description": "This option determines if the \"Retry\" button will be shown for all questions, disabled for all or configured for each question individually.",
"options": [
{
"label": "Lubatud"
"label": "Enabled"
},
{
"label": "Keelatud"
"label": "Disabled"
}
]
}

View File

@ -1,269 +0,0 @@
{
"semantics": [
{
"label": "Galdetegiaren sarrera",
"fields": [
{
"label": "Bistaratu sarrera"
},
{
"label": "Titulua",
"description": "Titulu hau bistaratuko da sarrerako testuaren gainean."
},
{
"label": "Sarrerako testua",
"description": "Testu hau galdetegia hasi aurretik erakutsiko da."
},
{
"label": "Hasiera botoiaren testua",
"default": "Hasi proba"
},
{
"label": "Atzeko planoaren irudia",
"description": "Sarreraren atzeko planorako aukerazko irudia."
}
]
},
{
"label": "Atzeko planoaren irudia",
"description": "Galdetegiaren atzeko planoaren aukerazko irudia."
},
{
"label": "Aurrerapenaren adierazlea",
"description": "Galdetegiaren aurrerapen-adierazlearen estiloa.",
"options": [
{
"label": "Testuala"
},
{
"label": "Puntuak"
}
]
},
{
"label": "Asmatutakoen ehunekoa",
"description": "Galdetegia gainditzeko eskatzen den puntuazio totalaren ehunekoa."
},
{
"label": "Galderak",
"widgets": [
{
"label": "Lehenetsitakoa"
},
{
"label": "Testuala"
}
],
"entity": "galdera",
"field": {
"label": "Galdera mota",
"description": "Galdera honen liburutegia."
}
},
{
"label": "Galdetegiko interfazeko testuak",
"fields": [
{
"label": "Atzera botoia",
"default": "Aurreko galdera"
},
{
"label": "Hurrengoa botoia",
"default": "Hurrengo galdera"
},
{
"label": "Bukatu botoia",
"default": "Bukatu"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "Aurrerapenaren testua",
"description": "Testu-aurrerapena hautatuta badago erabiltzen den testua.",
"default": "Galdera: @total galderetatik @current -garrena"
},
{
"label": "Galdera zehatz batera jauzi egiteko etiketa",
"description": "'%d' leku-marka erabili behar duzu galdera zenbakiaren ordez, eta %total galdera kopuruaren ordez.",
"default": "%total galderetatik %d -garren galdera"
},
{
"label": "Copyright elkarrizketa galderaren etiketa",
"default": "Galdera"
},
{
"label": "Irakurgailuaren aurrerapena",
"description": "Erabili dezake @current eta @total galdera-aldagaiak",
"default": "@total galderetatik @current -garrena"
},
{
"label": "Erantzun gabeko galderaren testua",
"default": "Erantzun gabe"
},
{
"label": "Erantzundako galdera",
"default": "Erantzuna emana"
},
{
"label": "Uneko galderaren testua",
"default": "Uneko galdera"
}
]
},
{
"label": "Desgaitu atzeranzko nabigazioa",
"description": "Aukera honek mugatuko zaitu galdetegian aurrera egiteko"
},
{
"label": "Galderak ausaz ordenatu",
"description": "Gaitu pantailan galderen ordena ausaz emateko."
},
{
"label": "Erakutsi behar den galdera kopurua:",
"description": "Sortu denetatik ausaz egindako galdera sorta bat."
},
{
"label": "Galdetegia burutu da",
"fields": [
{
"label": "Bistaratu emaitzak"
},
{
"label": "Bistaratu soluzioaren botoia"
},
{
"label": "Erakutsi berriz saiatu botoia"
},
{
"label": "Emaitzarik ez mezua",
"description": "Orriaren bukaeran bistaratzen den testua \"Bistaratu emaitzak\" desgaituta dagoenean",
"default": "Bukatu da"
},
{
"label": "Feedbackaren goiburua",
"default": "Zure emaitza:",
"description": "Goiburu hau erakutsiko da galdetegiaren bukaeran erabiltzaileak galdera guztiak erantzun dituenean."
},
{
"label": "Feedback orokorra",
"fields": [
{
"widgets": [
{
"label": "Lehenetsia"
}
],
"label": "Zehaztu ezazu edozein puntuazio-tarterako feedback pertsonalizatua",
"description": "Adibidez: 0-2%0 Puntuazio txarra, %21-%91 Tarteko puntuazioa, %91-%100 Puntuazio bikaina!",
"entity": "tartea",
"field": {
"fields": [
{
"label": "Puntuazio tartea"
},
{},
{
"label": "Zehaztutako tartearentzako feedbacka",
"placeholder": "Idatzi ezazu feedbacka"
}
]
}
}
]
},
{
"label": "Feedback zaharra",
"fields": [
{
"label": "Gainditutako galdetegiaren iragarkia",
"description": "Testu hau puntuazioaren gainean agertuko da baldin eta erabiltzaileak galdetigia gainditzen badu."
},
{
"label": "Gainditzearen iruzkina",
"description": "Iruzkin bistaratuko da puntuazioaren ondoren erabiltzaileak galdetegia gainditzen badu."
},
{
"label": "huts egindako galdetegiaren titulua",
"description": "Testu hau bistaratuko da puntuazioaren gainean baldin eta erabiltzaileak galdetegian huts egiten badu."
},
{
"label": "huts egitearen iruzkina",
"description": "Iruzkin hau bistaratuko da puntuazioaren ondoren erabiltzailek galdetegian huts egiten badu."
}
]
},
{
"label": "Soluzioaren botoiaren etiketa",
"default": "Erakutsi soluzioa",
"description": "Soluzioaren botoiaren testua."
},
{
"label": "Saiatu berriro botoiaren etiketa",
"default": "Saiatu berriro",
"description": "Saiatu berriro botoiaren testua."
},
{
"label": "Bukatu botoiaren testua",
"default": "Bukatu"
},
{
"label": "Submit button text",
"default": "Submit"
},
{
"label": "Bistaratu bideoa galdetegiaren emaitzen aurretik"
},
{
"label": "Gaitu bideoa saltatzeko botoia"
},
{
"label": "Saltatu bideoa botoiaren etiketa",
"default": "Saltatu bideoa"
},
{
"label": "Gainditutako bideoa",
"description": "Bideo hau bistaratuko da erabiltzaileak galdetegia gainditzen badu."
},
{
"label": "huts egindako bideoa",
"description": "Bideo hau bistaratuko da erabiltzaileak galdetegian huts egiten badu."
}
]
},
{
"label": "\"Erakutsi soluzioa\" eta \"Saiatu berriro \" ezarpenak",
"fields": [
{
"label": "Erakutsi \"Egiaztatu\" botoiak",
"description": "Aukera honek zehazten du \"Egiaztatu\" botoia galdera guztietan erakutsiko den."
},
{
"label": "Utzi \"Erakutsi soluzioa\" botoia",
"description": "Aukera honek zehazten du \"Bistaratu soluzioa\" botoia erakutsi behar den galdera guztietan, guztientzat desgaitua edo galdera bakoitzerako banaka ezarrita dagoela.",
"options": [
{
"label": "Gaitua"
},
{
"label": "Desgaitua"
}
]
},
{
"label": "Utzi \"Saiatu berriro \" botoia",
"description": "Aukera honek zehazten du \"Osatu berriro\" botoia erakutsi behar den galdera guztietarako, denetarako desgaitua edo galdera bakoitzean ezarrita.",
"options": [
{
"label": "Gaitua"
},
{
"label": "Desgaitua"
}
]
}
]
}
]
}

View File

@ -1,269 +0,0 @@
{
"semantics": [
{
"label": "مقدمه آزمون",
"fields": [
{
"label": "نمایش مقدمه"
},
{
"label": "عنوان",
"description": "این عنوان در بالای متن مقدمه نمایش داده خواهد شد."
},
{
"label": "متن مقدمه",
"description": "این متن قبل از شروع آزمون نمایش داده خواهد شد."
},
{
"label": "متن دکمه شروع",
"default": "شروع آزمون"
},
{
"label": "تصویر پس‌زمینه",
"description": "یک تصویر انتخابی برای قرارگرفتن در پس‌زمینه مقدمه."
}
]
},
{
"label": "تصویر پس‌زمینه",
"description": "یک تصویر انتخابی برای قرار گرفتن در پس‌زمینه مجموعه سوالات."
},
{
"label": "شاخص پیشرفت",
"description": "حالت نمایش شاخص پیشرفت مجموعه سؤالات.",
"options": [
{
"label": "متنی"
},
{
"label": "نقطه‌ای"
}
]
},
{
"label": "درصد قبولی",
"description": "درصد از نمره کل که برای قبولی در این آزمون مورد نیاز است."
},
{
"label": "سؤالات",
"widgets": [
{
"label": "پیش‌فرض"
},
{
"label": "متنی"
}
],
"entity": "سؤال",
"field": {
"label": "نوع سوال",
"description": "کتابخانه برای این سؤال."
}
},
{
"label": "متون نمایشی برای آزمون",
"fields": [
{
"label": "دکمه برگشت",
"default": "سؤال قبل"
},
{
"label": "دکمه بعدی",
"default": "سؤال بعدی"
},
{
"label": "دکمه پایان",
"default": "پایان"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "متن پیشرفت",
"description": "متن مورد استفاده در صورتی که پیشرفت متنی انتخاب شده باشد.",
"default": "سؤال: @current از @total سؤال"
},
{
"label": "متن برای پریدن به یک سوال خاص",
"description": "شما باید به جای شماره سؤال، از جانگه‌دار '%d' استفاده کنید، و به جای تعداد کل سؤالات از %total استفاده کنید.",
"default": "سؤال %d از %total"
},
{
"label": "برچسب سؤال دیالوگ حق نشر",
"default": "سؤال"
},
{
"label": "پیشرفت مبدل متن به گفتار",
"description": "می‌توان از متغیرهای سؤال @current و @total استفاده کرد",
"default": "سؤال @current از @total"
},
{
"label": "متن سؤال پاسخ داده نشده",
"default": "بدون پاسخ"
},
{
"label": "متن سؤال پاسخ داده شده",
"default": "پاسخ داده شده"
},
{
"label": "متن سؤال فعلی",
"default": "سؤال کنونی"
}
]
},
{
"label": "غیرفعال کردن راهبری به عقب",
"description": "این گزینه به شما اجازه می‌دهد که در مجموعه سؤالات به جلو بروید"
},
{
"label": "تصادفی کردن سؤالات",
"description": "با انتخاب این گزینه سؤالات به صورت تصادفی نمایش داده می‌شوند."
},
{
"label": "تعداد سؤالاتی که باید نمایش داده شوند:",
"description": "دسته‌ای از سؤالات را به صورت تصادفی در آزمون نمایش می‌دهد."
},
{
"label": "آزمون به پایان رسید",
"fields": [
{
"label": "نمایش نتایج"
},
{
"label": "نمایش دکمه پاسخ صحیح"
},
{
"label": "نمایش دکمه تلاش مجدد"
},
{
"label": "پیام عدم وجود نتایج",
"description": "متن نمایش داده شده در صفحه آخر، وقتی «نمایش نتایج» غیرفعال است",
"default": "به پایان رسید"
},
{
"label": "سرصفحه بازخورد",
"default": "نتیجه شما:",
"description": "این سرصفحه در انتهای آزمون، وقتی کاربر به همه سؤالات پاسخ داد، نمایش داده خواهد شد."
},
{
"label": "بازخورد سراسری",
"fields": [
{
"widgets": [
{
"label": "پیش‌فرض"
}
],
"label": "برای هر بازه نمره، بازخورد سفارشی تعریف کن",
"description": "مثال: ۰ - ۲۰ ٪ نمره بد، ۲۱ - ۹۱٪ نمره متوسط، ۹۱ - ۱۰۰ ٪ نمره عالی!",
"entity": "بازه",
"field": {
"fields": [
{
"label": "بازه نمره"
},
{},
{
"label": "بازخورد برای بازه نمره تعریف شده",
"placeholder": "بازخورد را پر کنید"
}
]
}
}
]
},
{
"label": "بازخورد پیشین",
"fields": [
{
"label": "تبریک قبولی در آزمون",
"description": "اگر کاربر با موفقیت در آزمون قبول شده باشد، این متن در بالای نمره نمایش خواهد شد."
},
{
"label": "یادداشت قبولی",
"description": "اگر کاربر با موفقیت در آزمون قبول شده باشد، این یادداشت بعد از نمره نمایش داده خواهد شد."
},
{
"label": "عنوان مردودی در آزمون",
"description": "اگر کاربر در آزمون مردود شود، این متن بالای نمره نمایش داده خواهد شد."
},
{
"label": "یادداشت مردودی",
"description": "اگر کاربر در آزمون مردود شده باشد، این یادداشت بعد از نمره نمایش داده خواهد شد."
}
]
},
{
"label": "برچسب دکمه پاسخ صحیح",
"default": "پاسخ صحیح را نشان بده",
"description": "متن برای دکمه پاسخ صحیح."
},
{
"label": "برچسب دکمه تلاش مجدد",
"default": "تلاش مجدد",
"description": "متن برای دکمه تلاش مجدد."
},
{
"label": "متن دکمه پایان",
"default": "پایان"
},
{
"label": "Submit button text",
"default": "Submit"
},
{
"label": "ویدئو را پیش از نتایج آزمون نمایش بده"
},
{
"label": "دکمه پرش از ویدئو را فعال کن"
},
{
"label": "برچسب دکمه پرش از ویدئو",
"default": "پرش از ویدئو"
},
{
"label": "ویدئو قبولی",
"description": "اگر کاربر با موفقیت در آزمون قبول شود، این ویدئو پخش خواهد شد."
},
{
"label": "ویدئو مردودی",
"description": "اگر کاربر در آزمون مردود شود، این ویدئو پخش خواهد شد."
}
]
},
{
"label": "تنظیمات برای نمایش پاسخ صحیح و تلاش مجدد",
"fields": [
{
"label": "نمایش دکمه بررسی",
"description": "این گزینه تعیین می‌کند که آیا دکمه «بررسی» برای همه سؤال‌ها نمایش داده خواهد شد."
},
{
"label": "حذف تنظیم اختصاصی و ایجاد تنظیم سراسری دکمه نمایش پاسخ صحیح",
"description": "این گزینه تعیین می‌کند که آیا دکمه «نمایش پاسخ صحیح» برای همه سؤال‌ها نشان داده خواهد شد، برای همه غیرفعال خواهد شد یا برای هر سؤال تنظیم خواهد شد.",
"options": [
{
"label": "فعال"
},
{
"label": "غیرفعال"
}
]
},
{
"label": "حذف تنظیم اختصاصی و ایجاد تنظیم سراسری دکمه تلاش مجدد",
"description": "این گزینه تعیین می‌کند که آیا دکمه «تلاش مجدد» برای همه سؤال‌ها نشان داده خواهد شد، برای همه غیرفعال خواهد شد یا برای هر سؤال تنظیم خواهد شد.",
"options": [
{
"label": "فعال"
},
{
"label": "غیرفعال"
}
]
}
]
}
]
}

View File

@ -75,10 +75,6 @@
"label": "Painikkeen Lopeta teksti",
"default": "Lopeta"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "Edistyminen",
"description": "Tekstiä käytetään mikäli tekstimuotoinen edistymisen näyttäminen on valittuna.",
@ -133,9 +129,6 @@
{
"label": "Salli painike \"Katso vastaus\""
},
{
"label": "Näytä yritä uudelleen -painike"
},
{
"label": "Teksti kun ei tuloksia",
"description": "Teksti näytetään, kun \"Näytä tulokset\" ei ole valittuna",
@ -174,23 +167,23 @@
]
},
{
"label": "Vanha palaute",
"label": "Old Feedback",
"fields": [
{
"label": "Otsikko onnistuneesti läpäistylle tietovisalle",
"description": "Tämä otsikkoteksti näytetään pisteiden yläpuolella kun käyttäjä on onnistuneesti läpäissyt tietovisan."
"label": "Quiz passed greeting",
"description": "This text will be displayed above the score if the user has successfully passed the quiz."
},
{
"label": "Läpäisykommentti",
"description": "Tämä kommentti näytetään pisteiden perässä jos henkilö on läpäissyt tietovisan onnistuneesti."
"label": "Passed comment",
"description": "This comment will be displayed after the score if the user has successfully passed the quiz."
},
{
"label": "Otsikko epäonnistuneelle tietovisalle",
"description": "Tämä otsikkoteksti näytetään pisteiden yläpuolella kun käyttäjä on epäonnistunut läpäisemään tietovisan."
"label": "Quiz failed title",
"description": "This text will be displayed above the score if the user has failed the quiz."
},
{
"label": "Epäonnistuneen yrityksen kommentti",
"description": "Tämä kommentti näytetään pisteiden perässä jos henkilö ei ole läpäissyt tietovisaa"
"label": "Failed comment",
"description": "This comment will be displayed after the score if the user has failed the quiz."
}
]
},
@ -208,10 +201,6 @@
"label": "Painikkeen \"Lopeta\" teksti",
"default": "Lopeta"
},
{
"label": "Submit button text",
"default": "Submit"
},
{
"label": "Näytä video ennen tuloksia"
},
@ -236,8 +225,8 @@
"label": "Asetukset \"Näytä vastaus\" ja \"Yritä uudelleen\" painikkeille",
"fields": [
{
"label": "Näytä \"Check\" painike",
"description": "Tämä asetus määrittää näytetäänkö \"Check\" painike kaikkien kysymysten yhteydessä."
"label": "Show \"Check\" buttons",
"description": "This option determines if the \"Check\" button will be shown for all questions."
},
{
"label": "\"Näytä vastaus\"-painike",
@ -266,4 +255,4 @@
]
}
]
}
}

View File

@ -75,10 +75,6 @@
"label": "Bouton Fin",
"default": "Terminer"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "Texte de progression",
"description": "Texte utilisé si la progression textuelle a été sélectionnée.",
@ -133,9 +129,6 @@
{
"label": "Afficher le bouton \"Solution\"."
},
{
"label": "Display retry button"
},
{
"label": "Message si pas de résultats",
"description": "Texte affiché sur la page finale si l'option \"Afficher les résultats\" est désactivée.",
@ -208,10 +201,6 @@
"label": "Texte pour le bouton de fin",
"default": "Terminer"
},
{
"label": "Submit button text",
"default": "Submit"
},
{
"label": "Afficher une vidéo avant l'affichage des résultats du quiz"
},

View File

@ -1,269 +0,0 @@
{
"semantics": [
{
"label": "Quiz introduction",
"fields": [
{
"label": "Display introduction"
},
{
"label": "Title",
"description": "This title will be displayed above the introduction text."
},
{
"label": "Introduction text",
"description": "This text will be displayed before the quiz starts."
},
{
"label": "Start button text",
"default": "Tosaigh Tráth na gCeist."
},
{
"label": "Background image",
"description": "An optional background image for the introduction."
}
]
},
{
"label": "Background image",
"description": "An optional background image for the Question set."
},
{
"label": "Progress indicator",
"description": "Question set progress indicator style.",
"options": [
{
"label": "Textual"
},
{
"label": "Dots"
}
]
},
{
"label": "Pass percentage",
"description": "Percentage of Total score required for passing the quiz."
},
{
"label": "Questions",
"widgets": [
{
"label": "Default"
},
{
"label": "Textual"
}
],
"entity": "question",
"field": {
"label": "Question type",
"description": "Library for this question."
}
},
{
"label": "Interface texts in quiz",
"fields": [
{
"label": "Back button",
"default": "Previous question"
},
{
"label": "Next button",
"default": "Next question"
},
{
"label": "Finish button",
"default": "Críochnaigh"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "Progress text",
"description": "Text used if textual progress is selected.",
"default": "Ceist: @current as @total"
},
{
"label": "Label for jumping to a certain question",
"description": "You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
"default": "Question %d of %total"
},
{
"label": "Copyright dialog question label",
"default": "Question"
},
{
"label": "Readspeaker progress",
"description": "May use @current and @total question variables",
"default": "Question @current of @total"
},
{
"label": "Unanswered question text",
"default": "Unanswered"
},
{
"label": "Answered question text",
"default": "Freagartha"
},
{
"label": "Current question text",
"default": "An cheist seo"
}
]
},
{
"label": "Disable backwards navigation",
"description": "This option will only allow you to move forward in Question Set"
},
{
"label": "Randomize questions",
"description": "Enable to randomize the order of questions on display."
},
{
"label": "Number of questions to be shown:",
"description": "Create a randomized batch of questions from the total."
},
{
"label": "Quiz finished",
"fields": [
{
"label": "Display results"
},
{
"label": "Display solution button"
},
{
"label": "Display retry button"
},
{
"label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled",
"default": "Críochnaighe"
},
{
"label": "Feedback heading",
"default": "Do thoradh:",
"description": "This heading will be displayed at the end of the quiz when the user has answered all questions."
},
{
"label": "Overall Feedback",
"fields": [
{
"widgets": [
{
"label": "Default"
}
],
"label": "Define custom feedback for any score range",
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
"entity": "range",
"field": {
"fields": [
{
"label": "Score Range"
},
{},
{
"label": "Feedback for defined score range",
"placeholder": "Fill in the feedback"
}
]
}
}
]
},
{
"label": "Old Feedback",
"fields": [
{
"label": "Quiz passed greeting",
"description": "This text will be displayed above the score if the user has successfully passed the quiz."
},
{
"label": "Passed comment",
"description": "This comment will be displayed after the score if the user has successfully passed the quiz."
},
{
"label": "Quiz failed title",
"description": "This text will be displayed above the score if the user has failed the quiz."
},
{
"label": "Failed comment",
"description": "This comment will be displayed after the score if the user has failed the quiz."
}
]
},
{
"label": "Solution button label",
"default": "Taispeáin an freagra",
"description": "Text for the solution button."
},
{
"label": "Retry button label",
"default": "Triail arís",
"description": "Text for the retry button."
},
{
"label": "Finish button text",
"default": "Críochnaigh"
},
{
"label": "Submit button text",
"default": "Submit"
},
{
"label": "Display video before quiz results"
},
{
"label": "Enable skip video button"
},
{
"label": "Skip video button label",
"default": "Scipeáil físeán"
},
{
"label": "Passed video",
"description": "This video will be played if the user successfully passed the quiz."
},
{
"label": "Fail video",
"description": "This video will be played if the user fails the quiz."
}
]
},
{
"label": "Settings for \"Seiceáil\", \"Taispeáin an freagra\" and \"Retry\" buttons",
"fields": [
{
"label": "Show \"Seiceáil\" buttons",
"description": "This option determines if the \"Seiceáil\" button will be shown for all questions."
},
{
"label": "Override \"Taispeáin an freagra\" button",
"description": "This option determines if the \"Taispeáin an freagra\" button will be shown for all questions, disabled for all or configured for each question individually.",
"options": [
{
"label": "Enabled"
},
{
"label": "Disabled"
}
]
},
{
"label": "Override \"Retry\" button",
"description": "This option determines if the \"Retry\" button will be shown for all questions, disabled for all or configured for each question individually.",
"options": [
{
"label": "Enabled"
},
{
"label": "Disabled"
}
]
}
]
}
]
}

View File

@ -1,269 +0,0 @@
{
"semantics": [
{
"label": "Introdución ao cuestionario",
"fields": [
{
"label": "Amosar introdución"
},
{
"label": "Título",
"description": "Este título amosarase enriba do texto de introdución."
},
{
"label": "Texto de introdución",
"description": "Este texto amosarase antes de que empece o questionario."
},
{
"label": "Texto para o botón empezar",
"default": "Empezar o Cuestionario"
},
{
"label": "Imaxe de fondo",
"description": "Unha imaxe de fondo opcional para a introdución."
}
]
},
{
"label": "Imaxe de fondo",
"description": "Unha imaxe de fondo opcional para o grupo de preguntas."
},
{
"label": "Indicador de progreso",
"description": "Estilo do indicador de progreso para o grupo de preguntas.",
"options": [
{
"label": "Textual"
},
{
"label": "Puntos"
}
]
},
{
"label": "Porcentaxe para aprobar",
"description": "Porcentaxe da puntuación total requirida para aprobar o cuestionario."
},
{
"label": "Preguntas",
"widgets": [
{
"label": "Por defecto"
},
{
"label": "Textual"
}
],
"entity": "pregunta",
"field": {
"label": "Tipo de pregunta",
"description": "Biblioteca para esta pregunta."
}
},
{
"label": "Textos da interface no cuestionario",
"fields": [
{
"label": "Botón atrás",
"default": "Pregunta anterior"
},
{
"label": "Botón seguinte",
"default": "Pregunta seguinte"
},
{
"label": "Botón rematar",
"default": "Rematar"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "Texto de progreso",
"description": "Texto usado ao seleccionar progreso textual.",
"default": "Pregunta: @current de @total preguntas"
},
{
"label": "Etiqueta para saltar a unha pregunta determinada",
"description": "Debes usar o marcador '%d' en lugar do número da pregunta, e %total en lugar do número total de preguntas.",
"default": "Pregunta %d de %total"
},
{
"label": "Etiqueta para o diálogo de Copyright da pregunta",
"default": "Pregunta"
},
{
"label": "Progreso do lector de pantalla",
"description": "Pódense usar as variables de pregunta @current e @total",
"default": "Pregunta @current de @total"
},
{
"label": "Texto para preguntas non contestadas",
"default": "Non contestada"
},
{
"label": "Texto para preguntas contestadas",
"default": "Contestada"
},
{
"label": "Texto para a pregunta actual",
"default": "Pregunta actual"
}
]
},
{
"label": "Desactivar a navegación cara atrás",
"description": "Este opción só permitirá o desprazamento cara adiante no Conxunto de Preguntas"
},
{
"label": "Aleatorizar as preguntas",
"description": "Activar para facer aleatoria a orde das preguntas amosadas."
},
{
"label": "Número de preguntas amosadas:",
"description": "Crea un grupo de preguntas aleatorias do total de preguntas."
},
{
"label": "Cuestionario rematado",
"fields": [
{
"label": "Amosar resultados"
},
{
"label": "Amosar botón de solución"
},
{
"label": "Amosar o botón reintentar"
},
{
"label": "Mensaxe para resultado non atopado",
"description": "Texto amosado ao final da páxina cando \"Amosar resultados\" está desactivado",
"default": "Rematado"
},
{
"label": "Cabeceira da retroalimentación",
"default": "O teu resultado:",
"description": "Amosarase esta cabeceira ao final do cuestionario cando o usuario acabe de contestar todas as preguntas."
},
{
"label": "Retroalimentación Xeral",
"fields": [
{
"widgets": [
{
"label": "Por defecto"
}
],
"label": "Define a retroalimentación personalizada para calquera rango de puntuación",
"description": "Exemplo: 0-20% Puntuación mala, 21-91% Puntuación media, 91-100% Puntuación xenial!",
"entity": "rango",
"field": {
"fields": [
{
"label": "Rango de puntuación"
},
{},
{
"label": "Retroalimentación para o rango de puntuación definido",
"placeholder": "Escribe a retroalimentación"
}
]
}
}
]
},
{
"label": "Antiga Retroalimentación",
"fields": [
{
"label": "Título para cuestionario aprobado",
"description": "Amosarase este texto enriba da puntuación se o ususario aproba o cuestionario."
},
{
"label": "Comentario para aprobado",
"description": "Este comentario amosarase despois da puntuación se o usuario aproba o cuestionario."
},
{
"label": "Título para cuestionario non aprobado",
"description": "Este texto amosarase enriba da puntuación se o usuario non aproba o cuestionario."
},
{
"label": "Comentario para non a probado",
"description": "Este comentario amosarase despois da puntuación seo usuario non aproba o cuestionario."
}
]
},
{
"label": "Etiqueta do botón da solución",
"default": "Amosar a solución",
"description": "Texto para o botón da solución."
},
{
"label": "Etiqueta para o botón reintentar",
"default": "Reintentar",
"description": "Texto para o botón reintentar."
},
{
"label": "Texto para o botón rematar",
"default": "Rematar"
},
{
"label": "Submit button text",
"default": "Submit"
},
{
"label": "Amosar vídeo antes dos resultados do cuestionario"
},
{
"label": "Activar botón saltar vídeo"
},
{
"label": "Etiqueta para o botón saltar vídeo",
"default": "Saltar vídeo"
},
{
"label": "Vídeo para aprobados",
"description": "Reproducirase este vídeo se o usuario aproba o cuestionario."
},
{
"label": "Vídeo para non aprobados",
"description": "Reproducirase este vídeo se o usuario non aproba o cuestionario."
}
]
},
{
"label": "Configuración para os botóns \"Amosar solución\" e \"Reintentar\"",
"fields": [
{
"label": "Amosar botóns \"Comprobar\"",
"description": "Esta opción determina se se amosa o botón \"Comprobar\" para todas as preguntas."
},
{
"label": "Anular botón \"Amosar solución\"",
"description": "Esta opción determina se se amosa o botón \"Amosar solución\" para todas as preguntas, se desactiva para todas ou se configura para cada unha individualmente.",
"options": [
{
"label": "Activado"
},
{
"label": "Desactivado"
}
]
},
{
"label": "Anular botón \"Reintentar\"",
"description": "Esta opción determina se se amosa o botón \"Reintentar\" para todas as preguntas, se desactíva para todas ou se configura para cada unha individualmente.",
"options": [
{
"label": "Activado"
},
{
"label": "Desactivado"
}
]
}
]
}
]
}

View File

@ -8,29 +8,29 @@
},
{
"label": "כותרת",
"description": "כותרת זו תוצג מעל תיאור המבוא."
"description": "כותרת זו תוצג מעל תיאור המבוא"
},
{
"label": "תיאור מבוא",
"description": "תיאור זה יוצג לפני שהחידון מתחיל."
"description": "תיאור זה יוצג לפני שהחידון מתחיל"
},
{
"label": "תיאור כפתור ההתחלה",
"label": "תיאור כפתור ההתחלה ",
"default": "התחילו את החידון"
},
{
"label": "תמונת רקע",
"description": "תמונת רקע אפשרית למבוא."
"description": "תמונת רקע אפשרית למבוא"
}
]
},
{
"label": "תמונת רקע",
"description": "תמונת רקע אפשרית עבור הגדרות השאלה."
"description": "תמונת רקע אפשרית עבור הגדרות השאלה"
},
{
"label": "מחוון התקדמות",
"description": "הגדרות שאלה מסוג מחוון התקדמות.",
"description": "הגדרות שאלה מסוג מחוון התקדמות",
"options": [
{
"label": "מילולי"
@ -57,7 +57,7 @@
"entity": "שאלה",
"field": {
"label": "סוג שאלה",
"description": "ספריה עבור שאלה זו."
"description": "ספריה עבור שאלה זו"
}
},
{
@ -75,14 +75,10 @@
"label": "כפתור סיום",
"default": "סיום"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "תוכן מתקדם",
"description": "תוכן שבו נעשה שימוש אם תוכן מתקדם נבחר.",
"default": "שאלה: current@ מתוך total@ שאלות"
"description": "תוכן שבו נעשה שימוש אם תוכן מתקדם נבחר",
"default": ""
},
{
"label": "תווית עבור קפיצה לשאלה מסוימת",
@ -95,7 +91,7 @@
},
{
"label": "Readspeaker progress",
"description": "ניתן להשתמש במשתני השאלה current@ ו- total@",
"description": "May use @current and @total question variables",
"default": "שאלה @current מתוך @total"
},
{
@ -114,15 +110,15 @@
},
{
"label": "ניווט קדימה בלבד",
"description": "הגדרה מאפשרת התקדמות ומעבר לשאלה הבאה בלבד"
"description": "הגדרה מאפשרת התקדמות ומעבר לשאלה הבאה בלבד."
},
{
"label": "שאלות אקראיות",
"description": "מאפשר תצוגת סדר השאלות באופן אקראי."
"description": "מאפשר תצוגת סדר השאלות באופן אקראי"
},
{
"label": "מספר השאלות שיוצגו:",
"description": "יצירת סדרה של שאלות אקראיות מסך כל השאלות."
"description": "יצירת סדרה של שאלות אקראיות מסך כל השאלות"
},
{
"label": "החידון הסתיים",
@ -133,9 +129,6 @@
{
"label": "כפתור הצגת הפתרון"
},
{
"label": "הצגת כפתור \"נסו שוב\""
},
{
"label": "אין הודעת תוצאות",
"description": "תוכן מוצג בסוף העמוד כאשר מוצג \"הציגו תוצאות\"",
@ -144,7 +137,7 @@
{
"label": "כותרת המשוב",
"default": "התוצאה שלכם:",
"description": "כותרת זו תוצג בסיום החידון כאשר הנבחן ענה על כל השאלות."
"description": "כותרת זו תוצג בסיום החידון כאשר הנבחן ענה על כל השאלות"
},
{
"label": "משוב כולל",
@ -156,7 +149,7 @@
}
],
"label": "יש להגדיר משוב מותאם אישית לכל טווח ניקוד",
"description": "לדוגמא:0-20% ציון לא טוב,21-91% ציון ממוצע,91-100% ציון מעולה!",
"description": "לדוגמא:0-20% ציון לא טוב,21-91% ציון ממוצע,91-100% ציון מעולה!\"",
"entity": "טווח",
"field": {
"fields": [
@ -178,40 +171,36 @@
"fields": [
{
"label": "ברכת הצלחה בחידון",
"description": "תוכן זה יוצג מעל הניקוד אם הנבחן עבר בהצלחה את החידון."
"description": "תוכן זה יוצג מעל הניקוד אם הנבחן עבר בהצלחה את החידון"
},
{
"label": "הערה עבור הצלחה בחידון",
"description": "הערה זו תוצג מעל הניקוד, אם הנבחן עבר בהצלחה את החידון."
"label": "הערה עבור הצלחה בחידון ",
"description": "הערה זו תוצג מעל הניקוד, אם הנבחן עבר בהצלחה את החידון"
},
{
"label": "כותרת כשלון בחידון",
"description": "תוכן זה יוצג מעל הניקוד אם הנבחן נכשל בחידון."
"description": "תוכן זה יוצג מעל הניקוד אם הנבחן נכשל בחידון"
},
{
"label": "הערה עבור כשלון בחידון",
"description": "הערה זו תוצג מעל הניקוד, אם הנבחן נכשל בחידון."
"description": "הערה זו תוצג מעל הניקוד, אם הנבחן נכשל בחידון"
}
]
},
{
"label": "\"תווית כפתור \"הפתרון",
"default": "הציגו פתרון",
"description": "תאור עבור כפתור \"הפתרון\"."
"description": "\"תוכן עבור כפתור \"הפתרון"
},
{
"label": "תווית כפתור נסו שוב",
"default": "נסו בשנית",
"description": "תוכן עבור כפתור \"נסו שוב\"."
"description": "\"תוכן עבור כפתור \"נסו שוב"
},
{
"label": "\"תוכן כפתור \"סיום",
"default": "סיום"
},
{
"label": "Submit button text",
"default": "Submit"
},
{
"label": "יש להציג וידאו לפני תוצאות החידון"
},
@ -224,11 +213,11 @@
},
{
"label": "וידאו של הצלחה בחידון",
"description": "וידאו זה יופעל במידה והנבחן יעבור בהצלחה את החידון."
"description": "וידאו זה יופעל במידה והנבחן יעבור בהצלחה את החידון"
},
{
"label": "וידאו של כישלון בחידון",
"description": "סרטון זה יופעל במידה והנבחן ייכשל בחידון."
"description": "וידאו זה יופעל במידה והנבחן יכשל בחידון"
}
]
},
@ -236,12 +225,12 @@
"label": "הגדרות עבור כפתורי \"הציגו פתרון\" ו \"נסו בשנית\"",
"fields": [
{
"label": "הציגו כפתורי \"נבחר\"",
"label": "הציגו כפתורי \"נבחר\" ",
"description": "אפשרות זו קובעת אם הכפתור \"נבחר\" יוצג עבור כל השאלות."
},
{
"label": "עדכון כפתור \"תצוגת פתרון\"",
"description": "אפשרות זו קובעת האם הכפתור \"הצגת פתרון\" יוצג עבור כל השאלות, יכובה לכולן או יוגדר לכל שאלה בנפרד.",
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
"options": [
{
"label": "פעיל"
@ -253,7 +242,7 @@
},
{
"label": "עדכון כפתור \"נסו שוב\"",
"description": "אפשרות זו קובעת אם הכפתור \"נסו שוב\" יוצג עבור כל השאלות, יושבת עבור כל השאלות או יוגדר עבור כל שאלה בנפרד.",
"description": "אפשרות זו קובעת אם הכפתור \"נסו שוב\" יוצג עבור כל השאלות, יושבת עבור כל השאלות או יוגדר עבור כל שאלה בנפרד.\n",
"options": [
{
"label": "פעיל"
@ -266,4 +255,4 @@
]
}
]
}
}

View File

@ -75,10 +75,6 @@
"label": "Finish button",
"default": "Finish"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "Progress text",
"description": "Text used if textual progress is selected.",
@ -133,9 +129,6 @@
{
"label": "Display solution button"
},
{
"label": "Display retry button"
},
{
"label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled",
@ -208,10 +201,6 @@
"label": "Finish button text",
"default": "Finish"
},
{
"label": "Submit button text",
"default": "Submit"
},
{
"label": "Display video before quiz results"
},
@ -228,7 +217,7 @@
},
{
"label": "Fail video",
"description": "This video will be played if the user fails the quiz."
"description": "This video will be played if the user failes the quiz."
}
]
},

View File

@ -1,36 +1,36 @@
{
"semantics": [
{
"label": "Introduzione al compito",
"label": "Introduzione al quiz",
"fields": [
{
"label": "Mostra introduzione"
"label": "Visualizza l'introduzione"
},
{
"label": "Titolo",
"description": "Questo titolo sarà visualizzato sopra il testo introduttivo"
"description": "Questo titolo sarà visualizzato sopra il testo introduttivo."
},
{
"label": "Testo di introduzione",
"description": "Questo testo sarà visualizzato prima dell'inizio della prova"
"description": "Questo testo sarà visualizzato prima dell'inizio del quiz."
},
{
"label": "Testo del pulsante di avvio",
"default": "Inizia la prova"
"label": "Testo pulsante di avvio",
"default": "Inizia il quiz"
},
{
"label": "Immagine di sfondo",
"description": "Immagine di sfondo facoltativa per l'introduzione"
"description": "Immagine di sfondo facoltativa per l'introduzione."
}
]
},
{
"label": "Immagine di sfondo",
"description": "Immagine di sfondo facoltativa per il gruppo di domande"
"description": "Immagine di sfondo facoltativa per il gruppo di domande."
},
{
"label": "Indicatore di avanzamento",
"description": "Stile dell'indicatore di avanzamento del gruppo di domande",
"description": "Stile dell'indicatore di avanzamento del gruppo di domande.",
"options": [
{
"label": "Testuale"
@ -42,7 +42,7 @@
},
{
"label": "Percentuale di superamento della prova",
"description": "Percentuale del punteggio totale richiesto per superare la prova"
"description": "Percentuale del punteggio totale richiesto per passare il quiz."
},
{
"label": "Domande",
@ -57,36 +57,32 @@
"entity": "domanda",
"field": {
"label": "Tipo di domanda",
"description": "Libreria per questa domanda"
"description": "Libreria per questa domanda."
}
},
{
"label": "Testi di interfaccia nel compito",
"label": "Testi di interfaccia nel quiz",
"fields": [
{
"label": "Pulsante indietro",
"default": "Domanda precedente"
},
{
"label": "Pulsante avanti",
"label": "Pulsante Avanti",
"default": "Prossima domanda"
},
{
"label": "Pulsante fine",
"label": "Pulsante Fine",
"default": "Finito"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "Testo di avanzamento",
"description": "Testo usato se è selezionato l'avanzamento testuale",
"description": "Testo usate se il testo di avanzamento è selezionato.",
"default": "Domanda: @current di @total domande totali"
},
{
"label": "Etichetta per saltare a una determinata domanda",
"description": "Devi usare il segnaposto '%d' anziché il numero di domanda, e %total invece del numero totale delle domande",
"description": "Devi usare il segnaposto '%d' anziché il numero di domanda, e %total invece del numero totale delle domande.",
"default": "Domanda %d di %total"
},
{
@ -94,7 +90,7 @@
"default": "Domanda"
},
{
"label": "Stato di avanzamento del lettore vocale",
"label": "Progresso del dispositvo di riproduzione vocale",
"description": "Puoi utilizzare le variabili di domanda @current e @total",
"default": "Domanda @current di @total"
},
@ -114,18 +110,18 @@
},
{
"label": "Disattiva la navigazione all'indietro",
"description": "Questa opzione ti permetterà solo di spostarti in avanti in Question Set"
"description": "Questa opzione ti permetterà solo di spostarti in avanti in Question Set (Insieme di domande)"
},
{
"label": "Rendi casuale l'ordine delle domande",
"description": "Abilita per rendere casuale l'ordine delle domande sullo schermo"
"description": "Abilita per rendere casuale l'ordine delle domande visualizzate."
},
{
"label": "Numero di domande da mostrare:",
"description": "Crea un raggruppamento casuale dal totale delle domande"
"description": "Crea un raggruppamento casuale dal totale delle domande."
},
{
"label": "Compito terminato",
"label": "Quiz terminato",
"fields": [
{
"label": "Visualizza i risultati"
@ -133,18 +129,15 @@
{
"label": "Pulsante visualizza soluzione"
},
{
"label": "Mostra pulsante Riprova"
},
{
"label": "Messaggio di nessun risultato",
"description": "Testo mostrato nella pagina finale quando \"Visualizza risultati\" è disattivato",
"description": "Testo visualizzato nella pagina finale quando \"Visualizza risultati\" è disattivato",
"default": "Finito"
},
{
"label": "Intestazione di feedback",
"default": "Il tuo risultato:",
"description": "Questa intestazione sarà mostrata alla fine del compito, dopo che l'utente avrà risposto a tutte le domande"
"description": "Questa intestazione sarà visualizzata alla fine del quiz, dopo che l'utente avrà risposto a tutte le domande."
},
{
"label": "Feedback generale",
@ -152,11 +145,11 @@
{
"widgets": [
{
"label": "Predefinito"
"label": "Default"
}
],
"label": "Definisci un feedback personalizzato per ogni intervallo di punteggio",
"description": "Esempio: 0-20%, Punteggio scarso; 21-90%, Punteggio medio; 91-100% Punteggio ottimo!",
"description": "Esempio: 0-20%, cattivo punteggio; 21-91% punteggio nella media; 91-100% ottimo punteggio!",
"entity": "Intervallo",
"field": {
"fields": [
@ -177,86 +170,82 @@
"label": "Vecchio feedback",
"fields": [
{
"label": "Messaggio di superamento della prova",
"description": "Questo testo sarà mostrato sopra il punteggio se l'utente ha superato la prova con successo"
"label": "Messaggio di superamento quiz",
"description": "Questo testo verrà visualizzato sopra il punteggio se l'utente ha superato con successo il quiz."
},
{
"label": "Commento di superamento della prova",
"description": "Questo commento sarà mostrato dopo il punteggio se l'utente ha superato la prova con successo"
"label": "Commento di superamento quiz",
"description": "Questo commento verrà visualizzato dopo il punteggio se l'utente ha superato con successo il quiz."
},
{
"label": "Titolo per prova fallita",
"description": "Questo messaggio sarà mostrato sopra il punteggio se l'utente non ha superato la prova"
"label": "Titolo quiz fallito",
"description": "Questo testo verrà visualizzato sopra il punteggio se l'utente non ha superato il quiz."
},
{
"label": "Commento per prova fallita",
"description": "Questo commento sarà mostrato dopo il punteggio se l'utente non ha superato la prova"
"label": "Commento quiz fallito",
"description": "Questo commento verrà visualizzato dopo il punteggio se l'utente non ha superato il quiz."
}
]
},
{
"label": "Etichetta del pulsante \"Mostra soluzione\"",
"default": "Mostra soluzione",
"description": "Testo per il pulsante \"Mostra soluzione\""
"label": "Etichetta pulsante Soluzione",
"default": "Mostra la soluzione",
"description": "Testo per il pulsante Soluzione."
},
{
"label": "Etichetta del pulsante \"Riprova\"",
"label": "Etichetta del pulsante Riprova",
"default": "Riprova",
"description": "Testo per il pulsante \"Riprova\"."
"description": "Testo per il pulsante Riprova."
},
{
"label": "Testo del pulsante di fine prova",
"label": "Testo pulsante Fine",
"default": "Finito"
},
{
"label": "Submit button text",
"default": "Submit"
"label": "Visualizza il video prima dei risultati del quiz"
},
{
"label": "Mostra il video prima dei risultati della prova"
"label": "Abilita pulsante Salta video"
},
{
"label": "Pulsante per attivare \"Salta video\""
},
{
"label": "Etichetta del pulsante \"Salta video\"",
"label": "Etichetta pulsante Salta video",
"default": "Salta video"
},
{
"label": "Video per superamento della prova",
"description": "Questo video sarà mostrato sopra il punteggio se l'utente ha superato la prova con successo"
"label": "Video di superamento quiz",
"description": "Questo video verrà visualizzato sopra il punteggio se l'utente ha superato con successo il quiz."
},
{
"label": "Video per mancato superamento della prova",
"description": "Questo testo sarà mostrato se l'utente non ha superato la prova"
"label": "Video quiz fallito",
"description": "Questo testo verrà visualizzato se l'utente non ha superato il quiz."
}
]
},
{
"label": "Impostazioni per i pulsanti \"Mostra soluzione\" e \"Riprova\"",
"label": "Impostazioni per i pulsanti \"Mostra soluzione\" e \"Riprova\".",
"fields": [
{
"label": "Mostra pulsanti di \"Verifica\"",
"description": "Questa opzione rende disponibile il pulsante di verifica su ogni domanda"
"label": "Show \"Check\" buttons",
"description": "This option determines if the \"Check\" button will be shown for all questions."
},
{
"label": "Sovrascrivi il pulsante \"Mostra soluzione\"",
"description": "Questa opzione stabilisce se il pulsante \"Mostra soluzione\" sarà mostrato su tutte le domande, su nessuna o se decidere caso per caso",
"label": "Sovrascrivi il pulsante Mostra soluzione",
"description": "Questa opzione determina se il pulsante \"Mostra soluzione\" sarà visualizzato per tutte le domande, disabilitato per tutti o configurato individualmente per ogni domanda.",
"options": [
{
"label": "Attivato"
},
{
"label": "Disattivato"
"label": "Disabilitato"
}
]
},
{
"label": "Sovrascrivi il pulsante \"Riprova\"",
"description": "Questa opzione stabilisce se il pulsante \"Riprova\" sarà mostrato su tutte le domande, su nessuna o se sarà configurato caso per caso",
"description": "Questa opzione determina se il pulsante \"Riprova\" sarà visualizzato per tutte le domande, disabilitato per tutti o configurato individualmente per ogni domanda.",
"options": [
{
"label": "Attivato"
"label": "Attivo"
},
{
"label": "Disattivato"
@ -266,4 +255,4 @@
]
}
]
}
}

View File

@ -75,10 +75,6 @@
"label": "完了ボタン",
"default": "完了"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "進行状況のテキスト",
"description": "テキストによる進行状況を選択した場合に使用するテキスト。",
@ -133,9 +129,6 @@
{
"label": "解ボタンを表示"
},
{
"label": "Display retry button"
},
{
"label": "結果のメッセージはありません",
"description": "「結果を表示」が無効のとき最後のページにに表示されるテキスト",
@ -208,10 +201,6 @@
"label": "完了ボタンのテキスト",
"default": "完了"
},
{
"label": "Submit button text",
"default": "Submit"
},
{
"label": "クイズの結果の前にビデオを表示"
},

View File

@ -1,269 +0,0 @@
{
"semantics": [
{
"label": "Quiz introduction",
"fields": [
{
"label": "Display introduction"
},
{
"label": "Title",
"description": "This title will be displayed above the introduction text."
},
{
"label": "Introduction text",
"description": "This text will be displayed before the quiz starts."
},
{
"label": "Start button text",
"default": "ចាប់ផ្តើមកម្រងសំណួរ"
},
{
"label": "Background image",
"description": "An optional background image for the introduction."
}
]
},
{
"label": "Background image",
"description": "An optional background image for the Question set."
},
{
"label": "Progress indicator",
"description": "Question set progress indicator style.",
"options": [
{
"label": "Textual"
},
{
"label": "Dots"
}
]
},
{
"label": "Pass percentage",
"description": "Percentage of Total score required for passing the quiz."
},
{
"label": "Questions",
"widgets": [
{
"label": "Default"
},
{
"label": "Textual"
}
],
"entity": "question",
"field": {
"label": "Question type",
"description": "Library for this question."
}
},
{
"label": "Interface texts in quiz",
"fields": [
{
"label": "Back button",
"default": "សំណួរមុន"
},
{
"label": "Next button",
"default": "សំណួរបន្ទាប់"
},
{
"label": "Finish button",
"default": "បញ្ចប់"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "Progress text",
"description": "Text used if textual progress is selected.",
"default": "សំណួរ: @current ចំណោម @total សំណួរ"
},
{
"label": "Label for jumping to a certain question",
"description": "You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
"default": "សំណួរទី %d ចំណោម %total"
},
{
"label": "Copyright dialog question label",
"default": "សំណួរ"
},
{
"label": "Readspeaker progress",
"description": "May use @current and @total question variables",
"default": "សំណួរទី @current ចំណោម @total"
},
{
"label": "Unanswered question text",
"default": "មិនបានឆ្លើយ"
},
{
"label": "Answered question text",
"default": "បានឆ្លើយ"
},
{
"label": "Current question text",
"default": "សំណួរបច្ចុប្បន្ន"
}
]
},
{
"label": "Disable backwards navigation",
"description": "This option will only allow you to move forward in Question Set"
},
{
"label": "Randomize questions",
"description": "Enable to randomize the order of questions on display."
},
{
"label": "Number of questions to be shown:",
"description": "Create a randomized batch of questions from the total."
},
{
"label": "Quiz finished",
"fields": [
{
"label": "Display results"
},
{
"label": "Display solution button"
},
{
"label": "Display retry button"
},
{
"label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled",
"default": "បានបញ្ចប់"
},
{
"label": "Feedback heading",
"default": "លទ្ធផលរបស់អ្នក:",
"description": "This heading will be displayed at the end of the quiz when the user has answered all questions."
},
{
"label": "Overall Feedback",
"fields": [
{
"widgets": [
{
"label": "Default"
}
],
"label": "Define custom feedback for any score range",
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
"entity": "range",
"field": {
"fields": [
{
"label": "Score Range"
},
{},
{
"label": "Feedback for defined score range",
"placeholder": "Fill in the feedback"
}
]
}
}
]
},
{
"label": "Old Feedback",
"fields": [
{
"label": "Quiz passed greeting",
"description": "This text will be displayed above the score if the user has successfully passed the quiz."
},
{
"label": "Passed comment",
"description": "This comment will be displayed after the score if the user has successfully passed the quiz."
},
{
"label": "Quiz failed title",
"description": "This text will be displayed above the score if the user has failed the quiz."
},
{
"label": "Failed comment",
"description": "This comment will be displayed after the score if the user has failed the quiz."
}
]
},
{
"label": "Solution button label",
"default": "បង្ហាញចម្លើយត្រឹមត្រូវ",
"description": "Text for the solution button."
},
{
"label": "Retry button label",
"default": "សាកម្តងទៀត",
"description": "Text for the retry button."
},
{
"label": "Finish button text",
"default": "បញ្ចប់"
},
{
"label": "Submit button text",
"default": "Submit"
},
{
"label": "Display video before quiz results"
},
{
"label": "Enable skip video button"
},
{
"label": "Skip video button label",
"default": "រំលងវីដេអូ"
},
{
"label": "Passed video",
"description": "This video will be played if the user successfully passed the quiz."
},
{
"label": "Fail video",
"description": "This video will be played if the user fails the quiz."
}
]
},
{
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
"fields": [
{
"label": "Show \"Check\" buttons",
"description": "This option determines if the \"Check\" button will be shown for all questions."
},
{
"label": "Override \"Show Solution\" button",
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
"options": [
{
"label": "Enabled"
},
{
"label": "Disabled"
}
]
},
{
"label": "Override \"Retry\" button",
"description": "This option determines if the \"Retry\" button will be shown for all questions, disabled for all or configured for each question individually.",
"options": [
{
"label": "Enabled"
},
{
"label": "Disabled"
}
]
}
]
}
]
}

View File

@ -1,172 +1,165 @@
{
"semantics": [
{
"label": "퀴즈 소개",
"label": "Quiz introduction",
"fields": [
{
"label": "소개 표시"
"label": "Display introduction"
},
{
"label": "제목",
"description": "이 제목은 소개 텍스트 위에 표시됨."
"label": "Title",
"description": "This title will be displayed above the introduction text."
},
{
"label": "소개 글",
"description": "이 텍스트는 퀴즈가 시작하기 전에 표시됨."
"label": "Introduction text",
"description": "This text will be displayed before the quiz starts."
},
{
"label": "시작 단추 텍스트",
"default": "퀴즈 시작"
"label": "Start button text",
"default": "Start Quiz"
},
{
"label": "배경 이미지",
"description": "소개 배경 이미지(선택사항)"
"label": "Background image",
"description": "An optional background image for the introduction."
}
]
},
{
"label": "배경 이미지",
"description": "문제 세트 배경 이미지(선택사항)"
"label": "Background image",
"description": "An optional background image for the Question set."
},
{
"label": "진행률 표시",
"description": "문제 세트 진행률 표시 스타일.",
"label": "Progress indicator",
"description": "Question set progress indicator style.",
"options": [
{
"label": "텍스트 유형"
"label": "Textual"
},
{
"label": "점 유형"
"label": "Dots"
}
]
},
{
"label": "통과 백분율",
"description": "퀴즈 통과에 필요한 총점 백분율."
"label": "Pass percentage",
"description": "Percentage of Total score required for passing the quiz."
},
{
"label": "문제",
"label": "Questions",
"widgets": [
{
"label": "기본값"
"label": "Default"
},
{
"label": "텍스트 유형"
"label": "Textual"
}
],
"entity": "문제",
"entity": "question",
"field": {
"label": "문제 유형",
"description": "이 문제에 대한 라이브러리."
"label": "Question type",
"description": "Library for this question."
}
},
{
"label": "퀴즈의 인터페이스 텍스트",
"label": "Interface texts in quiz",
"fields": [
{
"label": "뒤로 버튼",
"default": "이전 질문"
"label": "Back button",
"default": "Previous question"
},
{
"label": "다음 버튼",
"default": "다음 질문"
"label": "Next button",
"default": "Next question"
},
{
"label": "완료 단추",
"default": "완료"
"label": "Finish button",
"default": "Finish"
},
{
"label": "Submit button",
"default": "Submit"
"label": "Progress text",
"description": "Text used if textual progress is selected.",
"default": "Question: @current of @total questions"
},
{
"label": "진행률 텍스트",
"description": "텍스트형 진행률을 선택한 경우 사용되는 글자.",
"default": "Question: 총 @total 질문 중 현재 @current"
"label": "Label for jumping to a certain question",
"description": "You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
"default": "Question %d of %total"
},
{
"label": "특정 문제로 이동을 위한 라벨",
"description": "문항 번호 대신 자리 표시자 '%d'를 사용해야 하며, 총 문제 수 대신 %total을 사용해야 한다.",
"default": "%total 중 %d 문제"
"label": "Copyright dialog question label",
"default": "Question"
},
{
"label": "저작권 대화 문제 라벨",
"default": "문제"
"label": "Readspeaker progress",
"description": "May use @current and @total question variables",
"default": "Question @current of @total"
},
{
"label": "자동 문장 읽어 주기 기능에서 진행율",
"description": "@current 및 @total 문제 변수를 사용할 수 있음",
"default": "총 @total 중 현재 @current 질문"
"label": "Unanswered question text",
"default": "Unanswered"
},
{
"label": "미답변 문제 텍스트",
"default": "답변되지 않음"
"label": "Answered question text",
"default": "Answered"
},
{
"label": "답변 문제 텍스트",
"default": "답변됨"
},
{
"label": "현재 질문 텍스트",
"default": "현재 질문"
"label": "Current question text",
"default": "Current question"
}
]
},
{
"label": "뒤로 돌아가기 비활성화",
"description": "이 옵션은 문제 세트에서 앞으로만 이동할 수 있도록 함"
"label": "Disable backwards navigation",
"description": "This option will only allow you to move forward in Question Set"
},
{
"label": "문제 무작위화",
"description": "표시된 문제 순서를 무작위 순서로 변경할 수 있음."
"label": "Randomize questions",
"description": "Enable to randomize the order of questions on display."
},
{
"label": "표시할 질문 수:",
"description": "전체 문제에서 무작위화로 문제 세트를 만들기 만드세요."
"label": "Number of questions to be shown:",
"description": "Create a randomized batch of questions from the total."
},
{
"label": "퀴즈 완료",
"label": "Quiz finished",
"fields": [
{
"label": "결과 표시"
"label": "Display results"
},
{
"label": "해답 버튼 표시"
"label": "Display solution button"
},
{
"label": "재시도 버튼 표시"
"label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled",
"default": "Finished"
},
{
"label": "결과 메시지 없음",
"description": "\"Display results\"가 비활성화된 경우 끝 페이지에 표시되는 텍스트",
"default": "완료"
"label": "Feedback heading",
"default": "Your result:",
"description": "This heading will be displayed at the end of the quiz when the user has answered all questions."
},
{
"label": "피드백 제목",
"default": "결과:",
"description": "이 제목은 사용자가 모든 질문에 답했을 때 퀴즈 끝에 표시됨."
},
{
"label": "전반적인 피드백",
"label": "Overall Feedback",
"fields": [
{
"widgets": [
{
"label": "기본값"
"label": "Default"
}
],
"label": "점수 범위에 대한 사용자 피드백 정의",
"description": "예: 0-20% 낮은 점수, 21-91% 평균 점수, 91-100% 높은 점수!",
"entity": "범위",
"label": "Define custom feedback for any score range",
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
"entity": "range",
"field": {
"fields": [
{
"label": "점수 범위"
"label": "Score Range"
},
{},
{
"label": "정의된 점수 범위에 대한 피드백",
"placeholder": "피드백 작성"
"label": "Feedback for defined score range",
"placeholder": "Fill in the feedback"
}
]
}
@ -174,96 +167,92 @@
]
},
{
"label": "피드백",
"label": "Old Feedback",
"fields": [
{
"label": "통과한 퀴즈에 대한 메시지",
"description": "이 텍스트는 사용자가 퀴즈를 성공적으로 통과하면 점수 위에 표시됨."
"label": "Quiz passed greeting",
"description": "This text will be displayed above the score if the user has successfully passed the quiz."
},
{
"label": "통과에 대한 코멘트",
"description": "이 코멘트는 사용자가 퀴즈를 성공적으로 통과했다면 점수 뒤에 표시됨."
"label": "Passed comment",
"description": "This comment will be displayed after the score if the user has successfully passed the quiz."
},
{
"label": "실패한 퀴즈 텍스트",
"description": "이 텍스트는 사용자가 퀴즈에 실패했을 때 점수 위에 표시됨."
"label": "Quiz failed title",
"description": "This text will be displayed above the score if the user has failed the quiz."
},
{
"label": "퀴즈를 실패한 경우 코멘트",
"description": "이 코멘트는 사용자가 퀴즈에 실패했을 때 점수 뒤에 표시됨."
"label": "Failed comment",
"description": "This comment will be displayed after the score if the user has failed the quiz."
}
]
},
{
"label": "해답 버튼 레이블",
"default": "해답 보이기",
"description": "해답 버튼에 대한 텍스트."
"label": "Solution button label",
"default": "Show solution",
"description": "Text for the solution button."
},
{
"label": "재시도 버튼 라벨",
"default": "재시도",
"description": "재시도 버튼에 대한 텍스트."
"label": "Retry button label",
"default": "Retry",
"description": "Text for the retry button."
},
{
"label": "완료 버튼 텍스트",
"default": "완료"
"label": "Finish button text",
"default": "Finish"
},
{
"label": "Submit button text",
"default": "Submit"
"label": "Display video before quiz results"
},
{
"label": "퀴즈 결과 전에 비디오 표시"
"label": "Enable skip video button"
},
{
"label": "비디오 건너뛰기 버튼 사용"
"label": "Skip video button label",
"default": "Skip video"
},
{
"label": "비디오 건너뛰기 버튼 레이블",
"default": "비디오 건너뛰기"
"label": "Passed video",
"description": "This video will be played if the user successfully passed the quiz."
},
{
"label": "통과한 경우 비디오",
"description": "이 동영상은 사용자가 퀴즈를 성공적으로 통과하면 재생됨."
},
{
"label": "실패한 경우 비디오",
"description": "이 동영상은 사용자가 퀴즈에 실패하면 재생됨."
"label": "Fail video",
"description": "This video will be played if the user failes the quiz."
}
]
},
{
"label": "\"Show solution\" 및 \"Retry\" 버튼 설정",
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
"fields": [
{
"label": "\"Check\"버튼 표시",
"description": "이 옵션은 모든 질문에 \"Check\" 버튼이 표시될지 여부를 결정함."
"label": "Show \"Check\" buttons",
"description": "This option determines if the \"Check\" button will be shown for all questions."
},
{
"label": "\"Sow Solution\" 버튼 재정의",
"description": "이 옵션은 모든 질문에 대해 \"Show Solution\" 버튼을 표시할지 또는 각 질문에 대해 개별적으로 구성할지 결정",
"label": "Override \"Show Solution\" button",
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
"options": [
{
"label": "활성화"
"label": "Enabled"
},
{
"label": "비활성화"
"label": "Disabled"
}
]
},
{
"label": "\"Retry\"버튼 재정의",
"description": "이 옵션은 모든 질문에 대해 \"Retry\"버튼을 표시할지 아니면 모든 질문에 대해 개별적으로 구성할지 결정",
"label": "Override \"Retry\" button",
"description": "This option determines if the \"Retry\" button will be shown for all questions, disabled for all or configured for each question individually.",
"options": [
{
"label": "활성화"
"label": "Enabled"
},
{
"label": "비활성화"
"label": "Disabled"
}
]
}
]
}
]
}
}

View File

@ -15,7 +15,7 @@
"description": "Denne teksten vises før spørsmålssettet starter."
},
{
"label": "Tekst \"Start\" knappen",
"label": "Tekst til \"Start\" knappen",
"default": "Start"
},
{
@ -57,7 +57,7 @@
"entity": "spørsmål",
"field": {
"label": "Spørsmåltype",
"description": "Velg spørsmålstype for dette spørsmålet."
"description": "Velg spørsmålstype for dette spørsmålet"
}
},
{
@ -75,17 +75,13 @@
"label": "Avslutt-knappen",
"default": "Avslutt"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "Fremgangstekst",
"description": "Tekst brukt hvis tekstlig angivelse av fremdrift er valgt. Variabler: @current og @total.",
"description": "Tekst brukt hvis tekstlig angivelse av fremdrift er valgt. Variabler: @current og @total",
"default": "Deloppgave @current av @total"
},
{
"label": "Merkelapp for hopping til spørsmål",
"label": "Merkelapp ved hopping til spørsmål",
"description": "Du må bruke plassholderen '%d' istedenfor spørsmålsnummeret, og '%total' istedet for totalt antall spørsmål.",
"default": "Spørsmål %d av %total"
},
@ -133,9 +129,6 @@
{
"label": "Vis resultatknapp"
},
{
"label": "Vis \"Prøv igjen\" knappen"
},
{
"label": "Melding når resultater ikke vises",
"description": "Teksten vises på avslutnings-siden når resultater ikke vises",
@ -152,7 +145,7 @@
{
"widgets": [
{
"label": "Standard"
"label": "Default"
}
],
"label": "Spesifiser en egendefinert tilbakemelding for et poengintervall",
@ -208,10 +201,6 @@
"label": "Avslutt knappetekst",
"default": "Bekreft"
},
{
"label": "Submit button text",
"default": "Submit"
},
{
"label": "Vis video før resultatene"
},
@ -266,4 +255,4 @@
]
}
]
}
}

View File

@ -1,51 +1,51 @@
{
"semantics": [
{
"label": "Quiz introductie",
"label": "Quiz introduction",
"fields": [
{
"label": "Toon de introductie"
"label": "Display introduction"
},
{
"label": "Titel",
"description": "Deze titel zal boven de inleidende tekst worden getoond."
"description": "This title will be displayed above the introduction text."
},
{
"label": "Inleidende tekst",
"description": "Deze tekst zal worden getoond voordat de quiz begint."
"description": "This text will be displayed before the quiz starts."
},
{
"label": "Tekst van de startknop",
"default": "Start"
"label": "Start button text",
"default": "Start Quiz"
},
{
"label": "Achtergrondafbeelding",
"description": "Een optionele achtergrondafbeelding voor de introductie."
"description": "An optional background image for the introduction."
}
]
},
{
"label": "Achtergrondafbeelding",
"description": "Een optionele achtergrondafbeelding voor de vragenreeks."
"description": "An optional background image for the Question set."
},
{
"label": "Voortgangsindicator",
"description": "Lay-out voortgangsindicator van de vragenreeks.",
"label": "Progress indicator",
"description": "Question set progress indicator style.",
"options": [
{
"label": "Tekst"
"label": "Tekstueel"
},
{
"label": "Punten"
"label": "Dots"
}
]
},
{
"label": "Slagingspercentage",
"description": "Percentage van de totale score dat vereist is om te slagen."
"description": "Percentage van de Totale score die vereist is om te slagen."
},
{
"label": "Vragen",
"label": "Questions",
"widgets": [
{
"label": "Standaard"
@ -54,119 +54,112 @@
"label": "Tekstueel"
}
],
"entity": "vraag",
"entity": "question",
"field": {
"label": "Type vraag",
"description": "Bibliotheek voor deze vraag."
"label": "Question type",
"description": "Library for this question."
}
},
{
"label": "Interface teksten in de quiz",
"label": "Interface texts in quiz",
"fields": [
{
"label": "Vorige-knop",
"default": "Vorige vraag"
"label": "Terugknop",
"default": "Previous question"
},
{
"label": "Volgende-knop",
"default": "Volgende vraag"
"label": "Next button",
"default": "Next question"
},
{
"label": "Beëindigings-knop",
"default": "Klaar"
},
{
"label": "Submit button",
"default": "Submit"
"label": "Finish button",
"default": "Beëindigen"
},
{
"label": "Tekst bij voortgang",
"description": "Deze tekst wordt gebruikt als 'Tekst' als voortgangsindicator is geselecteerd.",
"default": "Vraag: @current van @total vragen"
"description": "Text used if textual progress is selected.",
"default": "Question: @current of @total questions"
},
{
"label": "Label voor naar een bepaalde vraag te springen",
"description": "Je moet de plaatsaanduiding '%d' gebruiken in plaats van het vraagnummer, en %total in plaats van het totaal aantal vragen.",
"default": "Vraag %d van %total"
"label": "Label for jumping to a certain question",
"description": "You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
"default": "Question %d of %total"
},
{
"label": "Label van copyright dialoogvraag",
"label": "Copyright dialog question label",
"default": "Vraag"
},
{
"label": "Readspeaker voortgang",
"description": "Je mag @current gebruiken en @total als vraagvariabelen",
"default": "Vraag @current van @total"
"label": "Readspeaker progress",
"description": "May use @current and @total question variables",
"default": "Question @current of @total"
},
{
"label": "Tekst van de onbeantwoorde vraag",
"default": "Onbeantwoord"
"label": "Unanswered question text",
"default": "Unanswered"
},
{
"label": "Tekst van de beantwoorde vraag",
"default": "Beantwoord"
"label": "Answered question text",
"default": "Answered"
},
{
"label": "Tekst van de huidige vraag",
"default": "Huidige vraag"
"label": "Current question text",
"default": "Current question"
}
]
},
{
"label": "Achteruit navigeren uitschakelen",
"description": "Deze optie staat je alleen toe voorwaarts te navigeren in de vragenreeks"
"description": "This option will only allow you to move forward in Question Set"
},
{
"label": "Vragen willekeurig indelen",
"label": "Randomize questions",
"description": "Vragen in willekeurige volgorde inschakelen."
},
{
"label": "Het aantal te tonen vragen:",
"description": "Creëer een willekeurig aantal vragen van het totaal."
"label": "Number of questions to be shown:",
"description": "Create a randomized batch of questions from the total."
},
{
"label": "Quiz voltooid",
"label": "Quiz finished",
"fields": [
{
"label": "Toon de resultaten"
"label": "Display results"
},
{
"label": "Toon de oplossings-knop"
"label": "Display solution button"
},
{
"label": "Toon opnieuw proberen-knop"
"label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled",
"default": "Finished"
},
{
"label": "Geen resultaten bericht",
"description": "De getoonde tekst op de eindpagina wanneer \"Toon resultaten\" is uitgeschakeld",
"default": "Voltooid"
"label": "Feedback heading",
"default": "Your result:",
"description": "This heading will be displayed at the end of the quiz when the user has answered all questions."
},
{
"label": "Feedback koptekst",
"default": "Je resultaat:",
"description": "Deze koptekst verschijnt aan het einde van de test wanneer de deelnemer alle vragen heeft beantwoord."
},
{
"label": "Algehele feedback",
"label": "Overall Feedback",
"fields": [
{
"widgets": [
{
"label": "Standaard"
"label": "Default"
}
],
"label": "Definieer aangepaste feedback voor elke scorereeks",
"description": "Voorbeeld: 0-20% Onvoldoende score, 21-91% Gemiddelde score, 91-100% Uitstekende score!",
"entity": "reeks",
"label": "Define custom feedback for any score range",
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
"entity": "range",
"field": {
"fields": [
{
"label": "Scorereeks"
"label": "Score Range"
},
{},
{
"label": "Feedback voor de gedefinieerde scorereeks",
"placeholder": "Vul de aangepaste feedback in"
"label": "Feedback for defined score range",
"placeholder": "Fill in the feedback"
}
]
}
@ -174,70 +167,66 @@
]
},
{
"label": "Oude feedback",
"label": "Old Feedback",
"fields": [
{
"label": "Begroeting bij een geslaagde quiz",
"description": "Deze tekst wordt boven de score weergegeven als de deelnemer de test met goed gevolg heeft afgelegd."
"label": "Quiz passed greeting",
"description": "This text will be displayed above the score if the user has successfully passed the quiz."
},
{
"label": "Commentaar bij geslaagd",
"description": "Deze opmerking wordt weergegeven na de score als de deelnemer de test met goed gevolg heeft afgelegd."
"label": "Passed comment",
"description": "This comment will be displayed after the score if the user has successfully passed the quiz."
},
{
"label": "Titel bij niet behaalde quiz",
"description": "Deze tekst wordt boven de score getoond als de deelnemer de test niet heeft gehaald."
"label": "Quiz failed title",
"description": "This text will be displayed above the score if the user has failed the quiz."
},
{
"label": "Commentaar bij niet behaald",
"description": "Deze opmerking wordt weergegeven na de score als de deelnemer de test niet heeft gehaald."
"label": "Failed comment",
"description": "This comment will be displayed after the score if the user has failed the quiz."
}
]
},
{
"label": "Label van de oplossings-knop",
"label": "Solution button label",
"default": "Toon oplossing",
"description": "Tekst voor de oplossings-knop."
"description": "Text for the solution button."
},
{
"label": "Label van de opnieuw proberen-knop",
"label": "Tekst van de Opnieuw proberen knop",
"default": "Opnieuw proberen",
"description": "Tekst voor de opnieuw proberen-knop."
"description": "Text for the retry button."
},
{
"label": "Tekst voor de beëindigings-knop",
"default": "Klaar"
"label": "Finish button text",
"default": "Beëindigen"
},
{
"label": "Submit button text",
"default": "Submit"
"label": "Display video before quiz results"
},
{
"label": "Toon video voor de quizresultaten"
"label": "Enable skip video button"
},
{
"label": "Activeer sla de video over-knop"
"label": "Skip video button label",
"default": "Skip video"
},
{
"label": "Label sla de video over-knop",
"default": "Sla de video over"
"label": "Passed video",
"description": "This video will be played if the user successfully passed the quiz."
},
{
"label": "Video bij een geslaagde quiz",
"description": "Deze video wordt afgespeeld als de deelnemer de test met succes heeft afgerond."
},
{
"label": "Video bij een niet behaalde quiz",
"description": "Deze video wordt afgespeeld als de deelnemer de test niet heeft gehaald."
"label": "Fail video",
"description": "This video will be played if the user failes the quiz."
}
]
},
{
"label": "Instellingen voor \"Toon oplossing\" en \"Opnieuw\" -knoppen",
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
"fields": [
{
"label": "Toon \"Controleer\"-knoppen",
"description": "Deze optie bepaalt of de knop \"Controleer\" wordt getoond voor alle vragen."
"label": "Show \"Check\" buttons",
"description": "This option determines if the \"Check\" button will be shown for all questions."
},
{
"label": "\"Toon oplossing\" knop instellen",
@ -252,8 +241,8 @@
]
},
{
"label": "\"Opnieuw proberen\"-knop instellen",
"description": "Deze optie bepaalt of de \"Opnieuw proberen\"-knop voor alle vragen wordt getoond, uitgeschakeld of voor iedere vraag afzonderlijk wordt geconfigureerd.",
"label": "\"Opnieuw proberen\" knop instellen",
"description": "Deze optie bepaalt of de \"Opnieuw proberen\" knop voor alle vragen wordt getoond, uitgeschakeld of voor iedere vraag afzonderlijk wordt geconfigureerd.",
"options": [
{
"label": "Ingeschakeld"
@ -266,4 +255,4 @@
]
}
]
}
}

View File

@ -75,10 +75,6 @@
"label": "Avslutt-knappen",
"default": "Bekreft"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "Fremgangstekst",
"description": "Tekst brukt hvis tekstlig angivelse av fremdrift er valgt. Variabler: @current og @total",
@ -96,7 +92,7 @@
{
"label": "Fremdriftstekst for hjelpemiddelteknologi",
"description": "Kan bruke @current og @total variabler",
"default": "Deloppgåve @current av @total"
"default": "Deloppgave @current av @total"
},
{
"label": "Ikke svart på spørsmål-tekst",
@ -104,7 +100,7 @@
},
{
"label": "Svart på spørsmål-tekst",
"default": "Svar gitt"
"default": "Svar avgitt"
},
{
"label": "Aktivt spørsmål-tekst",
@ -133,9 +129,6 @@
{
"label": "Vis resultatknapp"
},
{
"label": "Display retry button"
},
{
"label": "Melding når resultater ikke vises",
"description": "Teksten vises på avslutnings-siden når resultater ikke vises",
@ -208,10 +201,6 @@
"label": "Tekst til \"Avslutt\" knapp",
"default": "Bekreft"
},
{
"label": "Submit button text",
"default": "Submit"
},
{
"label": "Vis video før resultata"
},
@ -266,4 +255,4 @@
]
}
]
}
}

View File

@ -1,172 +1,165 @@
{
"semantics": [
{
"label": "Plansza wprowadzająca",
"label": "Quiz introduction",
"fields": [
{
"label": "Wyświetl planszę"
"label": "Display introduction"
},
{
"label": "Tytuł",
"description": "Ten tytuł zostanie wyświetlony nad treścią planszy."
"label": "Title",
"description": "This title will be displayed above the introduction text."
},
{
"label": "Treść planszy",
"description": "Ten tekst zostanie wyświetlony przed rozpoczęciem quizu."
"label": "Introduction text",
"description": "This text will be displayed before the quiz starts."
},
{
"label": "Napis na przycisku Start",
"default": "Rozpocznij quiz"
"label": "Start button text",
"default": "Start Quiz"
},
{
"label": "Tło planszy",
"description": "Tło planszy wprowadzającej (opcjonalne)."
"label": "Background image",
"description": "An optional background image for the introduction."
}
]
},
{
"label": "Tło quizu",
"description": "Tło dla wszystkich pytań w quizie (opcjonalne)."
"label": "Background image",
"description": "An optional background image for the Question set."
},
{
"label": "Wskaźnik postępu",
"description": "W jaki sposób ma być pokazywany postęp.",
"label": "Progress indicator",
"description": "Question set progress indicator style.",
"options": [
{
"label": "Tekstowo"
"label": "Textual"
},
{
"label": "Kropkami"
"label": "Dots"
}
]
},
{
"label": "Procent zaliczający",
"description": "Procent poprawnych odpowiedzi wymagany do zaliczenia quizu."
"label": "Pass percentage",
"description": "Percentage of Total score required for passing the quiz."
},
{
"label": "Pytania",
"label": "Questions",
"widgets": [
{
"label": "Tryb domyślny"
"label": "Default"
},
{
"label": "Tryb tekstowy"
"label": "Textual"
}
],
"entity": "pytanie",
"entity": "question",
"field": {
"label": "Typ pytania",
"description": "Wybierz bibliotekę z listy."
"label": "Question type",
"description": "Library for this question."
}
},
{
"label": "Opisy interfejsu w quizie",
"label": "Interface texts in quiz",
"fields": [
{
"label": "Przycisk cofania",
"default": "Poprzednie pytanie"
"label": "Back button",
"default": "Previous question"
},
{
"label": "Przycisk dalej",
"default": "Kolejne pytanie"
"label": "Next button",
"default": "Next question"
},
{
"label": "Przycisk zakończenia",
"default": "Zakończ"
"label": "Finish button",
"default": "Finish"
},
{
"label": "Submit button",
"default": "Submit"
"label": "Progress text",
"description": "Text used if textual progress is selected.",
"default": "Question: @current of @total questions"
},
{
"label": "Tekst postępu",
"description": "Ten tekst zostanie wyświetlony, jeśli wybrana zostanie opcja wyświetlania postępu tekstowo.",
"default": "Pytanie @current z @total"
"label": "Label for jumping to a certain question",
"description": "You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
"default": "Question %d of %total"
},
{
"label": "Etykieta przeskoku do konkretnego pytania",
"description": "Wstaw '%d' w miejsce numeru pytania oraz %total w miejscu liczby wszystkich pytań.",
"default": "Pytanie %d z %total"
"label": "Copyright dialog question label",
"default": "Question"
},
{
"label": "Etykieta informacji o prawach autorskich",
"default": "Pytanie"
"label": "Readspeaker progress",
"description": "May use @current and @total question variables",
"default": "Question @current of @total"
},
{
"label": "Postęp dla czytnika ekranu",
"description": "Można użyć zmiennych @current (numer bieżącego pytania) i @total (liczba wszystkich pytań)",
"default": "Pytanie @current z @total"
"label": "Unanswered question text",
"default": "Unanswered"
},
{
"label": "Etykieta pytania bez odpowiedzi",
"default": "Brak odpowiedzi"
"label": "Answered question text",
"default": "Answered"
},
{
"label": "Etykieta pytania z odpowiedzią",
"default": "Z odpowiedzią"
},
{
"label": "Etykieta bieżącego pytania",
"default": "Bieżące pytanie"
"label": "Current question text",
"default": "Current question"
}
]
},
{
"label": "Wyłącz cofanie do poprzedniego pytania",
"description": "Po włączeniu tej opcji będzie możliwe tylko przechodzenie do kolejnego pytania quizu"
"label": "Disable backwards navigation",
"description": "This option will only allow you to move forward in Question Set"
},
{
"label": "Losuj pytania",
"description": "Włącz tę opcję, aby pytania pojawiały się w losowej kolejności."
"label": "Randomize questions",
"description": "Enable to randomize the order of questions on display."
},
{
"label": "Ile pytań pokazać:",
"description": "Wylosuj i pokaż określoną liczbę pytań spośród wszystkich dostępnych."
"label": "Number of questions to be shown:",
"description": "Create a randomized batch of questions from the total."
},
{
"label": "Quiz zakończony",
"label": "Quiz finished",
"fields": [
{
"label": "Pokaż wyniki"
"label": "Display results"
},
{
"label": "Przycisk wyświetlania wyników"
"label": "Display solution button"
},
{
"label": "Wyświetl przycisk powtórzenia"
"label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled",
"default": "Finished"
},
{
"label": "Informacja dla braku wyników",
"description": "Tekst wyświetlany na ekranie końcowym, gdy wyłączona jest opcja \"Pokaż wyniki\"",
"default": "Koniec"
"label": "Feedback heading",
"default": "Your result:",
"description": "This heading will be displayed at the end of the quiz when the user has answered all questions."
},
{
"label": "Nagłówek sekcji informacji zwrotnej",
"default": "Twój wynik:",
"description": "Ten nagłówek zostanie wyświetlony na ekranie końcowym po udzieleniu odpowiedzi na wszystkie pytania."
},
{
"label": "Podsumowanie odpowiedzi",
"label": "Overall Feedback",
"fields": [
{
"widgets": [
{
"label": "Domyślne"
"label": "Default"
}
],
"label": "Określ własne kryteria oceny dla wybranych zakresów poprawnych odpowiedzi",
"description": "Przykład: 0-20% Słaby wynik, 21-91% Przeciętny wynik, 91-100% Bardzo dobry wynik!",
"entity": "Zakres",
"label": "Define custom feedback for any score range",
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
"entity": "range",
"field": {
"fields": [
{
"label": "Zakres"
"label": "Score Range"
},
{},
{
"label": "Komunikat dla danego zakresu",
"placeholder": "Wprowadź komunikat"
"label": "Feedback for defined score range",
"placeholder": "Fill in the feedback"
}
]
}
@ -174,96 +167,92 @@
]
},
{
"label": "Starsza wersja podsumowania",
"label": "Old Feedback",
"fields": [
{
"label": "Informacja o zaliczeniu quizu",
"description": "Ten tekst zostanie wyświetlony nad wynikiem użytkownika, który zaliczył quiz."
"label": "Quiz passed greeting",
"description": "This text will be displayed above the score if the user has successfully passed the quiz."
},
{
"label": "Komentarz do zaliczenia quizu",
"description": "Ten komentarz zostanie wyświetlony pod wynikiem użytkownika, który zaliczył quiz."
"label": "Passed comment",
"description": "This comment will be displayed after the score if the user has successfully passed the quiz."
},
{
"label": "Informacja o niezaliczeniu quizu",
"description": "Ten tekst zostanie wyświetlony nad wynikiem użytkownika, który nie zaliczył quizu."
"label": "Quiz failed title",
"description": "This text will be displayed above the score if the user has failed the quiz."
},
{
"label": "Komentarz do niezaliczenia quizu",
"description": "Ten komentarz zostanie wyświetlony pod wynikiem użytkownika, który nie zaliczył quizu."
"label": "Failed comment",
"description": "This comment will be displayed after the score if the user has failed the quiz."
}
]
},
{
"label": "Etykieta przycisku pokazywania poprawnej odpowiedzi",
"default": "Pokaż odpowiedź",
"description": "Opis przycisku pokazywania poprawnej odpowiedzi."
"label": "Solution button label",
"default": "Show solution",
"description": "Text for the solution button."
},
{
"label": "Etykieta przycisku ponowienia próby odpowiedzi",
"default": "Powtórz",
"description": "Opis przycisku ponowienia."
"label": "Retry button label",
"default": "Retry",
"description": "Text for the retry button."
},
{
"label": "Etykieta przycisku zakończenia",
"default": "Zakończ"
"label": "Finish button text",
"default": "Finish"
},
{
"label": "Submit button text",
"default": "Submit"
"label": "Display video before quiz results"
},
{
"label": "Odtwórz wideo przed ekranem wyników"
"label": "Enable skip video button"
},
{
"label": "Pozwól na pominięcie wideo"
"label": "Skip video button label",
"default": "Skip video"
},
{
"label": "Opis przycisku pominięcia",
"default": "Pomiń wideo"
"label": "Passed video",
"description": "This video will be played if the user successfully passed the quiz."
},
{
"label": "Wideo po zaliczeniu",
"description": "To wideo zostanie odtworzone użytkownikowi, który zaliczył quiz."
},
{
"label": "Wideo po niezaliczeniu",
"description": "To wideo zostanie odtworzone użytkownikowi, który nie zaliczył quizu."
"label": "Fail video",
"description": "This video will be played if the user failes the quiz."
}
]
},
{
"label": "Ustawienia przycisków pokazywania odpowiedzi i ponownej próby",
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
"fields": [
{
"label": "Pokaż przycisk \"Sprawdź\"",
"description": "Włącz tę opcję, jeśli przycisk \"Sprawdź\" ma być wyświetlany pod każdym pytaniem."
"label": "Show \"Check\" buttons",
"description": "This option determines if the \"Check\" button will be shown for all questions."
},
{
"label": "Globalne ustawienie dla przycisku \"Pokaż odpowiedź\"",
"description": "Ta opcja określa, czy przycisk \"Pokaż odpowiedź\" ma być wyświetlany pod każdym pytaniem, niewyświetlany pod żadnym, czy jego wyświetlanie ma być ustalane indywidualnie.",
"label": "Override \"Show Solution\" button",
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
"options": [
{
"label": "Włączone"
"label": "Enabled"
},
{
"label": "Wyłączone"
"label": "Disabled"
}
]
},
{
"label": "Globalne ustawienie dla przycisku \"Powtórz\"",
"description": "Ta opcja określa, czy przycisk \"Powtórz\" ma być wyświetlany pod każdym pytaniem, niewyświetlany pod żadnym, czy jego wyświetlanie ma być ustalane indywidualnie.",
"label": "Override \"Retry\" button",
"description": "This option determines if the \"Retry\" button will be shown for all questions, disabled for all or configured for each question individually.",
"options": [
{
"label": "Włączone"
"label": "Enabled"
},
{
"label": "Wyłączone"
"label": "Disabled"
}
]
}
]
}
]
}
}

View File

@ -1,172 +1,165 @@
{
"semantics": [
{
"label": "Introdução ao questionário",
"label": "Quiz introduction",
"fields": [
{
"label": "Mostrar introdução"
"label": "Display introduction"
},
{
"label": "Título",
"description": "Este título vai ser mostrado acima do texto introdutório."
"label": "Title",
"description": "This title will be displayed above the introduction text."
},
{
"label": "Texto introdutório",
"description": "Este texto vai ser mostrado antes do início do questionário."
"label": "Introduction text",
"description": "This text will be displayed before the quiz starts."
},
{
"label": "Texto de iníco do questionário",
"default": "Iniciar questionário"
"label": "Start button text",
"default": "Start Quiz"
},
{
"label": "Imagem de fundo",
"description": "Uma imagem de fundo opcional para a introdução."
"label": "Background image",
"description": "An optional background image for the introduction."
}
]
},
{
"label": "Imagem de fundo",
"description": "Uma imagem de fundo opcional para a Série de questões."
"label": "Background image",
"description": "An optional background image for the Question set."
},
{
"label": "Indicador de progresso",
"description": "Estilo do indicador da série de questões.",
"label": "Progress indicator",
"description": "Question set progress indicator style.",
"options": [
{
"label": "Textual"
},
{
"label": "Pontos"
"label": "Dots"
}
]
},
{
"label": "Percentagem de aprovação",
"description": "Percentagem necessária para aprovação no questionário."
"label": "Pass percentage",
"description": "Percentage of Total score required for passing the quiz."
},
{
"label": "Questões",
"label": "Questions",
"widgets": [
{
"label": "Por defeito"
"label": "Default"
},
{
"label": "Textual"
}
],
"entity": "questão",
"entity": "question",
"field": {
"label": "Tipo de questão",
"description": "Biblioteca para esta questão."
"label": "Question type",
"description": "Library for this question."
}
},
{
"label": "Textos do interface para o questionário",
"label": "Interface texts in quiz",
"fields": [
{
"label": "Botão para questão anterior",
"default": "Questão anterior"
"label": "Back button",
"default": "Previous question"
},
{
"label": "Botão para questão seguinte",
"default": "Questão seguinte"
"label": "Next button",
"default": "Next question"
},
{
"label": "Botão para terminar",
"default": "Terminar"
"label": "Finish button",
"default": "Finish"
},
{
"label": "Submit button",
"default": "Submit"
"label": "Progress text",
"description": "Text used if textual progress is selected.",
"default": "Question: @current of @total questions"
},
{
"label": "Texto do progresso",
"description": "Texto a utilizar se o progresso textual estiver ativo.",
"default": "Questão: @current de @total questões"
"label": "Label for jumping to a certain question",
"description": "You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
"default": "Question %d of %total"
},
{
"label": "Etiqueta para saltar para um questão",
"description": "Tem de utilizar o espaço reservado (placeholder) '%d' em vez de o número da questão, e %total em vez do total de questões.",
"default": "Questão %d de %total"
"label": "Copyright dialog question label",
"default": "Question"
},
{
"label": "Etiqueta da caixa de diálogo para direitos de autor",
"default": "Questão"
"label": "Readspeaker progress",
"description": "May use @current and @total question variables",
"default": "Question @current of @total"
},
{
"label": "Progresso em texto para voz",
"description": "Pode utilizar @current e @total como variáveis da questão",
"default": "Questão @current de @total"
"label": "Unanswered question text",
"default": "Unanswered"
},
{
"label": "Texto para questões não respondidas",
"default": "Não respondida"
"label": "Answered question text",
"default": "Answered"
},
{
"label": "Texto para questões respondidas",
"default": "Respondida"
},
{
"label": "Texto para pergunta atual",
"default": "Pergunta atual"
"label": "Current question text",
"default": "Current question"
}
]
},
{
"label": "Desativar a opção de navegar para trás",
"description": "Esta opção só lhe permitirá navegar para a frente numa Série de questões"
"label": "Disable backwards navigation",
"description": "This option will only allow you to move forward in Question Set"
},
{
"label": "Tornar aleatório",
"description": "Ative para tornar aletória a ordem das questões."
"label": "Randomize questions",
"description": "Enable to randomize the order of questions on display."
},
{
"label": "Número de questões a mostrar:",
"description": "Criar um grupo de questões aleatório de entre o total"
"label": "Number of questions to be shown:",
"description": "Create a randomized batch of questions from the total."
},
{
"label": "Questionário terminado",
"label": "Quiz finished",
"fields": [
{
"label": "Mostrar resultados"
"label": "Display results"
},
{
"label": "Mostrar botão de solução"
"label": "Display solution button"
},
{
"label": "Display retry button"
"label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled",
"default": "Finished"
},
{
"label": "Mensagem quando não existem resultados",
"description": "Textos a exibir no final da página quando \"Mostrar resultados\" está desabilitado",
"default": "Terminado"
"label": "Feedback heading",
"default": "Your result:",
"description": "This heading will be displayed at the end of the quiz when the user has answered all questions."
},
{
"label": "Cabeçalho do Feedback",
"default": "O seu resultado:",
"description": "Este cabeçalho será mostrado no final questionário assim que o utilizador tiver respondido a todas as questões."
},
{
"label": "Feedback Geral",
"label": "Overall Feedback",
"fields": [
{
"widgets": [
{
"label": "Por defeito"
"label": "Default"
}
],
"label": "Defina feedback personalizado para cada intervalo de pontuação",
"description": "Exemplo: 0-20% Mau, 21-91% Mediano, 91-100% Excelente!",
"entity": "intervalo",
"label": "Define custom feedback for any score range",
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
"entity": "range",
"field": {
"fields": [
{
"label": "Intervalo de pontuação"
"label": "Score Range"
},
{},
{
"label": "Feedback para o intervalo definido",
"placeholder": "Preencha com o feedback"
"label": "Feedback for defined score range",
"placeholder": "Fill in the feedback"
}
]
}
@ -174,92 +167,88 @@
]
},
{
"label": "Feedback antigo",
"label": "Old Feedback",
"fields": [
{
"label": "Saudação por avaliação positiva",
"description": "Este texto vai ser mostrado acima do resultado obtido se o utilizador obtiver aproveitamento positivo no questionário."
"label": "Quiz passed greeting",
"description": "This text will be displayed above the score if the user has successfully passed the quiz."
},
{
"label": "Comentário para availiação positiva",
"description": "Este comentário vai ser mostrado depois do resultado se o utilizador obtiver aproveitamento positivo no questionário."
"label": "Passed comment",
"description": "This comment will be displayed after the score if the user has successfully passed the quiz."
},
{
"label": "Título para avaliação negativa",
"description": "Este texto será mostrado acima do resultado obtido se o utilizador obtiver aproveitamento negativo no questionário."
"label": "Quiz failed title",
"description": "This text will be displayed above the score if the user has failed the quiz."
},
{
"label": "Comentário para availiação negativa",
"description": "Este comentário será mostrado depois do resultado se o utilizador obtiver aproveitamento negativo no questionário."
"label": "Failed comment",
"description": "This comment will be displayed after the score if the user has failed the quiz."
}
]
},
{
"label": "Etiqueta do botão de soluções",
"default": "Mostrar soluções",
"description": "Texto para o botão de soluções."
"label": "Solution button label",
"default": "Show solution",
"description": "Text for the solution button."
},
{
"label": "Etiqueta do botão de repetir",
"default": "Repetir",
"description": "Texto para o botão de repetir."
"label": "Retry button label",
"default": "Retry",
"description": "Text for the retry button."
},
{
"label": "Texto para o botão terminar",
"default": "Terminar"
"label": "Finish button text",
"default": "Finish"
},
{
"label": "Submit button text",
"default": "Submit"
"label": "Display video before quiz results"
},
{
"label": "Mostrar video antes dos resultados do questionário"
"label": "Enable skip video button"
},
{
"label": "Ativar botão de saltar vídeo"
"label": "Skip video button label",
"default": "Skip video"
},
{
"label": "Etiqueta de botão de saltar vídeo",
"default": "Saltar vídeo"
"label": "Passed video",
"description": "This video will be played if the user successfully passed the quiz."
},
{
"label": "Vídeo de sucesso",
"description": "Este vídeo vai ser apresentado se o utilizador obtiver avaliação positiva no questionário."
},
{
"label": "Vídeo de insucesso",
"description": "Este vídeo vai ser apresentado se o utilizador obtiver avaliação negativa no questionário."
"label": "Fail video",
"description": "This video will be played if the user failes the quiz."
}
]
},
{
"label": "Definições para os botões de \"Mostrar solução\" e \"Repetir\"",
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
"fields": [
{
"label": "Mostrar botões de \"Verificar\"",
"description": "Esta opção determina se o botão \"Verificar\" será mostrado para todas as questões."
"label": "Show \"Check\" buttons",
"description": "This option determines if the \"Check\" button will be shown for all questions."
},
{
"label": "Sobrepor botão \"Mostrar solução\"",
"description": "Esta opção determina se o botão \"Mostrar solução\" será mostrado para todas as questões, desativado para todas ou configurado individualmente para cada questão.",
"label": "Override \"Show Solution\" button",
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
"options": [
{
"label": "Ativado"
"label": "Enabled"
},
{
"label": "Desativado"
"label": "Disabled"
}
]
},
{
"label": "Sobrepor botão \"Repetir\"",
"description": "Esta opção determina se o botão \"Repetir\" será mostrado para todas as questões, desativado para todas ou configurado individualmente para cada questão.",
"label": "Override \"Retry\" button",
"description": "This option determines if the \"Retry\" button will be shown for all questions, disabled for all or configured for each question individually.",
"options": [
{
"label": "Ativado"
"label": "Enabled"
},
{
"label": "Desativado"
"label": "Disabled"
}
]
}

View File

@ -75,10 +75,6 @@
"label": "Finish button",
"default": "Finish"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "Progress text",
"description": "Text used if textual progress is selected.",
@ -133,9 +129,6 @@
{
"label": "Display solution button"
},
{
"label": "Display retry button"
},
{
"label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled",
@ -208,10 +201,6 @@
"label": "Finish button text",
"default": "Finish"
},
{
"label": "Submit button text",
"default": "Submit"
},
{
"label": "Display video before quiz results"
},
@ -228,7 +217,7 @@
},
{
"label": "Fail video",
"description": "This video will be played if the user fails the quiz."
"description": "This video will be played if the user failes the quiz."
}
]
},

View File

@ -1,172 +1,165 @@
{
"semantics": [
{
"label": "Введение в тест",
"label": "Quiz introduction",
"fields": [
{
"label": "Показать введение"
"label": "Display introduction"
},
{
"label": "Заголовок",
"description": "Этот заголовок будет отображаться над вводным текстом."
"label": "Title",
"description": "This title will be displayed above the introduction text."
},
{
"label": "Вводный текст",
"description": "Этот текст будет показан перед началом теста."
"label": "Introduction text",
"description": "This text will be displayed before the quiz starts."
},
{
"label": "Текст кнопки начала",
"default": "Начать тест"
"label": "Start button text",
"default": "Start Quiz"
},
{
"label": "Фоновое изображение",
"description": "Дополнительное фоновое изображение для введения."
"label": "Background image",
"description": "An optional background image for the introduction."
}
]
},
{
"label": "Фоновое изображение",
"description": "Необязательное фоновое изображение для набора вопросов."
"label": "Background image",
"description": "An optional background image for the Question set."
},
{
"label": "Индикатор прогресса",
"description": "Установите стиль индикатора прогресса для набора вопросов.",
"label": "Progress indicator",
"description": "Question set progress indicator style.",
"options": [
{
"label": "Текстовый"
"label": "Textual"
},
{
"label": "Точечный"
"label": "Dots"
}
]
},
{
"label": "Проходной процент",
"description": "Процент от общего количества баллов, необходимых для прохождения теста."
"label": "Pass percentage",
"description": "Percentage of Total score required for passing the quiz."
},
{
"label": "Вопросы",
"label": "Questions",
"widgets": [
{
"label": "По умолчанию"
"label": "Default"
},
{
"label": "Текстовый"
"label": "Textual"
}
],
"entity": "question",
"field": {
"label": "Тип вопроса",
"description": "Библиотека для этого вопроса."
"label": "Question type",
"description": "Library for this question."
}
},
{
"label": "Интерфейс текстов в тесте",
"label": "Interface texts in quiz",
"fields": [
{
"label": "Кнопка Назад",
"default": "Предыдущий вопрос"
"label": "Back button",
"default": "Previous question"
},
{
"label": "Кнопка Далее",
"default": "Следующий вопрос"
"label": "Next button",
"default": "Next question"
},
{
"label": "Кнопка Завершить",
"default": "Завершить"
"label": "Finish button",
"default": "Finish"
},
{
"label": "Submit button",
"default": "Submit"
"label": "Progress text",
"description": "Text used if textual progress is selected.",
"default": "Question: @current of @total questions"
},
{
"label": "Текст прогресса",
"description": "Текст, используемый, если выбран текстовый прогресс.",
"default": "Вопрос: @current из @total вопросов"
"label": "Label for jumping to a certain question",
"description": "You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
"default": "Question %d of %total"
},
{
"label": "Надпись для перехода к определенному вопросу",
"description": "Вы должны использовать заполнитель '%d' вместо номера вопроса, и %total вместо общего количества вопросов.",
"default": "Вопрос %d из %total"
"label": "Copyright dialog question label",
"default": "Question"
},
{
"label": "Надпись диалогового окна об авторском праве вопроса",
"default": "Вопрос"
"label": "Readspeaker progress",
"description": "May use @current and @total question variables",
"default": "Question @current of @total"
},
{
"label": "Воспроизведение прогресса",
"description": "Можно использовать @current и @total вопрос(ов) переменные",
"default": "Вопрос @current из @total"
"label": "Unanswered question text",
"default": "Unanswered"
},
{
"label": "Текст неотвеченных вопросов",
"default": "Неотвечено"
"label": "Answered question text",
"default": "Answered"
},
{
"label": "Текст отвеченных вопросов",
"default": "Отвечено"
},
{
"label": "Текст текущего вопроса",
"default": "Текущий вопрос"
"label": "Current question text",
"default": "Current question"
}
]
},
{
"label": "Отключить обратную навигацию",
"description": "Эта опция позволит вам только двигаться вперед в наборе вопросов"
"label": "Disable backwards navigation",
"description": "This option will only allow you to move forward in Question Set"
},
{
"label": "Случайные вопросы",
"description": "Включить случайный порядок вопросов для отображения."
"label": "Randomize questions",
"description": "Enable to randomize the order of questions on display."
},
{
"label": "Количество вопросов, которые будут показаны:",
"description": "Создать группу случайных вопросов из общего количества."
"label": "Number of questions to be shown:",
"description": "Create a randomized batch of questions from the total."
},
{
"label": "Тест завершен",
"label": "Quiz finished",
"fields": [
{
"label": "Показать результаты"
"label": "Display results"
},
{
"label": "Кнопка показа ответов"
"label": "Display solution button"
},
{
"label": "Display retry button"
"label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled",
"default": "Finished"
},
{
"label": "Сообщение об отсутствии результатов",
"description": "Текст, отображаемый на конечной странице, когда \"Показать результаты\" отключено",
"default": "Завершен"
"label": "Feedback heading",
"default": "Your result:",
"description": "This heading will be displayed at the end of the quiz when the user has answered all questions."
},
{
"label": "Заголовок обратной связи",
"default": "Ваш результат:",
"description": "Этот заголовок будет отображаться в конце теста, когда пользователь ответит на все вопросы."
},
{
"label": "Общий отзыв",
"label": "Overall Feedback",
"fields": [
{
"widgets": [
{
"label": "По умолчанию"
"label": "Default"
}
],
"label": "Определение произвольных отзывов для каждого диапазона оценок",
"description": "Например: 0-20% Плохая оценка, 21-91% Средняя оценка, 91-100% Отличная оценка!",
"label": "Define custom feedback for any score range",
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
"entity": "range",
"field": {
"fields": [
{
"label": "Диапазон баллов"
"label": "Score Range"
},
{},
{
"label": "Обратная связь для определенного диапазона оценок",
"placeholder": "Заполните отзыв"
"label": "Feedback for defined score range",
"placeholder": "Fill in the feedback"
}
]
}
@ -174,96 +167,92 @@
]
},
{
"label": "Старый отзыв",
"label": "Old Feedback",
"fields": [
{
"label": "Приветствие прошедшего теста",
"description": "Этот текст будет отображаться над оценкой, если пользователь успешно прошел тест."
"label": "Quiz passed greeting",
"description": "This text will be displayed above the score if the user has successfully passed the quiz."
},
{
"label": "Комментарий для пройденного теста",
"description": "Этот комментарий будет отображаться после оценки, если пользователь успешно прошел тест."
"label": "Passed comment",
"description": "This comment will be displayed after the score if the user has successfully passed the quiz."
},
{
"label": "Заголовок не пройденного теста",
"description": "Этот текст будет отображаться над оценкой, если пользователь не прошел тест."
"label": "Quiz failed title",
"description": "This text will be displayed above the score if the user has failed the quiz."
},
{
"label": "Комментарий не пройденного теста",
"description": "Этот комментарий будет отображаться после оценки, если пользователь не прошел тест."
"label": "Failed comment",
"description": "This comment will be displayed after the score if the user has failed the quiz."
}
]
},
{
"label": "Надпись кнопки показа ответов",
"label": "Solution button label",
"default": "Show solution",
"description": "Текст для кнопки показа ответов."
"description": "Text for the solution button."
},
{
"label": "Надпись кнопки повтора",
"default": "Повторить",
"description": "Текст для кнопки повтора."
"label": "Retry button label",
"default": "Retry",
"description": "Text for the retry button."
},
{
"label": "Текст кнопки завершения",
"default": "Завершить"
"label": "Finish button text",
"default": "Finish"
},
{
"label": "Submit button text",
"default": "Submit"
"label": "Display video before quiz results"
},
{
"label": "Показать видео до результатов теста"
"label": "Enable skip video button"
},
{
"label": "Включить кнопку пропуска видео"
"label": "Skip video button label",
"default": "Skip video"
},
{
"label": "Надпись кнопки пропуска видео",
"default": "Пропустить видео"
"label": "Passed video",
"description": "This video will be played if the user successfully passed the quiz."
},
{
"label": "Видео пройденного теста",
"description": "Это видео будет воспроизведено, если пользователь успешно прошел тест."
},
{
"label": "Видео не пройденного теста",
"description": "Это видео будет воспроизведено, если пользователь не прошел тест."
"label": "Fail video",
"description": "This video will be played if the user failes the quiz."
}
]
},
{
"label": "Настройки для кнопок \"Показать ответ\" и \"Повторить\"",
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
"fields": [
{
"label": "Показать кнопку \"Проверить\"",
"description": "Эта опция определяет, будет ли кнопка \"Проверить\" отображаться для всех вопросов."
"label": "Show \"Check\" buttons",
"description": "This option determines if the \"Check\" button will be shown for all questions."
},
{
"label": "Переопределение кнопки \"Показать ответ\"",
"description": "Этот параметр определяет, будет ли кнопка \"Показать ответ\" отображаться для всех вопросов, отключена для всех или настроена для каждого вопроса отдельно.",
"label": "Override \"Show Solution\" button",
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
"options": [
{
"label": "Включена"
"label": "Enabled"
},
{
"label": "Отключена"
"label": "Disabled"
}
]
},
{
"label": "Переопредление кнопки \"Повторить\"",
"description": "Этот параметр определяет, будет ли кнопка \"Повторить\" отображаться для всех вопросов, отключена для всех или настроена для каждого вопроса отдельно.",
"label": "Override \"Retry\" button",
"description": "This option determines if the \"Retry\" button will be shown for all questions, disabled for all or configured for each question individually.",
"options": [
{
"label": "Включена"
"label": "Enabled"
},
{
"label": "Отключена"
"label": "Disabled"
}
]
}
]
}
]
}
}

View File

@ -1,269 +0,0 @@
{
"semantics": [
{
"label": "Uvod v kviz",
"fields": [
{
"label": "Prikaži uvod"
},
{
"label": "Naslov",
"description": "Naslov je prikazan nad vsebino kviza."
},
{
"label": "Vsebina uvoda",
"description": "Besedilo je prikazano pred začetkom reševanja kviza."
},
{
"label": "Besedilo gumba za začetek kviza",
"default": "Začetek"
},
{
"label": "Slika za ozadje",
"description": "Neobvezno. Slika je prikazana v ozadju uvoda."
}
]
},
{
"label": "Slika za ozadje",
"description": "Neobvezno. Slika je prikazana v ozadju kviza."
},
{
"label": "Indikator napredka",
"description": "Nastavitev prikaza napredka v kvizu (npr. število trenutnega in preostalih vprašanj).",
"options": [
{
"label": "Tekstovni"
},
{
"label": "Pike"
}
]
},
{
"label": "Prag za napredovanje",
"description": "Odstotek, ki je potreben za uspešen zaključek kviza."
},
{
"label": "Vprašanja",
"widgets": [
{
"label": "Privzeto"
},
{
"label": "Tekstoven"
}
],
"entity": "vprašanje",
"field": {
"label": "Tip vprašanja",
"description": "Seznam možnih tipov vprašanj."
}
},
{
"label": "Besedila uporabniškega vmesnika v kvizu",
"fields": [
{
"label": "Besedilo za gumb \"Prejšnje vprašanje\"",
"default": "Prejšnje vprašanje"
},
{
"label": "Besedilo za gumb \"Naslednje vprašanje\"",
"default": "Naslednje vprašanje"
},
{
"label": "Besedilo gumba \"Potrdi\"",
"default": "Potrdi"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "Besedilo o napredku",
"description": "Besedilo v primeru izbire tekstovnega indikatorja napredka.",
"default": "Vprašanje: @current od @total"
},
{
"label": "Besedilo v primeru skoka na izbrano vprašanje",
"description": "Spremenljivki sta %d in %total.",
"default": "Vprašanje: %d od %total"
},
{
"label": "Besedilo pogovornega okna za avtorske pravice",
"default": "Vprašanje"
},
{
"label": "Izražanje napredka v bralnikih zaslona",
"description": "Spremenljivki sta @current in @total.",
"default": "Vprašanje: @current od @total"
},
{
"label": "Besedilo za vprašanja brez odgovorov",
"default": "Brez odgovora"
},
{
"label": "Besedilo za vprašanja z odgovori",
"default": "Odgovorjeno"
},
{
"label": "Besedilo trenutnega vprašanja",
"default": "Trenutno vprašanje"
}
]
},
{
"label": "Onemogoči premikanje v obe smeri",
"description": "Udeleženci se bodo lahko premikali le naprej."
},
{
"label": "Naključna razporeditev",
"description": "Omogoči prikaz vprašanj po naključnem vrstnem redu."
},
{
"label": "Število vprašanj za prikaz",
"description": "Iz celotnega bazena bo po naključnem vrstnem redu prikazano le izbrano število vprašanj."
},
{
"label": "Zaključek kviza",
"fields": [
{
"label": "Prikaži rezultate"
},
{
"label": "Prikaži gumb z rešitvijo"
},
{
"label": "Prikaži gumb za ponovitev reševanja"
},
{
"label": "Sporočilo o koncu kviza",
"description": "Besedilo se izpiše, ko je onemogočena možnost \"Prikaži rezultate\"",
"default": "Zaključeno"
},
{
"label": "Naslov povratne informacije",
"default": "Rezultat reševanja:",
"description": "Besedilo se izpiše na koncu kviza, ko udeleženec reši vsa vprašanja."
},
{
"label": "Splošna povratna informacija",
"fields": [
{
"widgets": [
{
"label": "Privzeto"
}
],
"label": "Določi ločeno povratno informacijo za vsak razpon rezultatov",
"description": "Primer: 0-20 % Slab rezultat, 21-91 % Povprečen rezultat, 91-100 % Odličen rezultat!",
"entity": "razpon",
"field": {
"fields": [
{
"label": "Razpon rezultatov"
},
{},
{
"label": "Povratna informacija za definiran razpon rezultatov",
"placeholder": "Vnesite povratno informacijo"
}
]
}
}
]
},
{
"label": "Obstoječa povratna informacija",
"fields": [
{
"label": "Naslov ob uspešni rešitvi kviza",
"description": "Besedilo se izpiše nad rezultatom, če udeleženec uspešno opravi kviz."
},
{
"label": "Komentar ob uspešni rešitvi kviza",
"description": "Besedilo se izpiše pod rezultatom, če udeleženec uspešno opravi kviz."
},
{
"label": "Naslov ob neuspešni rešitvi kviza",
"description": "Besedilo se izpiše nad rezultatom, če udeleženec ne opravi kviza."
},
{
"label": "Komentar ob neuspešni rešitvi kviza",
"description": "Besedilo se izpiše pod rezultatom, če udeleženec ne opravi kviza."
}
]
},
{
"label": "Besedilo za gumb \"Prikaži rešitev\"",
"default": "Prikaži rešitev",
"description": "Text for the solution button."
},
{
"label": "Besedilo za gumb \"Poskusi ponovno\"",
"default": "Poskusi ponovno",
"description": "Text for the retry button."
},
{
"label": "Besedilo gumba \"Potrdi\"",
"default": "Potrdi"
},
{
"label": "Submit button text",
"default": "Submit"
},
{
"label": "Predvajaj videoposnetek ob zaključku kviza"
},
{
"label": "Omogoči gumb za preskok videoposnetka"
},
{
"label": "Besedilo gumba za preskok videoposnetka",
"default": "Preskoči videoposnetek"
},
{
"label": "Posnetek po uspešni rešitvi kviza",
"description": "Videoposnetek se predvaja, če udeleženec uspešno opravi kviz."
},
{
"label": "Posnetek po neuspešni rešitvi kviza",
"description": "Videoposnetek se predvaja, če udeleženec ne opravi kviza."
}
]
},
{
"label": "Nastavitve gumbov \"Prikaži rešitev\" in \"Poskusi ponovno\"",
"fields": [
{
"label": "Določi prikaz gumba \"Preveri\"",
"description": "Nastavitev vpliva na preverjanje odgovorov v vseh vprašanjih (npr. onemogočeno povsod, omogočeno individualno)."
},
{
"label": "Določi prikaz gumba \"Prikaži rešitev\"",
"description": "Nastavitev vpliva na prikaz rešitve v vseh vprašanjih (npr. onemogočeno povsod, omogočeno individualno).",
"options": [
{
"label": "Omogoči"
},
{
"label": "Onemogoči"
}
]
},
{
"label": "Določi prikaz gumba \"Poskusi ponovno\"",
"description": "Nastavitev vpliva na možnost ponovnega poskusa v vseh vprašanjih (npr. onemogočeno povsod, omogočeno individualno).",
"options": [
{
"label": "Omogoči"
},
{
"label": "Onemogoči"
}
]
}
]
}
]
}

View File

@ -1,269 +0,0 @@
{
"semantics": [
{
"label": "Quiz introduction",
"fields": [
{
"label": "Display introduction"
},
{
"label": "Title",
"description": "This title will be displayed above the introduction text."
},
{
"label": "Introduction text",
"description": "This text will be displayed before the quiz starts."
},
{
"label": "Start button text",
"default": "Start Quiz"
},
{
"label": "Background image",
"description": "An optional background image for the introduction."
}
]
},
{
"label": "Background image",
"description": "An optional background image for the Question set."
},
{
"label": "Progress indicator",
"description": "Question set progress indicator style.",
"options": [
{
"label": "Textual"
},
{
"label": "Dots"
}
]
},
{
"label": "Pass percentage",
"description": "Percentage of Total score required for passing the quiz."
},
{
"label": "Questions",
"widgets": [
{
"label": "Default"
},
{
"label": "Textual"
}
],
"entity": "question",
"field": {
"label": "Question type",
"description": "Library for this question."
}
},
{
"label": "Interface texts in quiz",
"fields": [
{
"label": "Back button",
"default": "Previous question"
},
{
"label": "Next button",
"default": "Next question"
},
{
"label": "Finish button",
"default": "Finish"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "Progress text",
"description": "Text used if textual progress is selected.",
"default": "Question: @current of @total questions"
},
{
"label": "Label for jumping to a certain question",
"description": "You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
"default": "Question %d of %total"
},
{
"label": "Copyright dialog question label",
"default": "Question"
},
{
"label": "Readspeaker progress",
"description": "May use @current and @total question variables",
"default": "Question @current of @total"
},
{
"label": "Unanswered question text",
"default": "Unanswered"
},
{
"label": "Answered question text",
"default": "Answered"
},
{
"label": "Current question text",
"default": "Current question"
}
]
},
{
"label": "Disable backwards navigation",
"description": "This option will only allow you to move forward in Question Set"
},
{
"label": "Randomize questions",
"description": "Enable to randomize the order of questions on display."
},
{
"label": "Number of questions to be shown:",
"description": "Create a randomized batch of questions from the total."
},
{
"label": "Quiz finished",
"fields": [
{
"label": "Display results"
},
{
"label": "Display solution button"
},
{
"label": "Display retry button"
},
{
"label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled",
"default": "Finished"
},
{
"label": "Feedback heading",
"default": "Your result:",
"description": "This heading will be displayed at the end of the quiz when the user has answered all questions."
},
{
"label": "Overall Feedback",
"fields": [
{
"widgets": [
{
"label": "Default"
}
],
"label": "Define custom feedback for any score range",
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
"entity": "range",
"field": {
"fields": [
{
"label": "Score Range"
},
{},
{
"label": "Feedback for defined score range",
"placeholder": "Fill in the feedback"
}
]
}
}
]
},
{
"label": "Old Feedback",
"fields": [
{
"label": "Quiz passed greeting",
"description": "This text will be displayed above the score if the user has successfully passed the quiz."
},
{
"label": "Passed comment",
"description": "This comment will be displayed after the score if the user has successfully passed the quiz."
},
{
"label": "Quiz failed title",
"description": "This text will be displayed above the score if the user has failed the quiz."
},
{
"label": "Failed comment",
"description": "This comment will be displayed after the score if the user has failed the quiz."
}
]
},
{
"label": "Solution button label",
"default": "Show solution",
"description": "Text for the solution button."
},
{
"label": "Retry button label",
"default": "Retry",
"description": "Text for the retry button."
},
{
"label": "Finish button text",
"default": "Finish"
},
{
"label": "Submit button text",
"default": "Submit"
},
{
"label": "Display video before quiz results"
},
{
"label": "Enable skip video button"
},
{
"label": "Skip video button label",
"default": "Skip video"
},
{
"label": "Passed video",
"description": "This video will be played if the user successfully passed the quiz."
},
{
"label": "Fail video",
"description": "This video will be played if the user fails the quiz."
}
]
},
{
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
"fields": [
{
"label": "Show \"Check\" buttons",
"description": "This option determines if the \"Check\" button will be shown for all questions."
},
{
"label": "Override \"Show Solution\" button",
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
"options": [
{
"label": "Enabled"
},
{
"label": "Disabled"
}
]
},
{
"label": "Override \"Retry\" button",
"description": "This option determines if the \"Retry\" button will be shown for all questions, disabled for all or configured for each question individually.",
"options": [
{
"label": "Enabled"
},
{
"label": "Disabled"
}
]
}
]
}
]
}

View File

@ -1,269 +0,0 @@
{
"semantics": [
{
"label": "Quiz introduction",
"fields": [
{
"label": "Display introduction"
},
{
"label": "Title",
"description": "This title will be displayed above the introduction text."
},
{
"label": "Introduction text",
"description": "This text will be displayed before the quiz starts."
},
{
"label": "Start button text",
"default": "Start Quiz"
},
{
"label": "Background image",
"description": "An optional background image for the introduction."
}
]
},
{
"label": "Background image",
"description": "An optional background image for the Question set."
},
{
"label": "Progress indicator",
"description": "Question set progress indicator style.",
"options": [
{
"label": "Textual"
},
{
"label": "Dots"
}
]
},
{
"label": "Pass percentage",
"description": "Percentage of Total score required for passing the quiz."
},
{
"label": "Questions",
"widgets": [
{
"label": "Default"
},
{
"label": "Textual"
}
],
"entity": "question",
"field": {
"label": "Question type",
"description": "Library for this question."
}
},
{
"label": "Interface texts in quiz",
"fields": [
{
"label": "Back button",
"default": "Previous question"
},
{
"label": "Next button",
"default": "Next question"
},
{
"label": "Finish button",
"default": "Finish"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "Progress text",
"description": "Text used if textual progress is selected.",
"default": "Question: @current of @total questions"
},
{
"label": "Label for jumping to a certain question",
"description": "You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
"default": "Question %d of %total"
},
{
"label": "Copyright dialog question label",
"default": "Question"
},
{
"label": "Readspeaker progress",
"description": "May use @current and @total question variables",
"default": "Question @current of @total"
},
{
"label": "Unanswered question text",
"default": "Unanswered"
},
{
"label": "Answered question text",
"default": "Answered"
},
{
"label": "Current question text",
"default": "Current question"
}
]
},
{
"label": "Disable backwards navigation",
"description": "This option will only allow you to move forward in Question Set"
},
{
"label": "Randomize questions",
"description": "Enable to randomize the order of questions on display."
},
{
"label": "Number of questions to be shown:",
"description": "Create a randomized batch of questions from the total."
},
{
"label": "Quiz finished",
"fields": [
{
"label": "Display results"
},
{
"label": "Display solution button"
},
{
"label": "Display retry button"
},
{
"label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled",
"default": "Finished"
},
{
"label": "Feedback heading",
"default": "Your result:",
"description": "This heading will be displayed at the end of the quiz when the user has answered all questions."
},
{
"label": "Overall Feedback",
"fields": [
{
"widgets": [
{
"label": "Default"
}
],
"label": "Define custom feedback for any score range",
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
"entity": "range",
"field": {
"fields": [
{
"label": "Score Range"
},
{},
{
"label": "Feedback for defined score range",
"placeholder": "Fill in the feedback"
}
]
}
}
]
},
{
"label": "Old Feedback",
"fields": [
{
"label": "Quiz passed greeting",
"description": "This text will be displayed above the score if the user has successfully passed the quiz."
},
{
"label": "Passed comment",
"description": "This comment will be displayed after the score if the user has successfully passed the quiz."
},
{
"label": "Quiz failed title",
"description": "This text will be displayed above the score if the user has failed the quiz."
},
{
"label": "Failed comment",
"description": "This comment will be displayed after the score if the user has failed the quiz."
}
]
},
{
"label": "Solution button label",
"default": "Show solution",
"description": "Text for the solution button."
},
{
"label": "Retry button label",
"default": "Retry",
"description": "Text for the retry button."
},
{
"label": "Finish button text",
"default": "Finish"
},
{
"label": "Submit button text",
"default": "Submit"
},
{
"label": "Display video before quiz results"
},
{
"label": "Enable skip video button"
},
{
"label": "Skip video button label",
"default": "Skip video"
},
{
"label": "Passed video",
"description": "This video will be played if the user successfully passed the quiz."
},
{
"label": "Fail video",
"description": "This video will be played if the user fails the quiz."
}
]
},
{
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
"fields": [
{
"label": "Show \"Check\" buttons",
"description": "This option determines if the \"Check\" button will be shown for all questions."
},
{
"label": "Override \"Show Solution\" button",
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
"options": [
{
"label": "Enabled"
},
{
"label": "Disabled"
}
]
},
{
"label": "Override \"Retry\" button",
"description": "This option determines if the \"Retry\" button will be shown for all questions, disabled for all or configured for each question individually.",
"options": [
{
"label": "Enabled"
},
{
"label": "Disabled"
}
]
}
]
}
]
}

View File

@ -1,269 +0,0 @@
{
"semantics": [
{
"label": "Quiz introduction",
"fields": [
{
"label": "Display introduction"
},
{
"label": "Title",
"description": "This title will be displayed above the introduction text."
},
{
"label": "Introduction text",
"description": "This text will be displayed before the quiz starts."
},
{
"label": "Start button text",
"default": "Start Quiz"
},
{
"label": "Background image",
"description": "An optional background image for the introduction."
}
]
},
{
"label": "Background image",
"description": "An optional background image for the Question set."
},
{
"label": "Progress indicator",
"description": "Question set progress indicator style.",
"options": [
{
"label": "Textual"
},
{
"label": "Dots"
}
]
},
{
"label": "Pass percentage",
"description": "Percentage of Total score required for passing the quiz."
},
{
"label": "Questions",
"widgets": [
{
"label": "Default"
},
{
"label": "Textual"
}
],
"entity": "question",
"field": {
"label": "Question type",
"description": "Library for this question."
}
},
{
"label": "Interface texts in quiz",
"fields": [
{
"label": "Back button",
"default": "Previous question"
},
{
"label": "Next button",
"default": "Next question"
},
{
"label": "Finish button",
"default": "Finish"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "Progress text",
"description": "Text used if textual progress is selected.",
"default": "Question: @current of @total questions"
},
{
"label": "Label for jumping to a certain question",
"description": "You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
"default": "Question %d of %total"
},
{
"label": "Copyright dialog question label",
"default": "Question"
},
{
"label": "Readspeaker progress",
"description": "May use @current and @total question variables",
"default": "Question @current of @total"
},
{
"label": "Unanswered question text",
"default": "Unanswered"
},
{
"label": "Answered question text",
"default": "Answered"
},
{
"label": "Current question text",
"default": "Current question"
}
]
},
{
"label": "Disable backwards navigation",
"description": "This option will only allow you to move forward in Question Set"
},
{
"label": "Randomize questions",
"description": "Enable to randomize the order of questions on display."
},
{
"label": "Number of questions to be shown:",
"description": "Create a randomized batch of questions from the total."
},
{
"label": "Quiz finished",
"fields": [
{
"label": "Display results"
},
{
"label": "Display solution button"
},
{
"label": "Display retry button"
},
{
"label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled",
"default": "Finished"
},
{
"label": "Feedback heading",
"default": "Your result:",
"description": "This heading will be displayed at the end of the quiz when the user has answered all questions."
},
{
"label": "Overall Feedback",
"fields": [
{
"widgets": [
{
"label": "Default"
}
],
"label": "Define custom feedback for any score range",
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
"entity": "range",
"field": {
"fields": [
{
"label": "Score Range"
},
{},
{
"label": "Feedback for defined score range",
"placeholder": "Fill in the feedback"
}
]
}
}
]
},
{
"label": "Old Feedback",
"fields": [
{
"label": "Quiz passed greeting",
"description": "This text will be displayed above the score if the user has successfully passed the quiz."
},
{
"label": "Passed comment",
"description": "This comment will be displayed after the score if the user has successfully passed the quiz."
},
{
"label": "Quiz failed title",
"description": "This text will be displayed above the score if the user has failed the quiz."
},
{
"label": "Failed comment",
"description": "This comment will be displayed after the score if the user has failed the quiz."
}
]
},
{
"label": "Solution button label",
"default": "Show solution",
"description": "Text for the solution button."
},
{
"label": "Retry button label",
"default": "Retry",
"description": "Text for the retry button."
},
{
"label": "Finish button text",
"default": "Finish"
},
{
"label": "Submit button text",
"default": "Submit"
},
{
"label": "Display video before quiz results"
},
{
"label": "Enable skip video button"
},
{
"label": "Skip video button label",
"default": "Skip video"
},
{
"label": "Passed video",
"description": "This video will be played if the user successfully passed the quiz."
},
{
"label": "Fail video",
"description": "This video will be played if the user fails the quiz."
}
]
},
{
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
"fields": [
{
"label": "Show \"Check\" buttons",
"description": "This option determines if the \"Check\" button will be shown for all questions."
},
{
"label": "Override \"Show Solution\" button",
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
"options": [
{
"label": "Enabled"
},
{
"label": "Disabled"
}
]
},
{
"label": "Override \"Retry\" button",
"description": "This option determines if the \"Retry\" button will be shown for all questions, disabled for all or configured for each question individually.",
"options": [
{
"label": "Enabled"
},
{
"label": "Disabled"
}
]
}
]
}
]
}

View File

@ -1,172 +1,165 @@
{
"semantics": [
{
"label": "Увод у квиз",
"label": "Quiz introduction",
"fields": [
{
"label": "Прикажи увод"
"label": "Display introduction"
},
{
"label": "Наслов",
"description": "Овај наслов ће бити приказан изнад уводног текста."
"label": "Title",
"description": "This title will be displayed above the introduction text."
},
{
"label": "Уводни текст",
"description": "Овај текст ће се приказати пре почетка квиза."
"label": "Introduction text",
"description": "This text will be displayed before the quiz starts."
},
{
"label": "Текст дугма Старт",
"default": "Покрени квиз"
"label": "Start button text",
"default": "Start Quiz"
},
{
"label": "Позадинска слика",
"description": "Опционална позадинска слика за увод."
"label": "Background image",
"description": "An optional background image for the introduction."
}
]
},
{
"label": "Позадинска слика",
"description": "Необавезна позадинска слика за скуп питања."
"label": "Background image",
"description": "An optional background image for the Question set."
},
{
"label": "Показатељ напретка",
"description": "Стил индикатора напретка постављеног питања.",
"label": "Progress indicator",
"description": "Question set progress indicator style.",
"options": [
{
"label": "Текстуални"
"label": "Textual"
},
{
"label": "Тачке"
"label": "Dots"
}
]
},
{
"label": "Проценат пролазности",
"description": "Проценат укупне оцене потребне за полагање квиза."
"label": "Pass percentage",
"description": "Percentage of Total score required for passing the quiz."
},
{
"label": "Питања",
"label": "Questions",
"widgets": [
{
"label": "Уобичајено"
"label": "Default"
},
{
"label": "Текстуални"
"label": "Textual"
}
],
"entity": "question",
"field": {
"label": "Тип питања",
"description": "Библиотека за ово питање."
"label": "Question type",
"description": "Library for this question."
}
},
{
"label": "Интерфејс квиза",
"label": "Interface texts in quiz",
"fields": [
{
"label": "Назад дугме",
"default": "Претходно питање"
"label": "Back button",
"default": "Previous question"
},
{
"label": "Следеће дугме",
"default": "Следеће питање"
"label": "Next button",
"default": "Next question"
},
{
"label": "Дугме Заврши",
"default": "Заврши"
"label": "Finish button",
"default": "Finish"
},
{
"label": "Submit button",
"default": "Submit"
"label": "Progress text",
"description": "Text used if textual progress is selected.",
"default": "Question: @current of @total questions"
},
{
"label": "Текст напретка",
"description": "Текст који се користи ако је одабран текстуални напредак.",
"default": "Питање: @current од @total питања"
"label": "Label for jumping to a certain question",
"description": "You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
"default": "Question %d of %total"
},
{
"label": "Ознака за прелазак на одређено питање",
"description": "Морате користити резервирано место '%d' уместо броја питања и %total уместо укупне количине питања.",
"default": "Питање %d од %total"
"label": "Copyright dialog question label",
"default": "Question"
},
{
"label": "Ознака са дијалогом о ауторским правима",
"default": "Питање"
"label": "Readspeaker progress",
"description": "May use @current and @total question variables",
"default": "Question @current of @total"
},
{
"label": "Напредак читача звучника",
"description": "Можете користити @current и @total променљиве",
"default": "Питање @current од @total"
"label": "Unanswered question text",
"default": "Unanswered"
},
{
"label": "Текст питања без одговора",
"default": "Без одговора"
"label": "Answered question text",
"default": "Answered"
},
{
"label": "Текст питања са одговором",
"default": "Одговорио"
},
{
"label": "Текст тренутног питања",
"default": "Тренутно питање"
"label": "Current question text",
"default": "Current question"
}
]
},
{
"label": "Онемогућите навигацију уназад",
"description": "Ова опција ће вам омогућити само напред у Сету питања"
"label": "Disable backwards navigation",
"description": "This option will only allow you to move forward in Question Set"
},
{
"label": "Рандомизирајте питања",
"description": "Омогућите случајни редослед приказаних питања."
"label": "Randomize questions",
"description": "Enable to randomize the order of questions on display."
},
{
"label": "Број питања која треба приказати:",
"description": "Направите насумичну серију питања од укупног броја."
"label": "Number of questions to be shown:",
"description": "Create a randomized batch of questions from the total."
},
{
"label": "Квиз је завршен",
"label": "Quiz finished",
"fields": [
{
"label": "Прикажи резултате"
"label": "Display results"
},
{
"label": "Дугме за приказ решења"
"label": "Display solution button"
},
{
"label": "Прикажи дугме за поновни покушај"
"label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled",
"default": "Finished"
},
{
"label": "Нема резултата",
"description": "Текст се приказује на завршној страници када \"Прикажи резултате\" је онемогућено",
"default": "Готово"
"label": "Feedback heading",
"default": "Your result:",
"description": "This heading will be displayed at the end of the quiz when the user has answered all questions."
},
{
"label": "Наслов повратне информације",
"default": "Ваш резултат:",
"description": "Овај наслов ће се приказати на крају квиза када корисник одговори на сва питања."
},
{
"label": "Укупне повратне информације",
"label": "Overall Feedback",
"fields": [
{
"widgets": [
{
"label": "Уобичајено"
"label": "Default"
}
],
"label": "Дефинишите прилагођене повратне информације за било који опсег резултата",
"description": "Пример: 0-20% Лош резултат, 21-91% Просечан резултат, 91-100% Одличан резултат!",
"label": "Define custom feedback for any score range",
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
"entity": "range",
"field": {
"fields": [
{
"label": "Распон резултата"
"label": "Score Range"
},
{},
{
"label": "Повратне информације за дефинисани опсег резултата",
"placeholder": "Попуните повратне информације"
"label": "Feedback for defined score range",
"placeholder": "Fill in the feedback"
}
]
}
@ -174,96 +167,92 @@
]
},
{
"label": "Остале повратне информације",
"label": "Old Feedback",
"fields": [
{
"label": "Квиз је завршен",
"description": "Овај текст ће бити приказан изнад резултата ако је корисник успешно прошао квиз."
"label": "Quiz passed greeting",
"description": "This text will be displayed above the score if the user has successfully passed the quiz."
},
{
"label": "Прошао коментар",
"description": "Овај коментар ће се приказати након резултата ако је корисник успешно прошао квиз."
"label": "Passed comment",
"description": "This comment will be displayed after the score if the user has successfully passed the quiz."
},
{
"label": "Квиз није успео",
"description": "Овај текст ће се приказати изнад резултата ако је корисник пао у квизу."
"label": "Quiz failed title",
"description": "This text will be displayed above the score if the user has failed the quiz."
},
{
"label": "Неуспели коментар",
"description": "Овај коментар ће се приказати након резултата ако је корисник пао у квизу."
"label": "Failed comment",
"description": "This comment will be displayed after the score if the user has failed the quiz."
}
]
},
{
"label": "Ознака дугмета за решење",
"default": "Прикажи решења",
"description": "Текст за дугме за решење."
"label": "Solution button label",
"default": "Show solution",
"description": "Text for the solution button."
},
{
"label": "Ознака дугмета - Покушај поново",
"default": "Покушај поново",
"description": "Текст за дугме за поновни покушај."
"label": "Retry button label",
"default": "Retry",
"description": "Text for the retry button."
},
{
"label": "Текст дугмета - Заврши",
"default": "Заврши"
"label": "Finish button text",
"default": "Finish"
},
{
"label": "Submit button text",
"default": "Submit"
"label": "Display video before quiz results"
},
{
"label": "Прикажите видео пре резултата квиза"
"label": "Enable skip video button"
},
{
"label": "Омогући дугме за прескакање видео записа"
"label": "Skip video button label",
"default": "Skip video"
},
{
"label": "Ознака за прескакање видеа",
"default": "Прескочи видео"
"label": "Passed video",
"description": "This video will be played if the user successfully passed the quiz."
},
{
"label": "Видео је прошао",
"description": "Овај видео ће се репродуковати ако је корисник успешно прошао квиз."
},
{
"label": "Неуспели видео",
"description": "Овај видео ће се репродуковати ако корисник није прошао квиз."
"label": "Fail video",
"description": "This video will be played if the user failes the quiz."
}
]
},
{
"label": "Подешавања за \"Прикажи решења\" и \"Врати\" дугмиће",
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
"fields": [
{
"label": "Прикажи \"Провери\" дугме",
"description": "Ова опција одређује да ли ће \"Провери\" дугме ће бити приказано за сва питања."
"label": "Show \"Check\" buttons",
"description": "This option determines if the \"Check\" button will be shown for all questions."
},
{
"label": "Прегазити \"Прикажи решења\" дугме",
"description": "Ова опција одређује да ли ће \"Прикажи решења\" дугме бити приказано за сва питања, онемогућено за сва или конфигурисано за свако питање појединачно.",
"label": "Override \"Show Solution\" button",
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
"options": [
{
"label": "Омогући"
"label": "Enabled"
},
{
"label": "Онемогући"
"label": "Disabled"
}
]
},
{
"label": "Прегази \"Врати\" дугме",
"description": "Ова опција одређује да ли ће \"Врати\" дугме бити приказано за сва питања, онемогућено за сва или конфигурисано за свако питање појединачно.",
"label": "Override \"Retry\" button",
"description": "This option determines if the \"Retry\" button will be shown for all questions, disabled for all or configured for each question individually.",
"options": [
{
"label": "Омогући"
"label": "Enabled"
},
{
"label": "Онемогући"
"label": "Disabled"
}
]
}
]
}
]
}
}

View File

@ -1,172 +1,165 @@
{
"semantics": [
{
"label": "Introduktion",
"label": "Quiz introduction",
"fields": [
{
"label": "Visa introduktion"
"label": "Display introduction"
},
{
"label": "Titel",
"description": "Denna titel kommer att visas ovanför introduktionstexten."
"label": "Title",
"description": "This title will be displayed above the introduction text."
},
{
"label": "Introduktionstext",
"description": "Denna text kommer att visas före testet startar."
"label": "Introduction text",
"description": "This text will be displayed before the quiz starts."
},
{
"label": "Text på startknapp",
"default": "Starta quiz"
"label": "Start button text",
"default": "Start Quiz"
},
{
"label": "Bakgrundsbild",
"description": "En valfri bakgrundsbild för introduktionen."
"label": "Background image",
"description": "An optional background image for the introduction."
}
]
},
{
"label": "Bakgrundsbild",
"description": "En valfri bakgrundsbild för uppsättningen av frågor."
"label": "Background image",
"description": "An optional background image for the Question set."
},
{
"label": "Framstegsindikator",
"description": "Stil på framstegsindikator för fråge-uppsättningen.",
"label": "Progress indicator",
"description": "Question set progress indicator style.",
"options": [
{
"label": "Textuell"
"label": "Textual"
},
{
"label": "Prickar"
"label": "Dots"
}
]
},
{
"label": "Procent för godkänt",
"description": "Procent av total poäng som krävs för att få godkänt på denna quiz."
"label": "Pass percentage",
"description": "Percentage of Total score required for passing the quiz."
},
{
"label": "Frågor",
"label": "Questions",
"widgets": [
{
"label": "Standard"
"label": "Default"
},
{
"label": "Textuell"
"label": "Textual"
}
],
"entity": "fråga",
"entity": "question",
"field": {
"label": "Frågetyp",
"description": "Välj frågetyp för denna fråga."
"label": "Question type",
"description": "Library for this question."
}
},
{
"label": "Ledtexter i quiz",
"label": "Interface texts in quiz",
"fields": [
{
"label": "Tillbaka-knapp",
"default": "Föregående fråga"
"label": "Back button",
"default": "Previous question"
},
{
"label": "Nästa-knapp",
"default": "Nästa fråga"
"label": "Next button",
"default": "Next question"
},
{
"label": "Avsluta-knapp",
"default": "Avsluta"
"label": "Finish button",
"default": "Finish"
},
{
"label": "Submit button",
"default": "Submit"
"label": "Progress text",
"description": "Text used if textual progress is selected.",
"default": "Question: @current of @total questions"
},
{
"label": "Text för framsteg",
"description": "Text som används om textuella framsteg är valt.",
"default": "Fråga: @current av @total frågor"
"label": "Label for jumping to a certain question",
"description": "You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
"default": "Question %d of %total"
},
{
"label": "Etikett för att hoppa till en viss fråga",
"description": "Du måste använda variabel '%d' istället för frågenummer, och %total istället för totalt antal frågor.",
"default": "Fråga %d av %total"
"label": "Copyright dialog question label",
"default": "Question"
},
{
"label": "Upphovsrätt fråge-etikett",
"default": "Fråga"
"label": "Readspeaker progress",
"description": "May use @current and @total question variables",
"default": "Question @current of @total"
},
{
"label": "Skärmläsarframsteg",
"description": "Kan använda @current och @total frågevariabler",
"default": "Fråga @current av @total"
"label": "Unanswered question text",
"default": "Unanswered"
},
{
"label": "Text för obesvarad fråga",
"default": "Obesvarad"
"label": "Answered question text",
"default": "Answered"
},
{
"label": "Text för besvarad fråga",
"default": "Besvarad"
},
{
"label": "Text för nuvarande fråga",
"default": "Nuvarande fråga"
"label": "Current question text",
"default": "Current question"
}
]
},
{
"label": "Inaktivera navigation bakåt",
"description": "Denna inställning tillåter endast navigation framåt i uppsättningen av frågor"
"label": "Disable backwards navigation",
"description": "This option will only allow you to move forward in Question Set"
},
{
"label": "Slumpa frågor",
"description": "Aktivera för att slumpa ordningsföljden på frågorna som visas."
"label": "Randomize questions",
"description": "Enable to randomize the order of questions on display."
},
{
"label": "Antal frågor som ska visas:",
"description": "Skapa ett slumpmässig urval av frågor."
"label": "Number of questions to be shown:",
"description": "Create a randomized batch of questions from the total."
},
{
"label": "Quiz avslutat",
"label": "Quiz finished",
"fields": [
{
"label": "Visa resultat"
"label": "Display results"
},
{
"label": "Visa rätt svar-knapp"
"label": "Display solution button"
},
{
"label": "Visa försök igen-knapp"
"label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled",
"default": "Finished"
},
{
"label": "Meddelande vid inget resultat",
"description": "Text som visas på slutsida när \"Visa resultat\" är inaktiverat",
"default": "Avslutat"
"label": "Feedback heading",
"default": "Your result:",
"description": "This heading will be displayed at the end of the quiz when the user has answered all questions."
},
{
"label": "Rubrik för feedback",
"default": "Ditt resultat:",
"description": "Denna rubrik visas på slutet av denna quiz när användaren har svarat på alla frågor."
},
{
"label": "Samlad feedback",
"label": "Overall Feedback",
"fields": [
{
"widgets": [
{
"label": "Standard"
"label": "Default"
}
],
"label": "Definiera anpassad feedback för valfria poängintervall",
"description": "Exempel: 0-20% Inte så bra, 21-91% Medel, 91-100% Jättebra!",
"entity": "intervall",
"label": "Define custom feedback for any score range",
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
"entity": "range",
"field": {
"fields": [
{
"label": "Poängintervall"
"label": "Score Range"
},
{},
{
"label": "Feedback för detta poängintervall",
"placeholder": "Fyll i feedback"
"label": "Feedback for defined score range",
"placeholder": "Fill in the feedback"
}
]
}
@ -174,96 +167,92 @@
]
},
{
"label": "Gammal Feedback",
"label": "Old Feedback",
"fields": [
{
"label": "Titel vid godkänd quiz",
"description": "Denna text kommer att visas ovanför poängen om användaren har lyckats få godkänt."
"label": "Quiz passed greeting",
"description": "This text will be displayed above the score if the user has successfully passed the quiz."
},
{
"label": "Kommentar vid godkänt",
"description": "Denna kommentar kommer att visas efter poängen om användaren har lyckats få godkänt."
"label": "Passed comment",
"description": "This comment will be displayed after the score if the user has successfully passed the quiz."
},
{
"label": "Titel vid ej godkänd quiz",
"description": "Denna text kommer att visas ovanför poängen om användaren har missyckats med att nå godkänt."
"label": "Quiz failed title",
"description": "This text will be displayed above the score if the user has failed the quiz."
},
{
"label": "Kommentar vid ej godkänt",
"description": "Denna kommentar kommer att visas efter poängen om användaren har misslyckats med att nå godkänt."
"label": "Failed comment",
"description": "This comment will be displayed after the score if the user has failed the quiz."
}
]
},
{
"label": "Etikett för Visa rätt svar",
"default": "Visa rätt svar",
"description": "Text för knappen Visa rätt svar."
"label": "Solution button label",
"default": "Show solution",
"description": "Text for the solution button."
},
{
"label": "Etikett för knappen Försök igen",
"default": "Försök igen",
"description": "Text för knappen Försök igen."
"label": "Retry button label",
"default": "Försök på nytt",
"description": "Text for the retry button."
},
{
"label": "Text för knappen Avsluta",
"default": "Avsluta"
"label": "Finish button text",
"default": "Finish"
},
{
"label": "Submit button text",
"default": "Submit"
"label": "Display video before quiz results"
},
{
"label": "Visa video före resultat från denna quiz"
"label": "Enable skip video button"
},
{
"label": "Aktivera knapp för Hoppa över video"
"label": "Skip video button label",
"default": "Skip video"
},
{
"label": "Etikett för knapp Hoppa över video",
"default": "Hoppa över video"
"label": "Passed video",
"description": "This video will be played if the user successfully passed the quiz."
},
{
"label": "Godkänt-video",
"description": "Denna video kommer att visas om användaren har lyckats få godkänt på denna quiz."
},
{
"label": "Ej godkänt-video",
"description": "Denna video kommer att visas om användaren misslyckas med att nå godkänt på denna quiz."
"label": "Fail video",
"description": "This video will be played if the user failes the quiz."
}
]
},
{
"label": "Inställningar för knapparna \"Visa lösning\" och \"Försök igen\"",
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
"fields": [
{
"label": "Visa \"Svara\"-knappar",
"description": "Denna inställning avgör om knappen \"Svara\" (som visar om svaret var korrekt eller ej) ska visas på alla frågor."
"label": "Show \"Check\" buttons",
"description": "This option determines if the \"Check\" button will be shown for all questions."
},
{
"label": "Ignorera knapp \"Visa rätt svar\"",
"description": "Denna inställning avgör om knappen \"Visa rätt svar\" ska visas på alla frågor, vara inaktiverad för alla frågor, eller konfigureras individuellt per fråga.",
"label": "Override \"Show Solution\" button",
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
"options": [
{
"label": "Aktiverad"
"label": "Enabled"
},
{
"label": "Inaktiverad"
"label": "Disabled"
}
]
},
{
"label": "Ignorera knapp \"Försök igen\"",
"description": "Denna inställning avgör om knappen \"Försök igen\" ska visas på alla frågor, vara inaktiverad för alla frågor, eller konfigureras individuellt per fråga.",
"label": "Override \"Retry\" button",
"description": "This option determines if the \"Retry\" button will be shown for all questions, disabled for all or configured for each question individually.",
"options": [
{
"label": "Aktiverad"
"label": "Enabled"
},
{
"label": "Inaktiverad"
"label": "Disabled"
}
]
}
]
}
]
}
}

View File

@ -1,51 +1,51 @@
{
"semantics": [
{
"label": "Sınav (Quiz) Hakkında Bilgilendirme",
"label": "Quiz introduction",
"fields": [
{
"label": "Bilgilendirmeyi göster"
"label": "Display introduction"
},
{
"label": "Başlık",
"description": "Bu başlık bilgilendirme metninin başlığıdır. "
"label": "Title",
"description": "This title will be displayed above the introduction text."
},
{
"label": "Bilgilendirme metni",
"description": "Sınav (quiz) başlamadan önce gösterlecek metin"
"label": "Giriş metni",
"description": "This text will be displayed before the quiz starts."
},
{
"label": "Başla butonu metni",
"default": "Sınavı başlat"
"label": "Start button text",
"default": "Start Quiz"
},
{
"label": "Arka plan görseli",
"description": "Bilgilendirme bölümü için isterseniz arka plan görseli ekleyebilirsiniz."
"label": "Background image",
"description": "An optional background image for the introduction."
}
]
},
{
"label": "Arka plan görseli",
"description": "Soru seti için isteğe bağlı arka plan görseli."
"label": "Background image",
"description": "An optional background image for the Question set."
},
{
"label": "İlerleme göstergeleri",
"description": "Soru seti ilerleme göstergesi stili",
"label": "Progress indicator",
"description": "Question set progress indicator style.",
"options": [
{
"label": "Metinsel"
"label": "Metin"
},
{
"label": "Noktalar"
"label": "Dots"
}
]
},
{
"label": "Geçme puanı (%)",
"description": "Sınavı (quiz) geçmek için gerekli toplam puan yüzdesi."
"label": "Geçiş yüzdesi",
"description": "Quizi geçmek için gerekli toplam puan yüzdesi."
},
{
"label": "Sorular",
"label": "Questions",
"widgets": [
{
"label": "Varsayılan"
@ -54,119 +54,112 @@
"label": "Metin"
}
],
"entity": "soru",
"entity": "question",
"field": {
"label": "Soru türü",
"description": "Soru şablonlarından seçin"
"label": "Question type",
"description": "Library for this question."
}
},
{
"label": "Test arayüz metinleri",
"label": "Interface texts in quiz",
"fields": [
{
"label": "Geri butonu",
"default": "Önceki soru"
"label": "Back button",
"default": "Previous question"
},
{
"label": "Sonraki butonu",
"default": "Sonraki soru"
"label": "Next button",
"default": "Next question"
},
{
"label": "Bitir butonu",
"label": "Finish button",
"default": "Bitir"
},
{
"label": "Submit button",
"default": "Submit"
"label": "Progress text",
"description": "Text used if textual progress is selected.",
"default": "Question: @current of @total questions"
},
{
"label": "İlerleme metni",
"description": "İlerleme göstergesi olarak metin seçildiyse kullanılacak metin.",
"default": "Soru: @current / @total"
"label": "Label for jumping to a certain question",
"description": "You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
"default": "Question %d of %total"
},
{
"label": "Belirli bir soruya geçmek için etiket",
"description": "Soru numarası yerine '%d' yer tutucusunu ve toplam soru sayısı yerine de %total'ı kullanmalısınız.",
"default": "Soru %d / %total"
},
{
"label": "Telif hakkı iletişim kutusu soru etiketi",
"label": "Copyright dialog question label",
"default": "Soru"
},
{
"label": "Okuyucu ilerleme durumu",
"description": "@current ve @total soru değişkenleri kullanabilir",
"default": "Soru @current / @total"
"label": "Readspeaker progress",
"description": "May use @current and @total question variables",
"default": "Question @current of @total"
},
{
"label": "Yanıtlanmamış soru için metin",
"default": "Yanıtlanmadı"
"label": "Unanswered question text",
"default": "Unanswered"
},
{
"label": "Yanıtlanmış soru için metin",
"default": "Yanıtlandı"
"label": "Answered question text",
"default": "Answered"
},
{
"label": "Geçerli soru için metin",
"default": "Geçerli soru"
"label": "Current question text",
"default": "Current question"
}
]
},
{
"label": "Geri gelmeyi engelle",
"description": "Bu seçenek soru setinde sadece ileri doğru gezmeye olanak verir önceki soruya dönemez."
"label": "Disable backwards navigation",
"description": "This option will only allow you to move forward in Question Set"
},
{
"label": "Rastgele Sorular",
"description": "Soruların ekranda rastgele bir şekilde (her seferinde farklı sıralamada) gelmesi için etkinleştirin."
"label": "Randomize questions",
"description": "Soruları sırasını ekranda rasgele gelmesi için etkinleştirin."
},
{
"label": "Sınavda sorulacak soru sayısı:",
"description": "Soru havuzundan belirli sayıda rastgele soru seçmenizi sağlar."
"label": "Number of questions to be shown:",
"description": "Create a randomized batch of questions from the total."
},
{
"label": "Sınav (quiz) bitti",
"label": "Quiz finished",
"fields": [
{
"label": "Sonuçları göster"
"label": "Display results"
},
{
"label": "Çözümü göster butonunu göster"
"label": "Display solution button"
},
{
"label": "Yeniden dene butonunu göster"
"label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled",
"default": "Finished"
},
{
"label": "Sonuç yok mesajı",
"description": " \"Sonuçları göster\" devre dışı bırakıldığında gösterilecek metin.",
"default": "Bitti"
"label": "Feedback heading",
"default": "Your result:",
"description": "This heading will be displayed at the end of the quiz when the user has answered all questions."
},
{
"label": "Geri bildirim başlığı",
"default": "Sonucunuz:",
"description": "Bu başlık, kullanıcı tüm soruları yanıtladığında sınavın sonunda görüntülenecektir."
},
{
"label": "Genel geri bildirim",
"label": "Overall Feedback",
"fields": [
{
"widgets": [
{
"label": "Varsayılan"
"label": "Default"
}
],
"label": "Herhangi bir puan aralığı için özel geri bildirim tanımlayabilirsiniz.",
"description": "Örnek: 0-44% Geliştirilmeli, 45-70% Orta, 70-100% İyi!",
"entity": "aralık",
"label": "Define custom feedback for any score range",
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
"entity": "range",
"field": {
"fields": [
{
"label": "Skor Aralığı"
"label": "Score Range"
},
{},
{
"label": "Tanımlanmış puan aralığı için geri bildirim",
"placeholder": "Geri bildirim için doldurun"
"label": "Feedback for defined score range",
"placeholder": "Fill in the feedback"
}
]
}
@ -174,97 +167,92 @@
]
},
{
"label": "Eski Geri Bildirim",
"label": "Old Feedback",
"fields": [
{
"label": "Sınavı geçtiniz tebrikler",
"description": "Kullanıcı sınavı başarıyla geçerse puanının üzerinde bu metin görüntülenecektir."
"label": "Quiz passed greeting",
"description": "This text will be displayed above the score if the user has successfully passed the quiz."
},
{
"label": "Geçti yorumu",
"description": "Kullanıcı sınavı başarıyla geçtiyse puandan sonra bu yorum görüntülenecektir."
"label": "Passed comment",
"description": "This comment will be displayed after the score if the user has successfully passed the quiz."
},
{
"label": "Sınav başarısız başlığı",
"description": "Kullanıcı sınavda başarısız olursa puanının üzerinde bu metin görüntülenecektir."
"label": "Quiz failed title",
"description": "This text will be displayed above the score if the user has failed the quiz."
},
{
"label": "Kaldı yorumu",
"description": "Kullanıcı sınavda başarısız olursa puandan sonra bu yorum görüntülenecektir."
"label": "Failed comment",
"description": "This comment will be displayed after the score if the user has failed the quiz."
}
]
},
{
"label": "Çözümü göster butonu etiketi",
"label": "Solution button label",
"default": "Çözümü göster",
"description": "Çözümü göster butonu için etiket"
"description": "Text for the solution button."
},
{
"label": "Yeniden dene butonu etiketi",
"default": "Yeniden Dene",
"description": "Yeniden dene butonu için etiket"
"label": "Yeniden dene buton etiketi",
"default": "Yeniden dene",
"description": "Text for the retry button."
},
{
"label": "Bitir butonu için etiket",
"label": "Finish button text",
"default": "Bitir"
},
{
"label": "Submit button text",
"default": "Submit"
"label": "Display video before quiz results"
},
{
"label": "Sınav sonuçlarından önce videoyu göster"
"label": "Enable skip video button"
},
{
"label": "Videoyu atla düğmesini etkinleştir"
"label": "Skip video button label",
"default": "Skip video"
},
{
"label": "Videoyu atla düğmesi etiketi",
"default": "Videoyu Atla"
"label": "Passed video",
"description": "This video will be played if the user successfully passed the quiz."
},
{
"label": "Geçti videosu",
"description": "Bu video, kullanıcı sınavı başarıyla geçerse oynatılacaktır."
},
{
"label": "Kaldı videosu",
"description": "Bu video, kullanıcı sınavda başarısız olursa oynatılacaktır."
"label": "Fail video",
"description": "This video will be played if the user failes the quiz."
}
]
},
{
"label": "\"Çözümü göster\" ve \"Yeniden dene\" butonları için ayarlar",
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
"fields": [
{
"label": "\"Kontrol et\" butonlarını göster",
"description": "Bu seçenek, tüm sorular için \"Kontrol et\" butonunun gösterilip gösterilmeyeceğini belirler."
"label": "Show \"Check\" buttons",
"description": "This option determines if the \"Check\" button will be shown for all questions."
},
{
"label": "\"Çözümü göster\" butonunu etkinleştir.",
"description": "Bu seçenek, \"Çözümü göster\" butonunun tüm sorular için gösterilip gösterilmeyeceğini, tümü için devre dışı bırakılıp bırakılmayacağını veya her soru için ayrı ayrı yapılandırılıp yapılandırılmayacağını belirler.",
"label": "Override \"Show Solution\" button",
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
"options": [
{
"label": "Etkinleştir"
"label": "Enabled"
},
{
"label": "Devre dışı bırak"
"label": "Disabled"
}
]
},
{
"label": "Override \"Yeniden dene\" ",
"description": "Bu seçenek, \"Yeniden dene\" butonunun tüm sorular için gösterilip gösterilmeyeceğini, tümü için devre dışı bırakılıp bırakılmayacağını veya her soru için ayrı ayrı yapılandırılıp yapılandırılmayacağını belirler.",
"label": "Override \"Retry\" button",
"description": "This option determines if the \"Retry\" button will be shown for all questions, disabled for all or configured for each question individually.",
"options": [
{
"label": "Etkinleştir"
"label": "Enabled"
},
{
"label": "Devre dışı bırak"
"label": "Disabled"
}
]
}
]
}
]
}
}

View File

@ -1,269 +0,0 @@
{
"semantics": [
{
"label": "Опис тесту",
"fields": [
{
"label": "Показати опис"
},
{
"label": "Заголовок",
"description": "Цей заголовок буде відображатися над текстом опису."
},
{
"label": "Текст опису",
"description": "Цей текст буде показано перед початком тесту."
},
{
"label": "Текст кнопки початку",
"default": "Розпочати тест"
},
{
"label": "Зображення тла",
"description": "Додаткове зображення тла для опису."
}
]
},
{
"label": "Зображення тла",
"description": "Необов'язкове зображення тла для набору запитань."
},
{
"label": "Індикатор прогресу",
"description": "Встановіть стиль індикатора прогресу для набору запитань.",
"options": [
{
"label": "Текстовий"
},
{
"label": "Крапковий"
}
]
},
{
"label": "Прохідний відсоток",
"description": "Відсоток від загальної кількості балів, необхідних для проходження тесту."
},
{
"label": "Запитання",
"widgets": [
{
"label": "За умовчанням"
},
{
"label": "Текстовий"
}
],
"entity": "question",
"field": {
"label": "Тип запитання",
"description": "Бібліотека для цього запитання."
}
},
{
"label": "Інтерфейс текстів в тесті",
"fields": [
{
"label": "Кнопка Назад",
"default": "Попереднє запитання"
},
{
"label": "Кнопка Далі",
"default": "Наступне запитання"
},
{
"label": "Кнопка Завершити",
"default": "Завершити"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "Текст прогресу",
"description": "Текст, який використовується якщо обрано текстовий прогрес.",
"default": "Запитання: @current із @total запитань"
},
{
"label": "Надпис для переходу до певного запитання",
"description": "Ви повинні використовувати заповнювач '%d' замість номера запитання, і %total замість загальної кількості запитань.",
"default": "Запитання %d із %total"
},
{
"label": "Надпис діалогового вікна про авторські права запитання",
"default": "Запитання"
},
{
"label": "Відтворення прогресу",
"description": "Можна використовувати змінні @current і @total",
"default": "Запитання @current із @total"
},
{
"label": "Текст запитань без відповіді",
"default": "Без відповіді"
},
{
"label": "Текст запитань з відповідями",
"default": "Є відповідь"
},
{
"label": "Текст поточного запитання",
"default": "Поточне запитання"
}
]
},
{
"label": "Вимкнути зворотню навігацію",
"description": "Ця опція дозволить вам рухатись тільки вперед в наборі запитань"
},
{
"label": "Випадкові запитання",
"description": "Увімкнути випадковий порядок запитань для відображення."
},
{
"label": "Кількість запитань, які будуть показані:",
"description": "Створити групу випадкових запитань із загальної кількості."
},
{
"label": "Тест завершено",
"fields": [
{
"label": "Показати результати"
},
{
"label": "Кнопка показу відповідей"
},
{
"label": "Відобразити кнопку повторити"
},
{
"label": "Повідомлення про відсутність результатів",
"description": "Текст, який буде відображатися на останній сторінці, коли \"Показати результати\" відключено",
"default": "Завершено"
},
{
"label": "Заголовок зворотнього зв'язку",
"default": "Ваш результат:",
"description": "Цей заголовок буде відображатися в кінці тесту, коли користувач дасть відповіді на всі запитання."
},
{
"label": "Загальний відгук",
"fields": [
{
"widgets": [
{
"label": "За умовчанням"
}
],
"label": "Визначення довільних відгуків для кожного діапазону оцінок",
"description": "Наприклад: 0-20% Погана оцінка, 21-91% Середня оцінка, 91-100% Відмінна оцінка!",
"entity": "range",
"field": {
"fields": [
{
"label": "Діапазон балів"
},
{},
{
"label": "Зворотній зв'язок для певного діапазону оцінок",
"placeholder": "Заповніть відгук"
}
]
}
}
]
},
{
"label": "Старий відгук",
"fields": [
{
"label": "Привітання користувача, який пройшов тест",
"description": "Цей текст буде відображатися над оцінкою, якщо користувач успішно пройшов тест."
},
{
"label": "Коментар для пройденого тесту",
"description": "Цей коментар буде відображатися після оцінки, якщо користувач успішно пройшов тест."
},
{
"label": "Заголовок непройденого тесту",
"description": "Цей текст буде відображатися над оцінкою, якщо користувач не пройшов тест."
},
{
"label": "Коментар непройденого тесту",
"description": "Цей коментар будет відображатися після оцінки, якщо користувач не пройшов тест."
}
]
},
{
"label": "Надпис кнопки показу відповідей",
"default": "Показати відповіді",
"description": "Текст для кнопки показу відповідей."
},
{
"label": "Надпис кнопки повтору",
"default": "Повторити",
"description": "Текст для кнопки повтору."
},
{
"label": "Текст кнопки завершення",
"default": "Завершити"
},
{
"label": "Submit button text",
"default": "Submit"
},
{
"label": "Показати відео до результатів тесту"
},
{
"label": "Включити кнопку пропуску відео"
},
{
"label": "Надпис кнопки пропуску відео",
"default": "Пропустити відео"
},
{
"label": "Відео пройденого тесту",
"description": "Це відео буде відтворено, якщо користувач успішно пройшов тест."
},
{
"label": "Відео непройденого тесту",
"description": "Це відео будет відтворено, якщо користувач не пройшов тест."
}
]
},
{
"label": "Настройки для кнопок \"Показати відповідь\" і \"Повторити\"",
"fields": [
{
"label": "Показати кнопку \"Перевірити\"",
"description": "Ця опція визначає, чи буде кнопка \"Перевірити\" відображатися для всіх запитань."
},
{
"label": "Перевизначення кнопки \"Показати відповідь\"",
"description": "Цей параметр визначає, чи будет кнопка \"Показати відповідь\" відображатися для всіх запитань, відключена для всіх чи настроєна для кожного запитання окремо.",
"options": [
{
"label": "Увімкнена"
},
{
"label": "Вимкнена"
}
]
},
{
"label": "Перевизначення кнопки \"Повторити\"",
"description": "Цей параметр визначає, чи будет кнопка \"Повторити\" відображатися для всіх запитань, відключена для всіх чи настроєна для кожного запитання окремо.",
"options": [
{
"label": "Увімкнена"
},
{
"label": "Вимкнена"
}
]
}
]
}
]
}

View File

@ -75,10 +75,6 @@
"label": "Finish button",
"default": "Finish"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "Progress text",
"description": "Text used if textual progress is selected.",
@ -133,9 +129,6 @@
{
"label": "Display solution button"
},
{
"label": "Display retry button"
},
{
"label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled",
@ -208,14 +201,6 @@
"label": "Finish button text",
"default": "Finish"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "Submit button text",
"default": "Submit"
},
{
"label": "Display video before quiz results"
},
@ -232,7 +217,7 @@
},
{
"label": "Fail video",
"description": "This video will be played if the user fails the quiz."
"description": "This video will be played if the user failes the quiz."
}
]
},

View File

@ -75,10 +75,6 @@
"label": "完成功能鈕名稱",
"default": "完成"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "進度",
"description": "若進度指示選擇以文字方式呈現,則以文字方式顯示.",
@ -133,9 +129,6 @@
{
"label": "顯示查看解法功能鈕"
},
{
"label": "Display retry button"
},
{
"label": "沒有結果顯示資訊",
"description": "當未啟用顯示結果時,結束頁面所顯示的文字",
@ -208,10 +201,6 @@
"label": "完成功能鈕名稱",
"default": "完成"
},
{
"label": "Submit button text",
"default": "Submit"
},
{
"label": "在測驗結果前撥放影片"
},

View File

@ -75,10 +75,6 @@
"label": "完成按鈕顯示文字",
"default": "完成"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "進度顯示文字",
"description": "若進度指示選擇文字式時顯示的文字。",
@ -133,9 +129,6 @@
{
"label": "顯示正解按鈕"
},
{
"label": "Display retry button"
},
{
"label": "不顯示測驗結果時的訊息",
"description": "若沒有勾選「顯示測驗結果」,在結束頁面上會顯示的文字。",
@ -208,10 +201,6 @@
"label": "完成按鈕的顯示文字",
"default": "完成"
},
{
"label": "Submit button text",
"default": "Submit"
},
{
"label": "在測驗結果出現前顯示影片"
},

View File

@ -3,8 +3,8 @@
"description": "Put together a set of different questions that has to be solved. (Quiz)",
"contentType": "question",
"majorVersion": 1,
"minorVersion": 17,
"patchVersion": 7,
"minorVersion": 15,
"patchVersion": 0,
"embedTypes": [
"iframe"
],
@ -14,7 +14,7 @@
"author": "Joubel",
"coreApi": {
"majorVersion": 1,
"minorVersion": 19
"minorVersion": 14
},
"license": "MIT",
"preloadedJs": [
@ -41,7 +41,7 @@
{
"machineName": "H5P.Video",
"majorVersion": 1,
"minorVersion": 5
"minorVersion": 4
},
{
"machineName": "H5P.JoubelUI",

View File

@ -1,42 +0,0 @@
var H5PPresave = H5PPresave || {};
/**
* Resolve the presave logic for the content type Question Set
*
* @param {object} content
* @param finished
* @constructor
*/
H5PPresave['H5P.QuestionSet'] = function (content, finished) {
var presave = H5PEditor.Presave;
if (isContentInvalid()) {
throw new presave.exceptions.InvalidContentSemanticsException('Invalid Question Set Error');
}
var score = content.questions
.filter(function (action) {
return action.hasOwnProperty('library') && action.hasOwnProperty('params');
})
.map(function (action) {
return (new presave).process(action.library, action.params).maxScore;
})
.reduce(function (currentScore, scoreToAdd) {
if (presave.isInt(scoreToAdd)) {
currentScore += scoreToAdd;
}
return currentScore;
}, 0);
presave.validateScore(score);
finished({maxScore: score});
/**
* Check if required parameters is present
* @return {boolean}
*/
function isContentInvalid() {
return !presave.checkNestedRequirements(content, 'content.questions') || !Array.isArray(content.questions);
}
};

View File

@ -22,8 +22,7 @@
"sub",
"sup",
"strong",
"em",
"code"
"em"
]
},
{
@ -40,8 +39,7 @@
"sup",
"strong",
"em",
"p",
"code"
"p"
]
},
{
@ -123,13 +121,12 @@
"importance": "high",
"description": "Library for this question.",
"options": [
"H5P.MultiChoice 1.14",
"H5P.DragQuestion 1.13",
"H5P.Blanks 1.12",
"H5P.MarkTheWords 1.9",
"H5P.DragText 1.8",
"H5P.TrueFalse 1.6",
"H5P.Essay 1.2"
"H5P.MultiChoice 1.12",
"H5P.DragQuestion 1.12",
"H5P.Blanks 1.10",
"H5P.MarkTheWords 1.8",
"H5P.DragText 1.7",
"H5P.TrueFalse 1.4"
]
}
},
@ -170,8 +167,7 @@
"default": "Question: @current of @total questions",
"tags": [
"strong",
"em",
"code"
"em"
]
},
{
@ -265,12 +261,6 @@
"label": "Display solution button",
"default": true
},
{
"name": "showRetryButton",
"type": "boolean",
"label": "Display retry button",
"default": true
},
{
"name": "noResultMessage",
"type": "text",
@ -289,8 +279,7 @@
"description": "This heading will be displayed at the end of the quiz when the user has answered all questions.",
"tags": [
"strong",
"em",
"code"
"em"
]
},
{
@ -367,8 +356,7 @@
"description": "This text will be displayed above the score if the user has successfully passed the quiz.",
"tags": [
"strong",
"em",
"code"
"em"
]
},
{
@ -385,8 +373,7 @@
"strong",
"em",
"a",
"p",
"code"
"p"
]
},
{
@ -398,8 +385,7 @@
"description": "This text will be displayed above the score if the user has failed the quiz.",
"tags": [
"strong",
"em",
"code"
"em"
]
},
{
@ -416,8 +402,7 @@
"strong",
"em",
"a",
"p",
"code"
"p"
]
}
]
@ -478,7 +463,7 @@
"label": "Fail video",
"importance": "low",
"optional": true,
"description": "This video will be played if the user fails the quiz."
"description": "This video will be played if the user failes the quiz."
}
]
},
@ -554,4 +539,4 @@
}
]
}
]
]