diff --git a/crowdin.yml b/crowdin.yml
new file mode 100644
index 0000000..48edea1
--- /dev/null
+++ b/crowdin.yml
@@ -0,0 +1,3 @@
+files:
+ - source: /language/.en.json
+ translation: /language/%two_letters_code%.json
diff --git a/css/questionset.css b/css/questionset.css
index 22e65d2..a9eb1fc 100644
--- a/css/questionset.css
+++ b/css/questionset.css
@@ -1,15 +1,3 @@
-/* IcoMoon font licensed under the GNU General Public License: http://www.gnu.org/licenses/gpl.html */
-@font-face {
- font-family: 'icomoon-questionset';
- src:url('../fonts/icomoon.eot');
- src:url('../fonts/icomoon.eot?#iefix') format('embedded-opentype'),
- url('../fonts/icomoon.woff') format('woff'),
- url('../fonts/icomoon.ttf') format('truetype'),
- url('../fonts/icomoon.svg#icomoon') format('svg');
- font-weight: normal;
- font-style: normal;
-}
-
.questionset-results h2 {
font-size: 1.2em;
font-weight: bold;
@@ -237,30 +225,27 @@
font-size: 1.25em;
}
-.questionset-results .feedback-section .feedback-text {
- font-weight: normal;
- color: #777;
-}
-
.questionset-results .buttons {
- margin-bottom: 1.5em;
+ margin: 2em 0 1em 0;
}
.questionset-results .result-header,
-.questionset-results .result-text {
+.questionset-results .result-text,
+.questionset-results .feedback-section .feedback-text {
color: #1a73d9;
font-weight: bold;
}
.questionset-results .result-header {
font-size: 2em;
- margin-top: 1em;
+ margin: 1em 0.5em 0.5em 0.5em;
}
-.questionset-results .result-text {
+.questionset-results .result-text,
+.questionset-results .feedback-section .feedback-text {
font-size: 1.25em;
line-height: 1.25em;
- margin: 1em 1em 2.25em;
+ margin: 1em;
}
/* No margin for questions when no frame */
diff --git a/fonts/icomoon.eot b/fonts/icomoon.eot
deleted file mode 100644
index d8cdc1a..0000000
Binary files a/fonts/icomoon.eot and /dev/null differ
diff --git a/fonts/icomoon.svg b/fonts/icomoon.svg
deleted file mode 100644
index 1a48364..0000000
--- a/fonts/icomoon.svg
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/fonts/icomoon.ttf b/fonts/icomoon.ttf
deleted file mode 100644
index 9649f7e..0000000
Binary files a/fonts/icomoon.ttf and /dev/null differ
diff --git a/fonts/icomoon.woff b/fonts/icomoon.woff
deleted file mode 100644
index 5d29f5d..0000000
Binary files a/fonts/icomoon.woff and /dev/null differ
diff --git a/js/questionset.js b/js/questionset.js
index 0869070..b7e885a 100644
--- a/js/questionset.js
+++ b/js/questionset.js
@@ -20,6 +20,52 @@ H5P.QuestionSet = function (options, contentId, contentData) {
var self = this;
this.contentId = contentId;
+ var defaults = {
+ initialQuestion: 0,
+ progressType: 'dots',
+ passPercentage: 50,
+ questions: [],
+ introPage: {
+ showIntroPage: false,
+ title: '',
+ introduction: '',
+ startButtonText: 'Start'
+ },
+ texts: {
+ prevButton: 'Previous question',
+ nextButton: 'Next question',
+ finishButton: 'Finish',
+ textualProgress: 'Question: @current of @total questions',
+ jumpToQuestion: 'Question %d of %total',
+ questionLabel: 'Question',
+ readSpeakerProgress: 'Question @current of @total',
+ unansweredText: 'Unanswered',
+ answeredText: 'Answered',
+ currentQuestionText: 'Current question'
+ },
+ endGame: {
+ showResultPage: true,
+ noResultMessage: 'Finished',
+ message: 'Your result:',
+ oldFeedback: {
+ successGreeting: '',
+ successComment: '',
+ failGreeting: '',
+ failComment: ''
+ },
+ overallFeedback: [],
+ finishButtonText: 'Finish',
+ solutionButtonText: 'Show solution',
+ retryButtonText: 'Retry',
+ showAnimations: false,
+ skipButtonText: 'Skip video',
+ showSolutionButton: true
+ },
+ override: {},
+ disableBackwardsNavigation: false
+ };
+ var params = $.extend(true, {}, defaults, options);
+
var texttemplate =
'<% if (introPage.showIntroPage) { %>' +
'
' +
@@ -61,6 +107,10 @@ H5P.QuestionSet = function (options, contentId, contentData) {
'
' +
'';
+ var solutionButtonTemplate = params.endGame.showSolutionButton ?
+ ' ':
+ '';
+
var resulttemplate =
'' +
'
<%= message %>
' +
@@ -76,56 +126,14 @@ H5P.QuestionSet = function (options, contentId, contentData) {
' <% } %>' +
'
' +
' ' +
- ' ' +
+ solutionButtonTemplate +
' ' +
'
' +
'
';
- var defaults = {
- initialQuestion: 0,
- progressType: 'dots',
- passPercentage: 50,
- questions: [],
- introPage: {
- showIntroPage: false,
- title: '',
- introduction: '',
- startButtonText: 'Start'
- },
- texts: {
- prevButton: 'Previous question',
- nextButton: 'Next question',
- finishButton: 'Finish',
- textualProgress: 'Question: @current of @total questions',
- jumpToQuestion: 'Question %d of %total',
- questionLabel: 'Question',
- readSpeakerProgress: 'Question @current of @total',
- unansweredText: 'Unanswered',
- answeredText: 'Answered',
- currentQuestionText: 'Current question'
- },
- endGame: {
- showResultPage: true,
- noResultMessage: 'Finished',
- message: 'Your result:',
- successGreeting: 'Congratulations!',
- successComment: 'You have enough correct answers to pass the test.',
- failGreeting: 'Sorry!',
- failComment: "You don't have enough correct answers to pass this test.",
- scoreString: 'You got @score of @total points',
- finishButtonText: 'Finish',
- solutionButtonText: 'Show solution',
- retryButtonText: 'Retry',
- showAnimations: false,
- skipButtonText: 'Skip video'
- },
- override: {},
- disableBackwardsNavigation: false
- };
-
var template = new EJS({text: texttemplate});
var endTemplate = new EJS({text: resulttemplate});
- var params = $.extend(true, {}, defaults, options);
+
var initialParams = $.extend(true, {}, defaults, options);
var poolOrder; // Order of questions in a pool
@@ -155,27 +163,27 @@ H5P.QuestionSet = function (options, contentId, contentData) {
var randomizeQuestionOrdering = function (questions) {
// Save the original order of the questions in a multidimensional array [[question0,0],[question1,1]...
- var questionOrdering = questions.map(function(questionInstance, index) { return [questionInstance, index] });
+ var questionOrdering = questions.map(function (questionInstance, index) { return [questionInstance, index]; });
// Shuffle the multidimensional array
questionOrdering = H5P.shuffleArray(questionOrdering);
// Retrieve question objects from the first index
- var questions = [];
+ questions = [];
for (var i = 0; i < questionOrdering.length; i++) {
questions[i] = questionOrdering[i][0];
}
// Retrieve the new shuffled order from the second index
var newOrder = [];
- for (var i = 0; i< questionOrdering.length; i++) {
+ for (var j = 0; j < questionOrdering.length; j++) {
// Use a previous order if it exists
- if(contentData.previousState && contentData.previousState.questionOrder) {
- newOrder[i] = questionOrder[questionOrdering[i][1]];
+ if (contentData.previousState && contentData.previousState.questionOrder) {
+ newOrder[j] = questionOrder[questionOrdering[j][1]];
}
else {
- newOrder[i] = questionOrdering[i][1];
+ newOrder[j] = questionOrdering[j][1];
}
}
@@ -190,7 +198,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
if (params.poolSize > 0) {
// If a previous pool exists, recreate it
- if(contentData.previousState && contentData.previousState.poolOrder) {
+ if (contentData.previousState && contentData.previousState.poolOrder) {
poolOrder = contentData.previousState.poolOrder;
// Recreate the pool from the saved data
@@ -244,7 +252,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
* @param {object} questions H5P content types to be created as instances
* @return {array} Array of questions instances
*/
- var createQuestionInstancesFromQuestions = function(questions) {
+ var createQuestionInstancesFromQuestions = function (questions) {
var result = [];
// Create question instances from questions
// Instantiate question instances
@@ -266,9 +274,6 @@ H5P.QuestionSet = function (options, contentId, contentData) {
}
question.params = question.params || {};
- question.params.overrideSettings = question.params.overrideSettings || {};
- question.params.overrideSettings.$confirmationDialogParent = $template.last();
- question.params.overrideSettings.instance = this;
var hasAnswers = contentData.previousState && contentData.previousState.answers;
var questionInstance = H5P.newRunnable(question, contentId, undefined, undefined,
{
@@ -283,7 +288,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
}
return result;
- }
+ };
// Create question instances from questions given by params
questionInstances = createQuestionInstancesFromQuestions(params.questions);
@@ -312,8 +317,8 @@ H5P.QuestionSet = function (options, contentId, contentData) {
var _updateButtons = function () {
// Verify that current question is answered when backward nav is disabled
if (params.disableBackwardsNavigation) {
- if (questionInstances[currentQuestion].getAnswerGiven()
- && questionInstances.length-1 !== currentQuestion) {
+ if (questionInstances[currentQuestion].getAnswerGiven() &&
+ questionInstances.length-1 !== currentQuestion) {
questionInstances[currentQuestion].showButton('next');
}
else {
@@ -354,6 +359,8 @@ H5P.QuestionSet = function (options, contentId, contentData) {
currentQuestion = questionNumber;
+ handleAutoPlay(currentQuestion);
+
// Hide all questions
$('.question-container', $myDom).hide().eq(questionNumber).show();
@@ -404,6 +411,31 @@ H5P.QuestionSet = function (options, contentId, contentData) {
return currentQuestion;
};
+ /**
+ * Handle autoplays, limit to one at a time
+ *
+ * @param {number} currentQuestionIndex
+ */
+ var handleAutoPlay = function (currentQuestionIndex) {
+ for (var i = 0; i < questionInstances.length; i++) {
+ questionInstances[i].pause();
+ }
+
+ var currentQuestion = params.questions[currentQuestionIndex];
+
+ var hasAutoPlay = currentQuestion &&
+ currentQuestion.params.media &&
+ currentQuestion.params.media.params &&
+ currentQuestion.params.media.params.playback &&
+ currentQuestion.params.media.params.playback.autoplay;
+
+ if (hasAutoPlay && typeof questionInstances[currentQuestionIndex].play === 'function') {
+ questionInstances[currentQuestionIndex].play();
+ }
+ };
+
+
+
/**
* Show solutions for subcontent, and hide subcontent buttons.
* Used for contracts with integrated content.
@@ -497,7 +529,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
//Force the last page to be reRendered
rendered = false;
- if(params.poolSize > 0){
+ if (params.poolSize > 0) {
// Make new pool from params.questions
// Randomize and get the results
@@ -550,7 +582,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
var replaceQuestionsInDOM = function (questionInstances) {
// Find all question containers and detach questions from them
- $('.question-container', $myDom).each(function (){
+ $('.question-container', $myDom).each(function () {
$(this).children().detach();
});
@@ -565,19 +597,19 @@ H5P.QuestionSet = function (options, contentId, contentData) {
question.attach($('.question-container:eq(' + i + ')', $myDom));
//Show buttons if necessary
- if(questionInstances[questionInstances.length -1] === question
- && question.hasButton('finish')) {
+ if (questionInstances[questionInstances.length -1] === question &&
+ question.hasButton('finish')) {
question.showButton('finish');
}
- if(questionInstances[questionInstances.length -1] !== question
- && question.hasButton('next')) {
+ if (questionInstances[questionInstances.length -1] !== question &&
+ question.hasButton('next')) {
question.showButton('next');
}
- if(questionInstances[0] !== question
- && question.hasButton('prev')
- && !params.disableBackwardsNavigation) {
+ if (questionInstances[0] !== question &&
+ question.hasButton('prev') &&
+ !params.disableBackwardsNavigation) {
question.showButton('prev');
}
@@ -618,7 +650,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
* @param {number} dotIndex Index of dot
* @param {boolean} isAnswered True if is answered, False if not answered
*/
- var toggleAnsweredDot = function(dotIndex, isAnswered) {
+ var toggleAnsweredDot = function (dotIndex, isAnswered) {
var $el = $('.progress-dot:eq(' + dotIndex +')', $myDom);
// Skip current button
@@ -680,12 +712,9 @@ H5P.QuestionSet = function (options, contentId, contentData) {
// Get total score.
var finals = self.getScore();
var totals = self.getMaxScore();
- var scoreString = params.endGame.scoreString.replace("@score", finals).replace("@total", totals);
+
+ var scoreString = H5P.Question.determineOverallFeedback(params.endGame.overallFeedback, finals / totals).replace('@score', finals).replace('@total', totals);
var success = ((100 * finals / totals) >= params.passPercentage);
- var eventData = {
- score: scoreString,
- passed: success
- };
/**
* Makes our buttons behave like other buttons.
@@ -708,8 +737,8 @@ H5P.QuestionSet = function (options, contentId, contentData) {
var eparams = {
message: params.endGame.showResultPage ? params.endGame.message : params.endGame.noResultMessage,
- comment: params.endGame.showResultPage ? (success ? params.endGame.successGreeting : params.endGame.failGreeting) : undefined,
- resulttext: params.endGame.showResultPage ? (success ? params.endGame.successComment : params.endGame.failComment) : undefined,
+ comment: params.endGame.showResultPage ? (success ? params.endGame.oldFeedback.successGreeting : params.endGame.oldFeedback.failGreeting) : undefined,
+ resulttext: params.endGame.showResultPage ? (success ? params.endGame.oldFeedback.successComment : params.endGame.oldFeedback.failComment) : undefined,
finishButtonText: params.endGame.finishButtonText,
solutionButtonText: params.endGame.solutionButtonText,
retryButtonText: params.endGame.retryButtonText
@@ -720,10 +749,6 @@ H5P.QuestionSet = function (options, contentId, contentData) {
$myDom.append(endTemplate.render(eparams));
if (params.endGame.showResultPage) {
- // Add event handlers to summary buttons
- hookUpButton('.qs-finishbutton', function () {
- self.trigger('h5pQuestionSetFinished', eventData);
- });
hookUpButton('.qs-solutionbutton', function () {
showSolutions();
$myDom.children().hide().filter('.questionset').show();
@@ -749,7 +774,6 @@ H5P.QuestionSet = function (options, contentId, contentData) {
scoreBar = H5P.JoubelUI.createScoreBar(totals);
}
scoreBar.appendTo($('.feedback-scorebar', $myDom));
- scoreBar.setScore(finals);
$('.feedback-text', $myDom).html(scoreString);
// Announce that the question set is complete
@@ -760,6 +784,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
eparams.comment + '.' +
eparams.resulttext)
.show().focus();
+ scoreBar.setScore(finals);
}, 0);
}
else {
@@ -853,7 +878,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
});
// Hide next button if it is the last question
- if(questionInstances[questionInstances.length -1] === question) {
+ if (questionInstances[questionInstances.length -1] === question) {
question.hideButton('next');
}
@@ -1081,10 +1106,10 @@ H5P.QuestionSet = function (options, contentId, contentData) {
return info;
};
- this.getQuestions = function() {
+ this.getQuestions = function () {
return questionInstances;
};
- this.showSolutions = function() {
+ this.showSolutions = function () {
renderSolutions = true;
};
@@ -1142,7 +1167,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
/**
* Add the question itself to the definition part of an xAPIEvent
*/
- var addQuestionToXAPI = function(xAPIEvent) {
+ var addQuestionToXAPI = function (xAPIEvent) {
var definition = xAPIEvent.getVerifiedStatementValue(['object', 'definition']);
$.extend(definition, getxAPIDefinition());
};
@@ -1153,8 +1178,8 @@ H5P.QuestionSet = function (options, contentId, contentData) {
* @param {Object} metaContentType
* @returns {array}
*/
- var getXAPIDataFromChildren = function(metaContentType) {
- return metaContentType.getQuestions().map(function(question) {
+ var getXAPIDataFromChildren = function (metaContentType) {
+ return metaContentType.getQuestions().map(function (question) {
return question.getXAPIData();
});
};
@@ -1165,7 +1190,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
*
* @see contract at {@link https://h5p.org/documentation/developers/contracts#guides-header-6}
*/
- this.getXAPIData = function(){
+ this.getXAPIData = function () {
var xAPIEvent = this.createXAPIEventTemplate('answered');
addQuestionToXAPI(xAPIEvent);
xAPIEvent.setScoredResult(this.getScore(),
@@ -1177,7 +1202,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
return {
statement: xAPIEvent.data.statement,
children: getXAPIDataFromChildren(this)
- }
+ };
};
};
diff --git a/language/.en.json b/language/.en.json
new file mode 100644
index 0000000..5dbdf69
--- /dev/null
+++ b/language/.en.json
@@ -0,0 +1,251 @@
+{
+ "semantics": [
+ {
+ "label": "Quiz introduction",
+ "fields": [
+ {
+ "label": "Display introduction"
+ },
+ {
+ "label": "Title",
+ "description": "This title will be displayed above the introduction text."
+ },
+ {
+ "label": "Introduction text",
+ "description": "This text will be displayed before the quiz starts."
+ },
+ {
+ "label": "Start button text",
+ "default": "Start Quiz"
+ },
+ {
+ "label": "Background image",
+ "description": "An optional background image for the introduction."
+ }
+ ]
+ },
+ {
+ "label": "Background image",
+ "description": "An optional background image for the Question set."
+ },
+ {
+ "label": "Progress indicator",
+ "description": "Question set progress indicator style.",
+ "options": [
+ {
+ "label": "Textual"
+ },
+ {
+ "label": "Dots"
+ }
+ ],
+ "default": "dots"
+ },
+ {
+ "label": "Pass percentage",
+ "description": "Percentage of Total score required for passing the quiz."
+ },
+ {
+ "label": "Questions",
+ "widgets": [
+ {
+ "label": "Default"
+ },
+ {
+ "label": "Textual"
+ }
+ ],
+ "entity": "question",
+ "field": {
+ "label": "Question type",
+ "description": "Library for this question."
+ }
+ },
+ {
+ "label": "Interface texts in quiz",
+ "fields": [
+ {
+ "label": "Back button",
+ "default": "Previous question"
+ },
+ {
+ "label": "Next button",
+ "default": "Next question"
+ },
+ {
+ "label": "Finish button",
+ "default": "Finish"
+ },
+ {
+ "label": "Progress text",
+ "description": "Text used if textual progress is selected.",
+ "default": "Question: @current of @total questions"
+ },
+ {
+ "label": "Label for jumping to a certain question",
+ "description": "You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
+ "default": "Question %d of %total"
+ },
+ {
+ "label": "Copyright dialog question label",
+ "default": "Question"
+ },
+ {
+ "label": "Readspeaker progress",
+ "description": "May use @current and @total question variables",
+ "default": "Question @current of @total"
+ },
+ {
+ "label": "Unanswered question text",
+ "default": "Unanswered"
+ },
+ {
+ "label": "Answered question text",
+ "default": "Answered"
+ },
+ {
+ "label": "Current question text",
+ "default": "Current question"
+ }
+ ]
+ },
+ {
+ "label": "Disable backwards navigation",
+ "description": "This option will only allow you to move forward in Question Set"
+ },
+ {
+ "label": "Randomize questions",
+ "description": "Enable to randomize the order of questions on display."
+ },
+ {
+ "label": "Number of questions to be shown:",
+ "description": "Create a randomized batch of questions from the total."
+ },
+ {
+ "label": "Quiz finished",
+ "fields": [
+ {
+ "label": "Display results"
+ },
+ {
+ "label": "Display solution button"
+ },
+ {
+ "label": "No results message",
+ "description": "Text displayed on end page when \"Display results\" is disabled",
+ "default": "Finished"
+ },
+ {
+ "label": "Feedback heading",
+ "default": "Your result:",
+ "description": "This heading will be displayed at the end of the quiz when the user has answered all questions."
+ },
+ {
+ "label": "Overall Feedback",
+ "fields": [
+ {
+ "widgets": [],
+ "label": "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": "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"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+}
diff --git a/language/af.json b/language/af.json
new file mode 100644
index 0000000..c97b04e
--- /dev/null
+++ b/language/af.json
@@ -0,0 +1,255 @@
+{
+ "semantics":[
+ {
+ "label":"Quiz introduction",
+ "fields":[
+ {
+ "label":"Display introduction"
+ },
+ {
+ "label":"Title",
+ "description":"This title will be displayed above the introduction text."
+ },
+ {
+ "label":"Introduction text",
+ "description":"This text will be displayed before the quiz starts."
+ },
+ {
+ "label":"Start button text",
+ "default":"Start Quiz"
+ },
+ {
+ "label":"Background image",
+ "description":"An optional background image for the introduction."
+ }
+ ]
+ },
+ {
+ "label":"Background image",
+ "description":"An optional background image for the Question set."
+ },
+ {
+ "label":"Progress indicator",
+ "description":"Question set progress indicator style.",
+ "options":[
+ {
+ "label":"Textual"
+ },
+ {
+ "label":"Dots"
+ }
+ ],
+ "default":"dots"
+ },
+ {
+ "label":"Pass percentage",
+ "description":"Percentage of Total score required for passing the quiz."
+ },
+ {
+ "label":"Questions",
+ "widgets":[
+ {
+ "label":"Default"
+ },
+ {
+ "label":"Textual"
+ }
+ ],
+ "entity":"question",
+ "field":{
+ "label":"Question type",
+ "description":"Library for this question."
+ }
+ },
+ {
+ "label":"Interface texts in quiz",
+ "fields":[
+ {
+ "label":"Back button",
+ "default":"Previous question"
+ },
+ {
+ "label":"Next button",
+ "default":"Next question"
+ },
+ {
+ "label":"Finish button",
+ "default":"Finish"
+ },
+ {
+ "label":"Progress text",
+ "description":"Text used if textual progress is selected.",
+ "default":"Question: @current of @total questions"
+ },
+ {
+ "label":"Label for jumping to a certain question",
+ "description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
+ "default":"Question %d of %total"
+ },
+ {
+ "label":"Copyright dialog question label",
+ "default":"Question"
+ },
+ {
+ "label":"Readspeaker progress",
+ "description":"May use @current and @total question variables",
+ "default":"Question @current of @total"
+ },
+ {
+ "label":"Unanswered question text",
+ "default":"Unanswered"
+ },
+ {
+ "label":"Answered question text",
+ "default":"Answered"
+ },
+ {
+ "label":"Current question text",
+ "default":"Current question"
+ }
+ ]
+ },
+ {
+ "label":"Disable backwards navigation",
+ "description":"This option will only allow you to move forward in Question Set"
+ },
+ {
+ "label":"Randomize questions",
+ "description":"Enable to randomize the order of questions on display."
+ },
+ {
+ "label":"Number of questions to be shown:",
+ "description":"Create a randomized batch of questions from the total."
+ },
+ {
+ "label":"Quiz finished",
+ "fields":[
+ {
+ "label":"Display results"
+ },
+ {
+ "label":"Display solution button"
+ },
+ {
+ "label":"No results message",
+ "description":"Text displayed on end page when \"Display results\" is disabled",
+ "default":"Finished"
+ },
+ {
+ "label":"Feedback heading",
+ "default":"Your result:",
+ "description":"This heading will be displayed at the end of the quiz when the user has answered all questions."
+ },
+ {
+ "label":"Overall Feedback",
+ "fields":[
+ {
+ "widgets":[
+
+ ],
+ "label":"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":"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"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/language/ar.json b/language/ar.json
index 838ccf7..e9fe2ba 100644
--- a/language/ar.json
+++ b/language/ar.json
@@ -1,213 +1,255 @@
{
- "semantics": [
+ "semantics":[
{
- "label": "مقدمة المسابقة",
- "fields": [
+ "label":"مقدمة المسابقة",
+ "fields":[
{
- "label": "عرض المقدمة"
+ "label":"عرض المقدمة"
},
{
- "label": "العنوان",
- "description": "سيتم عرض هذا العنوان فوق النص المقدمة"
+ "label":"العنوان",
+ "description":"سيتم عرض هذا العنوان فوق النص المقدمة"
},
{
- "label": "مقدمة النص",
- "description": "سيتم عرض هذا النص قبل أن تبدأ هذه المسابقة"
+ "label":"مقدمة النص",
+ "description":"سيتم عرض هذا النص قبل أن تبدأ هذه المسابقة"
},
{
- "label": "بدء زر النص"
+ "label":"بدء زر النص",
+ "default":"Start Quiz"
},
{
- "label": "صورة الخلفية",
- "description": "إدخال صورة خلفية اختيارية"
+ "label":"صورة الخلفية",
+ "description":"إدخال صورة خلفية اختيارية"
}
]
},
{
- "label": "صورة الخلفية",
- "description": "صورة خلفية اختيارية لأسئلة"
+ "label":"صورة الخلفية",
+ "description":"صورة خلفية اختيارية لأسئلة"
},
{
- "label": "مؤشر التقدم",
- "description": "أسئلة لتعيين نمط مؤشر التقدم",
- "options": [
+ "label":"مؤشر التقدم",
+ "description":"أسئلة لتعيين نمط مؤشر التقدم",
+ "options":[
{
- "label": "النصية"
+ "label":"النصية"
},
{
- "label": "النقاط"
- }
- ]
- },
- {
- "label": "نسبة النجاح",
- "description": "النسبة المئوية لمجموع النقاط المطلوبة لاجتياز الاختبار"
- },
- {
- "label": "الأسئلة",
- "widgets": [
- {
- "label": "الافتراضي"
- },
- {
- "label": "النصية"
+ "label":"النقاط"
}
],
- "entity": "السؤال",
- "field": {
- "label": "نوع السؤال",
- "description": "مكتبة لهذا السؤال"
+ "default":"dots"
+ },
+ {
+ "label":"نسبة النجاح",
+ "description":"النسبة المئوية لمجموع النقاط المطلوبة لاجتياز الاختبار"
+ },
+ {
+ "label":"الأسئلة",
+ "widgets":[
+ {
+ "label":"الافتراضي"
+ },
+ {
+ "label":"النصية"
+ }
+ ],
+ "entity":"السؤال",
+ "field":{
+ "label":"نوع السؤال",
+ "description":"مكتبة لهذا السؤال"
}
},
{
- "label": "واجهة النصوص لهذه المسابقة",
- "fields": [
+ "label":"واجهة النصوص لهذه المسابقة",
+ "fields":[
{
- "label": "زر الرجوع"
+ "label":"زر العودة",
+ "default":"Previous question"
},
{
- "label": "زر التقدم"
+ "label":"زر التقدم",
+ "default":"Next question"
},
{
- "label": "زر الانتهاء"
+ "label":"زر الانتهاء",
+ "default":"Finish"
},
{
- "label": "نص التقدم",
- "description": "النص المستخدم إذا تم تحديد التقدم نصيا"
+ "label":"نص التقدم",
+ "description":"النص المستخدم إذا تم تحديد التقدم نصيا",
+ "default":"Question: @current of @total questions"
},
{
- "label": "Label for jumping to a certain question",
- "description": "You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
- "default": "Question %d of %total"
+ "label":"Label for jumping to a certain question",
+ "description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
+ "default":"Question %d of %total"
},
{
- "label": "Copyright dialog question label",
- "default": "Question"
+ "label":"Copyright dialog question label",
+ "default":"السؤال"
},
{
- "label": "Readspeaker progress",
- "description": "May use @current and @total question variables",
- "default": "Question @current of @total"
+ "label":"Readspeaker progress",
+ "description":"May use @current and @total question variables",
+ "default":"Question @current of @total"
},
{
- "label": "Unanswered question text",
- "default": "Unanswered"
+ "label":"Unanswered question text",
+ "default":"Unanswered"
},
{
- "label": "Answered question text",
- "default": "Answered"
+ "label":"Answered question text",
+ "default":"Answered"
},
{
- "label": "Current question text",
- "default": "Current question"
+ "label":"Current question text",
+ "default":"Current question"
}
]
},
{
- "label": "Disable backwards navigation",
- "description": "This option will only allow you to move forward in Question Set"
+ "label":"Disable backwards navigation",
+ "description":"This option will only allow you to move forward in Question Set"
},
{
- "label": "Randomize questions",
- "description": "Enable to randomize the order of questions on display."
+ "label":"Randomize questions",
+ "description":"تمكين العرض بطريقة عشوائية وترتيب الأسئلة على الشاشة"
},
{
- "label": "Number of questions to be shown:",
- "description": "Create a randomized batch of questions from the total."
+ "label":"Number of questions to be shown:",
+ "description":"Create a randomized batch of questions from the total."
},
{
- "label": "انتهاء المسابقة",
- "fields": [
+ "label":"انتهاء المسابقة",
+ "fields":[
{
- "label": "عرض النتائج"
+ "label":"عرض النتائج"
},
{
- "label": "No results message",
- "description": "Text displayed on end page when \"Display results\" is disabled",
- "default": "Finished"
+ "label":"Display solution button"
},
{
- "label": "نص راس الملاحظات",
- "description": "سيتم عرض هذا العنوان في نهاية هذه المسابقة حيثما أجاب المستخدم على جميع الأسئلة المستعملة"
+ "label":"No results message",
+ "description":"Text displayed on end page when \"Display results\" is disabled",
+ "default":"Finished"
},
{
- "label": "عرض نص النتيجة",
- "description": "النص يستخدم لعرض مجموع النقاط للمستخدم \"@score\" سوف تحل محلها النتيجة المحسوبة, \"@total\" حسب أقصى درجة ممكنة"
+ "label":"نص راس الملاحظات",
+ "default":"Your result:",
+ "description":"سيتم عرض هذا العنوان في نهاية هذه المسابقة حيثما أجاب المستخدم على جميع الأسئلة المستعملة"
},
{
- "label": "تعليق النجاح بالمسابقة",
- "description": "سيتم عرض هذا النص أعلاه النتيجة إذا انقضى المستخدم بنجاح هذه المسابقة"
- },
- {
- "label": "ملاحظة النجاح",
- "description": "سيتم عرض هذه الملاحظة بعد النتيجة إذا انقضى المستخدم بنجاح هذه المسابقة"
- },
- {
- "label": "تعليق الرسوب بالمسابقة",
- "description": "سيتم عرض هذا النص أعلاه النتيجة إذا كان المستخدم قد فشلت في المسابقة"
- },
- {
- "label": "ملاحظة الرسوب",
- "description": "سيتم عرض هذه الملاحظة بعد النتيجة إذا كان المستخدم قد فشلت في المسابقة"
- },
- {
- "label": "تسمية زر اظهار الحل",
- "description": "نص زر الحل"
- },
- {
- "label": "تسمية زر إعادة المحاولة",
- "description": "نص زر إعادة المحاولة"
- },
- {
- "label": "نص زر الانتهاء"
- },
- {
- "label": "عرض الفيديو قبل نتائج المسابقة"
- },
- {
- "label": "تفعيل زر تخطى الفيديو"
- },
- {
- "label": "تسمية زر تخطى الفيديو"
- },
- {
- "label": "فيديو النجاح بالمسابقة",
- "description": "سيتم تشغيل هذا الفيديو إذا كان المستخدم ناجحا بهذه المسابقة"
- },
- {
- "label": "فيديو الرسوب بالمسابقة",
- "description": "سيتم تشغيل هذا الفيديو إذا كان المستخدم راسبا بهذه المسابقة"
- }
- ]
- },
- {
- "label": "إعدادات زر \"مشاهدة حل \" وزر \"إعادة المحاولة\" ",
- "fields": [
- {
- "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":"شفافية خلفية العناصر",
+ "fields":[
{
- "label": "Enabled"
- },
- {
- "label": "Disabled"
+ "widgets":[
+
+ ],
+ "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": "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":"Old Feedback",
+ "fields":[
{
- "label": "Enabled"
+ "label":"تعليق النجاح بالمسابقة",
+ "description":"سيتم عرض هذا النص أعلاه النتيجة إذا انقضى المستخدم بنجاح هذه المسابقة"
},
{
- "label": "Disabled"
+ "label":"ملاحظة النجاح",
+ "description":"سيتم عرض هذه الملاحظة بعد النتيجة إذا انقضى المستخدم بنجاح هذه المسابقة"
+ },
+ {
+ "label":"تعليق الرسوب بالمسابقة",
+ "description":"سيتم عرض هذا النص أعلاه النتيجة إذا كان المستخدم قد فشلت في المسابقة"
+ },
+ {
+ "label":"ملاحظة الرسوب",
+ "description":"سيتم عرض هذه الملاحظة بعد النتيجة إذا كان المستخدم قد فشلت في المسابقة"
+ }
+ ]
+ },
+ {
+ "label":"تسمية زر اظهار الحل",
+ "default":"مشاهدة الحل",
+ "description":"نص زر الحل"
+ },
+ {
+ "label":"تسمية زر إعادة المحاولة",
+ "default":"إعادة المحاولة",
+ "description":"نص زر إعادة المحاولة"
+ },
+ {
+ "label":"نص زر الانتهاء",
+ "default":"Finish"
+ },
+ {
+ "label":"عرض الفيديو قبل نتائج المسابقة"
+ },
+ {
+ "label":"تفعيل زر تخطى الفيديو"
+ },
+ {
+ "label":"تسمية زر تخطى الفيديو",
+ "default":"Skip video"
+ },
+ {
+ "label":"فيديو النجاح بالمسابقة",
+ "description":"سيتم تشغيل هذا الفيديو إذا كان المستخدم ناجحا بهذه المسابقة"
+ },
+ {
+ "label":"فيديو الرسوب بالمسابقة",
+ "description":"سيتم تشغيل هذا الفيديو إذا كان المستخدم راسبا بهذه المسابقة"
+ }
+ ]
+ },
+ {
+ "label":"إعدادات زر \"مشاهدة حل \" وزر \"إعادة المحاولة\" ",
+ "fields":[
+ {
+ "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"
}
]
}
]
}
]
-}
+}
\ No newline at end of file
diff --git a/language/bs.json b/language/bs.json
new file mode 100644
index 0000000..b3d4ee1
--- /dev/null
+++ b/language/bs.json
@@ -0,0 +1,255 @@
+{
+ "semantics":[
+ {
+ "label":"Uvod u kviz",
+ "fields":[
+ {
+ "label":"Prikaži uvod"
+ },
+ {
+ "label":"Naziv",
+ "description":"Ovaj će naziv biti prikazan iznad uvodnog teksta."
+ },
+ {
+ "label":"Tekst uvoda",
+ "description":"Ovaj će naziv biti prikazan prije početka kviza."
+ },
+ {
+ "label":"Oznaka za dugme \"Start\"",
+ "default":"Start"
+ },
+ {
+ "label":"Slika pozadine",
+ "description":"Slika pozadine na početku. (opcionalno)."
+ }
+ ]
+ },
+ {
+ "label":"Slika pozadine",
+ "description":"Slika pozadine seta pitanja. (opcionalno)."
+ },
+ {
+ "label":"Prikaz napredovanja",
+ "description":"Prikazivanje napredovanja",
+ "options":[
+ {
+ "label":"Tekst"
+ },
+ {
+ "label":"Bodovi"
+ }
+ ],
+ "default":"dots"
+ },
+ {
+ "label":"Procenat za uspješan prolaz",
+ "description":"Procenat tačnih odgovora kao preduvijet da je kviz\/zadatak uspješno završen."
+ },
+ {
+ "label":"Pitanja",
+ "widgets":[
+ {
+ "label":"Standard"
+ },
+ {
+ "label":"Tekst"
+ }
+ ],
+ "entity":"pitanje",
+ "field":{
+ "label":"Vrsta pitanja",
+ "description":"Biblioteka za ovo pitanje."
+ }
+ },
+ {
+ "label":"Prikaz teksta u kvizu",
+ "fields":[
+ {
+ "label":"Oznaka za dugme \"Nazad\"",
+ "default":"Zurück"
+ },
+ {
+ "label":"Oznaka za dugme \"Naprijed\"",
+ "default":"Weiter"
+ },
+ {
+ "label":"Oznaka za dugme \"Završi\"",
+ "default":"Kraj"
+ },
+ {
+ "label":"Početni tekst",
+ "description":"Koristi tekst ako je izabran za napredak u pisanom obliku.",
+ "default":"Aktuelno pitanje: @current od @total pitanja"
+ },
+ {
+ "label":"Označavanje za skakanje do određene tačke",
+ "description":"Koristi mjesto '%d' za redoslijed pitanja i %total za ukupan broj pitanja.",
+ "default":"Pitanje %d od %total"
+ },
+ {
+ "label":"Opis pitanja u vezi sa vezi s autorom",
+ "default":"Pitanje"
+ },
+ {
+ "label":"Napredno \"Readspeaker\"",
+ "description":"Varijable: @current i @total",
+ "default":"Pitanje @current od @total"
+ },
+ {
+ "label":"Tekst za neodgovorena pitanja",
+ "default":"Neodgovoreno"
+ },
+ {
+ "label":"Tekst za odgovorena pitanja",
+ "default":"Odgovoreno"
+ },
+ {
+ "label":"Tekst za trenutno pitanja",
+ "default":"Trenutno pitanje"
+ }
+ ]
+ },
+ {
+ "label":"Deaktivirati mogućnost povratka unazad",
+ "description":"Ako je aktivirano, korisnik će moći ići samo naprijed u odgovaranju na pitanja."
+ },
+ {
+ "label":"Izmješati pitanja",
+ "description":"Ako je aktivirano, pitanja će kod svakog učitavanja kviza imati drugi raspored."
+ },
+ {
+ "label":"Broj pitanja za prikaz:",
+ "description":"Može se koristiti kod odabira slučajnog pitanja."
+ },
+ {
+ "label":"Završi kviz",
+ "fields":[
+ {
+ "label":"Prikaz rezultata"
+ },
+ {
+ "label":"Napomena ako nema rezultata"
+ },
+ {
+ "label":"Oznaka za povratne informacije",
+ "description":"Ovaj tekst će biti prikazan na kraju kviza kada korisnik odgovori na pitanja.",
+ "default":"Tvoj rezultat:"
+ },
+ {
+ "label":"Tekst za prikaz broj odova",
+ "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":[
+
+ ],
+ "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":"Komentar za uspješno završen 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",
+ "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",
+ "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\"",
+ "description":"Oznaka za dugme \"Prikaži rješenje\""
+ }
+ ]
+ },
+ {
+ "label":"Oznaka za dugme \"Ponovi\"",
+ "default":"Prikaži rješenje",
+ "description":"Oznaka za dugme \"Ponovi\""
+ },
+ {
+ "label":"Oznaka za dugme \"Završi\"",
+ "default":"Ponovi",
+ "description":"Text for the retry button."
+ },
+ {
+ "label":"Prikaži video prije rezultata kviza",
+ "default":"Kraj"
+ },
+ {
+ "label":"Aktiviraj dugme \"Preskoči vidio\""
+ },
+ {
+ "label":"Oznaka za dugme \"Preskoči video\""
+ },
+ {
+ "label":"Video nakon položenog kviza",
+ "default":"Skip video"
+ },
+ {
+ "label":"Video nakon nepoloženog kviza",
+ "description":"Ovaj video se prikazuje nakon što korisnik neuspješno završi kviz."
+ },
+ {
+ "label":"Fail video",
+ "description":"This video will be played if the user failes the quiz."
+ }
+ ]
+ },
+ {
+ "label":"Podešavanje dugmeta \"Prikaži rješenje\" i \"Ponovi\".",
+ "fields":[
+ {
+ "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":"Nemoj prikazati"
+ }
+ ]
+ },
+ {
+ "label":"Poništi dugme \"Ponovi\"",
+ "description":"Ova opcija podešava prikazivanje dugmeta \"Ponovi\" za sva pitanja ili da bude za svako posebno pitanje konfigurirano.",
+ "options":[
+ {
+ "label":"Prikaži"
+ },
+ {
+ "label":"Nemoj prikazati"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/language/ca.json b/language/ca.json
new file mode 100644
index 0000000..97b41b8
--- /dev/null
+++ b/language/ca.json
@@ -0,0 +1,255 @@
+{
+ "semantics":[
+ {
+ "label":"Quiz introduction",
+ "fields":[
+ {
+ "label":"Display introduction"
+ },
+ {
+ "label":"Title",
+ "description":"This title will be displayed above the introduction text."
+ },
+ {
+ "label":"Text d'introducció",
+ "description":"This text will be displayed before the quiz starts."
+ },
+ {
+ "label":"Start button text",
+ "default":"Start Quiz"
+ },
+ {
+ "label":"Imatge de fons",
+ "description":"An optional background image for the introduction."
+ }
+ ]
+ },
+ {
+ "label":"Imatge de fons",
+ "description":"An optional background image for the Question set."
+ },
+ {
+ "label":"Progress indicator",
+ "description":"Question set progress indicator style.",
+ "options":[
+ {
+ "label":"Textual"
+ },
+ {
+ "label":"Dots"
+ }
+ ],
+ "default":"dots"
+ },
+ {
+ "label":"Percentatge per passar",
+ "description":"Percentage of Total score required for passing the quiz."
+ },
+ {
+ "label":"Questions",
+ "widgets":[
+ {
+ "label":"Per defecte"
+ },
+ {
+ "label":"Textual"
+ }
+ ],
+ "entity":"question",
+ "field":{
+ "label":"Question type",
+ "description":"Library for this question."
+ }
+ },
+ {
+ "label":"Interface texts in quiz",
+ "fields":[
+ {
+ "label":"Back button",
+ "default":"Previous question"
+ },
+ {
+ "label":"Next button",
+ "default":"Next question"
+ },
+ {
+ "label":"Finish button",
+ "default":"Acabar"
+ },
+ {
+ "label":"Progress text",
+ "description":"Text used if textual progress is selected.",
+ "default":"Question: @current of @total questions"
+ },
+ {
+ "label":"Label for jumping to a certain question",
+ "description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
+ "default":"Question %d of %total"
+ },
+ {
+ "label":"Copyright dialog question label",
+ "default":"Pregunta"
+ },
+ {
+ "label":"Readspeaker progress",
+ "description":"May use @current and @total question variables",
+ "default":"Question @current of @total"
+ },
+ {
+ "label":"Unanswered question text",
+ "default":"Unanswered"
+ },
+ {
+ "label":"Answered question text",
+ "default":"Answered"
+ },
+ {
+ "label":"Current question text",
+ "default":"Current question"
+ }
+ ]
+ },
+ {
+ "label":"Disable backwards navigation",
+ "description":"This option will only allow you to move forward in Question Set"
+ },
+ {
+ "label":"Randomize questions",
+ "description":"Enable to randomize the order of questions on display."
+ },
+ {
+ "label":"Number of questions to be shown:",
+ "description":"Create a randomized batch of questions from the total."
+ },
+ {
+ "label":"Quiz finished",
+ "fields":[
+ {
+ "label":"Display results"
+ },
+ {
+ "label":"Display solution button"
+ },
+ {
+ "label":"No results message",
+ "description":"Text displayed on end page when \"Display results\" is disabled",
+ "default":"Finished"
+ },
+ {
+ "label":"Feedback heading",
+ "default":"Your result:",
+ "description":"This heading will be displayed at the end of the quiz when the user has answered all questions."
+ },
+ {
+ "label":"Overall Feedback",
+ "fields":[
+ {
+ "widgets":[
+
+ ],
+ "label":"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":"Mostrar solució",
+ "description":"Text for the solution button."
+ },
+ {
+ "label":"Etiqueta del botó \"Tornar-ho a provar\"",
+ "default":"Tornar-ho a provar",
+ "description":"Text for the retry button."
+ },
+ {
+ "label":"Finish button text",
+ "default":"Acabar"
+ },
+ {
+ "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":"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"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/language/cs.json b/language/cs.json
new file mode 100644
index 0000000..c97b04e
--- /dev/null
+++ b/language/cs.json
@@ -0,0 +1,255 @@
+{
+ "semantics":[
+ {
+ "label":"Quiz introduction",
+ "fields":[
+ {
+ "label":"Display introduction"
+ },
+ {
+ "label":"Title",
+ "description":"This title will be displayed above the introduction text."
+ },
+ {
+ "label":"Introduction text",
+ "description":"This text will be displayed before the quiz starts."
+ },
+ {
+ "label":"Start button text",
+ "default":"Start Quiz"
+ },
+ {
+ "label":"Background image",
+ "description":"An optional background image for the introduction."
+ }
+ ]
+ },
+ {
+ "label":"Background image",
+ "description":"An optional background image for the Question set."
+ },
+ {
+ "label":"Progress indicator",
+ "description":"Question set progress indicator style.",
+ "options":[
+ {
+ "label":"Textual"
+ },
+ {
+ "label":"Dots"
+ }
+ ],
+ "default":"dots"
+ },
+ {
+ "label":"Pass percentage",
+ "description":"Percentage of Total score required for passing the quiz."
+ },
+ {
+ "label":"Questions",
+ "widgets":[
+ {
+ "label":"Default"
+ },
+ {
+ "label":"Textual"
+ }
+ ],
+ "entity":"question",
+ "field":{
+ "label":"Question type",
+ "description":"Library for this question."
+ }
+ },
+ {
+ "label":"Interface texts in quiz",
+ "fields":[
+ {
+ "label":"Back button",
+ "default":"Previous question"
+ },
+ {
+ "label":"Next button",
+ "default":"Next question"
+ },
+ {
+ "label":"Finish button",
+ "default":"Finish"
+ },
+ {
+ "label":"Progress text",
+ "description":"Text used if textual progress is selected.",
+ "default":"Question: @current of @total questions"
+ },
+ {
+ "label":"Label for jumping to a certain question",
+ "description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
+ "default":"Question %d of %total"
+ },
+ {
+ "label":"Copyright dialog question label",
+ "default":"Question"
+ },
+ {
+ "label":"Readspeaker progress",
+ "description":"May use @current and @total question variables",
+ "default":"Question @current of @total"
+ },
+ {
+ "label":"Unanswered question text",
+ "default":"Unanswered"
+ },
+ {
+ "label":"Answered question text",
+ "default":"Answered"
+ },
+ {
+ "label":"Current question text",
+ "default":"Current question"
+ }
+ ]
+ },
+ {
+ "label":"Disable backwards navigation",
+ "description":"This option will only allow you to move forward in Question Set"
+ },
+ {
+ "label":"Randomize questions",
+ "description":"Enable to randomize the order of questions on display."
+ },
+ {
+ "label":"Number of questions to be shown:",
+ "description":"Create a randomized batch of questions from the total."
+ },
+ {
+ "label":"Quiz finished",
+ "fields":[
+ {
+ "label":"Display results"
+ },
+ {
+ "label":"Display solution button"
+ },
+ {
+ "label":"No results message",
+ "description":"Text displayed on end page when \"Display results\" is disabled",
+ "default":"Finished"
+ },
+ {
+ "label":"Feedback heading",
+ "default":"Your result:",
+ "description":"This heading will be displayed at the end of the quiz when the user has answered all questions."
+ },
+ {
+ "label":"Overall Feedback",
+ "fields":[
+ {
+ "widgets":[
+
+ ],
+ "label":"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":"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"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/language/da.json b/language/da.json
new file mode 100644
index 0000000..719fc18
--- /dev/null
+++ b/language/da.json
@@ -0,0 +1,255 @@
+{
+ "semantics":[
+ {
+ "label":"Quiz introduction",
+ "fields":[
+ {
+ "label":"Display introduction"
+ },
+ {
+ "label":"Title",
+ "description":"This title will be displayed above the introduction text."
+ },
+ {
+ "label":"Introduction text",
+ "description":"This text will be displayed before the quiz starts."
+ },
+ {
+ "label":"Start button text",
+ "default":"Start Quiz"
+ },
+ {
+ "label":"Background image",
+ "description":"An optional background image for the introduction."
+ }
+ ]
+ },
+ {
+ "label":"Background image",
+ "description":"An optional background image for the Question set."
+ },
+ {
+ "label":"Progress indicator",
+ "description":"Question set progress indicator style.",
+ "options":[
+ {
+ "label":"Textual"
+ },
+ {
+ "label":"Dots"
+ }
+ ],
+ "default":"dots"
+ },
+ {
+ "label":"Pass percentage",
+ "description":"Percentage of Total score required for passing the quiz."
+ },
+ {
+ "label":"Questions",
+ "widgets":[
+ {
+ "label":"Default"
+ },
+ {
+ "label":"Textual"
+ }
+ ],
+ "entity":"question",
+ "field":{
+ "label":"Question type",
+ "description":"Library for this question."
+ }
+ },
+ {
+ "label":"Interface texts in quiz",
+ "fields":[
+ {
+ "label":"Tilbage-knap",
+ "default":"Previous question"
+ },
+ {
+ "label":"Next button",
+ "default":"Next question"
+ },
+ {
+ "label":"Finish button",
+ "default":"Finish"
+ },
+ {
+ "label":"Progress text",
+ "description":"Text used if textual progress is selected.",
+ "default":"Question: @current of @total questions"
+ },
+ {
+ "label":"Label for jumping to a certain question",
+ "description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
+ "default":"Question %d of %total"
+ },
+ {
+ "label":"Copyright dialog question label",
+ "default":"Question"
+ },
+ {
+ "label":"Readspeaker progress",
+ "description":"May use @current and @total question variables",
+ "default":"Question @current of @total"
+ },
+ {
+ "label":"Unanswered question text",
+ "default":"Unanswered"
+ },
+ {
+ "label":"Answered question text",
+ "default":"Answered"
+ },
+ {
+ "label":"Current question text",
+ "default":"Current question"
+ }
+ ]
+ },
+ {
+ "label":"Disable backwards navigation",
+ "description":"This option will only allow you to move forward in Question Set"
+ },
+ {
+ "label":"Randomize questions",
+ "description":"Enable to randomize the order of questions on display."
+ },
+ {
+ "label":"Number of questions to be shown:",
+ "description":"Create a randomized batch of questions from the total."
+ },
+ {
+ "label":"Quiz finished",
+ "fields":[
+ {
+ "label":"Display results"
+ },
+ {
+ "label":"Display solution button"
+ },
+ {
+ "label":"No results message",
+ "description":"Text displayed on end page when \"Display results\" is disabled",
+ "default":"Finished"
+ },
+ {
+ "label":"Feedback heading",
+ "default":"Your result:",
+ "description":"This heading will be displayed at the end of the quiz when the user has answered all questions."
+ },
+ {
+ "label":"Overall Feedback",
+ "fields":[
+ {
+ "widgets":[
+
+ ],
+ "label":"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":"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":"Deaktiveret"
+ }
+ ]
+ },
+ {
+ "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.",
+ "options":[
+ {
+ "label":"Aktiveret"
+ },
+ {
+ "label":"Deaktiveret"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/language/de.json b/language/de.json
index 1713d8b..f3cd608 100644
--- a/language/de.json
+++ b/language/de.json
@@ -1,229 +1,255 @@
{
- "semantics": [
+ "semantics":[
{
- "label": "Quiz-Einführung",
- "fields": [
+ "label":"Quiz-Einführung",
+ "fields":[
{
- "label": "Zeige Einführung"
+ "label":"Zeige Einführung"
},
{
- "label": "Titel",
- "description": "Dieser Titel wird über dem Einführungstext angezeigt."
+ "label":"Titel",
+ "description":"Dieser Titel wird über dem Einführungstext angezeigt."
},
{
- "label": "Einführungstext",
- "description": "Dieser Text wird angezeigt, bevor das Quiz anfängt."
+ "label":"Einführungstext",
+ "description":"Dieser Text wird angezeigt, bevor das Quiz anfängt."
},
{
- "label": "Beschriftung des \"Start\"-Buttons",
- "default": "Starte Quiz"
+ "label":"Beschriftung des \"Start\"-Buttons",
+ "default":"Starte Quiz"
},
{
- "label": "Hintergrundbild",
- "description": "Ein optionales Hintergrundbild für die Einführung."
+ "label":"Hintergrundbild",
+ "description":"Ein optionales Hintergrundbild für die Einführung."
}
]
},
{
- "label": "Hintergrundbild",
- "description": "Ein optionales Hintergrundbild für das Fragenset."
+ "label":"Hintergrundbild",
+ "description":"Ein optionales Hintergrundbild für das Fragenset."
},
{
- "label": "Fortschrittsanzeige",
- "description": "Anzeigestil für die Fortschrittsanzeige des Fragensets.",
- "options": [
+ "label":"Fortschrittsanzeige",
+ "description":"Anzeigestil für die Fortschrittsanzeige des Fragensets.",
+ "options":[
{
- "label": "Text"
+ "label":"Text"
},
{
- "label": "Punkte"
- }
- ]
- },
- {
- "label": "Prozent bearbeitet",
- "description": "Prozentsatz der Gesamtpunkte, die notwendig sind, um das Quiz zu bestehen."
- },
- {
- "label": "Fragen",
- "widgets": [
- {
- "label": "Vorgabe"
- },
- {
- "label": "Text"
+ "label":"Punkte"
}
],
- "entity": "Frage",
- "field": {
- "label": "Fragentyp",
- "description": "Bibliothek für diese Frage."
+ "default":"dots"
+ },
+ {
+ "label":"Prozentsatz zum Bestehen",
+ "description":"Prozentsatz der Gesamtpunktzahl, der nötig ist, um das Quiz zu bestehen"
+ },
+ {
+ "label":"Fragen",
+ "widgets":[
+ {
+ "label":"Vorgabe"
+ },
+ {
+ "label":"Text"
+ }
+ ],
+ "entity":"frage",
+ "field":{
+ "label":"Fragentyp",
+ "description":"Bibliothek für diese Frage."
}
},
{
- "label": "Anzeigetexte im Quiz",
- "fields": [
+ "label":"Anzeigetexte im Quiz",
+ "fields":[
{
- "label": "Beschriftung des \"Zurück\"-Buttons",
- "default": "Zurück"
+ "label":"Zurück-Button",
+ "default":"Zurück"
},
{
- "label": "Beschriftung des \"Weiter\"-Buttons",
- "default": "Weiter"
+ "label":"Beschriftung des \"Weiter\"-Buttons",
+ "default":"Weiter"
},
{
- "label": "Beschriftung des \"Beenden\"-Buttons",
- "default": "Beenden"
+ "label":"Beschriftung des \"Beenden\"-Buttons",
+ "default":"Beenden"
},
{
- "label": "Fortschrittstext",
- "description": "Verwendeter Text, wenn Fortschrittsanzeige in Textform gewählt wurde.",
- "default": "Aktuelle Frage: @current von @total Fragen"
+ "label":"Fortschrittsanzeigetext",
+ "description":"Verwendeter Text, wenn Fortschrittsanzeige in Textform gewählt wurde.",
+ "default":"Aktuelle Frage: @current von @total Fragen"
},
{
- "label": "Beschriftung für das Springen zu einem bestimmten Punkt",
- "description": "Nutze den Platzhalter '%d' für die Fragennummer und %total für die Gesamtzahl der Fragen.",
- "default": "Frage %d von %total"
+ "label":"Beschriftung für das Springen zu einem bestimmten Punkt",
+ "description":"Nutze den Platzhalter '%d' für die Fragennummer und %total für die Gesamtzahl der Fragen.",
+ "default":"Frage %d von %total"
},
{
- "label": "Beschriftung für eine Frage zum Urheberrechtsdialog",
- "default": "Frage"
+ "label":"Beschriftung für eine Frage zum Urheberrechtsdialog",
+ "default":"Frage"
},
{
- "label": "Fortschritt \"Readspeaker\"",
- "description": "Variablen: @current und @total",
- "default": "Frage @current von @total"
+ "label":"Fortschritt \"Readspeaker\"",
+ "description":"Variablen: @current und @total",
+ "default":"Frage @current von @total"
},
{
- "label": "Text für unbeantwortete Fragen",
- "default": "Unbeantwortet"
+ "label":"Text für unbeantwortete Fragen",
+ "default":"Unbeantwortet"
},
{
- "label": "Text für beantwortete Fragen",
- "default": "Beantwortet"
+ "label":"Text für beantwortete Fragen",
+ "default":"Beantwortet"
},
{
- "label": "Text fpr aktuelle Frage",
- "default": "Aktuelle Frage"
+ "label":"Text fpr aktuelle Frage",
+ "default":"Aktuelle Frage"
}
]
},
{
- "label": "Möglichkeit zum Rückwärts-Springen deaktivieren",
- "description": "Wenn aktiviert, kann der Nutzer nur vorwärts durch das Fragenset navigieren."
+ "label":"Rückwärts-Navigation ausstellen",
+ "description":"Wenn aktiviert, kann der Nutzer nur vorwärts durch das Fragenset navigieren."
},
{
- "label": "Fragen zufällig anordnen",
- "description": "Aktivieren, um die Reihenfolge der Fragen zufällig zu bestimmen."
+ "label":"Fragen zufällig anordnen",
+ "description":"Aktivieren, um die Fragen auf dem Bildschirm zufällig anzuordnen."
},
{
- "label": "Anzahl der anzuzeigenden Fragen:",
- "description": "Kann benutzt werden, um eine zufällige Auswahl auf mehreren Fragen zu treffen."
+ "label":"Anzahl der anzuzeigenden Fragen:",
+ "description":"Kann benutzt werden, um eine zufällige Auswahl auf mehreren Fragen zu treffen."
},
{
- "label": "Quiz beendet",
- "fields": [
+ "label":"Quiz beendet",
+ "fields":[
{
- "label": "Ergebnisanzeige"
+ "label":"Ergebnisanzeige"
},
{
- "label": "Hinweis bei keinen Ergebnissen",
- "description": "Text, der am Ende angezeigt wird, falls \"Ergebnisse anzeigen\" deaktiviert ist",
- "default": "Beendet"
+ "label":"Hinweis bei keinen Ergebnissen"
},
{
- "label": "Kopfzeile für die Rückmeldungen",
- "default": "Dein Ergebnis:",
- "description": "diese Kopfzeile wird am Ende des Quizzes angezeigt, wenn der Nutzer alle Fragen beantwortet hat."
+ "label":"Kopfzeile für die Rückmeldungen",
+ "description":"diese Kopfzeile wird am Ende des Quizzes angezeigt, wenn der Nutzer alle Fragen beantwortet hat.",
+ "default":"Dein Ergebnis:"
},
{
- "label": "Text für die Punkteanzeige",
- "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": "Du hast @score Punkte von @total möglichen."
+ "label":"Text für die Punkteanzeige",
+ "default":"Du hast @score Punkte von @total möglichen.",
+ "description":"Dieser Text wird verwendet, um die Gesamtpunkte des Nutzers anzuzeigen. \"@score\" wird durch die errechnete Punktzahl ersetzt, \"@total\" wird durch die maximal erreichbare Punktzahl ersetzt."
},
{
- "label": "Kopfzeile für \"Quiz bestanden\"",
- "placeholder": "Glückwunsch!",
- "default": "Glückwunsch!",
- "description": "Dieser Text wird oberhalb der Punkte angezeigt, wenn der Nutzer das Quiz erfolgreich abgeschlossen hat."
- },
- {
- "label": "Kommentar für bestandenes Quiz",
- "default": "Gut gemacht!",
- "description": "Dieser Kommentar wird nach den Punkten angezeigt, wenn der Nutzer das Quiz erfolgreich bestanden hat."
- },
- {
- "label": "Kopfzeile für nicht bestandenes Quiz",
- "default": "Diese Mal hast du nicht bestanden.",
- "description": "Dieser Text wird oberhalb der Punkte angezeigt, wenn der Nutzer das Quiz nicht bestanden hat."
- },
- {
- "label": "Kommentar für nicht bestandenes Quiz",
- "default": "Versuche es noch einmal!",
- "description": "Dieser Kommentar wird nach den Punkten angezeigt, wenn der Nutzer das Quiz nicht bestanden hat."
- },
- {
- "label": "Beschriftung des \"Lösung zeigen\"-Buttons",
- "default": "Lösung zeigen",
- "description": "Beschriftung des \"Lösung zeigen\"-Buttons"
- },
- {
- "label": "Beschriftung des \"Wiederholen\"-Buttons",
- "default": "Wiederholen",
- "description": "Beschriftung des \"Wiederholen\"-Buttons"
- },
- {
- "label": "Beschriftung des \"Beenden\"-Buttons",
- "default": "Beenden"
- },
- {
- "label": "Zeige Video vor den Quizergebnissen"
- },
- {
- "label": "Aktiviere \"Video überspringen\"-Button"
- },
- {
- "label": "Beschriftung des \"Video überspringen\"-Buttons",
- "default": "Video überspringen"
- },
- {
- "label": "Bestanden-Video",
- "description": "Dieses Video wird angezeigt, wenn der Nutzer das Quiz erfolgreich bestanden hat."
- },
- {
- "label": "Nicht-bestanden-Video",
- "description": "Dieses Video wird angezeigt, wenn der Nutzer das Quiz nicht bestanden hat."
- }
- ]
- },
- {
- "label": "Einstellungen für \"Lösung zeigen\"-Button und \"Nochmal\".",
- "fields": [
- {
- "label": "Überschreiben des \"Lösungen anzeigen\"-Buttons",
- "description": "Diese Option gibt an, ob der \"Lösung anzeigen\"-Button für alle Fragen angezeigt, ausgeblendet oder für jede Frage individuell konfiguriert wird.",
- "options": [
+ "label":"Hintergrunddeckkraft für bewegliche Elemente",
+ "fields":[
{
- "label": "Anzeigen"
- },
- {
- "label": "Ausblenden"
+ "widgets":[
+
+ ],
+ "label":"Benutzerdefinierte Rückmeldung für jeden Punkte-Bereich definieren",
+ "description":"Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
+ "entity":"Bereich",
+ "field":{
+ "fields":[
+ {
+ "label":"Punkte-Bereich"
+ },
+ {
+
+ },
+ {
+ "label":"Feedback for defined score range",
+ "placeholder":"Fill in the feedback"
+ }
+ ]
+ }
}
]
},
{
- "label": "Überschreiben des \"Wiederholen\"-Buttons",
- "description": "Diese Option gibt an, ob der \"Wiederholen\" Button für alle Fragen angezeigt, ausgeblendet oder für jede Frage individuell konfiguriert wird.",
- "options": [
+ "label":"Old Feedback",
+ "fields":[
{
- "label": "Anzeigen"
+ "label":"Kommentar für bestandenes Quiz",
+ "description":"Dieser Kommentar wird nach den Punkten angezeigt, wenn der Nutzer das Quiz erfolgreich bestanden hat."
},
{
- "label": "Ausblenden"
+ "label":"Kopfzeile für nicht bestandenes Quiz",
+ "description":"Dieser Text wird oberhalb der Punkte angezeigt, wenn der Nutzer das Quiz nicht bestanden hat."
+ },
+ {
+ "label":"Kommentar für nicht bestandenes Quiz",
+ "description":"Dieser Kommentar wird nach den Punkten angezeigt, wenn der Nutzer das Quiz nicht bestanden hat."
+ },
+ {
+ "label":"Beschriftung des \"Lösung zeigen\"-Buttons",
+ "description":"Beschriftung des \"Lösung zeigen\"-Buttons"
+ }
+ ]
+ },
+ {
+ "label":"Beschriftung des \"Wiederholen\"-Buttons",
+ "default":"Lösung anzeigen",
+ "description":"Beschriftung des \"Wiederholen\"-Buttons"
+ },
+ {
+ "label":"Beschriftung des \"Beenden\"-Buttons",
+ "default":"Wiederholen",
+ "description":"Text for the retry button."
+ },
+ {
+ "label":"Schaltflächentext Beenden",
+ "default":"Beenden"
+ },
+ {
+ "label":"Aktiviere \"Video überspringen\"-Button"
+ },
+ {
+ "label":"Beschriftung des \"Video überspringen\"-Buttons"
+ },
+ {
+ "label":"Bestanden-Video",
+ "default":"Skip video"
+ },
+ {
+ "label":"Nicht-bestanden-Video",
+ "description":"Dieses Video wird angezeigt, wenn der Nutzer das Quiz nicht bestanden hat."
+ },
+ {
+ "label":"Fail video",
+ "description":"This video will be played if the user failes the quiz."
+ }
+ ]
+ },
+ {
+ "label":"Einstellungen für \"Lösung zeigen\"-Button und \"Nochmal\".",
+ "fields":[
+ {
+ "label":"Überschreiben des \"Lösungen anzeigen\"-Buttons",
+ "description":"Diese Option gibt an, ob der \"Lösung anzeigen\"-Button für alle Fragen angezeigt, ausgeblendet oder für jede Frage individuell konfiguriert wird.",
+ "options":[
+ {
+ "label":"Anzeigen"
+ },
+ {
+ "label":"Ausblenden"
+ }
+ ]
+ },
+ {
+ "label":"Überschreiben des \"Wiederholen\"-Buttons",
+ "description":"Diese Option gibt an, ob der \"Wiederholen\" Button für alle Fragen angezeigt, ausgeblendet oder für jede Frage individuell konfiguriert wird.",
+ "options":[
+ {
+ "label":"Anzeigen"
+ },
+ {
+ "label":"Ausblenden"
}
]
}
]
}
]
-}
+}
\ No newline at end of file
diff --git a/language/el.json b/language/el.json
new file mode 100644
index 0000000..4b3141d
--- /dev/null
+++ b/language/el.json
@@ -0,0 +1,255 @@
+{
+ "semantics":[
+ {
+ "label":"Quiz introduction",
+ "fields":[
+ {
+ "label":"Display introduction"
+ },
+ {
+ "label":"Title",
+ "description":"This title will be displayed above the introduction text."
+ },
+ {
+ "label":"Introduction text",
+ "description":"This text will be displayed before the quiz starts."
+ },
+ {
+ "label":"Start button text",
+ "default":"Start Quiz"
+ },
+ {
+ "label":"Background image",
+ "description":"An optional background image for the introduction."
+ }
+ ]
+ },
+ {
+ "label":"Background image",
+ "description":"An optional background image for the Question set."
+ },
+ {
+ "label":"Progress indicator",
+ "description":"Question set progress indicator style.",
+ "options":[
+ {
+ "label":"Textual"
+ },
+ {
+ "label":"Dots"
+ }
+ ],
+ "default":"dots"
+ },
+ {
+ "label":"Pass percentage",
+ "description":"Percentage of Total score required for passing the quiz."
+ },
+ {
+ "label":"Questions",
+ "widgets":[
+ {
+ "label":"Default"
+ },
+ {
+ "label":"Textual"
+ }
+ ],
+ "entity":"question",
+ "field":{
+ "label":"Question type",
+ "description":"Library for this question."
+ }
+ },
+ {
+ "label":"Interface texts in quiz",
+ "fields":[
+ {
+ "label":"Back button",
+ "default":"Previous question"
+ },
+ {
+ "label":"Next button",
+ "default":"Next question"
+ },
+ {
+ "label":"Finish button",
+ "default":"Finish"
+ },
+ {
+ "label":"Progress text",
+ "description":"Text used if textual progress is selected.",
+ "default":"Question: @current of @total questions"
+ },
+ {
+ "label":"Label for jumping to a certain question",
+ "description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
+ "default":"Question %d of %total"
+ },
+ {
+ "label":"Copyright dialog question label",
+ "default":"Question"
+ },
+ {
+ "label":"Readspeaker progress",
+ "description":"May use @current and @total question variables",
+ "default":"Question @current of @total"
+ },
+ {
+ "label":"Unanswered question text",
+ "default":"Unanswered"
+ },
+ {
+ "label":"Answered question text",
+ "default":"Answered"
+ },
+ {
+ "label":"Current question text",
+ "default":"Current question"
+ }
+ ]
+ },
+ {
+ "label":"Disable backwards navigation",
+ "description":"This option will only allow you to move forward in Question Set"
+ },
+ {
+ "label":"Randomize questions",
+ "description":"Enable to randomize the order of questions on display."
+ },
+ {
+ "label":"Number of questions to be shown:",
+ "description":"Create a randomized batch of questions from the total."
+ },
+ {
+ "label":"Quiz finished",
+ "fields":[
+ {
+ "label":"Display results"
+ },
+ {
+ "label":"Display solution button"
+ },
+ {
+ "label":"No results message",
+ "description":"Text displayed on end page when \"Display results\" is disabled",
+ "default":"Finished"
+ },
+ {
+ "label":"Feedback heading",
+ "default":"Your result:",
+ "description":"This heading will be displayed at the end of the quiz when the user has answered all questions."
+ },
+ {
+ "label":"Overall Feedback",
+ "fields":[
+ {
+ "widgets":[
+
+ ],
+ "label":"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":"Επανάληψη",
+ "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":"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"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/language/es.json b/language/es.json
new file mode 100644
index 0000000..9b7e813
--- /dev/null
+++ b/language/es.json
@@ -0,0 +1,255 @@
+{
+ "semantics":[
+ {
+ "label":"Quiz introduction",
+ "fields":[
+ {
+ "label":"Display introduction"
+ },
+ {
+ "label":"Título",
+ "description":"This title will be displayed above the introduction text."
+ },
+ {
+ "label":"Introduction text",
+ "description":"This text will be displayed before the quiz starts."
+ },
+ {
+ "label":"Start button text",
+ "default":"Start Quiz"
+ },
+ {
+ "label":"Background image",
+ "description":"An optional background image for the introduction."
+ }
+ ]
+ },
+ {
+ "label":"Background image",
+ "description":"An optional background image for the Question set."
+ },
+ {
+ "label":"Progress indicator",
+ "description":"Question set progress indicator style.",
+ "options":[
+ {
+ "label":"Textual"
+ },
+ {
+ "label":"Dots"
+ }
+ ],
+ "default":"dots"
+ },
+ {
+ "label":"Pass percentage",
+ "description":"Percentage of Total score required for passing the quiz."
+ },
+ {
+ "label":"Questions",
+ "widgets":[
+ {
+ "label":"Predeterminado"
+ },
+ {
+ "label":"Textual"
+ }
+ ],
+ "entity":"question",
+ "field":{
+ "label":"Question type",
+ "description":"Library for this question."
+ }
+ },
+ {
+ "label":"Interface texts in quiz",
+ "fields":[
+ {
+ "label":"Botón de retroceso",
+ "default":"Previous question"
+ },
+ {
+ "label":"Next button",
+ "default":"Next question"
+ },
+ {
+ "label":"Finish button",
+ "default":"Finish"
+ },
+ {
+ "label":"Progress text",
+ "description":"Text used if textual progress is selected.",
+ "default":"Question: @current of @total questions"
+ },
+ {
+ "label":"Label for jumping to a certain question",
+ "description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
+ "default":"Question %d of %total"
+ },
+ {
+ "label":"Copyright dialog question label",
+ "default":"Question"
+ },
+ {
+ "label":"Readspeaker progress",
+ "description":"May use @current and @total question variables",
+ "default":"Question @current of @total"
+ },
+ {
+ "label":"Unanswered question text",
+ "default":"Unanswered"
+ },
+ {
+ "label":"Answered question text",
+ "default":"Answered"
+ },
+ {
+ "label":"Current question text",
+ "default":"Current question"
+ }
+ ]
+ },
+ {
+ "label":"Disable backwards navigation",
+ "description":"This option will only allow you to move forward in Question Set"
+ },
+ {
+ "label":"Randomize questions",
+ "description":"Enable to randomize the order of questions on display."
+ },
+ {
+ "label":"Number of questions to be shown:",
+ "description":"Create a randomized batch of questions from the total."
+ },
+ {
+ "label":"Quiz finished",
+ "fields":[
+ {
+ "label":"Display results"
+ },
+ {
+ "label":"Display solution button"
+ },
+ {
+ "label":"No results message",
+ "description":"Text displayed on end page when \"Display results\" is disabled",
+ "default":"Finished"
+ },
+ {
+ "label":"Feedback heading",
+ "default":"Your result:",
+ "description":"This heading will be displayed at the end of the quiz when the user has answered all questions."
+ },
+ {
+ "label":"Overall Feedback",
+ "fields":[
+ {
+ "widgets":[
+
+ ],
+ "label":"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":"Mostrar solución",
+ "description":"Text for the solution button."
+ },
+ {
+ "label":"Retry button label",
+ "default":"Reintentar",
+ "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":"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":"Deshabilitado"
+ }
+ ]
+ },
+ {
+ "label":"Ocultar el botón de \"Reintentar\"",
+ "description":"Esta opción determina si el botón \"Reintentar\" se muestra en todas las preguntas, se desactiva para todas, o se configura para cada pregunta individualmente.",
+ "options":[
+ {
+ "label":"Habilitado"
+ },
+ {
+ "label":"Deshabilitado"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/language/et.json b/language/et.json
new file mode 100644
index 0000000..b29dd97
--- /dev/null
+++ b/language/et.json
@@ -0,0 +1,255 @@
+{
+ "semantics":[
+ {
+ "label":"Quiz introduction",
+ "fields":[
+ {
+ "label":"Display introduction"
+ },
+ {
+ "label":"Title",
+ "description":"This title will be displayed above the introduction text."
+ },
+ {
+ "label":"Introduction text",
+ "description":"This text will be displayed before the quiz starts."
+ },
+ {
+ "label":"Start button text",
+ "default":"Start Quiz"
+ },
+ {
+ "label":"Background image",
+ "description":"An optional background image for the introduction."
+ }
+ ]
+ },
+ {
+ "label":"Background image",
+ "description":"An optional background image for the Question set."
+ },
+ {
+ "label":"Progress indicator",
+ "description":"Question set progress indicator style.",
+ "options":[
+ {
+ "label":"Textual"
+ },
+ {
+ "label":"Dots"
+ }
+ ],
+ "default":"dots"
+ },
+ {
+ "label":"Pass percentage",
+ "description":"Percentage of Total score required for passing the quiz."
+ },
+ {
+ "label":"Questions",
+ "widgets":[
+ {
+ "label":"Default"
+ },
+ {
+ "label":"Textual"
+ }
+ ],
+ "entity":"question",
+ "field":{
+ "label":"Question type",
+ "description":"Library for this question."
+ }
+ },
+ {
+ "label":"Interface texts in quiz",
+ "fields":[
+ {
+ "label":"Back button",
+ "default":"Previous question"
+ },
+ {
+ "label":"Next button",
+ "default":"Next question"
+ },
+ {
+ "label":"Finish button",
+ "default":"Finish"
+ },
+ {
+ "label":"Progress text",
+ "description":"Text used if textual progress is selected.",
+ "default":"Question: @current of @total questions"
+ },
+ {
+ "label":"Label for jumping to a certain question",
+ "description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
+ "default":"Question %d of %total"
+ },
+ {
+ "label":"Copyright dialog question label",
+ "default":"Küsimus"
+ },
+ {
+ "label":"Readspeaker progress",
+ "description":"May use @current and @total question variables",
+ "default":"Question @current of @total"
+ },
+ {
+ "label":"Unanswered question text",
+ "default":"Unanswered"
+ },
+ {
+ "label":"Answered question text",
+ "default":"Answered"
+ },
+ {
+ "label":"Current question text",
+ "default":"Current question"
+ }
+ ]
+ },
+ {
+ "label":"Disable backwards navigation",
+ "description":"This option will only allow you to move forward in Question Set"
+ },
+ {
+ "label":"Randomize questions",
+ "description":"Enable to randomize the order of questions on display."
+ },
+ {
+ "label":"Number of questions to be shown:",
+ "description":"Create a randomized batch of questions from the total."
+ },
+ {
+ "label":"Quiz finished",
+ "fields":[
+ {
+ "label":"Display results"
+ },
+ {
+ "label":"Display solution button"
+ },
+ {
+ "label":"No results message",
+ "description":"Text displayed on end page when \"Display results\" is disabled",
+ "default":"Finished"
+ },
+ {
+ "label":"Feedback heading",
+ "default":"Your result:",
+ "description":"This heading will be displayed at the end of the quiz when the user has answered all questions."
+ },
+ {
+ "label":"Overall Feedback",
+ "fields":[
+ {
+ "widgets":[
+
+ ],
+ "label":"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":"Õige vastus",
+ "description":"Text for the solution button."
+ },
+ {
+ "label":"Proovi uuesti nupu silt",
+ "default":"Proovi uuesti",
+ "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":"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"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/language/fi.json b/language/fi.json
new file mode 100644
index 0000000..7a88238
--- /dev/null
+++ b/language/fi.json
@@ -0,0 +1,255 @@
+{
+ "semantics":[
+ {
+ "label":"Quiz introduction",
+ "fields":[
+ {
+ "label":"Display introduction"
+ },
+ {
+ "label":"Otsikko",
+ "description":"This title will be displayed above the introduction text."
+ },
+ {
+ "label":"Introduction text",
+ "description":"This text will be displayed before the quiz starts."
+ },
+ {
+ "label":"Start button text",
+ "default":"Start Quiz"
+ },
+ {
+ "label":"Background image",
+ "description":"An optional background image for the introduction."
+ }
+ ]
+ },
+ {
+ "label":"Background image",
+ "description":"An optional background image for the Question set."
+ },
+ {
+ "label":"Progress indicator",
+ "description":"Question set progress indicator style.",
+ "options":[
+ {
+ "label":"Textual"
+ },
+ {
+ "label":"Dots"
+ }
+ ],
+ "default":"dots"
+ },
+ {
+ "label":"Pass percentage",
+ "description":"Percentage of Total score required for passing the quiz."
+ },
+ {
+ "label":"Questions",
+ "widgets":[
+ {
+ "label":"Default"
+ },
+ {
+ "label":"Textual"
+ }
+ ],
+ "entity":"question",
+ "field":{
+ "label":"Question type",
+ "description":"Library for this question."
+ }
+ },
+ {
+ "label":"Interface texts in quiz",
+ "fields":[
+ {
+ "label":"Back button",
+ "default":"Previous question"
+ },
+ {
+ "label":"Next button",
+ "default":"Next question"
+ },
+ {
+ "label":"Finish button",
+ "default":"Finish"
+ },
+ {
+ "label":"Progress text",
+ "description":"Text used if textual progress is selected.",
+ "default":"Question: @current of @total questions"
+ },
+ {
+ "label":"Label for jumping to a certain question",
+ "description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
+ "default":"Question %d of %total"
+ },
+ {
+ "label":"Copyright dialog question label",
+ "default":"Question"
+ },
+ {
+ "label":"Readspeaker progress",
+ "description":"May use @current and @total question variables",
+ "default":"Question @current of @total"
+ },
+ {
+ "label":"Unanswered question text",
+ "default":"Unanswered"
+ },
+ {
+ "label":"Answered question text",
+ "default":"Answered"
+ },
+ {
+ "label":"Current question text",
+ "default":"Current question"
+ }
+ ]
+ },
+ {
+ "label":"Disable backwards navigation",
+ "description":"This option will only allow you to move forward in Question Set"
+ },
+ {
+ "label":"Randomize questions",
+ "description":"Enable to randomize the order of questions on display."
+ },
+ {
+ "label":"Number of questions to be shown:",
+ "description":"Create a randomized batch of questions from the total."
+ },
+ {
+ "label":"Quiz finished",
+ "fields":[
+ {
+ "label":"Display results"
+ },
+ {
+ "label":"Display solution button"
+ },
+ {
+ "label":"No results message",
+ "description":"Text displayed on end page when \"Display results\" is disabled",
+ "default":"Finished"
+ },
+ {
+ "label":"Feedback heading",
+ "default":"Your result:",
+ "description":"This heading will be displayed at the end of the quiz when the user has answered all questions."
+ },
+ {
+ "label":"Overall Feedback",
+ "fields":[
+ {
+ "widgets":[
+
+ ],
+ "label":"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":"Yritä uudelleen",
+ "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":"\"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":"Pois käytöstä"
+ }
+ ]
+ },
+ {
+ "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.",
+ "options":[
+ {
+ "label":"Käytössä kaikissa"
+ },
+ {
+ "label":"Pois käytöstä"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/language/fr.json b/language/fr.json
index dc445fa..b1c191e 100644
--- a/language/fr.json
+++ b/language/fr.json
@@ -1,229 +1,255 @@
{
- "semantics": [
+ "semantics":[
{
- "label": "Introduction du Quiz ",
- "fields": [
+ "label":"Introduction du Quiz ",
+ "fields":[
{
- "label": "Afficher l'introduction"
+ "label":"Afficher l'introduction"
},
{
- "label": "Titre",
- "description": "Ce titre sera affiché au-dessus de votre texte d'introduction."
+ "label":"Titre",
+ "description":"Ce titre sera affiché au-dessus de votre texte d'introduction."
},
{
- "label": "Texte d'introduction ",
- "description": "Ce texte sera affiché avant le démarrage du quiz."
+ "label":"Texte d'introduction ",
+ "description":"Ce texte sera affiché avant le démarrage du quiz."
},
{
- "label": "Texte du bouton de démarrage",
- "default": "Commencer"
+ "label":"Texte du bouton de démarrage",
+ "default":"Commencer"
},
{
- "label": "Image d'arrière-plan",
- "description": "Image d'arrière-plan optionnelle pour l'introduction."
+ "label":"Image d'arrière-plan",
+ "description":"Image d'arrière-plan optionnelle pour l'introduction."
}
]
},
{
- "label": "Image d'arrière-plan",
- "description": "Image d'arrière-plan optionnelle pour la série de questions."
+ "label":"Image d'arrière-plan",
+ "description":"Image d'arrière-plan optionnelle pour la série de questions."
},
{
- "label": "Indicateur de progression",
- "description": "Style de l'indicateur de progression de la série de questions.",
- "options": [
+ "label":"Indicateur de progression",
+ "description":"Style de l'indicateur de progression de la série de questions.",
+ "options":[
{
- "label": "Texte"
+ "label":"Texte"
},
{
- "label": "Points"
- }
- ]
- },
- {
- "label": "Pourcentage de réussite",
- "description": "Pourcentage exigé pour considérer que le quiz est réussi."
- },
- {
- "label": "Questions",
- "widgets": [
- {
- "label": "Par défaut"
- },
- {
- "label": "Texte"
+ "label":"Points"
}
],
- "entity": "question",
- "field": {
- "label": "Type de question",
- "description": "Types possibles pour cette question."
+ "default":"dots"
+ },
+ {
+ "label":"Pourcentage de réussite",
+ "description":"Pourcentage exigé pour considérer que le quiz est réussi."
+ },
+ {
+ "label":"Questions",
+ "widgets":[
+ {
+ "label":"Par défaut"
+ },
+ {
+ "label":"Texte"
+ }
+ ],
+ "entity":"question",
+ "field":{
+ "label":"Type de question",
+ "description":"Types possibles pour cette question."
}
},
{
- "label": "Textes de l'interface du quiz",
- "fields": [
+ "label":"Textes de l'interface du quiz",
+ "fields":[
{
- "label": "Bouton précédent",
- "default": "Retour"
+ "label":"Bouton Retour",
+ "default":"Retour"
},
{
- "label": "Bouton suivant",
- "default": "Suite"
+ "label":"Bouton suivant",
+ "default":"Suite"
},
{
- "label": "Bouton fin",
- "default": "Terminer"
+ "label":"Bouton fin",
+ "default":"Confirmer"
},
{
- "label": "Texte de progression",
- "description": "Texte utilisé si la progression textuelle a été sélectionnée.",
- "default": "Question @current sur @total"
+ "label":"Texte de progression",
+ "description":"Texte utilisé si la progression textuelle a été sélectionnée.",
+ "default":"Question @current sur @total"
},
{
- "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.",
- "default": "Question %d sur %total"
+ "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.",
+ "default":"Question %d sur %total"
},
{
- "label": "Texte de la question de la boîte de dialogue de copyright",
- "default": "Question"
+ "label":"Texte de la question de la boîte de dialogue de copyright",
+ "default":"Question"
},
{
- "label": "Progression pour la synthèse vocale",
- "description": "Vous pouvez utiliser les variables @current et @total",
- "default": "Question @current sur @total"
+ "label":"Progression pour la synthèse vocale",
+ "description":"Vous pouvez utiliser les variables @current et @total",
+ "default":"Question @current sur @total"
},
{
- "label": "Texte d'une question sans réponse",
- "default": "Pas de réponse donnée"
+ "label":"Texte d'une question sans réponse",
+ "default":"Pas de réponse donnée"
},
{
- "label": "Texte d'une question ayant reçu une réponse",
- "default": "Réponse donnée"
+ "label":"Texte d'une question ayant reçu une réponse",
+ "default":"Réponse donnée"
},
{
- "label": "Texte de la question en cours",
- "default": "Question en cours"
+ "label":"Texte de la question en cours",
+ "default":"Question en cours"
}
]
},
{
- "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"
+ "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"
},
{
- "label": "Afficher les question dans un ordre aléatoire",
- "description": "Ceci permet d'afficher les questions dans un ordre aléatoire."
+ "label":"Afficher les question dans un ordre aléatoire",
+ "description":"Les réponses possibles seront affichées dans l'ordre aléatoire."
},
{
- "label": "Nombre de questions à afficher:",
- "description": "Génère aléatoire un jeu de question parmi toutes les questions disponibles."
+ "label":"Nombre de questions à afficher:",
+ "description":"Génère aléatoire un jeu de question parmi toutes les questions disponibles."
},
{
- "label": "Quiz terminé",
- "fields": [
+ "label":"Quiz terminé",
+ "fields":[
{
- "label": "Afficher les résultats"
+ "label":"Afficher les résultats"
},
{
- "label": "Message si pas de résultats",
- "description": "Texte affiché sur la page finale si l'option \"Afficher les résultats\" est désactivée.",
- "default": "Terminé"
+ "label":"Display solution button"
},
{
- "label": "Titre des commentaires",
- "default": "Vos résultats :",
- "description": "Ce titre sera affiché à la fin du quiz quand l'utilisateur aura répondu à toutes les questions."
+ "label":"Message si pas de résultats",
+ "description":"Texte affiché sur la page finale si l'option \"Afficher les résultats\" est désactivée.",
+ "default":"Terminé"
},
{
- "label": "Texte d'affichage du score",
- "description": "Texte utilisé pour afficher le score total de l'utilisateur. \"@score\" sera remplacé par le score de l'utilisateur, \"@total\" sera remplacé par le score maximum possible.",
- "default": "Vous avez obtenu @score point(s) sur @total"
+ "label":"Titre des commentaires",
+ "default":"Vos résultats :",
+ "description":"Ce titre sera affiché à la fin du quiz quand l'utilisateur aura répondu à toutes les questions."
},
{
- "label": "Commentaire de félicitation",
- "placeholder": "Bravo !",
- "default": "Bravo !",
- "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",
- "default": "Vous avez obtenu un très bon score !",
- "description": "Commentaire affiché lors du passage du quiz avec succès."
- },
- {
- "label": "Commentaire en cas d'échec",
- "default": "Vous n'avez pas réussi ce questionnaire.",
- "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",
- "default": "Refaites un essai !",
- "description": "Commentaire additionnel affiché lors de l'échec au quiz."
- },
- {
- "label": "Texte du bouton \"Solution\"",
- "default": "Voir la solution",
- "description": "Texte pour le bouton de solution."
- },
- {
- "label": "Texte du bouton \"Recommencer\"",
- "default": "Recommencer",
- "description": "Texte pour le bouton Recommencer."
- },
- {
- "label": "Texte pour le bouton de fin",
- "default": "Terminer"
- },
- {
- "label": "Afficher une vidéo avant l'affichage des résultats du quiz"
- },
- {
- "label": "Activer le bouton \"Passer la vidéo\""
- },
- {
- "label": "Texte du bouton \"Passer la vidéo\"",
- "default": "Passer la vidéo"
- },
- {
- "label": "Vidéo en cas de succès",
- "description": "Vidéo affichée si l'utilisateur réussit le quiz."
- },
- {
- "label": "Vidéo en cas d'échec",
- "description": "Vidéo affichée si l'utilisateur échoue au quiz."
- }
- ]
- },
- {
- "label": "Options pour les boutons \"Montrer la solution\" et \"Recommencer\".",
- "fields": [
- {
- "label": "Ecraser le bouton \"Voir la solution\"",
- "description": "Cette option détermine si le bouton \"Voir la solution\" sera affiché pour toutes les questions, désactivé pour toutes ou configuré pour chaque question individuellement.",
- "options": [
+ "label":"Opacité des étiquettes",
+ "fields":[
{
- "label": "Activé"
- },
- {
- "label": "Désactivé"
+ "widgets":[
+
+ ],
+ "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": "Ecraser 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.",
- "options": [
+ "label":"Old Feedback",
+ "fields":[
{
- "label": "Activé"
+ "label":"Commentaire de félicitation",
+ "description":"Ce commentaire sera affiché au-dessus du score de l'utilisateur si celui-ci réussit le quiz."
},
{
- "label": "Désactivé"
+ "label":"Commentaire en cas de succès",
+ "description":"Commentaire affiché lors du passage du quiz avec succès."
+ },
+ {
+ "label":"Commentaire en cas d'échec",
+ "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",
+ "description":"Commentaire additionnel affiché lors de l'échec au quiz."
+ }
+ ]
+ },
+ {
+ "label":"Texte du bouton \"Solution\"",
+ "default":"Voir la solution",
+ "description":"Texte pour le bouton de solution."
+ },
+ {
+ "label":"Texte du bouton \"Recommencer\"",
+ "default":"Recommencer",
+ "description":"Texte pour le bouton Recommencer."
+ },
+ {
+ "label":"Texte pour le bouton de fin",
+ "default":"Confirmer"
+ },
+ {
+ "label":"Afficher une vidéo avant l'affichage des résultats du quiz"
+ },
+ {
+ "label":"Activer le bouton \"Passer la vidéo\""
+ },
+ {
+ "label":"Texte du bouton \"Passer la vidéo\"",
+ "default":"Passer la vidéo"
+ },
+ {
+ "label":"Vidéo en cas de succès",
+ "description":"Vidéo affichée si l'utilisateur réussit le quiz."
+ },
+ {
+ "label":"Vidéo en cas d'échec",
+ "description":"Vidéo affichée si l'utilisateur échoue au quiz."
+ }
+ ]
+ },
+ {
+ "label":"Options pour les boutons \"Montrer la solution\" et \"Recommencer\".",
+ "fields":[
+ {
+ "label":"Ecraser 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":"Désactivé"
+ }
+ ]
+ },
+ {
+ "label":"Ecraser 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.",
+ "options":[
+ {
+ "label":"Activé"
+ },
+ {
+ "label":"Désactivé"
}
]
}
]
}
]
-}
+}
\ No newline at end of file
diff --git a/language/he.json b/language/he.json
new file mode 100644
index 0000000..c97b04e
--- /dev/null
+++ b/language/he.json
@@ -0,0 +1,255 @@
+{
+ "semantics":[
+ {
+ "label":"Quiz introduction",
+ "fields":[
+ {
+ "label":"Display introduction"
+ },
+ {
+ "label":"Title",
+ "description":"This title will be displayed above the introduction text."
+ },
+ {
+ "label":"Introduction text",
+ "description":"This text will be displayed before the quiz starts."
+ },
+ {
+ "label":"Start button text",
+ "default":"Start Quiz"
+ },
+ {
+ "label":"Background image",
+ "description":"An optional background image for the introduction."
+ }
+ ]
+ },
+ {
+ "label":"Background image",
+ "description":"An optional background image for the Question set."
+ },
+ {
+ "label":"Progress indicator",
+ "description":"Question set progress indicator style.",
+ "options":[
+ {
+ "label":"Textual"
+ },
+ {
+ "label":"Dots"
+ }
+ ],
+ "default":"dots"
+ },
+ {
+ "label":"Pass percentage",
+ "description":"Percentage of Total score required for passing the quiz."
+ },
+ {
+ "label":"Questions",
+ "widgets":[
+ {
+ "label":"Default"
+ },
+ {
+ "label":"Textual"
+ }
+ ],
+ "entity":"question",
+ "field":{
+ "label":"Question type",
+ "description":"Library for this question."
+ }
+ },
+ {
+ "label":"Interface texts in quiz",
+ "fields":[
+ {
+ "label":"Back button",
+ "default":"Previous question"
+ },
+ {
+ "label":"Next button",
+ "default":"Next question"
+ },
+ {
+ "label":"Finish button",
+ "default":"Finish"
+ },
+ {
+ "label":"Progress text",
+ "description":"Text used if textual progress is selected.",
+ "default":"Question: @current of @total questions"
+ },
+ {
+ "label":"Label for jumping to a certain question",
+ "description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
+ "default":"Question %d of %total"
+ },
+ {
+ "label":"Copyright dialog question label",
+ "default":"Question"
+ },
+ {
+ "label":"Readspeaker progress",
+ "description":"May use @current and @total question variables",
+ "default":"Question @current of @total"
+ },
+ {
+ "label":"Unanswered question text",
+ "default":"Unanswered"
+ },
+ {
+ "label":"Answered question text",
+ "default":"Answered"
+ },
+ {
+ "label":"Current question text",
+ "default":"Current question"
+ }
+ ]
+ },
+ {
+ "label":"Disable backwards navigation",
+ "description":"This option will only allow you to move forward in Question Set"
+ },
+ {
+ "label":"Randomize questions",
+ "description":"Enable to randomize the order of questions on display."
+ },
+ {
+ "label":"Number of questions to be shown:",
+ "description":"Create a randomized batch of questions from the total."
+ },
+ {
+ "label":"Quiz finished",
+ "fields":[
+ {
+ "label":"Display results"
+ },
+ {
+ "label":"Display solution button"
+ },
+ {
+ "label":"No results message",
+ "description":"Text displayed on end page when \"Display results\" is disabled",
+ "default":"Finished"
+ },
+ {
+ "label":"Feedback heading",
+ "default":"Your result:",
+ "description":"This heading will be displayed at the end of the quiz when the user has answered all questions."
+ },
+ {
+ "label":"Overall Feedback",
+ "fields":[
+ {
+ "widgets":[
+
+ ],
+ "label":"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":"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"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/language/hu.json b/language/hu.json
new file mode 100644
index 0000000..c97b04e
--- /dev/null
+++ b/language/hu.json
@@ -0,0 +1,255 @@
+{
+ "semantics":[
+ {
+ "label":"Quiz introduction",
+ "fields":[
+ {
+ "label":"Display introduction"
+ },
+ {
+ "label":"Title",
+ "description":"This title will be displayed above the introduction text."
+ },
+ {
+ "label":"Introduction text",
+ "description":"This text will be displayed before the quiz starts."
+ },
+ {
+ "label":"Start button text",
+ "default":"Start Quiz"
+ },
+ {
+ "label":"Background image",
+ "description":"An optional background image for the introduction."
+ }
+ ]
+ },
+ {
+ "label":"Background image",
+ "description":"An optional background image for the Question set."
+ },
+ {
+ "label":"Progress indicator",
+ "description":"Question set progress indicator style.",
+ "options":[
+ {
+ "label":"Textual"
+ },
+ {
+ "label":"Dots"
+ }
+ ],
+ "default":"dots"
+ },
+ {
+ "label":"Pass percentage",
+ "description":"Percentage of Total score required for passing the quiz."
+ },
+ {
+ "label":"Questions",
+ "widgets":[
+ {
+ "label":"Default"
+ },
+ {
+ "label":"Textual"
+ }
+ ],
+ "entity":"question",
+ "field":{
+ "label":"Question type",
+ "description":"Library for this question."
+ }
+ },
+ {
+ "label":"Interface texts in quiz",
+ "fields":[
+ {
+ "label":"Back button",
+ "default":"Previous question"
+ },
+ {
+ "label":"Next button",
+ "default":"Next question"
+ },
+ {
+ "label":"Finish button",
+ "default":"Finish"
+ },
+ {
+ "label":"Progress text",
+ "description":"Text used if textual progress is selected.",
+ "default":"Question: @current of @total questions"
+ },
+ {
+ "label":"Label for jumping to a certain question",
+ "description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
+ "default":"Question %d of %total"
+ },
+ {
+ "label":"Copyright dialog question label",
+ "default":"Question"
+ },
+ {
+ "label":"Readspeaker progress",
+ "description":"May use @current and @total question variables",
+ "default":"Question @current of @total"
+ },
+ {
+ "label":"Unanswered question text",
+ "default":"Unanswered"
+ },
+ {
+ "label":"Answered question text",
+ "default":"Answered"
+ },
+ {
+ "label":"Current question text",
+ "default":"Current question"
+ }
+ ]
+ },
+ {
+ "label":"Disable backwards navigation",
+ "description":"This option will only allow you to move forward in Question Set"
+ },
+ {
+ "label":"Randomize questions",
+ "description":"Enable to randomize the order of questions on display."
+ },
+ {
+ "label":"Number of questions to be shown:",
+ "description":"Create a randomized batch of questions from the total."
+ },
+ {
+ "label":"Quiz finished",
+ "fields":[
+ {
+ "label":"Display results"
+ },
+ {
+ "label":"Display solution button"
+ },
+ {
+ "label":"No results message",
+ "description":"Text displayed on end page when \"Display results\" is disabled",
+ "default":"Finished"
+ },
+ {
+ "label":"Feedback heading",
+ "default":"Your result:",
+ "description":"This heading will be displayed at the end of the quiz when the user has answered all questions."
+ },
+ {
+ "label":"Overall Feedback",
+ "fields":[
+ {
+ "widgets":[
+
+ ],
+ "label":"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":"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"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/language/it.json b/language/it.json
index d520b11..9502545 100644
--- a/language/it.json
+++ b/language/it.json
@@ -1,213 +1,255 @@
{
- "semantics": [
+ "semantics":[
{
- "label": "Introduzione quiz",
- "fields": [
+ "label":"Introduzione al quiz",
+ "fields":[
{
- "label": "Visualizza introduzione"
+ "label":"Visualizza l'introduzione"
},
{
- "label": "Titolo",
- "description": "Questo titolo verrà visualizzato sopra il testo introduttivo."
+ "label":"Titolo",
+ "description":"Questo titolo sarà visualizzato sopra il testo introduttivo."
},
{
- "label": "Testo introduttivo",
- "description": "Questo testo verrà visualizzato prima dell'inizio del quiz."
+ "label":"Testo di introduzione",
+ "description":"Questo testo sarà visualizzato prima dell'inizio del quiz."
},
{
- "label": "Testo pulsante Start"
+ "label":"Testo pulsante di avvio",
+ "default":"Inizia il quiz"
},
{
- "label": "Immagine di sfondo",
- "description": "Immagine di sfondo facoltativa per l'introduzione."
+ "label":"Immagine di sfondo",
+ "description":"Immagine di sfondo facoltativa per l'introduzione."
}
]
},
{
- "label": "Immagine di sfondo",
- "description": "Immagine di sfondo facoltativa per il set di domande."
+ "label":"Immagine di sfondo",
+ "description":"Immagine di sfondo facoltativa per il gruppo di domande."
},
{
- "label": "Indicatore di avanzamento",
- "description": "Stile dell'indicatore di avanzamento del set di domande.",
- "options": [
+ "label":"Indicatore di avanzamento",
+ "description":"Stile dell'indicatore di avanzamento del gruppo di domande.",
+ "options":[
{
- "label": "Testuale"
+ "label":"Testuale"
},
{
- "label": "Punti"
- }
- ]
- },
- {
- "label": "Percentuale superamento quiz",
- "description": "Percentuale minima del punteggio totale richiesto per passare il quiz."
- },
- {
- "label": "Domande",
- "widgets": [
- {
- "label": "Predefinito"
- },
- {
- "label": "Testuale"
+ "label":"Punti"
}
],
- "entity": "domanda",
- "field": {
- "label": "Tipo di domanda",
- "description": "Biblioteca per questa domanda."
+ "default":"dots"
+ },
+ {
+ "label":"Percentuale di superamento della prova",
+ "description":"Percentuale del punteggio totale richiesto per passare il quiz."
+ },
+ {
+ "label":"Domande",
+ "widgets":[
+ {
+ "label":"Predefinito"
+ },
+ {
+ "label":"Testuale"
+ }
+ ],
+ "entity":"domanda",
+ "field":{
+ "label":"Tipo di domanda",
+ "description":"Libreria per questa domanda."
}
},
{
- "label": "Testi di interfaccia nel quiz",
- "fields": [
+ "label":"Testi di interfaccia nel quiz",
+ "fields":[
{
- "label": "Pulsante Indietro"
+ "label":"Pulsante indietro",
+ "default":"Domanda precedente"
},
{
- "label": "Pulsante Prossimo"
+ "label":"Pulsante Avanti",
+ "default":"Prossima domanda"
},
{
- "label": "Pulsante Fine"
+ "label":"Pulsante Fine",
+ "default":"Finito"
},
{
- "label": "Testo Avanzamento",
- "description": "esto utilizzato se il testo Avanzamento è selezionato."
+ "label":"Testo di avanzamento",
+ "description":"Testo usate se il testo di avanzamento è selezionato.",
+ "default":"Domanda: @current di @total domande totali"
},
{
- "label": "Label for jumping to a certain question",
- "description": "You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
- "default": "Question %d of %total"
+ "label":"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.",
+ "default":"Domanda %d di %total"
},
{
- "label": "Copyright dialog question label",
- "default": "Question"
+ "label":"Etichetta della domanda nella finestra sul diritto d'autore",
+ "default":"Domanda"
},
{
- "label": "Readspeaker progress",
- "description": "May use @current and @total question variables",
- "default": "Question @current of @total"
+ "label":"Progresso del dispositvo di riproduzione vocale",
+ "description":"Puoi utilizzare le variabili di domanda @current e @total",
+ "default":"Domanda @current di @total"
},
{
- "label": "Unanswered question text",
- "default": "Unanswered"
+ "label":"Testo della domanda senza risposta",
+ "default":"Senza risposta"
},
{
- "label": "Answered question text",
- "default": "Answered"
+ "label":"Testo della domanda con risposta",
+ "default":"Risposta"
},
{
- "label": "Current question text",
- "default": "Current question"
+ "label":"Testo della domanda corrente",
+ "default":"Domanda corrente"
}
]
},
{
- "label": "Disable backwards navigation",
- "description": "This option will only allow you to move forward in Question Set"
+ "label":"Disattiva la navigazione all'indietro",
+ "description":"Questa opzione ti permetterà solo di spostarti in avanti in Question Set (Insieme di domande)"
},
{
- "label": "Randomize questions",
- "description": "Enable to randomize the order of questions on display."
+ "label":"Rendi casuale l'ordine delle domande",
+ "description":"Abilita per rendere casuale l'ordine delle domande visualizzate."
},
{
- "label": "Number of questions to be shown:",
- "description": "Create a randomized batch of questions from the total."
+ "label":"Numero di domande da mostrare:",
+ "description":"Crea un raggruppamento casuale dal totale delle domande."
},
{
- "label": "Quiz terminato",
- "fields": [
+ "label":"Quiz terminato",
+ "fields":[
{
- "label": "Visualizza risultati"
+ "label":"Visualizza i risultati"
},
{
- "label": "No results message",
- "description": "Text displayed on end page when \"Display results\" is disabled",
- "default": "Finished"
+ "label":"Pulsante visualizza soluzione"
},
{
- "label": "Intestazione Feedback",
- "description": "Questa intestazione verrà visualizzata alla fine del quiz, dopo che l'utente avrà risposto a tutte le domande."
+ "label":"Messaggio di nessun risultato",
+ "description":"Testo visualizzato nella pagina finale quando \"Visualizza risultati\" è disattivato",
+ "default":"Finito"
},
{
- "label": "Testo visualizza punteggio",
- "description": "Testo utilizzato per visualizzare il punteggio Totale dell'utente. \"@score\" verrà rimpiazzato dal punteggio calcolato, \"@total\" sarà rimpiazzato dal punteggio massimo possibile. "
+ "label":"Intestazione di feedback",
+ "default":"Il tuo risultato:",
+ "description":"Questa intestazione sarà visualizzata alla fine del quiz, dopo che l'utente avrà risposto a tutte le domande."
},
{
- "label": "Messaggio di superamento quiz",
- "description": "Questo testo verrà visualizzato sopra il punteggio se l'utente ha superato con successo il quiz."
- },
- {
- "label": "Commento di superamento quiz",
- "description": "Questo commento verrà visualizzato dopo il punteggio se l'utente ha superato con successo il quiz."
- },
- {
- "label": "Titolo quiz fallito",
- "description": "Questo testo verrà visualizzato sopra il punteggio se l'utente non ha superato il quiz."
- },
- {
- "label": "Commento quiz fallito",
- "description": "Questo commento verrà visualizzato dopo il punteggio se l'utente non ha superato il quiz."
- },
- {
- "label": "Etichetta pulsante Soluzione",
- "description": "Testo per il pulsante Soluzione."
- },
- {
- "label": "Etichetta pulsante Riprova",
- "description": "Testo per il pulsante Riprova."
- },
- {
- "label": "Testo pulsante Fine"
- },
- {
- "label": "Visualizza il video prima dei risultati del quiz"
- },
- {
- "label": "Abilita pulsante Salta video"
- },
- {
- "label": "Etichetta pulsante Salta video"
- },
- {
- "label": "Video di superamento quiz",
- "description": "Questo video verrà visualizzato sopra il punteggio se l'utente ha superato con successo il quiz."
- },
- {
- "label": "Video quiz fallito",
- "description": "Questo testo verrà visualizzato se l'utente non ha superato il quiz."
- }
- ]
- },
- {
- "label": "Impostazioni per i pulsanti \"Mostra soluzione\" e \"Riprova\".",
- "fields": [
- {
- "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":"Feedback generale",
+ "fields":[
{
- "label": "Enabled"
- },
- {
- "label": "Disabled"
+ "widgets":[
+
+ ],
+ "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!",
+ "entity":"Intervallo",
+ "field":{
+ "fields":[
+ {
+ "label":"Intervallo di punteggio"
+ },
+ {
+
+ },
+ {
+ "label":"Feedback per un intervallo di punteggio definito",
+ "placeholder":"Compila il feedback"
+ }
+ ]
+ }
}
]
},
{
- "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":"Vecchio feedback",
+ "fields":[
{
- "label": "Enabled"
+ "label":"Messaggio di superamento quiz",
+ "description":"Questo testo verrà visualizzato sopra il punteggio se l'utente ha superato con successo il quiz."
},
{
- "label": "Disabled"
+ "label":"Commento di superamento quiz",
+ "description":"Questo commento verrà visualizzato dopo il punteggio se l'utente ha superato con successo il quiz."
+ },
+ {
+ "label":"Titolo quiz fallito",
+ "description":"Questo testo verrà visualizzato sopra il punteggio se l'utente non ha superato il quiz."
+ },
+ {
+ "label":"Commento quiz fallito",
+ "description":"Questo commento verrà visualizzato dopo il punteggio se l'utente non ha superato il quiz."
+ }
+ ]
+ },
+ {
+ "label":"Etichetta pulsante Soluzione",
+ "default":"Mostra la soluzione",
+ "description":"Testo per il pulsante Soluzione."
+ },
+ {
+ "label":"Etichetta del pulsante Riprova",
+ "default":"Riprova",
+ "description":"Testo per il pulsante Riprova."
+ },
+ {
+ "label":"Testo pulsante Fine",
+ "default":"Finito"
+ },
+ {
+ "label":"Visualizza il video prima dei risultati del quiz"
+ },
+ {
+ "label":"Abilita pulsante Salta video"
+ },
+ {
+ "label":"Etichetta pulsante Salta video",
+ "default":"Salta video"
+ },
+ {
+ "label":"Video di superamento quiz",
+ "description":"Questo video verrà visualizzato sopra il punteggio se l'utente ha superato con successo il quiz."
+ },
+ {
+ "label":"Video quiz fallito",
+ "description":"Questo testo verrà visualizzato se l'utente non ha superato il quiz."
+ }
+ ]
+ },
+ {
+ "label":"Impostazioni per i pulsanti \"Mostra soluzione\" e \"Riprova\".",
+ "fields":[
+ {
+ "label":"Sovrascrivi il pulsante Mostra soluzione",
+ "description":"Questa opzione determina se il pulsante \"Mostra soluzione\" sarà visualizzato per tutte le domande, disabilitato per tutti o configurato individualmente per ogni domanda.",
+ "options":[
+ {
+ "label":"Attivato"
+ },
+ {
+ "label":"Disabilitato"
+ }
+ ]
+ },
+ {
+ "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.",
+ "options":[
+ {
+ "label":"Attivo"
+ },
+ {
+ "label":"Disattivato"
}
]
}
]
}
]
-}
+}
\ No newline at end of file
diff --git a/language/ja.json b/language/ja.json
new file mode 100644
index 0000000..23b120a
--- /dev/null
+++ b/language/ja.json
@@ -0,0 +1,255 @@
+{
+ "semantics":[
+ {
+ "label":"クイズ概要",
+ "fields":[
+ {
+ "label":"概要を表示"
+ },
+ {
+ "label":"タイトル",
+ "description":"このタイトルは、概要文の上に表示されます。"
+ },
+ {
+ "label":"概要文",
+ "description":"このテキストは、クイズが始まる前に表示されます。"
+ },
+ {
+ "label":"スタート ボタンのテキスト",
+ "default":"クイズをスタート"
+ },
+ {
+ "label":"背景画像",
+ "description":"概要のオプションの背景画像"
+ }
+ ]
+ },
+ {
+ "label":"背景画像",
+ "description":"設問集のオプションの背景画像"
+ },
+ {
+ "label":"進行状況インジケーター",
+ "description":"設問集の進捗状況インジケータースタイル",
+ "options":[
+ {
+ "label":"原文"
+ },
+ {
+ "label":"ドット"
+ }
+ ],
+ "default":"dots"
+ },
+ {
+ "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":"結果のメッセージはありません",
+ "description":"「結果を表示」が無効のとき最後のページにに表示されるテキスト",
+ "default":"完了"
+ },
+ {
+ "label":"フィードバックの見出し",
+ "default":"結果:",
+ "description":"この見出しは、ユーザーがすべての設問に答えたときクイズの終わりに表示されます。"
+ },
+ {
+ "label":"全体のフィードバック",
+ "fields":[
+ {
+ "widgets":[
+
+ ],
+ "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":"このオプションは、すべての設問に対して「解を表示」ボタンが表示されるか、すべての設問に対して無効になるか、各設問ごとに個別に設定されるかを決定します。",
+ "options":[
+ {
+ "label":"有効"
+ },
+ {
+ "label":"無効"
+ }
+ ]
+ },
+ {
+ "label":"「リトライ」ボタンを上書き",
+ "description":"このオプションは、すべての設問に対して「リトライ」ボタンが表示されるか、すべての設問に対して無効になるか、各設問ごとに個別に設定されるかを決定します。",
+ "options":[
+ {
+ "label":"有効"
+ },
+ {
+ "label":"無効"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/language/ko.json b/language/ko.json
new file mode 100644
index 0000000..c97b04e
--- /dev/null
+++ b/language/ko.json
@@ -0,0 +1,255 @@
+{
+ "semantics":[
+ {
+ "label":"Quiz introduction",
+ "fields":[
+ {
+ "label":"Display introduction"
+ },
+ {
+ "label":"Title",
+ "description":"This title will be displayed above the introduction text."
+ },
+ {
+ "label":"Introduction text",
+ "description":"This text will be displayed before the quiz starts."
+ },
+ {
+ "label":"Start button text",
+ "default":"Start Quiz"
+ },
+ {
+ "label":"Background image",
+ "description":"An optional background image for the introduction."
+ }
+ ]
+ },
+ {
+ "label":"Background image",
+ "description":"An optional background image for the Question set."
+ },
+ {
+ "label":"Progress indicator",
+ "description":"Question set progress indicator style.",
+ "options":[
+ {
+ "label":"Textual"
+ },
+ {
+ "label":"Dots"
+ }
+ ],
+ "default":"dots"
+ },
+ {
+ "label":"Pass percentage",
+ "description":"Percentage of Total score required for passing the quiz."
+ },
+ {
+ "label":"Questions",
+ "widgets":[
+ {
+ "label":"Default"
+ },
+ {
+ "label":"Textual"
+ }
+ ],
+ "entity":"question",
+ "field":{
+ "label":"Question type",
+ "description":"Library for this question."
+ }
+ },
+ {
+ "label":"Interface texts in quiz",
+ "fields":[
+ {
+ "label":"Back button",
+ "default":"Previous question"
+ },
+ {
+ "label":"Next button",
+ "default":"Next question"
+ },
+ {
+ "label":"Finish button",
+ "default":"Finish"
+ },
+ {
+ "label":"Progress text",
+ "description":"Text used if textual progress is selected.",
+ "default":"Question: @current of @total questions"
+ },
+ {
+ "label":"Label for jumping to a certain question",
+ "description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
+ "default":"Question %d of %total"
+ },
+ {
+ "label":"Copyright dialog question label",
+ "default":"Question"
+ },
+ {
+ "label":"Readspeaker progress",
+ "description":"May use @current and @total question variables",
+ "default":"Question @current of @total"
+ },
+ {
+ "label":"Unanswered question text",
+ "default":"Unanswered"
+ },
+ {
+ "label":"Answered question text",
+ "default":"Answered"
+ },
+ {
+ "label":"Current question text",
+ "default":"Current question"
+ }
+ ]
+ },
+ {
+ "label":"Disable backwards navigation",
+ "description":"This option will only allow you to move forward in Question Set"
+ },
+ {
+ "label":"Randomize questions",
+ "description":"Enable to randomize the order of questions on display."
+ },
+ {
+ "label":"Number of questions to be shown:",
+ "description":"Create a randomized batch of questions from the total."
+ },
+ {
+ "label":"Quiz finished",
+ "fields":[
+ {
+ "label":"Display results"
+ },
+ {
+ "label":"Display solution button"
+ },
+ {
+ "label":"No results message",
+ "description":"Text displayed on end page when \"Display results\" is disabled",
+ "default":"Finished"
+ },
+ {
+ "label":"Feedback heading",
+ "default":"Your result:",
+ "description":"This heading will be displayed at the end of the quiz when the user has answered all questions."
+ },
+ {
+ "label":"Overall Feedback",
+ "fields":[
+ {
+ "widgets":[
+
+ ],
+ "label":"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":"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"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/language/nb.json b/language/nb.json
index 4c2aa48..f4fe6e2 100644
--- a/language/nb.json
+++ b/language/nb.json
@@ -1,228 +1,255 @@
{
- "semantics": [
+ "semantics":[
{
- "label": "Introduksjon",
- "fields": [
+ "label":"Introduksjon",
+ "fields":[
{
- "label": "Vis introduksjon"
+ "label":"Vis introduksjon"
},
{
- "label": "Tittel",
- "description": "Tittel for intoduksjonssiden."
+ "label":"Tittel",
+ "description":"Denne tittelen vil bli vist over introduksjonsteksten."
},
{
- "label": "Introduksjonstekst",
- "description": "Denne teksten vises før spørsmålssettet starter."
+ "label":"Introduksjonstekst",
+ "description":"Denne teksten vises før spørsmålssettet starter."
},
{
- "label": "Tekst til \"Start\" knappen",
- "default": "Start"
+ "label":"Tekst til \"Start\" knappen",
+ "default":"Start"
},
{
- "label": "Bakgrunnsbilde",
- "description": "Bakgrunnsbilde for introduksjonssiden"
+ "label":"Bakgrunnsbilde",
+ "description":"Et valgfritt bakgrunnsbilde for introduksjonssiden."
}
]
},
{
- "label": "Bakgrunnsbilde",
- "description": "Bakgrunnsbilde for spørsmålssettet(ikke obligatorisk)."
+ "label":"Bakgrunnsbilde",
+ "description":"Bakgrunnsbilde for spørsmålssettet (ikke obligatorisk)."
},
{
- "label": "Fremdriftsindikator",
- "description": "Velg om fremdriften skal angis som prikker(få spørsmål) eller som tekst(mange spørsmål).",
- "options": [
+ "label":"Fremdriftsindikator",
+ "description":"Velg om fremdriften skal angis som prikker (få spørsmål) eller som tekst (mange spørsmål).",
+ "options":[
{
- "label": "Angi fremdrift med tekst"
+ "label":"Tekstlig"
},
{
- "label": "Angi fremdrift med prikker"
- }
- ]
- },
- {
- "label": "Krav for å bestå",
- "description": "Antall prosent riktig som kreves for å bestå spørsmålssettet."
- },
- {
- "label": "Spørsmål",
- "entity": "spørsmål",
- "widgets": [
- {
- "label": "Standard"
- },
- {
- "label": "Tekstlig"
+ "label":"Prikker"
}
],
- "field": {
- "label": "Spørsmåltype",
- "description": "Velg spørsmålstype for dette spørsmålet"
+ "default":"dots"
+ },
+ {
+ "label":"Krav for å bestå",
+ "description":"Antall prosent riktig som kreves for å bestå spørsmålssettet."
+ },
+ {
+ "label":"Spørsmål",
+ "widgets":[
+ {
+ "label":"Standard"
+ },
+ {
+ "label":"Tekstlig"
+ }
+ ],
+ "entity":"spørsmål",
+ "field":{
+ "label":"Spørsmåltype",
+ "description":"Velg spørsmålstype for dette spørsmålet"
}
},
{
- "label": "Ledetekster",
- "fields": [
+ "label":"Ledetekster",
+ "fields":[
{
- "label": "Forrige-knappen",
- "default": "Forrige spørsmål"
+ "label":"Forrige-knappen",
+ "default":"Forrige spørsmål"
},
{
- "label": "Neste-knappen",
- "default": "Neste spørsmål"
+ "label":"Neste-knappen",
+ "default":"Neste spørsmål"
},
{
- "label": "Avslutt-knappen",
- "default": "Avslutt"
+ "label":"Avslutt-knappen",
+ "default":"Avslutt"
},
{
- "label": "Fremdriftstekst",
- "description": "Tekst brukt hvis tekstlig angivelse av fremdrift er valgt. Variabler: @current og @total",
- "default": "Deloppgave @current av @total"
+ "label":"Fremgangstekst",
+ "description":"Tekst brukt hvis tekstlig angivelse av fremdrift er valgt. Variabler: @current og @total",
+ "default":"Deloppgave @current av @total"
},
{
- "label": "Merkelapp ved hopping til spørsmål",
- "description": "Du må bruke plassholderen '%d' istedenfor spørsmålsnummeret, og '%total' istedet for totalt antall spørsmål.",
- "default": "Spørsmål %d av %total"
+ "label":"Merkelapp ved hopping til spørsmål",
+ "description":"Du må bruke plassholderen '%d' istedenfor spørsmålsnummeret, og '%total' istedet for totalt antall spørsmål.",
+ "default":"Spørsmål %d av %total"
},
{
- "label": "Opphavsrett spørsmål-etikett",
- "default": "Spørsmål"
+ "label":"Opphavsrett spørsmål-etikett",
+ "default":"Spørsmål"
},
{
- "label": "Fremdriftstekst for hjelpemiddelteknologi",
- "description": "Kan bruke @current og @total variabler",
- "default": "Deloppgave @current av @total"
+ "label":"Fremdriftstekst for hjelpemiddelteknologi",
+ "description":"Kan bruke @current og @total variabler",
+ "default":"Deloppgave @current av @total"
},
{
- "label": "Ikke svart på spørsmål-tekst",
- "default": "Ikke svart"
+ "label":"Ikke svart på spørsmål-tekst",
+ "default":"Ikke svart"
},
{
- "label": "Svart på spørsmål-tekst",
- "default": "Svar avgitt"
+ "label":"Svart på spørsmål-tekst",
+ "default":"Svar avgitt"
},
{
- "label": "Aktivt spørsmål-tekst",
- "default": "Aktivt spørsmål"
+ "label":"Aktivt spørsmål-tekst",
+ "default":"Aktivt spørsmål"
}
]
},
{
- "label": "Slå av bakoverknapp",
- "description": "Slå på for å nekte å gå tilbake i Question Set"
+ "label":"Slå av tilbakenavigering",
+ "description":"Slå på for å nekte å gå tilbake i Question Set"
},
{
- "label": "Randomize questions",
- "description": "Enable to randomize the order of questions on display."
+ "label":"Stokk spørsmålene",
+ "description":"Slå på for å vise alternativene i tilfeldig rekkefølge."
},
{
- "label": "Number of questions to be shown:",
- "description": "Create a randomized batch of questions from the total."
+ "label":"Antall spørsmål som skal vises:",
+ "description":"Lag et tilfeldig sett med spørsmål."
},
{
- "label": "Spørsmålssett avslutning",
- "fields": [
+ "label":"Spørsmålssett avslutning",
+ "fields":[
{
- "label": "Vis resultater"
+ "label":"Vis resultater"
},
{
- "label": "Melding når resultater ikke vises",
- "description": "Teksten vises på avslutnings-siden når resultater ikke vises",
- "default": "Ferdig"
+ "label":"Vis resultatknapp"
},
{
- "label": "Overskrift over tilbakemeldinger",
- "default": "Resultat:",
- "description": "Denne overskriften vises over tilbakemeldingene på slutten av spørsmålssettet."
+ "label":"Melding når resultater ikke vises",
+ "description":"Teksten vises på avslutnings-siden når resultater ikke vises",
+ "default":"Ferdig"
},
{
- "label": "Poengvisningstekst",
- "default": "@score av @total poeng",
- "description": "Tekst som viser brukerens oppnådde poeng. \"@score\" blir erstattet med utregnet resultat, \"@total\" blir erstattet med høyest mulige resultat."
+ "label":"Overskrift over tilbakemeldinger",
+ "default":"Resultat:",
+ "description":"Denne overskriften vises over tilbakemeldingene på slutten av spørsmålssettet."
},
{
- "label": "Tittel ved bestått",
- "default": "Gratulerer!",
- "description": "Denne tittelen vises dersom brukeren har bestått spørsmålssettet."
- },
- {
- "label": "Kommentar ved bestått",
- "default": "Dette gikk bra.",
- "description": "Denne kommentaren vises dersom brukeren har bestått spørsmålssettet."
- },
- {
- "label": "Tittel ved ikke bestått",
- "default": "Dette gikk ikke så bra!",
- "description": "Denne tittelen vises dersom brukeren ikke har bestått spørsmålssettet."
- },
- {
- "label": "Kommentar ved ikke bestått",
- "default": "Det er litt mange feil her. Prøv igjen!",
- "description": "Denne kommentaren vises dersom brukeren ikke har bestått spørsmålssettet."
- },
- {
- "label": "Tekst til \"Fasit\" knapp",
- "default": "Gå gjennom fasit",
- "description": ""
- },
- {
- "label": "Tekst til \"Prøv igjen\" knapp",
- "default": "Prøv igjen!",
- "description": ""
- },
- {
- "label": "Tekst til \"Avslutt\" knapp",
- "default": "Avslutt"
- },
- {
- "label": "Vis video før resultatene"
- },
- {
- "label": "Tillat å hoppe over video"
- },
- {
- "label": "Tekst til \"Hopp over video\" knapp",
- "default": "Hopp over"
- },
- {
- "label": "Video ved bestått",
- "description": "Denne videoen vil bli vist dersom brukeren består spørsmålssettet."
- },
- {
- "label": "Video ved ikke bestått",
- "description": "Denne videoen vil bli vist dersom brukeren ikke består spørsmålssettet."
- }
- ]
- },
- {
- "label": "Innstillinger for «Fasit»- og «Prøv igjen»-knapp",
- "fields": [
- {
- "label": "Overstyr «Fasit»-knapp",
- "description": "Dette valget avgjør om «Fasit»-knappen vil vises for alle spørsmål, skjules for alle eller konfigureres individuelt for hvert spørsmål.",
- "options": [
+ "label":"Samlet tilbakemelding",
+ "fields":[
{
- "label": "Aktivert"
- },
- {
- "label": "Deaktivert"
+ "widgets":[
+
+ ],
+ "label":"Spesifiser en egendefinert tilbakemelding for et poengintervall",
+ "description":"Eksempel: 0-20% dårlig poengsum, 21-91% gjennomsnittlig poengsum, 91-100% God poengsum!",
+ "entity":"intervall",
+ "field":{
+ "fields":[
+ {
+ "label":"Poengintervall"
+ },
+ {
+
+ },
+ {
+ "label":"Tilbakemelding for spesifisert poengintervall",
+ "placeholder":"Fyll inn tilbakemelding"
+ }
+ ]
+ }
}
]
},
{
- "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.",
- "options": [
+ "label":"Gammel tilbakemelding",
+ "fields":[
{
- "label": "Aktivert"
+ "label":"Tittel ved bestått",
+ "description":"Denne tittelen vises dersom brukeren har bestått spørsmålssettet."
},
{
- "label": "Deaktivert"
+ "label":"Kommentar ved bestått",
+ "description":"Denne kommentaren vises dersom brukeren har bestått spørsmålssettet."
+ },
+ {
+ "label":"Tittel ved ikke bestått",
+ "description":"Denne tittelen vises dersom brukeren ikke har bestått spørsmålssettet."
+ },
+ {
+ "label":"Kommentar ved ikke bestått",
+ "description":"Denne kommentaren vises dersom brukeren ikke har bestått spørsmålssettet."
+ }
+ ]
+ },
+ {
+ "label":"Tekst til \"Fasit\" knapp",
+ "default":"Vis svar",
+ "description":"Tekst for \"Fasit\" knapp."
+ },
+ {
+ "label":"Tekst til \"Prøv igjen\" knapp",
+ "default":"Prøv igjen",
+ "description":"Tekst til \"Prøv igjen\"-knappen."
+ },
+ {
+ "label":"Avslutt knappetekst",
+ "default":"Bekreft"
+ },
+ {
+ "label":"Vis video før resultatene"
+ },
+ {
+ "label":"Tillat å hoppe over video"
+ },
+ {
+ "label":"Tekst til \"Hopp over video\" knapp",
+ "default":"Hopp over"
+ },
+ {
+ "label":"Video ved bestått",
+ "description":"Denne videoen vil bli vist dersom brukeren består spørsmålssettet."
+ },
+ {
+ "label":"Video ved ikke bestått",
+ "description":"Denne videoen vil bli vist dersom brukeren ikke består spørsmålssettet."
+ }
+ ]
+ },
+ {
+ "label":"Innstillinger for «Fasit»- og «Prøv igjen»-knapp",
+ "fields":[
+ {
+ "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":"Deaktivert"
+ }
+ ]
+ },
+ {
+ "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.",
+ "options":[
+ {
+ "label":"Aktivert"
+ },
+ {
+ "label":"Deaktivert"
}
]
}
]
}
]
-}
+}
\ No newline at end of file
diff --git a/language/nl.json b/language/nl.json
new file mode 100644
index 0000000..0d74118
--- /dev/null
+++ b/language/nl.json
@@ -0,0 +1,255 @@
+{
+ "semantics":[
+ {
+ "label":"Quiz introduction",
+ "fields":[
+ {
+ "label":"Display introduction"
+ },
+ {
+ "label":"Titel",
+ "description":"This title will be displayed above the introduction text."
+ },
+ {
+ "label":"Inleidende tekst",
+ "description":"This text will be displayed before the quiz starts."
+ },
+ {
+ "label":"Start button text",
+ "default":"Start Quiz"
+ },
+ {
+ "label":"Achtergrondafbeelding",
+ "description":"An optional background image for the introduction."
+ }
+ ]
+ },
+ {
+ "label":"Achtergrondafbeelding",
+ "description":"An optional background image for the Question set."
+ },
+ {
+ "label":"Progress indicator",
+ "description":"Question set progress indicator style.",
+ "options":[
+ {
+ "label":"Tekstueel"
+ },
+ {
+ "label":"Dots"
+ }
+ ],
+ "default":"dots"
+ },
+ {
+ "label":"Slagingspercentage",
+ "description":"Percentage van de Totale score die vereist is om te slagen."
+ },
+ {
+ "label":"Questions",
+ "widgets":[
+ {
+ "label":"Standaard"
+ },
+ {
+ "label":"Tekstueel"
+ }
+ ],
+ "entity":"question",
+ "field":{
+ "label":"Question type",
+ "description":"Library for this question."
+ }
+ },
+ {
+ "label":"Interface texts in quiz",
+ "fields":[
+ {
+ "label":"Terugknop",
+ "default":"Previous question"
+ },
+ {
+ "label":"Next button",
+ "default":"Next question"
+ },
+ {
+ "label":"Finish button",
+ "default":"Beëindigen"
+ },
+ {
+ "label":"Tekst bij voortgang",
+ "description":"Text used if textual progress is selected.",
+ "default":"Question: @current of @total questions"
+ },
+ {
+ "label":"Label for jumping to a certain question",
+ "description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
+ "default":"Question %d of %total"
+ },
+ {
+ "label":"Copyright dialog question label",
+ "default":"Vraag"
+ },
+ {
+ "label":"Readspeaker progress",
+ "description":"May use @current and @total question variables",
+ "default":"Question @current of @total"
+ },
+ {
+ "label":"Unanswered question text",
+ "default":"Unanswered"
+ },
+ {
+ "label":"Answered question text",
+ "default":"Answered"
+ },
+ {
+ "label":"Current question text",
+ "default":"Current question"
+ }
+ ]
+ },
+ {
+ "label":"Achteruit navigeren uitschakelen",
+ "description":"This option will only allow you to move forward in Question Set"
+ },
+ {
+ "label":"Randomize questions",
+ "description":"Vragen in willekeurige volgorde inschakelen."
+ },
+ {
+ "label":"Number of questions to be shown:",
+ "description":"Create a randomized batch of questions from the total."
+ },
+ {
+ "label":"Quiz finished",
+ "fields":[
+ {
+ "label":"Display results"
+ },
+ {
+ "label":"Display solution button"
+ },
+ {
+ "label":"No results message",
+ "description":"Text displayed on end page when \"Display results\" is disabled",
+ "default":"Finished"
+ },
+ {
+ "label":"Feedback heading",
+ "default":"Your result:",
+ "description":"This heading will be displayed at the end of the quiz when the user has answered all questions."
+ },
+ {
+ "label":"Overall Feedback",
+ "fields":[
+ {
+ "widgets":[
+
+ ],
+ "label":"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":"Toon oplossing",
+ "description":"Text for the solution button."
+ },
+ {
+ "label":"Tekst van de Opnieuw proberen knop",
+ "default":"Opnieuw proberen",
+ "description":"Text for the retry button."
+ },
+ {
+ "label":"Finish button text",
+ "default":"Beëindigen"
+ },
+ {
+ "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":"\"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":"Uitgeschakeld"
+ }
+ ]
+ },
+ {
+ "label":"\"Opnieuw proberen\" knop instellen",
+ "description":"Deze optie bepaalt of de \"Opnieuw proberen\" knop voor alle vragen wordt getoond, uitgeschakeld of voor iedere vraag afzonderlijk wordt geconfigureerd.",
+ "options":[
+ {
+ "label":"Ingeschakeld"
+ },
+ {
+ "label":"Uitgeschakeld"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/language/nn.json b/language/nn.json
index 33507d1..84f2a20 100644
--- a/language/nn.json
+++ b/language/nn.json
@@ -1,228 +1,255 @@
{
- "semantics": [
+ "semantics":[
{
- "label": "Introduksjon",
- "fields": [
+ "label":"Introduksjon",
+ "fields":[
{
- "label": "Vis introduksjon"
+ "label":"Vis introduksjon"
},
{
- "label": "Tittel",
- "description": "Tittel for intoduksjonssiden."
+ "label":"Tittel",
+ "description":"Tittel for intoduksjonssiden."
},
{
- "label": "Introduksjonstekst",
- "description": "Denne teksten vises før spørsmålssettet starter."
+ "label":"Introduksjonstekst",
+ "description":"Denne teksten vises før spørsmålssettet starter."
},
{
- "label": "Tekst til \"Start\" knappen",
- "default": "Start"
+ "label":"Tekst til \"Start\" knappen",
+ "default":"Start"
},
{
- "label": "Bakgrunnsbilde",
- "description": "Bakgrunnsbilde for introduksjonssiden"
+ "label":"Bakgrunnsbilde",
+ "description":"Bakgrunnsbilde for introduksjonssiden"
}
]
},
{
- "label": "Bakgrunnsbilde",
- "description": "Bakgrunnsbilde for spørsmålssettet(ikke obligatorisk)."
+ "label":"Bakgrunnsbilde",
+ "description":"Bakgrunnsbilde for spørsmålssettet(ikke obligatorisk)."
},
{
- "label": "Fremdriftsindikator",
- "description": "Velg om fremdriften skal angis som prikker(få spørsmål) eller som tekst(mange spørsmål).",
- "options": [
+ "label":"Fremdriftsindikator",
+ "description":"Velg om fremdriften skal angis som prikker(få spørsmål) eller som tekst(mange spørsmål).",
+ "options":[
{
- "label": "Angi fremdrift med tekst"
+ "label":"Tekstlig"
},
{
- "label": "Angi fremdrift med prikker"
- }
- ]
- },
- {
- "label": "Krav for å bestå",
- "description": "Antall prosent riktig som kreves for å bestå spørsmålssettet."
- },
- {
- "label": "Spørsmål",
- "entity": "spørsmål",
- "widgets": [
- {
- "label": "Standard"
- },
- {
- "label": "Tekstlig"
+ "label":"Angi fremdrift med prikker"
}
],
- "field": {
- "label": "Spørsmålstype",
- "description": "Velg spørsmålstype for dette spørsmålet"
+ "default":"dots"
+ },
+ {
+ "label":"Krav for å bestå",
+ "description":"Antall prosent riktig som kreves for å bestå spørsmålssettet."
+ },
+ {
+ "label":"Spørsmål",
+ "widgets":[
+ {
+ "label":"Standard"
+ },
+ {
+ "label":"Tekstlig"
+ }
+ ],
+ "entity":"spørsmål",
+ "field":{
+ "label":"Spørsmålstype",
+ "description":"Velg spørsmålstype for dette spørsmålet"
}
},
{
- "label": "Ledetekster",
- "fields": [
+ "label":"Ledetekster",
+ "fields":[
{
- "label": "Førre-knappen",
- "default": "Førre"
+ "label":"Tilbakeknapp",
+ "default":"Førre"
},
{
- "label": "Neste-knappen",
- "default": "Neste"
+ "label":"Neste-knappen",
+ "default":"Neste"
},
{
- "label": "Avslutt-knappen",
- "default": "Avslutt"
+ "label":"Avslutt-knappen",
+ "default":"Bekreft"
},
{
- "label": "Fremdriftstekst",
- "description": "Tekst brukt hvis tekstlig angivelse av fremdrift er valgt. Variabler: @current og @total",
- "default": "Deloppgåve @current av @total"
+ "label":"Fremgangstekst",
+ "description":"Tekst brukt hvis tekstlig angivelse av fremdrift er valgt. Variabler: @current og @total",
+ "default":"Deloppgåve @current av @total"
},
{
- "label": "Merkelapp ved hopping til spørsmål",
- "description": "Du må bruke plassholderen '%d' istedenfor spørsmålsnummeret, og '%total' istedet for totalt antall spørsmål.",
- "default": "Spørsmål %d av %total"
+ "label":"Merkelapp ved hopping til spørsmål",
+ "description":"Du må bruke plassholderen '%d' istedenfor spørsmålsnummeret, og '%total' istedet for totalt antall spørsmål.",
+ "default":"Spørsmål %d av %total"
},
{
- "label": "Opphavsrett spørsmål-etikett",
- "default": "Spørsmål"
+ "label":"Opphavsrett spørsmål-etikett",
+ "default":"Spørsmål"
},
{
- "label": "Fremdriftstekst for hjelpemiddelteknologi",
- "description": "Kan bruke @current og @total variabler",
- "default": "Deloppgave @current av @total"
+ "label":"Fremdriftstekst for hjelpemiddelteknologi",
+ "description":"Kan bruke @current og @total variabler",
+ "default":"Deloppgave @current av @total"
},
{
- "label": "Ikke svart på spørsmål-tekst",
- "default": "Ikke svart"
+ "label":"Ikke svart på spørsmål-tekst",
+ "default":"Ikke svart"
},
{
- "label": "Svart på spørsmål-tekst",
- "default": "Svar avgitt"
+ "label":"Svart på spørsmål-tekst",
+ "default":"Svar avgitt"
},
{
- "label": "Aktivt spørsmål-tekst",
- "default": "Aktivt spørsmål"
+ "label":"Aktivt spørsmål-tekst",
+ "default":"Aktivt spørsmål"
}
]
},
{
- "label": "Slå av bakoverknapp",
- "description": "Slå på for å nekte å gå tilbake i Question Set"
+ "label":"Slå av tilbakenavigering",
+ "description":"Slå på for å nekte å gå tilbake i Question Set"
},
{
- "label": "Randomize questions",
- "description": "Enable to randomize the order of questions on display."
+ "label":"Randomize questions",
+ "description":"Slå på for å vise de mulige svara i tilfeldig rekkefølge."
},
{
- "label": "Number of questions to be shown:",
- "description": "Create a randomized batch of questions from the total."
+ "label":"Number of questions to be shown:",
+ "description":"Create a randomized batch of questions from the total."
},
{
- "label": "Spørsmålssett avslutning",
- "fields": [
+ "label":"Spørsmålssett avslutning",
+ "fields":[
{
- "label": "Vis resultat"
+ "label":"Vis resultat"
},
{
- "label": "Melding når resultater ikke vises",
- "description": "Teksten vises på avslutnings-siden når resultater ikke vises",
- "default": "Ferdig"
+ "label":"Vis resultatknapp"
},
{
- "label": "Overskrift over tilbakemeldingar",
- "default": "Resultat:",
- "description": "Denne overskriften vises over tilbakemeldingane på slutten av spørsmålssettet."
+ "label":"Melding når resultater ikke vises",
+ "description":"Teksten vises på avslutnings-siden når resultater ikke vises",
+ "default":"Ferdig"
},
{
- "label": "Poengvisningstekst",
- "default": "@score av @total poeng",
- "description": "Tekst som viser brukerens oppnådde poeng. \"@score\" blir erstatta med utregna resultat, \"@total\" blir erstatta med høgest mulig resultat."
+ "label":"Overskrift over tilbakemeldingar",
+ "default":"Resultat:",
+ "description":"Denne overskriften vises over tilbakemeldingane på slutten av spørsmålssettet."
},
{
- "label": "Tittel ved bestått",
- "default": "Gratulerer!",
- "description": "Denne tittelen vises dersom brukeren har bestått spørsmålssettet."
- },
- {
- "label": "Kommentar ved bestått",
- "default": "Dette gjekk bra.",
- "description": "Denne kommentaren vises dersom brukaren har bestått spørsmålssettet."
- },
- {
- "label": "Tittel ved ikkje bestått",
- "default": "Dette gjekk ikkje så bra!",
- "description": "Denne tittelen visast dersom brukaren ikkje har bestått spørsmålssettet."
- },
- {
- "label": "Kommentar ved ikkje bestått",
- "default": "Det er litt mange feil her. Prøv igjen!",
- "description": "Denne kommentaren vises dersom brukaren ikkje har bestått spørsmålssettet."
- },
- {
- "label": "Tekst til \"Fasit\" knapp",
- "default": "Vis fasit",
- "description": ""
- },
- {
- "label": "Tekst til \"Prøv igjen\" knapp",
- "default": "Prøv igjen",
- "description": ""
- },
- {
- "label": "Tekst til \"Avslutt\" knapp",
- "default": "Avslutt"
- },
- {
- "label": "Vis video før resultata"
- },
- {
- "label": "Tillat å hoppe over video"
- },
- {
- "label": "Tekst til \"Hopp over video\" knapp",
- "default": "Hopp over"
- },
- {
- "label": "Video ved bestått",
- "description": "Denne videoen vil bli vist dersom brukaren består spørsmålssettet."
- },
- {
- "label": "Video ved ikke bestått",
- "description": "Denne videoen vil bli vist dersom brukaren ikkje består spørsmålssettet."
- }
- ]
- },
- {
- "label": "Innstillinger for «Fasit»- og «Prøv igjen»-knapp",
- "fields": [
- {
- "label": "Overstyr «Fasit»-knapp",
- "description": "Dette valget avgjør om «Fasit»-knappen vil vises for alle spørsmål, skjules for alle eller konfigureres individuelt for hvert spørsmål.",
- "options": [
+ "label":"Bakgrunnsopasitet på flyttbare elementer",
+ "fields":[
{
- "label": "Aktivert"
- },
- {
- "label": "Deaktivert"
+ "widgets":[
+
+ ],
+ "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": "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.",
- "options": [
+ "label":"Old Feedback",
+ "fields":[
{
- "label": "Aktivert"
+ "label":"Tittel ved bestått",
+ "description":"Denne tittelen vises dersom brukeren har bestått spørsmålssettet."
},
{
- "label": "Deaktivert"
+ "label":"Kommentar ved bestått",
+ "description":"Denne kommentaren vises dersom brukaren har bestått spørsmålssettet."
+ },
+ {
+ "label":"Tittel ved ikkje bestått",
+ "description":"Denne tittelen visast dersom brukaren ikkje har bestått spørsmålssettet."
+ },
+ {
+ "label":"Kommentar ved ikkje bestått",
+ "description":"Denne kommentaren vises dersom brukaren ikkje har bestått spørsmålssettet."
+ }
+ ]
+ },
+ {
+ "label":"Tekst til \"Fasit\" knapp",
+ "default":"Fasit",
+ "description":"Text for the solution button."
+ },
+ {
+ "label":"Tekst til \"Prøv igjen\" knapp",
+ "default":"Prøv igjen",
+ "description":"Text for the retry button."
+ },
+ {
+ "label":"Tekst til \"Avslutt\" knapp",
+ "default":"Bekreft"
+ },
+ {
+ "label":"Vis video før resultata"
+ },
+ {
+ "label":"Tillat å hoppe over video"
+ },
+ {
+ "label":"Tekst til \"Hopp over video\" knapp",
+ "default":"Hopp over"
+ },
+ {
+ "label":"Video ved bestått",
+ "description":"Denne videoen vil bli vist dersom brukaren består spørsmålssettet."
+ },
+ {
+ "label":"Video ved ikke bestått",
+ "description":"Denne videoen vil bli vist dersom brukaren ikkje består spørsmålssettet."
+ }
+ ]
+ },
+ {
+ "label":"Innstillinger for «Fasit»- og «Prøv igjen»-knapp",
+ "fields":[
+ {
+ "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":"Deaktivert"
+ }
+ ]
+ },
+ {
+ "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.",
+ "options":[
+ {
+ "label":"Aktivert"
+ },
+ {
+ "label":"Deaktivert"
}
]
}
]
}
]
-}
+}
\ No newline at end of file
diff --git a/language/pl.json b/language/pl.json
new file mode 100644
index 0000000..c97b04e
--- /dev/null
+++ b/language/pl.json
@@ -0,0 +1,255 @@
+{
+ "semantics":[
+ {
+ "label":"Quiz introduction",
+ "fields":[
+ {
+ "label":"Display introduction"
+ },
+ {
+ "label":"Title",
+ "description":"This title will be displayed above the introduction text."
+ },
+ {
+ "label":"Introduction text",
+ "description":"This text will be displayed before the quiz starts."
+ },
+ {
+ "label":"Start button text",
+ "default":"Start Quiz"
+ },
+ {
+ "label":"Background image",
+ "description":"An optional background image for the introduction."
+ }
+ ]
+ },
+ {
+ "label":"Background image",
+ "description":"An optional background image for the Question set."
+ },
+ {
+ "label":"Progress indicator",
+ "description":"Question set progress indicator style.",
+ "options":[
+ {
+ "label":"Textual"
+ },
+ {
+ "label":"Dots"
+ }
+ ],
+ "default":"dots"
+ },
+ {
+ "label":"Pass percentage",
+ "description":"Percentage of Total score required for passing the quiz."
+ },
+ {
+ "label":"Questions",
+ "widgets":[
+ {
+ "label":"Default"
+ },
+ {
+ "label":"Textual"
+ }
+ ],
+ "entity":"question",
+ "field":{
+ "label":"Question type",
+ "description":"Library for this question."
+ }
+ },
+ {
+ "label":"Interface texts in quiz",
+ "fields":[
+ {
+ "label":"Back button",
+ "default":"Previous question"
+ },
+ {
+ "label":"Next button",
+ "default":"Next question"
+ },
+ {
+ "label":"Finish button",
+ "default":"Finish"
+ },
+ {
+ "label":"Progress text",
+ "description":"Text used if textual progress is selected.",
+ "default":"Question: @current of @total questions"
+ },
+ {
+ "label":"Label for jumping to a certain question",
+ "description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
+ "default":"Question %d of %total"
+ },
+ {
+ "label":"Copyright dialog question label",
+ "default":"Question"
+ },
+ {
+ "label":"Readspeaker progress",
+ "description":"May use @current and @total question variables",
+ "default":"Question @current of @total"
+ },
+ {
+ "label":"Unanswered question text",
+ "default":"Unanswered"
+ },
+ {
+ "label":"Answered question text",
+ "default":"Answered"
+ },
+ {
+ "label":"Current question text",
+ "default":"Current question"
+ }
+ ]
+ },
+ {
+ "label":"Disable backwards navigation",
+ "description":"This option will only allow you to move forward in Question Set"
+ },
+ {
+ "label":"Randomize questions",
+ "description":"Enable to randomize the order of questions on display."
+ },
+ {
+ "label":"Number of questions to be shown:",
+ "description":"Create a randomized batch of questions from the total."
+ },
+ {
+ "label":"Quiz finished",
+ "fields":[
+ {
+ "label":"Display results"
+ },
+ {
+ "label":"Display solution button"
+ },
+ {
+ "label":"No results message",
+ "description":"Text displayed on end page when \"Display results\" is disabled",
+ "default":"Finished"
+ },
+ {
+ "label":"Feedback heading",
+ "default":"Your result:",
+ "description":"This heading will be displayed at the end of the quiz when the user has answered all questions."
+ },
+ {
+ "label":"Overall Feedback",
+ "fields":[
+ {
+ "widgets":[
+
+ ],
+ "label":"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":"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"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/language/pt.json b/language/pt.json
new file mode 100644
index 0000000..c97b04e
--- /dev/null
+++ b/language/pt.json
@@ -0,0 +1,255 @@
+{
+ "semantics":[
+ {
+ "label":"Quiz introduction",
+ "fields":[
+ {
+ "label":"Display introduction"
+ },
+ {
+ "label":"Title",
+ "description":"This title will be displayed above the introduction text."
+ },
+ {
+ "label":"Introduction text",
+ "description":"This text will be displayed before the quiz starts."
+ },
+ {
+ "label":"Start button text",
+ "default":"Start Quiz"
+ },
+ {
+ "label":"Background image",
+ "description":"An optional background image for the introduction."
+ }
+ ]
+ },
+ {
+ "label":"Background image",
+ "description":"An optional background image for the Question set."
+ },
+ {
+ "label":"Progress indicator",
+ "description":"Question set progress indicator style.",
+ "options":[
+ {
+ "label":"Textual"
+ },
+ {
+ "label":"Dots"
+ }
+ ],
+ "default":"dots"
+ },
+ {
+ "label":"Pass percentage",
+ "description":"Percentage of Total score required for passing the quiz."
+ },
+ {
+ "label":"Questions",
+ "widgets":[
+ {
+ "label":"Default"
+ },
+ {
+ "label":"Textual"
+ }
+ ],
+ "entity":"question",
+ "field":{
+ "label":"Question type",
+ "description":"Library for this question."
+ }
+ },
+ {
+ "label":"Interface texts in quiz",
+ "fields":[
+ {
+ "label":"Back button",
+ "default":"Previous question"
+ },
+ {
+ "label":"Next button",
+ "default":"Next question"
+ },
+ {
+ "label":"Finish button",
+ "default":"Finish"
+ },
+ {
+ "label":"Progress text",
+ "description":"Text used if textual progress is selected.",
+ "default":"Question: @current of @total questions"
+ },
+ {
+ "label":"Label for jumping to a certain question",
+ "description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
+ "default":"Question %d of %total"
+ },
+ {
+ "label":"Copyright dialog question label",
+ "default":"Question"
+ },
+ {
+ "label":"Readspeaker progress",
+ "description":"May use @current and @total question variables",
+ "default":"Question @current of @total"
+ },
+ {
+ "label":"Unanswered question text",
+ "default":"Unanswered"
+ },
+ {
+ "label":"Answered question text",
+ "default":"Answered"
+ },
+ {
+ "label":"Current question text",
+ "default":"Current question"
+ }
+ ]
+ },
+ {
+ "label":"Disable backwards navigation",
+ "description":"This option will only allow you to move forward in Question Set"
+ },
+ {
+ "label":"Randomize questions",
+ "description":"Enable to randomize the order of questions on display."
+ },
+ {
+ "label":"Number of questions to be shown:",
+ "description":"Create a randomized batch of questions from the total."
+ },
+ {
+ "label":"Quiz finished",
+ "fields":[
+ {
+ "label":"Display results"
+ },
+ {
+ "label":"Display solution button"
+ },
+ {
+ "label":"No results message",
+ "description":"Text displayed on end page when \"Display results\" is disabled",
+ "default":"Finished"
+ },
+ {
+ "label":"Feedback heading",
+ "default":"Your result:",
+ "description":"This heading will be displayed at the end of the quiz when the user has answered all questions."
+ },
+ {
+ "label":"Overall Feedback",
+ "fields":[
+ {
+ "widgets":[
+
+ ],
+ "label":"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":"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"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/language/ro.json b/language/ro.json
new file mode 100644
index 0000000..c97b04e
--- /dev/null
+++ b/language/ro.json
@@ -0,0 +1,255 @@
+{
+ "semantics":[
+ {
+ "label":"Quiz introduction",
+ "fields":[
+ {
+ "label":"Display introduction"
+ },
+ {
+ "label":"Title",
+ "description":"This title will be displayed above the introduction text."
+ },
+ {
+ "label":"Introduction text",
+ "description":"This text will be displayed before the quiz starts."
+ },
+ {
+ "label":"Start button text",
+ "default":"Start Quiz"
+ },
+ {
+ "label":"Background image",
+ "description":"An optional background image for the introduction."
+ }
+ ]
+ },
+ {
+ "label":"Background image",
+ "description":"An optional background image for the Question set."
+ },
+ {
+ "label":"Progress indicator",
+ "description":"Question set progress indicator style.",
+ "options":[
+ {
+ "label":"Textual"
+ },
+ {
+ "label":"Dots"
+ }
+ ],
+ "default":"dots"
+ },
+ {
+ "label":"Pass percentage",
+ "description":"Percentage of Total score required for passing the quiz."
+ },
+ {
+ "label":"Questions",
+ "widgets":[
+ {
+ "label":"Default"
+ },
+ {
+ "label":"Textual"
+ }
+ ],
+ "entity":"question",
+ "field":{
+ "label":"Question type",
+ "description":"Library for this question."
+ }
+ },
+ {
+ "label":"Interface texts in quiz",
+ "fields":[
+ {
+ "label":"Back button",
+ "default":"Previous question"
+ },
+ {
+ "label":"Next button",
+ "default":"Next question"
+ },
+ {
+ "label":"Finish button",
+ "default":"Finish"
+ },
+ {
+ "label":"Progress text",
+ "description":"Text used if textual progress is selected.",
+ "default":"Question: @current of @total questions"
+ },
+ {
+ "label":"Label for jumping to a certain question",
+ "description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
+ "default":"Question %d of %total"
+ },
+ {
+ "label":"Copyright dialog question label",
+ "default":"Question"
+ },
+ {
+ "label":"Readspeaker progress",
+ "description":"May use @current and @total question variables",
+ "default":"Question @current of @total"
+ },
+ {
+ "label":"Unanswered question text",
+ "default":"Unanswered"
+ },
+ {
+ "label":"Answered question text",
+ "default":"Answered"
+ },
+ {
+ "label":"Current question text",
+ "default":"Current question"
+ }
+ ]
+ },
+ {
+ "label":"Disable backwards navigation",
+ "description":"This option will only allow you to move forward in Question Set"
+ },
+ {
+ "label":"Randomize questions",
+ "description":"Enable to randomize the order of questions on display."
+ },
+ {
+ "label":"Number of questions to be shown:",
+ "description":"Create a randomized batch of questions from the total."
+ },
+ {
+ "label":"Quiz finished",
+ "fields":[
+ {
+ "label":"Display results"
+ },
+ {
+ "label":"Display solution button"
+ },
+ {
+ "label":"No results message",
+ "description":"Text displayed on end page when \"Display results\" is disabled",
+ "default":"Finished"
+ },
+ {
+ "label":"Feedback heading",
+ "default":"Your result:",
+ "description":"This heading will be displayed at the end of the quiz when the user has answered all questions."
+ },
+ {
+ "label":"Overall Feedback",
+ "fields":[
+ {
+ "widgets":[
+
+ ],
+ "label":"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":"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"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/language/ru.json b/language/ru.json
new file mode 100644
index 0000000..c97b04e
--- /dev/null
+++ b/language/ru.json
@@ -0,0 +1,255 @@
+{
+ "semantics":[
+ {
+ "label":"Quiz introduction",
+ "fields":[
+ {
+ "label":"Display introduction"
+ },
+ {
+ "label":"Title",
+ "description":"This title will be displayed above the introduction text."
+ },
+ {
+ "label":"Introduction text",
+ "description":"This text will be displayed before the quiz starts."
+ },
+ {
+ "label":"Start button text",
+ "default":"Start Quiz"
+ },
+ {
+ "label":"Background image",
+ "description":"An optional background image for the introduction."
+ }
+ ]
+ },
+ {
+ "label":"Background image",
+ "description":"An optional background image for the Question set."
+ },
+ {
+ "label":"Progress indicator",
+ "description":"Question set progress indicator style.",
+ "options":[
+ {
+ "label":"Textual"
+ },
+ {
+ "label":"Dots"
+ }
+ ],
+ "default":"dots"
+ },
+ {
+ "label":"Pass percentage",
+ "description":"Percentage of Total score required for passing the quiz."
+ },
+ {
+ "label":"Questions",
+ "widgets":[
+ {
+ "label":"Default"
+ },
+ {
+ "label":"Textual"
+ }
+ ],
+ "entity":"question",
+ "field":{
+ "label":"Question type",
+ "description":"Library for this question."
+ }
+ },
+ {
+ "label":"Interface texts in quiz",
+ "fields":[
+ {
+ "label":"Back button",
+ "default":"Previous question"
+ },
+ {
+ "label":"Next button",
+ "default":"Next question"
+ },
+ {
+ "label":"Finish button",
+ "default":"Finish"
+ },
+ {
+ "label":"Progress text",
+ "description":"Text used if textual progress is selected.",
+ "default":"Question: @current of @total questions"
+ },
+ {
+ "label":"Label for jumping to a certain question",
+ "description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
+ "default":"Question %d of %total"
+ },
+ {
+ "label":"Copyright dialog question label",
+ "default":"Question"
+ },
+ {
+ "label":"Readspeaker progress",
+ "description":"May use @current and @total question variables",
+ "default":"Question @current of @total"
+ },
+ {
+ "label":"Unanswered question text",
+ "default":"Unanswered"
+ },
+ {
+ "label":"Answered question text",
+ "default":"Answered"
+ },
+ {
+ "label":"Current question text",
+ "default":"Current question"
+ }
+ ]
+ },
+ {
+ "label":"Disable backwards navigation",
+ "description":"This option will only allow you to move forward in Question Set"
+ },
+ {
+ "label":"Randomize questions",
+ "description":"Enable to randomize the order of questions on display."
+ },
+ {
+ "label":"Number of questions to be shown:",
+ "description":"Create a randomized batch of questions from the total."
+ },
+ {
+ "label":"Quiz finished",
+ "fields":[
+ {
+ "label":"Display results"
+ },
+ {
+ "label":"Display solution button"
+ },
+ {
+ "label":"No results message",
+ "description":"Text displayed on end page when \"Display results\" is disabled",
+ "default":"Finished"
+ },
+ {
+ "label":"Feedback heading",
+ "default":"Your result:",
+ "description":"This heading will be displayed at the end of the quiz when the user has answered all questions."
+ },
+ {
+ "label":"Overall Feedback",
+ "fields":[
+ {
+ "widgets":[
+
+ ],
+ "label":"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":"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"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/language/sr.json b/language/sr.json
new file mode 100644
index 0000000..c97b04e
--- /dev/null
+++ b/language/sr.json
@@ -0,0 +1,255 @@
+{
+ "semantics":[
+ {
+ "label":"Quiz introduction",
+ "fields":[
+ {
+ "label":"Display introduction"
+ },
+ {
+ "label":"Title",
+ "description":"This title will be displayed above the introduction text."
+ },
+ {
+ "label":"Introduction text",
+ "description":"This text will be displayed before the quiz starts."
+ },
+ {
+ "label":"Start button text",
+ "default":"Start Quiz"
+ },
+ {
+ "label":"Background image",
+ "description":"An optional background image for the introduction."
+ }
+ ]
+ },
+ {
+ "label":"Background image",
+ "description":"An optional background image for the Question set."
+ },
+ {
+ "label":"Progress indicator",
+ "description":"Question set progress indicator style.",
+ "options":[
+ {
+ "label":"Textual"
+ },
+ {
+ "label":"Dots"
+ }
+ ],
+ "default":"dots"
+ },
+ {
+ "label":"Pass percentage",
+ "description":"Percentage of Total score required for passing the quiz."
+ },
+ {
+ "label":"Questions",
+ "widgets":[
+ {
+ "label":"Default"
+ },
+ {
+ "label":"Textual"
+ }
+ ],
+ "entity":"question",
+ "field":{
+ "label":"Question type",
+ "description":"Library for this question."
+ }
+ },
+ {
+ "label":"Interface texts in quiz",
+ "fields":[
+ {
+ "label":"Back button",
+ "default":"Previous question"
+ },
+ {
+ "label":"Next button",
+ "default":"Next question"
+ },
+ {
+ "label":"Finish button",
+ "default":"Finish"
+ },
+ {
+ "label":"Progress text",
+ "description":"Text used if textual progress is selected.",
+ "default":"Question: @current of @total questions"
+ },
+ {
+ "label":"Label for jumping to a certain question",
+ "description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
+ "default":"Question %d of %total"
+ },
+ {
+ "label":"Copyright dialog question label",
+ "default":"Question"
+ },
+ {
+ "label":"Readspeaker progress",
+ "description":"May use @current and @total question variables",
+ "default":"Question @current of @total"
+ },
+ {
+ "label":"Unanswered question text",
+ "default":"Unanswered"
+ },
+ {
+ "label":"Answered question text",
+ "default":"Answered"
+ },
+ {
+ "label":"Current question text",
+ "default":"Current question"
+ }
+ ]
+ },
+ {
+ "label":"Disable backwards navigation",
+ "description":"This option will only allow you to move forward in Question Set"
+ },
+ {
+ "label":"Randomize questions",
+ "description":"Enable to randomize the order of questions on display."
+ },
+ {
+ "label":"Number of questions to be shown:",
+ "description":"Create a randomized batch of questions from the total."
+ },
+ {
+ "label":"Quiz finished",
+ "fields":[
+ {
+ "label":"Display results"
+ },
+ {
+ "label":"Display solution button"
+ },
+ {
+ "label":"No results message",
+ "description":"Text displayed on end page when \"Display results\" is disabled",
+ "default":"Finished"
+ },
+ {
+ "label":"Feedback heading",
+ "default":"Your result:",
+ "description":"This heading will be displayed at the end of the quiz when the user has answered all questions."
+ },
+ {
+ "label":"Overall Feedback",
+ "fields":[
+ {
+ "widgets":[
+
+ ],
+ "label":"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":"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"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/language/sv.json b/language/sv.json
new file mode 100644
index 0000000..74e8943
--- /dev/null
+++ b/language/sv.json
@@ -0,0 +1,255 @@
+{
+ "semantics":[
+ {
+ "label":"Quiz introduction",
+ "fields":[
+ {
+ "label":"Display introduction"
+ },
+ {
+ "label":"Title",
+ "description":"This title will be displayed above the introduction text."
+ },
+ {
+ "label":"Introduction text",
+ "description":"This text will be displayed before the quiz starts."
+ },
+ {
+ "label":"Start button text",
+ "default":"Start Quiz"
+ },
+ {
+ "label":"Background image",
+ "description":"An optional background image for the introduction."
+ }
+ ]
+ },
+ {
+ "label":"Background image",
+ "description":"An optional background image for the Question set."
+ },
+ {
+ "label":"Progress indicator",
+ "description":"Question set progress indicator style.",
+ "options":[
+ {
+ "label":"Textual"
+ },
+ {
+ "label":"Dots"
+ }
+ ],
+ "default":"dots"
+ },
+ {
+ "label":"Pass percentage",
+ "description":"Percentage of Total score required for passing the quiz."
+ },
+ {
+ "label":"Questions",
+ "widgets":[
+ {
+ "label":"Default"
+ },
+ {
+ "label":"Textual"
+ }
+ ],
+ "entity":"question",
+ "field":{
+ "label":"Question type",
+ "description":"Library for this question."
+ }
+ },
+ {
+ "label":"Interface texts in quiz",
+ "fields":[
+ {
+ "label":"Back button",
+ "default":"Previous question"
+ },
+ {
+ "label":"Next button",
+ "default":"Next question"
+ },
+ {
+ "label":"Finish button",
+ "default":"Finish"
+ },
+ {
+ "label":"Progress text",
+ "description":"Text used if textual progress is selected.",
+ "default":"Question: @current of @total questions"
+ },
+ {
+ "label":"Label for jumping to a certain question",
+ "description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
+ "default":"Question %d of %total"
+ },
+ {
+ "label":"Copyright dialog question label",
+ "default":"Question"
+ },
+ {
+ "label":"Readspeaker progress",
+ "description":"May use @current and @total question variables",
+ "default":"Question @current of @total"
+ },
+ {
+ "label":"Unanswered question text",
+ "default":"Unanswered"
+ },
+ {
+ "label":"Answered question text",
+ "default":"Answered"
+ },
+ {
+ "label":"Current question text",
+ "default":"Current question"
+ }
+ ]
+ },
+ {
+ "label":"Disable backwards navigation",
+ "description":"This option will only allow you to move forward in Question Set"
+ },
+ {
+ "label":"Randomize questions",
+ "description":"Enable to randomize the order of questions on display."
+ },
+ {
+ "label":"Number of questions to be shown:",
+ "description":"Create a randomized batch of questions from the total."
+ },
+ {
+ "label":"Quiz finished",
+ "fields":[
+ {
+ "label":"Display results"
+ },
+ {
+ "label":"Display solution button"
+ },
+ {
+ "label":"No results message",
+ "description":"Text displayed on end page when \"Display results\" is disabled",
+ "default":"Finished"
+ },
+ {
+ "label":"Feedback heading",
+ "default":"Your result:",
+ "description":"This heading will be displayed at the end of the quiz when the user has answered all questions."
+ },
+ {
+ "label":"Overall Feedback",
+ "fields":[
+ {
+ "widgets":[
+
+ ],
+ "label":"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":"Försök på nytt",
+ "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":"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"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/language/tr.json b/language/tr.json
new file mode 100644
index 0000000..77ae1a1
--- /dev/null
+++ b/language/tr.json
@@ -0,0 +1,255 @@
+{
+ "semantics":[
+ {
+ "label":"Quiz introduction",
+ "fields":[
+ {
+ "label":"Display introduction"
+ },
+ {
+ "label":"Title",
+ "description":"This title will be displayed above the introduction text."
+ },
+ {
+ "label":"Giriş metni",
+ "description":"This text will be displayed before the quiz starts."
+ },
+ {
+ "label":"Start button text",
+ "default":"Start Quiz"
+ },
+ {
+ "label":"Background image",
+ "description":"An optional background image for the introduction."
+ }
+ ]
+ },
+ {
+ "label":"Background image",
+ "description":"An optional background image for the Question set."
+ },
+ {
+ "label":"Progress indicator",
+ "description":"Question set progress indicator style.",
+ "options":[
+ {
+ "label":"Metin"
+ },
+ {
+ "label":"Dots"
+ }
+ ],
+ "default":"dots"
+ },
+ {
+ "label":"Geçiş yüzdesi",
+ "description":"Quizi geçmek için gerekli toplam puan yüzdesi."
+ },
+ {
+ "label":"Questions",
+ "widgets":[
+ {
+ "label":"Varsayılan"
+ },
+ {
+ "label":"Metin"
+ }
+ ],
+ "entity":"question",
+ "field":{
+ "label":"Question type",
+ "description":"Library for this question."
+ }
+ },
+ {
+ "label":"Interface texts in quiz",
+ "fields":[
+ {
+ "label":"Back button",
+ "default":"Previous question"
+ },
+ {
+ "label":"Next button",
+ "default":"Next question"
+ },
+ {
+ "label":"Finish button",
+ "default":"Bitir"
+ },
+ {
+ "label":"Progress text",
+ "description":"Text used if textual progress is selected.",
+ "default":"Question: @current of @total questions"
+ },
+ {
+ "label":"Label for jumping to a certain question",
+ "description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
+ "default":"Question %d of %total"
+ },
+ {
+ "label":"Copyright dialog question label",
+ "default":"Soru"
+ },
+ {
+ "label":"Readspeaker progress",
+ "description":"May use @current and @total question variables",
+ "default":"Question @current of @total"
+ },
+ {
+ "label":"Unanswered question text",
+ "default":"Unanswered"
+ },
+ {
+ "label":"Answered question text",
+ "default":"Answered"
+ },
+ {
+ "label":"Current question text",
+ "default":"Current question"
+ }
+ ]
+ },
+ {
+ "label":"Disable backwards navigation",
+ "description":"This option will only allow you to move forward in Question Set"
+ },
+ {
+ "label":"Randomize questions",
+ "description":"Soruları sırasını ekranda rasgele gelmesi için etkinleştirin."
+ },
+ {
+ "label":"Number of questions to be shown:",
+ "description":"Create a randomized batch of questions from the total."
+ },
+ {
+ "label":"Quiz finished",
+ "fields":[
+ {
+ "label":"Display results"
+ },
+ {
+ "label":"Display solution button"
+ },
+ {
+ "label":"No results message",
+ "description":"Text displayed on end page when \"Display results\" is disabled",
+ "default":"Finished"
+ },
+ {
+ "label":"Feedback heading",
+ "default":"Your result:",
+ "description":"This heading will be displayed at the end of the quiz when the user has answered all questions."
+ },
+ {
+ "label":"Overall Feedback",
+ "fields":[
+ {
+ "widgets":[
+
+ ],
+ "label":"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":"Çözümü göster",
+ "description":"Text for the solution button."
+ },
+ {
+ "label":"Yeniden dene buton etiketi",
+ "default":"Yeniden dene",
+ "description":"Text for the retry button."
+ },
+ {
+ "label":"Finish button text",
+ "default":"Bitir"
+ },
+ {
+ "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":"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"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/language/vi.json b/language/vi.json
new file mode 100644
index 0000000..c97b04e
--- /dev/null
+++ b/language/vi.json
@@ -0,0 +1,255 @@
+{
+ "semantics":[
+ {
+ "label":"Quiz introduction",
+ "fields":[
+ {
+ "label":"Display introduction"
+ },
+ {
+ "label":"Title",
+ "description":"This title will be displayed above the introduction text."
+ },
+ {
+ "label":"Introduction text",
+ "description":"This text will be displayed before the quiz starts."
+ },
+ {
+ "label":"Start button text",
+ "default":"Start Quiz"
+ },
+ {
+ "label":"Background image",
+ "description":"An optional background image for the introduction."
+ }
+ ]
+ },
+ {
+ "label":"Background image",
+ "description":"An optional background image for the Question set."
+ },
+ {
+ "label":"Progress indicator",
+ "description":"Question set progress indicator style.",
+ "options":[
+ {
+ "label":"Textual"
+ },
+ {
+ "label":"Dots"
+ }
+ ],
+ "default":"dots"
+ },
+ {
+ "label":"Pass percentage",
+ "description":"Percentage of Total score required for passing the quiz."
+ },
+ {
+ "label":"Questions",
+ "widgets":[
+ {
+ "label":"Default"
+ },
+ {
+ "label":"Textual"
+ }
+ ],
+ "entity":"question",
+ "field":{
+ "label":"Question type",
+ "description":"Library for this question."
+ }
+ },
+ {
+ "label":"Interface texts in quiz",
+ "fields":[
+ {
+ "label":"Back button",
+ "default":"Previous question"
+ },
+ {
+ "label":"Next button",
+ "default":"Next question"
+ },
+ {
+ "label":"Finish button",
+ "default":"Finish"
+ },
+ {
+ "label":"Progress text",
+ "description":"Text used if textual progress is selected.",
+ "default":"Question: @current of @total questions"
+ },
+ {
+ "label":"Label for jumping to a certain question",
+ "description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
+ "default":"Question %d of %total"
+ },
+ {
+ "label":"Copyright dialog question label",
+ "default":"Question"
+ },
+ {
+ "label":"Readspeaker progress",
+ "description":"May use @current and @total question variables",
+ "default":"Question @current of @total"
+ },
+ {
+ "label":"Unanswered question text",
+ "default":"Unanswered"
+ },
+ {
+ "label":"Answered question text",
+ "default":"Answered"
+ },
+ {
+ "label":"Current question text",
+ "default":"Current question"
+ }
+ ]
+ },
+ {
+ "label":"Disable backwards navigation",
+ "description":"This option will only allow you to move forward in Question Set"
+ },
+ {
+ "label":"Randomize questions",
+ "description":"Enable to randomize the order of questions on display."
+ },
+ {
+ "label":"Number of questions to be shown:",
+ "description":"Create a randomized batch of questions from the total."
+ },
+ {
+ "label":"Quiz finished",
+ "fields":[
+ {
+ "label":"Display results"
+ },
+ {
+ "label":"Display solution button"
+ },
+ {
+ "label":"No results message",
+ "description":"Text displayed on end page when \"Display results\" is disabled",
+ "default":"Finished"
+ },
+ {
+ "label":"Feedback heading",
+ "default":"Your result:",
+ "description":"This heading will be displayed at the end of the quiz when the user has answered all questions."
+ },
+ {
+ "label":"Overall Feedback",
+ "fields":[
+ {
+ "widgets":[
+
+ ],
+ "label":"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":"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"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/library.json b/library.json
index 780b83b..8be26d3 100644
--- a/library.json
+++ b/library.json
@@ -3,7 +3,7 @@
"description": "Put together a set of different questions that has to be solved. (Quiz)",
"contentType": "question",
"majorVersion": 1,
- "minorVersion": 12,
+ "minorVersion": 13,
"patchVersion": 2,
"embedTypes": [
"iframe"
@@ -14,7 +14,7 @@
"author": "Joubel",
"coreApi": {
"majorVersion": 1,
- "minorVersion": 6
+ "minorVersion": 14
},
"license": "MIT",
"preloadedJs": [
@@ -46,10 +46,15 @@
{
"machineName": "H5P.JoubelUI",
"majorVersion": 1,
- "minorVersion": 2
+ "minorVersion": 3
}
],
"editorDependencies": [
+ {
+ "machineName": "H5PEditor.RangeList",
+ "majorVersion": 1,
+ "minorVersion": 0
+ },
{
"machineName": "H5PEditor.VerticalTabs",
"majorVersion": 1,
@@ -61,4 +66,4 @@
"minorVersion": 2
}
]
-}
+}
\ No newline at end of file
diff --git a/semantics.json b/semantics.json
index a501305..bd8e8e8 100644
--- a/semantics.json
+++ b/semantics.json
@@ -121,12 +121,12 @@
"importance": "high",
"description": "Library for this question.",
"options": [
- "H5P.MultiChoice 1.9",
- "H5P.DragQuestion 1.9",
- "H5P.Blanks 1.7",
- "H5P.MarkTheWords 1.6",
- "H5P.DragText 1.5",
- "H5P.TrueFalse 1.1"
+ "H5P.MultiChoice 1.10",
+ "H5P.DragQuestion 1.11",
+ "H5P.Blanks 1.8",
+ "H5P.MarkTheWords 1.7",
+ "H5P.DragText 1.6",
+ "H5P.TrueFalse 1.2"
]
}
},
@@ -255,6 +255,12 @@
"importance": "low",
"default": true
},
+ {
+ "name": "showSolutionButton",
+ "type": "boolean",
+ "label": "Display solution button",
+ "default": true
+ },
{
"name": "noResultMessage",
"type": "text",
@@ -270,7 +276,6 @@
"label": "Feedback heading",
"importance": "low",
"default": "Your result:",
- "optional": true,
"description": "This heading will be displayed at the end of the quiz when the user has answered all questions.",
"tags": [
"strong",
@@ -278,75 +283,128 @@
]
},
{
- "name": "scoreString",
- "type": "text",
- "label": "Score display text",
+ "name": "overallFeedback",
+ "type": "group",
+ "label": "Overall Feedback",
"importance": "low",
- "description": "Text used to display Total user score. \"@score\" will be replaced by calculated score, \"@total\" will be replaced by maximum possible score. ",
- "default": "You got @score of @total points",
- "optional": true
- },
- {
- "name": "successGreeting",
- "type": "text",
- "label": "Quiz passed greeting",
- "importance": "low",
- "placeholder": "Congratulations!",
- "default": "Congratulations!",
- "optional": true,
- "description": "This text will be displayed above the score if the user has successfully passed the quiz.",
- "tags": [
- "strong",
- "em"
+ "expanded": true,
+ "fields": [
+ {
+ "name": "overallFeedback",
+ "type": "list",
+ "widgets": [
+ {
+ "name": "RangeList",
+ "label": "Default"
+ }
+ ],
+ "importance": "high",
+ "label": "Define custom feedback for any score range",
+ "description": "Click the \"Add range\" button to add as many ranges as you need. Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
+ "entity": "range",
+ "min": 1,
+ "defaultNum": 1,
+ "optional": true,
+ "field": {
+ "name": "overallFeedback",
+ "type": "group",
+ "importance": "low",
+ "fields": [
+ {
+ "name": "from",
+ "type": "number",
+ "label": "Score Range",
+ "min": 0,
+ "max": 100,
+ "default": 0,
+ "unit": "%"
+ },
+ {
+ "name": "to",
+ "type": "number",
+ "min": 0,
+ "max": 100,
+ "default": 100,
+ "unit": "%"
+ },
+ {
+ "name": "feedback",
+ "type": "text",
+ "label": "Feedback for defined score range",
+ "importance": "low",
+ "placeholder": "Fill in the feedback",
+ "optional": true
+ }
+ ]
+ }
+ }
]
},
{
- "name": "successComment",
- "type": "text",
- "widget": "html",
- "label": "Passed comment",
+ "name": "oldFeedback",
+ "type": "group",
+ "label": "Old Feedback",
"importance": "low",
- "default": "You did very well!",
- "optional": true,
- "description": "This comment will be displayed after the score if the user has successfully passed the quiz.",
- "tags": [
- "sub",
- "sup",
- "strong",
- "em",
- "a",
- "p"
- ]
- },
- {
- "name": "failGreeting",
- "type": "text",
- "label": "Quiz failed title",
- "importance": "low",
- "default": "You did not pass this time.",
- "optional": true,
- "description": "This text will be displayed above the score if the user has failed the quiz.",
- "tags": [
- "strong",
- "em"
- ]
- },
- {
- "name": "failComment",
- "type": "text",
- "widget": "html",
- "label": "Failed comment",
- "importance": "low",
- "default": "Have another try!",
- "optional": true,
- "description": "This comment will be displayed after the score if the user has failed the quiz.",
- "tags": [
- "sub",
- "sup",
- "strong",
- "em",
- "a",
- "p"
+ "deprecated": true,
+ "fields": [
+ {
+ "name": "successGreeting",
+ "type": "text",
+ "label": "Quiz passed greeting",
+ "importance": "low",
+ "optional": true,
+ "description": "This text will be displayed above the score if the user has successfully passed the quiz.",
+ "tags": [
+ "strong",
+ "em"
+ ]
+ },
+ {
+ "name": "successComment",
+ "type": "text",
+ "widget": "html",
+ "label": "Passed comment",
+ "importance": "low",
+ "optional": true,
+ "description": "This comment will be displayed after the score if the user has successfully passed the quiz.",
+ "tags": [
+ "sub",
+ "sup",
+ "strong",
+ "em",
+ "a",
+ "p"
+ ]
+ },
+ {
+ "name": "failGreeting",
+ "type": "text",
+ "label": "Quiz failed title",
+ "importance": "low",
+ "optional": true,
+ "description": "This text will be displayed above the score if the user has failed the quiz.",
+ "tags": [
+ "strong",
+ "em"
+ ]
+ },
+ {
+ "name": "failComment",
+ "type": "text",
+ "widget": "html",
+ "label": "Failed comment",
+ "importance": "low",
+ "optional": true,
+ "description": "This comment will be displayed after the score if the user has failed the quiz.",
+ "tags": [
+ "sub",
+ "sup",
+ "strong",
+ "em",
+ "a",
+ "p"
+ ]
+ }
]
},
{
@@ -454,4 +512,4 @@
}
]
}
-]
\ No newline at end of file
+]
diff --git a/upgrades.js b/upgrades.js
index dc41328..7829f31 100644
--- a/upgrades.js
+++ b/upgrades.js
@@ -52,6 +52,52 @@ H5PUpgrades['H5P.QuestionSet'] = (function ($) {
// Remove old copyright dialog question label
delete parameters.questionLabel;
+ finished(null, parameters);
+ },
+
+ /**
+ * Asynchronous content upgrade hook.
+ *
+ * Upgrade params to support overall feedback
+ *
+ * @param {Object} parameters
+ * @param {function} finished
+ */
+ 13: function (parameters, finished) {
+
+ parameters.endGame = parameters.endGame || {};
+ parameters.endGame.overallFeedback = [];
+
+ if (parameters.endGame.scoreString) {
+ parameters.endGame.overallFeedback.push({
+ from: 0,
+ to: 100,
+ feedback: parameters.endGame.scoreString
+ });
+
+ delete parameters.endGame.scoreString;
+ }
+
+ // Group old feedback fields
+ if (parameters.endGame.successGreeting ||
+ parameters.endGame.successComment ||
+ parameters.endGame.failGreeting ||
+ parameters.endGame.failComment) {
+ parameters.endGame.oldFeedback = {};
+ if (parameters.endGame.successGreeting) {
+ parameters.endGame.oldFeedback.successGreeting = parameters.endGame.successGreeting;
+ }
+ if (parameters.endGame.successComment) {
+ parameters.endGame.oldFeedback.successComment = parameters.endGame.successComment;
+ }
+ if (parameters.endGame.failGreeting) {
+ parameters.endGame.oldFeedback.failGreeting = parameters.endGame.failGreeting;
+ }
+ if (parameters.endGame.failComment) {
+ parameters.endGame.oldFeedback.failComment = parameters.endGame.failComment;
+ }
+ }
+
finished(null, parameters);
}
}