Merge branch 'release' into stable
commit
4ecc66e34e
|
@ -231,7 +231,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
|
||||||
|
|
||||||
// Set overrides for questions
|
// Set overrides for questions
|
||||||
var override;
|
var override;
|
||||||
if (params.override.showSolutionButton || params.override.retryButton) {
|
if (params.override.showSolutionButton || params.override.retryButton || params.override.checkButton === false) {
|
||||||
override = {};
|
override = {};
|
||||||
if (params.override.showSolutionButton) {
|
if (params.override.showSolutionButton) {
|
||||||
// Force "Show solution" button to be on or off for all interactions
|
// Force "Show solution" button to be on or off for all interactions
|
||||||
|
@ -244,6 +244,11 @@ H5P.QuestionSet = function (options, contentId, contentData) {
|
||||||
override.enableRetry =
|
override.enableRetry =
|
||||||
(params.override.retryButton === 'on' ? true : false);
|
(params.override.retryButton === 'on' ? true : false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (params.override.checkButton === false) {
|
||||||
|
// Force "Check" button to be on or off for all interactions
|
||||||
|
override.enableCheckButton = params.override.checkButton;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1049,6 +1054,13 @@ H5P.QuestionSet = function (options, contentId, contentData) {
|
||||||
this.getCopyrights = function () {
|
this.getCopyrights = function () {
|
||||||
var info = new H5P.ContentCopyrights();
|
var info = new H5P.ContentCopyrights();
|
||||||
|
|
||||||
|
// IntroPage Background
|
||||||
|
if (params.introPage !== undefined && params.introPage.backgroundImage !== undefined && params.introPage.backgroundImage.copyright !== undefined) {
|
||||||
|
var introBackground = new H5P.MediaCopyright(params.introPage.backgroundImage.copyright);
|
||||||
|
introBackground.setThumbnail(new H5P.Thumbnail(H5P.getPath(params.introPage.backgroundImage.path, contentId), params.introPage.backgroundImage.width, params.introPage.backgroundImage.height));
|
||||||
|
info.addMedia(introBackground);
|
||||||
|
}
|
||||||
|
|
||||||
// Background
|
// Background
|
||||||
if (params.backgroundImage !== undefined && params.backgroundImage.copyright !== undefined) {
|
if (params.backgroundImage !== undefined && params.backgroundImage.copyright !== undefined) {
|
||||||
var background = new H5P.MediaCopyright(params.backgroundImage.copyright);
|
var background = new H5P.MediaCopyright(params.backgroundImage.copyright);
|
||||||
|
|
|
@ -38,8 +38,7 @@
|
||||||
{
|
{
|
||||||
"label": "Dots"
|
"label": "Dots"
|
||||||
}
|
}
|
||||||
],
|
]
|
||||||
"default": "dots"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Pass percentage",
|
"label": "Pass percentage",
|
||||||
|
@ -144,7 +143,11 @@
|
||||||
"label": "Overall Feedback",
|
"label": "Overall Feedback",
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
"widgets": [],
|
"widgets": [
|
||||||
|
{
|
||||||
|
"label": "Default"
|
||||||
|
}
|
||||||
|
],
|
||||||
"label": "Define custom feedback for any score range",
|
"label": "Define custom feedback for any score range",
|
||||||
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
||||||
"entity": "range",
|
"entity": "range",
|
||||||
|
@ -221,6 +224,10 @@
|
||||||
{
|
{
|
||||||
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
||||||
"fields": [
|
"fields": [
|
||||||
|
{
|
||||||
|
"label": "Show \"Check\" buttons",
|
||||||
|
"description": "This option determines if the \"Check\" button will be shown for all questions."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"label": "Override \"Show Solution\" button",
|
"label": "Override \"Show Solution\" button",
|
||||||
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
||||||
|
|
|
@ -38,8 +38,7 @@
|
||||||
{
|
{
|
||||||
"label": "Dots"
|
"label": "Dots"
|
||||||
}
|
}
|
||||||
],
|
]
|
||||||
"default":"dots"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Pass percentage",
|
"label": "Pass percentage",
|
||||||
|
@ -145,7 +144,9 @@
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
"widgets": [
|
"widgets": [
|
||||||
|
{
|
||||||
|
"label": "Default"
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"label": "Define custom feedback for any score range",
|
"label": "Define custom feedback for any score range",
|
||||||
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
||||||
|
@ -155,9 +156,7 @@
|
||||||
{
|
{
|
||||||
"label": "Score Range"
|
"label": "Score Range"
|
||||||
},
|
},
|
||||||
{
|
{},
|
||||||
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"label": "Feedback for defined score range",
|
"label": "Feedback for defined score range",
|
||||||
"placeholder": "Fill in the feedback"
|
"placeholder": "Fill in the feedback"
|
||||||
|
@ -225,6 +224,10 @@
|
||||||
{
|
{
|
||||||
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
||||||
"fields": [
|
"fields": [
|
||||||
|
{
|
||||||
|
"label": "Show \"Check\" buttons",
|
||||||
|
"description": "This option determines if the \"Check\" button will be shown for all questions."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"label": "Override \"Show Solution\" button",
|
"label": "Override \"Show Solution\" button",
|
||||||
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
||||||
|
|
|
@ -38,8 +38,7 @@
|
||||||
{
|
{
|
||||||
"label": "النقاط"
|
"label": "النقاط"
|
||||||
}
|
}
|
||||||
],
|
]
|
||||||
"default":"dots"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "نسبة النجاح",
|
"label": "نسبة النجاح",
|
||||||
|
@ -145,7 +144,9 @@
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
"widgets": [
|
"widgets": [
|
||||||
|
{
|
||||||
|
"label": "Default"
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"label": "Define custom feedback for any score range",
|
"label": "Define custom feedback for any score range",
|
||||||
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
||||||
|
@ -155,9 +156,7 @@
|
||||||
{
|
{
|
||||||
"label": "Score Range"
|
"label": "Score Range"
|
||||||
},
|
},
|
||||||
{
|
{},
|
||||||
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"label": "Feedback for defined score range",
|
"label": "Feedback for defined score range",
|
||||||
"placeholder": "Fill in the feedback"
|
"placeholder": "Fill in the feedback"
|
||||||
|
@ -225,6 +224,10 @@
|
||||||
{
|
{
|
||||||
"label": "إعدادات زر \"مشاهدة حل \" وزر \"إعادة المحاولة\" ",
|
"label": "إعدادات زر \"مشاهدة حل \" وزر \"إعادة المحاولة\" ",
|
||||||
"fields": [
|
"fields": [
|
||||||
|
{
|
||||||
|
"label": "Show \"Check\" buttons",
|
||||||
|
"description": "This option determines if the \"Check\" button will be shown for all questions."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"label": "Override \"Show Solution\" button",
|
"label": "Override \"Show Solution\" button",
|
||||||
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
||||||
|
|
|
@ -38,12 +38,11 @@
|
||||||
{
|
{
|
||||||
"label": "Bodovi"
|
"label": "Bodovi"
|
||||||
}
|
}
|
||||||
],
|
]
|
||||||
"default":"dots"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Procenat za uspješan prolaz",
|
"label": "Procenat za uspješan prolaz",
|
||||||
"description":"Procenat tačnih odgovora kao preduvijet da je kviz\/zadatak uspješno završen."
|
"description": "Procenat tačnih odgovora kao preduvijet da je kviz/zadatak uspješno završen."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Pitanja",
|
"label": "Pitanja",
|
||||||
|
@ -145,7 +144,9 @@
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
"widgets": [
|
"widgets": [
|
||||||
|
{
|
||||||
|
"label": "Default"
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"label": "Define custom feedback for any score range",
|
"label": "Define custom feedback for any score range",
|
||||||
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
||||||
|
@ -155,9 +156,7 @@
|
||||||
{
|
{
|
||||||
"label": "Score Range"
|
"label": "Score Range"
|
||||||
},
|
},
|
||||||
{
|
{},
|
||||||
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"label": "Feedback for defined score range",
|
"label": "Feedback for defined score range",
|
||||||
"placeholder": "Fill in the feedback"
|
"placeholder": "Fill in the feedback"
|
||||||
|
@ -225,6 +224,10 @@
|
||||||
{
|
{
|
||||||
"label": "Podešavanje dugmeta \"Prikaži rješenje\" i \"Ponovi\".",
|
"label": "Podešavanje dugmeta \"Prikaži rješenje\" i \"Ponovi\".",
|
||||||
"fields": [
|
"fields": [
|
||||||
|
{
|
||||||
|
"label": "Show \"Check\" buttons",
|
||||||
|
"description": "This option determines if the \"Check\" button will be shown for all questions."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"label": "Poništi dugme \"Prikaži rješenje\"",
|
"label": "Poništi dugme \"Prikaži rješenje\"",
|
||||||
"description": "Ova opcija podešava prikazivanje dugmeta \"Prikaži rješenje\" za sva pitanja ili da bude za svako posebno pitanje konfigurirano.",
|
"description": "Ova opcija podešava prikazivanje dugmeta \"Prikaži rješenje\" za sva pitanja ili da bude za svako posebno pitanje konfigurirano.",
|
||||||
|
|
|
@ -38,8 +38,7 @@
|
||||||
{
|
{
|
||||||
"label": "Dots"
|
"label": "Dots"
|
||||||
}
|
}
|
||||||
],
|
]
|
||||||
"default":"dots"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Percentatge per passar",
|
"label": "Percentatge per passar",
|
||||||
|
@ -145,7 +144,9 @@
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
"widgets": [
|
"widgets": [
|
||||||
|
{
|
||||||
|
"label": "Default"
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"label": "Define custom feedback for any score range",
|
"label": "Define custom feedback for any score range",
|
||||||
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
||||||
|
@ -155,9 +156,7 @@
|
||||||
{
|
{
|
||||||
"label": "Score Range"
|
"label": "Score Range"
|
||||||
},
|
},
|
||||||
{
|
{},
|
||||||
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"label": "Feedback for defined score range",
|
"label": "Feedback for defined score range",
|
||||||
"placeholder": "Fill in the feedback"
|
"placeholder": "Fill in the feedback"
|
||||||
|
@ -225,6 +224,10 @@
|
||||||
{
|
{
|
||||||
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
||||||
"fields": [
|
"fields": [
|
||||||
|
{
|
||||||
|
"label": "Show \"Check\" buttons",
|
||||||
|
"description": "This option determines if the \"Check\" button will be shown for all questions."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"label": "Override \"Show Solution\" button",
|
"label": "Override \"Show Solution\" button",
|
||||||
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
||||||
|
|
|
@ -38,8 +38,7 @@
|
||||||
{
|
{
|
||||||
"label": "Dots"
|
"label": "Dots"
|
||||||
}
|
}
|
||||||
],
|
]
|
||||||
"default":"dots"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Pass percentage",
|
"label": "Pass percentage",
|
||||||
|
@ -145,7 +144,9 @@
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
"widgets": [
|
"widgets": [
|
||||||
|
{
|
||||||
|
"label": "Default"
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"label": "Define custom feedback for any score range",
|
"label": "Define custom feedback for any score range",
|
||||||
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
||||||
|
@ -155,9 +156,7 @@
|
||||||
{
|
{
|
||||||
"label": "Score Range"
|
"label": "Score Range"
|
||||||
},
|
},
|
||||||
{
|
{},
|
||||||
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"label": "Feedback for defined score range",
|
"label": "Feedback for defined score range",
|
||||||
"placeholder": "Fill in the feedback"
|
"placeholder": "Fill in the feedback"
|
||||||
|
@ -225,6 +224,10 @@
|
||||||
{
|
{
|
||||||
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
||||||
"fields": [
|
"fields": [
|
||||||
|
{
|
||||||
|
"label": "Show \"Check\" buttons",
|
||||||
|
"description": "This option determines if the \"Check\" button will be shown for all questions."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"label": "Override \"Show Solution\" button",
|
"label": "Override \"Show Solution\" button",
|
||||||
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
||||||
|
|
|
@ -38,8 +38,7 @@
|
||||||
{
|
{
|
||||||
"label": "Dots"
|
"label": "Dots"
|
||||||
}
|
}
|
||||||
],
|
]
|
||||||
"default":"dots"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Pass percentage",
|
"label": "Pass percentage",
|
||||||
|
@ -145,7 +144,9 @@
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
"widgets": [
|
"widgets": [
|
||||||
|
{
|
||||||
|
"label": "Default"
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"label": "Define custom feedback for any score range",
|
"label": "Define custom feedback for any score range",
|
||||||
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
||||||
|
@ -155,9 +156,7 @@
|
||||||
{
|
{
|
||||||
"label": "Score Range"
|
"label": "Score Range"
|
||||||
},
|
},
|
||||||
{
|
{},
|
||||||
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"label": "Feedback for defined score range",
|
"label": "Feedback for defined score range",
|
||||||
"placeholder": "Fill in the feedback"
|
"placeholder": "Fill in the feedback"
|
||||||
|
@ -225,6 +224,10 @@
|
||||||
{
|
{
|
||||||
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
||||||
"fields": [
|
"fields": [
|
||||||
|
{
|
||||||
|
"label": "Show \"Check\" buttons",
|
||||||
|
"description": "This option determines if the \"Check\" button will be shown for all questions."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"label": "Overskriv \"Vi svar\"-knap",
|
"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.",
|
"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.",
|
||||||
|
|
|
@ -38,8 +38,7 @@
|
||||||
{
|
{
|
||||||
"label": "Punkte"
|
"label": "Punkte"
|
||||||
}
|
}
|
||||||
],
|
]
|
||||||
"default":"dots"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Prozentsatz zum Bestehen",
|
"label": "Prozentsatz zum Bestehen",
|
||||||
|
@ -145,7 +144,9 @@
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
"widgets": [
|
"widgets": [
|
||||||
|
{
|
||||||
|
"label": "Default"
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"label": "Benutzerdefinierte Rückmeldung für jeden Punkte-Bereich definieren",
|
"label": "Benutzerdefinierte Rückmeldung für jeden Punkte-Bereich definieren",
|
||||||
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
||||||
|
@ -155,9 +156,7 @@
|
||||||
{
|
{
|
||||||
"label": "Punkte-Bereich"
|
"label": "Punkte-Bereich"
|
||||||
},
|
},
|
||||||
{
|
{},
|
||||||
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"label": "Feedback for defined score range",
|
"label": "Feedback for defined score range",
|
||||||
"placeholder": "Fill in the feedback"
|
"placeholder": "Fill in the feedback"
|
||||||
|
@ -225,6 +224,10 @@
|
||||||
{
|
{
|
||||||
"label": "Einstellungen für \"Lösung zeigen\"-Button und \"Nochmal\".",
|
"label": "Einstellungen für \"Lösung zeigen\"-Button und \"Nochmal\".",
|
||||||
"fields": [
|
"fields": [
|
||||||
|
{
|
||||||
|
"label": "Show \"Check\" buttons",
|
||||||
|
"description": "This option determines if the \"Check\" button will be shown for all questions."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"label": "Überschreiben des \"Lösungen anzeigen\"-Buttons",
|
"label": "Überschreiben des \"Lösungen anzeigen\"-Buttons",
|
||||||
"description": "Diese Option gibt an, ob der \"Lösung anzeigen\"-Button für alle Fragen angezeigt, ausgeblendet oder für jede Frage individuell konfiguriert wird.",
|
"description": "Diese Option gibt an, ob der \"Lösung anzeigen\"-Button für alle Fragen angezeigt, ausgeblendet oder für jede Frage individuell konfiguriert wird.",
|
||||||
|
|
|
@ -38,8 +38,7 @@
|
||||||
{
|
{
|
||||||
"label": "Dots"
|
"label": "Dots"
|
||||||
}
|
}
|
||||||
],
|
]
|
||||||
"default":"dots"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Pass percentage",
|
"label": "Pass percentage",
|
||||||
|
@ -145,7 +144,9 @@
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
"widgets": [
|
"widgets": [
|
||||||
|
{
|
||||||
|
"label": "Default"
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"label": "Define custom feedback for any score range",
|
"label": "Define custom feedback for any score range",
|
||||||
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
||||||
|
@ -155,9 +156,7 @@
|
||||||
{
|
{
|
||||||
"label": "Score Range"
|
"label": "Score Range"
|
||||||
},
|
},
|
||||||
{
|
{},
|
||||||
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"label": "Feedback for defined score range",
|
"label": "Feedback for defined score range",
|
||||||
"placeholder": "Fill in the feedback"
|
"placeholder": "Fill in the feedback"
|
||||||
|
@ -225,6 +224,10 @@
|
||||||
{
|
{
|
||||||
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
||||||
"fields": [
|
"fields": [
|
||||||
|
{
|
||||||
|
"label": "Show \"Check\" buttons",
|
||||||
|
"description": "This option determines if the \"Check\" button will be shown for all questions."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"label": "Override \"Show Solution\" button",
|
"label": "Override \"Show Solution\" button",
|
||||||
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
||||||
|
|
|
@ -38,8 +38,7 @@
|
||||||
{
|
{
|
||||||
"label": "Dots"
|
"label": "Dots"
|
||||||
}
|
}
|
||||||
],
|
]
|
||||||
"default":"dots"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Pass percentage",
|
"label": "Pass percentage",
|
||||||
|
@ -145,7 +144,9 @@
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
"widgets": [
|
"widgets": [
|
||||||
|
{
|
||||||
|
"label": "Default"
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"label": "Define custom feedback for any score range",
|
"label": "Define custom feedback for any score range",
|
||||||
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
||||||
|
@ -155,9 +156,7 @@
|
||||||
{
|
{
|
||||||
"label": "Score Range"
|
"label": "Score Range"
|
||||||
},
|
},
|
||||||
{
|
{},
|
||||||
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"label": "Feedback for defined score range",
|
"label": "Feedback for defined score range",
|
||||||
"placeholder": "Fill in the feedback"
|
"placeholder": "Fill in the feedback"
|
||||||
|
@ -225,6 +224,10 @@
|
||||||
{
|
{
|
||||||
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
||||||
"fields": [
|
"fields": [
|
||||||
|
{
|
||||||
|
"label": "Show \"Check\" buttons",
|
||||||
|
"description": "This option determines if the \"Check\" button will be shown for all questions."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"label": "Ocultar el botón \"Mostrar solución\"",
|
"label": "Ocultar el botón \"Mostrar solución\"",
|
||||||
"description": "Esta opción determina si el botón \"Mostrar solución\" se muestra en todas las preguntas, se desactiva para todas, o se configura para cada pregunta individualmente.",
|
"description": "Esta opción determina si el botón \"Mostrar solución\" se muestra en todas las preguntas, se desactiva para todas, o se configura para cada pregunta individualmente.",
|
||||||
|
|
|
@ -38,8 +38,7 @@
|
||||||
{
|
{
|
||||||
"label": "Dots"
|
"label": "Dots"
|
||||||
}
|
}
|
||||||
],
|
]
|
||||||
"default":"dots"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Pass percentage",
|
"label": "Pass percentage",
|
||||||
|
@ -145,7 +144,9 @@
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
"widgets": [
|
"widgets": [
|
||||||
|
{
|
||||||
|
"label": "Default"
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"label": "Define custom feedback for any score range",
|
"label": "Define custom feedback for any score range",
|
||||||
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
||||||
|
@ -155,9 +156,7 @@
|
||||||
{
|
{
|
||||||
"label": "Score Range"
|
"label": "Score Range"
|
||||||
},
|
},
|
||||||
{
|
{},
|
||||||
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"label": "Feedback for defined score range",
|
"label": "Feedback for defined score range",
|
||||||
"placeholder": "Fill in the feedback"
|
"placeholder": "Fill in the feedback"
|
||||||
|
@ -225,6 +224,10 @@
|
||||||
{
|
{
|
||||||
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
||||||
"fields": [
|
"fields": [
|
||||||
|
{
|
||||||
|
"label": "Show \"Check\" buttons",
|
||||||
|
"description": "This option determines if the \"Check\" button will be shown for all questions."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"label": "Override \"Show Solution\" button",
|
"label": "Override \"Show Solution\" button",
|
||||||
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
||||||
|
|
|
@ -38,8 +38,7 @@
|
||||||
{
|
{
|
||||||
"label": "Täplät"
|
"label": "Täplät"
|
||||||
}
|
}
|
||||||
],
|
]
|
||||||
"default":"dots"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Läpäisyprosentti",
|
"label": "Läpäisyprosentti",
|
||||||
|
@ -79,12 +78,12 @@
|
||||||
{
|
{
|
||||||
"label": "Edistyminen",
|
"label": "Edistyminen",
|
||||||
"description": "Tekstiä käytetään mikäli tekstimuotoinen edistymisen näyttäminen on valittuna.",
|
"description": "Tekstiä käytetään mikäli tekstimuotoinen edistymisen näyttäminen on valittuna.",
|
||||||
"default":"Kysymys @current\/@total"
|
"default": "Kysymys @current/@total"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Teksti kun hypätään tiettyyn kysymykseen",
|
"label": "Teksti kun hypätään tiettyyn kysymykseen",
|
||||||
"description": "Käytettävissä olevat muuttujat: '%d' kysymyksen numerolle ja %total kysymysten kokonaismäärälle.",
|
"description": "Käytettävissä olevat muuttujat: '%d' kysymyksen numerolle ja %total kysymysten kokonaismäärälle.",
|
||||||
"default":"Kysymys %d\/%total"
|
"default": "Kysymys %d/%total"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Kysymyksen selite tekijänoikeusvalinnoissa",
|
"label": "Kysymyksen selite tekijänoikeusvalinnoissa",
|
||||||
|
@ -93,7 +92,7 @@
|
||||||
{
|
{
|
||||||
"label": "Ruudunlukijan teksti edistymiselle",
|
"label": "Ruudunlukijan teksti edistymiselle",
|
||||||
"description": "Käytettävissä olevat muuttujat: @current ja @total",
|
"description": "Käytettävissä olevat muuttujat: @current ja @total",
|
||||||
"default":"Kysymys @current\/@total"
|
"default": "Kysymys @current/@total"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Teksti vastaamattomalle kysymykselle",
|
"label": "Teksti vastaamattomalle kysymykselle",
|
||||||
|
@ -145,7 +144,9 @@
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
"widgets": [
|
"widgets": [
|
||||||
|
{
|
||||||
|
"label": "Default"
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"label": "Määritä muokattu palaute pisterajojen mukaan.",
|
"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!",
|
"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!",
|
||||||
|
@ -155,9 +156,7 @@
|
||||||
{
|
{
|
||||||
"label": "Pisteraja"
|
"label": "Pisteraja"
|
||||||
},
|
},
|
||||||
{
|
{},
|
||||||
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"label": "Palaute määritellylle pisterajalle",
|
"label": "Palaute määritellylle pisterajalle",
|
||||||
"placeholder": "Kirjoita palaute"
|
"placeholder": "Kirjoita palaute"
|
||||||
|
@ -225,6 +224,10 @@
|
||||||
{
|
{
|
||||||
"label": "Asetukset \"Näytä vastaus\" ja \"Yritä uudelleen\" painikkeille",
|
"label": "Asetukset \"Näytä vastaus\" ja \"Yritä uudelleen\" painikkeille",
|
||||||
"fields": [
|
"fields": [
|
||||||
|
{
|
||||||
|
"label": "Show \"Check\" buttons",
|
||||||
|
"description": "This option determines if the \"Check\" button will be shown for all questions."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"label": "\"Näytä vastaus\"-painike",
|
"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",
|
"description": "Ota käyttöön kaikissa kysymyksissä, ei yhdessäkään, tai jätä tyhjäksi käyttääksesi tehtäväkohtaisia asetuksia",
|
||||||
|
|
|
@ -38,8 +38,7 @@
|
||||||
{
|
{
|
||||||
"label": "Points"
|
"label": "Points"
|
||||||
}
|
}
|
||||||
],
|
]
|
||||||
"default":"dots"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Pourcentage de réussite",
|
"label": "Pourcentage de réussite",
|
||||||
|
@ -145,7 +144,9 @@
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
"widgets": [
|
"widgets": [
|
||||||
|
{
|
||||||
|
"label": "Default"
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"label": "Define custom feedback for any score range",
|
"label": "Define custom feedback for any score range",
|
||||||
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
||||||
|
@ -155,9 +156,7 @@
|
||||||
{
|
{
|
||||||
"label": "Score Range"
|
"label": "Score Range"
|
||||||
},
|
},
|
||||||
{
|
{},
|
||||||
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"label": "Feedback for defined score range",
|
"label": "Feedback for defined score range",
|
||||||
"placeholder": "Fill in the feedback"
|
"placeholder": "Fill in the feedback"
|
||||||
|
@ -225,6 +224,10 @@
|
||||||
{
|
{
|
||||||
"label": "Options pour les boutons \"Montrer la solution\" et \"Recommencer\".",
|
"label": "Options pour les boutons \"Montrer la solution\" et \"Recommencer\".",
|
||||||
"fields": [
|
"fields": [
|
||||||
|
{
|
||||||
|
"label": "Show \"Check\" buttons",
|
||||||
|
"description": "This option determines if the \"Check\" button will be shown for all questions."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"label": "Ecraser le bouton \"Voir la correction\"",
|
"label": "Ecraser le bouton \"Voir la correction\"",
|
||||||
"description": "Cette option détermine si le bouton \"Voir la correction\" sera affiché pour toutes les questions, désactivé pour toutes ou configuré pour chaque question individuellement.",
|
"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.",
|
||||||
|
|
217
language/he.json
217
language/he.json
|
@ -1,166 +1,165 @@
|
||||||
{
|
{
|
||||||
"semantics": [
|
"semantics": [
|
||||||
{
|
{
|
||||||
"label":"Quiz introduction",
|
"label": "מבוא לחידון",
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
"label":"Display introduction"
|
"label": "יש להציג מבוא"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Title",
|
"label": "כותרת",
|
||||||
"description":"This title will be displayed above the introduction text."
|
"description": "כותרת זו תוצג מעל תיאור המבוא"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Introduction text",
|
"label": "תיאור מבוא",
|
||||||
"description":"This text will be displayed before the quiz starts."
|
"description": "תיאור זה יוצג לפני שהחידון מתחיל"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Start button text",
|
"label": "תיאור כפתור ההתחלה ",
|
||||||
"default":"Start Quiz"
|
"default": "התחילו את החידון"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Background image",
|
"label": "תמונת רקע",
|
||||||
"description":"An optional background image for the introduction."
|
"description": "תמונת רקע אפשרית למבוא"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Background image",
|
"label": "תמונת רקע",
|
||||||
"description":"An optional background image for the Question set."
|
"description": "תמונת רקע אפשרית עבור הגדרות השאלה"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Progress indicator",
|
"label": "מחוון התקדמות",
|
||||||
"description":"Question set progress indicator style.",
|
"description": "הגדרות שאלה מסוג מחוון התקדמות",
|
||||||
"options": [
|
"options": [
|
||||||
{
|
{
|
||||||
"label":"Textual"
|
"label": "מילולי"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Dots"
|
"label": "נקודות"
|
||||||
}
|
}
|
||||||
],
|
]
|
||||||
"default":"dots"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Pass percentage",
|
"label": "אחוז נדרש למעבר",
|
||||||
"description":"Percentage of Total score required for passing the quiz."
|
"description": "אחוז ניקוד כללי הנדרש כדי לעבור את החידון."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Questions",
|
"label": "שאלות",
|
||||||
"widgets": [
|
"widgets": [
|
||||||
{
|
{
|
||||||
"label":"Default"
|
"label": "ברירת מחדל"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Textual"
|
"label": "מילולי"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"entity":"question",
|
"entity": "שאלה",
|
||||||
"field": {
|
"field": {
|
||||||
"label":"Question type",
|
"label": "סוג שאלה",
|
||||||
"description":"Library for this question."
|
"description": "ספריה עבור שאלה זו"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Interface texts in quiz",
|
"label": "ממשק תכנים בחידון",
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
"label":"Back button",
|
"label": "כפתור חזרה אחורה",
|
||||||
"default":"Previous question"
|
"default": "שאלה קודמת"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Next button",
|
"label": "כפתור הבא",
|
||||||
"default":"Next question"
|
"default": "שאלה הבאה"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Finish button",
|
"label": "כפתור סיום",
|
||||||
"default":"Finish"
|
"default": "סיום"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Progress text",
|
"label": "תוכן מתקדם",
|
||||||
"description":"Text used if textual progress is selected.",
|
"description": "תוכן שבו נעשה שימוש אם תוכן מתקדם נבחר",
|
||||||
"default":"Question: @current of @total questions"
|
"default": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Label for jumping to a certain question",
|
"label": "תווית עבור קפיצה לשאלה מסוימת",
|
||||||
"description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
|
"description": "יש להשתמש במציין המיקום '% d' במקום במספר השאלה, וב % סה\"כ במקום בסכום הכולל של השאלות.",
|
||||||
"default":"Question %d of %total"
|
"default": "שאלה %d מתוך %total"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Copyright dialog question label",
|
"label": "תווית שאלת שיח זכויות יוצרים",
|
||||||
"default":"Question"
|
"default": "שאלה"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Readspeaker progress",
|
"label": "Readspeaker progress",
|
||||||
"description": "May use @current and @total question variables",
|
"description": "May use @current and @total question variables",
|
||||||
"default":"Question @current of @total"
|
"default": "שאלה @current מתוך @total"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Unanswered question text",
|
"label": "תיאור שאלות של תשובות שלא נענו",
|
||||||
"default":"Unanswered"
|
"default": "לא נענה"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Answered question text",
|
"label": "תיאור שאלה שנענתה",
|
||||||
"default":"Answered"
|
"default": "נענה"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Current question text",
|
"label": "תיאור שאלה נוכחית",
|
||||||
"default":"Current question"
|
"default": "שאלה נוכחית"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Disable backwards navigation",
|
"label": "ניווט קדימה בלבד",
|
||||||
"description":"This option will only allow you to move forward in Question Set"
|
"description": "הגדרה מאפשרת התקדמות ומעבר לשאלה הבאה בלבד."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Randomize questions",
|
"label": "שאלות אקראיות",
|
||||||
"description":"Enable to randomize the order of questions on display."
|
"description": "מאפשר תצוגת סדר השאלות באופן אקראי"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Number of questions to be shown:",
|
"label": "מספר השאלות שיוצגו:",
|
||||||
"description":"Create a randomized batch of questions from the total."
|
"description": "יצירת סדרה של שאלות אקראיות מסך כל השאלות"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Quiz finished",
|
"label": "החידון הסתיים",
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
"label":"Display results"
|
"label": "הציגו תוצאות"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Display solution button"
|
"label": "כפתור הצגת הפתרון"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"No results message",
|
"label": "אין הודעת תוצאות",
|
||||||
"description":"Text displayed on end page when \"Display results\" is disabled",
|
"description": "תוכן מוצג בסוף העמוד כאשר מוצג \"הציגו תוצאות\"",
|
||||||
"default":"Finished"
|
"default": "הסתיים"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Feedback heading",
|
"label": "כותרת המשוב",
|
||||||
"default":"Your result:",
|
"default": "התוצאה שלכם:",
|
||||||
"description":"This heading will be displayed at the end of the quiz when the user has answered all questions."
|
"description": "כותרת זו תוצג בסיום החידון כאשר הנבחן ענה על כל השאלות"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Overall Feedback",
|
"label": "משוב כולל",
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
"widgets": [
|
"widgets": [
|
||||||
|
{
|
||||||
|
"label": "ברירת מחדל"
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"label":"Define custom feedback for any score range",
|
"label": "יש להגדיר משוב מותאם אישית לכל טווח ניקוד",
|
||||||
"description":"Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
"description": "לדוגמא:0-20% ציון לא טוב,21-91% ציון ממוצע,91-100% ציון מעולה!\"",
|
||||||
"entity":"range",
|
"entity": "טווח",
|
||||||
"field": {
|
"field": {
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
"label":"Score Range"
|
"label": "טווח ניקוד"
|
||||||
},
|
},
|
||||||
|
{},
|
||||||
{
|
{
|
||||||
|
"label": "משוב עבור הגדרת טווח ניקוד",
|
||||||
},
|
"placeholder": "יש למלא את המשוב"
|
||||||
{
|
|
||||||
"label":"Feedback for defined score range",
|
|
||||||
"placeholder":"Fill in the feedback"
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -168,84 +167,88 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Old Feedback",
|
"label": "משוב ישן",
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
"label":"Quiz passed greeting",
|
"label": "ברכת הצלחה בחידון",
|
||||||
"description":"This text will be displayed above the score if the user has successfully passed the quiz."
|
"description": "תוכן זה יוצג מעל הניקוד אם הנבחן עבר בהצלחה את החידון"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Passed comment",
|
"label": "הערה עבור הצלחה בחידון ",
|
||||||
"description":"This comment will be displayed after the score if the user has successfully passed the quiz."
|
"description": "הערה זו תוצג מעל הניקוד, אם הנבחן עבר בהצלחה את החידון"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Quiz failed title",
|
"label": "כותרת כשלון בחידון",
|
||||||
"description":"This text will be displayed above the score if the user has failed the quiz."
|
"description": "תוכן זה יוצג מעל הניקוד אם הנבחן נכשל בחידון"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Failed comment",
|
"label": "הערה עבור כשלון בחידון",
|
||||||
"description":"This comment will be displayed after the score if the user has failed the quiz."
|
"description": "הערה זו תוצג מעל הניקוד, אם הנבחן נכשל בחידון"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Solution button label",
|
"label": "\"תווית כפתור \"הפתרון",
|
||||||
"default":"Show solution",
|
"default": "הציגו פתרון",
|
||||||
"description":"Text for the solution button."
|
"description": "\"תוכן עבור כפתור \"הפתרון"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Retry button label",
|
"label": "תווית כפתור נסו שוב",
|
||||||
"default":"Retry",
|
"default": "נסו בשנית",
|
||||||
"description":"Text for the retry button."
|
"description": "\"תוכן עבור כפתור \"נסו שוב"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Finish button text",
|
"label": "\"תוכן כפתור \"סיום",
|
||||||
"default":"Finish"
|
"default": "סיום"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Display video before quiz results"
|
"label": "יש להציג וידאו לפני תוצאות החידון"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Enable skip video button"
|
"label": "הפעילו את הכפתור \"דלגו על הסרטון\""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Skip video button label",
|
"label": "תווית כפתור דלגו על הסרטון",
|
||||||
"default":"Skip video"
|
"default": "דלגו על הוידאו"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Passed video",
|
"label": "וידאו של הצלחה בחידון",
|
||||||
"description":"This video will be played if the user successfully passed the quiz."
|
"description": "וידאו זה יופעל במידה והנבחן יעבור בהצלחה את החידון"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Fail video",
|
"label": "וידאו של כישלון בחידון",
|
||||||
"description":"This video will be played if the user failes the quiz."
|
"description": "וידאו זה יופעל במידה והנבחן יכשל בחידון"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Settings for \"Show solution\" and \"Retry\" buttons",
|
"label": "הגדרות עבור כפתורי \"הציגו פתרון\" ו \"נסו בשנית\"",
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
"label":"Override \"Show Solution\" button",
|
"label": "הציגו כפתורי \"נבחר\" ",
|
||||||
|
"description": "אפשרות זו קובעת אם הכפתור \"נבחר\" יוצג עבור כל השאלות."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "עדכון כפתור \"תצוגת פתרון\"",
|
||||||
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
||||||
"options": [
|
"options": [
|
||||||
{
|
{
|
||||||
"label":"Enabled"
|
"label": "פעיל"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Disabled"
|
"label": "כבוי"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Override \"Retry\" button",
|
"label": "עדכון כפתור \"נסו שוב\"",
|
||||||
"description":"This option determines if the \"Retry\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
"description": "אפשרות זו קובעת אם הכפתור \"נסו שוב\" יוצג עבור כל השאלות, יושבת עבור כל השאלות או יוגדר עבור כל שאלה בנפרד.\n",
|
||||||
"options": [
|
"options": [
|
||||||
{
|
{
|
||||||
"label":"Enabled"
|
"label": "פעיל"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label":"Disabled"
|
"label": "כבוי"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,8 +38,7 @@
|
||||||
{
|
{
|
||||||
"label": "Dots"
|
"label": "Dots"
|
||||||
}
|
}
|
||||||
],
|
]
|
||||||
"default":"dots"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Pass percentage",
|
"label": "Pass percentage",
|
||||||
|
@ -145,7 +144,9 @@
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
"widgets": [
|
"widgets": [
|
||||||
|
{
|
||||||
|
"label": "Default"
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"label": "Define custom feedback for any score range",
|
"label": "Define custom feedback for any score range",
|
||||||
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
||||||
|
@ -155,9 +156,7 @@
|
||||||
{
|
{
|
||||||
"label": "Score Range"
|
"label": "Score Range"
|
||||||
},
|
},
|
||||||
{
|
{},
|
||||||
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"label": "Feedback for defined score range",
|
"label": "Feedback for defined score range",
|
||||||
"placeholder": "Fill in the feedback"
|
"placeholder": "Fill in the feedback"
|
||||||
|
@ -225,6 +224,10 @@
|
||||||
{
|
{
|
||||||
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
||||||
"fields": [
|
"fields": [
|
||||||
|
{
|
||||||
|
"label": "Show \"Check\" buttons",
|
||||||
|
"description": "This option determines if the \"Check\" button will be shown for all questions."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"label": "Override \"Show Solution\" button",
|
"label": "Override \"Show Solution\" button",
|
||||||
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
||||||
|
|
|
@ -38,8 +38,7 @@
|
||||||
{
|
{
|
||||||
"label": "Punti"
|
"label": "Punti"
|
||||||
}
|
}
|
||||||
],
|
]
|
||||||
"default":"dots"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Percentuale di superamento della prova",
|
"label": "Percentuale di superamento della prova",
|
||||||
|
@ -145,7 +144,9 @@
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
"widgets": [
|
"widgets": [
|
||||||
|
{
|
||||||
|
"label": "Default"
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"label": "Definisci un feedback personalizzato per ogni intervallo di punteggio",
|
"label": "Definisci un feedback personalizzato per ogni intervallo di punteggio",
|
||||||
"description": "Esempio: 0-20%, cattivo punteggio; 21-91% punteggio nella media; 91-100% ottimo punteggio!",
|
"description": "Esempio: 0-20%, cattivo punteggio; 21-91% punteggio nella media; 91-100% ottimo punteggio!",
|
||||||
|
@ -155,9 +156,7 @@
|
||||||
{
|
{
|
||||||
"label": "Intervallo di punteggio"
|
"label": "Intervallo di punteggio"
|
||||||
},
|
},
|
||||||
{
|
{},
|
||||||
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"label": "Feedback per un intervallo di punteggio definito",
|
"label": "Feedback per un intervallo di punteggio definito",
|
||||||
"placeholder": "Compila il feedback"
|
"placeholder": "Compila il feedback"
|
||||||
|
@ -225,6 +224,10 @@
|
||||||
{
|
{
|
||||||
"label": "Impostazioni per i pulsanti \"Mostra soluzione\" e \"Riprova\".",
|
"label": "Impostazioni per i pulsanti \"Mostra soluzione\" e \"Riprova\".",
|
||||||
"fields": [
|
"fields": [
|
||||||
|
{
|
||||||
|
"label": "Show \"Check\" buttons",
|
||||||
|
"description": "This option determines if the \"Check\" button will be shown for all questions."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"label": "Sovrascrivi il pulsante Mostra soluzione",
|
"label": "Sovrascrivi il pulsante Mostra soluzione",
|
||||||
"description": "Questa opzione determina se il pulsante \"Mostra soluzione\" sarà visualizzato per tutte le domande, disabilitato per tutti o configurato individualmente per ogni domanda.",
|
"description": "Questa opzione determina se il pulsante \"Mostra soluzione\" sarà visualizzato per tutte le domande, disabilitato per tutti o configurato individualmente per ogni domanda.",
|
||||||
|
|
|
@ -38,8 +38,7 @@
|
||||||
{
|
{
|
||||||
"label": "ドット"
|
"label": "ドット"
|
||||||
}
|
}
|
||||||
],
|
]
|
||||||
"default":"dots"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "合格パーセンテージ",
|
"label": "合格パーセンテージ",
|
||||||
|
@ -79,12 +78,12 @@
|
||||||
{
|
{
|
||||||
"label": "進行状況のテキスト",
|
"label": "進行状況のテキスト",
|
||||||
"description": "テキストによる進行状況を選択した場合に使用するテキスト。",
|
"description": "テキストによる進行状況を選択した場合に使用するテキスト。",
|
||||||
"default":"設問: @current \/ @total"
|
"default": "設問: @current / @total"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "特定の設問にジャンプするラベル",
|
"label": "特定の設問にジャンプするラベル",
|
||||||
"description": "設問番号ではなくプレース ホルダー '%d' を、また設問の全体数ではなく %total を使用する必要があります。",
|
"description": "設問番号ではなくプレース ホルダー '%d' を、また設問の全体数ではなく %total を使用する必要があります。",
|
||||||
"default":"設問 %d \/ %total"
|
"default": "設問 %d / %total"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "著作権ダイアログ設問ラベル",
|
"label": "著作権ダイアログ設問ラベル",
|
||||||
|
@ -93,7 +92,7 @@
|
||||||
{
|
{
|
||||||
"label": "リードスピーカーの進行状況",
|
"label": "リードスピーカーの進行状況",
|
||||||
"description": "@current と @total の設問用変数を使用できます",
|
"description": "@current と @total の設問用変数を使用できます",
|
||||||
"default":"設問 @current \/ @total"
|
"default": "設問 @current / @total"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "未回答の設問テキスト",
|
"label": "未回答の設問テキスト",
|
||||||
|
@ -145,7 +144,9 @@
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
"widgets": [
|
"widgets": [
|
||||||
|
{
|
||||||
|
"label": "Default"
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"label": "ある得点範囲に対して、カスタムフィードバックを定義します。",
|
"label": "ある得点範囲に対して、カスタムフィードバックを定義します。",
|
||||||
"description": "例: 0-20% 低得点、 21-91% 平均点、 91-100% 高得点 !",
|
"description": "例: 0-20% 低得点、 21-91% 平均点、 91-100% 高得点 !",
|
||||||
|
@ -155,9 +156,7 @@
|
||||||
{
|
{
|
||||||
"label": "得点範囲"
|
"label": "得点範囲"
|
||||||
},
|
},
|
||||||
{
|
{},
|
||||||
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"label": "定義した得点範囲に対するフィードバック",
|
"label": "定義した得点範囲に対するフィードバック",
|
||||||
"placeholder": "フィードバックを記入"
|
"placeholder": "フィードバックを記入"
|
||||||
|
@ -225,6 +224,10 @@
|
||||||
{
|
{
|
||||||
"label": "「解を表示」と「リトライ」ボタンの設定",
|
"label": "「解を表示」と「リトライ」ボタンの設定",
|
||||||
"fields": [
|
"fields": [
|
||||||
|
{
|
||||||
|
"label": "Show \"Check\" buttons",
|
||||||
|
"description": "This option determines if the \"Check\" button will be shown for all questions."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"label": "「解を表示」ボタンを上書き",
|
"label": "「解を表示」ボタンを上書き",
|
||||||
"description": "このオプションは、すべての設問に対して「解を表示」ボタンが表示されるか、すべての設問に対して無効になるか、各設問ごとに個別に設定されるかを決定します。",
|
"description": "このオプションは、すべての設問に対して「解を表示」ボタンが表示されるか、すべての設問に対して無効になるか、各設問ごとに個別に設定されるかを決定します。",
|
||||||
|
|
|
@ -38,8 +38,7 @@
|
||||||
{
|
{
|
||||||
"label": "Dots"
|
"label": "Dots"
|
||||||
}
|
}
|
||||||
],
|
]
|
||||||
"default":"dots"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Pass percentage",
|
"label": "Pass percentage",
|
||||||
|
@ -145,7 +144,9 @@
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
"widgets": [
|
"widgets": [
|
||||||
|
{
|
||||||
|
"label": "Default"
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"label": "Define custom feedback for any score range",
|
"label": "Define custom feedback for any score range",
|
||||||
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
||||||
|
@ -155,9 +156,7 @@
|
||||||
{
|
{
|
||||||
"label": "Score Range"
|
"label": "Score Range"
|
||||||
},
|
},
|
||||||
{
|
{},
|
||||||
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"label": "Feedback for defined score range",
|
"label": "Feedback for defined score range",
|
||||||
"placeholder": "Fill in the feedback"
|
"placeholder": "Fill in the feedback"
|
||||||
|
@ -225,6 +224,10 @@
|
||||||
{
|
{
|
||||||
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
||||||
"fields": [
|
"fields": [
|
||||||
|
{
|
||||||
|
"label": "Show \"Check\" buttons",
|
||||||
|
"description": "This option determines if the \"Check\" button will be shown for all questions."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"label": "Override \"Show Solution\" button",
|
"label": "Override \"Show Solution\" button",
|
||||||
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
||||||
|
|
|
@ -38,8 +38,7 @@
|
||||||
{
|
{
|
||||||
"label": "Prikker"
|
"label": "Prikker"
|
||||||
}
|
}
|
||||||
],
|
]
|
||||||
"default":"dots"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Krav for å bestå",
|
"label": "Krav for å bestå",
|
||||||
|
@ -145,7 +144,9 @@
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
"widgets": [
|
"widgets": [
|
||||||
|
{
|
||||||
|
"label": "Default"
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"label": "Spesifiser en egendefinert tilbakemelding for et poengintervall",
|
"label": "Spesifiser en egendefinert tilbakemelding for et poengintervall",
|
||||||
"description": "Eksempel: 0-20% dårlig poengsum, 21-91% gjennomsnittlig poengsum, 91-100% God poengsum!",
|
"description": "Eksempel: 0-20% dårlig poengsum, 21-91% gjennomsnittlig poengsum, 91-100% God poengsum!",
|
||||||
|
@ -155,9 +156,7 @@
|
||||||
{
|
{
|
||||||
"label": "Poengintervall"
|
"label": "Poengintervall"
|
||||||
},
|
},
|
||||||
{
|
{},
|
||||||
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"label": "Tilbakemelding for spesifisert poengintervall",
|
"label": "Tilbakemelding for spesifisert poengintervall",
|
||||||
"placeholder": "Fyll inn tilbakemelding"
|
"placeholder": "Fyll inn tilbakemelding"
|
||||||
|
@ -225,6 +224,10 @@
|
||||||
{
|
{
|
||||||
"label": "Innstillinger for «Fasit»- og «Prøv igjen»-knapp",
|
"label": "Innstillinger for «Fasit»- og «Prøv igjen»-knapp",
|
||||||
"fields": [
|
"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",
|
"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.",
|
"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.",
|
||||||
|
|
|
@ -38,8 +38,7 @@
|
||||||
{
|
{
|
||||||
"label": "Dots"
|
"label": "Dots"
|
||||||
}
|
}
|
||||||
],
|
]
|
||||||
"default":"dots"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Slagingspercentage",
|
"label": "Slagingspercentage",
|
||||||
|
@ -145,7 +144,9 @@
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
"widgets": [
|
"widgets": [
|
||||||
|
{
|
||||||
|
"label": "Default"
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"label": "Define custom feedback for any score range",
|
"label": "Define custom feedback for any score range",
|
||||||
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
||||||
|
@ -155,9 +156,7 @@
|
||||||
{
|
{
|
||||||
"label": "Score Range"
|
"label": "Score Range"
|
||||||
},
|
},
|
||||||
{
|
{},
|
||||||
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"label": "Feedback for defined score range",
|
"label": "Feedback for defined score range",
|
||||||
"placeholder": "Fill in the feedback"
|
"placeholder": "Fill in the feedback"
|
||||||
|
@ -225,6 +224,10 @@
|
||||||
{
|
{
|
||||||
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
||||||
"fields": [
|
"fields": [
|
||||||
|
{
|
||||||
|
"label": "Show \"Check\" buttons",
|
||||||
|
"description": "This option determines if the \"Check\" button will be shown for all questions."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"label": "\"Toon oplossing\" knop instellen",
|
"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.",
|
"description": "Deze optie bepaalt of de \"Toon oplossing\" knop voor alle vragen wordt getoond, uitgeschakeld of voor iedere vraag afzonderlijk wordt geconfigureerd.",
|
||||||
|
|
|
@ -38,8 +38,7 @@
|
||||||
{
|
{
|
||||||
"label": "Angi fremdrift med prikker"
|
"label": "Angi fremdrift med prikker"
|
||||||
}
|
}
|
||||||
],
|
]
|
||||||
"default":"dots"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Krav for å bestå",
|
"label": "Krav for å bestå",
|
||||||
|
@ -145,7 +144,9 @@
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
"widgets": [
|
"widgets": [
|
||||||
|
{
|
||||||
|
"label": "Default"
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"label": "Define custom feedback for any score range",
|
"label": "Define custom feedback for any score range",
|
||||||
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
||||||
|
@ -155,9 +156,7 @@
|
||||||
{
|
{
|
||||||
"label": "Score Range"
|
"label": "Score Range"
|
||||||
},
|
},
|
||||||
{
|
{},
|
||||||
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"label": "Feedback for defined score range",
|
"label": "Feedback for defined score range",
|
||||||
"placeholder": "Fill in the feedback"
|
"placeholder": "Fill in the feedback"
|
||||||
|
@ -225,6 +224,10 @@
|
||||||
{
|
{
|
||||||
"label": "Innstillinger for «Fasit»- og «Prøv igjen»-knapp",
|
"label": "Innstillinger for «Fasit»- og «Prøv igjen»-knapp",
|
||||||
"fields": [
|
"fields": [
|
||||||
|
{
|
||||||
|
"label": "Vis \"Sjekk\"-knappar",
|
||||||
|
"description": "Dette valget avgjer om «Sjekk»-knappen vil visast for alle spørsmål."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"label": "Overstyr «Vis svar»-knapp",
|
"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.",
|
"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.",
|
||||||
|
|
|
@ -38,8 +38,7 @@
|
||||||
{
|
{
|
||||||
"label": "Dots"
|
"label": "Dots"
|
||||||
}
|
}
|
||||||
],
|
]
|
||||||
"default":"dots"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Pass percentage",
|
"label": "Pass percentage",
|
||||||
|
@ -145,7 +144,9 @@
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
"widgets": [
|
"widgets": [
|
||||||
|
{
|
||||||
|
"label": "Default"
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"label": "Define custom feedback for any score range",
|
"label": "Define custom feedback for any score range",
|
||||||
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
||||||
|
@ -155,9 +156,7 @@
|
||||||
{
|
{
|
||||||
"label": "Score Range"
|
"label": "Score Range"
|
||||||
},
|
},
|
||||||
{
|
{},
|
||||||
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"label": "Feedback for defined score range",
|
"label": "Feedback for defined score range",
|
||||||
"placeholder": "Fill in the feedback"
|
"placeholder": "Fill in the feedback"
|
||||||
|
@ -225,6 +224,10 @@
|
||||||
{
|
{
|
||||||
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
||||||
"fields": [
|
"fields": [
|
||||||
|
{
|
||||||
|
"label": "Show \"Check\" buttons",
|
||||||
|
"description": "This option determines if the \"Check\" button will be shown for all questions."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"label": "Override \"Show Solution\" button",
|
"label": "Override \"Show Solution\" button",
|
||||||
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
||||||
|
|
|
@ -38,8 +38,7 @@
|
||||||
{
|
{
|
||||||
"label": "Dots"
|
"label": "Dots"
|
||||||
}
|
}
|
||||||
],
|
]
|
||||||
"default":"dots"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Pass percentage",
|
"label": "Pass percentage",
|
||||||
|
@ -145,7 +144,9 @@
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
"widgets": [
|
"widgets": [
|
||||||
|
{
|
||||||
|
"label": "Default"
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"label": "Define custom feedback for any score range",
|
"label": "Define custom feedback for any score range",
|
||||||
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
||||||
|
@ -155,9 +156,7 @@
|
||||||
{
|
{
|
||||||
"label": "Score Range"
|
"label": "Score Range"
|
||||||
},
|
},
|
||||||
{
|
{},
|
||||||
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"label": "Feedback for defined score range",
|
"label": "Feedback for defined score range",
|
||||||
"placeholder": "Fill in the feedback"
|
"placeholder": "Fill in the feedback"
|
||||||
|
@ -225,6 +224,10 @@
|
||||||
{
|
{
|
||||||
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
||||||
"fields": [
|
"fields": [
|
||||||
|
{
|
||||||
|
"label": "Show \"Check\" buttons",
|
||||||
|
"description": "This option determines if the \"Check\" button will be shown for all questions."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"label": "Override \"Show Solution\" button",
|
"label": "Override \"Show Solution\" button",
|
||||||
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
||||||
|
|
|
@ -38,8 +38,7 @@
|
||||||
{
|
{
|
||||||
"label": "Dots"
|
"label": "Dots"
|
||||||
}
|
}
|
||||||
],
|
]
|
||||||
"default":"dots"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Pass percentage",
|
"label": "Pass percentage",
|
||||||
|
@ -145,7 +144,9 @@
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
"widgets": [
|
"widgets": [
|
||||||
|
{
|
||||||
|
"label": "Default"
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"label": "Define custom feedback for any score range",
|
"label": "Define custom feedback for any score range",
|
||||||
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
||||||
|
@ -155,9 +156,7 @@
|
||||||
{
|
{
|
||||||
"label": "Score Range"
|
"label": "Score Range"
|
||||||
},
|
},
|
||||||
{
|
{},
|
||||||
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"label": "Feedback for defined score range",
|
"label": "Feedback for defined score range",
|
||||||
"placeholder": "Fill in the feedback"
|
"placeholder": "Fill in the feedback"
|
||||||
|
@ -225,6 +224,10 @@
|
||||||
{
|
{
|
||||||
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
||||||
"fields": [
|
"fields": [
|
||||||
|
{
|
||||||
|
"label": "Show \"Check\" buttons",
|
||||||
|
"description": "This option determines if the \"Check\" button will be shown for all questions."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"label": "Override \"Show Solution\" button",
|
"label": "Override \"Show Solution\" button",
|
||||||
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
||||||
|
|
|
@ -38,8 +38,7 @@
|
||||||
{
|
{
|
||||||
"label": "Dots"
|
"label": "Dots"
|
||||||
}
|
}
|
||||||
],
|
]
|
||||||
"default":"dots"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Pass percentage",
|
"label": "Pass percentage",
|
||||||
|
@ -145,7 +144,9 @@
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
"widgets": [
|
"widgets": [
|
||||||
|
{
|
||||||
|
"label": "Default"
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"label": "Define custom feedback for any score range",
|
"label": "Define custom feedback for any score range",
|
||||||
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
||||||
|
@ -155,9 +156,7 @@
|
||||||
{
|
{
|
||||||
"label": "Score Range"
|
"label": "Score Range"
|
||||||
},
|
},
|
||||||
{
|
{},
|
||||||
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"label": "Feedback for defined score range",
|
"label": "Feedback for defined score range",
|
||||||
"placeholder": "Fill in the feedback"
|
"placeholder": "Fill in the feedback"
|
||||||
|
@ -225,6 +224,10 @@
|
||||||
{
|
{
|
||||||
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
||||||
"fields": [
|
"fields": [
|
||||||
|
{
|
||||||
|
"label": "Show \"Check\" buttons",
|
||||||
|
"description": "This option determines if the \"Check\" button will be shown for all questions."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"label": "Override \"Show Solution\" button",
|
"label": "Override \"Show Solution\" button",
|
||||||
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
||||||
|
|
|
@ -38,8 +38,7 @@
|
||||||
{
|
{
|
||||||
"label": "Dots"
|
"label": "Dots"
|
||||||
}
|
}
|
||||||
],
|
]
|
||||||
"default":"dots"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Pass percentage",
|
"label": "Pass percentage",
|
||||||
|
@ -145,7 +144,9 @@
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
"widgets": [
|
"widgets": [
|
||||||
|
{
|
||||||
|
"label": "Default"
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"label": "Define custom feedback for any score range",
|
"label": "Define custom feedback for any score range",
|
||||||
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
||||||
|
@ -155,9 +156,7 @@
|
||||||
{
|
{
|
||||||
"label": "Score Range"
|
"label": "Score Range"
|
||||||
},
|
},
|
||||||
{
|
{},
|
||||||
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"label": "Feedback for defined score range",
|
"label": "Feedback for defined score range",
|
||||||
"placeholder": "Fill in the feedback"
|
"placeholder": "Fill in the feedback"
|
||||||
|
@ -225,6 +224,10 @@
|
||||||
{
|
{
|
||||||
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
||||||
"fields": [
|
"fields": [
|
||||||
|
{
|
||||||
|
"label": "Show \"Check\" buttons",
|
||||||
|
"description": "This option determines if the \"Check\" button will be shown for all questions."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"label": "Override \"Show Solution\" button",
|
"label": "Override \"Show Solution\" button",
|
||||||
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
||||||
|
|
|
@ -38,8 +38,7 @@
|
||||||
{
|
{
|
||||||
"label": "Dots"
|
"label": "Dots"
|
||||||
}
|
}
|
||||||
],
|
]
|
||||||
"default":"dots"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Pass percentage",
|
"label": "Pass percentage",
|
||||||
|
@ -145,7 +144,9 @@
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
"widgets": [
|
"widgets": [
|
||||||
|
{
|
||||||
|
"label": "Default"
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"label": "Define custom feedback for any score range",
|
"label": "Define custom feedback for any score range",
|
||||||
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
||||||
|
@ -155,9 +156,7 @@
|
||||||
{
|
{
|
||||||
"label": "Score Range"
|
"label": "Score Range"
|
||||||
},
|
},
|
||||||
{
|
{},
|
||||||
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"label": "Feedback for defined score range",
|
"label": "Feedback for defined score range",
|
||||||
"placeholder": "Fill in the feedback"
|
"placeholder": "Fill in the feedback"
|
||||||
|
@ -225,6 +224,10 @@
|
||||||
{
|
{
|
||||||
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
||||||
"fields": [
|
"fields": [
|
||||||
|
{
|
||||||
|
"label": "Show \"Check\" buttons",
|
||||||
|
"description": "This option determines if the \"Check\" button will be shown for all questions."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"label": "Override \"Show Solution\" button",
|
"label": "Override \"Show Solution\" button",
|
||||||
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
||||||
|
|
|
@ -38,8 +38,7 @@
|
||||||
{
|
{
|
||||||
"label": "Dots"
|
"label": "Dots"
|
||||||
}
|
}
|
||||||
],
|
]
|
||||||
"default":"dots"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Geçiş yüzdesi",
|
"label": "Geçiş yüzdesi",
|
||||||
|
@ -145,7 +144,9 @@
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
"widgets": [
|
"widgets": [
|
||||||
|
{
|
||||||
|
"label": "Default"
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"label": "Define custom feedback for any score range",
|
"label": "Define custom feedback for any score range",
|
||||||
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
||||||
|
@ -155,9 +156,7 @@
|
||||||
{
|
{
|
||||||
"label": "Score Range"
|
"label": "Score Range"
|
||||||
},
|
},
|
||||||
{
|
{},
|
||||||
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"label": "Feedback for defined score range",
|
"label": "Feedback for defined score range",
|
||||||
"placeholder": "Fill in the feedback"
|
"placeholder": "Fill in the feedback"
|
||||||
|
@ -225,6 +224,10 @@
|
||||||
{
|
{
|
||||||
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
||||||
"fields": [
|
"fields": [
|
||||||
|
{
|
||||||
|
"label": "Show \"Check\" buttons",
|
||||||
|
"description": "This option determines if the \"Check\" button will be shown for all questions."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"label": "Override \"Show Solution\" button",
|
"label": "Override \"Show Solution\" button",
|
||||||
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
||||||
|
|
|
@ -38,8 +38,7 @@
|
||||||
{
|
{
|
||||||
"label": "Dots"
|
"label": "Dots"
|
||||||
}
|
}
|
||||||
],
|
]
|
||||||
"default":"dots"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Pass percentage",
|
"label": "Pass percentage",
|
||||||
|
@ -145,7 +144,9 @@
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
"widgets": [
|
"widgets": [
|
||||||
|
{
|
||||||
|
"label": "Default"
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"label": "Define custom feedback for any score range",
|
"label": "Define custom feedback for any score range",
|
||||||
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
||||||
|
@ -155,9 +156,7 @@
|
||||||
{
|
{
|
||||||
"label": "Score Range"
|
"label": "Score Range"
|
||||||
},
|
},
|
||||||
{
|
{},
|
||||||
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"label": "Feedback for defined score range",
|
"label": "Feedback for defined score range",
|
||||||
"placeholder": "Fill in the feedback"
|
"placeholder": "Fill in the feedback"
|
||||||
|
@ -225,6 +224,10 @@
|
||||||
{
|
{
|
||||||
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
||||||
"fields": [
|
"fields": [
|
||||||
|
{
|
||||||
|
"label": "Show \"Check\" buttons",
|
||||||
|
"description": "This option determines if the \"Check\" button will be shown for all questions."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"label": "Override \"Show Solution\" button",
|
"label": "Override \"Show Solution\" button",
|
||||||
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
||||||
|
|
|
@ -0,0 +1,258 @@
|
||||||
|
{
|
||||||
|
"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": "沒有結果顯示資訊",
|
||||||
|
"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": "禁用"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -4,7 +4,7 @@
|
||||||
"contentType": "question",
|
"contentType": "question",
|
||||||
"majorVersion": 1,
|
"majorVersion": 1,
|
||||||
"minorVersion": 13,
|
"minorVersion": 13,
|
||||||
"patchVersion": 3,
|
"patchVersion": 4,
|
||||||
"embedTypes": [
|
"embedTypes": [
|
||||||
"iframe"
|
"iframe"
|
||||||
],
|
],
|
||||||
|
@ -64,6 +64,11 @@
|
||||||
"machineName": "H5PEditor.QuestionSetTextualEditor",
|
"machineName": "H5PEditor.QuestionSetTextualEditor",
|
||||||
"majorVersion": 1,
|
"majorVersion": 1,
|
||||||
"minorVersion": 2
|
"minorVersion": 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"machineName": "H5PEditor.ShowWhen",
|
||||||
|
"majorVersion": 1,
|
||||||
|
"minorVersion": 0
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
|
@ -470,10 +470,19 @@
|
||||||
{
|
{
|
||||||
"name": "override",
|
"name": "override",
|
||||||
"type": "group",
|
"type": "group",
|
||||||
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
"label": "Settings for \"Check\", \"Show solution\" and \"Retry\"",
|
||||||
"importance": "low",
|
"importance": "low",
|
||||||
"optional": true,
|
"optional": true,
|
||||||
"fields": [
|
"fields": [
|
||||||
|
{
|
||||||
|
"name": "checkButton",
|
||||||
|
"type": "boolean",
|
||||||
|
"label": "Show \"Check\" buttons",
|
||||||
|
"importance": "low",
|
||||||
|
"description": "This option determines if the \"Check\" button will be shown for all questions.",
|
||||||
|
"optional": true,
|
||||||
|
"default": true
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "showSolutionButton",
|
"name": "showSolutionButton",
|
||||||
"type": "select",
|
"type": "select",
|
||||||
|
@ -481,6 +490,15 @@
|
||||||
"importance": "low",
|
"importance": "low",
|
||||||
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
||||||
"optional": true,
|
"optional": true,
|
||||||
|
"widget": "showWhen",
|
||||||
|
"showWhen": {
|
||||||
|
"rules": [
|
||||||
|
{
|
||||||
|
"field": "checkButton",
|
||||||
|
"equals": true
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
"options": [
|
"options": [
|
||||||
{
|
{
|
||||||
"value": "on",
|
"value": "on",
|
||||||
|
@ -499,6 +517,15 @@
|
||||||
"importance": "low",
|
"importance": "low",
|
||||||
"description": "This option determines if the \"Retry\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
"description": "This option determines if the \"Retry\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
||||||
"optional": true,
|
"optional": true,
|
||||||
|
"widget": "showWhen",
|
||||||
|
"showWhen": {
|
||||||
|
"rules": [
|
||||||
|
{
|
||||||
|
"field": "checkButton",
|
||||||
|
"equals": true
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
"options": [
|
"options": [
|
||||||
{
|
{
|
||||||
"value": "on",
|
"value": "on",
|
||||||
|
|
Loading…
Reference in New Issue