Compare commits

..

1 Commits

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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