Merge pull request #1 from h5p/master

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

View File

@ -120,10 +120,6 @@
content: "\f01e";
}
.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 {
@ -155,15 +151,6 @@
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;
@ -178,17 +165,14 @@
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';
content: "\f06e "; /* TODO: Use margin not whitespace, spacing is not content! */
padding-right: 0.5em;
content: "\f06e";
}
.video-container {

View File

@ -59,7 +59,8 @@ H5P.QuestionSet = function (options, contentId, contentData) {
retryButtonText: 'Retry',
showAnimations: false,
skipButtonText: 'Skip video',
showSolutionButton: true
showSolutionButton: true,
showRetryButton: true
},
override: {},
disableBackwardsNavigation: false
@ -75,7 +76,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
' <% if (introPage.introduction) { %>' +
' <div class="introduction"><%= introPage.introduction %></div>' +
' <% } %>' +
' <div class="buttons"><a class="qs-startbutton h5p-joubelui-button h5p-button"><%= introPage.startButtonText %></a></div>' +
' <div class="buttons"><a href="#" class="qs-startbutton h5p-joubelui-button h5p-button"><%= introPage.startButtonText %></a></div>' +
'</div>' +
'<% } %>' +
'<div tabindex="-1" class="qs-progress-announcer"></div>' +
@ -111,6 +112,10 @@ H5P.QuestionSet = function (options, contentId, contentData) {
' <button type="button" class="h5p-joubelui-button h5p-button qs-solutionbutton"><%= solutionButtonText %></button>':
'';
const retryButtonTemplate = params.endGame.showRetryButton ?
' <button type="button" class="h5p-joubelui-button h5p-button qs-retrybutton"><%= retryButtonText %></button>':
'';
var resulttemplate =
'<div class="questionset-results">' +
' <div class="greeting"><%= message %></div>' +
@ -125,16 +130,14 @@ 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 +
' <button type="button" class="h5p-joubelui-button h5p-button qs-retrybutton"><%= retryButtonText %></button>' +
retryButtonTemplate +
' </div>' +
'</div>';
var template = new EJS({text: texttemplate});
var endTemplate = new EJS({text: resulttemplate});
var initialParams = $.extend(true, {}, defaults, options);
var poolOrder; // Order of questions in a pool
var currentQuestion = 0;
@ -163,7 +166,9 @@ 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);
@ -231,7 +236,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
// Set overrides for questions
var override;
if (params.override.showSolutionButton || params.override.retryButton) {
if (params.override.showSolutionButton || params.override.retryButton || params.override.checkButton === false) {
override = {};
if (params.override.showSolutionButton) {
// Force "Show solution" button to be on or off for all interactions
@ -244,6 +249,11 @@ 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;
}
}
/**
@ -550,7 +560,8 @@ H5P.QuestionSet = function (options, contentId, contentData) {
// Update buttons
initializeQuestion();
} else if (params.randomQuestions) {
}
else if (params.randomQuestions) {
randomizeQuestions();
}
@ -762,6 +773,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
if ($intro.length) {
// Show intro
$('.intro-page', $myDom).show();
$('.qs-startbutton', $myDom).focus();
}
else {
// Show first question
@ -784,12 +796,13 @@ 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-finishbutton, .qs-solutionbutton, .qs-retrybutton, .feedback-section', $myDom).remove();
$('.qs-solutionbutton, .qs-retrybutton, .feedback-section', $myDom).remove();
}
self.trigger('resize');
@ -946,10 +959,22 @@ 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 () {
$('.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();
}
});
/**
@ -1049,6 +1074,13 @@ 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);
@ -1060,7 +1092,8 @@ H5P.QuestionSet = function (options, contentId, contentData) {
var questionCopyrights;
for (var i = 0; i < questionInstances.length; i++) {
var instance = questionInstances[i];
var qParams = params.questions[i].params;
var instanceParams = params.questions[i].params;
questionCopyrights = undefined;
if (instance.getCopyrights !== undefined) {
@ -1070,13 +1103,16 @@ H5P.QuestionSet = function (options, contentId, contentData) {
if (questionCopyrights === undefined) {
// Create a generic flat copyright list
questionCopyrights = new H5P.ContentCopyrights();
H5P.findCopyrights(questionCopyrights, qParams, contentId);
H5P.findCopyrights(questionCopyrights, instanceParams.params, contentId,{
metadata: instanceParams.metadata,
machineName: instanceParams.library.split(' ')[0]
});
}
// Determine label
var label = (params.texts.questionLabel + ' ' + (i + 1));
if (qParams.contentName !== undefined) {
label += ': ' + qParams.contentName;
if (instanceParams.params.contentName !== undefined) {
label += ': ' + instanceParams.params.contentName;
}
else if (instance.getTitle !== undefined) {
label += ': ' + instance.getTitle();

View File

@ -38,8 +38,7 @@
{
"label": "Dots"
}
],
"default": "dots"
]
},
{
"label": "Pass percentage",
@ -130,6 +129,9 @@
{
"label": "Display solution button"
},
{
"label": "Display retry button"
},
{
"label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled",
@ -144,7 +146,11 @@
"label": "Overall Feedback",
"fields": [
{
"widgets": [],
"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",
@ -221,6 +227,10 @@
{
"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.",

View File

@ -38,8 +38,7 @@
{
"label": "Dots"
}
],
"default":"dots"
]
},
{
"label": "Pass percentage",
@ -130,6 +129,9 @@
{
"label": "Display solution button"
},
{
"label": "Display retry button"
},
{
"label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled",
@ -145,7 +147,9 @@
"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!",
@ -155,9 +159,7 @@
{
"label": "Score Range"
},
{
},
{},
{
"label": "Feedback for defined score range",
"placeholder": "Fill in the feedback"
@ -225,6 +227,10 @@
{
"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.",

View File

@ -38,8 +38,7 @@
{
"label": "النقاط"
}
],
"default":"dots"
]
},
{
"label": "نسبة النجاح",
@ -130,6 +129,9 @@
{
"label": "Display solution button"
},
{
"label": "Display retry button"
},
{
"label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled",
@ -145,7 +147,9 @@
"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!",
@ -155,9 +159,7 @@
{
"label": "Score Range"
},
{
},
{},
{
"label": "Feedback for defined score range",
"placeholder": "Fill in the feedback"
@ -225,6 +227,10 @@
{
"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.",

View File

@ -38,12 +38,11 @@
{
"label": "Bodovi"
}
],
"default":"dots"
]
},
{
"label": "Procenat za uspješan prolaz",
"description":"Procenat tačnih odgovora kao preduvijet da je kviz\/zadatak uspješno završen."
"description": "Procenat tačnih odgovora kao preduvijet da je kviz/zadatak uspješno završen."
},
{
"label": "Pitanja",
@ -66,11 +65,11 @@
"fields": [
{
"label": "Oznaka za dugme \"Nazad\"",
"default":"Zurück"
"default": "Nazad"
},
{
"label": "Oznaka za dugme \"Naprijed\"",
"default":"Weiter"
"default": "Dalje"
},
{
"label": "Oznaka za dugme \"Završi\"",
@ -130,6 +129,9 @@
{
"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.",
@ -145,22 +147,22 @@
"fields": [
{
"widgets": [
{
"label": "Standardno"
}
],
"label":"Define custom feedback for any score range",
"description":"Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
"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":"Score Range"
"label": "Rezultat"
},
{},
{
},
{
"label":"Feedback for defined score range",
"placeholder":"Fill in the feedback"
"label": "Feedback za definirani rezultat",
"placeholder": "Unesi feedback"
}
]
}
@ -168,7 +170,7 @@
]
},
{
"label":"Old Feedback",
"label": "Stari Feedback",
"fields": [
{
"label": "Komentar za uspješno završen kviz",
@ -196,7 +198,7 @@
{
"label": "Oznaka za dugme \"Završi\"",
"default": "Ponovi",
"description":"Text for the retry button."
"description": "Tekst za dugme ponovi."
},
{
"label": "Prikaži video prije rezultata kviza",
@ -210,21 +212,25 @@
},
{
"label": "Video nakon položenog kviza",
"default":"Skip video"
"default": "Preskoči video"
},
{
"label": "Video nakon nepoloženog kviza",
"description": "Ovaj video se prikazuje nakon što korisnik neuspješno završi kviz."
},
{
"label":"Fail video",
"description":"This video will be played if the user failes the quiz."
"label": "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.",

View File

@ -38,8 +38,7 @@
{
"label": "Dots"
}
],
"default":"dots"
]
},
{
"label": "Percentatge per passar",
@ -130,6 +129,9 @@
{
"label": "Display solution button"
},
{
"label": "Display retry button"
},
{
"label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled",
@ -145,7 +147,9 @@
"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!",
@ -155,9 +159,7 @@
{
"label": "Score Range"
},
{
},
{},
{
"label": "Feedback for defined score range",
"placeholder": "Fill in the feedback"
@ -225,6 +227,10 @@
{
"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.",

View File

@ -38,8 +38,7 @@
{
"label": "Dots"
}
],
"default":"dots"
]
},
{
"label": "Pass percentage",
@ -130,6 +129,9 @@
{
"label": "Display solution button"
},
{
"label": "Display retry button"
},
{
"label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled",
@ -145,7 +147,9 @@
"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!",
@ -155,9 +159,7 @@
{
"label": "Score Range"
},
{
},
{},
{
"label": "Feedback for defined score range",
"placeholder": "Fill in the feedback"
@ -225,6 +227,10 @@
{
"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.",

View File

@ -38,8 +38,7 @@
{
"label": "Dots"
}
],
"default":"dots"
]
},
{
"label": "Pass percentage",
@ -130,6 +129,9 @@
{
"label": "Display solution button"
},
{
"label": "Display retry button"
},
{
"label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled",
@ -145,7 +147,9 @@
"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!",
@ -155,9 +159,7 @@
{
"label": "Score Range"
},
{
},
{},
{
"label": "Feedback for defined score range",
"placeholder": "Fill in the feedback"
@ -225,6 +227,10 @@
{
"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.",

View File

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

View File

@ -38,8 +38,7 @@
{
"label": "Dots"
}
],
"default":"dots"
]
},
{
"label": "Pass percentage",
@ -130,6 +129,9 @@
{
"label": "Display solution button"
},
{
"label": "Display retry button"
},
{
"label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled",
@ -145,7 +147,9 @@
"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!",
@ -155,9 +159,7 @@
{
"label": "Score Range"
},
{
},
{},
{
"label": "Feedback for defined score range",
"placeholder": "Fill in the feedback"
@ -225,6 +227,10 @@
{
"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.",

View File

@ -38,8 +38,7 @@
{
"label": "Dots"
}
],
"default":"dots"
]
},
{
"label": "Pass percentage",
@ -130,6 +129,9 @@
{
"label": "Display solution button"
},
{
"label": "Display retry button"
},
{
"label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled",
@ -145,7 +147,9 @@
"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!",
@ -155,9 +159,7 @@
{
"label": "Score Range"
},
{
},
{},
{
"label": "Feedback for defined score range",
"placeholder": "Fill in the feedback"
@ -225,6 +227,10 @@
{
"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": "Ocultar el botón \"Mostrar solución\"",
"description": "Esta opción determina si el botón \"Mostrar solución\" se muestra en todas las preguntas, se desactiva para todas, o se configura para cada pregunta individualmente.",

View File

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

261
language/eu.json Normal file
View File

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

261
language/fa.json Normal file
View File

@ -0,0 +1,261 @@
{
"semantics": [
{
"label": "راهنمای سوال",
"fields": [
{
"label": "نمایش راهنما"
},
{
"label": "عنوان",
"description": "این عنوان در بالای خلاصه نمایش داده میشود."
},
{
"label": "خلاصه متن",
"description": "این متن قبل از شروع آزمون نمایش داده میشود"
},
{
"label": "متن دکمه شروع",
"default": "شروع آزمون"
},
{
"label": "تصویر پس زمینه",
"description": "یک تصویر انتخابی برای قرارگرفتن در پس زمینه خلاصه"
}
]
},
{
"label": "تصویر پس زمینه",
"description": "یک تصویر انتخابی برای قرار گرفتن در پس زمینه گروه سوالات"
},
{
"label": "جداکننده فرآیند",
"description": "حالت نمایش جداکننده سوالات",
"options": [
{
"label": "متنی"
},
{
"label": "نقطه ای"
}
]
},
{
"label": "درصد پاس شدن",
"description": "درصدی که برای پاس شدن این آزمون مورد نیاز است"
},
{
"label": "سوالات",
"widgets": [
{
"label": "Default"
},
{
"label": "متنی"
}
],
"entity": "question",
"field": {
"label": "نوع سوال",
"description": "کتابخانه برای این سوال"
}
},
{
"label": "متن نمایشی برای این آزمون",
"fields": [
{
"label": "دکمه بازگشت",
"default": "Previous question"
},
{
"label": "دکمه بعدی",
"default": "Next question"
},
{
"label": "دکمه پایان",
"default": "Finish"
},
{
"label": "متن پیشرفت",
"description": "متن مورد استفاده در صورتی که پیشرفت متنی انتخاب شده باشد",
"default": "Question: @current of @total questions"
},
{
"label": "متن برای پریدن به یک سوال خاص",
"description": "You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
"default": "Question %d of %total"
},
{
"label": "Copyright dialog question label",
"default": "Question"
},
{
"label": "Readspeaker progress",
"description": "May use @current and @total question variables",
"default": "Question @current of @total"
},
{
"label": "متن سوالات پاسخ داده نشده",
"default": "بدون پاسخ"
},
{
"label": "متن سوالات پاسخ داده شده",
"default": "پاسخ داده شده"
},
{
"label": "متن سوال فعلی",
"default": "Current question"
}
]
},
{
"label": "غیرفعال کردن دکمه بازگشت",
"description": "این گزینه به شما اجازه میدهد که در فقط در سوالات به جلو بروید"
},
{
"label": "سوالات تصادفی",
"description": "با انتخاب این گزینه سوالات به صورت تصادفی نمایش داده میشود"
},
{
"label": "تعداد سوالاتی که باید نمایش داده شود:",
"description": "تعدادی از سوالات بالا را به صورت تصادفی در آزمون نمایش میدهد"
},
{
"label": "آزمون به پایان رسیده",
"fields": [
{
"label": "نمایش نتایج"
},
{
"label": "دکمه نمایش راه حل"
},
{
"label": "Display retry button"
},
{
"label": "پیام عدم وجود نتایج",
"description": "Text displayed on end page when \"Display results\" is disabled",
"default": "Finished"
},
{
"label": "Feedback heading",
"default": "Your result:",
"description": "This heading will be displayed at the end of the quiz when the user has answered all questions."
},
{
"label": "Overall Feedback",
"fields": [
{
"widgets": [
{
"label": "Default"
}
],
"label": "Define custom feedback for any score range",
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
"entity": "range",
"field": {
"fields": [
{
"label": "Score Range"
},
{},
{
"label": "Feedback for defined score range",
"placeholder": "Fill in the feedback"
}
]
}
}
]
},
{
"label": "Old Feedback",
"fields": [
{
"label": "Quiz passed greeting",
"description": "This text will be displayed above the score if the user has successfully passed the quiz."
},
{
"label": "Passed comment",
"description": "This comment will be displayed after the score if the user has successfully passed the quiz."
},
{
"label": "Quiz failed title",
"description": "This text will be displayed above the score if the user has failed the quiz."
},
{
"label": "Failed comment",
"description": "This comment will be displayed after the score if the user has failed the quiz."
}
]
},
{
"label": "Solution button label",
"default": "Show solution",
"description": "Text for the solution button."
},
{
"label": "Retry button label",
"default": "Retry",
"description": "Text for the retry button."
},
{
"label": "Finish button text",
"default": "Finish"
},
{
"label": "Display video before quiz results"
},
{
"label": "Enable skip video button"
},
{
"label": "Skip video button label",
"default": "Skip video"
},
{
"label": "Passed video",
"description": "This video will be played if the user successfully passed the quiz."
},
{
"label": "Fail video",
"description": "This video will be played if the user failes the quiz."
}
]
},
{
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
"fields": [
{
"label": "Show \"Check\" buttons",
"description": "This option determines if the \"Check\" button will be shown for all questions."
},
{
"label": "Override \"Show Solution\" button",
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
"options": [
{
"label": "Enabled"
},
{
"label": "Disabled"
}
]
},
{
"label": "Override \"Retry\" button",
"description": "This option determines if the \"Retry\" button will be shown for all questions, disabled for all or configured for each question individually.",
"options": [
{
"label": "Enabled"
},
{
"label": "Disabled"
}
]
}
]
}
]
}

View File

@ -1,166 +1,168 @@
{
"semantics": [
{
"label":"Quiz introduction",
"label": "Tietovisan johdanto",
"fields": [
{
"label":"Display introduction"
"label": "Näytä johdanto"
},
{
"label": "Otsikko",
"description":"This title will be displayed above the introduction text."
"description": "Johdanto-osion otsikko."
},
{
"label":"Introduction text",
"description":"This text will be displayed before the quiz starts."
"label": "Johdantoteksti",
"description": "Teksti näytetään ennen visan alkua."
},
{
"label":"Start button text",
"default":"Start Quiz"
"label": "Aloita -painikkeen teksti",
"default": "Aloita"
},
{
"label":"Background image",
"description":"An optional background image for the introduction."
"label": "Taustakuva",
"description": "Valinnainen taustakuva johdantoon."
}
]
},
{
"label":"Background image",
"description":"An optional background image for the Question set."
"label": "Taustakuva",
"description": "Valinnainen taustakuva kysymyksille."
},
{
"label":"Progress indicator",
"description":"Question set progress indicator style.",
"label": "Edistymisen näyttäminen",
"description": "Miten edistyminen tehtävässä näytetään tekijälle.",
"options": [
{
"label":"Textual"
"label": "Teksti"
},
{
"label":"Dots"
"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"
}
],
"default":"dots"
"entity": "kysymys",
"field": {
"label": "Kysymyksen tyyppi",
"description": "Tarjolla olevat kysymystyypit."
}
},
{
"label":"Pass percentage",
"description":"Percentage of Total score required for passing the quiz."
"label": "Käyttöliittymän tekstit",
"fields": [
{
"label": "Painikkeen Edellinen teksti",
"default": "Edellinen kysymys"
},
{
"label":"Questions",
"label": "Painikkeen Seuraava teksti",
"default": "Seuraava kysymys"
},
{
"label": "Painikkeen Lopeta teksti",
"default": "Lopeta"
},
{
"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": "Display retry button"
},
{
"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":"Textual"
}
],
"entity":"question",
"field":{
"label":"Question type",
"description":"Library for this question."
}
},
{
"label":"Interface texts in quiz",
"fields":[
{
"label":"Back button",
"default":"Previous question"
},
{
"label":"Next button",
"default":"Next question"
},
{
"label":"Finish button",
"default":"Finish"
},
{
"label":"Progress text",
"description":"Text used if textual progress is selected.",
"default":"Question: @current of @total questions"
},
{
"label":"Label for jumping to a certain question",
"description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
"default":"Question %d of %total"
},
{
"label":"Copyright dialog question label",
"default":"Question"
},
{
"label":"Readspeaker progress",
"description":"May use @current and @total question variables",
"default":"Question @current of @total"
},
{
"label":"Unanswered question text",
"default":"Unanswered"
},
{
"label":"Answered question text",
"default":"Answered"
},
{
"label":"Current question text",
"default":"Current question"
}
]
},
{
"label":"Disable backwards navigation",
"description":"This option will only allow you to move forward in Question Set"
},
{
"label":"Randomize questions",
"description":"Enable to randomize the order of questions on display."
},
{
"label":"Number of questions to be shown:",
"description":"Create a randomized batch of questions from the total."
},
{
"label":"Quiz finished",
"fields":[
{
"label":"Display results"
},
{
"label":"Display solution button"
},
{
"label":"No results message",
"description":"Text displayed on end page when \"Display results\" is disabled",
"default":"Finished"
},
{
"label":"Feedback heading",
"default":"Your result:",
"description":"This heading will be displayed at the end of the quiz when the user has answered all questions."
},
{
"label":"Overall Feedback",
"fields":[
{
"widgets":[
],
"label":"Define custom feedback for any score range",
"description":"Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
"entity":"range",
"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":"Score Range"
"label": "Pisteraja"
},
{},
{
},
{
"label":"Feedback for defined score range",
"placeholder":"Fill in the feedback"
"label": "Palaute määritellylle pisterajalle",
"placeholder": "Kirjoita palaute"
}
]
}
@ -189,42 +191,46 @@
]
},
{
"label":"Solution button label",
"default":"Show solution",
"description":"Text for the solution button."
"label": "Painikkeen \"Katso vastaus\" nimi",
"default": "Katso vastaus",
"description": "Teksti \"Katso vastaus\" painikkeelle."
},
{
"label":"Retry button label",
"label": "Painikkeen \"Yritä uudelleen\" nimi",
"default": "Yritä uudelleen",
"description":"Text for the retry button."
"description": "Teksti \"Yritä uudelleen\" painikkeelle."
},
{
"label":"Finish button text",
"default":"Finish"
"label": "Painikkeen \"Lopeta\" teksti",
"default": "Lopeta"
},
{
"label":"Display video before quiz results"
"label": "Näytä video ennen tuloksia"
},
{
"label":"Enable skip video button"
"label": "Salli videon ohittaminen"
},
{
"label":"Skip video button label",
"default":"Skip video"
"label": "Teksti painikkeelle Ohita video",
"default": "Ohita video"
},
{
"label":"Passed video",
"description":"This video will be played if the user successfully passed the quiz."
"label": "Video, kun suoritettu",
"description": "Tämä video näytetään, kun tehtävä on suoritettu onnistuneesti."
},
{
"label":"Fail video",
"description":"This video will be played if the user failes the quiz."
"label": "Video, kun ei suoritettu",
"description": "Tämä video näytetään, kun tehtävää ei ole suoritettu onnistuneesti."
}
]
},
{
"label":"Settings for \"Show solution\" and \"Retry\" buttons",
"label": "Asetukset \"Näytä vastaus\" ja \"Yritä uudelleen\" painikkeille",
"fields": [
{
"label": "Show \"Check\" buttons",
"description": "This option determines if the \"Check\" button will be shown for all questions."
},
{
"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",

View File

@ -38,8 +38,7 @@
{
"label": "Points"
}
],
"default":"dots"
]
},
{
"label": "Pourcentage de réussite",
@ -69,12 +68,12 @@
"default": "Retour"
},
{
"label":"Bouton suivant",
"default":"Suite"
"label": "Bouton Suivant",
"default": "Suivant"
},
{
"label":"Bouton fin",
"default":"Confirmer"
"label": "Bouton Fin",
"default": "Terminer"
},
{
"label": "Texte de progression",
@ -111,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 question dans un ordre aléatoire",
"description":"Les réponses possibles seront affichées dans l'ordre aléatoire."
"label": "Afficher les questions dans un ordre aléatoire",
"description": "Activer pour choisir aléatoirement l'ordre des questions à l'affichage."
},
{
"label": "Nombre de questions à afficher:",
"description":"Génère aléatoire un jeu de question parmi toutes les questions disponibles."
"description": "Génère aléatoirement un jeu de questions parmi toutes les questions disponibles."
},
{
"label": "Quiz terminé",
@ -128,7 +127,10 @@
"label": "Afficher les résultats"
},
{
"label":"Display solution button"
"label": "Afficher le bouton \"Solution\"."
},
{
"label": "Display retry button"
},
{
"label": "Message si pas de résultats",
@ -145,22 +147,22 @@
"fields": [
{
"widgets": [
{
"label": "Par défaut"
}
],
"label":"Define custom feedback for any score range",
"description":"Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
"entity":"range",
"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":"Score Range"
"label": "Tranche de score"
},
{},
{
},
{
"label":"Feedback for defined score range",
"placeholder":"Fill in the feedback"
"label": "Retour pour cette tranche de score",
"placeholder": "Entrer le message de retour"
}
]
}
@ -200,7 +202,7 @@
},
{
"label": "Texte pour le bouton de fin",
"default":"Confirmer"
"default": "Terminer"
},
{
"label": "Afficher une vidéo avant l'affichage des résultats du quiz"
@ -226,7 +228,11 @@
"label": "Options pour les boutons \"Montrer la solution\" et \"Recommencer\".",
"fields": [
{
"label":"Ecraser le bouton \"Voir la correction\"",
"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.",
"options": [
{
@ -238,7 +244,7 @@
]
},
{
"label":"Ecraser le bouton \"Recommencer\"",
"label": "Cacher le bouton \"Recommencer\"",
"description": "Cette option détermine si le bouton \"Recommencer\" sera affiché pour toutes les questions, désactivé pour toutes ou configuré pour chaque question individuellement.",
"options": [
{

View File

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

View File

@ -38,8 +38,7 @@
{
"label": "Dots"
}
],
"default":"dots"
]
},
{
"label": "Pass percentage",
@ -130,6 +129,9 @@
{
"label": "Display solution button"
},
{
"label": "Display retry button"
},
{
"label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled",
@ -145,7 +147,9 @@
"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!",
@ -155,9 +159,7 @@
{
"label": "Score Range"
},
{
},
{},
{
"label": "Feedback for defined score range",
"placeholder": "Fill in the feedback"
@ -225,6 +227,10 @@
{
"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.",

View File

@ -15,7 +15,7 @@
"description": "Questo testo sarà visualizzato prima dell'inizio del quiz."
},
{
"label":"Testo pulsante di avvio",
"label": "Testo del pulsante di avvio",
"default": "Inizia il quiz"
},
{
@ -38,8 +38,7 @@
{
"label": "Punti"
}
],
"default":"dots"
]
},
{
"label": "Percentuale di superamento della prova",
@ -69,16 +68,16 @@
"default": "Domanda precedente"
},
{
"label":"Pulsante Avanti",
"label": "Pulsante avanti",
"default": "Prossima domanda"
},
{
"label":"Pulsante Fine",
"label": "Pulsante fine",
"default": "Finito"
},
{
"label": "Testo di avanzamento",
"description":"Testo usate se il testo di avanzamento è selezionato.",
"description": "Testo usato se il testo di avanzamento è selezionato.",
"default": "Domanda: @current di @total domande totali"
},
{
@ -130,6 +129,9 @@
{
"label": "Pulsante visualizza soluzione"
},
{
"label": "Display retry button"
},
{
"label": "Messaggio di nessun risultato",
"description": "Testo visualizzato nella pagina finale quando \"Visualizza risultati\" è disattivato",
@ -145,19 +147,19 @@
"fields": [
{
"widgets": [
{
"label": "Default"
}
],
"label": "Definisci un feedback personalizzato per ogni intervallo di punteggio",
"description":"Esempio: 0-20%, cattivo punteggio; 21-91% punteggio nella media; 91-100% ottimo punteggio!",
"description": "Esempio: 0-20%, cattivo punteggio; 21-91% punteggio medio; 91-100% ottimo punteggio!",
"entity": "Intervallo",
"field": {
"fields": [
{
"label": "Intervallo di punteggio"
},
{
},
{},
{
"label": "Feedback per un intervallo di punteggio definito",
"placeholder": "Compila il feedback"
@ -171,53 +173,53 @@
"label": "Vecchio feedback",
"fields": [
{
"label":"Messaggio di superamento quiz",
"label": "Messaggio di superamento del quiz",
"description": "Questo testo verrà visualizzato sopra il punteggio se l'utente ha superato con successo il quiz."
},
{
"label":"Commento di superamento quiz",
"label": "Commento di superamento del quiz",
"description": "Questo commento verrà visualizzato dopo il punteggio se l'utente ha superato con successo il quiz."
},
{
"label":"Titolo quiz fallito",
"description":"Questo testo verrà visualizzato sopra il punteggio se l'utente non ha superato il quiz."
"label": "Titolo per quiz fallito",
"description": "Questo messaggio sarà visualizzato sopra il punteggio se l'utente non ha superato il quiz."
},
{
"label":"Commento quiz fallito",
"description":"Questo commento verrà visualizzato dopo il punteggio se l'utente non ha superato il quiz."
"label": "Commento per quiz fallito",
"description": "Questo commento sarà visualizzato dopo il punteggio se l'utente non ha superato il quiz."
}
]
},
{
"label":"Etichetta pulsante Soluzione",
"default":"Mostra la soluzione",
"description":"Testo per il pulsante Soluzione."
"label": "Etichetta del pulsante \"Mostra soluzione\"",
"default": "Mostra soluzione",
"description": "Testo per il pulsante \"Mostra soluzione\"."
},
{
"label":"Etichetta del pulsante Riprova",
"label": "Etichetta del pulsante \"Riprova\"",
"default": "Riprova",
"description":"Testo per il pulsante Riprova."
"description": "Testo per il pulsante \"Riprova\"."
},
{
"label":"Testo pulsante Fine",
"label": "Testo pulsante che indica la fine del quiz",
"default": "Finito"
},
{
"label": "Visualizza il video prima dei risultati del quiz"
},
{
"label":"Abilita pulsante Salta video"
"label": "Pulsante per attivare \"Salta video\""
},
{
"label":"Etichetta pulsante Salta video",
"label": "Etichetta del pulsante \"Salta video\"",
"default": "Salta video"
},
{
"label":"Video di superamento quiz",
"label": "Video per superamento del quiz",
"description": "Questo video verrà visualizzato sopra il punteggio se l'utente ha superato con successo il quiz."
},
{
"label":"Video quiz fallito",
"label": "Video per mancato superamento del quiz",
"description": "Questo testo verrà visualizzato se l'utente non ha superato il quiz."
}
]
@ -226,20 +228,24 @@
"label": "Impostazioni per i pulsanti \"Mostra soluzione\" e \"Riprova\".",
"fields": [
{
"label":"Sovrascrivi il pulsante Mostra soluzione",
"description":"Questa opzione determina se il pulsante \"Mostra soluzione\" sarà visualizzato per tutte le domande, disabilitato per tutti o configurato individualmente per ogni domanda.",
"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 consente di impostare il pulsante \"Mostra soluzione\" su tutte le domande, su nessuna o di decidere caso per caso.",
"options": [
{
"label": "Attivato"
},
{
"label":"Disabilitato"
"label": "Disattivato"
}
]
},
{
"label": "Sovrascrivi il pulsante \"Riprova\"",
"description":"Questa opzione determina se il pulsante \"Riprova\" sarà visualizzato per tutte le domande, disabilitato per tutti o configurato individualmente per ogni domanda.",
"description": "Questa opzione consente di impostare il pulsante \"Riprova\" su tutte le domande, su nessuna o di decidere caso per caso.",
"options": [
{
"label": "Attivo"

View File

@ -38,8 +38,7 @@
{
"label": "ドット"
}
],
"default":"dots"
]
},
{
"label": "合格パーセンテージ",
@ -79,12 +78,12 @@
{
"label": "進行状況のテキスト",
"description": "テキストによる進行状況を選択した場合に使用するテキスト。",
"default":"設問: @current \/ @total"
"default": "設問: @current / @total"
},
{
"label": "特定の設問にジャンプするラベル",
"description": "設問番号ではなくプレース ホルダー '%d' を、また設問の全体数ではなく %total を使用する必要があります。",
"default":"設問 %d \/ %total"
"default": "設問 %d / %total"
},
{
"label": "著作権ダイアログ設問ラベル",
@ -93,7 +92,7 @@
{
"label": "リードスピーカーの進行状況",
"description": "@current と @total の設問用変数を使用できます",
"default":"設問 @current \/ @total"
"default": "設問 @current / @total"
},
{
"label": "未回答の設問テキスト",
@ -130,6 +129,9 @@
{
"label": "解ボタンを表示"
},
{
"label": "Display retry button"
},
{
"label": "結果のメッセージはありません",
"description": "「結果を表示」が無効のとき最後のページにに表示されるテキスト",
@ -145,7 +147,9 @@
"fields": [
{
"widgets": [
{
"label": "Default"
}
],
"label": "ある得点範囲に対して、カスタムフィードバックを定義します。",
"description": "例: 0-20% 低得点、 21-91% 平均点、 91-100% 高得点 !",
@ -155,9 +159,7 @@
{
"label": "得点範囲"
},
{
},
{},
{
"label": "定義した得点範囲に対するフィードバック",
"placeholder": "フィードバックを記入"
@ -225,6 +227,10 @@
{
"label": "「解を表示」と「リトライ」ボタンの設定",
"fields": [
{
"label": "Show \"Check\" buttons",
"description": "This option determines if the \"Check\" button will be shown for all questions."
},
{
"label": "「解を表示」ボタンを上書き",
"description": "このオプションは、すべての設問に対して「解を表示」ボタンが表示されるか、すべての設問に対して無効になるか、各設問ごとに個別に設定されるかを決定します。",

View File

@ -38,8 +38,7 @@
{
"label": "Dots"
}
],
"default":"dots"
]
},
{
"label": "Pass percentage",
@ -130,6 +129,9 @@
{
"label": "Display solution button"
},
{
"label": "Display retry button"
},
{
"label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled",
@ -145,7 +147,9 @@
"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!",
@ -155,9 +159,7 @@
{
"label": "Score Range"
},
{
},
{},
{
"label": "Feedback for defined score range",
"placeholder": "Fill in the feedback"
@ -225,6 +227,10 @@
{
"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.",

View File

@ -38,8 +38,7 @@
{
"label": "Prikker"
}
],
"default":"dots"
]
},
{
"label": "Krav for å bestå",
@ -130,6 +129,9 @@
{
"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",
@ -145,7 +147,9 @@
"fields": [
{
"widgets": [
{
"label": "Default"
}
],
"label": "Spesifiser en egendefinert tilbakemelding for et poengintervall",
"description": "Eksempel: 0-20% dårlig poengsum, 21-91% gjennomsnittlig poengsum, 91-100% God poengsum!",
@ -155,9 +159,7 @@
{
"label": "Poengintervall"
},
{
},
{},
{
"label": "Tilbakemelding for spesifisert poengintervall",
"placeholder": "Fyll inn tilbakemelding"
@ -225,6 +227,10 @@
{
"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.",

View File

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

View File

@ -38,8 +38,7 @@
{
"label": "Angi fremdrift med prikker"
}
],
"default":"dots"
]
},
{
"label": "Krav for å bestå",
@ -130,6 +129,9 @@
{
"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",
@ -145,7 +147,9 @@
"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!",
@ -155,9 +159,7 @@
{
"label": "Score Range"
},
{
},
{},
{
"label": "Feedback for defined score range",
"placeholder": "Fill in the feedback"
@ -225,6 +227,10 @@
{
"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.",

View File

@ -1,166 +1,168 @@
{
"semantics": [
{
"label":"Quiz introduction",
"label": "Plansza wprowadzająca",
"fields": [
{
"label":"Display introduction"
"label": "Wyświetl planszę"
},
{
"label":"Title",
"description":"This title will be displayed above the introduction text."
"label": "Tytuł",
"description": "Ten tytuł zostanie wyświetlony nad treścią planszy."
},
{
"label":"Introduction text",
"description":"This text will be displayed before the quiz starts."
"label": "Treść planszy",
"description": "Ten tekst zostanie wyświetlony przed rozpoczęciem quizu."
},
{
"label":"Start button text",
"default":"Start Quiz"
"label": "Napis na przycisku Start",
"default": "Rozpocznij quiz"
},
{
"label":"Background image",
"description":"An optional background image for the introduction."
"label": "Tło planszy",
"description": "Tło planszy wprowadzającej (opcjonalne)."
}
]
},
{
"label":"Background image",
"description":"An optional background image for the Question set."
"label": "Tło quizu",
"description": "Tło dla wszystkich pytań w quizie (opcjonalne)."
},
{
"label":"Progress indicator",
"description":"Question set progress indicator style.",
"label": "Wskaźnik postępu",
"description": "W jaki sposób ma być pokazywany postęp.",
"options": [
{
"label":"Textual"
"label": "Tekstowo"
},
{
"label":"Dots"
}
],
"default":"dots"
},
{
"label":"Pass percentage",
"description":"Percentage of Total score required for passing the quiz."
},
{
"label":"Questions",
"widgets":[
{
"label":"Default"
},
{
"label":"Textual"
}
],
"entity":"question",
"field":{
"label":"Question type",
"description":"Library for this question."
}
},
{
"label":"Interface texts in quiz",
"fields":[
{
"label":"Back button",
"default":"Previous question"
},
{
"label":"Next button",
"default":"Next question"
},
{
"label":"Finish button",
"default":"Finish"
},
{
"label":"Progress text",
"description":"Text used if textual progress is selected.",
"default":"Question: @current of @total questions"
},
{
"label":"Label for jumping to a certain question",
"description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
"default":"Question %d of %total"
},
{
"label":"Copyright dialog question label",
"default":"Question"
},
{
"label":"Readspeaker progress",
"description":"May use @current and @total question variables",
"default":"Question @current of @total"
},
{
"label":"Unanswered question text",
"default":"Unanswered"
},
{
"label":"Answered question text",
"default":"Answered"
},
{
"label":"Current question text",
"default":"Current question"
"label": "Kropkami"
}
]
},
{
"label":"Disable backwards navigation",
"description":"This option will only allow you to move forward in Question Set"
"label": "Procent zaliczający",
"description": "Procent poprawnych odpowiedzi wymagany do zaliczenia quizu."
},
{
"label":"Randomize questions",
"description":"Enable to randomize the order of questions on display."
"label": "Pytania",
"widgets": [
{
"label": "Tryb domyślny"
},
{
"label":"Number of questions to be shown:",
"description":"Create a randomized batch of questions from the total."
"label": "Tryb tekstowy"
}
],
"entity": "pytanie",
"field": {
"label": "Typ pytania",
"description": "Wybierz bibliotekę z listy."
}
},
{
"label":"Quiz finished",
"label": "Opisy interfejsu w quizie",
"fields": [
{
"label":"Display results"
"label": "Przycisk cofania",
"default": "Poprzednie pytanie"
},
{
"label":"Display solution button"
"label": "Przycisk dalej",
"default": "Kolejne pytanie"
},
{
"label":"No results message",
"description":"Text displayed on end page when \"Display results\" is disabled",
"default":"Finished"
"label": "Przycisk zakończenia",
"default": "Zakończ"
},
{
"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": "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":"Overall Feedback",
"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": "Display retry button"
},
{
"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":"Define custom feedback for any score range",
"description":"Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
"entity":"range",
"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":"Score Range"
"label": "Zakres"
},
{},
{
},
{
"label":"Feedback for defined score range",
"placeholder":"Fill in the feedback"
"label": "Komunikat dla danego zakresu",
"placeholder": "Wprowadź komunikat"
}
]
}
@ -168,84 +170,88 @@
]
},
{
"label":"Old Feedback",
"label": "Starsza wersja podsumowania",
"fields": [
{
"label":"Quiz passed greeting",
"description":"This text will be displayed above the score if the user has successfully passed the quiz."
"label": "Informacja o zaliczeniu quizu",
"description": "Ten tekst zostanie wyświetlony nad wynikiem użytkownika, który zaliczył quiz."
},
{
"label":"Passed comment",
"description":"This comment will be displayed after the score if the user has successfully passed the quiz."
"label": "Komentarz do zaliczenia quizu",
"description": "Ten komentarz zostanie wyświetlony pod wynikiem użytkownika, który zaliczył quiz."
},
{
"label":"Quiz failed title",
"description":"This text will be displayed above the score if the user has failed the quiz."
"label": "Informacja o niezaliczeniu quizu",
"description": "Ten tekst zostanie wyświetlony nad wynikiem użytkownika, który nie zaliczył quizu."
},
{
"label":"Failed comment",
"description":"This comment will be displayed after the score if the user has failed the quiz."
"label": "Komentarz do niezaliczenia quizu",
"description": "Ten komentarz zostanie wyświetlony pod wynikiem użytkownika, który nie zaliczył quizu."
}
]
},
{
"label":"Solution button label",
"default":"Show solution",
"description":"Text for the solution button."
"label": "Etykieta przycisku pokazywania poprawnej odpowiedzi",
"default": "Pokaż odpowiedź",
"description": "Opis przycisku pokazywania poprawnej odpowiedzi."
},
{
"label":"Retry button label",
"default":"Retry",
"description":"Text for the retry button."
"label": "Etykieta przycisku ponowienia próby odpowiedzi",
"default": "Powtórz",
"description": "Opis przycisku ponowienia."
},
{
"label":"Finish button text",
"default":"Finish"
"label": "Etykieta przycisku zakończenia",
"default": "Zakończ"
},
{
"label":"Display video before quiz results"
"label": "Odtwórz wideo przed ekranem wyników"
},
{
"label":"Enable skip video button"
"label": "Pozwól na pominięcie wideo"
},
{
"label":"Skip video button label",
"default":"Skip video"
"label": "Opis przycisku pominięcia",
"default": "Pomiń wideo"
},
{
"label":"Passed video",
"description":"This video will be played if the user successfully passed the quiz."
"label": "Wideo po zaliczeniu",
"description": "To wideo zostanie odtworzone użytkownikowi, który zaliczył quiz."
},
{
"label":"Fail video",
"description":"This video will be played if the user failes the quiz."
"label": "Wideo po niezaliczeniu",
"description": "To wideo zostanie odtworzone użytkownikowi, który nie zaliczył quizu."
}
]
},
{
"label":"Settings for \"Show solution\" and \"Retry\" buttons",
"label": "Ustawienia przycisków pokazywania odpowiedzi i ponownej próby",
"fields": [
{
"label":"Override \"Show Solution\" button",
"description":"This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
"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":"Enabled"
"label": "Włączone"
},
{
"label":"Disabled"
"label": "Wyłączone"
}
]
},
{
"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.",
"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":"Enabled"
"label": "Włączone"
},
{
"label":"Disabled"
"label": "Wyłączone"
}
]
}

View File

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

View File

@ -38,8 +38,7 @@
{
"label": "Dots"
}
],
"default":"dots"
]
},
{
"label": "Pass percentage",
@ -130,6 +129,9 @@
{
"label": "Display solution button"
},
{
"label": "Display retry button"
},
{
"label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled",
@ -145,7 +147,9 @@
"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!",
@ -155,9 +159,7 @@
{
"label": "Score Range"
},
{
},
{},
{
"label": "Feedback for defined score range",
"placeholder": "Fill in the feedback"
@ -225,6 +227,10 @@
{
"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.",

View File

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

View File

@ -38,8 +38,7 @@
{
"label": "Dots"
}
],
"default":"dots"
]
},
{
"label": "Pass percentage",
@ -130,6 +129,9 @@
{
"label": "Display solution button"
},
{
"label": "Display retry button"
},
{
"label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled",
@ -145,7 +147,9 @@
"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!",
@ -155,9 +159,7 @@
{
"label": "Score Range"
},
{
},
{},
{
"label": "Feedback for defined score range",
"placeholder": "Fill in the feedback"
@ -225,6 +227,10 @@
{
"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.",

View File

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

View File

@ -38,8 +38,7 @@
{
"label": "Dots"
}
],
"default":"dots"
]
},
{
"label": "Geçiş yüzdesi",
@ -130,6 +129,9 @@
{
"label": "Display solution button"
},
{
"label": "Display retry button"
},
{
"label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled",
@ -145,7 +147,9 @@
"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!",
@ -155,9 +159,7 @@
{
"label": "Score Range"
},
{
},
{},
{
"label": "Feedback for defined score range",
"placeholder": "Fill in the feedback"
@ -225,6 +227,10 @@
{
"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.",

View File

@ -38,8 +38,7 @@
{
"label": "Dots"
}
],
"default":"dots"
]
},
{
"label": "Pass percentage",
@ -130,6 +129,9 @@
{
"label": "Display solution button"
},
{
"label": "Display retry button"
},
{
"label": "No results message",
"description": "Text displayed on end page when \"Display results\" is disabled",
@ -145,7 +147,9 @@
"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!",
@ -155,9 +159,7 @@
{
"label": "Score Range"
},
{
},
{},
{
"label": "Feedback for defined score range",
"placeholder": "Fill in the feedback"
@ -225,6 +227,10 @@
{
"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.",

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

@ -0,0 +1,261 @@
{
"semantics": [
{
"label": "問題簡介",
"fields": [
{
"label": "顯示簡介"
},
{
"label": "標題",
"description": "標題將顯示在簡介內容中."
},
{
"label": "簡介文字",
"description": "文字將顯示於問題開始進行前."
},
{
"label": "開始功能鈕名稱",
"default": "開始測驗"
},
{
"label": "背景圖示",
"description": "選填。可選擇一張圖像做為簡介的背景畫面."
}
]
},
{
"label": "背景圖示",
"description": "選填。可選擇一張圖像做為問題集的畫面背景."
},
{
"label": "進度指示",
"description": "設定問題進度顯示樣式.",
"options": [
{
"label": "文字"
},
{
"label": "點狀"
}
]
},
{
"label": "通過率",
"description": "通過測驗所需總分的百分比."
},
{
"label": "問題",
"widgets": [
{
"label": "預設值"
},
{
"label": "文字方式"
}
],
"entity": "問題",
"field": {
"label": "問題類型",
"description": "問題元件."
}
},
{
"label": "測驗之使用界面",
"fields": [
{
"label": "返回功能鈕名稱",
"default": "上一個問題"
},
{
"label": "下一題功能鈕名稱",
"default": "下一個問題"
},
{
"label": "完成功能鈕名稱",
"default": "完成"
},
{
"label": "進度",
"description": "若進度指示選擇以文字方式呈現,則以文字方式顯示.",
"default": "問題:第 @current 題,共 @total 題"
},
{
"label": "跳到某個問題",
"description": "請使用 %d 作為跳題標示,並不是使用問題編號。以 %total 表示總問題數.",
"default": "跳至 %d 問題,共 %total 題"
},
{
"label": "問題之版權標示",
"default": "問題"
},
{
"label": "閱讀器導讀進度",
"description": "使用 @current 及 @total 作為問題的變數",
"default": "第 @current題共 @total 題"
},
{
"label": "未回答問題顯示文字",
"default": "未回答"
},
{
"label": "已回答問題顯示文字",
"default": "已回答"
},
{
"label": "當前問題顯示文字",
"default": "當前問題"
}
]
},
{
"label": "禁用逆向引導",
"description": "勾選本選項後將僅允許在問題集中向前移動"
},
{
"label": "隨機問答",
"description": "啟用隨機顯示問題順序."
},
{
"label": "要顯示的問題數量:",
"description": "可在總問題集中隨機建立一批隨機問答."
},
{
"label": "測驗完成",
"fields": [
{
"label": "顯示結果"
},
{
"label": "顯示查看解法功能鈕"
},
{
"label": "Display retry button"
},
{
"label": "沒有結果顯示資訊",
"description": "當未啟用顯示結果時,結束頁面所顯示的文字",
"default": "完成"
},
{
"label": "回饋標題文字",
"default": "您的測驗結果:",
"description": "當使用者完成作答後所顯示的標題."
},
{
"label": "整體回饋",
"fields": [
{
"widgets": [
{
"label": "預設值"
}
],
"label": "定義任意分數範圍的回饋",
"description": "點擊"新增範圍"功能鈕以添加您所需要的範圍. 例如: 0-20% 低分, 21-91% 平均得分, 91-100% 高分!",
"entity": "範圍",
"field": {
"fields": [
{
"label": "得分範圍"
},
{},
{
"label": "回饋定義的得分範圍",
"placeholder": "填寫回饋"
}
]
}
}
]
},
{
"label": "舊的回饋",
"fields": [
{
"label": "完成測驗後的回饋訊息",
"description": "當使用者完成測驗後,此段文字將顯示於分數的上方."
},
{
"label": "通過測驗",
"description": "當使用者已成功通過測驗時,此段文字將顯示於分數之後."
},
{
"label": "測驗失敗的標題",
"description": "當使用者未通過測驗時,此段文字將顯示於分數的上方."
},
{
"label": "測驗失敗的回饋訊息",
"description": "當使用者未通過測驗時,此段文字將顯示於分數之後."
}
]
},
{
"label": "解法功能鈕名稱",
"default": "查看解法",
"description": "解法功能鈕名稱."
},
{
"label": "重試功能鈕名稱",
"default": "重試",
"description": "重試功能鈕名稱."
},
{
"label": "完成功能鈕名稱",
"default": "完成"
},
{
"label": "在測驗結果前撥放影片"
},
{
"label": "啟用略過影片撥放功能鈕"
},
{
"label": "略過影片撥放功能鈕名稱",
"default": "略過影片"
},
{
"label": "通過測驗影片",
"description": "當使用者通過測驗後所播放的影片."
},
{
"label": "測驗失敗影片",
"description": "當使用者測驗失敗時所播放的影片."
}
]
},
{
"label": "設定"查看解法"和"重試"功能鈕",
"fields": [
{
"label": "顯示”檢查”功能鈕",
"description": "設定此選項後將使問題集中皆顯示”檢查”功能鈕."
},
{
"label": "“查看解法”功能鈕",
"description": "設定此選項後將使問題集中皆顯示”查看解法”功能鈕.",
"options": [
{
"label": "啟用"
},
{
"label": "禁用"
}
]
},
{
"label": "”重試”功能鈕",
"description": "設定此選項後將使問題集中皆顯示”重試”功能鈕.",
"options": [
{
"label": "啟用"
},
{
"label": "禁用"
}
]
}
]
}
]
}

261
language/zh.json Normal file
View File

@ -0,0 +1,261 @@
{
"semantics": [
{
"label": "測驗介紹",
"fields": [
{
"label": "顯示測驗介紹"
},
{
"label": "測驗介紹標題",
"description": "用來顯示在介紹文字的上方。"
},
{
"label": "測驗介紹文字",
"description": "在開始測驗之前顯示有關測驗的介紹文字。"
},
{
"label": "測驗開始按鈕文字",
"default": "測驗開始"
},
{
"label": "測驗介紹背景圖片",
"description": "非必要項,作為測驗介紹區塊背景的圖片。"
}
]
},
{
"label": "問題集背景圖片",
"description": "非必要項,作為問題集區塊背景的圖片。"
},
{
"label": "進度指示樣式",
"description": "問題集的進度指示要呈現的方式。",
"options": [
{
"label": "文字式"
},
{
"label": "圓點式"
}
]
},
{
"label": "通過門檻(%",
"description": "通過測驗的最低標準,單位為百分比。"
},
{
"label": "所有問題",
"widgets": [
{
"label": "視覺模式"
},
{
"label": "文字模式"
}
],
"entity": "問題",
"field": {
"label": "題型",
"description": "從問題類型庫中挑選。"
}
},
{
"label": "測驗介面本地化",
"fields": [
{
"label": "上一題按鈕顯示文字",
"default": "上一題"
},
{
"label": "下一題按鈕顯示文字",
"default": "下一題"
},
{
"label": "完成按鈕顯示文字",
"default": "完成"
},
{
"label": "進度顯示文字",
"description": "若進度指示選擇文字式時顯示的文字。",
"default": "第 @current 題,共 @total 題。"
},
{
"label": "跳至某題顯示文字",
"description": " %d 表示題號,%total 表示總題數",
"default": "%d / %total"
},
{
"label": "題目版權視窗顯示標題",
"default": "題目"
},
{
"label": "報讀器的進度文本",
"description": "用於報讀器上的文本,非顯示用",
"default": "第 @current 題,共 @total 題。"
},
{
"label": "未回答題目顯示文字",
"default": "未回答"
},
{
"label": "已回答題目顯示文字",
"default": "已回答"
},
{
"label": "目前題目顯示文字",
"default": "目前題目"
}
]
},
{
"label": "停用上一題巡覽",
"description": "勾選後,用戶在問題集中只可以觀看下一題,不能返回到上一題。"
},
{
"label": "問題隨機排序",
"description": "勾選後,每次測驗都會重新排列問題的顯示順序。"
},
{
"label": "測驗亂數抽題",
"description": "輸入抽題數量,這樣每次測驗會從問題集總數中隨機的創建一批問題。"
},
{
"label": "測驗結束",
"fields": [
{
"label": "顯示測驗結果"
},
{
"label": "顯示正解按鈕"
},
{
"label": "Display retry button"
},
{
"label": "不顯示測驗結果時的訊息",
"description": "若沒有勾選「顯示測驗結果」,在結束頁面上會顯示的文字。",
"default": "完成了!"
},
{
"label": "測驗回饋標題文字",
"default": "你的測驗結果為:",
"description": "當用戶回答了所有問題後,在結束頁面上會顯示的標題文字。"
},
{
"label": "總結回饋",
"fields": [
{
"widgets": [
{
"label": "預設"
}
],
"label": "為不同分數區間的用戶分別回饋訊息",
"description": "點擊「添加範圍」按鈕,加入你想要的範圍,例如 0%-59% 請加油、60%-79% 再努力、80%-100% 太棒了。",
"entity": "範圍",
"field": {
"fields": [
{
"label": "分數區間"
},
{},
{
"label": "自訂區間回饋訊息",
"placeholder": "填入回饋訊息"
}
]
}
}
]
},
{
"label": "舊的回饋",
"fields": [
{
"label": "測驗通過的標題",
"description": "用戶通過時顯示的標題文字。"
},
{
"label": "測驗通過的注釋",
"description": "用戶通過時在分數之後會顯示的注釋文字。"
},
{
"label": "測驗失敗的標題",
"description": "用戶沒有通過時顯示的標題文字"
},
{
"label": "測驗失敗的注釋",
"description": "用戶沒有通過時在分數之後會顯示的注釋文字。"
}
]
},
{
"label": "顯示正解按鈕的顯示文字",
"default": "顯示正解",
"description": "在顯示正解按鈕上要顯示的文字。"
},
{
"label": "再試一次按鈕的顯示文字",
"default": "再試一次",
"description": "在再試一次按鈕上要顯示的文字。"
},
{
"label": "完成按鈕的顯示文字",
"default": "完成"
},
{
"label": "在測驗結果出現前顯示影片"
},
{
"label": "顯示略過影片的按鈕"
},
{
"label": "略過影片按鈕顯示影片",
"default": "略過影片"
},
{
"label": "測驗成功影片",
"description": "用戶在測驗通過時要播放的影片。"
},
{
"label": "測驗失敗影片",
"description": "用戶在測驗沒有通過時要播放的影片"
}
]
},
{
"label": "核對答案、顯示正解、再試一次的設定",
"fields": [
{
"label": "覆寫「核對答案」按鈕",
"description": "啟用後,則可以為所有問題統一一次顯示核對答案的按鈕。"
},
{
"label": "覆寫「顯示正解」按鈕",
"description": "如果所有問題都設定了「顯示正解」按鈕,會個別單獨顯示這些按鈕。啟用後,則可以統一一次顯示。",
"options": [
{
"label": "啟用"
},
{
"label": "停用"
}
]
},
{
"label": "覆寫「再試一次」按鈕",
"description": "如果所有問題都設定了「再試一次」按鈕,會個別單獨顯示這些按鈕。啟用後,則可以統一一次顯示。",
"options": [
{
"label": "啟用"
},
{
"label": "停用"
}
]
}
]
}
]
}

View File

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

42
presave.js Normal file
View File

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

View File

@ -121,12 +121,12 @@
"importance": "high",
"description": "Library for this question.",
"options": [
"H5P.MultiChoice 1.10",
"H5P.DragQuestion 1.11",
"H5P.Blanks 1.8",
"H5P.MarkTheWords 1.7",
"H5P.DragText 1.6",
"H5P.TrueFalse 1.2"
"H5P.MultiChoice 1.13",
"H5P.DragQuestion 1.13",
"H5P.Blanks 1.11",
"H5P.MarkTheWords 1.9",
"H5P.DragText 1.8",
"H5P.TrueFalse 1.5"
]
}
},
@ -261,6 +261,12 @@
"label": "Display solution button",
"default": true
},
{
"name": "showRetryButton",
"type": "boolean",
"label": "Display retry button",
"default": true
},
{
"name": "noResultMessage",
"type": "text",
@ -470,10 +476,19 @@
{
"name": "override",
"type": "group",
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
"label": "Settings for \"Check\", \"Show solution\" and \"Retry\"",
"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",
@ -481,6 +496,15 @@
"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",
@ -499,6 +523,15 @@
"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",