Compare commits

..

1 Commits

Author SHA1 Message Date
Frode Petterson d72490a04d Revert "Add ability to override check button" 2017-06-12 11:05:27 +02:00
50 changed files with 511 additions and 10962 deletions

View File

@ -1,3 +0,0 @@
files:
- source: /language/.en.json
translation: /language/%two_letters_code%.json

View File

@ -120,6 +120,10 @@
content: "\f01e";
}
.qs-footer > .next, .qs-footer > .finish, .qs-finishbutton {
float: right;
}
/* Need to disable max-height animation stuff, since this will
make resizing of iframe in Safari not work! */
.questionset .h5p-question-buttons.h5p-question-visible {
@ -151,6 +155,15 @@
line-height: 2.2335em;
}
.h5p-question .h5p-question-next,
.h5p-question .h5p-question-finish {
margin: 0 0 1.5em 0.5em;
}
.h5p-question .h5p-question-prev {
margin: 0 0.5em 1.5em 0.5em;
}
.h5p-question .h5p-question-next:before {
content: "\f054";
padding-right: 0;
@ -165,14 +178,17 @@
left: -2px;
}
.questionset-results .qs-finishbutton {
display: none;
}
.h5p-question .h5p-question-finish:before {
content: "\f00c";
}
.questionset-results button.h5p-button.qs-solutionbutton:before {
font-family: 'H5PFontAwesome4';
padding-right: 0.5em;
content: "\f06e";
content: "\f06e "; /* TODO: Use margin not whitespace, spacing is not content! */
}
.video-container {
@ -209,27 +225,30 @@
font-size: 1.25em;
}
.questionset-results .feedback-section .feedback-text {
font-weight: normal;
color: #777;
}
.questionset-results .buttons {
margin: 2em 0 1em 0;
margin-bottom: 1.5em;
}
.questionset-results .result-header,
.questionset-results .result-text,
.questionset-results .feedback-section .feedback-text {
.questionset-results .result-text {
color: #1a73d9;
font-weight: bold;
}
.questionset-results .result-header {
font-size: 2em;
margin: 1em 0.5em 0.5em 0.5em;
margin-top: 1em;
}
.questionset-results .result-text,
.questionset-results .feedback-section .feedback-text {
.questionset-results .result-text {
font-size: 1.25em;
line-height: 1.25em;
margin: 1em;
margin: 1em 1em 2.25em;
}
/* No margin for questions when no frame */
@ -247,9 +266,3 @@
.h5p-no-frame .questionset .h5p-question > *:last-child {
margin-bottom: 0;
}
/* Hide the fullscreen button rendered by H5P.DragQuestion */
.questionset .h5p-question.h5p-dragquestion .h5p-my-fullscreen-button-enter,
.questionset .h5p-question.h5p-dragquestion .h5p-my-fullscreen-button-exit {
display: none;
}

View File

@ -20,57 +20,6 @@ H5P.QuestionSet = function (options, contentId, contentData) {
var self = this;
this.contentId = contentId;
var defaults = {
initialQuestion: 0,
progressType: 'dots',
passPercentage: 50,
questions: [],
introPage: {
showIntroPage: false,
title: '',
introduction: '',
startButtonText: 'Start'
},
texts: {
prevButton: 'Previous question',
nextButton: 'Next question',
finishButton: 'Finish',
submitButton: 'Submit',
textualProgress: 'Question: @current of @total questions',
jumpToQuestion: 'Question %d of %total',
questionLabel: 'Question',
readSpeakerProgress: 'Question @current of @total',
unansweredText: 'Unanswered',
answeredText: 'Answered',
currentQuestionText: 'Current question'
},
endGame: {
showResultPage: true,
noResultMessage: 'Finished',
message: 'Your result:',
oldFeedback: {
successGreeting: '',
successComment: '',
failGreeting: '',
failComment: ''
},
overallFeedback: [],
finishButtonText: 'Finish',
submitButtonText: 'Submit',
solutionButtonText: 'Show solution',
retryButtonText: 'Retry',
showAnimations: false,
skipButtonText: 'Skip video',
showSolutionButton: true,
showRetryButton: true
},
override: {},
disableBackwardsNavigation: false
};
this.isSubmitting = contentData
&& (contentData.isScoringEnabled || contentData.isReportingEnabled);
var params = $.extend(true, {}, defaults, options);
var texttemplate =
'<% if (introPage.showIntroPage) { %>' +
'<div class="intro-page">' +
@ -80,7 +29,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
' <% if (introPage.introduction) { %>' +
' <div class="introduction"><%= introPage.introduction %></div>' +
' <% } %>' +
' <div class="buttons"><a href="#" class="qs-startbutton h5p-joubelui-button h5p-button"><%= introPage.startButtonText %></a></div>' +
' <div class="buttons"><a class="qs-startbutton h5p-joubelui-button h5p-button"><%= introPage.startButtonText %></a></div>' +
'</div>' +
'<% } %>' +
'<div tabindex="-1" class="qs-progress-announcer"></div>' +
@ -112,13 +61,9 @@ H5P.QuestionSet = function (options, contentId, contentData) {
' </div>' +
'</div>';
var solutionButtonTemplate = params.endGame.showSolutionButton ?
' <button type="button" class="h5p-joubelui-button h5p-button qs-solutionbutton"><%= solutionButtonText %></button>':
'';
const retryButtonTemplate = params.endGame.showRetryButton ?
' <button type="button" class="h5p-joubelui-button h5p-button qs-retrybutton"><%= retryButtonText %></button>':
'';
var solutionButtonTemplate = options.endGame.showSolutionButton ?
' <button type="button" class="h5p-joubelui-button h5p-button qs-solutionbutton"><%= solutionButtonText %></button>':
'';
var resulttemplate =
'<div class="questionset-results">' +
@ -134,13 +79,56 @@ H5P.QuestionSet = function (options, contentId, contentData) {
' <div class="result-text"><%= resulttext %></div>' +
' <% } %>' +
' <div class="buttons">' +
' <button type="button" class="h5p-joubelui-button h5p-button qs-finishbutton"><%= finishButtonText %></button>' +
solutionButtonTemplate +
retryButtonTemplate +
' <button type="button" class="h5p-joubelui-button h5p-button qs-retrybutton"><%= retryButtonText %></button>' +
' </div>' +
'</div>';
var defaults = {
initialQuestion: 0,
progressType: 'dots',
passPercentage: 50,
questions: [],
introPage: {
showIntroPage: false,
title: '',
introduction: '',
startButtonText: 'Start'
},
texts: {
prevButton: 'Previous question',
nextButton: 'Next question',
finishButton: 'Finish',
textualProgress: 'Question: @current of @total questions',
jumpToQuestion: 'Question %d of %total',
questionLabel: 'Question',
readSpeakerProgress: 'Question @current of @total',
unansweredText: 'Unanswered',
answeredText: 'Answered',
currentQuestionText: 'Current question'
},
endGame: {
showResultPage: true,
noResultMessage: 'Finished',
message: 'Your result:',
successGreeting: 'Congratulations!',
successComment: 'You have enough correct answers to pass the test.',
failGreeting: 'Sorry!',
failComment: "You don't have enough correct answers to pass this test.",
scoreString: 'You got @score of @total points',
finishButtonText: 'Finish',
solutionButtonText: 'Show solution',
retryButtonText: 'Retry',
showAnimations: false,
skipButtonText: 'Skip video'
},
disableBackwardsNavigation: false
};
var template = new EJS({text: texttemplate});
var endTemplate = new EJS({text: resulttemplate});
var params = $.extend(true, {}, defaults, options);
var initialParams = $.extend(true, {}, defaults, options);
var poolOrder; // Order of questions in a pool
@ -170,29 +158,27 @@ H5P.QuestionSet = function (options, contentId, contentData) {
var randomizeQuestionOrdering = function (questions) {
// Save the original order of the questions in a multidimensional array [[question0,0],[question1,1]...
var questionOrdering = questions.map(function (questionInstance, index) {
return [questionInstance, index];
});
var questionOrdering = questions.map(function(questionInstance, index) { return [questionInstance, index] });
// Shuffle the multidimensional array
questionOrdering = H5P.shuffleArray(questionOrdering);
// Retrieve question objects from the first index
questions = [];
var questions = [];
for (var i = 0; i < questionOrdering.length; i++) {
questions[i] = questionOrdering[i][0];
}
// Retrieve the new shuffled order from the second index
var newOrder = [];
for (var j = 0; j < questionOrdering.length; j++) {
for (var i = 0; i< questionOrdering.length; i++) {
// Use a previous order if it exists
if (contentData.previousState && contentData.previousState.questionOrder) {
newOrder[j] = questionOrder[questionOrdering[j][1]];
if(contentData.previousState && contentData.previousState.questionOrder) {
newOrder[i] = questionOrder[questionOrdering[i][1]];
}
else {
newOrder[j] = questionOrdering[j][1];
newOrder[i] = questionOrdering[i][1];
}
}
@ -207,7 +193,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
if (params.poolSize > 0) {
// If a previous pool exists, recreate it
if (contentData.previousState && contentData.previousState.poolOrder) {
if(contentData.previousState && contentData.previousState.poolOrder) {
poolOrder = contentData.previousState.poolOrder;
// Recreate the pool from the saved data
@ -240,7 +226,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
// Set overrides for questions
var override;
if (params.override.showSolutionButton || params.override.retryButton || params.override.checkButton === false) {
if (params.override.showSolutionButton || params.override.retryButton) {
override = {};
if (params.override.showSolutionButton) {
// Force "Show solution" button to be on or off for all interactions
@ -253,11 +239,6 @@ H5P.QuestionSet = function (options, contentId, contentData) {
override.enableRetry =
(params.override.retryButton === 'on' ? true : false);
}
if (params.override.checkButton === false) {
// Force "Check" button to be on or off for all interactions
override.enableCheckButton = params.override.checkButton;
}
}
/**
@ -266,7 +247,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
* @param {object} questions H5P content types to be created as instances
* @return {array} Array of questions instances
*/
var createQuestionInstancesFromQuestions = function (questions) {
var createQuestionInstancesFromQuestions = function(questions) {
var result = [];
// Create question instances from questions
// Instantiate question instances
@ -288,6 +269,9 @@ H5P.QuestionSet = function (options, contentId, contentData) {
}
question.params = question.params || {};
question.params.overrideSettings = question.params.overrideSettings || {};
question.params.overrideSettings.$confirmationDialogParent = $template.last();
question.params.overrideSettings.instance = this;
var hasAnswers = contentData.previousState && contentData.previousState.answers;
var questionInstance = H5P.newRunnable(question, contentId, undefined, undefined,
{
@ -302,7 +286,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
}
return result;
};
}
// Create question instances from questions given by params
questionInstances = createQuestionInstancesFromQuestions(params.questions);
@ -331,8 +315,8 @@ H5P.QuestionSet = function (options, contentId, contentData) {
var _updateButtons = function () {
// Verify that current question is answered when backward nav is disabled
if (params.disableBackwardsNavigation) {
if (questionInstances[currentQuestion].getAnswerGiven() &&
questionInstances.length-1 !== currentQuestion) {
if (questionInstances[currentQuestion].getAnswerGiven()
&& questionInstances.length-1 !== currentQuestion) {
questionInstances[currentQuestion].showButton('next');
}
else {
@ -354,7 +338,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
questionInstances[currentQuestion].hideButton('finish');
}
}
};
};
var _stopQuestion = function (questionNumber) {
if (questionInstances[questionNumber]) {
@ -437,19 +421,15 @@ H5P.QuestionSet = function (options, contentId, contentData) {
var currentQuestion = params.questions[currentQuestionIndex];
var hasAutoPlay = currentQuestion &&
currentQuestion.params.media &&
currentQuestion.params.media.params &&
currentQuestion.params.media.params.playback &&
currentQuestion.params.media.params.playback.autoplay;
var hasAutoPlay = currentQuestion
&& currentQuestion.params.media
&& currentQuestion.params.media.params.playback.autoplay;
if (hasAutoPlay && typeof questionInstances[currentQuestionIndex].play === 'function') {
if (hasAutoPlay) {
questionInstances[currentQuestionIndex].play();
}
};
/**
* Show solutions for subcontent, and hide subcontent buttons.
* Used for contracts with integrated content.
@ -474,7 +454,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
questionInstances[i].showSolutions();
questionInstances[i].toggleReadSpeaker(false);
}
catch (error) {
catch(error) {
H5P.error("subcontent does not contain a valid showSolutions function");
H5P.error(error);
}
@ -500,7 +480,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
* Used for contracts with integrated content.
* @public
*/
this.resetTask = function () {
var resetTask = function () {
// Clear previous state to ensure questions are created cleanly
contentData.previousState = [];
@ -526,7 +506,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
questionInstances[i].hideButton('prev');
}
}
catch (error) {
catch(error) {
H5P.error("subcontent does not contain a valid resetTask function");
H5P.error(error);
}
@ -543,7 +523,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
//Force the last page to be reRendered
rendered = false;
if (params.poolSize > 0) {
if(params.poolSize > 0){
// Make new pool from params.questions
// Randomize and get the results
@ -564,8 +544,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
// Update buttons
initializeQuestion();
}
else if (params.randomQuestions) {
} else if (params.randomQuestions) {
randomizeQuestions();
}
@ -597,7 +576,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
var replaceQuestionsInDOM = function (questionInstances) {
// Find all question containers and detach questions from them
$('.question-container', $myDom).each(function () {
$('.question-container', $myDom).each(function (){
$(this).children().detach();
});
@ -612,19 +591,19 @@ H5P.QuestionSet = function (options, contentId, contentData) {
question.attach($('.question-container:eq(' + i + ')', $myDom));
//Show buttons if necessary
if (questionInstances[questionInstances.length -1] === question &&
question.hasButton('finish')) {
if(questionInstances[questionInstances.length -1] === question
&& question.hasButton('finish')) {
question.showButton('finish');
}
if (questionInstances[questionInstances.length -1] !== question &&
question.hasButton('next')) {
if(questionInstances[questionInstances.length -1] !== question
&& question.hasButton('next')) {
question.showButton('next');
}
if (questionInstances[0] !== question &&
question.hasButton('prev') &&
!params.disableBackwardsNavigation) {
if(questionInstances[0] !== question
&& question.hasButton('prev')
&& !params.disableBackwardsNavigation) {
question.showButton('prev');
}
@ -665,7 +644,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
* @param {number} dotIndex Index of dot
* @param {boolean} isAnswered True if is answered, False if not answered
*/
var toggleAnsweredDot = function (dotIndex, isAnswered) {
var toggleAnsweredDot = function(dotIndex, isAnswered) {
var $el = $('.progress-dot:eq(' + dotIndex +')', $myDom);
// Skip current button
@ -727,9 +706,12 @@ H5P.QuestionSet = function (options, contentId, contentData) {
// Get total score.
var finals = self.getScore();
var totals = self.getMaxScore();
var scoreString = H5P.Question.determineOverallFeedback(params.endGame.overallFeedback, finals / totals).replace('@score', finals).replace('@total', totals);
var scoreString = params.endGame.scoreString.replace("@score", finals).replace("@total", totals);
var success = ((100 * finals / totals) >= params.passPercentage);
var eventData = {
score: scoreString,
passed: success
};
/**
* Makes our buttons behave like other buttons.
@ -752,9 +734,9 @@ H5P.QuestionSet = function (options, contentId, contentData) {
var eparams = {
message: params.endGame.showResultPage ? params.endGame.message : params.endGame.noResultMessage,
comment: params.endGame.showResultPage ? (success ? params.endGame.oldFeedback.successGreeting : params.endGame.oldFeedback.failGreeting) : undefined,
resulttext: params.endGame.showResultPage ? (success ? params.endGame.oldFeedback.successComment : params.endGame.oldFeedback.failComment) : undefined,
finishButtonText: (self.isSubmitting) ? params.endGame.submitButtonText : params.endGame.finishButtonText,
comment: params.endGame.showResultPage ? (success ? params.endGame.successGreeting : params.endGame.failGreeting) : undefined,
resulttext: params.endGame.showResultPage ? (success ? params.endGame.successComment : params.endGame.failComment) : undefined,
finishButtonText: params.endGame.finishButtonText,
solutionButtonText: params.endGame.solutionButtonText,
retryButtonText: params.endGame.retryButtonText
};
@ -764,20 +746,23 @@ H5P.QuestionSet = function (options, contentId, contentData) {
$myDom.append(endTemplate.render(eparams));
if (params.endGame.showResultPage) {
// Add event handlers to summary buttons
hookUpButton('.qs-finishbutton', function () {
self.trigger('h5pQuestionSetFinished', eventData);
});
hookUpButton('.qs-solutionbutton', function () {
showSolutions();
$myDom.children().hide().filter('.questionset').show();
_showQuestion(params.initialQuestion);
});
hookUpButton('.qs-retrybutton', function () {
self.resetTask();
resetTask();
$myDom.children().hide();
var $intro = $('.intro-page', $myDom);
if ($intro.length) {
// Show intro
$('.intro-page', $myDom).show();
$('.qs-startbutton', $myDom).focus();
}
else {
// Show first question
@ -790,6 +775,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
scoreBar = H5P.JoubelUI.createScoreBar(totals);
}
scoreBar.appendTo($('.feedback-scorebar', $myDom));
scoreBar.setScore(finals);
$('.feedback-text', $myDom).html(scoreString);
// Announce that the question set is complete
@ -800,13 +786,11 @@ H5P.QuestionSet = function (options, contentId, contentData) {
eparams.comment + '.' +
eparams.resulttext)
.show().focus();
scoreBar.setMaxScore(totals);
scoreBar.setScore(finals);
}, 0);
}
else {
// Remove buttons and feedback section
$('.qs-solutionbutton, .qs-retrybutton, .feedback-section', $myDom).remove();
$('.qs-finishbutton, .qs-solutionbutton, .qs-retrybutton, .feedback-section', $myDom).remove();
}
self.trigger('resize');
@ -877,8 +861,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
registerImageLoadedListener(question);
// Add finish button
const finishButtonText = (self.isSubmitting) ? params.texts.submitButton : params.endGame.finishButton
question.addButton('finish', finishButtonText,
question.addButton('finish', params.texts.finishButton,
moveQuestion.bind(this, 1), false);
// Add next button
@ -896,7 +879,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
});
// Hide next button if it is the last question
if (questionInstances[questionInstances.length -1] === question) {
if(questionInstances[questionInstances.length -1] === question) {
question.hideButton('next');
}
@ -964,23 +947,11 @@ H5P.QuestionSet = function (options, contentId, contentData) {
// Allow other libraries to add transitions after the questions have been inited
$('.questionset', $myDom).addClass('started');
$('.qs-startbutton', $myDom)
.click(function () {
$(this).parents('.intro-page').hide();
$('.questionset', $myDom).show();
_showQuestion(params.initialQuestion);
event.preventDefault();
})
.keydown(function (event) {
switch (event.which) {
case 13: // Enter
case 32: // Space
$(this).parents('.intro-page').hide();
$('.questionset', $myDom).show();
_showQuestion(params.initialQuestion);
event.preventDefault();
}
});
$('.qs-startbutton', $myDom).click(function () {
$(this).parents('.intro-page').hide();
$('.questionset', $myDom).show();
_showQuestion(params.initialQuestion);
});
/**
* Triggers changing the current question.
@ -1079,13 +1050,6 @@ H5P.QuestionSet = function (options, contentId, contentData) {
this.getCopyrights = function () {
var info = new H5P.ContentCopyrights();
// IntroPage Background
if (params.introPage !== undefined && params.introPage.backgroundImage !== undefined && params.introPage.backgroundImage.copyright !== undefined) {
var introBackground = new H5P.MediaCopyright(params.introPage.backgroundImage.copyright);
introBackground.setThumbnail(new H5P.Thumbnail(H5P.getPath(params.introPage.backgroundImage.path, contentId), params.introPage.backgroundImage.width, params.introPage.backgroundImage.height));
info.addMedia(introBackground);
}
// Background
if (params.backgroundImage !== undefined && params.backgroundImage.copyright !== undefined) {
var background = new H5P.MediaCopyright(params.backgroundImage.copyright);
@ -1097,8 +1061,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
var questionCopyrights;
for (var i = 0; i < questionInstances.length; i++) {
var instance = questionInstances[i];
var instanceParams = params.questions[i].params;
var qParams = params.questions[i].params;
questionCopyrights = undefined;
if (instance.getCopyrights !== undefined) {
@ -1108,16 +1071,13 @@ H5P.QuestionSet = function (options, contentId, contentData) {
if (questionCopyrights === undefined) {
// Create a generic flat copyright list
questionCopyrights = new H5P.ContentCopyrights();
H5P.findCopyrights(questionCopyrights, instanceParams.params, contentId,{
metadata: instanceParams.metadata,
machineName: instanceParams.library.split(' ')[0]
});
H5P.findCopyrights(questionCopyrights, qParams, contentId);
}
// Determine label
var label = (params.texts.questionLabel + ' ' + (i + 1));
if (instanceParams.params.contentName !== undefined) {
label += ': ' + instanceParams.params.contentName;
if (qParams.contentName !== undefined) {
label += ': ' + qParams.contentName;
}
else if (instance.getTitle !== undefined) {
label += ': ' + instance.getTitle();
@ -1147,10 +1107,10 @@ H5P.QuestionSet = function (options, contentId, contentData) {
return info;
};
this.getQuestions = function () {
this.getQuestions = function() {
return questionInstances;
};
this.showSolutions = function () {
this.showSolutions = function() {
renderSolutions = true;
};
@ -1208,7 +1168,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
/**
* Add the question itself to the definition part of an xAPIEvent
*/
var addQuestionToXAPI = function (xAPIEvent) {
var addQuestionToXAPI = function(xAPIEvent) {
var definition = xAPIEvent.getVerifiedStatementValue(['object', 'definition']);
$.extend(definition, getxAPIDefinition());
};
@ -1219,8 +1179,8 @@ H5P.QuestionSet = function (options, contentId, contentData) {
* @param {Object} metaContentType
* @returns {array}
*/
var getXAPIDataFromChildren = function (metaContentType) {
return metaContentType.getQuestions().map(function (question) {
var getXAPIDataFromChildren = function(metaContentType) {
return metaContentType.getQuestions().map(function(question) {
return question.getXAPIData();
});
};
@ -1231,7 +1191,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
*
* @see contract at {@link https://h5p.org/documentation/developers/contracts#guides-header-6}
*/
this.getXAPIData = function () {
this.getXAPIData = function(){
var xAPIEvent = this.createXAPIEventTemplate('answered');
addQuestionToXAPI(xAPIEvent);
xAPIEvent.setScoredResult(this.getScore(),
@ -1243,19 +1203,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
return {
statement: xAPIEvent.data.statement,
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)
};
}
};
};

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": "Vasvra inleiding",
"fields": [
{
"label": "Vertoon inleiding"
},
{
"label": "Titel",
"description": "Hierdie titel sal bo die inleidende teks vertoon word."
},
{
"label": "Inleidende teks",
"description": "Hierdie teks sal vertoon word voor die vasvra begin."
},
{
"label": "Beginknoppie teks",
"default": "Begin vasvra"
},
{
"label": "Agtergrondprent",
"description": "'n Opsionele agtergrondprent vir die inleiding."
}
]
},
{
"label": "Agtergrondprent",
"description": "'n Vrywillige agtergrondprent vir die vraagstel."
},
{
"label": "Vorderingaanwyser",
"description": "Vraagstel vorderingaanwyser styl.",
"options": [
{
"label": "Tekstueel"
},
{
"label": "Kolletjies"
}
]
},
{
"label": "Slaag persentasie",
"description": "Persentasie van totale telling wat vereis word om vasvra te slaag."
},
{
"label": "Vrae",
"widgets": [
{
"label": "Verstek"
},
{
"label": "Tekstueel"
}
],
"entity": "vraag",
"field": {
"label": "Vraagtipe",
"description": "Biblioteek vir hierdie vraag."
}
},
{
"label": "Koppelvlaktekste in vasvra",
"fields": [
{
"label": "Terug knoppie",
"default": "Vorige vraag"
},
{
"label": "Volgende knoppie",
"default": "Volgende vraag"
},
{
"label": "Klaar knoppie",
"default": "Klaar"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "Vordering teks",
"description": "Teks gebruik indien tektuele vordering gekies is.",
"default": "Vraag: @current van @total vrae"
},
{
"label": "Etiket om te spring tot 'n bepaalde vraag",
"description": "Jy moet die plekhouer '%d' in stede van die vraagnommer, en %total in stede van die totale aantal vrae gebruik.",
"default": "Vraag %d van %total"
},
{
"label": "Kopiereg dialoog vraagetiket",
"default": "Vraag"
},
{
"label": "Spreekleser vordering",
"description": "Mag @current en @total vraagveranderlikes gebruik",
"default": "Vraag @current uit @total"
},
{
"label": "Onbeantwoorde vraagteks",
"default": "Onbeantwoord"
},
{
"label": "Beantwoorde vraagteks",
"default": "Beantwoord"
},
{
"label": "Huidige vraagteks",
"default": "Huidige vraag"
}
]
},
{
"label": "Verbied agteruitnavigasie",
"description": "Hierdie keuse laat jou slegs toe om vorentoe te beweeg met die vraagstel"
},
{
"label": "Skommel vrae",
"description": "Aktiveer ewekansige orde van vrae op vooraansig."
},
{
"label": "Aantal vrae om te wys:",
"description": "Skep 'n ewekansige bondel vrae uit die somtotaal."
},
{
"label": "Vasvra klaar",
"fields": [
{
"label": "Vertoon uitslae"
},
{
"label": "Vertoon oplossing knoppie"
},
{
"label": "Vertoon probeer weer knoppie"
},
{
"label": "Geen uitslae boodskap",
"description": "Teks word op die eindblad vertoon wanneer 'Vertoonresultate' gedeaktiveer is",
"default": "Klaar"
},
{
"label": "Terugvoer opskrif",
"default": "Jou uitslae:",
"description": "Hierdie opskrif sal aan die einde van die vasvra vertoon wanneer die gebruiker al die vrae beantwoord het."
},
{
"label": "Algehele terugvoer",
"fields": [
{
"widgets": [
{
"label": "Verstek"
}
],
"label": "Bepaal verstekterugvoer vir enige reeks tellings",
"description": "Voorbeeld: 0-20% Swak telling, 21-91% Gemiddelde telling, 91-100% Uitstekende telling!",
"entity": "reeks",
"field": {
"fields": [
{
"label": "Telreeks"
},
{},
{
"label": "Terugvoer vir gedefinieerde telreeks",
"placeholder": "Vul die terugvoer in"
}
]
}
}
]
},
{
"label": "Ou terugvoer",
"fields": [
{
"label": "Vasvra geslaag begroeting",
"description": "Hierdie teks sal bo die telling vertoon word sodra die gebruiker die vasvra suksesvol geslaag het."
},
{
"label": "Geslaag kommentaar",
"description": "Hierdie opmerking sal na die telling vertoon word as die gebruiker die vasvra suksesvol geslaag het."
},
{
"label": "Vasvra misluk titel",
"description": "Hierdie teks sal bo die telling vertoon word as die gebruiker nie die vasvra het nie."
},
{
"label": "Gedruip kommentaar",
"description": "Hierdie opmerking sal na die telling vertoon word as die gebruiker die vasvra gedruip het."
}
]
},
{
"label": "Antwoord knoppie-etiket",
"default": "Wys antwoord",
"description": "Teks vir die antwoord knoppie."
},
{
"label": "Probeer weer knoppie etiket",
"default": "Probeer weer",
"description": "Teks vir die probeer weer knoppie."
},
{
"label": "Klaar knoppieteks",
"default": "Klaar"
},
{
"label": "Submit button text",
"default": "Submit"
},
{
"label": "Vertoon video voor vasvra uitslae"
},
{
"label": "Aktiveer slaan video oor knoppie"
},
{
"label": "Slaan video oor etiket",
"default": "Slaan video oor"
},
{
"label": "Video geslaag",
"description": "Hierdie video sal gespeel word indien die gebruiker die vasvra geslaag het."
},
{
"label": "Druip video",
"description": "Hierdie video sal gespeel word indien die gebruiker die vasvra gedruip het."
}
]
},
{
"label": "Instellings vir die \"Wys antwoord\" en \"Probeer weer\" knoppies",
"fields": [
{
"label": "Wys \"Toets\" knoppies",
"description": "Hierdie opsie bepaal of die \"Toets\" knoppie vir alle vrae gewys sal word."
},
{
"label": "Oorskry \"Wys oplossing\" knoppie",
"description": "Hierdie opsie bepaal of die \"Wys antwoord\" -knoppie vir alle vrae getoon word, vir almal uitgeskakel of afsonderlik vir elke vraag ingestel word.",
"options": [
{
"label": "Aktiveer"
},
{
"label": "Deaktiveer"
}
]
},
{
"label": "Oorskry \"Probeer weer\" knoppie",
"description": "Hierdie opsie bepaal of die \"Probeer weer\" -knoppie vir alle vrae getoon word, vir almal uitgeskakel of afsonderlik vir elke vraag ingestel word.",
"options": [
{
"label": "Aktiveer"
},
{
"label": "Deaktiveer"
}
]
}
]
}
]
}

View File

@ -15,8 +15,7 @@
"description": "سيتم عرض هذا النص قبل أن تبدأ هذه المسابقة"
},
{
"label": "بدء زر النص",
"default": "Start Quiz"
"label": "بدء زر النص"
},
{
"label": "صورة الخلفية",
@ -64,25 +63,17 @@
"label": "واجهة النصوص لهذه المسابقة",
"fields": [
{
"label": "زر العودة",
"default": "Previous question"
"label": "زر الرجوع"
},
{
"label": "زر التقدم",
"default": "Next question"
"label": "زر التقدم"
},
{
"label": "زر الانتهاء",
"default": "Finish"
},
{
"label": "Submit button",
"default": "Submit"
"label": "زر الانتهاء"
},
{
"label": "نص التقدم",
"description": "النص المستخدم إذا تم تحديد التقدم نصيا",
"default": "Question: @current of @total questions"
"description": "النص المستخدم إذا تم تحديد التقدم نصيا"
},
{
"label": "Label for jumping to a certain question",
@ -91,7 +82,7 @@
},
{
"label": "Copyright dialog question label",
"default": "السؤال"
"default": "Question"
},
{
"label": "Readspeaker progress",
@ -118,7 +109,7 @@
},
{
"label": "Randomize questions",
"description": "تمكين العرض بطريقة عشوائية وترتيب الأسئلة على الشاشة"
"description": "Enable to randomize the order of questions on display."
},
{
"label": "Number of questions to be shown:",
@ -133,9 +124,6 @@
{
"label": "Display solution button"
},
{
"label": "Display retry button"
},
{
"label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled",
@ -143,74 +131,38 @@
},
{
"label": "نص راس الملاحظات",
"default": "Your result:",
"description": "سيتم عرض هذا العنوان في نهاية هذه المسابقة حيثما أجاب المستخدم على جميع الأسئلة المستعملة"
},
{
"label": "شفافية خلفية العناصر",
"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": "عرض نص النتيجة",
"description": "النص يستخدم لعرض مجموع النقاط للمستخدم \"@score\" سوف تحل محلها النتيجة المحسوبة, \"@total\" حسب أقصى درجة ممكنة"
},
{
"label": "Old Feedback",
"fields": [
{
"label": "تعليق النجاح بالمسابقة",
"description": "سيتم عرض هذا النص أعلاه النتيجة إذا انقضى المستخدم بنجاح هذه المسابقة"
},
{
"label": "ملاحظة النجاح",
"description": "سيتم عرض هذه الملاحظة بعد النتيجة إذا انقضى المستخدم بنجاح هذه المسابقة"
},
{
"label": "تعليق الرسوب بالمسابقة",
"description": "سيتم عرض هذا النص أعلاه النتيجة إذا كان المستخدم قد فشلت في المسابقة"
},
{
"label": "ملاحظة الرسوب",
"description": "سيتم عرض هذه الملاحظة بعد النتيجة إذا كان المستخدم قد فشلت في المسابقة"
}
]
"label": "تعليق النجاح بالمسابقة",
"description": "سيتم عرض هذا النص أعلاه النتيجة إذا انقضى المستخدم بنجاح هذه المسابقة"
},
{
"label": "ملاحظة النجاح",
"description": "سيتم عرض هذه الملاحظة بعد النتيجة إذا انقضى المستخدم بنجاح هذه المسابقة"
},
{
"label": "تعليق الرسوب بالمسابقة",
"description": "سيتم عرض هذا النص أعلاه النتيجة إذا كان المستخدم قد فشلت في المسابقة"
},
{
"label": "ملاحظة الرسوب",
"description": "سيتم عرض هذه الملاحظة بعد النتيجة إذا كان المستخدم قد فشلت في المسابقة"
},
{
"label": "تسمية زر اظهار الحل",
"default": "مشاهدة الحل",
"description": "نص زر الحل"
},
{
"label": "تسمية زر إعادة المحاولة",
"default": "إعادة المحاولة",
"description": "نص زر إعادة المحاولة"
},
{
"label": "نص زر الانتهاء",
"default": "Finish"
},
{
"label": "Submit button text",
"default": "Submit"
"label": "نص زر الانتهاء"
},
{
"label": "عرض الفيديو قبل نتائج المسابقة"
@ -219,8 +171,7 @@
"label": "تفعيل زر تخطى الفيديو"
},
{
"label": "تسمية زر تخطى الفيديو",
"default": "Skip video"
"label": "تسمية زر تخطى الفيديو"
},
{
"label": "فيديو النجاح بالمسابقة",
@ -235,10 +186,6 @@
{
"label": "إعدادات زر \"مشاهدة حل \" وزر \"إعادة المحاولة\" ",
"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.",
@ -266,4 +213,4 @@
]
}
]
}
}

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

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

View File

@ -1,269 +0,0 @@
{
"semantics": [
{
"label": "Introducció al qüestionari",
"fields": [
{
"label": "Mostra la introdució"
},
{
"label": "Títol",
"description": "Aquest títol es mostrarà a sobre del text dintroducció."
},
{
"label": "Text dintroducció",
"description": "Aquest text es mostrarà abans de començar el qüestionari."
},
{
"label": "Text del botó \"Inicia\"",
"default": "Inicia el qüestionari"
},
{
"label": "Imatge de fons",
"description": "Una imatge de fons opcional per a la introducció."
}
]
},
{
"label": "Imatge de fons",
"description": "Imatge de fons opcional per al conjunt de preguntes."
},
{
"label": "Indicador de progrés",
"description": "Estil de lindicador de progrés del conjunt de preguntes.",
"options": [
{
"label": "Textual"
},
{
"label": "Punts"
}
]
},
{
"label": "Percentatge per aprovar el qüestionari",
"description": "Percentatge de la puntuació total requerida per aprovar el qüestionari."
},
{
"label": "Preguntes",
"widgets": [
{
"label": "Opció predeterminada"
},
{
"label": "Textual"
}
],
"entity": "pregunta",
"field": {
"label": "Tipus de pregunta",
"description": "Biblioteca per a aquesta pregunta."
}
},
{
"label": "Textos de la interfície al qüestionari",
"fields": [
{
"label": "Botó \"Enrere\"",
"default": "Pregunta anterior"
},
{
"label": "Botó següent",
"default": "Pregunta següent"
},
{
"label": "Botó \"Finalitza\"",
"default": "Finalitza"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "Text del progrés",
"description": "Text que sutilitza si se selecciona el progrés textual.",
"default": "Pregunta: @current de @total"
},
{
"label": "Etiqueta per saltar a una pregunta concreta",
"description": "Heu dutilitzar lespai reservat \"%d\" en lloc del número de pregunta i %total en lloc del nombre de preguntes total.",
"default": "Pregunta %d del %total"
},
{
"label": "Etiqueta de la pregunta del quadre de diàleg de drets dautor",
"default": "Pregunta"
},
{
"label": "Progrés de laltaveu de lectura",
"description": "Pot utilitzar variables de pregunta @current i @total",
"default": "Pregunta @current de @total"
},
{
"label": "Text de la pregunta sense respondre",
"default": "No sha respost"
},
{
"label": "Text de la pregunta resposta",
"default": "Respost"
},
{
"label": "Text de la pregunta actual",
"default": "Pregunta actual"
}
]
},
{
"label": "Desactiva la possibilitat de navegar enrere",
"description": "Aquesta opció només us permetrà avançar pel conjunt de preguntes"
},
{
"label": "Distribueix les preguntes aleatòriament",
"description": "Permeteu que les preguntes es distribueixin aleatòriament a la pantalla."
},
{
"label": "Nombre de preguntes a mostrar:",
"description": "Creeu un conjunt aleatori de preguntes extret del total de preguntes."
},
{
"label": "El qüestionari ha finalitzat",
"fields": [
{
"label": "Mostra els resultats"
},
{
"label": "Mostra el botó \"Solució\""
},
{
"label": "Mostra el botó per tornar-ho a provar"
},
{
"label": "Missatge \"Sense resultats\"",
"description": "Text que es mostra a lúltima pàgina quan lopció \"Mostra els resultats\" està desactivada",
"default": "Finalitzat"
},
{
"label": "Encapçalament de la retroacció",
"default": "El seu resultat:",
"description": "Aquest títol es mostrarà al final del qüestionari quan lusuari hagi respost a totes les preguntes."
},
{
"label": "Suggeriment general",
"fields": [
{
"widgets": [
{
"label": "Opció predeterminada"
}
],
"label": "Defineix una valoració per cada rang de puntuació",
"description": "Exemple: 0-20% per a puntuació baixa, 21-91% per a puntuació mitjana, 91-100% per a puntuació excel·lent",
"entity": "rang",
"field": {
"fields": [
{
"label": "Rang de puntuació"
},
{},
{
"label": "Suggeriment per al rang de puntuació definit",
"placeholder": "Introduïu el suggeriment"
}
]
}
}
]
},
{
"label": "Suggeriments antics",
"fields": [
{
"label": "Lenhorabona per a qüestionari superat",
"description": "Aquest text es mostrarà a sobre de la puntuació, si lusuari ha superat el qüestionari."
},
{
"label": "Comentari per a qüestionari superat",
"description": "Aquest comentari es mostrarà després de la puntuació si lusuari ha superat el qüestionari correctament."
},
{
"label": "Títol de qüestionari no superat",
"description": "Aquest text es mostrarà a sobre de la puntuació, si lusuari no ha superat el qüestionari."
},
{
"label": "Ha fallat el comentari",
"description": "Aquest comentari es mostrarà després de la puntuació, si lusuari no ha superat el qüestionari."
}
]
},
{
"label": "Etiqueta del botó \"Solució\"",
"default": "Mostra la solució",
"description": "Text per al botó de solució."
},
{
"label": "Etiqueta del botó \"Torna-ho a provar\"",
"default": "Torna-ho a provar",
"description": "Text del botó \"Torna-ho a provar\"."
},
{
"label": "Text del botó \"Finalitza\"",
"default": "Finalitza"
},
{
"label": "Submit button text",
"default": "Submit"
},
{
"label": "Mostra el vídeo abans dels resultats del qüestionari"
},
{
"label": "Activa el botó de saltar el vídeo"
},
{
"label": "Etiqueta del botó \"Omet el vídeo\"",
"default": "Omet el vídeo"
},
{
"label": "Vídeo per a qüestionari superat",
"description": "Aquest vídeo es reproduirà si lusuari supera el qüestionari."
},
{
"label": "Vídeo fallit",
"description": "Aquest vídeo es reproduirà si lusuari falla el qüestionari."
}
]
},
{
"label": "Configuració dels botons \"Mostra la solució\" i \"Torna-ho a provar\"",
"fields": [
{
"label": "Mostra els botons \"Comprova\"",
"description": "Aquesta opció determina si es mostrarà el botó \"Comprovar\" per a totes les preguntes."
},
{
"label": "Substitueix el botó \"Mostra la solució\"",
"description": "Aquesta opció determina si el botó \"Mostra la solució\" es mostrarà per a totes les preguntes, es desactivarà per a totes o es configurarà per a cada pregunta individualment.",
"options": [
{
"label": "Activat"
},
{
"label": "Desactivat"
}
]
},
{
"label": "Substitueix el botó \"Torna-ho a provar\"",
"description": "Aquesta opció determina si es mostrarà el botó \"Torna-ho a provar\" per a totes les preguntes, es desactivarà per a totes o es configurarà per a cada pregunta individualment.",
"options": [
{
"label": "Activat"
},
{
"label": "Desactivat"
}
]
}
]
}
]
}

View File

@ -1,269 +0,0 @@
{
"semantics": [
{
"label": "Úvod do testu",
"fields": [
{
"label": "Zobrazit úvod"
},
{
"label": "Nadpis",
"description": "Tento nadpis se zobrazí nad úvodním textem."
},
{
"label": "Úvodní text",
"description": "Tento text se zobrazí před spuštěním testu."
},
{
"label": "Text tlačítka Start",
"default": "Start testu"
},
{
"label": "Obrázek na pozadí",
"description": "Volitelný obrázek na pozadí pro úvod."
}
]
},
{
"label": "Obrázek na pozadí",
"description": "Volitelný obrázek na pozadí pro sadu otázek."
},
{
"label": "Ukazatel průběhu",
"description": "Styl ukazatele průběhu testu.",
"options": [
{
"label": "Textový"
},
{
"label": "Tečky"
}
]
},
{
"label": "Procento úspěšnosti",
"description": "Procento z celkového skóre požadovaného pro absolvování testu."
},
{
"label": "Otázky",
"widgets": [
{
"label": "Výchozí"
},
{
"label": "Textové"
}
],
"entity": "otázka",
"field": {
"label": "Typ otázky",
"description": "Knihovna pro tuto otázku."
}
},
{
"label": "Rozhraní v testu",
"fields": [
{
"label": "Tlačítko Zpět",
"default": "Předchozí otázka"
},
{
"label": "Tlačítko Další",
"default": "Další otázka"
},
{
"label": "Tlačítko Dokončit",
"default": "Dokončit"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "Text průběhu",
"description": "Text použitý, pokud je vybrán textový průběh.",
"default": "Otázka: @current z @total otázek"
},
{
"label": "Popisek pro skok na určitou otázku",
"description": "Musíte použít zástupný symbol \"%d\" namísto čísla otázky, a %total namísto celkového počtu otázek.",
"default": "Otázka %d z %total"
},
{
"label": "Popisek s otázkou dialogového okna autorských práv",
"default": "Otázka"
},
{
"label": "Průběh čtení čtečky",
"description": "Mohou používat proměnné otázek @current a @total",
"default": "Otázka @current z @total"
},
{
"label": "Text nezodpovězené otázky",
"default": "Nezodpovězeno"
},
{
"label": "Text odpovězené otázky",
"default": "Odpovězeno"
},
{
"label": "Text aktuální otázky",
"default": "Aktuální otázka"
}
]
},
{
"label": "Zakázat navigaci zpět",
"description": "Tato možnost vám umožní postupovat v sadě otázek pouze vpřed"
},
{
"label": "Náhodné otázky",
"description": "Povolit náhodný výběr pořadí zobrazovaných otázek."
},
{
"label": "Počet otázek, které se mají zobrazit:",
"description": "Vytvořte náhodnou dávku otázek z celkového počtu."
},
{
"label": "Test skončil",
"fields": [
{
"label": "Zobrazit výsledky"
},
{
"label": "Zobrazit tlačítko řešení"
},
{
"label": "Zobrazit tlačítko opakování"
},
{
"label": "Žádná zpráva o výsledcích",
"description": "Text zobrazený na konci stránky, když je zakázáno \"Zobrazit výsledky\"",
"default": "Dokončeno"
},
{
"label": "Zpětná vazba",
"default": "Váš výsledek:",
"description": "Tento nadpis se zobrazí na konci testu, když uživatel odpoví na všechny otázky."
},
{
"label": "Celková zpětná vazba",
"fields": [
{
"widgets": [
{
"label": "Výchozí"
}
],
"label": "Definujte vlastní zpětnou vazbu pro libovolný rozsah skóre",
"description": "Příklad: 0-20% špatné skóre, 21-91% průměrné skóre, 91-100% výborné skóre!",
"entity": "rozsah",
"field": {
"fields": [
{
"label": "Rozsah skóre"
},
{},
{
"label": "Zpětná vazba pro definovaný rozsah skóre",
"placeholder": "Vyplňte zpětnou vazbu"
}
]
}
}
]
},
{
"label": "Stará zpětná vazba",
"fields": [
{
"label": "Pozdrav úspěšného testu",
"description": "Tento text se zobrazí nad skóre, pokud uživatel úspěšně prošel testem."
},
{
"label": "Úspěšný komentář",
"description": "Tento komentář se zobrazí po skóre, pokud uživatel úspěšně prošel testem."
},
{
"label": "Test se nezdařil",
"description": "Tento text se zobrazí nad skóre, pokud uživatel byl v testu neúspěšný."
},
{
"label": "Komentář při neúspěchu",
"description": "Tento komentář se zobrazí po skóre, pokud uživatel byl v testu neúspěšný."
}
]
},
{
"label": "Popisek tlačítka řešení",
"default": "Zobrazit řešení",
"description": "Text tlačítka řešení."
},
{
"label": "Popisek tlačítka opakovat",
"default": "Opakovat",
"description": "Text tlačítka opakovat."
},
{
"label": "Popisek tlačítka dokončit",
"default": "Dokončit"
},
{
"label": "Submit button text",
"default": "Submit"
},
{
"label": "Zobrazit video před výsledky testu"
},
{
"label": "Povolit tlačítko přeskočit video"
},
{
"label": "Popisek tlačítka Přeskočit video",
"default": "Přeskočit video"
},
{
"label": "Přehrát video",
"description": "Toto video se přehraje, pokud uživatel úspěšně prošel testem."
},
{
"label": "Video při neúspěchu",
"description": "Toto video se přehraje, pokud uživatel byl v testu neúspěšný."
}
]
},
{
"label": "Nastavení tlačítek \"Zobrazit výsledek\" a \"Opakovat\"",
"fields": [
{
"label": "Zobrazit tlačítko \"Zkontrolovat\"",
"description": "Tato volba určuje, zda se u všech otázek zobrazí tlačítko \"Zkontrolovat\" ."
},
{
"label": "Přepsat tlačítko \"Zobrazit řešení\"",
"description": "Tato volba určuje, zda se u všech otázek zobrazí tlačítko \"Zobrazit řešení\" , nebo bude zakázané pro všechny nebo nakonfigurované pro každou otázku samostatně.",
"options": [
{
"label": "Povoleno"
},
{
"label": "Zakázáno"
}
]
},
{
"label": "Přepsat tlačítko \"Opakovat\"",
"description": "Tato volba určuje, zda se u všech otázek zobrazí tlačítko \"Opakovat\" , nebo bude zakázané pro všechny nebo nakonfigurované pro každou otázku samostatně.",
"options": [
{
"label": "Povoleno"
},
{
"label": "Zakázáno"
}
]
}
]
}
]
}

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": "Tilbage-knap",
"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": "Overskriv \"Vi svar\"-knap",
"description": "Dette valg afgør om \"Vis svar\"-knappen skal vises på alle spørgsmål, skjules for alle eller konfigureres individuelt til hvert spørgsmål.",
"options": [
{
"label": "Aktiveret"
},
{
"label": "Deaktiveret"
}
]
},
{
"label": "Overskriv \"Prøv igen\"-knap",
"description": "Dette valg afgør om \"Prøv igen\"-knappen skal vises på alle spørgsmål, skjules for alle eller konfigureres individuelt til hvert spørgsmål.",
"options": [
{
"label": "Aktiveret"
},
{
"label": "Deaktiveret"
}
]
}
]
}
]
}

View File

@ -16,21 +16,21 @@
},
{
"label": "Beschriftung des \"Start\"-Buttons",
"default": "Quiz starten"
"default": "Starte Quiz"
},
{
"label": "Hintergrundbild",
"description": "Ein optionales Hintergrundbild für die Einführung"
"description": "Ein optionales Hintergrundbild für die Einführung."
}
]
},
{
"label": "Hintergrundbild",
"description": "Ein optionales Hintergrundbild für den Fragensatz"
"description": "Ein optionales Hintergrundbild für das Fragenset."
},
{
"label": "Fortschrittsanzeige",
"description": "Anzeigestil der Fortschrittsanzeige",
"description": "Anzeigestil für die Fortschrittsanzeige des Fragensets.",
"options": [
{
"label": "Text"
@ -41,27 +41,27 @@
]
},
{
"label": "Prozentsatz zum Bestehen",
"description": "Prozentsatz der Gesamtpunktzahl, der nötig ist, um das Quiz zu bestehen"
"label": "Prozent bearbeitet",
"description": "Prozentsatz der Gesamtpunkte, die notwendig sind, um das Quiz zu bestehen."
},
{
"label": "Fragen",
"widgets": [
{
"label": "Eingabemaske"
"label": "Vorgabe"
},
{
"label": "Als Text eingeben"
"label": "Text"
}
],
"entity": "Frage",
"field": {
"label": "Fragentyp",
"description": "Inhaltstyp, der in dieser Frage verwendet wird"
"description": "Bibliothek für diese Frage."
}
},
{
"label": "Bezeichnungen und Beschriftungen",
"label": "Anzeigetexte im Quiz",
"fields": [
{
"label": "Beschriftung des \"Zurück\"-Buttons",
@ -76,26 +76,22 @@
"default": "Beenden"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "Text der Fortschrittsanzeige",
"label": "Fortschrittstext",
"description": "Verwendeter Text, wenn Fortschrittsanzeige in Textform gewählt wurde.",
"default": "Aktuelle Frage: @current von @total Fragen"
},
{
"label": "Beschriftung für das Springen zu einer bestimmten Frage",
"description": "Nutze den Platzhalter %d für die Fragennummer und %total für die Gesamtzahl der Fragen.",
"label": "Beschriftung für das Springen zu einem bestimmten Punkt",
"description": "Nutze den Platzhalter '%d' für die Fragennummer und %total für die Gesamtzahl der Fragen.",
"default": "Frage %d von %total"
},
{
"label": "Beschriftung der Frage im Urheberrechtsdialog",
"label": "Beschriftung für eine Frage zum Urheberrechtsdialog",
"default": "Frage"
},
{
"label": "Text, den Vorlesewerkzeuge nutzen, um den derzeitigen Fortschritt auszugeben",
"description": "verwendbare Variablen: @current und @total",
"label": "Fortschritt \"Readspeaker\"",
"description": "Variablen: @current und @total",
"default": "Frage @current von @total"
},
{
@ -107,97 +103,69 @@
"default": "Beantwortet"
},
{
"label": "Text für die aktuelle Frage",
"label": "Text fpr aktuelle Frage",
"default": "Aktuelle Frage"
}
]
},
{
"label": "Rückwärts-Navigation deaktivieren",
"description": "Wenn aktiviert, kann der Nutzer nur vorwärts durch den Fragensatz navigieren"
"label": "Möglichkeit zum Rückwärts-Springen deaktivieren",
"description": "Wenn aktiviert, kann der Nutzer nur vorwärts durch das Fragenset navigieren."
},
{
"label": "Fragen zufällig anordnen",
"description": "Wenn gewählt, werden die Fragen in einer zufälligen Reihenfolge angeordnet."
"description": "Aktivieren, um die Reihenfolge der Fragen zufällig zu bestimmen."
},
{
"label": "Anzahl der anzuzeigenden Fragen:",
"description": "Kann benutzt werden, um nur eine zufällige Teilmenge von Fragen anzuzeigen."
"description": "Kann benutzt werden, um eine zufällige Auswahl auf mehreren Fragen zu treffen."
},
{
"label": "Quiz beendet",
"fields": [
{
"label": "Ergebnisse anzeigen"
"label": "Ergebnisanzeige"
},
{
"label": "\"Lösung anzeigen\" ermöglichen"
"label": "Hinweis bei keinen Ergebnissen",
"description": "Text, der am Ende angezeigt wird, falls \"Ergebnisse anzeigen\" deaktiviert ist",
"default": "Beendet"
},
{
"label": "\"Wiederholen\"-Button anzeigen"
},
{
"label": "Nachricht, wenn keine Ergebnisse vorliegen",
"description": "Text, der auf der Endseite angezeigt wird, wenn \"Lösung anzeigen\" deaktiviert ist",
"default": "Quiz beendet"
},
{
"label": "Überschrift der Rückmeldung",
"label": "Kopfzeile für die Rückmeldungen",
"default": "Dein Ergebnis:",
"description": "Diese Überschrift wird am Ende angezeigt, wenn alle Fragen beantwortet wurden."
"description": "diese Kopfzeile wird am Ende des Quizzes angezeigt, wenn der Nutzer alle Fragen beantwortet hat."
},
{
"label": "Gesamtrückmeldung",
"fields": [
{
"widgets": [
{
"label": "Voreinstellung"
}
],
"label": "Lege Rückmeldungen für einzelne Punktebereiche fest",
"description": "Klicke auf den \"Bereich hinzufügen\"-Button, um so viele Bereiche hinzuzufügen, wie du brauchst. Beispiel: 0-20% Schlechte Punktzahl, 21-91% Durchschnittliche Punktzahl, 91-100% Großartige Punktzahl!",
"entity": "Bereich",
"field": {
"fields": [
{
"label": "Punktebereich"
},
{},
{
"label": "Rückmeldung für jeweiligen Punktebereich",
"placeholder": "Trage die Rückmeldung ein"
}
]
}
}
]
"label": "Text für die Punkteanzeige",
"description": "Dieser Text wird verwendet, um die Gesamtpunkte des Nutzers anzuzeigen. \"@score\" wird durch die errechnete Punktzahl ersetzt, \"@total\" wird durch die maximal erreichbare Punktzahl ersetzt.",
"default": "Du hast @score Punkte von @total möglichen."
},
{
"label": "Alte Rückmeldung",
"fields": [
{
"label": "Kopfzeile für bestandenes Quiz",
"description": "Dieser Text wird oberhalb der Punkte angezeigt, wenn der Nutzer das Quiz nicht bestanden hat."
},
{
"label": "Kommentar für bestandenes Quiz",
"description": "Dieser Kommentar wird nach den Punkten angezeigt, wenn der Nutzer das Quiz erfolgreich bestanden hat."
},
{
"label": "Kopfzeile für nicht bestandenes Quiz",
"description": "Dieser Text wird oberhalb der Punkte angezeigt, wenn der Nutzer das Quiz nicht bestanden hat."
},
{
"label": "Kommentar für nicht bestandenes Quiz",
"description": "Dieser Kommentar wird nach den Punkten angezeigt, wenn der Nutzer das Quiz nicht bestanden hat."
}
]
"label": "Kopfzeile für \"Quiz bestanden\"",
"placeholder": "Glückwunsch!",
"default": "Glückwunsch!",
"description": "Dieser Text wird oberhalb der Punkte angezeigt, wenn der Nutzer das Quiz erfolgreich abgeschlossen hat."
},
{
"label": "Beschriftung des \"Lösung anzeigen\"-Buttons",
"default": "Lösung anzeigen",
"description": "Beschriftung des \"Lösung anzeigen\"-Buttons"
"label": "Kommentar für bestandenes Quiz",
"default": "Gut gemacht!",
"description": "Dieser Kommentar wird nach den Punkten angezeigt, wenn der Nutzer das Quiz erfolgreich bestanden hat."
},
{
"label": "Kopfzeile für nicht bestandenes Quiz",
"default": "Diese Mal hast du nicht bestanden.",
"description": "Dieser Text wird oberhalb der Punkte angezeigt, wenn der Nutzer das Quiz nicht bestanden hat."
},
{
"label": "Kommentar für nicht bestandenes Quiz",
"default": "Versuche es noch einmal!",
"description": "Dieser Kommentar wird nach den Punkten angezeigt, wenn der Nutzer das Quiz nicht bestanden hat."
},
{
"label": "Beschriftung des \"Lösung zeigen\"-Buttons",
"default": "Lösung zeigen",
"description": "Beschriftung des \"Lösung zeigen\"-Buttons"
},
{
"label": "Beschriftung des \"Wiederholen\"-Buttons",
@ -209,14 +177,10 @@
"default": "Beenden"
},
{
"label": "Submit button text",
"default": "Submit"
"label": "Zeige Video vor den Quizergebnissen"
},
{
"label": "Zeige ein Video vor den Ergebnissen an"
},
{
"label": "Zeige \"Video überspringen\"-Button an"
"label": "Aktiviere \"Video überspringen\"-Button"
},
{
"label": "Beschriftung des \"Video überspringen\"-Buttons",
@ -224,7 +188,7 @@
},
{
"label": "Bestanden-Video",
"description": "Dieses Video wird angezeigt, wenn der Nutzer das Quiz bestanden hat."
"description": "Dieses Video wird angezeigt, wenn der Nutzer das Quiz erfolgreich bestanden hat."
},
{
"label": "Nicht-bestanden-Video",
@ -233,33 +197,29 @@
]
},
{
"label": "Einstellungen für \"Lösung anzeigen\"-Button und \"Wiederholen\"-Button",
"label": "Einstellungen für \"Lösung zeigen\"-Button und \"Nochmal\".",
"fields": [
{
"label": "Überschreiben der Anzeigeoptionen des \"Überprüfen\"-Buttons",
"description": "Diese Option legt fest, ob der \"Überprüfen\"-Button für alle Fragen angezeigt wird."
},
{
"label": "Überschreiben der Anzeigeoptionen des \"Lösungen anzeigen\"-Buttons",
"label": "Überschreiben des \"Lösungen anzeigen\"-Buttons",
"description": "Diese Option gibt an, ob der \"Lösung anzeigen\"-Button für alle Fragen angezeigt, ausgeblendet oder für jede Frage individuell konfiguriert wird.",
"options": [
{
"label": "Immer anzeigen"
"label": "Anzeigen"
},
{
"label": "Immer ausblenden"
"label": "Ausblenden"
}
]
},
{
"label": "Überschreiben der Anzeigeoptionen des \"Wiederholen\"-Buttons",
"label": "Überschreiben des \"Wiederholen\"-Buttons",
"description": "Diese Option gibt an, ob der \"Wiederholen\" Button für alle Fragen angezeigt, ausgeblendet oder für jede Frage individuell konfiguriert wird.",
"options": [
{
"label": "Immer anzeigen"
"label": "Anzeigen"
},
{
"label": "Immer ausblenden"
"label": "Ausblenden"
}
]
}

View File

@ -1,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": "Παράδειγμα: 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

@ -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,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 pregunta."
},
{
"label": "Indicador del Progreso",
"description": "Estilo del indicador del progreso de Conjunto de pregunta.",
"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 pregunta"
},
{
"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 pasado",
"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,269 +0,0 @@
{
"semantics": [
{
"label": "Viktoriini tutvustus",
"fields": [
{
"label": "Kuva tutvustus"
},
{
"label": "Pealkiri",
"description": "Seda pealkirja näidatakse tutvustusteksti kohal."
},
{
"label": "Tutvustustekst",
"description": "Seda teksti näidatakse enne viktoriini algust."
},
{
"label": "Alusta nupu tekst",
"default": "Alusta viktoriini"
},
{
"label": "Taustapilt",
"description": "Valikuline taustapilt tutvustusele."
}
]
},
{
"label": "Taustapilt",
"description": "Valikuline taustapilt küsimustikule."
},
{
"label": "Edenemise osuti",
"description": "Küsimustiku edenemisosuti stiil.",
"options": [
{
"label": "Tekstiline"
},
{
"label": "Punktid"
}
]
},
{
"label": "Läbimise protsent",
"description": "Protsent viktoriini läbimiseks vajalikust punktisummast."
},
{
"label": "Küsimused",
"widgets": [
{
"label": "Vaikimisi"
},
{
"label": "Tekstiline"
}
],
"entity": "küsimus",
"field": {
"label": "Küsimuse liik",
"description": "Selle küsimuse teek."
}
},
{
"label": "Viktoriini kasutajaliidese tekstid",
"fields": [
{
"label": "Tagasi nupp",
"default": "Eelmine küsimus"
},
{
"label": "Edasi nupp",
"default": "Järgmine küsimus"
},
{
"label": "Lõpeta nupp",
"default": "Valmis"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "Edenemise tekst",
"description": "Test, mida kasutatakse, kui valitud on tekstiline edenemisosuti.",
"default": "Küsimus: @current kokku @total küsimusest"
},
{
"label": "Silt kindlale küsimusele hüppamiseks",
"description": "Pead kasutama küsimuse numbri asemel kohatäitjat '%d', ja küsimuste koguarvu asemel kohatäitjat %total.",
"default": "Küsimus %d kokku %total küsimusest"
},
{
"label": "Autoriõiguse dialoogi küsimuse silt",
"default": "Küsimus"
},
{
"label": "Tekstilugeri edenemine",
"description": "Võib kasutada @current ja @total küsimuse muutujaid",
"default": "Küsimus @current kokku @total küsimusest"
},
{
"label": "Vastamata küsimuse tekst",
"default": "Vastamata"
},
{
"label": "Vastatud küsimuse tekst",
"default": "Vastatud"
},
{
"label": "Jooksva küsimuse tekst",
"default": "Jooksev küsimus"
}
]
},
{
"label": "Keela tagasi liikumine",
"description": "Selle valikuga saab kasutaja küsimustikus vaid edasi liikuda"
},
{
"label": "Järjesta küsimused juhuslikult",
"description": "Luba näidatavate küsimuste juhuslik järjekord."
},
{
"label": "Näidatavate küsimuste arv:",
"description": "Loo kõigist küsimustest kogum juhuslikult järjestatud küsimusi."
},
{
"label": "Viktoriin on lõppenud",
"fields": [
{
"label": "Näita tulemusi"
},
{
"label": "Näita lahendust nupp"
},
{
"label": "Display retry button"
},
{
"label": "Tulemusi ei ole sõnum",
"description": "Tekst, mida näidatakse lehe lõpus, kui \"Näita tulemusi\" on keelatud",
"default": "Lõppenud"
},
{
"label": "Tagasiside pealkiri",
"default": "Sinu tulemus:",
"description": "Seda pealkirja näidatakse viktoriini lõpus, kui kasutaja on kõik küsimused vastanud."
},
{
"label": "Üldine tagasiside",
"fields": [
{
"widgets": [
{
"label": "Vaikimisi"
}
],
"label": "Määratle kohandatud tagasiside iga punktisumma vahemiku jaoks",
"description": "Näiteks: 0-20% halb tulemus, 21-91% keskmine tulemus, 91-100% suurepärane tulemus!",
"entity": "vahemik",
"field": {
"fields": [
{
"label": "Punktisumma vahemik"
},
{},
{
"label": "Määratletud punktisummavahemiku tagasiside",
"placeholder": "Sisesta tagasiside"
}
]
}
}
]
},
{
"label": "Vana tagasiside",
"fields": [
{
"label": "Viktoriin läbitud sõnum",
"description": "Seda teksti näidatakse punktisumma kohal, kui kasutaja on edukalt viktoriini läbinud."
},
{
"label": "Läbitud kommentaar",
"description": "Seda kommentaari näidatakse punktisumma järel peale seda, kui kasutaja on viktoriini edukalt läbinud."
},
{
"label": "Viktoriin ebaõnnestus pealkiri",
"description": "Seda teksti näidatakse punktisumma kohal, kui kasutajal ebaõnnestus viktoriini täitmine."
},
{
"label": "Ebaõnnestus kommentaar",
"description": "Seda kommentaari näidatakse punktisumma järel siis, kui kasutajal ebaõnnestus viktoriini täitmine."
}
]
},
{
"label": "Lahendus nupu silt",
"default": "Õige vastus",
"description": "Lahendus nupu tekst."
},
{
"label": "Proovi uuesti nupu silt",
"default": "Proovi uuesti",
"description": "Tekst Proovi uuesti nupule."
},
{
"label": "Valmis nupu tekst",
"default": "Valmis"
},
{
"label": "Submit button text",
"default": "Submit"
},
{
"label": "Kuva videot enne viktoriini tulemusi"
},
{
"label": "Luba video vahelejätmise nupp"
},
{
"label": "Jäta video vahele nupu silt",
"default": "Jäta video vahele"
},
{
"label": "Läbitud video",
"description": "Seda videot mängitakse, kui kasutaja on viktoriini edukalt läbinud."
},
{
"label": "Ebaõnnestunud video",
"description": "Seda videot näidatakse, kui kasutajal ebaõnnestus viktoriini täitmine."
}
]
},
{
"label": "\"Näita lahendust\" ja \"Proovi uuesti\" nuppude seadistused",
"fields": [
{
"label": "Näita \"Kontrolli\" nuppu",
"description": "See valik määrab, kas \"Kontrolli\" nuppu näidatakse kõigi küsimuste juures."
},
{
"label": "\"Näita lahendust\" nupu käitumine",
"description": "See valik määrab, kas \"Show Solution\" nuppu näidatakse kõigi küsimuste juures, on kõigil küsimustel keelatud või häälestatakse igal küsimusel eraldi.",
"options": [
{
"label": "Lubatud"
},
{
"label": "Keelatud"
}
]
},
{
"label": "\"Proovi uuesti\" nupu käitumine",
"description": "See valik määrab, kas \"Proovi uuesti\" nuppu näidatakse kõigi küsimuste juures, on kõigil küsimustel keelatud või häälestatakse igal küsimusel eraldi.",
"options": [
{
"label": "Lubatud"
},
{
"label": "Keelatud"
}
]
}
]
}
]
}

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

@ -1,269 +0,0 @@
{
"semantics": [
{
"label": "Tietovisan johdanto",
"fields": [
{
"label": "Näytä johdanto"
},
{
"label": "Otsikko",
"description": "Johdanto-osion otsikko."
},
{
"label": "Johdantoteksti",
"description": "Teksti näytetään ennen visan alkua."
},
{
"label": "Aloita -painikkeen teksti",
"default": "Aloita"
},
{
"label": "Taustakuva",
"description": "Valinnainen taustakuva johdantoon."
}
]
},
{
"label": "Taustakuva",
"description": "Valinnainen taustakuva kysymyksille."
},
{
"label": "Edistymisen näyttäminen",
"description": "Miten edistyminen tehtävässä näytetään tekijälle.",
"options": [
{
"label": "Teksti"
},
{
"label": "Täplät"
}
]
},
{
"label": "Läpäisyprosentti",
"description": "Kuinka monta prosenttia maksimipisteistä vaaditaan tehtävän läpäisyyn."
},
{
"label": "Kysymykset",
"widgets": [
{
"label": "Oletus"
},
{
"label": "Teksti"
}
],
"entity": "kysymys",
"field": {
"label": "Kysymyksen tyyppi",
"description": "Tarjolla olevat kysymystyypit."
}
},
{
"label": "Käyttöliittymän tekstit",
"fields": [
{
"label": "Painikkeen Edellinen teksti",
"default": "Edellinen kysymys"
},
{
"label": "Painikkeen Seuraava teksti",
"default": "Seuraava kysymys"
},
{
"label": "Painikkeen Lopeta teksti",
"default": "Lopeta"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "Edistyminen",
"description": "Tekstiä käytetään mikäli tekstimuotoinen edistymisen näyttäminen on valittuna.",
"default": "Kysymys @current/@total"
},
{
"label": "Teksti kun hypätään tiettyyn kysymykseen",
"description": "Käytettävissä olevat muuttujat: '%d' kysymyksen numerolle ja %total kysymysten kokonaismäärälle.",
"default": "Kysymys %d/%total"
},
{
"label": "Kysymyksen selite tekijänoikeusvalinnoissa",
"default": "Kysymys"
},
{
"label": "Ruudunlukijan teksti edistymiselle",
"description": "Käytettävissä olevat muuttujat: @current ja @total",
"default": "Kysymys @current/@total"
},
{
"label": "Teksti vastaamattomalle kysymykselle",
"default": "Ei vastattu"
},
{
"label": "Teksti vastatulle kysymykselle",
"default": "Vastattu"
},
{
"label": "Teksti meneillään olevalle kysymykselle",
"default": "Meneillään oleva kysymys"
}
]
},
{
"label": "Estä paluu",
"description": "Tämä valinta sallii vain eteenpäin siirtymisen tehtävässä"
},
{
"label": "Sekoita kysymykset",
"description": "Kysymykset näytetään satunnaisessa järjestyksessä."
},
{
"label": "Näytettävien kysymyksien määrä:",
"description": "Näytetään annettu lukumäärä kysymyksiä kokonaismäärästä."
},
{
"label": "Tehtävän päätyttyä",
"fields": [
{
"label": "Näytä tulokset"
},
{
"label": "Salli painike \"Katso vastaus\""
},
{
"label": "Näytä yritä uudelleen -painike"
},
{
"label": "Teksti kun ei tuloksia",
"description": "Teksti näytetään, kun \"Näytä tulokset\" ei ole valittuna",
"default": "Valmis"
},
{
"label": "Palautteet otsikko",
"default": "Tuloksesi:",
"description": "Otsikko näytetään tehtävän lopussa, kun käyttäjä on vastannut kaikkiin kysymyksiin."
},
{
"label": "Yleispalaute",
"fields": [
{
"widgets": [
{
"label": "Default"
}
],
"label": "Määritä muokattu palaute pisterajojen mukaan.",
"description": "Klikkaa \"Lisää alue\" painiketta lisätäksesi niin monta pisterajaa kuin tarvit. Esimerkiksi: 0-20% Huono tulos, 21-91% Kelpo tulos, 91-100% Mahtava tulos!",
"entity": "alue",
"field": {
"fields": [
{
"label": "Pisteraja"
},
{},
{
"label": "Palaute määritellylle pisterajalle",
"placeholder": "Kirjoita palaute"
}
]
}
}
]
},
{
"label": "Vanha palaute",
"fields": [
{
"label": "Otsikko onnistuneesti läpäistylle tietovisalle",
"description": "Tämä otsikkoteksti näytetään pisteiden yläpuolella kun käyttäjä on onnistuneesti läpäissyt tietovisan."
},
{
"label": "Läpäisykommentti",
"description": "Tämä kommentti näytetään pisteiden perässä jos henkilö on läpäissyt tietovisan onnistuneesti."
},
{
"label": "Otsikko epäonnistuneelle tietovisalle",
"description": "Tämä otsikkoteksti näytetään pisteiden yläpuolella kun käyttäjä on epäonnistunut läpäisemään tietovisan."
},
{
"label": "Epäonnistuneen yrityksen kommentti",
"description": "Tämä kommentti näytetään pisteiden perässä jos henkilö ei ole läpäissyt tietovisaa"
}
]
},
{
"label": "Painikkeen \"Katso vastaus\" nimi",
"default": "Katso vastaus",
"description": "Teksti \"Katso vastaus\" painikkeelle."
},
{
"label": "Painikkeen \"Yritä uudelleen\" nimi",
"default": "Yritä uudelleen",
"description": "Teksti \"Yritä uudelleen\" painikkeelle."
},
{
"label": "Painikkeen \"Lopeta\" teksti",
"default": "Lopeta"
},
{
"label": "Submit button text",
"default": "Submit"
},
{
"label": "Näytä video ennen tuloksia"
},
{
"label": "Salli videon ohittaminen"
},
{
"label": "Teksti painikkeelle Ohita video",
"default": "Ohita video"
},
{
"label": "Video, kun suoritettu",
"description": "Tämä video näytetään, kun tehtävä on suoritettu onnistuneesti."
},
{
"label": "Video, kun ei suoritettu",
"description": "Tämä video näytetään, kun tehtävää ei ole suoritettu onnistuneesti."
}
]
},
{
"label": "Asetukset \"Näytä vastaus\" ja \"Yritä uudelleen\" painikkeille",
"fields": [
{
"label": "Näytä \"Check\" painike",
"description": "Tämä asetus määrittää näytetäänkö \"Check\" painike kaikkien kysymysten yhteydessä."
},
{
"label": "\"Näytä vastaus\"-painike",
"description": "Ota käyttöön kaikissa kysymyksissä, ei yhdessäkään, tai jätä tyhjäksi käyttääksesi tehtäväkohtaisia asetuksia",
"options": [
{
"label": "Käytössä kaikissa"
},
{
"label": "Pois käytöstä"
}
]
},
{
"label": "\"Yritä uudelleen\"-painike",
"description": "Ota käyttöön kaikissa kysymyksissä, ei yhdessäkään, tai jätä tyhjäksi käyttääksesi tehtäväkohtaisia asetuksia.",
"options": [
{
"label": "Käytössä kaikissa"
},
{
"label": "Pois käytöstä"
}
]
}
]
}
]
}

View File

@ -64,21 +64,17 @@
"label": "Textes de l'interface du quiz",
"fields": [
{
"label": "Bouton Retour",
"label": "Bouton précédent",
"default": "Retour"
},
{
"label": "Bouton Suivant",
"default": "Suivant"
"label": "Bouton suivant",
"default": "Suite"
},
{
"label": "Bouton Fin",
"label": "Bouton fin",
"default": "Terminer"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "Texte de progression",
"description": "Texte utilisé si la progression textuelle a été sélectionnée.",
@ -114,15 +110,15 @@
},
{
"label": "Désactiver la possibilité de naviguer en arrière",
"description": "Cette option ne permettra plus que la navigation en avant au sein du module Question Set."
"description": "Cette option ne permettra plus que la navigation en avant au sein du module Question Set"
},
{
"label": "Afficher les questions dans un ordre aléatoire",
"description": "Activer pour choisir aléatoirement l'ordre des questions à l'affichage."
"label": "Afficher les question dans un ordre aléatoire",
"description": "Ceci permet d'afficher les questions dans un ordre aléatoire."
},
{
"label": "Nombre de questions à afficher:",
"description": "Génère aléatoirement un jeu de questions parmi toutes les questions disponibles."
"description": "Génère aléatoire un jeu de question parmi toutes les questions disponibles."
},
{
"label": "Quiz terminé",
@ -131,10 +127,7 @@
"label": "Afficher les résultats"
},
{
"label": "Afficher le bouton \"Solution\"."
},
{
"label": "Display retry button"
"label": "Display solution button"
},
{
"label": "Message si pas de résultats",
@ -147,52 +140,30 @@
"description": "Ce titre sera affiché à la fin du quiz quand l'utilisateur aura répondu à toutes les questions."
},
{
"label": "Opacité des étiquettes",
"fields": [
{
"widgets": [
{
"label": "Par défaut"
}
],
"label": "Définir un retour personnalisé pour chaque tranche de score",
"description": "Exemple: 0-20% Score insuffisant, 21-91% Score moyen, 91-100% Bon score!",
"entity": "tranche",
"field": {
"fields": [
{
"label": "Tranche de score"
},
{},
{
"label": "Retour pour cette tranche de score",
"placeholder": "Entrer le message de retour"
}
]
}
}
]
"label": "Texte d'affichage du score",
"description": "Texte utilisé pour afficher le score total de l'utilisateur. \"@score\" sera remplacé par le score de l'utilisateur, \"@total\" sera remplacé par le score maximum possible.",
"default": "Vous avez obtenu @score point(s) sur @total"
},
{
"label": "Old Feedback",
"fields": [
{
"label": "Commentaire de félicitation",
"description": "Ce commentaire sera affiché au-dessus du score de l'utilisateur si celui-ci réussit le quiz."
},
{
"label": "Commentaire en cas de succès",
"description": "Commentaire affiché lors du passage du quiz avec succès."
},
{
"label": "Commentaire en cas d'échec",
"description": "Ce commentaire sera affiché au-dessus du score de l'utilisateur si celui-ci échoue au quiz."
},
{
"label": "Commentaire additionnel en cas d'échec",
"description": "Commentaire additionnel affiché lors de l'échec au quiz."
}
]
"label": "Commentaire de félicitation",
"placeholder": "Bravo !",
"default": "Bravo !",
"description": "Ce commentaire sera affiché au-dessus du score de l'utilisateur si celui-ci réussit le quiz."
},
{
"label": "Commentaire en cas de succès",
"default": "Vous avez obtenu un très bon score !",
"description": "Commentaire affiché lors du passage du quiz avec succès."
},
{
"label": "Commentaire en cas d'échec",
"default": "Vous n'avez pas réussi ce questionnaire.",
"description": "Ce commentaire sera affiché au-dessus du score de l'utilisateur si celui-ci échoue au quiz."
},
{
"label": "Commentaire additionnel en cas d'échec",
"default": "Refaites un essai !",
"description": "Commentaire additionnel affiché lors de l'échec au quiz."
},
{
"label": "Texte du bouton \"Solution\"",
@ -208,10 +179,6 @@
"label": "Texte pour le bouton de fin",
"default": "Terminer"
},
{
"label": "Submit button text",
"default": "Submit"
},
{
"label": "Afficher une vidéo avant l'affichage des résultats du quiz"
},
@ -236,12 +203,8 @@
"label": "Options pour les boutons \"Montrer la solution\" et \"Recommencer\".",
"fields": [
{
"label": "Montrer les boutons \"Vérifier\"",
"description": "Cette option determine si le bouton \"Vérifier\" va apparaître pour toutes les questions."
},
{
"label": "Cacher le bouton \"Voir la correction\"",
"description": "Cette option détermine si le bouton \"Voir la correction\" sera affiché pour toutes les questions, désactivé pour toutes ou configuré pour chaque question individuellement.",
"label": "Ecraser le bouton \"Voir la solution\"",
"description": "Cette option détermine si le bouton \"Voir la solution\" sera affiché pour toutes les questions, désactivé pour toutes ou configuré pour chaque question individuellement.",
"options": [
{
"label": "Activé"
@ -252,7 +215,7 @@
]
},
{
"label": "Cacher le bouton \"Recommencer\"",
"label": "Ecraser le bouton \"Recommencer\"",
"description": "Cette option détermine si le bouton \"Recommencer\" sera affiché pour toutes les questions, désactivé pour toutes ou configuré pour chaque question individuellement.",
"options": [
{
@ -266,4 +229,4 @@
]
}
]
}
}

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

@ -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' במקום במספר השאלה, וב % סה\"כ במקום בסכום הכולל של השאלות.",
"default": "שאלה %d מתוך %total"
},
{
"label": "תווית שאלת שיח זכויות יוצרים",
"default": "שאלה"
},
{
"label": "Readspeaker progress",
"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": "טווח",
"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

@ -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,36 +1,35 @@
{
"semantics": [
{
"label": "Introduzione al compito",
"label": "Introduzione quiz",
"fields": [
{
"label": "Mostra introduzione"
"label": "Visualizza introduzione"
},
{
"label": "Titolo",
"description": "Questo titolo sarà visualizzato sopra il testo introduttivo"
"description": "Questo titolo verrà visualizzato sopra il testo introduttivo."
},
{
"label": "Testo di introduzione",
"description": "Questo testo sarà visualizzato prima dell'inizio della prova"
"label": "Testo introduttivo",
"description": "Questo testo verrà visualizzato prima dell'inizio del quiz."
},
{
"label": "Testo del pulsante di avvio",
"default": "Inizia la prova"
"label": "Testo pulsante Start"
},
{
"label": "Immagine di sfondo",
"description": "Immagine di sfondo facoltativa per l'introduzione"
"description": "Immagine di sfondo facoltativa per l'introduzione."
}
]
},
{
"label": "Immagine di sfondo",
"description": "Immagine di sfondo facoltativa per il gruppo di domande"
"description": "Immagine di sfondo facoltativa per il set di domande."
},
{
"label": "Indicatore di avanzamento",
"description": "Stile dell'indicatore di avanzamento del gruppo di domande",
"description": "Stile dell'indicatore di avanzamento del set di domande.",
"options": [
{
"label": "Testuale"
@ -41,8 +40,8 @@
]
},
{
"label": "Percentuale di superamento della prova",
"description": "Percentuale del punteggio totale richiesto per superare la prova"
"label": "Percentuale superamento quiz",
"description": "Percentuale minima del punteggio totale richiesto per passare il quiz."
},
{
"label": "Domande",
@ -57,209 +56,157 @@
"entity": "domanda",
"field": {
"label": "Tipo di domanda",
"description": "Libreria per questa domanda"
"description": "Biblioteca per questa domanda."
}
},
{
"label": "Testi di interfaccia nel compito",
"label": "Testi di interfaccia nel quiz",
"fields": [
{
"label": "Pulsante indietro",
"default": "Domanda precedente"
"label": "Pulsante Indietro"
},
{
"label": "Pulsante avanti",
"default": "Prossima domanda"
"label": "Pulsante Prossimo"
},
{
"label": "Pulsante fine",
"default": "Finito"
"label": "Pulsante Fine"
},
{
"label": "Submit button",
"default": "Submit"
"label": "Testo Avanzamento",
"description": "esto utilizzato se il testo Avanzamento è selezionato."
},
{
"label": "Testo di avanzamento",
"description": "Testo usato se è selezionato l'avanzamento testuale",
"default": "Domanda: @current di @total domande totali"
"label": "Label for jumping to a certain question",
"description": "You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
"default": "Question %d of %total"
},
{
"label": "Etichetta per saltare a una determinata domanda",
"description": "Devi usare il segnaposto '%d' anziché il numero di domanda, e %total invece del numero totale delle domande",
"default": "Domanda %d di %total"
"label": "Copyright dialog question label",
"default": "Question"
},
{
"label": "Etichetta della domanda nella finestra sul diritto d'autore",
"default": "Domanda"
"label": "Readspeaker progress",
"description": "May use @current and @total question variables",
"default": "Question @current of @total"
},
{
"label": "Stato di avanzamento del lettore vocale",
"description": "Puoi utilizzare le variabili di domanda @current e @total",
"default": "Domanda @current di @total"
"label": "Unanswered question text",
"default": "Unanswered"
},
{
"label": "Testo della domanda senza risposta",
"default": "Senza risposta"
"label": "Answered question text",
"default": "Answered"
},
{
"label": "Testo della domanda con risposta",
"default": "Risposta"
},
{
"label": "Testo della domanda corrente",
"default": "Domanda corrente"
"label": "Current question text",
"default": "Current question"
}
]
},
{
"label": "Disattiva la navigazione all'indietro",
"description": "Questa opzione ti permetterà solo di spostarti in avanti in Question Set"
"label": "Disable backwards navigation",
"description": "This option will only allow you to move forward in Question Set"
},
{
"label": "Rendi casuale l'ordine delle domande",
"description": "Abilita per rendere casuale l'ordine delle domande sullo schermo"
"label": "Randomize questions",
"description": "Enable to randomize the order of questions on display."
},
{
"label": "Numero di domande da mostrare:",
"description": "Crea un raggruppamento casuale dal totale delle domande"
"label": "Number of questions to be shown:",
"description": "Create a randomized batch of questions from the total."
},
{
"label": "Compito terminato",
"label": "Quiz terminato",
"fields": [
{
"label": "Visualizza i risultati"
"label": "Visualizza risultati"
},
{
"label": "Pulsante visualizza soluzione"
"label": "Display solution button"
},
{
"label": "Mostra pulsante Riprova"
"label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled",
"default": "Finished"
},
{
"label": "Messaggio di nessun risultato",
"description": "Testo mostrato nella pagina finale quando \"Visualizza risultati\" è disattivato",
"default": "Finito"
"label": "Intestazione Feedback",
"description": "Questa intestazione verrà visualizzata alla fine del quiz, dopo che l'utente avrà risposto a tutte le domande."
},
{
"label": "Intestazione di feedback",
"default": "Il tuo risultato:",
"description": "Questa intestazione sarà mostrata alla fine del compito, dopo che l'utente avrà risposto a tutte le domande"
"label": "Testo visualizza punteggio",
"description": "Testo utilizzato per visualizzare il punteggio Totale dell'utente. \"@score\" verrà rimpiazzato dal punteggio calcolato, \"@total\" sarà rimpiazzato dal punteggio massimo possibile. "
},
{
"label": "Feedback generale",
"fields": [
{
"widgets": [
{
"label": "Predefinito"
}
],
"label": "Definisci un feedback personalizzato per ogni intervallo di punteggio",
"description": "Esempio: 0-20%, Punteggio scarso; 21-90%, Punteggio medio; 91-100% Punteggio ottimo!",
"entity": "Intervallo",
"field": {
"fields": [
{
"label": "Intervallo di punteggio"
},
{},
{
"label": "Feedback per un intervallo di punteggio definito",
"placeholder": "Compila il feedback"
}
]
}
}
]
"label": "Messaggio di superamento quiz",
"description": "Questo testo verrà visualizzato sopra il punteggio se l'utente ha superato con successo il quiz."
},
{
"label": "Vecchio feedback",
"fields": [
{
"label": "Messaggio di superamento della prova",
"description": "Questo testo sarà mostrato sopra il punteggio se l'utente ha superato la prova con successo"
},
{
"label": "Commento di superamento della prova",
"description": "Questo commento sarà mostrato dopo il punteggio se l'utente ha superato la prova con successo"
},
{
"label": "Titolo per prova fallita",
"description": "Questo messaggio sarà mostrato sopra il punteggio se l'utente non ha superato la prova"
},
{
"label": "Commento per prova fallita",
"description": "Questo commento sarà mostrato dopo il punteggio se l'utente non ha superato la prova"
}
]
"label": "Commento di superamento quiz",
"description": "Questo commento verrà visualizzato dopo il punteggio se l'utente ha superato con successo il quiz."
},
{
"label": "Etichetta del pulsante \"Mostra soluzione\"",
"default": "Mostra soluzione",
"description": "Testo per il pulsante \"Mostra soluzione\""
"label": "Titolo quiz fallito",
"description": "Questo testo verrà visualizzato sopra il punteggio se l'utente non ha superato il quiz."
},
{
"label": "Etichetta del pulsante \"Riprova\"",
"default": "Riprova",
"description": "Testo per il pulsante \"Riprova\"."
"label": "Commento quiz fallito",
"description": "Questo commento verrà visualizzato dopo il punteggio se l'utente non ha superato il quiz."
},
{
"label": "Testo del pulsante di fine prova",
"default": "Finito"
"label": "Etichetta pulsante Soluzione",
"description": "Testo per il pulsante Soluzione."
},
{
"label": "Submit button text",
"default": "Submit"
"label": "Etichetta pulsante Riprova",
"description": "Testo per il pulsante Riprova."
},
{
"label": "Mostra il video prima dei risultati della prova"
"label": "Testo pulsante Fine"
},
{
"label": "Pulsante per attivare \"Salta video\""
"label": "Visualizza il video prima dei risultati del quiz"
},
{
"label": "Etichetta del pulsante \"Salta video\"",
"default": "Salta video"
"label": "Abilita pulsante Salta video"
},
{
"label": "Video per superamento della prova",
"description": "Questo video sarà mostrato sopra il punteggio se l'utente ha superato la prova con successo"
"label": "Etichetta pulsante Salta video"
},
{
"label": "Video per mancato superamento della prova",
"description": "Questo testo sarà mostrato se l'utente non ha superato la prova"
"label": "Video di superamento quiz",
"description": "Questo video verrà visualizzato sopra il punteggio se l'utente ha superato con successo il quiz."
},
{
"label": "Video quiz fallito",
"description": "Questo testo verrà visualizzato se l'utente non ha superato il quiz."
}
]
},
{
"label": "Impostazioni per i pulsanti \"Mostra soluzione\" e \"Riprova\"",
"label": "Impostazioni per i pulsanti \"Mostra soluzione\" e \"Riprova\".",
"fields": [
{
"label": "Mostra pulsanti di \"Verifica\"",
"description": "Questa opzione rende disponibile il pulsante di verifica su ogni domanda"
},
{
"label": "Sovrascrivi il pulsante \"Mostra soluzione\"",
"description": "Questa opzione stabilisce se il pulsante \"Mostra soluzione\" sarà mostrato su tutte le domande, su nessuna o se decidere caso per caso",
"label": "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": "Attivato"
"label": "Enabled"
},
{
"label": "Disattivato"
"label": "Disabled"
}
]
},
{
"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",
"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": "Attivato"
"label": "Enabled"
},
{
"label": "Disattivato"
"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": "設問",
"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": "Display retry button"
},
{
"label": "結果のメッセージはありません",
"description": "「結果を表示」が無効のとき最後のページにに表示されるテキスト",
"default": "完了"
},
{
"label": "フィードバックの見出し",
"default": "結果:",
"description": "この見出しは、ユーザーがすべての設問に答えたときクイズの終わりに表示されます。"
},
{
"label": "全体のフィードバック",
"fields": [
{
"widgets": [
{
"label": "Default"
}
],
"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": "Show \"Check\" buttons",
"description": "This option determines if the \"Check\" button will be shown for all questions."
},
{
"label": "「解を表示」ボタンを上書き",
"description": "このオプションは、すべての設問に対して「解を表示」ボタンが表示されるか、すべての設問に対して無効になるか、各設問ごとに個別に設定されるかを決定します。",
"options": [
{
"label": "有効"
},
{
"label": "無効"
}
]
},
{
"label": "「リトライ」ボタンを上書き",
"description": "このオプションは、すべての設問に対して「リトライ」ボタンが表示されるか、すべての設問に対して無効になるか、各設問ごとに個別に設定されるかを決定します。",
"options": [
{
"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,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": "Question: 총 @total 질문 중 현재 @current"
},
{
"label": "특정 문제로 이동을 위한 라벨",
"description": "문항 번호 대신 자리 표시자 '%d'를 사용해야 하며, 총 문제 수 대신 %total을 사용해야 한다.",
"default": "%total 중 %d 문제"
},
{
"label": "저작권 대화 문제 라벨",
"default": "문제"
},
{
"label": "자동 문장 읽어 주기 기능에서 진행율",
"description": "@current 및 @total 문제 변수를 사용할 수 있음",
"default": "총 @total 중 현재 @current 질문"
},
{
"label": "미답변 문제 텍스트",
"default": "답변되지 않음"
},
{
"label": "답변 문제 텍스트",
"default": "답변됨"
},
{
"label": "현재 질문 텍스트",
"default": "현재 질문"
}
]
},
{
"label": "뒤로 돌아가기 비활성화",
"description": "이 옵션은 문제 세트에서 앞으로만 이동할 수 있도록 함"
},
{
"label": "문제 무작위화",
"description": "표시된 문제 순서를 무작위 순서로 변경할 수 있음."
},
{
"label": "표시할 질문 수:",
"description": "전체 문제에서 무작위화로 문제 세트를 만들기 만드세요."
},
{
"label": "퀴즈 완료",
"fields": [
{
"label": "결과 표시"
},
{
"label": "해답 버튼 표시"
},
{
"label": "재시도 버튼 표시"
},
{
"label": "결과 메시지 없음",
"description": "\"Display results\"가 비활성화된 경우 끝 페이지에 표시되는 텍스트",
"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": "\"Show solution\" 및 \"Retry\" 버튼 설정",
"fields": [
{
"label": "\"Check\"버튼 표시",
"description": "이 옵션은 모든 질문에 \"Check\" 버튼이 표시될지 여부를 결정함."
},
{
"label": "\"Sow Solution\" 버튼 재정의",
"description": "이 옵션은 모든 질문에 대해 \"Show Solution\" 버튼을 표시할지 또는 각 질문에 대해 개별적으로 구성할지 결정",
"options": [
{
"label": "활성화"
},
{
"label": "비활성화"
}
]
},
{
"label": "\"Retry\"버튼 재정의",
"description": "이 옵션은 모든 질문에 대해 \"Retry\"버튼을 표시할지 아니면 모든 질문에 대해 개별적으로 구성할지 결정",
"options": [
{
"label": "활성화"
},
{
"label": "비활성화"
}
]
}
]
}
]
}

View File

@ -8,35 +8,35 @@
},
{
"label": "Tittel",
"description": "Denne tittelen vil bli vist over introduksjonsteksten."
"description": "Tittel for intoduksjonssiden."
},
{
"label": "Introduksjonstekst",
"description": "Denne teksten vises før spørsmålssettet starter."
},
{
"label": "Tekst \"Start\" knappen",
"label": "Tekst til \"Start\" knappen",
"default": "Start"
},
{
"label": "Bakgrunnsbilde",
"description": "Et valgfritt bakgrunnsbilde for introduksjonssiden."
"description": "Bakgrunnsbilde for introduksjonssiden"
}
]
},
{
"label": "Bakgrunnsbilde",
"description": "Bakgrunnsbilde for spørsmålssettet (ikke obligatorisk)."
"description": "Bakgrunnsbilde for spørsmålssettet(ikke obligatorisk)."
},
{
"label": "Fremdriftsindikator",
"description": "Velg om fremdriften skal angis som prikker (få spørsmål) eller som tekst (mange spørsmål).",
"description": "Velg om fremdriften skal angis som prikker(få spørsmål) eller som tekst(mange spørsmål).",
"options": [
{
"label": "Tekstlig"
"label": "Angi fremdrift med tekst"
},
{
"label": "Prikker"
"label": "Angi fremdrift med prikker"
}
]
},
@ -46,6 +46,7 @@
},
{
"label": "Spørsmål",
"entity": "spørsmål",
"widgets": [
{
"label": "Standard"
@ -54,10 +55,9 @@
"label": "Tekstlig"
}
],
"entity": "spørsmål",
"field": {
"label": "Spørsmåltype",
"description": "Velg spørsmålstype for dette spørsmålet."
"description": "Velg spørsmålstype for dette spørsmålet"
}
},
{
@ -76,16 +76,12 @@
"default": "Avslutt"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "Fremgangstekst",
"description": "Tekst brukt hvis tekstlig angivelse av fremdrift er valgt. Variabler: @current og @total.",
"label": "Fremdriftstekst",
"description": "Tekst brukt hvis tekstlig angivelse av fremdrift er valgt. Variabler: @current og @total",
"default": "Deloppgave @current av @total"
},
{
"label": "Merkelapp for hopping til spørsmål",
"label": "Merkelapp ved hopping til spørsmål",
"description": "Du må bruke plassholderen '%d' istedenfor spørsmålsnummeret, og '%total' istedet for totalt antall spørsmål.",
"default": "Spørsmål %d av %total"
},
@ -113,16 +109,16 @@
]
},
{
"label": "Slå av tilbakenavigering",
"label": "Slå av bakoverknapp",
"description": "Slå på for å nekte å gå tilbake i Question Set"
},
{
"label": "Stokk spørsmålene",
"description": "Slå på for å vise alternativene i tilfeldig rekkefølge."
"label": "Randomize questions",
"description": "Enable to randomize the order of questions on display."
},
{
"label": "Antall spørsmål som skal vises:",
"description": "Lag et tilfeldig sett med spørsmål."
"label": "Number of questions to be shown:",
"description": "Create a randomized batch of questions from the total."
},
{
"label": "Spørsmålssett avslutning",
@ -133,9 +129,6 @@
{
"label": "Vis resultatknapp"
},
{
"label": "Vis \"Prøv igjen\" knappen"
},
{
"label": "Melding når resultater ikke vises",
"description": "Teksten vises på avslutnings-siden når resultater ikke vises",
@ -147,70 +140,43 @@
"description": "Denne overskriften vises over tilbakemeldingene på slutten av spørsmålssettet."
},
{
"label": "Samlet tilbakemelding",
"fields": [
{
"widgets": [
{
"label": "Standard"
}
],
"label": "Spesifiser en egendefinert tilbakemelding for et poengintervall",
"description": "Eksempel: 0-20% dårlig poengsum, 21-91% gjennomsnittlig poengsum, 91-100% God poengsum!",
"entity": "intervall",
"field": {
"fields": [
{
"label": "Poengintervall"
},
{},
{
"label": "Tilbakemelding for spesifisert poengintervall",
"placeholder": "Fyll inn tilbakemelding"
}
]
}
}
]
"label": "Poengvisningstekst",
"default": "@score av @total poeng",
"description": "Tekst som viser brukerens oppnådde poeng. \"@score\" blir erstattet med utregnet resultat, \"@total\" blir erstattet med høyest mulige resultat."
},
{
"label": "Gammel tilbakemelding",
"fields": [
{
"label": "Tittel ved bestått",
"description": "Denne tittelen vises dersom brukeren har bestått spørsmålssettet."
},
{
"label": "Kommentar ved bestått",
"description": "Denne kommentaren vises dersom brukeren har bestått spørsmålssettet."
},
{
"label": "Tittel ved ikke bestått",
"description": "Denne tittelen vises dersom brukeren ikke har bestått spørsmålssettet."
},
{
"label": "Kommentar ved ikke bestått",
"description": "Denne kommentaren vises dersom brukeren ikke har bestått spørsmålssettet."
}
]
"label": "Tittel ved bestått",
"default": "Gratulerer!",
"description": "Denne tittelen vises dersom brukeren har bestått spørsmålssettet."
},
{
"label": "Kommentar ved bestått",
"default": "Dette gikk bra.",
"description": "Denne kommentaren vises dersom brukeren har bestått spørsmålssettet."
},
{
"label": "Tittel ved ikke bestått",
"default": "Dette gikk ikke så bra!",
"description": "Denne tittelen vises dersom brukeren ikke har bestått spørsmålssettet."
},
{
"label": "Kommentar ved ikke bestått",
"default": "Det er litt mange feil her. Prøv igjen!",
"description": "Denne kommentaren vises dersom brukeren ikke har bestått spørsmålssettet."
},
{
"label": "Tekst til \"Fasit\" knapp",
"default": "Vis svar",
"description": "Tekst for \"Fasit\" knapp."
"default": "Gå gjennom fasit",
"description": ""
},
{
"label": "Tekst til \"Prøv igjen\" knapp",
"default": "Prøv igjen",
"description": "Tekst til \"Prøv igjen\"-knappen."
"default": "Prøv igjen!",
"description": ""
},
{
"label": "Avslutt knappetekst",
"default": "Bekreft"
},
{
"label": "Submit button text",
"default": "Submit"
"label": "Tekst til \"Avslutt\" knapp",
"default": "Avslutt"
},
{
"label": "Vis video før resultatene"
@ -236,12 +202,8 @@
"label": "Innstillinger for «Fasit»- og «Prøv igjen»-knapp",
"fields": [
{
"label": "Vis \"Sjekk\"-knapper",
"description": "Dette valget avgjør om «Sjekk»-knappen vil vises for alle spørsmål."
},
{
"label": "Overstyr «Vis svar»-knapp",
"description": "Dette valget avgjør om «Vis svar»-knappen vil vises for alle spørsmål, skjules for alle eller konfigureres individuelt for hvert spørsmål.",
"label": "Overstyr «Fasit»-knapp",
"description": "Dette valget avgjør om «Fasit»-knappen vil vises for alle spørsmål, skjules for alle eller konfigureres individuelt for hvert spørsmål.",
"options": [
{
"label": "Aktivert"

View File

@ -1,269 +0,0 @@
{
"semantics": [
{
"label": "Quiz introductie",
"fields": [
{
"label": "Toon de introductie"
},
{
"label": "Titel",
"description": "Deze titel zal boven de inleidende tekst worden getoond."
},
{
"label": "Inleidende tekst",
"description": "Deze tekst zal worden getoond voordat de quiz begint."
},
{
"label": "Tekst van de startknop",
"default": "Start"
},
{
"label": "Achtergrondafbeelding",
"description": "Een optionele achtergrondafbeelding voor de introductie."
}
]
},
{
"label": "Achtergrondafbeelding",
"description": "Een optionele achtergrondafbeelding voor de vragenreeks."
},
{
"label": "Voortgangsindicator",
"description": "Lay-out voortgangsindicator van de vragenreeks.",
"options": [
{
"label": "Tekst"
},
{
"label": "Punten"
}
]
},
{
"label": "Slagingspercentage",
"description": "Percentage van de totale score dat vereist is om te slagen."
},
{
"label": "Vragen",
"widgets": [
{
"label": "Standaard"
},
{
"label": "Tekstueel"
}
],
"entity": "vraag",
"field": {
"label": "Type vraag",
"description": "Bibliotheek voor deze vraag."
}
},
{
"label": "Interface teksten in de quiz",
"fields": [
{
"label": "Vorige-knop",
"default": "Vorige vraag"
},
{
"label": "Volgende-knop",
"default": "Volgende vraag"
},
{
"label": "Beëindigings-knop",
"default": "Klaar"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "Tekst bij voortgang",
"description": "Deze tekst wordt gebruikt als 'Tekst' als voortgangsindicator is geselecteerd.",
"default": "Vraag: @current van @total vragen"
},
{
"label": "Label voor naar een bepaalde vraag te springen",
"description": "Je moet de plaatsaanduiding '%d' gebruiken in plaats van het vraagnummer, en %total in plaats van het totaal aantal vragen.",
"default": "Vraag %d van %total"
},
{
"label": "Label van copyright dialoogvraag",
"default": "Vraag"
},
{
"label": "Readspeaker voortgang",
"description": "Je mag @current gebruiken en @total als vraagvariabelen",
"default": "Vraag @current van @total"
},
{
"label": "Tekst van de onbeantwoorde vraag",
"default": "Onbeantwoord"
},
{
"label": "Tekst van de beantwoorde vraag",
"default": "Beantwoord"
},
{
"label": "Tekst van de huidige vraag",
"default": "Huidige vraag"
}
]
},
{
"label": "Achteruit navigeren uitschakelen",
"description": "Deze optie staat je alleen toe voorwaarts te navigeren in de vragenreeks"
},
{
"label": "Vragen willekeurig indelen",
"description": "Vragen in willekeurige volgorde inschakelen."
},
{
"label": "Het aantal te tonen vragen:",
"description": "Creëer een willekeurig aantal vragen van het totaal."
},
{
"label": "Quiz voltooid",
"fields": [
{
"label": "Toon de resultaten"
},
{
"label": "Toon de oplossings-knop"
},
{
"label": "Toon opnieuw proberen-knop"
},
{
"label": "Geen resultaten bericht",
"description": "De getoonde tekst op de eindpagina wanneer \"Toon resultaten\" is uitgeschakeld",
"default": "Voltooid"
},
{
"label": "Feedback koptekst",
"default": "Je resultaat:",
"description": "Deze koptekst verschijnt aan het einde van de test wanneer de deelnemer alle vragen heeft beantwoord."
},
{
"label": "Algehele feedback",
"fields": [
{
"widgets": [
{
"label": "Standaard"
}
],
"label": "Definieer aangepaste feedback voor elke scorereeks",
"description": "Voorbeeld: 0-20% Onvoldoende score, 21-91% Gemiddelde score, 91-100% Uitstekende score!",
"entity": "reeks",
"field": {
"fields": [
{
"label": "Scorereeks"
},
{},
{
"label": "Feedback voor de gedefinieerde scorereeks",
"placeholder": "Vul de aangepaste feedback in"
}
]
}
}
]
},
{
"label": "Oude feedback",
"fields": [
{
"label": "Begroeting bij een geslaagde quiz",
"description": "Deze tekst wordt boven de score weergegeven als de deelnemer de test met goed gevolg heeft afgelegd."
},
{
"label": "Commentaar bij geslaagd",
"description": "Deze opmerking wordt weergegeven na de score als de deelnemer de test met goed gevolg heeft afgelegd."
},
{
"label": "Titel bij niet behaalde quiz",
"description": "Deze tekst wordt boven de score getoond als de deelnemer de test niet heeft gehaald."
},
{
"label": "Commentaar bij niet behaald",
"description": "Deze opmerking wordt weergegeven na de score als de deelnemer de test niet heeft gehaald."
}
]
},
{
"label": "Label van de oplossings-knop",
"default": "Toon oplossing",
"description": "Tekst voor de oplossings-knop."
},
{
"label": "Label van de opnieuw proberen-knop",
"default": "Opnieuw proberen",
"description": "Tekst voor de opnieuw proberen-knop."
},
{
"label": "Tekst voor de beëindigings-knop",
"default": "Klaar"
},
{
"label": "Submit button text",
"default": "Submit"
},
{
"label": "Toon video voor de quizresultaten"
},
{
"label": "Activeer sla de video over-knop"
},
{
"label": "Label sla de video over-knop",
"default": "Sla de video over"
},
{
"label": "Video bij een geslaagde quiz",
"description": "Deze video wordt afgespeeld als de deelnemer de test met succes heeft afgerond."
},
{
"label": "Video bij een niet behaalde quiz",
"description": "Deze video wordt afgespeeld als de deelnemer de test niet heeft gehaald."
}
]
},
{
"label": "Instellingen voor \"Toon oplossing\" en \"Opnieuw\" -knoppen",
"fields": [
{
"label": "Toon \"Controleer\"-knoppen",
"description": "Deze optie bepaalt of de knop \"Controleer\" wordt getoond voor alle vragen."
},
{
"label": "\"Toon oplossing\" knop instellen",
"description": "Deze optie bepaalt of de \"Toon oplossing\" knop voor alle vragen wordt getoond, uitgeschakeld of voor iedere vraag afzonderlijk wordt geconfigureerd.",
"options": [
{
"label": "Ingeschakeld"
},
{
"label": "Uitgeschakeld"
}
]
},
{
"label": "\"Opnieuw proberen\"-knop instellen",
"description": "Deze optie bepaalt of de \"Opnieuw proberen\"-knop voor alle vragen wordt getoond, uitgeschakeld of voor iedere vraag afzonderlijk wordt geconfigureerd.",
"options": [
{
"label": "Ingeschakeld"
},
{
"label": "Uitgeschakeld"
}
]
}
]
}
]
}

View File

@ -33,7 +33,7 @@
"description": "Velg om fremdriften skal angis som prikker(få spørsmål) eller som tekst(mange spørsmål).",
"options": [
{
"label": "Tekstlig"
"label": "Angi fremdrift med tekst"
},
{
"label": "Angi fremdrift med prikker"
@ -46,6 +46,7 @@
},
{
"label": "Spørsmål",
"entity": "spørsmål",
"widgets": [
{
"label": "Standard"
@ -54,7 +55,6 @@
"label": "Tekstlig"
}
],
"entity": "spørsmål",
"field": {
"label": "Spørsmålstype",
"description": "Velg spørsmålstype for dette spørsmålet"
@ -64,7 +64,7 @@
"label": "Ledetekster",
"fields": [
{
"label": "Tilbakeknapp",
"label": "Førre-knappen",
"default": "Førre"
},
{
@ -73,14 +73,10 @@
},
{
"label": "Avslutt-knappen",
"default": "Bekreft"
"default": "Avslutt"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "Fremgangstekst",
"label": "Fremdriftstekst",
"description": "Tekst brukt hvis tekstlig angivelse av fremdrift er valgt. Variabler: @current og @total",
"default": "Deloppgåve @current av @total"
},
@ -96,7 +92,7 @@
{
"label": "Fremdriftstekst for hjelpemiddelteknologi",
"description": "Kan bruke @current og @total variabler",
"default": "Deloppgåve @current av @total"
"default": "Deloppgave @current av @total"
},
{
"label": "Ikke svart på spørsmål-tekst",
@ -104,7 +100,7 @@
},
{
"label": "Svart på spørsmål-tekst",
"default": "Svar gitt"
"default": "Svar avgitt"
},
{
"label": "Aktivt spørsmål-tekst",
@ -113,12 +109,12 @@
]
},
{
"label": "Slå av tilbakenavigering",
"label": "Slå av bakoverknapp",
"description": "Slå på for å nekte å gå tilbake i Question Set"
},
{
"label": "Randomize questions",
"description": "Slå på for å vise de mulige svara i tilfeldig rekkefølge."
"description": "Enable to randomize the order of questions on display."
},
{
"label": "Number of questions to be shown:",
@ -133,9 +129,6 @@
{
"label": "Vis resultatknapp"
},
{
"label": "Display retry button"
},
{
"label": "Melding når resultater ikke vises",
"description": "Teksten vises på avslutnings-siden når resultater ikke vises",
@ -147,70 +140,43 @@
"description": "Denne overskriften vises over tilbakemeldingane på slutten av spørsmålssettet."
},
{
"label": "Bakgrunnsopasitet på flyttbare elementer",
"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": "Poengvisningstekst",
"default": "@score av @total poeng",
"description": "Tekst som viser brukerens oppnådde poeng. \"@score\" blir erstatta med utregna resultat, \"@total\" blir erstatta med høgest mulig resultat."
},
{
"label": "Old Feedback",
"fields": [
{
"label": "Tittel ved bestått",
"description": "Denne tittelen vises dersom brukeren har bestått spørsmålssettet."
},
{
"label": "Kommentar ved bestått",
"description": "Denne kommentaren vises dersom brukaren har bestått spørsmålssettet."
},
{
"label": "Tittel ved ikkje bestått",
"description": "Denne tittelen visast dersom brukaren ikkje har bestått spørsmålssettet."
},
{
"label": "Kommentar ved ikkje bestått",
"description": "Denne kommentaren vises dersom brukaren ikkje har bestått spørsmålssettet."
}
]
"label": "Tittel ved bestått",
"default": "Gratulerer!",
"description": "Denne tittelen vises dersom brukeren har bestått spørsmålssettet."
},
{
"label": "Kommentar ved bestått",
"default": "Dette gjekk bra.",
"description": "Denne kommentaren vises dersom brukaren har bestått spørsmålssettet."
},
{
"label": "Tittel ved ikkje bestått",
"default": "Dette gjekk ikkje så bra!",
"description": "Denne tittelen visast dersom brukaren ikkje har bestått spørsmålssettet."
},
{
"label": "Kommentar ved ikkje bestått",
"default": "Det er litt mange feil her. Prøv igjen!",
"description": "Denne kommentaren vises dersom brukaren ikkje har bestått spørsmålssettet."
},
{
"label": "Tekst til \"Fasit\" knapp",
"default": "Fasit",
"description": "Text for the solution button."
"default": "Vis fasit",
"description": ""
},
{
"label": "Tekst til \"Prøv igjen\" knapp",
"default": "Prøv igjen",
"description": "Text for the retry button."
"description": ""
},
{
"label": "Tekst til \"Avslutt\" knapp",
"default": "Bekreft"
},
{
"label": "Submit button text",
"default": "Submit"
"default": "Avslutt"
},
{
"label": "Vis video før resultata"
@ -236,12 +202,8 @@
"label": "Innstillinger for «Fasit»- og «Prøv igjen»-knapp",
"fields": [
{
"label": "Vis \"Sjekk\"-knappar",
"description": "Dette valget avgjer om «Sjekk»-knappen vil visast for alle spørsmål."
},
{
"label": "Overstyr «Vis svar»-knapp",
"description": "Dette valget avgjør om «Vis svar»-knappen vil vises for alle spørsmål, skjules for alle eller konfigureres individuelt for hvert spørsmål.",
"label": "Overstyr «Fasit»-knapp",
"description": "Dette valget avgjør om «Fasit»-knappen vil vises for alle spørsmål, skjules for alle eller konfigureres individuelt for hvert spørsmål.",
"options": [
{
"label": "Aktivert"

View File

@ -1,269 +0,0 @@
{
"semantics": [
{
"label": "Plansza wprowadzająca",
"fields": [
{
"label": "Wyświetl planszę"
},
{
"label": "Tytuł",
"description": "Ten tytuł zostanie wyświetlony nad treścią planszy."
},
{
"label": "Treść planszy",
"description": "Ten tekst zostanie wyświetlony przed rozpoczęciem quizu."
},
{
"label": "Napis na przycisku Start",
"default": "Rozpocznij quiz"
},
{
"label": "Tło planszy",
"description": "Tło planszy wprowadzającej (opcjonalne)."
}
]
},
{
"label": "Tło quizu",
"description": "Tło dla wszystkich pytań w quizie (opcjonalne)."
},
{
"label": "Wskaźnik postępu",
"description": "W jaki sposób ma być pokazywany postęp.",
"options": [
{
"label": "Tekstowo"
},
{
"label": "Kropkami"
}
]
},
{
"label": "Procent zaliczający",
"description": "Procent poprawnych odpowiedzi wymagany do zaliczenia quizu."
},
{
"label": "Pytania",
"widgets": [
{
"label": "Tryb domyślny"
},
{
"label": "Tryb tekstowy"
}
],
"entity": "pytanie",
"field": {
"label": "Typ pytania",
"description": "Wybierz bibliotekę z listy."
}
},
{
"label": "Opisy interfejsu w quizie",
"fields": [
{
"label": "Przycisk cofania",
"default": "Poprzednie pytanie"
},
{
"label": "Przycisk dalej",
"default": "Kolejne pytanie"
},
{
"label": "Przycisk zakończenia",
"default": "Zakończ"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "Tekst postępu",
"description": "Ten tekst zostanie wyświetlony, jeśli wybrana zostanie opcja wyświetlania postępu tekstowo.",
"default": "Pytanie @current z @total"
},
{
"label": "Etykieta przeskoku do konkretnego pytania",
"description": "Wstaw '%d' w miejsce numeru pytania oraz %total w miejscu liczby wszystkich pytań.",
"default": "Pytanie %d z %total"
},
{
"label": "Etykieta informacji o prawach autorskich",
"default": "Pytanie"
},
{
"label": "Postęp dla czytnika ekranu",
"description": "Można użyć zmiennych @current (numer bieżącego pytania) i @total (liczba wszystkich pytań)",
"default": "Pytanie @current z @total"
},
{
"label": "Etykieta pytania bez odpowiedzi",
"default": "Brak odpowiedzi"
},
{
"label": "Etykieta pytania z odpowiedzią",
"default": "Z odpowiedzią"
},
{
"label": "Etykieta bieżącego pytania",
"default": "Bieżące pytanie"
}
]
},
{
"label": "Wyłącz cofanie do poprzedniego pytania",
"description": "Po włączeniu tej opcji będzie możliwe tylko przechodzenie do kolejnego pytania quizu"
},
{
"label": "Losuj pytania",
"description": "Włącz tę opcję, aby pytania pojawiały się w losowej kolejności."
},
{
"label": "Ile pytań pokazać:",
"description": "Wylosuj i pokaż określoną liczbę pytań spośród wszystkich dostępnych."
},
{
"label": "Quiz zakończony",
"fields": [
{
"label": "Pokaż wyniki"
},
{
"label": "Przycisk wyświetlania wyników"
},
{
"label": "Wyświetl przycisk powtórzenia"
},
{
"label": "Informacja dla braku wyników",
"description": "Tekst wyświetlany na ekranie końcowym, gdy wyłączona jest opcja \"Pokaż wyniki\"",
"default": "Koniec"
},
{
"label": "Nagłówek sekcji informacji zwrotnej",
"default": "Twój wynik:",
"description": "Ten nagłówek zostanie wyświetlony na ekranie końcowym po udzieleniu odpowiedzi na wszystkie pytania."
},
{
"label": "Podsumowanie odpowiedzi",
"fields": [
{
"widgets": [
{
"label": "Domyślne"
}
],
"label": "Określ własne kryteria oceny dla wybranych zakresów poprawnych odpowiedzi",
"description": "Przykład: 0-20% Słaby wynik, 21-91% Przeciętny wynik, 91-100% Bardzo dobry wynik!",
"entity": "Zakres",
"field": {
"fields": [
{
"label": "Zakres"
},
{},
{
"label": "Komunikat dla danego zakresu",
"placeholder": "Wprowadź komunikat"
}
]
}
}
]
},
{
"label": "Starsza wersja podsumowania",
"fields": [
{
"label": "Informacja o zaliczeniu quizu",
"description": "Ten tekst zostanie wyświetlony nad wynikiem użytkownika, który zaliczył quiz."
},
{
"label": "Komentarz do zaliczenia quizu",
"description": "Ten komentarz zostanie wyświetlony pod wynikiem użytkownika, który zaliczył quiz."
},
{
"label": "Informacja o niezaliczeniu quizu",
"description": "Ten tekst zostanie wyświetlony nad wynikiem użytkownika, który nie zaliczył quizu."
},
{
"label": "Komentarz do niezaliczenia quizu",
"description": "Ten komentarz zostanie wyświetlony pod wynikiem użytkownika, który nie zaliczył quizu."
}
]
},
{
"label": "Etykieta przycisku pokazywania poprawnej odpowiedzi",
"default": "Pokaż odpowiedź",
"description": "Opis przycisku pokazywania poprawnej odpowiedzi."
},
{
"label": "Etykieta przycisku ponowienia próby odpowiedzi",
"default": "Powtórz",
"description": "Opis przycisku ponowienia."
},
{
"label": "Etykieta przycisku zakończenia",
"default": "Zakończ"
},
{
"label": "Submit button text",
"default": "Submit"
},
{
"label": "Odtwórz wideo przed ekranem wyników"
},
{
"label": "Pozwól na pominięcie wideo"
},
{
"label": "Opis przycisku pominięcia",
"default": "Pomiń wideo"
},
{
"label": "Wideo po zaliczeniu",
"description": "To wideo zostanie odtworzone użytkownikowi, który zaliczył quiz."
},
{
"label": "Wideo po niezaliczeniu",
"description": "To wideo zostanie odtworzone użytkownikowi, który nie zaliczył quizu."
}
]
},
{
"label": "Ustawienia przycisków pokazywania odpowiedzi i ponownej próby",
"fields": [
{
"label": "Pokaż przycisk \"Sprawdź\"",
"description": "Włącz tę opcję, jeśli przycisk \"Sprawdź\" ma być wyświetlany pod każdym pytaniem."
},
{
"label": "Globalne ustawienie dla przycisku \"Pokaż odpowiedź\"",
"description": "Ta opcja określa, czy przycisk \"Pokaż odpowiedź\" ma być wyświetlany pod każdym pytaniem, niewyświetlany pod żadnym, czy jego wyświetlanie ma być ustalane indywidualnie.",
"options": [
{
"label": "Włączone"
},
{
"label": "Wyłączone"
}
]
},
{
"label": "Globalne ustawienie dla przycisku \"Powtórz\"",
"description": "Ta opcja określa, czy przycisk \"Powtórz\" ma być wyświetlany pod każdym pytaniem, niewyświetlany pod żadnym, czy jego wyświetlanie ma być ustalane indywidualnie.",
"options": [
{
"label": "Włączone"
},
{
"label": "Wyłączone"
}
]
}
]
}
]
}

View File

@ -1,269 +0,0 @@
{
"semantics": [
{
"label": "Introdução ao questionário",
"fields": [
{
"label": "Mostrar introdução"
},
{
"label": "Título",
"description": "Este título vai ser mostrado acima do texto introdutório."
},
{
"label": "Texto introdutório",
"description": "Este texto vai ser mostrado antes do início do questionário."
},
{
"label": "Texto de iníco do questionário",
"default": "Iniciar questionário"
},
{
"label": "Imagem de fundo",
"description": "Uma imagem de fundo opcional para a introdução."
}
]
},
{
"label": "Imagem de fundo",
"description": "Uma imagem de fundo opcional para a Série de questões."
},
{
"label": "Indicador de progresso",
"description": "Estilo do indicador da série de questões.",
"options": [
{
"label": "Textual"
},
{
"label": "Pontos"
}
]
},
{
"label": "Percentagem de aprovação",
"description": "Percentagem necessária para aprovação no questionário."
},
{
"label": "Questões",
"widgets": [
{
"label": "Por defeito"
},
{
"label": "Textual"
}
],
"entity": "questão",
"field": {
"label": "Tipo de questão",
"description": "Biblioteca para esta questão."
}
},
{
"label": "Textos do interface para o questionário",
"fields": [
{
"label": "Botão para questão anterior",
"default": "Questão anterior"
},
{
"label": "Botão para questão seguinte",
"default": "Questão seguinte"
},
{
"label": "Botão para terminar",
"default": "Terminar"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "Texto do progresso",
"description": "Texto a utilizar se o progresso textual estiver ativo.",
"default": "Questão: @current de @total questões"
},
{
"label": "Etiqueta para saltar para um questão",
"description": "Tem de utilizar o espaço reservado (placeholder) '%d' em vez de o número da questão, e %total em vez do total de questões.",
"default": "Questão %d de %total"
},
{
"label": "Etiqueta da caixa de diálogo para direitos de autor",
"default": "Questão"
},
{
"label": "Progresso em texto para voz",
"description": "Pode utilizar @current e @total como variáveis da questão",
"default": "Questão @current de @total"
},
{
"label": "Texto para questões não respondidas",
"default": "Não respondida"
},
{
"label": "Texto para questões respondidas",
"default": "Respondida"
},
{
"label": "Texto para pergunta atual",
"default": "Pergunta atual"
}
]
},
{
"label": "Desativar a opção de navegar para trás",
"description": "Esta opção só lhe permitirá navegar para a frente numa Série de questões"
},
{
"label": "Tornar aleatório",
"description": "Ative para tornar aletória a ordem das questões."
},
{
"label": "Número de questões a mostrar:",
"description": "Criar um grupo de questões aleatório de entre o total"
},
{
"label": "Questionário terminado",
"fields": [
{
"label": "Mostrar resultados"
},
{
"label": "Mostrar botão de solução"
},
{
"label": "Display retry button"
},
{
"label": "Mensagem quando não existem resultados",
"description": "Textos a exibir no final da página quando \"Mostrar resultados\" está desabilitado",
"default": "Terminado"
},
{
"label": "Cabeçalho do Feedback",
"default": "O seu resultado:",
"description": "Este cabeçalho será mostrado no final questionário assim que o utilizador tiver respondido a todas as questões."
},
{
"label": "Feedback Geral",
"fields": [
{
"widgets": [
{
"label": "Por defeito"
}
],
"label": "Defina feedback personalizado para cada intervalo de pontuação",
"description": "Exemplo: 0-20% Mau, 21-91% Mediano, 91-100% Excelente!",
"entity": "intervalo",
"field": {
"fields": [
{
"label": "Intervalo de pontuação"
},
{},
{
"label": "Feedback para o intervalo definido",
"placeholder": "Preencha com o feedback"
}
]
}
}
]
},
{
"label": "Feedback antigo",
"fields": [
{
"label": "Saudação por avaliação positiva",
"description": "Este texto vai ser mostrado acima do resultado obtido se o utilizador obtiver aproveitamento positivo no questionário."
},
{
"label": "Comentário para availiação positiva",
"description": "Este comentário vai ser mostrado depois do resultado se o utilizador obtiver aproveitamento positivo no questionário."
},
{
"label": "Título para avaliação negativa",
"description": "Este texto será mostrado acima do resultado obtido se o utilizador obtiver aproveitamento negativo no questionário."
},
{
"label": "Comentário para availiação negativa",
"description": "Este comentário será mostrado depois do resultado se o utilizador obtiver aproveitamento negativo no questionário."
}
]
},
{
"label": "Etiqueta do botão de soluções",
"default": "Mostrar soluções",
"description": "Texto para o botão de soluções."
},
{
"label": "Etiqueta do botão de repetir",
"default": "Repetir",
"description": "Texto para o botão de repetir."
},
{
"label": "Texto para o botão terminar",
"default": "Terminar"
},
{
"label": "Submit button text",
"default": "Submit"
},
{
"label": "Mostrar video antes dos resultados do questionário"
},
{
"label": "Ativar botão de saltar vídeo"
},
{
"label": "Etiqueta de botão de saltar vídeo",
"default": "Saltar vídeo"
},
{
"label": "Vídeo de sucesso",
"description": "Este vídeo vai ser apresentado se o utilizador obtiver avaliação positiva no questionário."
},
{
"label": "Vídeo de insucesso",
"description": "Este vídeo vai ser apresentado se o utilizador obtiver avaliação negativa no questionário."
}
]
},
{
"label": "Definições para os botões de \"Mostrar solução\" e \"Repetir\"",
"fields": [
{
"label": "Mostrar botões de \"Verificar\"",
"description": "Esta opção determina se o botão \"Verificar\" será mostrado para todas as questões."
},
{
"label": "Sobrepor botão \"Mostrar solução\"",
"description": "Esta opção determina se o botão \"Mostrar solução\" será mostrado para todas as questões, desativado para todas ou configurado individualmente para cada questão.",
"options": [
{
"label": "Ativado"
},
{
"label": "Desativado"
}
]
},
{
"label": "Sobrepor botão \"Repetir\"",
"description": "Esta opção determina se o botão \"Repetir\" será mostrado para todas as questões, desativado para todas ou configurado individualmente para cada questão.",
"options": [
{
"label": "Ativado"
},
{
"label": "Desativado"
}
]
}
]
}
]
}

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": "Введение в тест",
"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": "Display retry button"
},
{
"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": "Show solution",
"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

@ -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,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

@ -1,269 +0,0 @@
{
"semantics": [
{
"label": "Introduktion",
"fields": [
{
"label": "Visa introduktion"
},
{
"label": "Titel",
"description": "Denna titel kommer att visas ovanför introduktionstexten."
},
{
"label": "Introduktionstext",
"description": "Denna text kommer att visas före testet startar."
},
{
"label": "Text på startknapp",
"default": "Starta quiz"
},
{
"label": "Bakgrundsbild",
"description": "En valfri bakgrundsbild för introduktionen."
}
]
},
{
"label": "Bakgrundsbild",
"description": "En valfri bakgrundsbild för uppsättningen av frågor."
},
{
"label": "Framstegsindikator",
"description": "Stil på framstegsindikator för fråge-uppsättningen.",
"options": [
{
"label": "Textuell"
},
{
"label": "Prickar"
}
]
},
{
"label": "Procent för godkänt",
"description": "Procent av total poäng som krävs för att få godkänt på denna quiz."
},
{
"label": "Frågor",
"widgets": [
{
"label": "Standard"
},
{
"label": "Textuell"
}
],
"entity": "fråga",
"field": {
"label": "Frågetyp",
"description": "Välj frågetyp för denna fråga."
}
},
{
"label": "Ledtexter i quiz",
"fields": [
{
"label": "Tillbaka-knapp",
"default": "Föregående fråga"
},
{
"label": "Nästa-knapp",
"default": "Nästa fråga"
},
{
"label": "Avsluta-knapp",
"default": "Avsluta"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "Text för framsteg",
"description": "Text som används om textuella framsteg är valt.",
"default": "Fråga: @current av @total frågor"
},
{
"label": "Etikett för att hoppa till en viss fråga",
"description": "Du måste använda variabel '%d' istället för frågenummer, och %total istället för totalt antal frågor.",
"default": "Fråga %d av %total"
},
{
"label": "Upphovsrätt fråge-etikett",
"default": "Fråga"
},
{
"label": "Skärmläsarframsteg",
"description": "Kan använda @current och @total frågevariabler",
"default": "Fråga @current av @total"
},
{
"label": "Text för obesvarad fråga",
"default": "Obesvarad"
},
{
"label": "Text för besvarad fråga",
"default": "Besvarad"
},
{
"label": "Text för nuvarande fråga",
"default": "Nuvarande fråga"
}
]
},
{
"label": "Inaktivera navigation bakåt",
"description": "Denna inställning tillåter endast navigation framåt i uppsättningen av frågor"
},
{
"label": "Slumpa frågor",
"description": "Aktivera för att slumpa ordningsföljden på frågorna som visas."
},
{
"label": "Antal frågor som ska visas:",
"description": "Skapa ett slumpmässig urval av frågor."
},
{
"label": "Quiz avslutat",
"fields": [
{
"label": "Visa resultat"
},
{
"label": "Visa rätt svar-knapp"
},
{
"label": "Visa försök igen-knapp"
},
{
"label": "Meddelande vid inget resultat",
"description": "Text som visas på slutsida när \"Visa resultat\" är inaktiverat",
"default": "Avslutat"
},
{
"label": "Rubrik för feedback",
"default": "Ditt resultat:",
"description": "Denna rubrik visas på slutet av denna quiz när användaren har svarat på alla frågor."
},
{
"label": "Samlad feedback",
"fields": [
{
"widgets": [
{
"label": "Standard"
}
],
"label": "Definiera anpassad feedback för valfria poängintervall",
"description": "Exempel: 0-20% Inte så bra, 21-91% Medel, 91-100% Jättebra!",
"entity": "intervall",
"field": {
"fields": [
{
"label": "Poängintervall"
},
{},
{
"label": "Feedback för detta poängintervall",
"placeholder": "Fyll i feedback"
}
]
}
}
]
},
{
"label": "Gammal Feedback",
"fields": [
{
"label": "Titel vid godkänd quiz",
"description": "Denna text kommer att visas ovanför poängen om användaren har lyckats få godkänt."
},
{
"label": "Kommentar vid godkänt",
"description": "Denna kommentar kommer att visas efter poängen om användaren har lyckats få godkänt."
},
{
"label": "Titel vid ej godkänd quiz",
"description": "Denna text kommer att visas ovanför poängen om användaren har missyckats med att nå godkänt."
},
{
"label": "Kommentar vid ej godkänt",
"description": "Denna kommentar kommer att visas efter poängen om användaren har misslyckats med att nå godkänt."
}
]
},
{
"label": "Etikett för Visa rätt svar",
"default": "Visa rätt svar",
"description": "Text för knappen Visa rätt svar."
},
{
"label": "Etikett för knappen Försök igen",
"default": "Försök igen",
"description": "Text för knappen Försök igen."
},
{
"label": "Text för knappen Avsluta",
"default": "Avsluta"
},
{
"label": "Submit button text",
"default": "Submit"
},
{
"label": "Visa video före resultat från denna quiz"
},
{
"label": "Aktivera knapp för Hoppa över video"
},
{
"label": "Etikett för knapp Hoppa över video",
"default": "Hoppa över video"
},
{
"label": "Godkänt-video",
"description": "Denna video kommer att visas om användaren har lyckats få godkänt på denna quiz."
},
{
"label": "Ej godkänt-video",
"description": "Denna video kommer att visas om användaren misslyckas med att nå godkänt på denna quiz."
}
]
},
{
"label": "Inställningar för knapparna \"Visa lösning\" och \"Försök igen\"",
"fields": [
{
"label": "Visa \"Svara\"-knappar",
"description": "Denna inställning avgör om knappen \"Svara\" (som visar om svaret var korrekt eller ej) ska visas på alla frågor."
},
{
"label": "Ignorera knapp \"Visa rätt svar\"",
"description": "Denna inställning avgör om knappen \"Visa rätt svar\" ska visas på alla frågor, vara inaktiverad för alla frågor, eller konfigureras individuellt per fråga.",
"options": [
{
"label": "Aktiverad"
},
{
"label": "Inaktiverad"
}
]
},
{
"label": "Ignorera knapp \"Försök igen\"",
"description": "Denna inställning avgör om knappen \"Försök igen\" ska visas på alla frågor, vara inaktiverad för alla frågor, eller konfigureras individuellt per fråga.",
"options": [
{
"label": "Aktiverad"
},
{
"label": "Inaktiverad"
}
]
}
]
}
]
}

View File

@ -1,270 +0,0 @@
{
"semantics": [
{
"label": "Sınav (Quiz) Hakkında Bilgilendirme",
"fields": [
{
"label": "Bilgilendirmeyi göster"
},
{
"label": "Başlık",
"description": "Bu başlık bilgilendirme metninin başlığıdır. "
},
{
"label": "Bilgilendirme metni",
"description": "Sınav (quiz) başlamadan önce gösterlecek metin"
},
{
"label": "Başla butonu metni",
"default": "Sınavı başlat"
},
{
"label": "Arka plan görseli",
"description": "Bilgilendirme bölümü için isterseniz arka plan görseli ekleyebilirsiniz."
}
]
},
{
"label": "Arka plan görseli",
"description": "Soru seti için isteğe bağlı arka plan görseli."
},
{
"label": "İlerleme göstergeleri",
"description": "Soru seti ilerleme göstergesi stili",
"options": [
{
"label": "Metinsel"
},
{
"label": "Noktalar"
}
]
},
{
"label": "Geçme puanı (%)",
"description": "Sınavı (quiz) geçmek için gerekli toplam puan yüzdesi."
},
{
"label": "Sorular",
"widgets": [
{
"label": "Varsayılan"
},
{
"label": "Metin"
}
],
"entity": "soru",
"field": {
"label": "Soru türü",
"description": "Soru şablonlarından seçin"
}
},
{
"label": "Test arayüz metinleri",
"fields": [
{
"label": "Geri butonu",
"default": "Önceki soru"
},
{
"label": "Sonraki butonu",
"default": "Sonraki soru"
},
{
"label": "Bitir butonu",
"default": "Bitir"
},
{
"label": "Submit button",
"default": "Submit"
},
{
"label": "İlerleme metni",
"description": "İlerleme göstergesi olarak metin seçildiyse kullanılacak metin.",
"default": "Soru: @current / @total"
},
{
"label": "Belirli bir soruya geçmek için etiket",
"description": "Soru numarası yerine '%d' yer tutucusunu ve toplam soru sayısı yerine de %total'ı kullanmalısınız.",
"default": "Soru %d / %total"
},
{
"label": "Telif hakkı iletişim kutusu soru etiketi",
"default": "Soru"
},
{
"label": "Okuyucu ilerleme durumu",
"description": "@current ve @total soru değişkenleri kullanabilir",
"default": "Soru @current / @total"
},
{
"label": "Yanıtlanmamış soru için metin",
"default": "Yanıtlanmadı"
},
{
"label": "Yanıtlanmış soru için metin",
"default": "Yanıtlandı"
},
{
"label": "Geçerli soru için metin",
"default": "Geçerli soru"
}
]
},
{
"label": "Geri gelmeyi engelle",
"description": "Bu seçenek soru setinde sadece ileri doğru gezmeye olanak verir önceki soruya dönemez."
},
{
"label": "Rastgele Sorular",
"description": "Soruların ekranda rastgele bir şekilde (her seferinde farklı sıralamada) gelmesi için etkinleştirin."
},
{
"label": "Sınavda sorulacak soru sayısı:",
"description": "Soru havuzundan belirli sayıda rastgele soru seçmenizi sağlar."
},
{
"label": "Sınav (quiz) bitti",
"fields": [
{
"label": "Sonuçları göster"
},
{
"label": "Çözümü göster butonunu göster"
},
{
"label": "Yeniden dene butonunu göster"
},
{
"label": "Sonuç yok mesajı",
"description": " \"Sonuçları göster\" devre dışı bırakıldığında gösterilecek metin.",
"default": "Bitti"
},
{
"label": "Geri bildirim başlığı",
"default": "Sonucunuz:",
"description": "Bu başlık, kullanıcı tüm soruları yanıtladığında sınavın sonunda görüntülenecektir."
},
{
"label": "Genel geri bildirim",
"fields": [
{
"widgets": [
{
"label": "Varsayılan"
}
],
"label": "Herhangi bir puan aralığı için özel geri bildirim tanımlayabilirsiniz.",
"description": "Örnek: 0-44% Geliştirilmeli, 45-70% Orta, 70-100% İyi!",
"entity": "aralık",
"field": {
"fields": [
{
"label": "Skor Aralığı"
},
{},
{
"label": "Tanımlanmış puan aralığı için geri bildirim",
"placeholder": "Geri bildirim için doldurun"
}
]
}
}
]
},
{
"label": "Eski Geri Bildirim",
"fields": [
{
"label": "Sınavı geçtiniz tebrikler",
"description": "Kullanıcı sınavı başarıyla geçerse puanının üzerinde bu metin görüntülenecektir."
},
{
"label": "Geçti yorumu",
"description": "Kullanıcı sınavı başarıyla geçtiyse puandan sonra bu yorum görüntülenecektir."
},
{
"label": "Sınav başarısız başlığı",
"description": "Kullanıcı sınavda başarısız olursa puanının üzerinde bu metin görüntülenecektir."
},
{
"label": "Kaldı yorumu",
"description": "Kullanıcı sınavda başarısız olursa puandan sonra bu yorum görüntülenecektir."
}
]
},
{
"label": "Çözümü göster butonu etiketi",
"default": "Çözümü göster",
"description": "Çözümü göster butonu için etiket"
},
{
"label": "Yeniden dene butonu etiketi",
"default": "Yeniden Dene",
"description": "Yeniden dene butonu için etiket"
},
{
"label": "Bitir butonu için etiket",
"default": "Bitir"
},
{
"label": "Submit button text",
"default": "Submit"
},
{
"label": "Sınav sonuçlarından önce videoyu göster"
},
{
"label": "Videoyu atla düğmesini etkinleştir"
},
{
"label": "Videoyu atla düğmesi etiketi",
"default": "Videoyu Atla"
},
{
"label": "Geçti videosu",
"description": "Bu video, kullanıcı sınavı başarıyla geçerse oynatılacaktır."
},
{
"label": "Kaldı videosu",
"description": "Bu video, kullanıcı sınavda başarısız olursa oynatılacaktır."
}
]
},
{
"label": "\"Çözümü göster\" ve \"Yeniden dene\" butonları için ayarlar",
"fields": [
{
"label": "\"Kontrol et\" butonlarını göster",
"description": "Bu seçenek, tüm sorular için \"Kontrol et\" butonunun gösterilip gösterilmeyeceğini belirler."
},
{
"label": "\"Çözümü göster\" butonunu etkinleştir.",
"description": "Bu seçenek, \"Çözümü göster\" butonunun tüm sorular için gösterilip gösterilmeyeceğini, tümü için devre dışı bırakılıp bırakılmayacağını veya her soru için ayrı ayrı yapılandırılıp yapılandırılmayacağını belirler.",
"options": [
{
"label": "Etkinleştir"
},
{
"label": "Devre dışı bırak"
}
]
},
{
"label": "Override \"Yeniden dene\" ",
"description": "Bu seçenek, \"Yeniden dene\" butonunun tüm sorular için gösterilip gösterilmeyeceğini, tümü için devre dışı bırakılıp bırakılmayacağını veya her soru için ayrı ayrı yapılandırılıp yapılandırılmayacağını belirler.",
"options": [
{
"label": "Etkinleştir"
},
{
"label": "Devre dışı bırak"
}
]
}
]
}
]
}

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

@ -1,273 +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",
"default": "Submit"
},
{
"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": "問題簡介",
"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": "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

@ -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": "用於報讀器上的文本,非顯示用",
"default": "第 @current 題,共 @total 題。"
},
{
"label": "未回答題目顯示文字",
"default": "未回答"
},
{
"label": "已回答題目顯示文字",
"default": "已回答"
},
{
"label": "目前題目顯示文字",
"default": "目前題目"
}
]
},
{
"label": "停用上一題巡覽",
"description": "勾選後,用戶在問題集中只可以觀看下一題,不能返回到上一題。"
},
{
"label": "問題隨機排序",
"description": "勾選後,每次測驗都會重新排列問題的顯示順序。"
},
{
"label": "測驗亂數抽題",
"description": "輸入抽題數量,這樣每次測驗會從問題集總數中隨機的創建一批問題。"
},
{
"label": "測驗結束",
"fields": [
{
"label": "顯示測驗結果"
},
{
"label": "顯示正解按鈕"
},
{
"label": "Display retry button"
},
{
"label": "不顯示測驗結果時的訊息",
"description": "若沒有勾選「顯示測驗結果」,在結束頁面上會顯示的文字。",
"default": "完成了!"
},
{
"label": "測驗回饋標題文字",
"default": "你的測驗結果為:",
"description": "當用戶回答了所有問題後,在結束頁面上會顯示的標題文字。"
},
{
"label": "總結回饋",
"fields": [
{
"widgets": [
{
"label": "預設"
}
],
"label": "為不同分數區間的用戶分別回饋訊息",
"description": "點擊「添加範圍」按鈕,加入你想要的範圍,例如 0%-59% 請加油、60%-79% 再努力、80%-100% 太棒了。",
"entity": "範圍",
"field": {
"fields": [
{
"label": "分數區間"
},
{},
{
"label": "自訂區間回饋訊息",
"placeholder": "填入回饋訊息"
}
]
}
}
]
},
{
"label": "舊的回饋",
"fields": [
{
"label": "測驗通過的標題",
"description": "用戶通過時顯示的標題文字。"
},
{
"label": "測驗通過的注釋",
"description": "用戶通過時在分數之後會顯示的注釋文字。"
},
{
"label": "測驗失敗的標題",
"description": "用戶沒有通過時顯示的標題文字"
},
{
"label": "測驗失敗的注釋",
"description": "用戶沒有通過時在分數之後會顯示的注釋文字。"
}
]
},
{
"label": "顯示正解按鈕的顯示文字",
"default": "顯示正解",
"description": "在顯示正解按鈕上要顯示的文字。"
},
{
"label": "再試一次按鈕的顯示文字",
"default": "再試一次",
"description": "在再試一次按鈕上要顯示的文字。"
},
{
"label": "完成按鈕的顯示文字",
"default": "完成"
},
{
"label": "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

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

View File

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

View File

@ -22,8 +22,7 @@
"sub",
"sup",
"strong",
"em",
"code"
"em"
]
},
{
@ -40,8 +39,7 @@
"sup",
"strong",
"em",
"p",
"code"
"p"
]
},
{
@ -123,13 +121,12 @@
"importance": "high",
"description": "Library for this question.",
"options": [
"H5P.MultiChoice 1.14",
"H5P.DragQuestion 1.13",
"H5P.Blanks 1.12",
"H5P.MarkTheWords 1.9",
"H5P.DragText 1.8",
"H5P.TrueFalse 1.6",
"H5P.Essay 1.2"
"H5P.MultiChoice 1.9",
"H5P.DragQuestion 1.10",
"H5P.Blanks 1.7",
"H5P.MarkTheWords 1.6",
"H5P.DragText 1.5",
"H5P.TrueFalse 1.1"
]
}
},
@ -170,8 +167,7 @@
"default": "Question: @current of @total questions",
"tags": [
"strong",
"em",
"code"
"em"
]
},
{
@ -265,12 +261,6 @@
"label": "Display solution button",
"default": true
},
{
"name": "showRetryButton",
"type": "boolean",
"label": "Display retry button",
"default": true
},
{
"name": "noResultMessage",
"type": "text",
@ -286,140 +276,83 @@
"label": "Feedback heading",
"importance": "low",
"default": "Your result:",
"optional": true,
"description": "This heading will be displayed at the end of the quiz when the user has answered all questions.",
"tags": [
"strong",
"em"
]
},
{
"name": "scoreString",
"type": "text",
"label": "Score display text",
"importance": "low",
"description": "Text used to display Total user score. \"@score\" will be replaced by calculated score, \"@total\" will be replaced by maximum possible score. ",
"default": "You got @score of @total points",
"optional": true
},
{
"name": "successGreeting",
"type": "text",
"label": "Quiz passed greeting",
"importance": "low",
"placeholder": "Congratulations!",
"default": "Congratulations!",
"optional": true,
"description": "This text will be displayed above the score if the user has successfully passed the quiz.",
"tags": [
"strong",
"em"
]
},
{
"name": "successComment",
"type": "text",
"widget": "html",
"label": "Passed comment",
"importance": "low",
"default": "You did very well!",
"optional": true,
"description": "This comment will be displayed after the score if the user has successfully passed the quiz.",
"tags": [
"sub",
"sup",
"strong",
"em",
"code"
"a",
"p"
]
},
{
"name": "overallFeedback",
"type": "group",
"label": "Overall Feedback",
"name": "failGreeting",
"type": "text",
"label": "Quiz failed title",
"importance": "low",
"expanded": true,
"fields": [
{
"name": "overallFeedback",
"type": "list",
"widgets": [
{
"name": "RangeList",
"label": "Default"
}
],
"importance": "high",
"label": "Define custom feedback for any score range",
"description": "Click the \"Add range\" button to add as many ranges as you need. Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
"entity": "range",
"min": 1,
"defaultNum": 1,
"optional": true,
"field": {
"name": "overallFeedback",
"type": "group",
"importance": "low",
"fields": [
{
"name": "from",
"type": "number",
"label": "Score Range",
"min": 0,
"max": 100,
"default": 0,
"unit": "%"
},
{
"name": "to",
"type": "number",
"min": 0,
"max": 100,
"default": 100,
"unit": "%"
},
{
"name": "feedback",
"type": "text",
"label": "Feedback for defined score range",
"importance": "low",
"placeholder": "Fill in the feedback",
"optional": true
}
]
}
}
"default": "You did not pass this time.",
"optional": true,
"description": "This text will be displayed above the score if the user has failed the quiz.",
"tags": [
"strong",
"em"
]
},
{
"name": "oldFeedback",
"type": "group",
"label": "Old Feedback",
"name": "failComment",
"type": "text",
"widget": "html",
"label": "Failed comment",
"importance": "low",
"deprecated": true,
"fields": [
{
"name": "successGreeting",
"type": "text",
"label": "Quiz passed greeting",
"importance": "low",
"optional": true,
"description": "This text will be displayed above the score if the user has successfully passed the quiz.",
"tags": [
"strong",
"em",
"code"
]
},
{
"name": "successComment",
"type": "text",
"widget": "html",
"label": "Passed comment",
"importance": "low",
"optional": true,
"description": "This comment will be displayed after the score if the user has successfully passed the quiz.",
"tags": [
"sub",
"sup",
"strong",
"em",
"a",
"p",
"code"
]
},
{
"name": "failGreeting",
"type": "text",
"label": "Quiz failed title",
"importance": "low",
"optional": true,
"description": "This text will be displayed above the score if the user has failed the quiz.",
"tags": [
"strong",
"em",
"code"
]
},
{
"name": "failComment",
"type": "text",
"widget": "html",
"label": "Failed comment",
"importance": "low",
"optional": true,
"description": "This comment will be displayed after the score if the user has failed the quiz.",
"tags": [
"sub",
"sup",
"strong",
"em",
"a",
"p",
"code"
]
}
"default": "Have another try!",
"optional": true,
"description": "This comment will be displayed after the score if the user has failed the quiz.",
"tags": [
"sub",
"sup",
"strong",
"em",
"a",
"p"
]
},
{
@ -478,26 +411,17 @@
"label": "Fail video",
"importance": "low",
"optional": true,
"description": "This video will be played if the user fails the quiz."
"description": "This video will be played if the user failes the quiz."
}
]
},
{
"name": "override",
"type": "group",
"label": "Settings for \"Check\", \"Show solution\" and \"Retry\"",
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
"importance": "low",
"optional": true,
"fields": [
{
"name": "checkButton",
"type": "boolean",
"label": "Show \"Check\" buttons",
"importance": "low",
"description": "This option determines if the \"Check\" button will be shown for all questions.",
"optional": true,
"default": true
},
{
"name": "showSolutionButton",
"type": "select",
@ -505,15 +429,6 @@
"importance": "low",
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
"optional": true,
"widget": "showWhen",
"showWhen": {
"rules": [
{
"field": "checkButton",
"equals": true
}
]
},
"options": [
{
"value": "on",
@ -532,15 +447,6 @@
"importance": "low",
"description": "This option determines if the \"Retry\" button will be shown for all questions, disabled for all or configured for each question individually.",
"optional": true,
"widget": "showWhen",
"showWhen": {
"rules": [
{
"field": "checkButton",
"equals": true
}
]
},
"options": [
{
"value": "on",
@ -554,4 +460,4 @@
}
]
}
]
]

View File

@ -52,52 +52,6 @@ H5PUpgrades['H5P.QuestionSet'] = (function ($) {
// Remove old copyright dialog question label
delete parameters.questionLabel;
finished(null, parameters);
},
/**
* Asynchronous content upgrade hook.
*
* Upgrade params to support overall feedback
*
* @param {Object} parameters
* @param {function} finished
*/
13: function (parameters, finished) {
parameters.endGame = parameters.endGame || {};
parameters.endGame.overallFeedback = [];
if (parameters.endGame.scoreString) {
parameters.endGame.overallFeedback.push({
from: 0,
to: 100,
feedback: parameters.endGame.scoreString
});
delete parameters.endGame.scoreString;
}
// Group old feedback fields
if (parameters.endGame.successGreeting ||
parameters.endGame.successComment ||
parameters.endGame.failGreeting ||
parameters.endGame.failComment) {
parameters.endGame.oldFeedback = {};
if (parameters.endGame.successGreeting) {
parameters.endGame.oldFeedback.successGreeting = parameters.endGame.successGreeting;
}
if (parameters.endGame.successComment) {
parameters.endGame.oldFeedback.successComment = parameters.endGame.successComment;
}
if (parameters.endGame.failGreeting) {
parameters.endGame.oldFeedback.failGreeting = parameters.endGame.failGreeting;
}
if (parameters.endGame.failComment) {
parameters.endGame.oldFeedback.failComment = parameters.endGame.failComment;
}
}
finished(null, parameters);
}
}