Merge pull request #1 from h5p/master

f
pull/46/head
Erkki Virtanen 2019-06-12 13:37:08 +03:00 committed by GitHub
commit 2e10376092
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
38 changed files with 4884 additions and 3562 deletions

View File

@ -120,10 +120,6 @@
content: "\f01e"; content: "\f01e";
} }
.qs-footer > .next, .qs-footer > .finish, .qs-finishbutton {
float: right;
}
/* Need to disable max-height animation stuff, since this will /* Need to disable max-height animation stuff, since this will
make resizing of iframe in Safari not work! */ make resizing of iframe in Safari not work! */
.questionset .h5p-question-buttons.h5p-question-visible { .questionset .h5p-question-buttons.h5p-question-visible {
@ -155,15 +151,6 @@
line-height: 2.2335em; line-height: 2.2335em;
} }
.h5p-question .h5p-question-next,
.h5p-question .h5p-question-finish {
margin: 0 0 1.5em 0.5em;
}
.h5p-question .h5p-question-prev {
margin: 0 0.5em 1.5em 0.5em;
}
.h5p-question .h5p-question-next:before { .h5p-question .h5p-question-next:before {
content: "\f054"; content: "\f054";
padding-right: 0; padding-right: 0;
@ -178,17 +165,14 @@
left: -2px; left: -2px;
} }
.questionset-results .qs-finishbutton {
display: none;
}
.h5p-question .h5p-question-finish:before { .h5p-question .h5p-question-finish:before {
content: "\f00c"; content: "\f00c";
} }
.questionset-results button.h5p-button.qs-solutionbutton:before { .questionset-results button.h5p-button.qs-solutionbutton:before {
font-family: 'H5PFontAwesome4'; font-family: 'H5PFontAwesome4';
content: "\f06e "; /* TODO: Use margin not whitespace, spacing is not content! */ padding-right: 0.5em;
content: "\f06e";
} }
.video-container { .video-container {

View File

@ -59,7 +59,8 @@ H5P.QuestionSet = function (options, contentId, contentData) {
retryButtonText: 'Retry', retryButtonText: 'Retry',
showAnimations: false, showAnimations: false,
skipButtonText: 'Skip video', skipButtonText: 'Skip video',
showSolutionButton: true showSolutionButton: true,
showRetryButton: true
}, },
override: {}, override: {},
disableBackwardsNavigation: false disableBackwardsNavigation: false
@ -75,7 +76,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
' <% if (introPage.introduction) { %>' + ' <% if (introPage.introduction) { %>' +
' <div class="introduction"><%= introPage.introduction %></div>' + ' <div class="introduction"><%= introPage.introduction %></div>' +
' <% } %>' + ' <% } %>' +
' <div class="buttons"><a class="qs-startbutton h5p-joubelui-button h5p-button"><%= introPage.startButtonText %></a></div>' + ' <div class="buttons"><a href="#" class="qs-startbutton h5p-joubelui-button h5p-button"><%= introPage.startButtonText %></a></div>' +
'</div>' + '</div>' +
'<% } %>' + '<% } %>' +
'<div tabindex="-1" class="qs-progress-announcer"></div>' + '<div tabindex="-1" class="qs-progress-announcer"></div>' +
@ -108,8 +109,12 @@ H5P.QuestionSet = function (options, contentId, contentData) {
'</div>'; '</div>';
var solutionButtonTemplate = params.endGame.showSolutionButton ? var solutionButtonTemplate = params.endGame.showSolutionButton ?
' <button type="button" class="h5p-joubelui-button h5p-button qs-solutionbutton"><%= solutionButtonText %></button>': ' <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>':
'';
var resulttemplate = var resulttemplate =
'<div class="questionset-results">' + '<div class="questionset-results">' +
@ -125,16 +130,14 @@ H5P.QuestionSet = function (options, contentId, contentData) {
' <div class="result-text"><%= resulttext %></div>' + ' <div class="result-text"><%= resulttext %></div>' +
' <% } %>' + ' <% } %>' +
' <div class="buttons">' + ' <div class="buttons">' +
' <button type="button" class="h5p-joubelui-button h5p-button qs-finishbutton"><%= finishButtonText %></button>' +
solutionButtonTemplate + solutionButtonTemplate +
' <button type="button" class="h5p-joubelui-button h5p-button qs-retrybutton"><%= retryButtonText %></button>' + retryButtonTemplate +
' </div>' + ' </div>' +
'</div>'; '</div>';
var template = new EJS({text: texttemplate}); var template = new EJS({text: texttemplate});
var endTemplate = new EJS({text: resulttemplate}); var endTemplate = new EJS({text: resulttemplate});
var initialParams = $.extend(true, {}, defaults, options); var initialParams = $.extend(true, {}, defaults, options);
var poolOrder; // Order of questions in a pool var poolOrder; // Order of questions in a pool
var currentQuestion = 0; var currentQuestion = 0;
@ -163,7 +166,9 @@ H5P.QuestionSet = function (options, contentId, contentData) {
var randomizeQuestionOrdering = function (questions) { var randomizeQuestionOrdering = function (questions) {
// Save the original order of the questions in a multidimensional array [[question0,0],[question1,1]... // 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 // Shuffle the multidimensional array
questionOrdering = H5P.shuffleArray(questionOrdering); questionOrdering = H5P.shuffleArray(questionOrdering);
@ -231,7 +236,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
// Set overrides for questions // Set overrides for questions
var override; var override;
if (params.override.showSolutionButton || params.override.retryButton) { if (params.override.showSolutionButton || params.override.retryButton || params.override.checkButton === false) {
override = {}; override = {};
if (params.override.showSolutionButton) { if (params.override.showSolutionButton) {
// Force "Show solution" button to be on or off for all interactions // Force "Show solution" button to be on or off for all interactions
@ -244,6 +249,11 @@ H5P.QuestionSet = function (options, contentId, contentData) {
override.enableRetry = override.enableRetry =
(params.override.retryButton === 'on' ? true : false); (params.override.retryButton === 'on' ? true : false);
} }
if (params.override.checkButton === false) {
// Force "Check" button to be on or off for all interactions
override.enableCheckButton = params.override.checkButton;
}
} }
/** /**
@ -340,7 +350,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
questionInstances[currentQuestion].hideButton('finish'); questionInstances[currentQuestion].hideButton('finish');
} }
} }
}; };
var _stopQuestion = function (questionNumber) { var _stopQuestion = function (questionNumber) {
if (questionInstances[questionNumber]) { if (questionInstances[questionNumber]) {
@ -460,7 +470,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
questionInstances[i].showSolutions(); questionInstances[i].showSolutions();
questionInstances[i].toggleReadSpeaker(false); questionInstances[i].toggleReadSpeaker(false);
} }
catch(error) { catch (error) {
H5P.error("subcontent does not contain a valid showSolutions function"); H5P.error("subcontent does not contain a valid showSolutions function");
H5P.error(error); H5P.error(error);
} }
@ -512,7 +522,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
questionInstances[i].hideButton('prev'); questionInstances[i].hideButton('prev');
} }
} }
catch(error) { catch (error) {
H5P.error("subcontent does not contain a valid resetTask function"); H5P.error("subcontent does not contain a valid resetTask function");
H5P.error(error); H5P.error(error);
} }
@ -550,7 +560,8 @@ H5P.QuestionSet = function (options, contentId, contentData) {
// Update buttons // Update buttons
initializeQuestion(); initializeQuestion();
} else if (params.randomQuestions) { }
else if (params.randomQuestions) {
randomizeQuestions(); randomizeQuestions();
} }
@ -762,6 +773,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
if ($intro.length) { if ($intro.length) {
// Show intro // Show intro
$('.intro-page', $myDom).show(); $('.intro-page', $myDom).show();
$('.qs-startbutton', $myDom).focus();
} }
else { else {
// Show first question // Show first question
@ -784,12 +796,13 @@ H5P.QuestionSet = function (options, contentId, contentData) {
eparams.comment + '.' + eparams.comment + '.' +
eparams.resulttext) eparams.resulttext)
.show().focus(); .show().focus();
scoreBar.setMaxScore(totals);
scoreBar.setScore(finals); scoreBar.setScore(finals);
}, 0); }, 0);
} }
else { else {
// Remove buttons and feedback section // Remove buttons and feedback section
$('.qs-finishbutton, .qs-solutionbutton, .qs-retrybutton, .feedback-section', $myDom).remove(); $('.qs-solutionbutton, .qs-retrybutton, .feedback-section', $myDom).remove();
} }
self.trigger('resize'); self.trigger('resize');
@ -946,11 +959,23 @@ H5P.QuestionSet = function (options, contentId, contentData) {
// Allow other libraries to add transitions after the questions have been inited // Allow other libraries to add transitions after the questions have been inited
$('.questionset', $myDom).addClass('started'); $('.questionset', $myDom).addClass('started');
$('.qs-startbutton', $myDom).click(function () { $('.qs-startbutton', $myDom)
$(this).parents('.intro-page').hide(); .click(function () {
$('.questionset', $myDom).show(); $(this).parents('.intro-page').hide();
_showQuestion(params.initialQuestion); $('.questionset', $myDom).show();
}); _showQuestion(params.initialQuestion);
event.preventDefault();
})
.keydown(function (event) {
switch (event.which) {
case 13: // Enter
case 32: // Space
$(this).parents('.intro-page').hide();
$('.questionset', $myDom).show();
_showQuestion(params.initialQuestion);
event.preventDefault();
}
});
/** /**
* Triggers changing the current question. * Triggers changing the current question.
@ -1049,6 +1074,13 @@ H5P.QuestionSet = function (options, contentId, contentData) {
this.getCopyrights = function () { this.getCopyrights = function () {
var info = new H5P.ContentCopyrights(); var info = new H5P.ContentCopyrights();
// IntroPage Background
if (params.introPage !== undefined && params.introPage.backgroundImage !== undefined && params.introPage.backgroundImage.copyright !== undefined) {
var introBackground = new H5P.MediaCopyright(params.introPage.backgroundImage.copyright);
introBackground.setThumbnail(new H5P.Thumbnail(H5P.getPath(params.introPage.backgroundImage.path, contentId), params.introPage.backgroundImage.width, params.introPage.backgroundImage.height));
info.addMedia(introBackground);
}
// Background // Background
if (params.backgroundImage !== undefined && params.backgroundImage.copyright !== undefined) { if (params.backgroundImage !== undefined && params.backgroundImage.copyright !== undefined) {
var background = new H5P.MediaCopyright(params.backgroundImage.copyright); var background = new H5P.MediaCopyright(params.backgroundImage.copyright);
@ -1060,7 +1092,8 @@ H5P.QuestionSet = function (options, contentId, contentData) {
var questionCopyrights; var questionCopyrights;
for (var i = 0; i < questionInstances.length; i++) { for (var i = 0; i < questionInstances.length; i++) {
var instance = questionInstances[i]; var instance = questionInstances[i];
var qParams = params.questions[i].params; var instanceParams = params.questions[i].params;
questionCopyrights = undefined; questionCopyrights = undefined;
if (instance.getCopyrights !== undefined) { if (instance.getCopyrights !== undefined) {
@ -1070,13 +1103,16 @@ H5P.QuestionSet = function (options, contentId, contentData) {
if (questionCopyrights === undefined) { if (questionCopyrights === undefined) {
// Create a generic flat copyright list // Create a generic flat copyright list
questionCopyrights = new H5P.ContentCopyrights(); questionCopyrights = new H5P.ContentCopyrights();
H5P.findCopyrights(questionCopyrights, qParams, contentId); H5P.findCopyrights(questionCopyrights, instanceParams.params, contentId,{
metadata: instanceParams.metadata,
machineName: instanceParams.library.split(' ')[0]
});
} }
// Determine label // Determine label
var label = (params.texts.questionLabel + ' ' + (i + 1)); var label = (params.texts.questionLabel + ' ' + (i + 1));
if (qParams.contentName !== undefined) { if (instanceParams.params.contentName !== undefined) {
label += ': ' + qParams.contentName; label += ': ' + instanceParams.params.contentName;
} }
else if (instance.getTitle !== undefined) { else if (instance.getTitle !== undefined) {
label += ': ' + instance.getTitle(); label += ': ' + instance.getTitle();

View File

@ -38,8 +38,7 @@
{ {
"label": "Dots" "label": "Dots"
} }
], ]
"default": "dots"
}, },
{ {
"label": "Pass percentage", "label": "Pass percentage",
@ -130,6 +129,9 @@
{ {
"label": "Display solution button" "label": "Display solution button"
}, },
{
"label": "Display retry button"
},
{ {
"label": "No results message", "label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled", "description": "Text displayed on end page when \"Display results\" is disabled",
@ -144,7 +146,11 @@
"label": "Overall Feedback", "label": "Overall Feedback",
"fields": [ "fields": [
{ {
"widgets": [], "widgets": [
{
"label": "Default"
}
],
"label": "Define custom feedback for any score range", "label": "Define custom feedback for any score range",
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!", "description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
"entity": "range", "entity": "range",
@ -221,6 +227,10 @@
{ {
"label": "Settings for \"Show solution\" and \"Retry\" buttons", "label": "Settings for \"Show solution\" and \"Retry\" buttons",
"fields": [ "fields": [
{
"label": "Show \"Check\" buttons",
"description": "This option determines if the \"Check\" button will be shown for all questions."
},
{ {
"label": "Override \"Show Solution\" button", "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.", "description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",

View File

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

View File

@ -1,166 +1,168 @@
{ {
"semantics":[ "semantics": [
{ {
"label":"مقدمة المسابقة", "label": "مقدمة المسابقة",
"fields":[ "fields": [
{ {
"label":"عرض المقدمة" "label": "عرض المقدمة"
}, },
{ {
"label":"العنوان", "label": "العنوان",
"description":"سيتم عرض هذا العنوان فوق النص المقدمة" "description": "سيتم عرض هذا العنوان فوق النص المقدمة"
}, },
{ {
"label":"مقدمة النص", "label": "مقدمة النص",
"description":"سيتم عرض هذا النص قبل أن تبدأ هذه المسابقة" "description": "سيتم عرض هذا النص قبل أن تبدأ هذه المسابقة"
}, },
{ {
"label":"بدء زر النص", "label": "بدء زر النص",
"default":"Start Quiz" "default": "Start Quiz"
}, },
{ {
"label":"صورة الخلفية", "label": "صورة الخلفية",
"description":"إدخال صورة خلفية اختيارية" "description": "إدخال صورة خلفية اختيارية"
} }
] ]
}, },
{ {
"label":"صورة الخلفية", "label": "صورة الخلفية",
"description":"صورة خلفية اختيارية لأسئلة" "description": "صورة خلفية اختيارية لأسئلة"
}, },
{ {
"label":"مؤشر التقدم", "label": "مؤشر التقدم",
"description":"أسئلة لتعيين نمط مؤشر التقدم", "description": "أسئلة لتعيين نمط مؤشر التقدم",
"options":[ "options": [
{ {
"label":"النصية" "label": "النصية"
}, },
{ {
"label":"النقاط" "label": "النقاط"
} }
], ]
"default":"dots"
}, },
{ {
"label":"نسبة النجاح", "label": "نسبة النجاح",
"description":"النسبة المئوية لمجموع النقاط المطلوبة لاجتياز الاختبار" "description": "النسبة المئوية لمجموع النقاط المطلوبة لاجتياز الاختبار"
}, },
{ {
"label":"الأسئلة", "label": "الأسئلة",
"widgets":[ "widgets": [
{ {
"label":"الافتراضي" "label": "الافتراضي"
}, },
{ {
"label":"النصية" "label": "النصية"
} }
], ],
"entity":"السؤال", "entity": "السؤال",
"field":{ "field": {
"label":"نوع السؤال", "label": "نوع السؤال",
"description":"مكتبة لهذا السؤال" "description": "مكتبة لهذا السؤال"
} }
}, },
{ {
"label":"واجهة النصوص لهذه المسابقة", "label": "واجهة النصوص لهذه المسابقة",
"fields":[ "fields": [
{ {
"label":"زر العودة", "label": "زر العودة",
"default":"Previous question" "default": "Previous question"
}, },
{ {
"label":"زر التقدم", "label": "زر التقدم",
"default":"Next question" "default": "Next question"
}, },
{ {
"label":"زر الانتهاء", "label": "زر الانتهاء",
"default":"Finish" "default": "Finish"
}, },
{ {
"label":"نص التقدم", "label": "نص التقدم",
"description":"النص المستخدم إذا تم تحديد التقدم نصيا", "description": "النص المستخدم إذا تم تحديد التقدم نصيا",
"default":"Question: @current of @total questions" "default": "Question: @current of @total questions"
}, },
{ {
"label":"Label for jumping to a certain question", "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.", "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" "default": "Question %d of %total"
}, },
{ {
"label":"Copyright dialog question label", "label": "Copyright dialog question label",
"default":"السؤال" "default": "السؤال"
}, },
{ {
"label":"Readspeaker progress", "label": "Readspeaker progress",
"description":"May use @current and @total question variables", "description": "May use @current and @total question variables",
"default":"Question @current of @total" "default": "Question @current of @total"
}, },
{ {
"label":"Unanswered question text", "label": "Unanswered question text",
"default":"Unanswered" "default": "Unanswered"
}, },
{ {
"label":"Answered question text", "label": "Answered question text",
"default":"Answered" "default": "Answered"
}, },
{ {
"label":"Current question text", "label": "Current question text",
"default":"Current question" "default": "Current question"
} }
] ]
}, },
{ {
"label":"Disable backwards navigation", "label": "Disable backwards navigation",
"description":"This option will only allow you to move forward in Question Set" "description": "This option will only allow you to move forward in Question Set"
}, },
{ {
"label":"Randomize questions", "label": "Randomize questions",
"description":"تمكين العرض بطريقة عشوائية وترتيب الأسئلة على الشاشة" "description": "تمكين العرض بطريقة عشوائية وترتيب الأسئلة على الشاشة"
}, },
{ {
"label":"Number of questions to be shown:", "label": "Number of questions to be shown:",
"description":"Create a randomized batch of questions from the total." "description": "Create a randomized batch of questions from the total."
}, },
{ {
"label":"انتهاء المسابقة", "label": "انتهاء المسابقة",
"fields":[ "fields": [
{ {
"label":"عرض النتائج" "label": "عرض النتائج"
}, },
{ {
"label":"Display solution button" "label": "Display solution button"
}, },
{ {
"label":"No results message", "label": "Display retry button"
"description":"Text displayed on end page when \"Display results\" is disabled",
"default":"Finished"
}, },
{ {
"label":"نص راس الملاحظات", "label": "No results message",
"default":"Your result:", "description": "Text displayed on end page when \"Display results\" is disabled",
"description":"سيتم عرض هذا العنوان في نهاية هذه المسابقة حيثما أجاب المستخدم على جميع الأسئلة المستعملة" "default": "Finished"
}, },
{ {
"label":"شفافية خلفية العناصر", "label": "نص راس الملاحظات",
"fields":[ "default": "Your result:",
"description": "سيتم عرض هذا العنوان في نهاية هذه المسابقة حيثما أجاب المستخدم على جميع الأسئلة المستعملة"
},
{
"label": "شفافية خلفية العناصر",
"fields": [
{ {
"widgets":[ "widgets": [
{
"label": "Default"
}
], ],
"label":"Define custom feedback for any score range", "label": "Define custom feedback for any score range",
"description":"Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!", "description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
"entity":"range", "entity": "range",
"field":{ "field": {
"fields":[ "fields": [
{ {
"label":"Score Range" "label": "Score Range"
}, },
{},
{ {
"label": "Feedback for defined score range",
}, "placeholder": "Fill in the feedback"
{
"label":"Feedback for defined score range",
"placeholder":"Fill in the feedback"
} }
] ]
} }
@ -168,84 +170,88 @@
] ]
}, },
{ {
"label":"Old Feedback", "label": "Old Feedback",
"fields":[ "fields": [
{ {
"label":"تعليق النجاح بالمسابقة", "label": "تعليق النجاح بالمسابقة",
"description":"سيتم عرض هذا النص أعلاه النتيجة إذا انقضى المستخدم بنجاح هذه المسابقة" "description": "سيتم عرض هذا النص أعلاه النتيجة إذا انقضى المستخدم بنجاح هذه المسابقة"
}, },
{ {
"label":"ملاحظة النجاح", "label": "ملاحظة النجاح",
"description":"سيتم عرض هذه الملاحظة بعد النتيجة إذا انقضى المستخدم بنجاح هذه المسابقة" "description": "سيتم عرض هذه الملاحظة بعد النتيجة إذا انقضى المستخدم بنجاح هذه المسابقة"
}, },
{ {
"label":"تعليق الرسوب بالمسابقة", "label": "تعليق الرسوب بالمسابقة",
"description":"سيتم عرض هذا النص أعلاه النتيجة إذا كان المستخدم قد فشلت في المسابقة" "description": "سيتم عرض هذا النص أعلاه النتيجة إذا كان المستخدم قد فشلت في المسابقة"
}, },
{ {
"label":"ملاحظة الرسوب", "label": "ملاحظة الرسوب",
"description":"سيتم عرض هذه الملاحظة بعد النتيجة إذا كان المستخدم قد فشلت في المسابقة" "description": "سيتم عرض هذه الملاحظة بعد النتيجة إذا كان المستخدم قد فشلت في المسابقة"
} }
] ]
}, },
{ {
"label":"تسمية زر اظهار الحل", "label": "تسمية زر اظهار الحل",
"default":"مشاهدة الحل", "default": "مشاهدة الحل",
"description":"نص زر الحل" "description": "نص زر الحل"
}, },
{ {
"label":"تسمية زر إعادة المحاولة", "label": "تسمية زر إعادة المحاولة",
"default":"إعادة المحاولة", "default": "إعادة المحاولة",
"description":"نص زر إعادة المحاولة" "description": "نص زر إعادة المحاولة"
}, },
{ {
"label":"نص زر الانتهاء", "label": "نص زر الانتهاء",
"default":"Finish" "default": "Finish"
}, },
{ {
"label":"عرض الفيديو قبل نتائج المسابقة" "label": "عرض الفيديو قبل نتائج المسابقة"
}, },
{ {
"label":"تفعيل زر تخطى الفيديو" "label": "تفعيل زر تخطى الفيديو"
}, },
{ {
"label":"تسمية زر تخطى الفيديو", "label": "تسمية زر تخطى الفيديو",
"default":"Skip video" "default": "Skip video"
}, },
{ {
"label":"فيديو النجاح بالمسابقة", "label": "فيديو النجاح بالمسابقة",
"description":"سيتم تشغيل هذا الفيديو إذا كان المستخدم ناجحا بهذه المسابقة" "description": "سيتم تشغيل هذا الفيديو إذا كان المستخدم ناجحا بهذه المسابقة"
}, },
{ {
"label":"فيديو الرسوب بالمسابقة", "label": "فيديو الرسوب بالمسابقة",
"description":"سيتم تشغيل هذا الفيديو إذا كان المستخدم راسبا بهذه المسابقة" "description": "سيتم تشغيل هذا الفيديو إذا كان المستخدم راسبا بهذه المسابقة"
} }
] ]
}, },
{ {
"label":"إعدادات زر \"مشاهدة حل \" وزر \"إعادة المحاولة\" ", "label": "إعدادات زر \"مشاهدة حل \" وزر \"إعادة المحاولة\" ",
"fields":[ "fields": [
{ {
"label":"Override \"Show Solution\" button", "label": "Show \"Check\" buttons",
"description":"This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.", "description": "This option determines if the \"Check\" button will be shown for all questions."
"options":[ },
{
"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": "Enabled"
}, },
{ {
"label":"Disabled" "label": "Disabled"
} }
] ]
}, },
{ {
"label":"Override \"Retry\" button", "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.", "description": "This option determines if the \"Retry\" button will be shown for all questions, disabled for all or configured for each question individually.",
"options":[ "options": [
{ {
"label":"Enabled" "label": "Enabled"
}, },
{ {
"label":"Disabled" "label": "Disabled"
} }
] ]
} }

View File

@ -1,166 +1,168 @@
{ {
"semantics":[ "semantics": [
{ {
"label":"Uvod u kviz", "label": "Uvod u kviz",
"fields":[ "fields": [
{ {
"label":"Prikaži uvod" "label": "Prikaži uvod"
}, },
{ {
"label":"Naziv", "label": "Naziv",
"description":"Ovaj će naziv biti prikazan iznad uvodnog teksta." "description": "Ovaj će naziv biti prikazan iznad uvodnog teksta."
}, },
{ {
"label":"Tekst uvoda", "label": "Tekst uvoda",
"description":"Ovaj će naziv biti prikazan prije početka kviza." "description": "Ovaj će naziv biti prikazan prije početka kviza."
}, },
{ {
"label":"Oznaka za dugme \"Start\"", "label": "Oznaka za dugme \"Start\"",
"default":"Start" "default": "Start"
}, },
{ {
"label":"Slika pozadine", "label": "Slika pozadine",
"description":"Slika pozadine na početku. (opcionalno)." "description": "Slika pozadine na početku. (opcionalno)."
} }
] ]
}, },
{ {
"label":"Slika pozadine", "label": "Slika pozadine",
"description":"Slika pozadine seta pitanja. (opcionalno)." "description": "Slika pozadine seta pitanja. (opcionalno)."
}, },
{ {
"label":"Prikaz napredovanja", "label": "Prikaz napredovanja",
"description":"Prikazivanje napredovanja", "description": "Prikazivanje napredovanja",
"options":[ "options": [
{ {
"label":"Tekst" "label": "Tekst"
}, },
{ {
"label":"Bodovi" "label": "Bodovi"
} }
], ]
"default":"dots"
}, },
{ {
"label":"Procenat za uspješan prolaz", "label": "Procenat za uspješan prolaz",
"description":"Procenat tačnih odgovora kao preduvijet da je kviz\/zadatak uspješno završen." "description": "Procenat tačnih odgovora kao preduvijet da je kviz/zadatak uspješno završen."
}, },
{ {
"label":"Pitanja", "label": "Pitanja",
"widgets":[ "widgets": [
{ {
"label":"Standard" "label": "Standard"
}, },
{ {
"label":"Tekst" "label": "Tekst"
} }
], ],
"entity":"pitanje", "entity": "pitanje",
"field":{ "field": {
"label":"Vrsta pitanja", "label": "Vrsta pitanja",
"description":"Biblioteka za ovo pitanje." "description": "Biblioteka za ovo pitanje."
} }
}, },
{ {
"label":"Prikaz teksta u kvizu", "label": "Prikaz teksta u kvizu",
"fields":[ "fields": [
{ {
"label":"Oznaka za dugme \"Nazad\"", "label": "Oznaka za dugme \"Nazad\"",
"default":"Zurück" "default": "Nazad"
}, },
{ {
"label":"Oznaka za dugme \"Naprijed\"", "label": "Oznaka za dugme \"Naprijed\"",
"default":"Weiter" "default": "Dalje"
}, },
{ {
"label":"Oznaka za dugme \"Završi\"", "label": "Oznaka za dugme \"Završi\"",
"default":"Kraj" "default": "Kraj"
}, },
{ {
"label":"Početni tekst", "label": "Početni tekst",
"description":"Koristi tekst ako je izabran za napredak u pisanom obliku.", "description": "Koristi tekst ako je izabran za napredak u pisanom obliku.",
"default":"Aktuelno pitanje: @current od @total pitanja" "default": "Aktuelno pitanje: @current od @total pitanja"
}, },
{ {
"label":"Označavanje za skakanje do određene tačke", "label": "Označavanje za skakanje do određene tačke",
"description":"Koristi mjesto '%d' za redoslijed pitanja i %total za ukupan broj pitanja.", "description": "Koristi mjesto '%d' za redoslijed pitanja i %total za ukupan broj pitanja.",
"default":"Pitanje %d od %total" "default": "Pitanje %d od %total"
}, },
{ {
"label":"Opis pitanja u vezi sa vezi s autorom", "label": "Opis pitanja u vezi sa vezi s autorom",
"default":"Pitanje" "default": "Pitanje"
}, },
{ {
"label":"Napredno \"Readspeaker\"", "label": "Napredno \"Readspeaker\"",
"description":"Varijable: @current i @total", "description": "Varijable: @current i @total",
"default":"Pitanje @current od @total" "default": "Pitanje @current od @total"
}, },
{ {
"label":"Tekst za neodgovorena pitanja", "label": "Tekst za neodgovorena pitanja",
"default":"Neodgovoreno" "default": "Neodgovoreno"
}, },
{ {
"label":"Tekst za odgovorena pitanja", "label": "Tekst za odgovorena pitanja",
"default":"Odgovoreno" "default": "Odgovoreno"
}, },
{ {
"label":"Tekst za trenutno pitanja", "label": "Tekst za trenutno pitanja",
"default":"Trenutno pitanje" "default": "Trenutno pitanje"
} }
] ]
}, },
{ {
"label":"Deaktivirati mogućnost povratka unazad", "label": "Deaktivirati mogućnost povratka unazad",
"description":"Ako je aktivirano, korisnik će moći ići samo naprijed u odgovaranju na pitanja." "description": "Ako je aktivirano, korisnik će moći ići samo naprijed u odgovaranju na pitanja."
}, },
{ {
"label":"Izmješati pitanja", "label": "Izmješati pitanja",
"description":"Ako je aktivirano, pitanja će kod svakog učitavanja kviza imati drugi raspored." "description": "Ako je aktivirano, pitanja će kod svakog učitavanja kviza imati drugi raspored."
}, },
{ {
"label":"Broj pitanja za prikaz:", "label": "Broj pitanja za prikaz:",
"description":"Može se koristiti kod odabira slučajnog pitanja." "description": "Može se koristiti kod odabira slučajnog pitanja."
}, },
{ {
"label":"Završi kviz", "label": "Završi kviz",
"fields":[ "fields": [
{ {
"label":"Prikaz rezultata" "label": "Prikaz rezultata"
}, },
{ {
"label":"Napomena ako nema rezultata" "label": "Napomena ako nema rezultata"
}, },
{ {
"label":"Oznaka za povratne informacije", "label": "Prikaži dugme ponavljanja"
"description":"Ovaj tekst će biti prikazan na kraju kviza kada korisnik odgovori na pitanja.",
"default":"Tvoj rezultat:"
}, },
{ {
"label":"Tekst za prikaz broj odova", "label": "Oznaka za povratne informacije",
"default":"Osvojeno @score bodova od @total mogućih.", "description": "Ovaj tekst će biti prikazan na kraju kviza kada korisnik odgovori na pitanja.",
"description":"Ovaj tekst će se koristiti da prikaže ukupan broj bodova korisnika. \"@score\" će biti zamjenjen sa osvojenim bodovima, \"@total\" će biti zamjenjeno sa maksimalnim brojem bodova." "default": "Tvoj rezultat:"
}, },
{ {
"label":"Pozadinska zamućenost za elemente za uzimanje", "label": "Tekst za prikaz broj odova",
"fields":[ "default": "Osvojeno @score bodova od @total mogućih.",
"description": "Ovaj tekst će se koristiti da prikaže ukupan broj bodova korisnika. \"@score\" će biti zamjenjen sa osvojenim bodovima, \"@total\" će biti zamjenjeno sa maksimalnim brojem bodova."
},
{
"label": "Pozadinska zamućenost za elemente za uzimanje",
"fields": [
{ {
"widgets":[ "widgets": [
{
"label": "Standardno"
}
], ],
"label":"Define custom feedback for any score range", "label": "Definiraj standardni feedback za bilo koji rezultat",
"description":"Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!", "description": "Primjer: 0-20% Loše, 21-91% Dobro, 91-100% Odlično!",
"entity":"range", "entity": "range",
"field":{ "field": {
"fields":[ "fields": [
{ {
"label":"Score Range" "label": "Rezultat"
}, },
{},
{ {
"label": "Feedback za definirani rezultat",
}, "placeholder": "Unesi feedback"
{
"label":"Feedback for defined score range",
"placeholder":"Fill in the feedback"
} }
] ]
} }
@ -168,84 +170,88 @@
] ]
}, },
{ {
"label":"Old Feedback", "label": "Stari Feedback",
"fields":[ "fields": [
{ {
"label":"Komentar za uspješno završen kviz", "label": "Komentar za uspješno završen kviz",
"description":"Ovaj tekst će biti prikazan iznad broja bodova kada je korisnik uspješno završio kviz." "description": "Ovaj tekst će biti prikazan iznad broja bodova kada je korisnik uspješno završio kviz."
}, },
{ {
"label":"Oznaka kod neuspješnog završetka kviza", "label": "Oznaka kod neuspješnog završetka kviza",
"description":"Ovaj tekst će biti prikazan iznad broja bodova kada je korisnik nije uspješno završio kviz." "description": "Ovaj tekst će biti prikazan iznad broja bodova kada je korisnik nije uspješno završio kviz."
}, },
{ {
"label":"Oznaka kod neuspješnog završetka kviza", "label": "Oznaka kod neuspješnog završetka kviza",
"description":"Ovaj komentar će se pokazati nakon što korisnik nije sakupio dovoljan broj bodova za uspješan završetak kviza." "description": "Ovaj komentar će se pokazati nakon što korisnik nije sakupio dovoljan broj bodova za uspješan završetak kviza."
}, },
{ {
"label":"Oznaka za dugme \"Prikaži rješenje\"", "label": "Oznaka za dugme \"Prikaži rješenje\"",
"description":"Oznaka za dugme \"Prikaži rješenje\"" "description": "Oznaka za dugme \"Prikaži rješenje\""
} }
] ]
}, },
{ {
"label":"Oznaka za dugme \"Ponovi\"", "label": "Oznaka za dugme \"Ponovi\"",
"default":"Prikaži rješenje", "default": "Prikaži rješenje",
"description":"Oznaka za dugme \"Ponovi\"" "description": "Oznaka za dugme \"Ponovi\""
}, },
{ {
"label":"Oznaka za dugme \"Završi\"", "label": "Oznaka za dugme \"Završi\"",
"default":"Ponovi", "default": "Ponovi",
"description":"Text for the retry button." "description": "Tekst za dugme ponovi."
}, },
{ {
"label":"Prikaži video prije rezultata kviza", "label": "Prikaži video prije rezultata kviza",
"default":"Kraj" "default": "Kraj"
}, },
{ {
"label":"Aktiviraj dugme \"Preskoči vidio\"" "label": "Aktiviraj dugme \"Preskoči vidio\""
}, },
{ {
"label":"Oznaka za dugme \"Preskoči video\"" "label": "Oznaka za dugme \"Preskoči video\""
}, },
{ {
"label":"Video nakon položenog kviza", "label": "Video nakon položenog kviza",
"default":"Skip video" "default": "Preskoči video"
}, },
{ {
"label":"Video nakon nepoloženog kviza", "label": "Video nakon nepoloženog kviza",
"description":"Ovaj video se prikazuje nakon što korisnik neuspješno završi kviz." "description": "Ovaj video se prikazuje nakon što korisnik neuspješno završi kviz."
}, },
{ {
"label":"Fail video", "label": "Video nakon neuspjeha",
"description":"This video will be played if the user failes the quiz." "description": "Ovaj video će biti prikazan ako korisnik nije uspješno riješio kviz."
} }
] ]
}, },
{ {
"label":"Podešavanje dugmeta \"Prikaži rješenje\" i \"Ponovi\".", "label": "Podešavanje dugmeta \"Prikaži rješenje\" i \"Ponovi\".",
"fields":[ "fields": [
{ {
"label":"Poništi dugme \"Prikaži rješenje\"", "label": "Prikaži \"Provjeri\" dgme",
"description":"Ova opcija podešava prikazivanje dugmeta \"Prikaži rješenje\" za sva pitanja ili da bude za svako posebno pitanje konfigurirano.", "description": "Ova opcija pokazuje da li će dugme \"Provjeri\" biti prikazano za sva pitanja."
"options":[ },
{
"label": "Poništi dugme \"Prikaži rješenje\"",
"description": "Ova opcija podešava prikazivanje dugmeta \"Prikaži rješenje\" za sva pitanja ili da bude za svako posebno pitanje konfigurirano.",
"options": [
{ {
"label":"Prikaži" "label": "Prikaži"
}, },
{ {
"label":"Nemoj prikazati" "label": "Nemoj prikazati"
} }
] ]
}, },
{ {
"label":"Poništi dugme \"Ponovi\"", "label": "Poništi dugme \"Ponovi\"",
"description":"Ova opcija podešava prikazivanje dugmeta \"Ponovi\" za sva pitanja ili da bude za svako posebno pitanje konfigurirano.", "description": "Ova opcija podešava prikazivanje dugmeta \"Ponovi\" za sva pitanja ili da bude za svako posebno pitanje konfigurirano.",
"options":[ "options": [
{ {
"label":"Prikaži" "label": "Prikaži"
}, },
{ {
"label":"Nemoj prikazati" "label": "Nemoj prikazati"
} }
] ]
} }

View File

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

View File

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

View File

@ -1,166 +1,168 @@
{ {
"semantics":[ "semantics": [
{ {
"label":"Quiz introduction", "label": "Quiz introduction",
"fields":[ "fields": [
{ {
"label":"Display introduction" "label": "Display introduction"
}, },
{ {
"label":"Title", "label": "Title",
"description":"This title will be displayed above the introduction text." "description": "This title will be displayed above the introduction text."
}, },
{ {
"label":"Introduction text", "label": "Introduction text",
"description":"This text will be displayed before the quiz starts." "description": "This text will be displayed before the quiz starts."
}, },
{ {
"label":"Start button text", "label": "Start button text",
"default":"Start Quiz" "default": "Start Quiz"
}, },
{ {
"label":"Background image", "label": "Background image",
"description":"An optional background image for the introduction." "description": "An optional background image for the introduction."
} }
] ]
}, },
{ {
"label":"Background image", "label": "Background image",
"description":"An optional background image for the Question set." "description": "An optional background image for the Question set."
}, },
{ {
"label":"Progress indicator", "label": "Progress indicator",
"description":"Question set progress indicator style.", "description": "Question set progress indicator style.",
"options":[ "options": [
{ {
"label":"Textual" "label": "Textual"
}, },
{ {
"label":"Dots" "label": "Dots"
} }
], ]
"default":"dots"
}, },
{ {
"label":"Pass percentage", "label": "Pass percentage",
"description":"Percentage of Total score required for passing the quiz." "description": "Percentage of Total score required for passing the quiz."
}, },
{ {
"label":"Questions", "label": "Questions",
"widgets":[ "widgets": [
{ {
"label":"Default" "label": "Default"
}, },
{ {
"label":"Textual" "label": "Textual"
} }
], ],
"entity":"question", "entity": "question",
"field":{ "field": {
"label":"Question type", "label": "Question type",
"description":"Library for this question." "description": "Library for this question."
} }
}, },
{ {
"label":"Interface texts in quiz", "label": "Interface texts in quiz",
"fields":[ "fields": [
{ {
"label":"Tilbage-knap", "label": "Tilbage-knap",
"default":"Previous question" "default": "Previous question"
}, },
{ {
"label":"Next button", "label": "Next button",
"default":"Next question" "default": "Next question"
}, },
{ {
"label":"Finish button", "label": "Finish button",
"default":"Finish" "default": "Finish"
}, },
{ {
"label":"Progress text", "label": "Progress text",
"description":"Text used if textual progress is selected.", "description": "Text used if textual progress is selected.",
"default":"Question: @current of @total questions" "default": "Question: @current of @total questions"
}, },
{ {
"label":"Label for jumping to a certain question", "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.", "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" "default": "Question %d of %total"
}, },
{ {
"label":"Copyright dialog question label", "label": "Copyright dialog question label",
"default":"Question" "default": "Question"
}, },
{ {
"label":"Readspeaker progress", "label": "Readspeaker progress",
"description":"May use @current and @total question variables", "description": "May use @current and @total question variables",
"default":"Question @current of @total" "default": "Question @current of @total"
}, },
{ {
"label":"Unanswered question text", "label": "Unanswered question text",
"default":"Unanswered" "default": "Unanswered"
}, },
{ {
"label":"Answered question text", "label": "Answered question text",
"default":"Answered" "default": "Answered"
}, },
{ {
"label":"Current question text", "label": "Current question text",
"default":"Current question" "default": "Current question"
} }
] ]
}, },
{ {
"label":"Disable backwards navigation", "label": "Disable backwards navigation",
"description":"This option will only allow you to move forward in Question Set" "description": "This option will only allow you to move forward in Question Set"
}, },
{ {
"label":"Randomize questions", "label": "Randomize questions",
"description":"Enable to randomize the order of questions on display." "description": "Enable to randomize the order of questions on display."
}, },
{ {
"label":"Number of questions to be shown:", "label": "Number of questions to be shown:",
"description":"Create a randomized batch of questions from the total." "description": "Create a randomized batch of questions from the total."
}, },
{ {
"label":"Quiz finished", "label": "Quiz finished",
"fields":[ "fields": [
{ {
"label":"Display results" "label": "Display results"
}, },
{ {
"label":"Display solution button" "label": "Display solution button"
}, },
{ {
"label":"No results message", "label": "Display retry button"
"description":"Text displayed on end page when \"Display results\" is disabled",
"default":"Finished"
}, },
{ {
"label":"Feedback heading", "label": "No results message",
"default":"Your result:", "description": "Text displayed on end page when \"Display results\" is disabled",
"description":"This heading will be displayed at the end of the quiz when the user has answered all questions." "default": "Finished"
}, },
{ {
"label":"Overall Feedback", "label": "Feedback heading",
"fields":[ "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":[ "widgets": [
{
"label": "Default"
}
], ],
"label":"Define custom feedback for any score range", "label": "Define custom feedback for any score range",
"description":"Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!", "description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
"entity":"range", "entity": "range",
"field":{ "field": {
"fields":[ "fields": [
{ {
"label":"Score Range" "label": "Score Range"
}, },
{},
{ {
"label": "Feedback for defined score range",
}, "placeholder": "Fill in the feedback"
{
"label":"Feedback for defined score range",
"placeholder":"Fill in the feedback"
} }
] ]
} }
@ -168,84 +170,88 @@
] ]
}, },
{ {
"label":"Old Feedback", "label": "Old Feedback",
"fields":[ "fields": [
{ {
"label":"Quiz passed greeting", "label": "Quiz passed greeting",
"description":"This text will be displayed above the score if the user has successfully passed the quiz." "description": "This text will be displayed above the score if the user has successfully passed the quiz."
}, },
{ {
"label":"Passed comment", "label": "Passed comment",
"description":"This comment will be displayed after the score if the user has successfully passed the quiz." "description": "This comment will be displayed after the score if the user has successfully passed the quiz."
}, },
{ {
"label":"Quiz failed title", "label": "Quiz failed title",
"description":"This text will be displayed above the score if the user has failed the quiz." "description": "This text will be displayed above the score if the user has failed the quiz."
}, },
{ {
"label":"Failed comment", "label": "Failed comment",
"description":"This comment will be displayed after the score if the user has failed the quiz." "description": "This comment will be displayed after the score if the user has failed the quiz."
} }
] ]
}, },
{ {
"label":"Solution button label", "label": "Solution button label",
"default":"Show solution", "default": "Show solution",
"description":"Text for the solution button." "description": "Text for the solution button."
}, },
{ {
"label":"Retry button label", "label": "Retry button label",
"default":"Retry", "default": "Retry",
"description":"Text for the retry button." "description": "Text for the retry button."
}, },
{ {
"label":"Finish button text", "label": "Finish button text",
"default":"Finish" "default": "Finish"
}, },
{ {
"label":"Display video before quiz results" "label": "Display video before quiz results"
}, },
{ {
"label":"Enable skip video button" "label": "Enable skip video button"
}, },
{ {
"label":"Skip video button label", "label": "Skip video button label",
"default":"Skip video" "default": "Skip video"
}, },
{ {
"label":"Passed video", "label": "Passed video",
"description":"This video will be played if the user successfully passed the quiz." "description": "This video will be played if the user successfully passed the quiz."
}, },
{ {
"label":"Fail video", "label": "Fail video",
"description":"This video will be played if the user failes the quiz." "description": "This video will be played if the user failes the quiz."
} }
] ]
}, },
{ {
"label":"Settings for \"Show solution\" and \"Retry\" buttons", "label": "Settings for \"Show solution\" and \"Retry\" buttons",
"fields":[ "fields": [
{ {
"label":"Overskriv \"Vi svar\"-knap", "label": "Show \"Check\" buttons",
"description":"Dette valg afgør om \"Vis svar\"-knappen skal vises på alle spørgsmål, skjules for alle eller konfigureres individuelt til hvert spørgsmål.", "description": "This option determines if the \"Check\" button will be shown for all questions."
"options":[ },
{
"label": "Overskriv \"Vi svar\"-knap",
"description": "Dette valg afgør om \"Vis svar\"-knappen skal vises på alle spørgsmål, skjules for alle eller konfigureres individuelt til hvert spørgsmål.",
"options": [
{ {
"label":"Aktiveret" "label": "Aktiveret"
}, },
{ {
"label":"Deaktiveret" "label": "Deaktiveret"
} }
] ]
}, },
{ {
"label":"Overskriv \"Prøv igen\"-knap", "label": "Overskriv \"Prøv igen\"-knap",
"description":"Dette valg afgør om \"Prøv igen\"-knappen skal vises på alle spørgsmål, skjules for alle eller konfigureres individuelt til hvert spørgsmål.", "description": "Dette valg afgør om \"Prøv igen\"-knappen skal vises på alle spørgsmål, skjules for alle eller konfigureres individuelt til hvert spørgsmål.",
"options":[ "options": [
{ {
"label":"Aktiveret" "label": "Aktiveret"
}, },
{ {
"label":"Deaktiveret" "label": "Deaktiveret"
} }
] ]
} }

View File

@ -1,166 +1,168 @@
{ {
"semantics":[ "semantics": [
{ {
"label":"Quiz-Einführung", "label": "Quiz-Einführung",
"fields":[ "fields": [
{ {
"label":"Zeige Einführung" "label": "Zeige Einführung"
}, },
{ {
"label":"Titel", "label": "Titel",
"description":"Dieser Titel wird über dem Einführungstext angezeigt." "description": "Dieser Titel wird über dem Einführungstext angezeigt."
}, },
{ {
"label":"Einführungstext", "label": "Einführungstext",
"description":"Dieser Text wird angezeigt, bevor das Quiz anfängt." "description": "Dieser Text wird angezeigt, bevor das Quiz anfängt."
}, },
{ {
"label":"Beschriftung des \"Start\"-Buttons", "label": "Beschriftung des \"Start\"-Buttons",
"default":"Starte Quiz" "default": "Quiz starten"
}, },
{ {
"label":"Hintergrundbild", "label": "Hintergrundbild",
"description":"Ein optionales Hintergrundbild für die Einführung." "description": "Ein optionales Hintergrundbild für die Einführung"
} }
] ]
}, },
{ {
"label":"Hintergrundbild", "label": "Hintergrundbild",
"description":"Ein optionales Hintergrundbild für das Fragenset." "description": "Ein optionales Hintergrundbild für den Fragensatz"
}, },
{ {
"label":"Fortschrittsanzeige", "label": "Fortschrittsanzeige",
"description":"Anzeigestil für die Fortschrittsanzeige des Fragensets.", "description": "Anzeigestil der Fortschrittsanzeige",
"options":[ "options": [
{ {
"label":"Text" "label": "Text"
}, },
{ {
"label":"Punkte" "label": "Punkte"
} }
], ]
"default":"dots"
}, },
{ {
"label":"Prozentsatz zum Bestehen", "label": "Prozentsatz zum Bestehen",
"description":"Prozentsatz der Gesamtpunktzahl, der nötig ist, um das Quiz zu bestehen" "description": "Prozentsatz der Gesamtpunktzahl, der nötig ist, um das Quiz zu bestehen"
}, },
{ {
"label":"Fragen", "label": "Fragen",
"widgets":[ "widgets": [
{ {
"label":"Vorgabe" "label": "Eingabemaske"
}, },
{ {
"label":"Text" "label": "Als Text eingeben"
} }
], ],
"entity":"frage", "entity": "Frage",
"field":{ "field": {
"label":"Fragentyp", "label": "Fragentyp",
"description":"Bibliothek für diese Frage." "description": "Inhaltstyp, der in dieser Frage verwendet wird"
} }
}, },
{ {
"label":"Anzeigetexte im Quiz", "label": "Bezeichnungen und Beschriftungen",
"fields":[ "fields": [
{ {
"label":"Zurück-Button", "label": "Beschriftung des \"Zurück\"-Buttons",
"default":"Zurück" "default": "Zurück"
}, },
{ {
"label":"Beschriftung des \"Weiter\"-Buttons", "label": "Beschriftung des \"Weiter\"-Buttons",
"default":"Weiter" "default": "Weiter"
}, },
{ {
"label":"Beschriftung des \"Beenden\"-Buttons", "label": "Beschriftung des \"Beenden\"-Buttons",
"default":"Beenden" "default": "Beenden"
}, },
{ {
"label":"Fortschrittsanzeigetext", "label": "Text der Fortschrittsanzeige",
"description":"Verwendeter Text, wenn Fortschrittsanzeige in Textform gewählt wurde.", "description": "Verwendeter Text, wenn Fortschrittsanzeige in Textform gewählt wurde.",
"default":"Aktuelle Frage: @current von @total Fragen" "default": "Aktuelle Frage: @current von @total Fragen"
}, },
{ {
"label":"Beschriftung für das Springen zu einem bestimmten Punkt", "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.", "description": "Nutze den Platzhalter %d für die Fragennummer und %total für die Gesamtzahl der Fragen.",
"default":"Frage %d von %total" "default": "Frage %d von %total"
}, },
{ {
"label":"Beschriftung für eine Frage zum Urheberrechtsdialog", "label": "Beschriftung der Frage im Urheberrechtsdialog",
"default":"Frage" "default": "Frage"
}, },
{ {
"label":"Fortschritt \"Readspeaker\"", "label": "Text, den Vorlesewerkzeuge nutzen, um den derzeitigen Fortschritt auszugeben",
"description":"Variablen: @current und @total", "description": "verwendbare Variablen: @current und @total",
"default":"Frage @current von @total" "default": "Frage @current von @total"
}, },
{ {
"label":"Text für unbeantwortete Fragen", "label": "Text für unbeantwortete Fragen",
"default":"Unbeantwortet" "default": "Unbeantwortet"
}, },
{ {
"label":"Text für beantwortete Fragen", "label": "Text für beantwortete Fragen",
"default":"Beantwortet" "default": "Beantwortet"
}, },
{ {
"label":"Text fpr aktuelle Frage", "label": "Text für die aktuelle Frage",
"default":"Aktuelle Frage" "default": "Aktuelle Frage"
} }
] ]
}, },
{ {
"label":"Rückwärts-Navigation ausstellen", "label": "Rückwärts-Navigation deaktivieren",
"description":"Wenn aktiviert, kann der Nutzer nur vorwärts durch das Fragenset navigieren." "description": "Wenn aktiviert, kann der Nutzer nur vorwärts durch den Fragensatz navigieren."
}, },
{ {
"label":"Fragen zufällig anordnen", "label": "Fragen zufällig anordnen",
"description":"Aktivieren, um die Fragen auf dem Bildschirm zufällig anzuordnen." "description": "Wenn gewählt, werden die Fragen in einer zufälligen Reihenfolge angeordnet."
}, },
{ {
"label":"Anzahl der anzuzeigenden Fragen:", "label": "Anzahl der anzuzeigenden Fragen:",
"description":"Kann benutzt werden, um eine zufällige Auswahl auf mehreren Fragen zu treffen." "description": "Kann benutzt werden, um nur eine zufällige Teilmenge von Fragen anzuzeigen."
}, },
{ {
"label":"Quiz beendet", "label": "Quiz beendet",
"fields":[ "fields": [
{ {
"label":"Ergebnisanzeige" "label": "Ergebnisse anzeigen"
}, },
{ {
"label":"Hinweis bei keinen Ergebnissen" "label": "\"Lösung anzeigen\" ermöglichen"
}, },
{ {
"label":"Kopfzeile für die Rückmeldungen", "label": "\"Wiederholen\"-Button anzeigen"
"description":"diese Kopfzeile wird am Ende des Quizzes angezeigt, wenn der Nutzer alle Fragen beantwortet hat.",
"default":"Dein Ergebnis:"
}, },
{ {
"label":"Text für die Punkteanzeige", "label": "Nachricht, wenn keine Ergebnisse vorliegen",
"default":"Du hast @score Punkte von @total möglichen.", "description": "Text, der auf der Endseite angezeigt wird, wenn \"Lösung anzeigen\" deaktiviert ist",
"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." "default": "Quiz beendet"
}, },
{ {
"label":"Hintergrunddeckkraft für bewegliche Elemente", "label": "Überschrift der Rückmeldung",
"fields":[ "default": "Dein Ergebnis:",
"description": "Diese Überschrift wird am Ende angezeigt, wenn alle Fragen beantwortet wurden."
},
{
"label": "Gesamtrückmeldung",
"fields": [
{ {
"widgets":[ "widgets": [
{
"label": "Voreinstellung"
}
], ],
"label":"Benutzerdefinierte Rückmeldung für jeden Punkte-Bereich definieren", "label": "Lege Rückmeldungen für einzelne Punktebereiche fest",
"description":"Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!", "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!",
"entity":"Bereich", "entity": "Bereich",
"field":{ "field": {
"fields":[ "fields": [
{ {
"label":"Punkte-Bereich" "label": "Punktebereich"
}, },
{},
{ {
"label": "Rückmeldung für jeweiligen Punktebereich",
}, "placeholder": "Trage die Rückmeldung ein"
{
"label":"Feedback for defined score range",
"placeholder":"Fill in the feedback"
} }
] ]
} }
@ -168,84 +170,88 @@
] ]
}, },
{ {
"label":"Old Feedback", "label": "Alte Rückmeldung",
"fields":[ "fields": [
{ {
"label":"Kommentar für bestandenes Quiz", "label": "Kopfzeile für bestandenes Quiz",
"description":"Dieser Kommentar wird nach den Punkten angezeigt, wenn der Nutzer das Quiz erfolgreich bestanden hat." "description": "Dieser Text wird oberhalb der Punkte angezeigt, wenn der Nutzer das Quiz nicht bestanden hat."
}, },
{ {
"label":"Kopfzeile für nicht bestandenes Quiz", "label": "Kommentar für bestandenes Quiz",
"description":"Dieser Text wird oberhalb der Punkte angezeigt, wenn der Nutzer das Quiz nicht bestanden hat." "description": "Dieser Kommentar wird nach den Punkten angezeigt, wenn der Nutzer das Quiz erfolgreich bestanden hat."
}, },
{ {
"label":"Kommentar für nicht bestandenes Quiz", "label": "Kopfzeile für nicht bestandenes Quiz",
"description":"Dieser Kommentar wird nach den Punkten angezeigt, wenn der Nutzer das Quiz nicht bestanden hat." "description": "Dieser Text wird oberhalb der Punkte angezeigt, wenn der Nutzer das Quiz nicht bestanden hat."
}, },
{ {
"label":"Beschriftung des \"Lösung zeigen\"-Buttons", "label": "Kommentar für nicht bestandenes Quiz",
"description":"Beschriftung des \"Lösung zeigen\"-Buttons" "description": "Dieser Kommentar wird nach den Punkten angezeigt, wenn der Nutzer das Quiz nicht bestanden hat."
} }
] ]
}, },
{ {
"label":"Beschriftung des \"Wiederholen\"-Buttons", "label": "Beschriftung des \"Lösung anzeigen\"-Buttons",
"default":"Lösung anzeigen", "default": "Lösung anzeigen",
"description":"Beschriftung des \"Wiederholen\"-Buttons" "description": "Beschriftung des \"Lösung anzeigen\"-Buttons"
}, },
{ {
"label":"Beschriftung des \"Beenden\"-Buttons", "label": "Beschriftung des \"Wiederholen\"-Buttons",
"default":"Wiederholen", "default": "Wiederholen",
"description":"Text for the retry button." "description": "Beschriftung des \"Wiederholen\"-Buttons"
}, },
{ {
"label":"Schaltflächentext Beenden", "label": "Beschriftung des \"Beenden\"-Buttons",
"default":"Beenden" "default": "Beenden"
}, },
{ {
"label":"Aktiviere \"Video überspringen\"-Button" "label": "Zeige ein Video vor den Ergebnissen an"
}, },
{ {
"label":"Beschriftung des \"Video überspringen\"-Buttons" "label": "Zeige \"Video überspringen\"-Button an"
}, },
{ {
"label":"Bestanden-Video", "label": "Beschriftung des \"Video überspringen\"-Buttons",
"default":"Skip video" "default": "Video überspringen"
}, },
{ {
"label":"Nicht-bestanden-Video", "label": "Bestanden-Video",
"description":"Dieses Video wird angezeigt, wenn der Nutzer das Quiz nicht bestanden hat." "description": "Dieses Video wird angezeigt, wenn der Nutzer das Quiz bestanden hat."
}, },
{ {
"label":"Fail video", "label": "Nicht-bestanden-Video",
"description":"This video will be played if the user failes the quiz." "description": "Dieses Video wird angezeigt, wenn der Nutzer das Quiz nicht bestanden hat."
} }
] ]
}, },
{ {
"label":"Einstellungen für \"Lösung zeigen\"-Button und \"Nochmal\".", "label": "Einstellungen für \"Lösung anzeigen\"-Button und \"Wiederholen\"-Button",
"fields":[ "fields": [
{ {
"label":"Überschreiben des \"Lösungen anzeigen\"-Buttons", "label": "Überschreiben der Anzeigeoptionen des \"Überprüfen\"-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.", "description": "Diese Option legt fest, ob der \"Überprüfen\"-Button für alle Fragen angezeigt wird."
"options":[ },
{
"label": "Überschreiben der Anzeigeoptionen 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":"Anzeigen" "label": "Immer anzeigen"
}, },
{ {
"label":"Ausblenden" "label": "Immer ausblenden"
} }
] ]
}, },
{ {
"label":"Überschreiben des \"Wiederholen\"-Buttons", "label": "Überschreiben der Anzeigeoptionen 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.", "description": "Diese Option gibt an, ob der \"Wiederholen\" Button für alle Fragen angezeigt, ausgeblendet oder für jede Frage individuell konfiguriert wird.",
"options":[ "options": [
{ {
"label":"Anzeigen" "label": "Immer anzeigen"
}, },
{ {
"label":"Ausblenden" "label": "Immer ausblenden"
} }
] ]
} }

View File

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

View File

@ -1,166 +1,168 @@
{ {
"semantics":[ "semantics": [
{ {
"label":"Quiz introduction", "label": "Quiz introduction",
"fields":[ "fields": [
{ {
"label":"Display introduction" "label": "Display introduction"
}, },
{ {
"label":"Título", "label": "Título",
"description":"This title will be displayed above the introduction text." "description": "This title will be displayed above the introduction text."
}, },
{ {
"label":"Introduction text", "label": "Introduction text",
"description":"This text will be displayed before the quiz starts." "description": "This text will be displayed before the quiz starts."
}, },
{ {
"label":"Start button text", "label": "Start button text",
"default":"Start Quiz" "default": "Start Quiz"
}, },
{ {
"label":"Background image", "label": "Background image",
"description":"An optional background image for the introduction." "description": "An optional background image for the introduction."
} }
] ]
}, },
{ {
"label":"Background image", "label": "Background image",
"description":"An optional background image for the Question set." "description": "An optional background image for the Question set."
}, },
{ {
"label":"Progress indicator", "label": "Progress indicator",
"description":"Question set progress indicator style.", "description": "Question set progress indicator style.",
"options":[ "options": [
{ {
"label":"Textual" "label": "Textual"
}, },
{ {
"label":"Dots" "label": "Dots"
} }
], ]
"default":"dots"
}, },
{ {
"label":"Pass percentage", "label": "Pass percentage",
"description":"Percentage of Total score required for passing the quiz." "description": "Percentage of Total score required for passing the quiz."
}, },
{ {
"label":"Questions", "label": "Questions",
"widgets":[ "widgets": [
{ {
"label":"Predeterminado" "label": "Predeterminado"
}, },
{ {
"label":"Textual" "label": "Textual"
} }
], ],
"entity":"question", "entity": "question",
"field":{ "field": {
"label":"Question type", "label": "Question type",
"description":"Library for this question." "description": "Library for this question."
} }
}, },
{ {
"label":"Interface texts in quiz", "label": "Interface texts in quiz",
"fields":[ "fields": [
{ {
"label":"Botón de retroceso", "label": "Botón de retroceso",
"default":"Previous question" "default": "Previous question"
}, },
{ {
"label":"Next button", "label": "Next button",
"default":"Next question" "default": "Next question"
}, },
{ {
"label":"Finish button", "label": "Finish button",
"default":"Finish" "default": "Finish"
}, },
{ {
"label":"Progress text", "label": "Progress text",
"description":"Text used if textual progress is selected.", "description": "Text used if textual progress is selected.",
"default":"Question: @current of @total questions" "default": "Question: @current of @total questions"
}, },
{ {
"label":"Label for jumping to a certain question", "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.", "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" "default": "Question %d of %total"
}, },
{ {
"label":"Copyright dialog question label", "label": "Copyright dialog question label",
"default":"Question" "default": "Question"
}, },
{ {
"label":"Readspeaker progress", "label": "Readspeaker progress",
"description":"May use @current and @total question variables", "description": "May use @current and @total question variables",
"default":"Question @current of @total" "default": "Question @current of @total"
}, },
{ {
"label":"Unanswered question text", "label": "Unanswered question text",
"default":"Unanswered" "default": "Unanswered"
}, },
{ {
"label":"Answered question text", "label": "Answered question text",
"default":"Answered" "default": "Answered"
}, },
{ {
"label":"Current question text", "label": "Current question text",
"default":"Current question" "default": "Current question"
} }
] ]
}, },
{ {
"label":"Disable backwards navigation", "label": "Disable backwards navigation",
"description":"This option will only allow you to move forward in Question Set" "description": "This option will only allow you to move forward in Question Set"
}, },
{ {
"label":"Randomize questions", "label": "Randomize questions",
"description":"Enable to randomize the order of questions on display." "description": "Enable to randomize the order of questions on display."
}, },
{ {
"label":"Number of questions to be shown:", "label": "Number of questions to be shown:",
"description":"Create a randomized batch of questions from the total." "description": "Create a randomized batch of questions from the total."
}, },
{ {
"label":"Quiz finished", "label": "Quiz finished",
"fields":[ "fields": [
{ {
"label":"Display results" "label": "Display results"
}, },
{ {
"label":"Display solution button" "label": "Display solution button"
}, },
{ {
"label":"No results message", "label": "Display retry button"
"description":"Text displayed on end page when \"Display results\" is disabled",
"default":"Finished"
}, },
{ {
"label":"Feedback heading", "label": "No results message",
"default":"Your result:", "description": "Text displayed on end page when \"Display results\" is disabled",
"description":"This heading will be displayed at the end of the quiz when the user has answered all questions." "default": "Finished"
}, },
{ {
"label":"Overall Feedback", "label": "Feedback heading",
"fields":[ "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":[ "widgets": [
{
"label": "Default"
}
], ],
"label":"Define custom feedback for any score range", "label": "Define custom feedback for any score range",
"description":"Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!", "description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
"entity":"range", "entity": "range",
"field":{ "field": {
"fields":[ "fields": [
{ {
"label":"Score Range" "label": "Score Range"
}, },
{},
{ {
"label": "Feedback for defined score range",
}, "placeholder": "Fill in the feedback"
{
"label":"Feedback for defined score range",
"placeholder":"Fill in the feedback"
} }
] ]
} }
@ -168,84 +170,88 @@
] ]
}, },
{ {
"label":"Old Feedback", "label": "Old Feedback",
"fields":[ "fields": [
{ {
"label":"Quiz passed greeting", "label": "Quiz passed greeting",
"description":"This text will be displayed above the score if the user has successfully passed the quiz." "description": "This text will be displayed above the score if the user has successfully passed the quiz."
}, },
{ {
"label":"Passed comment", "label": "Passed comment",
"description":"This comment will be displayed after the score if the user has successfully passed the quiz." "description": "This comment will be displayed after the score if the user has successfully passed the quiz."
}, },
{ {
"label":"Quiz failed title", "label": "Quiz failed title",
"description":"This text will be displayed above the score if the user has failed the quiz." "description": "This text will be displayed above the score if the user has failed the quiz."
}, },
{ {
"label":"Failed comment", "label": "Failed comment",
"description":"This comment will be displayed after the score if the user has failed the quiz." "description": "This comment will be displayed after the score if the user has failed the quiz."
} }
] ]
}, },
{ {
"label":"Solution button label", "label": "Solution button label",
"default":"Mostrar solución", "default": "Mostrar solución",
"description":"Text for the solution button." "description": "Text for the solution button."
}, },
{ {
"label":"Retry button label", "label": "Retry button label",
"default":"Reintentar", "default": "Reintentar",
"description":"Text for the retry button." "description": "Text for the retry button."
}, },
{ {
"label":"Finish button text", "label": "Finish button text",
"default":"Finish" "default": "Finish"
}, },
{ {
"label":"Display video before quiz results" "label": "Display video before quiz results"
}, },
{ {
"label":"Enable skip video button" "label": "Enable skip video button"
}, },
{ {
"label":"Skip video button label", "label": "Skip video button label",
"default":"Skip video" "default": "Skip video"
}, },
{ {
"label":"Passed video", "label": "Passed video",
"description":"This video will be played if the user successfully passed the quiz." "description": "This video will be played if the user successfully passed the quiz."
}, },
{ {
"label":"Fail video", "label": "Fail video",
"description":"This video will be played if the user failes the quiz." "description": "This video will be played if the user failes the quiz."
} }
] ]
}, },
{ {
"label":"Settings for \"Show solution\" and \"Retry\" buttons", "label": "Settings for \"Show solution\" and \"Retry\" buttons",
"fields":[ "fields": [
{ {
"label":"Ocultar el botón \"Mostrar solución\"", "label": "Show \"Check\" buttons",
"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.", "description": "This option determines if the \"Check\" button will be shown for all questions."
"options":[ },
{
"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" "label": "Habilitado"
}, },
{ {
"label":"Deshabilitado" "label": "Deshabilitado"
} }
] ]
}, },
{ {
"label":"Ocultar el botón de \"Reintentar\"", "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.", "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":[ "options": [
{ {
"label":"Habilitado" "label": "Habilitado"
}, },
{ {
"label":"Deshabilitado" "label": "Deshabilitado"
} }
] ]
} }

View File

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

261
language/eu.json Normal file
View File

@ -0,0 +1,261 @@
{
"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": "Lehenetsia"
},
{
"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": "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": "Display retry button"
},
{
"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": "Definitu feedback pertsonalizatua edozein puntuazio tarterako",
"description": "Adibidez: 0-2%0 Puntuazio txarra, %21-%91 Tarteko puntuazioa, %91-%100 Puntuazio bikaina!",
"entity": "tartea",
"field": {
"fields": [
{
"label": "Puntuazio tartea"
},
{},
{
"label": "Definitutako puntuazio tarterako feedbacka",
"placeholder": "Bete 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": "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"
}
]
}
]
}
]
}

261
language/fa.json Normal file
View File

@ -0,0 +1,261 @@
{
"semantics": [
{
"label": "راهنمای سوال",
"fields": [
{
"label": "نمایش راهنما"
},
{
"label": "عنوان",
"description": "این عنوان در بالای خلاصه نمایش داده میشود."
},
{
"label": "خلاصه متن",
"description": "این متن قبل از شروع آزمون نمایش داده میشود"
},
{
"label": "متن دکمه شروع",
"default": "شروع آزمون"
},
{
"label": "تصویر پس زمینه",
"description": "یک تصویر انتخابی برای قرارگرفتن در پس زمینه خلاصه"
}
]
},
{
"label": "تصویر پس زمینه",
"description": "یک تصویر انتخابی برای قرار گرفتن در پس زمینه گروه سوالات"
},
{
"label": "جداکننده فرآیند",
"description": "حالت نمایش جداکننده سوالات",
"options": [
{
"label": "متنی"
},
{
"label": "نقطه ای"
}
]
},
{
"label": "درصد پاس شدن",
"description": "درصدی که برای پاس شدن این آزمون مورد نیاز است"
},
{
"label": "سوالات",
"widgets": [
{
"label": "Default"
},
{
"label": "متنی"
}
],
"entity": "question",
"field": {
"label": "نوع سوال",
"description": "کتابخانه برای این سوال"
}
},
{
"label": "متن نمایشی برای این آزمون",
"fields": [
{
"label": "دکمه بازگشت",
"default": "Previous question"
},
{
"label": "دکمه بعدی",
"default": "Next question"
},
{
"label": "دکمه پایان",
"default": "Finish"
},
{
"label": "متن پیشرفت",
"description": "متن مورد استفاده در صورتی که پیشرفت متنی انتخاب شده باشد",
"default": "Question: @current of @total questions"
},
{
"label": "متن برای پریدن به یک سوال خاص",
"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": "متن سوالات پاسخ داده نشده",
"default": "بدون پاسخ"
},
{
"label": "متن سوالات پاسخ داده شده",
"default": "پاسخ داده شده"
},
{
"label": "متن سوال فعلی",
"default": "Current question"
}
]
},
{
"label": "غیرفعال کردن دکمه بازگشت",
"description": "این گزینه به شما اجازه میدهد که در فقط در سوالات به جلو بروید"
},
{
"label": "سوالات تصادفی",
"description": "با انتخاب این گزینه سوالات به صورت تصادفی نمایش داده میشود"
},
{
"label": "تعداد سوالاتی که باید نمایش داده شود:",
"description": "تعدادی از سوالات بالا را به صورت تصادفی در آزمون نمایش میدهد"
},
{
"label": "آزمون به پایان رسیده",
"fields": [
{
"label": "نمایش نتایج"
},
{
"label": "دکمه نمایش راه حل"
},
{
"label": "Display retry button"
},
{
"label": "پیام عدم وجود نتایج",
"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": "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 failes 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,166 +1,168 @@
{ {
"semantics":[ "semantics": [
{ {
"label":"Quiz introduction", "label": "Tietovisan johdanto",
"fields":[ "fields": [
{ {
"label":"Display introduction" "label": "Näytä johdanto"
}, },
{ {
"label":"Otsikko", "label": "Otsikko",
"description":"This title will be displayed above the introduction text." "description": "Johdanto-osion otsikko."
}, },
{ {
"label":"Introduction text", "label": "Johdantoteksti",
"description":"This text will be displayed before the quiz starts." "description": "Teksti näytetään ennen visan alkua."
}, },
{ {
"label":"Start button text", "label": "Aloita -painikkeen teksti",
"default":"Start Quiz" "default": "Aloita"
}, },
{ {
"label":"Background image", "label": "Taustakuva",
"description":"An optional background image for the introduction." "description": "Valinnainen taustakuva johdantoon."
} }
] ]
}, },
{ {
"label":"Background image", "label": "Taustakuva",
"description":"An optional background image for the Question set." "description": "Valinnainen taustakuva kysymyksille."
}, },
{ {
"label":"Progress indicator", "label": "Edistymisen näyttäminen",
"description":"Question set progress indicator style.", "description": "Miten edistyminen tehtävässä näytetään tekijälle.",
"options":[ "options": [
{ {
"label":"Textual" "label": "Teksti"
}, },
{ {
"label":"Dots" "label": "Täplät"
} }
], ]
"default":"dots"
}, },
{ {
"label":"Pass percentage", "label": "Läpäisyprosentti",
"description":"Percentage of Total score required for passing the quiz." "description": "Kuinka monta prosenttia maksimipisteistä vaaditaan tehtävän läpäisyyn."
}, },
{ {
"label":"Questions", "label": "Kysymykset",
"widgets":[ "widgets": [
{ {
"label":"Default" "label": "Oletus"
}, },
{ {
"label":"Textual" "label": "Teksti"
} }
], ],
"entity":"question", "entity": "kysymys",
"field":{ "field": {
"label":"Question type", "label": "Kysymyksen tyyppi",
"description":"Library for this question." "description": "Tarjolla olevat kysymystyypit."
} }
}, },
{ {
"label":"Interface texts in quiz", "label": "Käyttöliittymän tekstit",
"fields":[ "fields": [
{ {
"label":"Back button", "label": "Painikkeen Edellinen teksti",
"default":"Previous question" "default": "Edellinen kysymys"
}, },
{ {
"label":"Next button", "label": "Painikkeen Seuraava teksti",
"default":"Next question" "default": "Seuraava kysymys"
}, },
{ {
"label":"Finish button", "label": "Painikkeen Lopeta teksti",
"default":"Finish" "default": "Lopeta"
}, },
{ {
"label":"Progress text", "label": "Edistyminen",
"description":"Text used if textual progress is selected.", "description": "Tekstiä käytetään mikäli tekstimuotoinen edistymisen näyttäminen on valittuna.",
"default":"Question: @current of @total questions" "default": "Kysymys @current/@total"
}, },
{ {
"label":"Label for jumping to a certain question", "label": "Teksti kun hypätään tiettyyn kysymykseen",
"description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.", "description": "Käytettävissä olevat muuttujat: '%d' kysymyksen numerolle ja %total kysymysten kokonaismäärälle.",
"default":"Question %d of %total" "default": "Kysymys %d/%total"
}, },
{ {
"label":"Copyright dialog question label", "label": "Kysymyksen selite tekijänoikeusvalinnoissa",
"default":"Question" "default": "Kysymys"
}, },
{ {
"label":"Readspeaker progress", "label": "Ruudunlukijan teksti edistymiselle",
"description":"May use @current and @total question variables", "description": "Käytettävissä olevat muuttujat: @current ja @total",
"default":"Question @current of @total" "default": "Kysymys @current/@total"
}, },
{ {
"label":"Unanswered question text", "label": "Teksti vastaamattomalle kysymykselle",
"default":"Unanswered" "default": "Ei vastattu"
}, },
{ {
"label":"Answered question text", "label": "Teksti vastatulle kysymykselle",
"default":"Answered" "default": "Vastattu"
}, },
{ {
"label":"Current question text", "label": "Teksti meneillään olevalle kysymykselle",
"default":"Current question" "default": "Meneillään oleva kysymys"
} }
] ]
}, },
{ {
"label":"Disable backwards navigation", "label": "Estä paluu",
"description":"This option will only allow you to move forward in Question Set" "description": "Tämä valinta sallii vain eteenpäin siirtymisen tehtävässä"
}, },
{ {
"label":"Randomize questions", "label": "Sekoita kysymykset",
"description":"Enable to randomize the order of questions on display." "description": "Kysymykset näytetään satunnaisessa järjestyksessä."
}, },
{ {
"label":"Number of questions to be shown:", "label": "Näytettävien kysymyksien määrä:",
"description":"Create a randomized batch of questions from the total." "description": "Näytetään annettu lukumäärä kysymyksiä kokonaismäärästä."
}, },
{ {
"label":"Quiz finished", "label": "Tehtävän päätyttyä",
"fields":[ "fields": [
{ {
"label":"Display results" "label": "Näytä tulokset"
}, },
{ {
"label":"Display solution button" "label": "Salli painike \"Katso vastaus\""
}, },
{ {
"label":"No results message", "label": "Display retry button"
"description":"Text displayed on end page when \"Display results\" is disabled",
"default":"Finished"
}, },
{ {
"label":"Feedback heading", "label": "Teksti kun ei tuloksia",
"default":"Your result:", "description": "Teksti näytetään, kun \"Näytä tulokset\" ei ole valittuna",
"description":"This heading will be displayed at the end of the quiz when the user has answered all questions." "default": "Valmis"
}, },
{ {
"label":"Overall Feedback", "label": "Palautteet otsikko",
"fields":[ "default": "Tuloksesi:",
"description": "Otsikko näytetään tehtävän lopussa, kun käyttäjä on vastannut kaikkiin kysymyksiin."
},
{
"label": "Yleispalaute",
"fields": [
{ {
"widgets":[ "widgets": [
{
"label": "Default"
}
], ],
"label":"Define custom feedback for any score range", "label": "Määritä muokattu palaute pisterajojen mukaan.",
"description":"Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!", "description": "Klikkaa \"Lisää alue\" painiketta lisätäksesi niin monta pisterajaa kuin tarvit. Esimerkiksi: 0-20% Huono tulos, 21-91% Kelpo tulos, 91-100% Mahtava tulos!",
"entity":"range", "entity": "alue",
"field":{ "field": {
"fields":[ "fields": [
{ {
"label":"Score Range" "label": "Pisteraja"
}, },
{},
{ {
"label": "Palaute määritellylle pisterajalle",
}, "placeholder": "Kirjoita palaute"
{
"label":"Feedback for defined score range",
"placeholder":"Fill in the feedback"
} }
] ]
} }
@ -168,84 +170,88 @@
] ]
}, },
{ {
"label":"Old Feedback", "label": "Old Feedback",
"fields":[ "fields": [
{ {
"label":"Quiz passed greeting", "label": "Quiz passed greeting",
"description":"This text will be displayed above the score if the user has successfully passed the quiz." "description": "This text will be displayed above the score if the user has successfully passed the quiz."
}, },
{ {
"label":"Passed comment", "label": "Passed comment",
"description":"This comment will be displayed after the score if the user has successfully passed the quiz." "description": "This comment will be displayed after the score if the user has successfully passed the quiz."
}, },
{ {
"label":"Quiz failed title", "label": "Quiz failed title",
"description":"This text will be displayed above the score if the user has failed the quiz." "description": "This text will be displayed above the score if the user has failed the quiz."
}, },
{ {
"label":"Failed comment", "label": "Failed comment",
"description":"This comment will be displayed after the score if the user has failed the quiz." "description": "This comment will be displayed after the score if the user has failed the quiz."
} }
] ]
}, },
{ {
"label":"Solution button label", "label": "Painikkeen \"Katso vastaus\" nimi",
"default":"Show solution", "default": "Katso vastaus",
"description":"Text for the solution button." "description": "Teksti \"Katso vastaus\" painikkeelle."
}, },
{ {
"label":"Retry button label", "label": "Painikkeen \"Yritä uudelleen\" nimi",
"default":"Yritä uudelleen", "default": "Yritä uudelleen",
"description":"Text for the retry button." "description": "Teksti \"Yritä uudelleen\" painikkeelle."
}, },
{ {
"label":"Finish button text", "label": "Painikkeen \"Lopeta\" teksti",
"default":"Finish" "default": "Lopeta"
}, },
{ {
"label":"Display video before quiz results" "label": "Näytä video ennen tuloksia"
}, },
{ {
"label":"Enable skip video button" "label": "Salli videon ohittaminen"
}, },
{ {
"label":"Skip video button label", "label": "Teksti painikkeelle Ohita video",
"default":"Skip video" "default": "Ohita video"
}, },
{ {
"label":"Passed video", "label": "Video, kun suoritettu",
"description":"This video will be played if the user successfully passed the quiz." "description": "Tämä video näytetään, kun tehtävä on suoritettu onnistuneesti."
}, },
{ {
"label":"Fail video", "label": "Video, kun ei suoritettu",
"description":"This video will be played if the user failes the quiz." "description": "Tämä video näytetään, kun tehtävää ei ole suoritettu onnistuneesti."
} }
] ]
}, },
{ {
"label":"Settings for \"Show solution\" and \"Retry\" buttons", "label": "Asetukset \"Näytä vastaus\" ja \"Yritä uudelleen\" painikkeille",
"fields":[ "fields": [
{ {
"label":"\"Näytä vastaus\"-painike", "label": "Show \"Check\" buttons",
"description":"Ota käyttöön kaikissa kysymyksissä, ei yhdessäkään, tai jätä tyhjäksi käyttääksesi tehtäväkohtaisia asetuksia", "description": "This option determines if the \"Check\" button will be shown for all questions."
"options":[ },
{
"label": "\"Näytä vastaus\"-painike",
"description": "Ota käyttöön kaikissa kysymyksissä, ei yhdessäkään, tai jätä tyhjäksi käyttääksesi tehtäväkohtaisia asetuksia",
"options": [
{ {
"label":"Käytössä kaikissa" "label": "Käytössä kaikissa"
}, },
{ {
"label":"Pois käytöstä" "label": "Pois käytöstä"
} }
] ]
}, },
{ {
"label":"\"Yritä uudelleen\"-painike", "label": "\"Yritä uudelleen\"-painike",
"description":"Ota käyttöön kaikissa kysymyksissä, ei yhdessäkään, tai jätä tyhjäksi käyttääksesi tehtäväkohtaisia asetuksia.", "description": "Ota käyttöön kaikissa kysymyksissä, ei yhdessäkään, tai jätä tyhjäksi käyttääksesi tehtäväkohtaisia asetuksia.",
"options":[ "options": [
{ {
"label":"Käytössä kaikissa" "label": "Käytössä kaikissa"
}, },
{ {
"label":"Pois käytöstä" "label": "Pois käytöstä"
} }
] ]
} }

View File

@ -1,166 +1,168 @@
{ {
"semantics":[ "semantics": [
{ {
"label":"Introduction du Quiz ", "label": "Introduction du Quiz ",
"fields":[ "fields": [
{ {
"label":"Afficher l'introduction" "label": "Afficher l'introduction"
}, },
{ {
"label":"Titre", "label": "Titre",
"description":"Ce titre sera affiché au-dessus de votre texte d'introduction." "description": "Ce titre sera affiché au-dessus de votre texte d'introduction."
}, },
{ {
"label":"Texte d'introduction ", "label": "Texte d'introduction ",
"description":"Ce texte sera affiché avant le démarrage du quiz." "description": "Ce texte sera affiché avant le démarrage du quiz."
}, },
{ {
"label":"Texte du bouton de démarrage", "label": "Texte du bouton de démarrage",
"default":"Commencer" "default": "Commencer"
}, },
{ {
"label":"Image d'arrière-plan", "label": "Image d'arrière-plan",
"description":"Image d'arrière-plan optionnelle pour l'introduction." "description": "Image d'arrière-plan optionnelle pour l'introduction."
} }
] ]
}, },
{ {
"label":"Image d'arrière-plan", "label": "Image d'arrière-plan",
"description":"Image d'arrière-plan optionnelle pour la série de questions." "description": "Image d'arrière-plan optionnelle pour la série de questions."
}, },
{ {
"label":"Indicateur de progression", "label": "Indicateur de progression",
"description":"Style de l'indicateur de progression de la série de questions.", "description": "Style de l'indicateur de progression de la série de questions.",
"options":[ "options": [
{ {
"label":"Texte" "label": "Texte"
}, },
{ {
"label":"Points" "label": "Points"
} }
], ]
"default":"dots"
}, },
{ {
"label":"Pourcentage de réussite", "label": "Pourcentage de réussite",
"description":"Pourcentage exigé pour considérer que le quiz est réussi." "description": "Pourcentage exigé pour considérer que le quiz est réussi."
}, },
{ {
"label":"Questions", "label": "Questions",
"widgets":[ "widgets": [
{ {
"label":"Par défaut" "label": "Par défaut"
}, },
{ {
"label":"Texte" "label": "Texte"
} }
], ],
"entity":"question", "entity": "question",
"field":{ "field": {
"label":"Type de question", "label": "Type de question",
"description":"Types possibles pour cette question." "description": "Types possibles pour cette question."
} }
}, },
{ {
"label":"Textes de l'interface du quiz", "label": "Textes de l'interface du quiz",
"fields":[ "fields": [
{ {
"label":"Bouton Retour", "label": "Bouton Retour",
"default":"Retour" "default": "Retour"
}, },
{ {
"label":"Bouton suivant", "label": "Bouton Suivant",
"default":"Suite" "default": "Suivant"
}, },
{ {
"label":"Bouton fin", "label": "Bouton Fin",
"default":"Confirmer" "default": "Terminer"
}, },
{ {
"label":"Texte de progression", "label": "Texte de progression",
"description":"Texte utilisé si la progression textuelle a été sélectionnée.", "description": "Texte utilisé si la progression textuelle a été sélectionnée.",
"default":"Question @current sur @total" "default": "Question @current sur @total"
}, },
{ {
"label":"Texte pour aller directement à une question", "label": "Texte pour aller directement à une question",
"description":"Vous devez utiliser la variable '%d' à la place du numéro de la question et %total à la place du nombre total de questions.", "description": "Vous devez utiliser la variable '%d' à la place du numéro de la question et %total à la place du nombre total de questions.",
"default":"Question %d sur %total" "default": "Question %d sur %total"
}, },
{ {
"label":"Texte de la question de la boîte de dialogue de copyright", "label": "Texte de la question de la boîte de dialogue de copyright",
"default":"Question" "default": "Question"
}, },
{ {
"label":"Progression pour la synthèse vocale", "label": "Progression pour la synthèse vocale",
"description":"Vous pouvez utiliser les variables @current et @total", "description": "Vous pouvez utiliser les variables @current et @total",
"default":"Question @current sur @total" "default": "Question @current sur @total"
}, },
{ {
"label":"Texte d'une question sans réponse", "label": "Texte d'une question sans réponse",
"default":"Pas de réponse donnée" "default": "Pas de réponse donnée"
}, },
{ {
"label":"Texte d'une question ayant reçu une réponse", "label": "Texte d'une question ayant reçu une réponse",
"default":"Réponse donnée" "default": "Réponse donnée"
}, },
{ {
"label":"Texte de la question en cours", "label": "Texte de la question en cours",
"default":"Question en cours" "default": "Question en cours"
} }
] ]
}, },
{ {
"label":"Désactiver la possibilité de naviguer en arrière", "label": "Désactiver la possibilité de naviguer en arrière",
"description":"Cette option ne permettra plus que la navigation en avant au sein du module Question Set" "description": "Cette option ne permettra plus que la navigation en avant au sein du module Question Set."
}, },
{ {
"label":"Afficher les question dans un ordre aléatoire", "label": "Afficher les questions dans un ordre aléatoire",
"description":"Les réponses possibles seront affichées dans l'ordre aléatoire." "description": "Activer pour choisir aléatoirement l'ordre des questions à l'affichage."
}, },
{ {
"label":"Nombre de questions à afficher:", "label": "Nombre de questions à afficher:",
"description":"Génère aléatoire un jeu de question parmi toutes les questions disponibles." "description": "Génère aléatoirement un jeu de questions parmi toutes les questions disponibles."
}, },
{ {
"label":"Quiz terminé", "label": "Quiz terminé",
"fields":[ "fields": [
{ {
"label":"Afficher les résultats" "label": "Afficher les résultats"
}, },
{ {
"label":"Display solution button" "label": "Afficher le bouton \"Solution\"."
}, },
{ {
"label":"Message si pas de résultats", "label": "Display retry button"
"description":"Texte affiché sur la page finale si l'option \"Afficher les résultats\" est désactivée.",
"default":"Terminé"
}, },
{ {
"label":"Titre des commentaires", "label": "Message si pas de résultats",
"default":"Vos résultats :", "description": "Texte affiché sur la page finale si l'option \"Afficher les résultats\" est désactivée.",
"description":"Ce titre sera affiché à la fin du quiz quand l'utilisateur aura répondu à toutes les questions." "default": "Terminé"
}, },
{ {
"label":"Opacité des étiquettes", "label": "Titre des commentaires",
"fields":[ "default": "Vos résultats :",
"description": "Ce titre sera affiché à la fin du quiz quand l'utilisateur aura répondu à toutes les questions."
},
{
"label": "Opacité des étiquettes",
"fields": [
{ {
"widgets":[ "widgets": [
{
"label": "Par défaut"
}
], ],
"label":"Define custom feedback for any score range", "label": "Définir un retour personnalisé pour chaque tranche de score",
"description":"Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!", "description": "Exemple: 0-20% Score insuffisant, 21-91% Score moyen, 91-100% Bon score!",
"entity":"range", "entity": "tranche",
"field":{ "field": {
"fields":[ "fields": [
{ {
"label":"Score Range" "label": "Tranche de score"
}, },
{},
{ {
"label": "Retour pour cette tranche de score",
}, "placeholder": "Entrer le message de retour"
{
"label":"Feedback for defined score range",
"placeholder":"Fill in the feedback"
} }
] ]
} }
@ -168,84 +170,88 @@
] ]
}, },
{ {
"label":"Old Feedback", "label": "Old Feedback",
"fields":[ "fields": [
{ {
"label":"Commentaire de félicitation", "label": "Commentaire de félicitation",
"description":"Ce commentaire sera affiché au-dessus du score de l'utilisateur si celui-ci réussit le quiz." "description": "Ce commentaire sera affiché au-dessus du score de l'utilisateur si celui-ci réussit le quiz."
}, },
{ {
"label":"Commentaire en cas de succès", "label": "Commentaire en cas de succès",
"description":"Commentaire affiché lors du passage du quiz avec succès." "description": "Commentaire affiché lors du passage du quiz avec succès."
}, },
{ {
"label":"Commentaire en cas d'échec", "label": "Commentaire en cas d'échec",
"description":"Ce commentaire sera affiché au-dessus du score de l'utilisateur si celui-ci échoue au quiz." "description": "Ce commentaire sera affiché au-dessus du score de l'utilisateur si celui-ci échoue au quiz."
}, },
{ {
"label":"Commentaire additionnel en cas d'échec", "label": "Commentaire additionnel en cas d'échec",
"description":"Commentaire additionnel affiché lors de l'échec au quiz." "description": "Commentaire additionnel affiché lors de l'échec au quiz."
} }
] ]
}, },
{ {
"label":"Texte du bouton \"Solution\"", "label": "Texte du bouton \"Solution\"",
"default":"Voir la solution", "default": "Voir la solution",
"description":"Texte pour le bouton de solution." "description": "Texte pour le bouton de solution."
}, },
{ {
"label":"Texte du bouton \"Recommencer\"", "label": "Texte du bouton \"Recommencer\"",
"default":"Recommencer", "default": "Recommencer",
"description":"Texte pour le bouton Recommencer." "description": "Texte pour le bouton Recommencer."
}, },
{ {
"label":"Texte pour le bouton de fin", "label": "Texte pour le bouton de fin",
"default":"Confirmer" "default": "Terminer"
}, },
{ {
"label":"Afficher une vidéo avant l'affichage des résultats du quiz" "label": "Afficher une vidéo avant l'affichage des résultats du quiz"
}, },
{ {
"label":"Activer le bouton \"Passer la vidéo\"" "label": "Activer le bouton \"Passer la vidéo\""
}, },
{ {
"label":"Texte du bouton \"Passer la vidéo\"", "label": "Texte du bouton \"Passer la vidéo\"",
"default":"Passer la vidéo" "default": "Passer la vidéo"
}, },
{ {
"label":"Vidéo en cas de succès", "label": "Vidéo en cas de succès",
"description":"Vidéo affichée si l'utilisateur réussit le quiz." "description": "Vidéo affichée si l'utilisateur réussit le quiz."
}, },
{ {
"label":"Vidéo en cas d'échec", "label": "Vidéo en cas d'échec",
"description":"Vidéo affichée si l'utilisateur échoue au quiz." "description": "Vidéo affichée si l'utilisateur échoue au quiz."
} }
] ]
}, },
{ {
"label":"Options pour les boutons \"Montrer la solution\" et \"Recommencer\".", "label": "Options pour les boutons \"Montrer la solution\" et \"Recommencer\".",
"fields":[ "fields": [
{ {
"label":"Ecraser le bouton \"Voir la correction\"", "label": "Montrer les boutons \"Vérifier\"",
"description":"Cette option détermine si le bouton \"Voir la correction\" sera affiché pour toutes les questions, désactivé pour toutes ou configuré pour chaque question individuellement.", "description": "Cette option determine si le bouton \"Vérifier\" va apparaître pour toutes les questions."
"options":[ },
{
"label": "Cacher le bouton \"Voir la correction\"",
"description": "Cette option détermine si le bouton \"Voir la correction\" sera affiché pour toutes les questions, désactivé pour toutes ou configuré pour chaque question individuellement.",
"options": [
{ {
"label":"Activé" "label": "Activé"
}, },
{ {
"label":"Désactivé" "label": "Désactivé"
} }
] ]
}, },
{ {
"label":"Ecraser le bouton \"Recommencer\"", "label": "Cacher le bouton \"Recommencer\"",
"description":"Cette option détermine si le bouton \"Recommencer\" sera affiché pour toutes les questions, désactivé pour toutes ou configuré pour chaque question individuellement.", "description": "Cette option détermine si le bouton \"Recommencer\" sera affiché pour toutes les questions, désactivé pour toutes ou configuré pour chaque question individuellement.",
"options":[ "options": [
{ {
"label":"Activé" "label": "Activé"
}, },
{ {
"label":"Désactivé" "label": "Désactivé"
} }
] ]
} }

View File

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

View File

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

View File

@ -1,166 +1,168 @@
{ {
"semantics":[ "semantics": [
{ {
"label":"Introduzione al quiz", "label": "Introduzione al quiz",
"fields":[ "fields": [
{ {
"label":"Visualizza l'introduzione" "label": "Visualizza l'introduzione"
}, },
{ {
"label":"Titolo", "label": "Titolo",
"description":"Questo titolo sarà visualizzato sopra il testo introduttivo." "description": "Questo titolo sarà visualizzato sopra il testo introduttivo."
}, },
{ {
"label":"Testo di introduzione", "label": "Testo di introduzione",
"description":"Questo testo sarà visualizzato prima dell'inizio del quiz." "description": "Questo testo sarà visualizzato prima dell'inizio del quiz."
}, },
{ {
"label":"Testo pulsante di avvio", "label": "Testo del pulsante di avvio",
"default":"Inizia il quiz" "default": "Inizia il quiz"
}, },
{ {
"label":"Immagine di sfondo", "label": "Immagine di sfondo",
"description":"Immagine di sfondo facoltativa per l'introduzione." "description": "Immagine di sfondo facoltativa per l'introduzione."
} }
] ]
}, },
{ {
"label":"Immagine di sfondo", "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", "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":[ "options": [
{ {
"label":"Testuale" "label": "Testuale"
}, },
{ {
"label":"Punti" "label": "Punti"
} }
], ]
"default":"dots"
}, },
{ {
"label":"Percentuale di superamento della prova", "label": "Percentuale di superamento della prova",
"description":"Percentuale del punteggio totale richiesto per passare il quiz." "description": "Percentuale del punteggio totale richiesto per passare il quiz."
}, },
{ {
"label":"Domande", "label": "Domande",
"widgets":[ "widgets": [
{ {
"label":"Predefinito" "label": "Predefinito"
}, },
{ {
"label":"Testuale" "label": "Testuale"
} }
], ],
"entity":"domanda", "entity": "domanda",
"field":{ "field": {
"label":"Tipo di domanda", "label": "Tipo di domanda",
"description":"Libreria per questa domanda." "description": "Libreria per questa domanda."
} }
}, },
{ {
"label":"Testi di interfaccia nel quiz", "label": "Testi di interfaccia nel quiz",
"fields":[ "fields": [
{ {
"label":"Pulsante indietro", "label": "Pulsante indietro",
"default":"Domanda precedente" "default": "Domanda precedente"
}, },
{ {
"label":"Pulsante Avanti", "label": "Pulsante avanti",
"default":"Prossima domanda" "default": "Prossima domanda"
}, },
{ {
"label":"Pulsante Fine", "label": "Pulsante fine",
"default":"Finito" "default": "Finito"
}, },
{ {
"label":"Testo di avanzamento", "label": "Testo di avanzamento",
"description":"Testo usate se il testo di avanzamento è selezionato.", "description": "Testo usato se il testo di avanzamento è selezionato.",
"default":"Domanda: @current di @total domande totali" "default": "Domanda: @current di @total domande totali"
}, },
{ {
"label":"Etichetta per saltare a una determinata domanda", "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" "default": "Domanda %d di %total"
}, },
{ {
"label":"Etichetta della domanda nella finestra sul diritto d'autore", "label": "Etichetta della domanda nella finestra sul diritto d'autore",
"default":"Domanda" "default": "Domanda"
}, },
{ {
"label":"Progresso del dispositvo di riproduzione vocale", "label": "Progresso del dispositvo di riproduzione vocale",
"description":"Puoi utilizzare le variabili di domanda @current e @total", "description": "Puoi utilizzare le variabili di domanda @current e @total",
"default":"Domanda @current di @total" "default": "Domanda @current di @total"
}, },
{ {
"label":"Testo della domanda senza risposta", "label": "Testo della domanda senza risposta",
"default":"Senza risposta" "default": "Senza risposta"
}, },
{ {
"label":"Testo della domanda con risposta", "label": "Testo della domanda con risposta",
"default":"Risposta" "default": "Risposta"
}, },
{ {
"label":"Testo della domanda corrente", "label": "Testo della domanda corrente",
"default":"Domanda corrente" "default": "Domanda corrente"
} }
] ]
}, },
{ {
"label":"Disattiva la navigazione all'indietro", "label": "Disattiva la navigazione all'indietro",
"description":"Questa opzione ti permetterà solo di spostarti in avanti in Question Set (Insieme di domande)" "description": "Questa opzione ti permetterà solo di spostarti in avanti in Question Set (Insieme di domande)"
}, },
{ {
"label":"Rendi casuale l'ordine delle domande", "label": "Rendi casuale l'ordine delle domande",
"description":"Abilita per rendere casuale l'ordine delle domande visualizzate." "description": "Abilita per rendere casuale l'ordine delle domande visualizzate."
}, },
{ {
"label":"Numero di domande da mostrare:", "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":"Quiz terminato", "label": "Quiz terminato",
"fields":[ "fields": [
{ {
"label":"Visualizza i risultati" "label": "Visualizza i risultati"
}, },
{ {
"label":"Pulsante visualizza soluzione" "label": "Pulsante visualizza soluzione"
}, },
{ {
"label":"Messaggio di nessun risultato", "label": "Display retry button"
"description":"Testo visualizzato nella pagina finale quando \"Visualizza risultati\" è disattivato",
"default":"Finito"
}, },
{ {
"label":"Intestazione di feedback", "label": "Messaggio di nessun risultato",
"default":"Il tuo risultato:", "description": "Testo visualizzato nella pagina finale quando \"Visualizza risultati\" è disattivato",
"description":"Questa intestazione sarà visualizzata alla fine del quiz, dopo che l'utente avrà risposto a tutte le domande." "default": "Finito"
}, },
{ {
"label":"Feedback generale", "label": "Intestazione di feedback",
"fields":[ "default": "Il tuo risultato:",
"description": "Questa intestazione sarà visualizzata alla fine del quiz, dopo che l'utente avrà risposto a tutte le domande."
},
{
"label": "Feedback generale",
"fields": [
{ {
"widgets":[ "widgets": [
{
"label": "Default"
}
], ],
"label":"Definisci un feedback personalizzato per ogni intervallo di punteggio", "label": "Definisci un feedback personalizzato per ogni intervallo di punteggio",
"description":"Esempio: 0-20%, cattivo punteggio; 21-91% punteggio nella media; 91-100% ottimo punteggio!", "description": "Esempio: 0-20%, cattivo punteggio; 21-91% punteggio medio; 91-100% ottimo punteggio!",
"entity":"Intervallo", "entity": "Intervallo",
"field":{ "field": {
"fields":[ "fields": [
{ {
"label":"Intervallo di punteggio" "label": "Intervallo di punteggio"
}, },
{},
{ {
"label": "Feedback per un intervallo di punteggio definito",
}, "placeholder": "Compila il feedback"
{
"label":"Feedback per un intervallo di punteggio definito",
"placeholder":"Compila il feedback"
} }
] ]
} }
@ -168,84 +170,88 @@
] ]
}, },
{ {
"label":"Vecchio feedback", "label": "Vecchio feedback",
"fields":[ "fields": [
{ {
"label":"Messaggio di superamento quiz", "label": "Messaggio di superamento del quiz",
"description":"Questo testo verrà visualizzato sopra il punteggio se l'utente ha superato con successo il quiz." "description": "Questo testo verrà visualizzato sopra il punteggio se l'utente ha superato con successo il quiz."
}, },
{ {
"label":"Commento di superamento quiz", "label": "Commento di superamento del quiz",
"description":"Questo commento verrà visualizzato dopo il punteggio se l'utente ha superato con successo il quiz." "description": "Questo commento verrà visualizzato dopo il punteggio se l'utente ha superato con successo il quiz."
}, },
{ {
"label":"Titolo quiz fallito", "label": "Titolo per quiz fallito",
"description":"Questo testo verrà visualizzato sopra il punteggio se l'utente non ha superato il quiz." "description": "Questo messaggio sarà visualizzato sopra il punteggio se l'utente non ha superato il quiz."
}, },
{ {
"label":"Commento quiz fallito", "label": "Commento per quiz fallito",
"description":"Questo commento verrà visualizzato dopo il punteggio se l'utente non ha superato il quiz." "description": "Questo commento sarà visualizzato dopo il punteggio se l'utente non ha superato il quiz."
} }
] ]
}, },
{ {
"label":"Etichetta pulsante Soluzione", "label": "Etichetta del pulsante \"Mostra soluzione\"",
"default":"Mostra la soluzione", "default": "Mostra soluzione",
"description":"Testo per il pulsante Soluzione." "description": "Testo per il pulsante \"Mostra soluzione\"."
}, },
{ {
"label":"Etichetta del pulsante Riprova", "label": "Etichetta del pulsante \"Riprova\"",
"default":"Riprova", "default": "Riprova",
"description":"Testo per il pulsante Riprova." "description": "Testo per il pulsante \"Riprova\"."
}, },
{ {
"label":"Testo pulsante Fine", "label": "Testo pulsante che indica la fine del quiz",
"default":"Finito" "default": "Finito"
}, },
{ {
"label":"Visualizza il video prima dei risultati del quiz" "label": "Visualizza il video prima dei risultati del quiz"
}, },
{ {
"label":"Abilita pulsante Salta video" "label": "Pulsante per attivare \"Salta video\""
}, },
{ {
"label":"Etichetta pulsante Salta video", "label": "Etichetta del pulsante \"Salta video\"",
"default":"Salta video" "default": "Salta video"
}, },
{ {
"label":"Video di superamento quiz", "label": "Video per superamento del quiz",
"description":"Questo video verrà visualizzato sopra il punteggio se l'utente ha superato con successo il quiz." "description": "Questo video verrà visualizzato sopra il punteggio se l'utente ha superato con successo il quiz."
}, },
{ {
"label":"Video quiz fallito", "label": "Video per mancato superamento del quiz",
"description":"Questo testo verrà visualizzato se l'utente non ha superato il quiz." "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":[ "fields": [
{ {
"label":"Sovrascrivi il pulsante Mostra soluzione", "label": "Mostra pulsanti di \"Verifica\"",
"description":"Questa opzione determina se il pulsante \"Mostra soluzione\" sarà visualizzato per tutte le domande, disabilitato per tutti o configurato individualmente per ogni domanda.", "description": "Questa opzione rende disponibile il pulsante di verifica su ogni domanda."
"options":[ },
{
"label": "Sovrascrivi il pulsante \"Mostra soluzione\"",
"description": "Questa opzione consente di impostare il pulsante \"Mostra soluzione\" su tutte le domande, su nessuna o di decidere caso per caso.",
"options": [
{ {
"label":"Attivato" "label": "Attivato"
}, },
{ {
"label":"Disabilitato" "label": "Disattivato"
} }
] ]
}, },
{ {
"label":"Sovrascrivi il pulsante \"Riprova\"", "label": "Sovrascrivi il pulsante \"Riprova\"",
"description":"Questa opzione determina se il pulsante \"Riprova\" sarà visualizzato per tutte le domande, disabilitato per tutti o configurato individualmente per ogni domanda.", "description": "Questa opzione consente di impostare il pulsante \"Riprova\" su tutte le domande, su nessuna o di decidere caso per caso.",
"options":[ "options": [
{ {
"label":"Attivo" "label": "Attivo"
}, },
{ {
"label":"Disattivato" "label": "Disattivato"
} }
] ]
} }

View File

@ -1,166 +1,168 @@
{ {
"semantics":[ "semantics": [
{ {
"label":"クイズ概要", "label": "クイズ概要",
"fields":[ "fields": [
{ {
"label":"概要を表示" "label": "概要を表示"
}, },
{ {
"label":"タイトル", "label": "タイトル",
"description":"このタイトルは、概要文の上に表示されます。" "description": "このタイトルは、概要文の上に表示されます。"
}, },
{ {
"label":"概要文", "label": "概要文",
"description":"このテキストは、クイズが始まる前に表示されます。" "description": "このテキストは、クイズが始まる前に表示されます。"
}, },
{ {
"label":"スタート ボタンのテキスト", "label": "スタート ボタンのテキスト",
"default":"クイズをスタート" "default": "クイズをスタート"
}, },
{ {
"label":"背景画像", "label": "背景画像",
"description":"概要のオプションの背景画像" "description": "概要のオプションの背景画像"
} }
] ]
}, },
{ {
"label":"背景画像", "label": "背景画像",
"description":"設問集のオプションの背景画像" "description": "設問集のオプションの背景画像"
}, },
{ {
"label":"進行状況インジケーター", "label": "進行状況インジケーター",
"description":"設問集の進捗状況インジケータースタイル", "description": "設問集の進捗状況インジケータースタイル",
"options":[ "options": [
{ {
"label":"原文" "label": "原文"
}, },
{ {
"label":"ドット" "label": "ドット"
} }
], ]
"default":"dots"
}, },
{ {
"label":"合格パーセンテージ", "label": "合格パーセンテージ",
"description":"クイズにパスするために必要となる合計点のパーセンテージです。" "description": "クイズにパスするために必要となる合計点のパーセンテージです。"
}, },
{ {
"label":"設問", "label": "設問",
"widgets":[ "widgets": [
{ {
"label":"デフォルト" "label": "デフォルト"
}, },
{ {
"label":"原文" "label": "原文"
} }
], ],
"entity":"設問", "entity": "設問",
"field":{ "field": {
"label":"設問タイプ", "label": "設問タイプ",
"description":"この設問のライブラリ。" "description": "この設問のライブラリ。"
} }
}, },
{ {
"label":"クイズ内のインターフェイステキスト", "label": "クイズ内のインターフェイステキスト",
"fields":[ "fields": [
{ {
"label":"戻るボタン", "label": "戻るボタン",
"default":"前の設問" "default": "前の設問"
}, },
{ {
"label":"次へボタン", "label": "次へボタン",
"default":"次の設問" "default": "次の設問"
}, },
{ {
"label":"完了ボタン", "label": "完了ボタン",
"default":"完了" "default": "完了"
}, },
{ {
"label":"進行状況のテキスト", "label": "進行状況のテキスト",
"description":"テキストによる進行状況を選択した場合に使用するテキスト。", "description": "テキストによる進行状況を選択した場合に使用するテキスト。",
"default":"設問: @current \/ @total" "default": "設問: @current / @total"
}, },
{ {
"label":"特定の設問にジャンプするラベル", "label": "特定の設問にジャンプするラベル",
"description":"設問番号ではなくプレース ホルダー '%d' を、また設問の全体数ではなく %total を使用する必要があります。", "description": "設問番号ではなくプレース ホルダー '%d' を、また設問の全体数ではなく %total を使用する必要があります。",
"default":"設問 %d \/ %total" "default": "設問 %d / %total"
}, },
{ {
"label":"著作権ダイアログ設問ラベル", "label": "著作権ダイアログ設問ラベル",
"default":"設問" "default": "設問"
}, },
{ {
"label":"リードスピーカーの進行状況", "label": "リードスピーカーの進行状況",
"description":"@current と @total の設問用変数を使用できます", "description": "@current と @total の設問用変数を使用できます",
"default":"設問 @current \/ @total" "default": "設問 @current / @total"
}, },
{ {
"label":"未回答の設問テキスト", "label": "未回答の設問テキスト",
"default":"未回答" "default": "未回答"
}, },
{ {
"label":"回答済みの設問テキスト", "label": "回答済みの設問テキスト",
"default":"回答済み" "default": "回答済み"
}, },
{ {
"label":"現在の設問テキスト", "label": "現在の設問テキスト",
"default":"現在の設問" "default": "現在の設問"
} }
] ]
}, },
{ {
"label":"後方ナビゲーションを無効化", "label": "後方ナビゲーションを無効化",
"description":"このオプションは、設問集内で前方移動を許可します。" "description": "このオプションは、設問集内で前方移動を許可します。"
}, },
{ {
"label":"ランダムな設問", "label": "ランダムな設問",
"description":"表示される設問の順序をランダム化します。" "description": "表示される設問の順序をランダム化します。"
}, },
{ {
"label":"表示される設問の数:", "label": "表示される設問の数:",
"description":"全体からランダム化したに設問集を作成します。" "description": "全体からランダム化したに設問集を作成します。"
}, },
{ {
"label":"クイズ完了", "label": "クイズ完了",
"fields":[ "fields": [
{ {
"label":"結果を表示" "label": "結果を表示"
}, },
{ {
"label":"解ボタンを表示" "label": "解ボタンを表示"
}, },
{ {
"label":"結果のメッセージはありません", "label": "Display retry button"
"description":"「結果を表示」が無効のとき最後のページにに表示されるテキスト",
"default":"完了"
}, },
{ {
"label":"フィードバックの見出し", "label": "結果のメッセージはありません",
"default":"結果:", "description": "「結果を表示」が無効のとき最後のページにに表示されるテキスト",
"description":"この見出しは、ユーザーがすべての設問に答えたときクイズの終わりに表示されます。" "default": "完了"
}, },
{ {
"label":"全体のフィードバック", "label": "フィードバックの見出し",
"fields":[ "default": "結果:",
"description": "この見出しは、ユーザーがすべての設問に答えたときクイズの終わりに表示されます。"
},
{
"label": "全体のフィードバック",
"fields": [
{ {
"widgets":[ "widgets": [
{
"label": "Default"
}
], ],
"label":"ある得点範囲に対して、カスタムフィードバックを定義します。", "label": "ある得点範囲に対して、カスタムフィードバックを定義します。",
"description":"例: 0-20% 低得点、 21-91% 平均点、 91-100% 高得点 !", "description": "例: 0-20% 低得点、 21-91% 平均点、 91-100% 高得点 !",
"entity":"範囲", "entity": "範囲",
"field":{ "field": {
"fields":[ "fields": [
{ {
"label":"得点範囲" "label": "得点範囲"
}, },
{},
{ {
"label": "定義した得点範囲に対するフィードバック",
}, "placeholder": "フィードバックを記入"
{
"label":"定義した得点範囲に対するフィードバック",
"placeholder":"フィードバックを記入"
} }
] ]
} }
@ -168,84 +170,88 @@
] ]
}, },
{ {
"label":"古いフィードバック", "label": "古いフィードバック",
"fields":[ "fields": [
{ {
"label":"クイズの合格メッセージ", "label": "クイズの合格メッセージ",
"description":"このテキストは、クイズの合格に成功した場合、得点の上に表示されます。" "description": "このテキストは、クイズの合格に成功した場合、得点の上に表示されます。"
}, },
{ {
"label":"合格コメント", "label": "合格コメント",
"description":"このコメントは、クイズの合格に成功した場合、得点の後に表示されます。" "description": "このコメントは、クイズの合格に成功した場合、得点の後に表示されます。"
}, },
{ {
"label":"クイズ不合格タイトル", "label": "クイズ不合格タイトル",
"description":"このテキストは、クイズに不合格となった場合、得点の上に表示されます。" "description": "このテキストは、クイズに不合格となった場合、得点の上に表示されます。"
}, },
{ {
"label":"不合格コメント", "label": "不合格コメント",
"description":"このコメントは、クイズに不合格となった場合、得点の後に表示されます。" "description": "このコメントは、クイズに不合格となった場合、得点の後に表示されます。"
} }
] ]
}, },
{ {
"label":"解ボタンのラベル", "label": "解ボタンのラベル",
"default":"解を表示", "default": "解を表示",
"description":"解ボタンのテキスト" "description": "解ボタンのテキスト"
}, },
{ {
"label":"リトライボタンのラベル", "label": "リトライボタンのラベル",
"default":"リトライ", "default": "リトライ",
"description":"リトライボタンのテキスト" "description": "リトライボタンのテキスト"
}, },
{ {
"label":"完了ボタンのテキスト", "label": "完了ボタンのテキスト",
"default":"完了" "default": "完了"
}, },
{ {
"label":"クイズの結果の前にビデオを表示" "label": "クイズの結果の前にビデオを表示"
}, },
{ {
"label":"ビデオスキップボタンを有効化" "label": "ビデオスキップボタンを有効化"
}, },
{ {
"label":"ビデオスをスキップボタンのラベル", "label": "ビデオスをスキップボタンのラベル",
"default":"ビデオをスキップ" "default": "ビデオをスキップ"
}, },
{ {
"label":"合格ビデオ", "label": "合格ビデオ",
"description":"このビデオは、ユーザーがクイズの合格に成功した場合に表示されます。" "description": "このビデオは、ユーザーがクイズの合格に成功した場合に表示されます。"
}, },
{ {
"label":"不合格ビデオ", "label": "不合格ビデオ",
"description":"このビデオは、ユーザーがクイズに不合格となった場合に表示されます。" "description": "このビデオは、ユーザーがクイズに不合格となった場合に表示されます。"
} }
] ]
}, },
{ {
"label":"「解を表示」と「リトライ」ボタンの設定", "label": "「解を表示」と「リトライ」ボタンの設定",
"fields":[ "fields": [
{ {
"label":"「解を表示」ボタンを上書き", "label": "Show \"Check\" buttons",
"description":"このオプションは、すべての設問に対して「解を表示」ボタンが表示されるか、すべての設問に対して無効になるか、各設問ごとに個別に設定されるかを決定します。", "description": "This option determines if the \"Check\" button will be shown for all questions."
"options":[ },
{
"label": "「解を表示」ボタンを上書き",
"description": "このオプションは、すべての設問に対して「解を表示」ボタンが表示されるか、すべての設問に対して無効になるか、各設問ごとに個別に設定されるかを決定します。",
"options": [
{ {
"label":"有効" "label": "有効"
}, },
{ {
"label":"無効" "label": "無効"
} }
] ]
}, },
{ {
"label":"「リトライ」ボタンを上書き", "label": "「リトライ」ボタンを上書き",
"description":"このオプションは、すべての設問に対して「リトライ」ボタンが表示されるか、すべての設問に対して無効になるか、各設問ごとに個別に設定されるかを決定します。", "description": "このオプションは、すべての設問に対して「リトライ」ボタンが表示されるか、すべての設問に対して無効になるか、各設問ごとに個別に設定されるかを決定します。",
"options":[ "options": [
{ {
"label":"有効" "label": "有効"
}, },
{ {
"label":"無効" "label": "無効"
} }
] ]
} }

View File

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

View File

@ -1,166 +1,168 @@
{ {
"semantics":[ "semantics": [
{ {
"label":"Introduksjon", "label": "Introduksjon",
"fields":[ "fields": [
{ {
"label":"Vis introduksjon" "label": "Vis introduksjon"
}, },
{ {
"label":"Tittel", "label": "Tittel",
"description":"Denne tittelen vil bli vist over introduksjonsteksten." "description": "Denne tittelen vil bli vist over introduksjonsteksten."
}, },
{ {
"label":"Introduksjonstekst", "label": "Introduksjonstekst",
"description":"Denne teksten vises før spørsmålssettet starter." "description": "Denne teksten vises før spørsmålssettet starter."
}, },
{ {
"label":"Tekst til \"Start\" knappen", "label": "Tekst til \"Start\" knappen",
"default":"Start" "default": "Start"
}, },
{ {
"label":"Bakgrunnsbilde", "label": "Bakgrunnsbilde",
"description":"Et valgfritt bakgrunnsbilde for introduksjonssiden." "description": "Et valgfritt bakgrunnsbilde for introduksjonssiden."
} }
] ]
}, },
{ {
"label":"Bakgrunnsbilde", "label": "Bakgrunnsbilde",
"description":"Bakgrunnsbilde for spørsmålssettet (ikke obligatorisk)." "description": "Bakgrunnsbilde for spørsmålssettet (ikke obligatorisk)."
}, },
{ {
"label":"Fremdriftsindikator", "label": "Fremdriftsindikator",
"description":"Velg om fremdriften skal angis som prikker (få spørsmål) eller som tekst (mange spørsmål).", "description": "Velg om fremdriften skal angis som prikker (få spørsmål) eller som tekst (mange spørsmål).",
"options":[ "options": [
{ {
"label":"Tekstlig" "label": "Tekstlig"
}, },
{ {
"label":"Prikker" "label": "Prikker"
} }
], ]
"default":"dots"
}, },
{ {
"label":"Krav for å bestå", "label": "Krav for å bestå",
"description":"Antall prosent riktig som kreves for å bestå spørsmålssettet." "description": "Antall prosent riktig som kreves for å bestå spørsmålssettet."
}, },
{ {
"label":"Spørsmål", "label": "Spørsmål",
"widgets":[ "widgets": [
{ {
"label":"Standard" "label": "Standard"
}, },
{ {
"label":"Tekstlig" "label": "Tekstlig"
} }
], ],
"entity":"spørsmål", "entity": "spørsmål",
"field":{ "field": {
"label":"Spørsmåltype", "label": "Spørsmåltype",
"description":"Velg spørsmålstype for dette spørsmålet" "description": "Velg spørsmålstype for dette spørsmålet"
} }
}, },
{ {
"label":"Ledetekster", "label": "Ledetekster",
"fields":[ "fields": [
{ {
"label":"Forrige-knappen", "label": "Forrige-knappen",
"default":"Forrige spørsmål" "default": "Forrige spørsmål"
}, },
{ {
"label":"Neste-knappen", "label": "Neste-knappen",
"default":"Neste spørsmål" "default": "Neste spørsmål"
}, },
{ {
"label":"Avslutt-knappen", "label": "Avslutt-knappen",
"default":"Avslutt" "default": "Avslutt"
}, },
{ {
"label":"Fremgangstekst", "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" "default": "Deloppgave @current av @total"
}, },
{ {
"label":"Merkelapp ved 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.", "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" "default": "Spørsmål %d av %total"
}, },
{ {
"label":"Opphavsrett spørsmål-etikett", "label": "Opphavsrett spørsmål-etikett",
"default":"Spørsmål" "default": "Spørsmål"
}, },
{ {
"label":"Fremdriftstekst for hjelpemiddelteknologi", "label": "Fremdriftstekst for hjelpemiddelteknologi",
"description":"Kan bruke @current og @total variabler", "description": "Kan bruke @current og @total variabler",
"default":"Deloppgave @current av @total" "default": "Deloppgave @current av @total"
}, },
{ {
"label":"Ikke svart på spørsmål-tekst", "label": "Ikke svart på spørsmål-tekst",
"default":"Ikke svart" "default": "Ikke svart"
}, },
{ {
"label":"Svart på spørsmål-tekst", "label": "Svart på spørsmål-tekst",
"default":"Svar avgitt" "default": "Svar avgitt"
}, },
{ {
"label":"Aktivt spørsmål-tekst", "label": "Aktivt spørsmål-tekst",
"default":"Aktivt spørsmål" "default": "Aktivt spørsmål"
} }
] ]
}, },
{ {
"label":"Slå av tilbakenavigering", "label": "Slå av tilbakenavigering",
"description":"Slå på for å nekte å gå tilbake i Question Set" "description": "Slå på for å nekte å gå tilbake i Question Set"
}, },
{ {
"label":"Stokk spørsmålene", "label": "Stokk spørsmålene",
"description":"Slå på for å vise alternativene i tilfeldig rekkefølge." "description": "Slå på for å vise alternativene i tilfeldig rekkefølge."
}, },
{ {
"label":"Antall spørsmål som skal vises:", "label": "Antall spørsmål som skal vises:",
"description":"Lag et tilfeldig sett med spørsmål." "description": "Lag et tilfeldig sett med spørsmål."
}, },
{ {
"label":"Spørsmålssett avslutning", "label": "Spørsmålssett avslutning",
"fields":[ "fields": [
{ {
"label":"Vis resultater" "label": "Vis resultater"
}, },
{ {
"label":"Vis resultatknapp" "label": "Vis resultatknapp"
}, },
{ {
"label":"Melding når resultater ikke vises", "label": "Display retry button"
"description":"Teksten vises på avslutnings-siden når resultater ikke vises",
"default":"Ferdig"
}, },
{ {
"label":"Overskrift over tilbakemeldinger", "label": "Melding når resultater ikke vises",
"default":"Resultat:", "description": "Teksten vises på avslutnings-siden når resultater ikke vises",
"description":"Denne overskriften vises over tilbakemeldingene på slutten av spørsmålssettet." "default": "Ferdig"
}, },
{ {
"label":"Samlet tilbakemelding", "label": "Overskrift over tilbakemeldinger",
"fields":[ "default": "Resultat:",
"description": "Denne overskriften vises over tilbakemeldingene på slutten av spørsmålssettet."
},
{
"label": "Samlet tilbakemelding",
"fields": [
{ {
"widgets":[ "widgets": [
{
"label": "Default"
}
], ],
"label":"Spesifiser en egendefinert tilbakemelding for et poengintervall", "label": "Spesifiser en egendefinert tilbakemelding for et poengintervall",
"description":"Eksempel: 0-20% dårlig poengsum, 21-91% gjennomsnittlig poengsum, 91-100% God poengsum!", "description": "Eksempel: 0-20% dårlig poengsum, 21-91% gjennomsnittlig poengsum, 91-100% God poengsum!",
"entity":"intervall", "entity": "intervall",
"field":{ "field": {
"fields":[ "fields": [
{ {
"label":"Poengintervall" "label": "Poengintervall"
}, },
{},
{ {
"label": "Tilbakemelding for spesifisert poengintervall",
}, "placeholder": "Fyll inn tilbakemelding"
{
"label":"Tilbakemelding for spesifisert poengintervall",
"placeholder":"Fyll inn tilbakemelding"
} }
] ]
} }
@ -168,84 +170,88 @@
] ]
}, },
{ {
"label":"Gammel tilbakemelding", "label": "Gammel tilbakemelding",
"fields":[ "fields": [
{ {
"label":"Tittel ved bestått", "label": "Tittel ved bestått",
"description":"Denne tittelen vises dersom brukeren har bestått spørsmålssettet." "description": "Denne tittelen vises dersom brukeren har bestått spørsmålssettet."
}, },
{ {
"label":"Kommentar ved bestått", "label": "Kommentar ved bestått",
"description":"Denne kommentaren vises dersom brukeren har bestått spørsmålssettet." "description": "Denne kommentaren vises dersom brukeren har bestått spørsmålssettet."
}, },
{ {
"label":"Tittel ved ikke bestått", "label": "Tittel ved ikke bestått",
"description":"Denne tittelen vises dersom brukeren ikke har bestått spørsmålssettet." "description": "Denne tittelen vises dersom brukeren ikke har bestått spørsmålssettet."
}, },
{ {
"label":"Kommentar ved ikke bestått", "label": "Kommentar ved ikke bestått",
"description":"Denne kommentaren vises dersom brukeren ikke har bestått spørsmålssettet." "description": "Denne kommentaren vises dersom brukeren ikke har bestått spørsmålssettet."
} }
] ]
}, },
{ {
"label":"Tekst til \"Fasit\" knapp", "label": "Tekst til \"Fasit\" knapp",
"default":"Vis svar", "default": "Vis svar",
"description":"Tekst for \"Fasit\" knapp." "description": "Tekst for \"Fasit\" knapp."
}, },
{ {
"label":"Tekst til \"Prøv igjen\" knapp", "label": "Tekst til \"Prøv igjen\" knapp",
"default":"Prøv igjen", "default": "Prøv igjen",
"description":"Tekst til \"Prøv igjen\"-knappen." "description": "Tekst til \"Prøv igjen\"-knappen."
}, },
{ {
"label":"Avslutt knappetekst", "label": "Avslutt knappetekst",
"default":"Bekreft" "default": "Bekreft"
}, },
{ {
"label":"Vis video før resultatene" "label": "Vis video før resultatene"
}, },
{ {
"label":"Tillat å hoppe over video" "label": "Tillat å hoppe over video"
}, },
{ {
"label":"Tekst til \"Hopp over video\" knapp", "label": "Tekst til \"Hopp over video\" knapp",
"default":"Hopp over" "default": "Hopp over"
}, },
{ {
"label":"Video ved bestått", "label": "Video ved bestått",
"description":"Denne videoen vil bli vist dersom brukeren består spørsmålssettet." "description": "Denne videoen vil bli vist dersom brukeren består spørsmålssettet."
}, },
{ {
"label":"Video ved ikke bestått", "label": "Video ved ikke bestått",
"description":"Denne videoen vil bli vist dersom brukeren ikke består spørsmålssettet." "description": "Denne videoen vil bli vist dersom brukeren ikke består spørsmålssettet."
} }
] ]
}, },
{ {
"label":"Innstillinger for «Fasit»- og «Prøv igjen»-knapp", "label": "Innstillinger for «Fasit»- og «Prøv igjen»-knapp",
"fields":[ "fields": [
{ {
"label":"Overstyr «Vis svar»-knapp", "label": "Vis \"Sjekk\"-knapper",
"description":"Dette valget avgjør om «Vis svar»-knappen vil vises for alle spørsmål, skjules for alle eller konfigureres individuelt for hvert spørsmål.", "description": "Dette valget avgjør om «Sjekk»-knappen vil vises for alle spørsmål."
"options":[ },
{
"label": "Overstyr «Vis svar»-knapp",
"description": "Dette valget avgjør om «Vis svar»-knappen vil vises for alle spørsmål, skjules for alle eller konfigureres individuelt for hvert spørsmål.",
"options": [
{ {
"label":"Aktivert" "label": "Aktivert"
}, },
{ {
"label":"Deaktivert" "label": "Deaktivert"
} }
] ]
}, },
{ {
"label":"Overstyr «Prøv igjen»-knapp", "label": "Overstyr «Prøv igjen»-knapp",
"description":"Dette valget avgjør om «Prøv igjen»-knappen vil vises for alle spørsmål, skjules for alle eller konfigureres individuelt for hvert spørsmål.", "description": "Dette valget avgjør om «Prøv igjen»-knappen vil vises for alle spørsmål, skjules for alle eller konfigureres individuelt for hvert spørsmål.",
"options":[ "options": [
{ {
"label":"Aktivert" "label": "Aktivert"
}, },
{ {
"label":"Deaktivert" "label": "Deaktivert"
} }
] ]
} }

View File

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

View File

@ -1,166 +1,168 @@
{ {
"semantics":[ "semantics": [
{ {
"label":"Introduksjon", "label": "Introduksjon",
"fields":[ "fields": [
{ {
"label":"Vis introduksjon" "label": "Vis introduksjon"
}, },
{ {
"label":"Tittel", "label": "Tittel",
"description":"Tittel for intoduksjonssiden." "description": "Tittel for intoduksjonssiden."
}, },
{ {
"label":"Introduksjonstekst", "label": "Introduksjonstekst",
"description":"Denne teksten vises før spørsmålssettet starter." "description": "Denne teksten vises før spørsmålssettet starter."
}, },
{ {
"label":"Tekst til \"Start\" knappen", "label": "Tekst til \"Start\" knappen",
"default":"Start" "default": "Start"
}, },
{ {
"label":"Bakgrunnsbilde", "label": "Bakgrunnsbilde",
"description":"Bakgrunnsbilde for introduksjonssiden" "description": "Bakgrunnsbilde for introduksjonssiden"
} }
] ]
}, },
{ {
"label":"Bakgrunnsbilde", "label": "Bakgrunnsbilde",
"description":"Bakgrunnsbilde for spørsmålssettet(ikke obligatorisk)." "description": "Bakgrunnsbilde for spørsmålssettet(ikke obligatorisk)."
}, },
{ {
"label":"Fremdriftsindikator", "label": "Fremdriftsindikator",
"description":"Velg om fremdriften skal angis som prikker(få spørsmål) eller som tekst(mange spørsmål).", "description": "Velg om fremdriften skal angis som prikker(få spørsmål) eller som tekst(mange spørsmål).",
"options":[ "options": [
{ {
"label":"Tekstlig" "label": "Tekstlig"
}, },
{ {
"label":"Angi fremdrift med prikker" "label": "Angi fremdrift med prikker"
} }
], ]
"default":"dots"
}, },
{ {
"label":"Krav for å bestå", "label": "Krav for å bestå",
"description":"Antall prosent riktig som kreves for å bestå spørsmålssettet." "description": "Antall prosent riktig som kreves for å bestå spørsmålssettet."
}, },
{ {
"label":"Spørsmål", "label": "Spørsmål",
"widgets":[ "widgets": [
{ {
"label":"Standard" "label": "Standard"
}, },
{ {
"label":"Tekstlig" "label": "Tekstlig"
} }
], ],
"entity":"spørsmål", "entity": "spørsmål",
"field":{ "field": {
"label":"Spørsmålstype", "label": "Spørsmålstype",
"description":"Velg spørsmålstype for dette spørsmålet" "description": "Velg spørsmålstype for dette spørsmålet"
} }
}, },
{ {
"label":"Ledetekster", "label": "Ledetekster",
"fields":[ "fields": [
{ {
"label":"Tilbakeknapp", "label": "Tilbakeknapp",
"default":"Førre" "default": "Førre"
}, },
{ {
"label":"Neste-knappen", "label": "Neste-knappen",
"default":"Neste" "default": "Neste"
}, },
{ {
"label":"Avslutt-knappen", "label": "Avslutt-knappen",
"default":"Bekreft" "default": "Bekreft"
}, },
{ {
"label":"Fremgangstekst", "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":"Deloppgåve @current av @total" "default": "Deloppgåve @current av @total"
}, },
{ {
"label":"Merkelapp ved 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.", "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" "default": "Spørsmål %d av %total"
}, },
{ {
"label":"Opphavsrett spørsmål-etikett", "label": "Opphavsrett spørsmål-etikett",
"default":"Spørsmål" "default": "Spørsmål"
}, },
{ {
"label":"Fremdriftstekst for hjelpemiddelteknologi", "label": "Fremdriftstekst for hjelpemiddelteknologi",
"description":"Kan bruke @current og @total variabler", "description": "Kan bruke @current og @total variabler",
"default":"Deloppgave @current av @total" "default": "Deloppgave @current av @total"
}, },
{ {
"label":"Ikke svart på spørsmål-tekst", "label": "Ikke svart på spørsmål-tekst",
"default":"Ikke svart" "default": "Ikke svart"
}, },
{ {
"label":"Svart på spørsmål-tekst", "label": "Svart på spørsmål-tekst",
"default":"Svar avgitt" "default": "Svar avgitt"
}, },
{ {
"label":"Aktivt spørsmål-tekst", "label": "Aktivt spørsmål-tekst",
"default":"Aktivt spørsmål" "default": "Aktivt spørsmål"
} }
] ]
}, },
{ {
"label":"Slå av tilbakenavigering", "label": "Slå av tilbakenavigering",
"description":"Slå på for å nekte å gå tilbake i Question Set" "description": "Slå på for å nekte å gå tilbake i Question Set"
}, },
{ {
"label":"Randomize questions", "label": "Randomize questions",
"description":"Slå på for å vise de mulige svara i tilfeldig rekkefølge." "description": "Slå på for å vise de mulige svara i tilfeldig rekkefølge."
}, },
{ {
"label":"Number of questions to be shown:", "label": "Number of questions to be shown:",
"description":"Create a randomized batch of questions from the total." "description": "Create a randomized batch of questions from the total."
}, },
{ {
"label":"Spørsmålssett avslutning", "label": "Spørsmålssett avslutning",
"fields":[ "fields": [
{ {
"label":"Vis resultat" "label": "Vis resultat"
}, },
{ {
"label":"Vis resultatknapp" "label": "Vis resultatknapp"
}, },
{ {
"label":"Melding når resultater ikke vises", "label": "Display retry button"
"description":"Teksten vises på avslutnings-siden når resultater ikke vises",
"default":"Ferdig"
}, },
{ {
"label":"Overskrift over tilbakemeldingar", "label": "Melding når resultater ikke vises",
"default":"Resultat:", "description": "Teksten vises på avslutnings-siden når resultater ikke vises",
"description":"Denne overskriften vises over tilbakemeldingane på slutten av spørsmålssettet." "default": "Ferdig"
}, },
{ {
"label":"Bakgrunnsopasitet på flyttbare elementer", "label": "Overskrift over tilbakemeldingar",
"fields":[ "default": "Resultat:",
"description": "Denne overskriften vises over tilbakemeldingane på slutten av spørsmålssettet."
},
{
"label": "Bakgrunnsopasitet på flyttbare elementer",
"fields": [
{ {
"widgets":[ "widgets": [
{
"label": "Default"
}
], ],
"label":"Define custom feedback for any score range", "label": "Define custom feedback for any score range",
"description":"Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!", "description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
"entity":"range", "entity": "range",
"field":{ "field": {
"fields":[ "fields": [
{ {
"label":"Score Range" "label": "Score Range"
}, },
{},
{ {
"label": "Feedback for defined score range",
}, "placeholder": "Fill in the feedback"
{
"label":"Feedback for defined score range",
"placeholder":"Fill in the feedback"
} }
] ]
} }
@ -168,84 +170,88 @@
] ]
}, },
{ {
"label":"Old Feedback", "label": "Old Feedback",
"fields":[ "fields": [
{ {
"label":"Tittel ved bestått", "label": "Tittel ved bestått",
"description":"Denne tittelen vises dersom brukeren har bestått spørsmålssettet." "description": "Denne tittelen vises dersom brukeren har bestått spørsmålssettet."
}, },
{ {
"label":"Kommentar ved bestått", "label": "Kommentar ved bestått",
"description":"Denne kommentaren vises dersom brukaren har bestått spørsmålssettet." "description": "Denne kommentaren vises dersom brukaren har bestått spørsmålssettet."
}, },
{ {
"label":"Tittel ved ikkje bestått", "label": "Tittel ved ikkje bestått",
"description":"Denne tittelen visast dersom brukaren ikkje har bestått spørsmålssettet." "description": "Denne tittelen visast dersom brukaren ikkje har bestått spørsmålssettet."
}, },
{ {
"label":"Kommentar ved ikkje bestått", "label": "Kommentar ved ikkje bestått",
"description":"Denne kommentaren vises dersom brukaren ikkje har bestått spørsmålssettet." "description": "Denne kommentaren vises dersom brukaren ikkje har bestått spørsmålssettet."
} }
] ]
}, },
{ {
"label":"Tekst til \"Fasit\" knapp", "label": "Tekst til \"Fasit\" knapp",
"default":"Fasit", "default": "Fasit",
"description":"Text for the solution button." "description": "Text for the solution button."
}, },
{ {
"label":"Tekst til \"Prøv igjen\" knapp", "label": "Tekst til \"Prøv igjen\" knapp",
"default":"Prøv igjen", "default": "Prøv igjen",
"description":"Text for the retry button." "description": "Text for the retry button."
}, },
{ {
"label":"Tekst til \"Avslutt\" knapp", "label": "Tekst til \"Avslutt\" knapp",
"default":"Bekreft" "default": "Bekreft"
}, },
{ {
"label":"Vis video før resultata" "label": "Vis video før resultata"
}, },
{ {
"label":"Tillat å hoppe over video" "label": "Tillat å hoppe over video"
}, },
{ {
"label":"Tekst til \"Hopp over video\" knapp", "label": "Tekst til \"Hopp over video\" knapp",
"default":"Hopp over" "default": "Hopp over"
}, },
{ {
"label":"Video ved bestått", "label": "Video ved bestått",
"description":"Denne videoen vil bli vist dersom brukaren består spørsmålssettet." "description": "Denne videoen vil bli vist dersom brukaren består spørsmålssettet."
}, },
{ {
"label":"Video ved ikke bestått", "label": "Video ved ikke bestått",
"description":"Denne videoen vil bli vist dersom brukaren ikkje består spørsmålssettet." "description": "Denne videoen vil bli vist dersom brukaren ikkje består spørsmålssettet."
} }
] ]
}, },
{ {
"label":"Innstillinger for «Fasit»- og «Prøv igjen»-knapp", "label": "Innstillinger for «Fasit»- og «Prøv igjen»-knapp",
"fields":[ "fields": [
{ {
"label":"Overstyr «Vis svar»-knapp", "label": "Vis \"Sjekk\"-knappar",
"description":"Dette valget avgjør om «Vis svar»-knappen vil vises for alle spørsmål, skjules for alle eller konfigureres individuelt for hvert spørsmål.", "description": "Dette valget avgjer om «Sjekk»-knappen vil visast for alle spørsmål."
"options":[ },
{
"label": "Overstyr «Vis svar»-knapp",
"description": "Dette valget avgjør om «Vis svar»-knappen vil vises for alle spørsmål, skjules for alle eller konfigureres individuelt for hvert spørsmål.",
"options": [
{ {
"label":"Aktivert" "label": "Aktivert"
}, },
{ {
"label":"Deaktivert" "label": "Deaktivert"
} }
] ]
}, },
{ {
"label":"Overstyr «Prøv igjen»-knapp", "label": "Overstyr «Prøv igjen»-knapp",
"description":"Dette valget avgjør om «Prøv igjen»-knappen vil vises for alle spørsmål, skjules for alle eller konfigureres individuelt for hvert spørsmål.", "description": "Dette valget avgjør om «Prøv igjen»-knappen vil vises for alle spørsmål, skjules for alle eller konfigureres individuelt for hvert spørsmål.",
"options":[ "options": [
{ {
"label":"Aktivert" "label": "Aktivert"
}, },
{ {
"label":"Deaktivert" "label": "Deaktivert"
} }
] ]
} }

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,166 +1,168 @@
{ {
"semantics":[ "semantics": [
{ {
"label":"Quiz introduction", "label": "Quiz introduction",
"fields":[ "fields": [
{ {
"label":"Display introduction" "label": "Display introduction"
}, },
{ {
"label":"Title", "label": "Title",
"description":"This title will be displayed above the introduction text." "description": "This title will be displayed above the introduction text."
}, },
{ {
"label":"Giriş metni", "label": "Giriş metni",
"description":"This text will be displayed before the quiz starts." "description": "This text will be displayed before the quiz starts."
}, },
{ {
"label":"Start button text", "label": "Start button text",
"default":"Start Quiz" "default": "Start Quiz"
}, },
{ {
"label":"Background image", "label": "Background image",
"description":"An optional background image for the introduction." "description": "An optional background image for the introduction."
} }
] ]
}, },
{ {
"label":"Background image", "label": "Background image",
"description":"An optional background image for the Question set." "description": "An optional background image for the Question set."
}, },
{ {
"label":"Progress indicator", "label": "Progress indicator",
"description":"Question set progress indicator style.", "description": "Question set progress indicator style.",
"options":[ "options": [
{ {
"label":"Metin" "label": "Metin"
}, },
{ {
"label":"Dots" "label": "Dots"
} }
], ]
"default":"dots"
}, },
{ {
"label":"Geçiş yüzdesi", "label": "Geçiş yüzdesi",
"description":"Quizi geçmek için gerekli toplam puan yüzdesi." "description": "Quizi geçmek için gerekli toplam puan yüzdesi."
}, },
{ {
"label":"Questions", "label": "Questions",
"widgets":[ "widgets": [
{ {
"label":"Varsayılan" "label": "Varsayılan"
}, },
{ {
"label":"Metin" "label": "Metin"
} }
], ],
"entity":"question", "entity": "question",
"field":{ "field": {
"label":"Question type", "label": "Question type",
"description":"Library for this question." "description": "Library for this question."
} }
}, },
{ {
"label":"Interface texts in quiz", "label": "Interface texts in quiz",
"fields":[ "fields": [
{ {
"label":"Back button", "label": "Back button",
"default":"Previous question" "default": "Previous question"
}, },
{ {
"label":"Next button", "label": "Next button",
"default":"Next question" "default": "Next question"
}, },
{ {
"label":"Finish button", "label": "Finish button",
"default":"Bitir" "default": "Bitir"
}, },
{ {
"label":"Progress text", "label": "Progress text",
"description":"Text used if textual progress is selected.", "description": "Text used if textual progress is selected.",
"default":"Question: @current of @total questions" "default": "Question: @current of @total questions"
}, },
{ {
"label":"Label for jumping to a certain question", "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.", "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" "default": "Question %d of %total"
}, },
{ {
"label":"Copyright dialog question label", "label": "Copyright dialog question label",
"default":"Soru" "default": "Soru"
}, },
{ {
"label":"Readspeaker progress", "label": "Readspeaker progress",
"description":"May use @current and @total question variables", "description": "May use @current and @total question variables",
"default":"Question @current of @total" "default": "Question @current of @total"
}, },
{ {
"label":"Unanswered question text", "label": "Unanswered question text",
"default":"Unanswered" "default": "Unanswered"
}, },
{ {
"label":"Answered question text", "label": "Answered question text",
"default":"Answered" "default": "Answered"
}, },
{ {
"label":"Current question text", "label": "Current question text",
"default":"Current question" "default": "Current question"
} }
] ]
}, },
{ {
"label":"Disable backwards navigation", "label": "Disable backwards navigation",
"description":"This option will only allow you to move forward in Question Set" "description": "This option will only allow you to move forward in Question Set"
}, },
{ {
"label":"Randomize questions", "label": "Randomize questions",
"description":"Soruları sırasını ekranda rasgele gelmesi için etkinleştirin." "description": "Soruları sırasını ekranda rasgele gelmesi için etkinleştirin."
}, },
{ {
"label":"Number of questions to be shown:", "label": "Number of questions to be shown:",
"description":"Create a randomized batch of questions from the total." "description": "Create a randomized batch of questions from the total."
}, },
{ {
"label":"Quiz finished", "label": "Quiz finished",
"fields":[ "fields": [
{ {
"label":"Display results" "label": "Display results"
}, },
{ {
"label":"Display solution button" "label": "Display solution button"
}, },
{ {
"label":"No results message", "label": "Display retry button"
"description":"Text displayed on end page when \"Display results\" is disabled",
"default":"Finished"
}, },
{ {
"label":"Feedback heading", "label": "No results message",
"default":"Your result:", "description": "Text displayed on end page when \"Display results\" is disabled",
"description":"This heading will be displayed at the end of the quiz when the user has answered all questions." "default": "Finished"
}, },
{ {
"label":"Overall Feedback", "label": "Feedback heading",
"fields":[ "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":[ "widgets": [
{
"label": "Default"
}
], ],
"label":"Define custom feedback for any score range", "label": "Define custom feedback for any score range",
"description":"Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!", "description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
"entity":"range", "entity": "range",
"field":{ "field": {
"fields":[ "fields": [
{ {
"label":"Score Range" "label": "Score Range"
}, },
{},
{ {
"label": "Feedback for defined score range",
}, "placeholder": "Fill in the feedback"
{
"label":"Feedback for defined score range",
"placeholder":"Fill in the feedback"
} }
] ]
} }
@ -168,84 +170,88 @@
] ]
}, },
{ {
"label":"Old Feedback", "label": "Old Feedback",
"fields":[ "fields": [
{ {
"label":"Quiz passed greeting", "label": "Quiz passed greeting",
"description":"This text will be displayed above the score if the user has successfully passed the quiz." "description": "This text will be displayed above the score if the user has successfully passed the quiz."
}, },
{ {
"label":"Passed comment", "label": "Passed comment",
"description":"This comment will be displayed after the score if the user has successfully passed the quiz." "description": "This comment will be displayed after the score if the user has successfully passed the quiz."
}, },
{ {
"label":"Quiz failed title", "label": "Quiz failed title",
"description":"This text will be displayed above the score if the user has failed the quiz." "description": "This text will be displayed above the score if the user has failed the quiz."
}, },
{ {
"label":"Failed comment", "label": "Failed comment",
"description":"This comment will be displayed after the score if the user has failed the quiz." "description": "This comment will be displayed after the score if the user has failed the quiz."
} }
] ]
}, },
{ {
"label":"Solution button label", "label": "Solution button label",
"default":"Çözümü göster", "default": "Çözümü göster",
"description":"Text for the solution button." "description": "Text for the solution button."
}, },
{ {
"label":"Yeniden dene buton etiketi", "label": "Yeniden dene buton etiketi",
"default":"Yeniden dene", "default": "Yeniden dene",
"description":"Text for the retry button." "description": "Text for the retry button."
}, },
{ {
"label":"Finish button text", "label": "Finish button text",
"default":"Bitir" "default": "Bitir"
}, },
{ {
"label":"Display video before quiz results" "label": "Display video before quiz results"
}, },
{ {
"label":"Enable skip video button" "label": "Enable skip video button"
}, },
{ {
"label":"Skip video button label", "label": "Skip video button label",
"default":"Skip video" "default": "Skip video"
}, },
{ {
"label":"Passed video", "label": "Passed video",
"description":"This video will be played if the user successfully passed the quiz." "description": "This video will be played if the user successfully passed the quiz."
}, },
{ {
"label":"Fail video", "label": "Fail video",
"description":"This video will be played if the user failes the quiz." "description": "This video will be played if the user failes the quiz."
} }
] ]
}, },
{ {
"label":"Settings for \"Show solution\" and \"Retry\" buttons", "label": "Settings for \"Show solution\" and \"Retry\" buttons",
"fields":[ "fields": [
{ {
"label":"Override \"Show Solution\" button", "label": "Show \"Check\" buttons",
"description":"This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.", "description": "This option determines if the \"Check\" button will be shown for all questions."
"options":[ },
{
"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": "Enabled"
}, },
{ {
"label":"Disabled" "label": "Disabled"
} }
] ]
}, },
{ {
"label":"Override \"Retry\" button", "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.", "description": "This option determines if the \"Retry\" button will be shown for all questions, disabled for all or configured for each question individually.",
"options":[ "options": [
{ {
"label":"Enabled" "label": "Enabled"
}, },
{ {
"label":"Disabled" "label": "Disabled"
} }
] ]
} }

View File

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

261
language/zh-tw.json Normal file
View File

@ -0,0 +1,261 @@
{
"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": "進度",
"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": "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": "在測驗結果前撥放影片"
},
{
"label": "啟用略過影片撥放功能鈕"
},
{
"label": "略過影片撥放功能鈕名稱",
"default": "略過影片"
},
{
"label": "通過測驗影片",
"description": "當使用者通過測驗後所播放的影片."
},
{
"label": "測驗失敗影片",
"description": "當使用者測驗失敗時所播放的影片."
}
]
},
{
"label": "設定"查看解法"和"重試"功能鈕",
"fields": [
{
"label": "顯示”檢查”功能鈕",
"description": "設定此選項後將使問題集中皆顯示”檢查”功能鈕."
},
{
"label": "“查看解法”功能鈕",
"description": "設定此選項後將使問題集中皆顯示”查看解法”功能鈕.",
"options": [
{
"label": "啟用"
},
{
"label": "禁用"
}
]
},
{
"label": "”重試”功能鈕",
"description": "設定此選項後將使問題集中皆顯示”重試”功能鈕.",
"options": [
{
"label": "啟用"
},
{
"label": "禁用"
}
]
}
]
}
]
}

261
language/zh.json Normal file
View File

@ -0,0 +1,261 @@
{
"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": "進度顯示文字",
"description": "若進度指示選擇文字式時顯示的文字。",
"default": "第 @current 題,共 @total 題。"
},
{
"label": "跳至某題顯示文字",
"description": " %d 表示題號,%total 表示總題數",
"default": "%d / %total"
},
{
"label": "題目版權視窗顯示標題",
"default": "題目"
},
{
"label": "報讀器的進度文本",
"description": "用於報讀器上的文本,非顯示用",
"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%-59% 請加油、60%-79% 再努力、80%-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": "在測驗結果出現前顯示影片"
},
{
"label": "顯示略過影片的按鈕"
},
{
"label": "略過影片按鈕顯示影片",
"default": "略過影片"
},
{
"label": "測驗成功影片",
"description": "用戶在測驗通過時要播放的影片。"
},
{
"label": "測驗失敗影片",
"description": "用戶在測驗沒有通過時要播放的影片"
}
]
},
{
"label": "核對答案、顯示正解、再試一次的設定",
"fields": [
{
"label": "覆寫「核對答案」按鈕",
"description": "啟用後,則可以為所有問題統一一次顯示核對答案的按鈕。"
},
{
"label": "覆寫「顯示正解」按鈕",
"description": "如果所有問題都設定了「顯示正解」按鈕,會個別單獨顯示這些按鈕。啟用後,則可以統一一次顯示。",
"options": [
{
"label": "啟用"
},
{
"label": "停用"
}
]
},
{
"label": "覆寫「再試一次」按鈕",
"description": "如果所有問題都設定了「再試一次」按鈕,會個別單獨顯示這些按鈕。啟用後,則可以統一一次顯示。",
"options": [
{
"label": "啟用"
},
{
"label": "停用"
}
]
}
]
}
]
}

View File

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

42
presave.js Normal file
View File

@ -0,0 +1,42 @@
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

@ -121,12 +121,12 @@
"importance": "high", "importance": "high",
"description": "Library for this question.", "description": "Library for this question.",
"options": [ "options": [
"H5P.MultiChoice 1.10", "H5P.MultiChoice 1.13",
"H5P.DragQuestion 1.11", "H5P.DragQuestion 1.13",
"H5P.Blanks 1.8", "H5P.Blanks 1.11",
"H5P.MarkTheWords 1.7", "H5P.MarkTheWords 1.9",
"H5P.DragText 1.6", "H5P.DragText 1.8",
"H5P.TrueFalse 1.2" "H5P.TrueFalse 1.5"
] ]
} }
}, },
@ -261,6 +261,12 @@
"label": "Display solution button", "label": "Display solution button",
"default": true "default": true
}, },
{
"name": "showRetryButton",
"type": "boolean",
"label": "Display retry button",
"default": true
},
{ {
"name": "noResultMessage", "name": "noResultMessage",
"type": "text", "type": "text",
@ -470,10 +476,19 @@
{ {
"name": "override", "name": "override",
"type": "group", "type": "group",
"label": "Settings for \"Show solution\" and \"Retry\" buttons", "label": "Settings for \"Check\", \"Show solution\" and \"Retry\"",
"importance": "low", "importance": "low",
"optional": true, "optional": true,
"fields": [ "fields": [
{
"name": "checkButton",
"type": "boolean",
"label": "Show \"Check\" buttons",
"importance": "low",
"description": "This option determines if the \"Check\" button will be shown for all questions.",
"optional": true,
"default": true
},
{ {
"name": "showSolutionButton", "name": "showSolutionButton",
"type": "select", "type": "select",
@ -481,6 +496,15 @@
"importance": "low", "importance": "low",
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.", "description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
"optional": true, "optional": true,
"widget": "showWhen",
"showWhen": {
"rules": [
{
"field": "checkButton",
"equals": true
}
]
},
"options": [ "options": [
{ {
"value": "on", "value": "on",
@ -499,6 +523,15 @@
"importance": "low", "importance": "low",
"description": "This option determines if the \"Retry\" button will be shown for all questions, disabled for all or configured for each question individually.", "description": "This option determines if the \"Retry\" button will be shown for all questions, disabled for all or configured for each question individually.",
"optional": true, "optional": true,
"widget": "showWhen",
"showWhen": {
"rules": [
{
"field": "checkButton",
"equals": true
}
]
},
"options": [ "options": [
{ {
"value": "on", "value": "on",