Compare commits
87 Commits
set-xapi-d
...
master
Author | SHA1 | Date |
---|---|---|
Ravi Majithia | 058a129a45 | |
Paal Joergensen | dad9bbe937 | |
Paal Joergensen | 3ab3eea1c8 | |
Paal Joergensen | b1d8e19468 | |
Pål Jørgensen | 48a8e6c669 | |
Weblate | 6e0d812720 | |
Pål Jørgensen | e15e4a4daf | |
Pål Jørgensen | dc0d39f12f | |
Thomas Marstrander | 810f202f4b | |
Antonio Aneiros | 8540679578 | |
Antonio Aneiros | 99a0220b4e | |
Weblate | 7cf3ae0170 | |
Weblate | f5423f34e6 | |
Pål Jørgensen | 3e5bd5d568 | |
Pål Jørgensen | c3426a9975 | |
Murat ALTUN | 980136e2a9 | |
Pål Jørgensen | 76bf1555c0 | |
Frode Petterson | e941f693cd | |
Pål Jørgensen | d0dc718ff6 | |
Pål Jørgensen | ff15db5272 | |
Mahdi SARMADI RAD | 321d3ee653 | |
Weblate | 77ac24da52 | |
Pål Jørgensen | e05901c1e3 | |
Pål Jørgensen | df010dee55 | |
Pål Jørgensen | 13c4a2a83d | |
Mahdi SARMADI RAD | 9d42b63911 | |
glisapn90 | 8a5bb76afb | |
Weblate | 83e680ecf3 | |
Pål Jørgensen | 57ef531abd | |
Weblate | 1fe6a856df | |
Weblate | 54eab8babe | |
Pål Jørgensen | e390121f70 | |
Weblate | 82c43e4a26 | |
Pål Jørgensen | 2bafed5574 | |
Weblate | e061b77f2b | |
Weblate | 7aa5d0eeee | |
Weblate | 1ae0769874 | |
Weblate | e35833c47b | |
Weblate | bcb91461b9 | |
Weblate | c0e6ee34d5 | |
Paal Joergensen | 2a6250ab3a | |
Erik Langhaug | 6dd6d197e2 | |
Pål Jørgensen | 79ff4d71eb | |
Antonio Aneiros | 8a4c1f84f1 | |
Paal Joergensen | b55096aa31 | |
Paal Joergensen | c49d899e48 | |
Paal Joergensen | 785bc27255 | |
Paal Joergensen | 9aa3d89d0a | |
Pål Jørgensen | ab64ac40f3 | |
Weblate | 64d28f204d | |
Weblate | 055b428f21 | |
Weblate | bc88381ec4 | |
Pål Jørgensen | 4e3417bc0f | |
sdif-diba | 1133d1b13f | |
Pål Jørgensen | 56535b321e | |
Weblate | d823ba2b59 | |
Pål Jørgensen | 872c288f21 | |
Pål Jørgensen | 90e892bfbe | |
Jeonghun Oh | e167b03144 | |
Weblate | e89618c824 | |
Paal Joergensen | 5fa83227f9 | |
Paal Joergensen | cc50d1adbb | |
Paal Joergensen | 81d1df4727 | |
Paal Joergensen | 9184f1f092 | |
Pål Jørgensen | 37a6871659 | |
Pål Jørgensen | b5d9234f07 | |
sokunthearithmakara | 9fae0b8c53 | |
viragom | 97b0c667ee | |
Pål Jørgensen | 85c05f1111 | |
Idamare | 6a1450c3dc | |
Paal Joergensen | f4f101608e | |
Paal Joergensen | 6149991aaa | |
Paal Joergensen | 344d191371 | |
Paal Joergensen | cdefdba93a | |
Pål Jørgensen | 37c87b1ada | |
Pål Jørgensen | f06f77f7d8 | |
Germán Valero | 3a7be5754a | |
Germán Valero | 57731cbdbc | |
Pål Jørgensen | e45a0e73c1 | |
Xtractor Interactive AB | bdb4428f37 | |
Pål Jørgensen | 9af578bac6 | |
Darren Kearney | b4435ec604 | |
Paal Joergensen | 7ada8795b6 | |
Pål Jørgensen | 051e241217 | |
Bohumil Havel | f1df6bfa8f | |
Pål Jørgensen | 95b727eb51 | |
CEI | e12916211c |
|
@ -247,3 +247,9 @@
|
|||
.h5p-no-frame .questionset .h5p-question > *:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
/* Hide the fullscreen button rendered by H5P.DragQuestion */
|
||||
.questionset .h5p-question.h5p-dragquestion .h5p-my-fullscreen-button-enter,
|
||||
.questionset .h5p-question.h5p-dragquestion .h5p-my-fullscreen-button-exit {
|
||||
display: none;
|
||||
}
|
||||
|
|
|
@ -35,6 +35,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
|
|||
prevButton: 'Previous question',
|
||||
nextButton: 'Next question',
|
||||
finishButton: 'Finish',
|
||||
submitButton: 'Submit',
|
||||
textualProgress: 'Question: @current of @total questions',
|
||||
jumpToQuestion: 'Question %d of %total',
|
||||
questionLabel: 'Question',
|
||||
|
@ -55,6 +56,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
|
|||
},
|
||||
overallFeedback: [],
|
||||
finishButtonText: 'Finish',
|
||||
submitButtonText: 'Submit',
|
||||
solutionButtonText: 'Show solution',
|
||||
retryButtonText: 'Retry',
|
||||
showAnimations: false,
|
||||
|
@ -65,6 +67,8 @@ H5P.QuestionSet = function (options, contentId, contentData) {
|
|||
override: {},
|
||||
disableBackwardsNavigation: false
|
||||
};
|
||||
this.isSubmitting = contentData
|
||||
&& (contentData.isScoringEnabled || contentData.isReportingEnabled);
|
||||
var params = $.extend(true, {}, defaults, options);
|
||||
|
||||
var texttemplate =
|
||||
|
@ -464,10 +468,6 @@ H5P.QuestionSet = function (options, contentId, contentData) {
|
|||
questionInstances[i].showButton('prev');
|
||||
}
|
||||
|
||||
if (typeof questionInstances[i].setXAPIData === 'function') {
|
||||
continue; // TODO: Temporary until we implement support setXAPIData...
|
||||
}
|
||||
|
||||
try {
|
||||
// Do not read answers
|
||||
questionInstances[i].toggleReadSpeaker(true);
|
||||
|
@ -500,7 +500,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
|
|||
* Used for contracts with integrated content.
|
||||
* @public
|
||||
*/
|
||||
var resetTask = function () {
|
||||
this.resetTask = function () {
|
||||
|
||||
// Clear previous state to ensure questions are created cleanly
|
||||
contentData.previousState = [];
|
||||
|
@ -754,7 +754,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
|
|||
message: params.endGame.showResultPage ? params.endGame.message : params.endGame.noResultMessage,
|
||||
comment: params.endGame.showResultPage ? (success ? params.endGame.oldFeedback.successGreeting : params.endGame.oldFeedback.failGreeting) : undefined,
|
||||
resulttext: params.endGame.showResultPage ? (success ? params.endGame.oldFeedback.successComment : params.endGame.oldFeedback.failComment) : undefined,
|
||||
finishButtonText: params.endGame.finishButtonText,
|
||||
finishButtonText: (self.isSubmitting) ? params.endGame.submitButtonText : params.endGame.finishButtonText,
|
||||
solutionButtonText: params.endGame.solutionButtonText,
|
||||
retryButtonText: params.endGame.retryButtonText
|
||||
};
|
||||
|
@ -770,7 +770,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
|
|||
_showQuestion(params.initialQuestion);
|
||||
});
|
||||
hookUpButton('.qs-retrybutton', function () {
|
||||
resetTask();
|
||||
self.resetTask();
|
||||
$myDom.children().hide();
|
||||
|
||||
var $intro = $('.intro-page', $myDom);
|
||||
|
@ -877,7 +877,8 @@ H5P.QuestionSet = function (options, contentId, contentData) {
|
|||
registerImageLoadedListener(question);
|
||||
|
||||
// Add finish button
|
||||
question.addButton('finish', params.texts.finishButton,
|
||||
const finishButtonText = (self.isSubmitting) ? params.texts.submitButton : params.endGame.finishButton
|
||||
question.addButton('finish', finishButtonText,
|
||||
moveQuestion.bind(this, 1), false);
|
||||
|
||||
// Add next button
|
||||
|
@ -1246,47 +1247,16 @@ H5P.QuestionSet = function (options, contentId, contentData) {
|
|||
};
|
||||
|
||||
/**
|
||||
*
|
||||
* Get context data.
|
||||
* Contract used for confusion report.
|
||||
*/
|
||||
this.setXAPIData = function (data) {
|
||||
if (!data.subContentId || data.subContentId === this.subContentId) {
|
||||
// This is our data
|
||||
|
||||
if (data.success === false) {
|
||||
// Unable to determine data
|
||||
console.error('Error error error 1 2 3');
|
||||
return;
|
||||
}
|
||||
|
||||
if (data.type === 'feedback') {
|
||||
// Set score?
|
||||
}
|
||||
else if (data.type === 'solution') {
|
||||
// Nothing?
|
||||
}
|
||||
|
||||
// Check if we have any data for our children
|
||||
if (data.children && data.children.length === questionInstances.length) {
|
||||
for (let i = 0; i < questionInstances.length; i++) {
|
||||
if (typeof questionInstances[i].setXAPIData === 'function') {
|
||||
questionInstances[i].setXAPIData(data.children[i])
|
||||
}
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
else {
|
||||
// Someone elses data, let's try to find them.
|
||||
for (let i = 0; i < questionInstances.length; i++) {
|
||||
if (typeof questionInstances[i].setXAPIData === 'function') {
|
||||
if (questionInstances[i].setXAPIData(data)) {
|
||||
return true; // Let parent know we found the owner of the data
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
this.getContext = function () {
|
||||
// Get question index and add 1, count starts from 0
|
||||
return {
|
||||
type: 'question',
|
||||
value: (currentQuestion + 1)
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
H5P.QuestionSet.prototype = Object.create(H5P.EventDispatcher.prototype);
|
||||
|
|
|
@ -75,6 +75,10 @@
|
|||
"label": "Finish button",
|
||||
"default": "Finish"
|
||||
},
|
||||
{
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Progress text",
|
||||
"description": "Text used if textual progress is selected.",
|
||||
|
@ -204,6 +208,10 @@
|
|||
"label": "Finish button text",
|
||||
"default": "Finish"
|
||||
},
|
||||
{
|
||||
"label": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Display video before quiz results"
|
||||
},
|
||||
|
|
224
language/af.json
224
language/af.json
|
@ -1,168 +1,172 @@
|
|||
{
|
||||
"semantics": [
|
||||
{
|
||||
"label": "Quiz introduction",
|
||||
"label": "Vasvra inleiding",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Display introduction"
|
||||
"label": "Vertoon inleiding"
|
||||
},
|
||||
{
|
||||
"label": "Title",
|
||||
"description": "This title will be displayed above the introduction text."
|
||||
"label": "Titel",
|
||||
"description": "Hierdie titel sal bo die inleidende teks vertoon word."
|
||||
},
|
||||
{
|
||||
"label": "Introduction text",
|
||||
"description": "This text will be displayed before the quiz starts."
|
||||
"label": "Inleidende teks",
|
||||
"description": "Hierdie teks sal vertoon word voor die vasvra begin."
|
||||
},
|
||||
{
|
||||
"label": "Start button text",
|
||||
"default": "Start Quiz"
|
||||
"label": "Beginknoppie teks",
|
||||
"default": "Begin vasvra"
|
||||
},
|
||||
{
|
||||
"label": "Background image",
|
||||
"description": "An optional background image for the introduction."
|
||||
"label": "Agtergrondprent",
|
||||
"description": "'n Opsionele agtergrondprent vir die inleiding."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Background image",
|
||||
"description": "An optional background image for the Question set."
|
||||
"label": "Agtergrondprent",
|
||||
"description": "'n Vrywillige agtergrondprent vir die vraagstel."
|
||||
},
|
||||
{
|
||||
"label": "Progress indicator",
|
||||
"description": "Question set progress indicator style.",
|
||||
"label": "Vorderingaanwyser",
|
||||
"description": "Vraagstel vorderingaanwyser styl.",
|
||||
"options": [
|
||||
{
|
||||
"label": "Textual"
|
||||
"label": "Tekstueel"
|
||||
},
|
||||
{
|
||||
"label": "Dots"
|
||||
"label": "Kolletjies"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Pass percentage",
|
||||
"description": "Percentage of Total score required for passing the quiz."
|
||||
"label": "Slaag persentasie",
|
||||
"description": "Persentasie van totale telling wat vereis word om vasvra te slaag."
|
||||
},
|
||||
{
|
||||
"label": "Questions",
|
||||
"label": "Vrae",
|
||||
"widgets": [
|
||||
{
|
||||
"label": "Default"
|
||||
"label": "Verstek"
|
||||
},
|
||||
{
|
||||
"label": "Textual"
|
||||
"label": "Tekstueel"
|
||||
}
|
||||
],
|
||||
"entity": "question",
|
||||
"entity": "vraag",
|
||||
"field": {
|
||||
"label": "Question type",
|
||||
"description": "Library for this question."
|
||||
"label": "Vraagtipe",
|
||||
"description": "Biblioteek vir hierdie vraag."
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "Interface texts in quiz",
|
||||
"label": "Koppelvlaktekste in vasvra",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Back button",
|
||||
"default": "Previous question"
|
||||
"label": "Terug knoppie",
|
||||
"default": "Vorige vraag"
|
||||
},
|
||||
{
|
||||
"label": "Next button",
|
||||
"default": "Next question"
|
||||
"label": "Volgende knoppie",
|
||||
"default": "Volgende vraag"
|
||||
},
|
||||
{
|
||||
"label": "Finish button",
|
||||
"default": "Finish"
|
||||
"label": "Klaar knoppie",
|
||||
"default": "Klaar"
|
||||
},
|
||||
{
|
||||
"label": "Progress text",
|
||||
"description": "Text used if textual progress is selected.",
|
||||
"default": "Question: @current of @total questions"
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"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": "Vordering teks",
|
||||
"description": "Teks gebruik indien tektuele vordering gekies is.",
|
||||
"default": "Vraag: @current van @total vrae"
|
||||
},
|
||||
{
|
||||
"label": "Copyright dialog question label",
|
||||
"default": "Question"
|
||||
"label": "Etiket om te spring tot 'n bepaalde vraag",
|
||||
"description": "Jy moet die plekhouer '%d' in stede van die vraagnommer, en %total in stede van die totale aantal vrae gebruik.",
|
||||
"default": "Vraag %d van %total"
|
||||
},
|
||||
{
|
||||
"label": "Readspeaker progress",
|
||||
"description": "May use @current and @total question variables",
|
||||
"default": "Question @current of @total"
|
||||
"label": "Kopiereg dialoog vraagetiket",
|
||||
"default": "Vraag"
|
||||
},
|
||||
{
|
||||
"label": "Unanswered question text",
|
||||
"default": "Unanswered"
|
||||
"label": "Spreekleser vordering",
|
||||
"description": "Mag @current en @total vraagveranderlikes gebruik",
|
||||
"default": "Vraag @current uit @total"
|
||||
},
|
||||
{
|
||||
"label": "Answered question text",
|
||||
"default": "Answered"
|
||||
"label": "Onbeantwoorde vraagteks",
|
||||
"default": "Onbeantwoord"
|
||||
},
|
||||
{
|
||||
"label": "Current question text",
|
||||
"default": "Current question"
|
||||
"label": "Beantwoorde vraagteks",
|
||||
"default": "Beantwoord"
|
||||
},
|
||||
{
|
||||
"label": "Huidige vraagteks",
|
||||
"default": "Huidige vraag"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Disable backwards navigation",
|
||||
"description": "This option will only allow you to move forward in Question Set"
|
||||
"label": "Verbied agteruitnavigasie",
|
||||
"description": "Hierdie keuse laat jou slegs toe om vorentoe te beweeg met die vraagstel"
|
||||
},
|
||||
{
|
||||
"label": "Randomize questions",
|
||||
"description": "Enable to randomize the order of questions on display."
|
||||
"label": "Skommel vrae",
|
||||
"description": "Aktiveer ewekansige orde van vrae op vooraansig."
|
||||
},
|
||||
{
|
||||
"label": "Number of questions to be shown:",
|
||||
"description": "Create a randomized batch of questions from the total."
|
||||
"label": "Aantal vrae om te wys:",
|
||||
"description": "Skep 'n ewekansige bondel vrae uit die somtotaal."
|
||||
},
|
||||
{
|
||||
"label": "Quiz finished",
|
||||
"label": "Vasvra klaar",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Display results"
|
||||
"label": "Vertoon uitslae"
|
||||
},
|
||||
{
|
||||
"label": "Display solution button"
|
||||
"label": "Vertoon oplossing knoppie"
|
||||
},
|
||||
{
|
||||
"label": "Display retry button"
|
||||
"label": "Vertoon probeer weer knoppie"
|
||||
},
|
||||
{
|
||||
"label": "No results message",
|
||||
"description": "Text displayed on end page when \"Display results\" is disabled",
|
||||
"default": "Finished"
|
||||
"label": "Geen uitslae boodskap",
|
||||
"description": "Teks word op die eindblad vertoon wanneer 'Vertoonresultate' gedeaktiveer is",
|
||||
"default": "Klaar"
|
||||
},
|
||||
{
|
||||
"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": "Terugvoer opskrif",
|
||||
"default": "Jou uitslae:",
|
||||
"description": "Hierdie opskrif sal aan die einde van die vasvra vertoon wanneer die gebruiker al die vrae beantwoord het."
|
||||
},
|
||||
{
|
||||
"label": "Overall Feedback",
|
||||
"label": "Algehele terugvoer",
|
||||
"fields": [
|
||||
{
|
||||
"widgets": [
|
||||
{
|
||||
"label": "Default"
|
||||
"label": "Verstek"
|
||||
}
|
||||
],
|
||||
"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": "Bepaal verstekterugvoer vir enige reeks tellings",
|
||||
"description": "Voorbeeld: 0-20% Swak telling, 21-91% Gemiddelde telling, 91-100% Uitstekende telling!",
|
||||
"entity": "reeks",
|
||||
"field": {
|
||||
"fields": [
|
||||
{
|
||||
"label": "Score Range"
|
||||
"label": "Telreeks"
|
||||
},
|
||||
{},
|
||||
{
|
||||
"label": "Feedback for defined score range",
|
||||
"placeholder": "Fill in the feedback"
|
||||
"label": "Terugvoer vir gedefinieerde telreeks",
|
||||
"placeholder": "Vul die terugvoer in"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -170,88 +174,92 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"label": "Old Feedback",
|
||||
"label": "Ou terugvoer",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Quiz passed greeting",
|
||||
"description": "This text will be displayed above the score if the user has successfully passed the quiz."
|
||||
"label": "Vasvra geslaag begroeting",
|
||||
"description": "Hierdie teks sal bo die telling vertoon word sodra die gebruiker die vasvra suksesvol geslaag het."
|
||||
},
|
||||
{
|
||||
"label": "Passed comment",
|
||||
"description": "This comment will be displayed after the score if the user has successfully passed the quiz."
|
||||
"label": "Geslaag kommentaar",
|
||||
"description": "Hierdie opmerking sal na die telling vertoon word as die gebruiker die vasvra suksesvol geslaag het."
|
||||
},
|
||||
{
|
||||
"label": "Quiz failed title",
|
||||
"description": "This text will be displayed above the score if the user has failed the quiz."
|
||||
"label": "Vasvra misluk titel",
|
||||
"description": "Hierdie teks sal bo die telling vertoon word as die gebruiker nie die vasvra het nie."
|
||||
},
|
||||
{
|
||||
"label": "Failed comment",
|
||||
"description": "This comment will be displayed after the score if the user has failed the quiz."
|
||||
"label": "Gedruip kommentaar",
|
||||
"description": "Hierdie opmerking sal na die telling vertoon word as die gebruiker die vasvra gedruip het."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Solution button label",
|
||||
"default": "Show solution",
|
||||
"description": "Text for the solution button."
|
||||
"label": "Antwoord knoppie-etiket",
|
||||
"default": "Wys antwoord",
|
||||
"description": "Teks vir die antwoord knoppie."
|
||||
},
|
||||
{
|
||||
"label": "Retry button label",
|
||||
"default": "Retry",
|
||||
"description": "Text for the retry button."
|
||||
"label": "Probeer weer knoppie etiket",
|
||||
"default": "Probeer weer",
|
||||
"description": "Teks vir die probeer weer knoppie."
|
||||
},
|
||||
{
|
||||
"label": "Finish button text",
|
||||
"default": "Finish"
|
||||
"label": "Klaar knoppieteks",
|
||||
"default": "Klaar"
|
||||
},
|
||||
{
|
||||
"label": "Display video before quiz results"
|
||||
"label": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Enable skip video button"
|
||||
"label": "Vertoon video voor vasvra uitslae"
|
||||
},
|
||||
{
|
||||
"label": "Skip video button label",
|
||||
"default": "Skip video"
|
||||
"label": "Aktiveer slaan video oor knoppie"
|
||||
},
|
||||
{
|
||||
"label": "Passed video",
|
||||
"description": "This video will be played if the user successfully passed the quiz."
|
||||
"label": "Slaan video oor etiket",
|
||||
"default": "Slaan video oor"
|
||||
},
|
||||
{
|
||||
"label": "Fail video",
|
||||
"description": "This video will be played if the user fails the quiz."
|
||||
"label": "Video geslaag",
|
||||
"description": "Hierdie video sal gespeel word indien die gebruiker die vasvra geslaag het."
|
||||
},
|
||||
{
|
||||
"label": "Druip video",
|
||||
"description": "Hierdie video sal gespeel word indien die gebruiker die vasvra gedruip het."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
||||
"label": "Instellings vir die \"Wys antwoord\" en \"Probeer weer\" knoppies",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Show \"Check\" buttons",
|
||||
"description": "This option determines if the \"Check\" button will be shown for all questions."
|
||||
"label": "Wys \"Toets\" knoppies",
|
||||
"description": "Hierdie opsie bepaal of die \"Toets\" knoppie vir alle vrae gewys sal word."
|
||||
},
|
||||
{
|
||||
"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": "Oorskry \"Wys oplossing\" knoppie",
|
||||
"description": "Hierdie opsie bepaal of die \"Wys antwoord\" -knoppie vir alle vrae getoon word, vir almal uitgeskakel of afsonderlik vir elke vraag ingestel word.",
|
||||
"options": [
|
||||
{
|
||||
"label": "Enabled"
|
||||
"label": "Aktiveer"
|
||||
},
|
||||
{
|
||||
"label": "Disabled"
|
||||
"label": "Deaktiveer"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"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": "Oorskry \"Probeer weer\" knoppie",
|
||||
"description": "Hierdie opsie bepaal of die \"Probeer weer\" -knoppie vir alle vrae getoon word, vir almal uitgeskakel of afsonderlik vir elke vraag ingestel word.",
|
||||
"options": [
|
||||
{
|
||||
"label": "Enabled"
|
||||
"label": "Aktiveer"
|
||||
},
|
||||
{
|
||||
"label": "Disabled"
|
||||
"label": "Deaktiveer"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
@ -75,6 +75,10 @@
|
|||
"label": "زر الانتهاء",
|
||||
"default": "Finish"
|
||||
},
|
||||
{
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "نص التقدم",
|
||||
"description": "النص المستخدم إذا تم تحديد التقدم نصيا",
|
||||
|
@ -204,6 +208,10 @@
|
|||
"label": "نص زر الانتهاء",
|
||||
"default": "Finish"
|
||||
},
|
||||
{
|
||||
"label": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "عرض الفيديو قبل نتائج المسابقة"
|
||||
},
|
||||
|
|
|
@ -0,0 +1,269 @@
|
|||
{
|
||||
"semantics": [
|
||||
{
|
||||
"label": "Въведение в теста",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Показване на въведение"
|
||||
},
|
||||
{
|
||||
"label": "Заглавие",
|
||||
"description": "Това заглавие ще се показва над въвеждащия текст."
|
||||
},
|
||||
{
|
||||
"label": "Въвеждащ текст",
|
||||
"description": "Този текст ще се показва преди началото на теста."
|
||||
},
|
||||
{
|
||||
"label": "Текст на бутона за начало",
|
||||
"default": "Начало на теста"
|
||||
},
|
||||
{
|
||||
"label": "Фоново изображение",
|
||||
"description": "Незадължително фоново изображение за въведението."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Фоново изображение",
|
||||
"description": "Незадължително фоново изображение за въпросите."
|
||||
},
|
||||
{
|
||||
"label": "Индикатор на напредъка",
|
||||
"description": "Стил за индикатор на напредъка.",
|
||||
"options": [
|
||||
{
|
||||
"label": "Текстов"
|
||||
},
|
||||
{
|
||||
"label": "Точки"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Процент за успешно преминаване",
|
||||
"description": "Процент от Общия брой точки за успешно решение на теста."
|
||||
},
|
||||
{
|
||||
"label": "Въпроси",
|
||||
"widgets": [
|
||||
{
|
||||
"label": "По подразбиране"
|
||||
},
|
||||
{
|
||||
"label": "Текстов"
|
||||
}
|
||||
],
|
||||
"entity": "въпрос",
|
||||
"field": {
|
||||
"label": "Тип въпрос",
|
||||
"description": "Бибилиотека за този въпрос."
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "Текстове в теста",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Назад",
|
||||
"default": "Предишен въпрос"
|
||||
},
|
||||
{
|
||||
"label": "Напред",
|
||||
"default": "Следващ въпрос"
|
||||
},
|
||||
{
|
||||
"label": "Бутон Край",
|
||||
"default": "Край"
|
||||
},
|
||||
{
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Текст за напредък",
|
||||
"description": "Текст, който се използва в случай, че е избран да се показва напредъка.",
|
||||
"default": "Въпрос: @current от @total въпроси"
|
||||
},
|
||||
{
|
||||
"label": "Етикет за преминаване към определен въпрос",
|
||||
"description": "Трябва да използвате '%d' вместо номер на въпрос и %total вместо общ брой въпроси.",
|
||||
"default": "Въпрос %d от %total"
|
||||
},
|
||||
{
|
||||
"label": "Етикет за диалогов прозорец Copyright",
|
||||
"default": "Въпрос"
|
||||
},
|
||||
{
|
||||
"label": "Readspeaker напредък",
|
||||
"description": "Може да използвате променливи @current и @total за въпросите",
|
||||
"default": "Въпрос @current от @total"
|
||||
},
|
||||
{
|
||||
"label": "Текст за нерешен въпрос",
|
||||
"default": "Не е даден отговор"
|
||||
},
|
||||
{
|
||||
"label": "Текст за решен въпрос",
|
||||
"default": "Даден е отговор"
|
||||
},
|
||||
{
|
||||
"label": "Текст за настоящ въпрос",
|
||||
"default": "Настоящ въпрос"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Деактивиране на придвижването назад",
|
||||
"description": "Тази настройка позволява придвижването само напред в теста"
|
||||
},
|
||||
{
|
||||
"label": "Разбъркване на въпросите",
|
||||
"description": "Позволява разбъркването на въпросите при показване."
|
||||
},
|
||||
{
|
||||
"label": "Брой въпроси, които да бъдат показани:",
|
||||
"description": "Създава група от произволно подбрани въпроси."
|
||||
},
|
||||
{
|
||||
"label": "Край на теста",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Покажи резултати"
|
||||
},
|
||||
{
|
||||
"label": "Бутон Покажи решение"
|
||||
},
|
||||
{
|
||||
"label": "Display retry button"
|
||||
},
|
||||
{
|
||||
"label": "Няма съобщение за резултати",
|
||||
"description": "Текст, който ще се показва на последната страница, когато \"Покажи резултати\" не е активирано",
|
||||
"default": "Завършен"
|
||||
},
|
||||
{
|
||||
"label": "Заглавие за обратна връзка",
|
||||
"default": "Вашият резултат:",
|
||||
"description": "Това заглавие ще се показва накрая на теста, когато ученикът е отговорил на всички въпроси."
|
||||
},
|
||||
{
|
||||
"label": "Обща обратна връзка",
|
||||
"fields": [
|
||||
{
|
||||
"widgets": [
|
||||
{
|
||||
"label": "По подразбиране"
|
||||
}
|
||||
],
|
||||
"label": "Персонална обратна връзка за всеки диапазон от точки",
|
||||
"description": "Пример: 0-20% Слаб резултат, 21-91% Среден резултат, 91-100% Отличен резултат!",
|
||||
"entity": "диапазон",
|
||||
"field": {
|
||||
"fields": [
|
||||
{
|
||||
"label": "Диапазон на резултата"
|
||||
},
|
||||
{},
|
||||
{
|
||||
"label": "Обратна връзка за дефиниран диапазон на резултата",
|
||||
"placeholder": "Въведете обратна връзка"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Стара обратна връзка",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Поздравления за успешно решен тест",
|
||||
"description": "Този текст ще се показва над резултата, когато ученикът реши теста успешно."
|
||||
},
|
||||
{
|
||||
"label": "Коментар за успешно решен тест",
|
||||
"description": "Този коментар ще се показва след резултата, когато ученикът реши теста успешно."
|
||||
},
|
||||
{
|
||||
"label": "Заглавие за неуспешно решен тест",
|
||||
"description": "Този текст ще се показва над резултата, когато ученикът не се справи с теста."
|
||||
},
|
||||
{
|
||||
"label": "Коментар за неуспешно решен тест",
|
||||
"description": "Този коментар ще се показва след резултата, когато ученикът не се справи с теста."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Етикет за бутон Покажи решение",
|
||||
"default": "Покажи решение",
|
||||
"description": "Текст за бутон Покажи решение."
|
||||
},
|
||||
{
|
||||
"label": "Етикет за бутон Опитай пак",
|
||||
"default": "Опитай пак",
|
||||
"description": "Текст за бутон Опитай пак."
|
||||
},
|
||||
{
|
||||
"label": "Текст за бутон Край",
|
||||
"default": "Край"
|
||||
},
|
||||
{
|
||||
"label": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Показване на видео преди резултатите от теста"
|
||||
},
|
||||
{
|
||||
"label": "Разреши бутон Пропусни видеото"
|
||||
},
|
||||
{
|
||||
"label": "Етикет за бутон Пропусни видеото",
|
||||
"default": "Пропусни видеото"
|
||||
},
|
||||
{
|
||||
"label": "Видео при успех",
|
||||
"description": "Това видео ще се покаже, когато ученикът премине теста успешно."
|
||||
},
|
||||
{
|
||||
"label": "Видео при неуспех",
|
||||
"description": "Това видео ще се покаже, когато ученикът НЕ премине теста успешно."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Настройки за бутони \"Покажи решение\" и \"Опитай пак\" ",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Покажи бутони \"Провери\" ",
|
||||
"description": "Тази настройка определя дали бутон \"Провери\" да се показва за всички въпроси."
|
||||
},
|
||||
{
|
||||
"label": "Отмяна на бутон \"Покажи решение\" ",
|
||||
"description": "Тази настройка определя дали бутон \"Покажи решение\" да се показва за всички въпроси, да не се показва за всички или да се настройва индивидуално за всеки въпрос.",
|
||||
"options": [
|
||||
{
|
||||
"label": "Активирано"
|
||||
},
|
||||
{
|
||||
"label": "Деактивирано"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Отмяна на бутон \"Опитай пак\" ",
|
||||
"description": "Тази настройка определя дали бутон \"Опитай пак\" да се показва за всички въпроси, да не се показва за всички или да се настройва индивидуално за всеки въпрос.",
|
||||
"options": [
|
||||
{
|
||||
"label": "Активирано"
|
||||
},
|
||||
{
|
||||
"label": "Деактивирано"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
|
@ -75,6 +75,10 @@
|
|||
"label": "Oznaka za dugme \"Završi\"",
|
||||
"default": "Kraj"
|
||||
},
|
||||
{
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Početni tekst",
|
||||
"description": "Koristi tekst ako je izabran za napredak u pisanom obliku.",
|
||||
|
@ -204,6 +208,10 @@
|
|||
"label": "Prikaži video prije rezultata kviza",
|
||||
"default": "Kraj"
|
||||
},
|
||||
{
|
||||
"label": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Aktiviraj dugme \"Preskoči vidio\""
|
||||
},
|
||||
|
|
214
language/ca.json
214
language/ca.json
|
@ -1,168 +1,172 @@
|
|||
{
|
||||
"semantics": [
|
||||
{
|
||||
"label": "Quiz introduction",
|
||||
"label": "Introducció al qüestionari",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Display introduction"
|
||||
"label": "Mostra la introdució"
|
||||
},
|
||||
{
|
||||
"label": "Title",
|
||||
"description": "This title will be displayed above the introduction text."
|
||||
"label": "Títol",
|
||||
"description": "Aquest títol es mostrarà a sobre del text d’introducció."
|
||||
},
|
||||
{
|
||||
"label": "Text d'introducció",
|
||||
"description": "This text will be displayed before the quiz starts."
|
||||
"label": "Text d’introducció",
|
||||
"description": "Aquest text es mostrarà abans de començar el qüestionari."
|
||||
},
|
||||
{
|
||||
"label": "Start button text",
|
||||
"default": "Start Quiz"
|
||||
"label": "Text del botó \"Inicia\"",
|
||||
"default": "Inicia el qüestionari"
|
||||
},
|
||||
{
|
||||
"label": "Imatge de fons",
|
||||
"description": "An optional background image for the introduction."
|
||||
"description": "Una imatge de fons opcional per a la introducció."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Imatge de fons",
|
||||
"description": "An optional background image for the Question set."
|
||||
"description": "Imatge de fons opcional per al conjunt de preguntes."
|
||||
},
|
||||
{
|
||||
"label": "Progress indicator",
|
||||
"description": "Question set progress indicator style.",
|
||||
"label": "Indicador de progrés",
|
||||
"description": "Estil de l’indicador de progrés del conjunt de preguntes.",
|
||||
"options": [
|
||||
{
|
||||
"label": "Textual"
|
||||
},
|
||||
{
|
||||
"label": "Dots"
|
||||
"label": "Punts"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Percentatge per passar",
|
||||
"description": "Percentage of Total score required for passing the quiz."
|
||||
"label": "Percentatge per aprovar el qüestionari",
|
||||
"description": "Percentatge de la puntuació total requerida per aprovar el qüestionari."
|
||||
},
|
||||
{
|
||||
"label": "Questions",
|
||||
"label": "Preguntes",
|
||||
"widgets": [
|
||||
{
|
||||
"label": "Per defecte"
|
||||
"label": "Opció predeterminada"
|
||||
},
|
||||
{
|
||||
"label": "Textual"
|
||||
}
|
||||
],
|
||||
"entity": "question",
|
||||
"entity": "pregunta",
|
||||
"field": {
|
||||
"label": "Question type",
|
||||
"description": "Library for this question."
|
||||
"label": "Tipus de pregunta",
|
||||
"description": "Biblioteca per a aquesta pregunta."
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "Interface texts in quiz",
|
||||
"label": "Textos de la interfície al qüestionari",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Back button",
|
||||
"default": "Previous question"
|
||||
"label": "Botó \"Enrere\"",
|
||||
"default": "Pregunta anterior"
|
||||
},
|
||||
{
|
||||
"label": "Next button",
|
||||
"default": "Next question"
|
||||
"label": "Botó següent",
|
||||
"default": "Pregunta següent"
|
||||
},
|
||||
{
|
||||
"label": "Finish button",
|
||||
"default": "Acabar"
|
||||
"label": "Botó \"Finalitza\"",
|
||||
"default": "Finalitza"
|
||||
},
|
||||
{
|
||||
"label": "Progress text",
|
||||
"description": "Text used if textual progress is selected.",
|
||||
"default": "Question: @current of @total questions"
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"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": "Text del progrés",
|
||||
"description": "Text que s’utilitza si se selecciona el progrés textual.",
|
||||
"default": "Pregunta: @current de @total"
|
||||
},
|
||||
{
|
||||
"label": "Copyright dialog question label",
|
||||
"label": "Etiqueta per saltar a una pregunta concreta",
|
||||
"description": "Heu d’utilitzar l’espai reservat \"%d\" en lloc del número de pregunta i %total en lloc del nombre de preguntes total.",
|
||||
"default": "Pregunta %d del %total"
|
||||
},
|
||||
{
|
||||
"label": "Etiqueta de la pregunta del quadre de diàleg de drets d’autor",
|
||||
"default": "Pregunta"
|
||||
},
|
||||
{
|
||||
"label": "Readspeaker progress",
|
||||
"description": "May use @current and @total question variables",
|
||||
"default": "Question @current of @total"
|
||||
"label": "Progrés de l’altaveu de lectura",
|
||||
"description": "Pot utilitzar variables de pregunta @current i @total",
|
||||
"default": "Pregunta @current de @total"
|
||||
},
|
||||
{
|
||||
"label": "Unanswered question text",
|
||||
"default": "Unanswered"
|
||||
"label": "Text de la pregunta sense respondre",
|
||||
"default": "No s’ha respost"
|
||||
},
|
||||
{
|
||||
"label": "Answered question text",
|
||||
"default": "Answered"
|
||||
"label": "Text de la pregunta resposta",
|
||||
"default": "Respost"
|
||||
},
|
||||
{
|
||||
"label": "Current question text",
|
||||
"default": "Current question"
|
||||
"label": "Text de la pregunta actual",
|
||||
"default": "Pregunta actual"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Disable backwards navigation",
|
||||
"description": "This option will only allow you to move forward in Question Set"
|
||||
"label": "Desactiva la possibilitat de navegar enrere",
|
||||
"description": "Aquesta opció només us permetrà avançar pel conjunt de preguntes"
|
||||
},
|
||||
{
|
||||
"label": "Randomize questions",
|
||||
"description": "Enable to randomize the order of questions on display."
|
||||
"label": "Distribueix les preguntes aleatòriament",
|
||||
"description": "Permeteu que les preguntes es distribueixin aleatòriament a la pantalla."
|
||||
},
|
||||
{
|
||||
"label": "Number of questions to be shown:",
|
||||
"description": "Create a randomized batch of questions from the total."
|
||||
"label": "Nombre de preguntes a mostrar:",
|
||||
"description": "Creeu un conjunt aleatori de preguntes extret del total de preguntes."
|
||||
},
|
||||
{
|
||||
"label": "Quiz finished",
|
||||
"label": "El qüestionari ha finalitzat",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Display results"
|
||||
"label": "Mostra els resultats"
|
||||
},
|
||||
{
|
||||
"label": "Display solution button"
|
||||
"label": "Mostra el botó \"Solució\""
|
||||
},
|
||||
{
|
||||
"label": "Display retry button"
|
||||
"label": "Mostra el botó per tornar-ho a provar"
|
||||
},
|
||||
{
|
||||
"label": "No results message",
|
||||
"description": "Text displayed on end page when \"Display results\" is disabled",
|
||||
"default": "Finished"
|
||||
"label": "Missatge \"Sense resultats\"",
|
||||
"description": "Text que es mostra a l’última pàgina quan l’opció \"Mostra els resultats\" està desactivada",
|
||||
"default": "Finalitzat"
|
||||
},
|
||||
{
|
||||
"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": "Encapçalament de la retroacció",
|
||||
"default": "El seu resultat:",
|
||||
"description": "Aquest títol es mostrarà al final del qüestionari quan l’usuari hagi respost a totes les preguntes."
|
||||
},
|
||||
{
|
||||
"label": "Overall Feedback",
|
||||
"label": "Suggeriment general",
|
||||
"fields": [
|
||||
{
|
||||
"widgets": [
|
||||
{
|
||||
"label": "Default"
|
||||
"label": "Opció predeterminada"
|
||||
}
|
||||
],
|
||||
"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": "Defineix una valoració per cada rang de puntuació",
|
||||
"description": "Exemple: 0-20% per a puntuació baixa, 21-91% per a puntuació mitjana, 91-100% per a puntuació excel·lent",
|
||||
"entity": "rang",
|
||||
"field": {
|
||||
"fields": [
|
||||
{
|
||||
"label": "Score Range"
|
||||
"label": "Rang de puntuació"
|
||||
},
|
||||
{},
|
||||
{
|
||||
"label": "Feedback for defined score range",
|
||||
"placeholder": "Fill in the feedback"
|
||||
"label": "Suggeriment per al rang de puntuació definit",
|
||||
"placeholder": "Introduïu el suggeriment"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -170,88 +174,92 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"label": "Old Feedback",
|
||||
"label": "Suggeriments antics",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Quiz passed greeting",
|
||||
"description": "This text will be displayed above the score if the user has successfully passed the quiz."
|
||||
"label": "L’enhorabona per a qüestionari superat",
|
||||
"description": "Aquest text es mostrarà a sobre de la puntuació, si l’usuari ha superat el qüestionari."
|
||||
},
|
||||
{
|
||||
"label": "Passed comment",
|
||||
"description": "This comment will be displayed after the score if the user has successfully passed the quiz."
|
||||
"label": "Comentari per a qüestionari superat",
|
||||
"description": "Aquest comentari es mostrarà després de la puntuació si l’usuari ha superat el qüestionari correctament."
|
||||
},
|
||||
{
|
||||
"label": "Quiz failed title",
|
||||
"description": "This text will be displayed above the score if the user has failed the quiz."
|
||||
"label": "Títol de qüestionari no superat",
|
||||
"description": "Aquest text es mostrarà a sobre de la puntuació, si l’usuari no ha superat el qüestionari."
|
||||
},
|
||||
{
|
||||
"label": "Failed comment",
|
||||
"description": "This comment will be displayed after the score if the user has failed the quiz."
|
||||
"label": "Ha fallat el comentari",
|
||||
"description": "Aquest comentari es mostrarà després de la puntuació, si l’usuari no ha superat el qüestionari."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Solution button label",
|
||||
"default": "Mostrar solució",
|
||||
"description": "Text for the solution button."
|
||||
"label": "Etiqueta del botó \"Solució\"",
|
||||
"default": "Mostra la solució",
|
||||
"description": "Text per al botó de solució."
|
||||
},
|
||||
{
|
||||
"label": "Etiqueta del botó \"Tornar-ho a provar\"",
|
||||
"default": "Tornar-ho a provar",
|
||||
"description": "Text for the retry button."
|
||||
"label": "Etiqueta del botó \"Torna-ho a provar\"",
|
||||
"default": "Torna-ho a provar",
|
||||
"description": "Text del botó \"Torna-ho a provar\"."
|
||||
},
|
||||
{
|
||||
"label": "Finish button text",
|
||||
"default": "Acabar"
|
||||
"label": "Text del botó \"Finalitza\"",
|
||||
"default": "Finalitza"
|
||||
},
|
||||
{
|
||||
"label": "Display video before quiz results"
|
||||
"label": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Enable skip video button"
|
||||
"label": "Mostra el vídeo abans dels resultats del qüestionari"
|
||||
},
|
||||
{
|
||||
"label": "Skip video button label",
|
||||
"default": "Skip video"
|
||||
"label": "Activa el botó de saltar el vídeo"
|
||||
},
|
||||
{
|
||||
"label": "Passed video",
|
||||
"description": "This video will be played if the user successfully passed the quiz."
|
||||
"label": "Etiqueta del botó \"Omet el vídeo\"",
|
||||
"default": "Omet el vídeo"
|
||||
},
|
||||
{
|
||||
"label": "Fail video",
|
||||
"description": "This video will be played if the user fails the quiz."
|
||||
"label": "Vídeo per a qüestionari superat",
|
||||
"description": "Aquest vídeo es reproduirà si l’usuari supera el qüestionari."
|
||||
},
|
||||
{
|
||||
"label": "Vídeo fallit",
|
||||
"description": "Aquest vídeo es reproduirà si l’usuari falla el qüestionari."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
||||
"label": "Configuració dels botons \"Mostra la solució\" i \"Torna-ho a provar\"",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Show \"Check\" buttons",
|
||||
"description": "This option determines if the \"Check\" button will be shown for all questions."
|
||||
"label": "Mostra els botons \"Comprova\"",
|
||||
"description": "Aquesta opció determina si es mostrarà el botó \"Comprovar\" per a totes les preguntes."
|
||||
},
|
||||
{
|
||||
"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": "Substitueix el botó \"Mostra la solució\"",
|
||||
"description": "Aquesta opció determina si el botó \"Mostra la solució\" es mostrarà per a totes les preguntes, es desactivarà per a totes o es configurarà per a cada pregunta individualment.",
|
||||
"options": [
|
||||
{
|
||||
"label": "Enabled"
|
||||
"label": "Activat"
|
||||
},
|
||||
{
|
||||
"label": "Disabled"
|
||||
"label": "Desactivat"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"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": "Substitueix el botó \"Torna-ho a provar\"",
|
||||
"description": "Aquesta opció determina si es mostrarà el botó \"Torna-ho a provar\" per a totes les preguntes, es desactivarà per a totes o es configurarà per a cada pregunta individualment.",
|
||||
"options": [
|
||||
{
|
||||
"label": "Enabled"
|
||||
"label": "Activat"
|
||||
},
|
||||
{
|
||||
"label": "Disabled"
|
||||
"label": "Desactivat"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
224
language/cs.json
224
language/cs.json
|
@ -1,168 +1,172 @@
|
|||
{
|
||||
"semantics": [
|
||||
{
|
||||
"label": "Quiz introduction",
|
||||
"label": "Úvod do testu",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Display introduction"
|
||||
"label": "Zobrazit úvod"
|
||||
},
|
||||
{
|
||||
"label": "Title",
|
||||
"description": "This title will be displayed above the introduction text."
|
||||
"label": "Nadpis",
|
||||
"description": "Tento nadpis se zobrazí nad úvodním textem."
|
||||
},
|
||||
{
|
||||
"label": "Introduction text",
|
||||
"description": "This text will be displayed before the quiz starts."
|
||||
"label": "Úvodní text",
|
||||
"description": "Tento text se zobrazí před spuštěním testu."
|
||||
},
|
||||
{
|
||||
"label": "Start button text",
|
||||
"default": "Start Quiz"
|
||||
"label": "Text tlačítka Start",
|
||||
"default": "Start testu"
|
||||
},
|
||||
{
|
||||
"label": "Background image",
|
||||
"description": "An optional background image for the introduction."
|
||||
"label": "Obrázek na pozadí",
|
||||
"description": "Volitelný obrázek na pozadí pro úvod."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Background image",
|
||||
"description": "An optional background image for the Question set."
|
||||
"label": "Obrázek na pozadí",
|
||||
"description": "Volitelný obrázek na pozadí pro sadu otázek."
|
||||
},
|
||||
{
|
||||
"label": "Progress indicator",
|
||||
"description": "Question set progress indicator style.",
|
||||
"label": "Ukazatel průběhu",
|
||||
"description": "Styl ukazatele průběhu testu.",
|
||||
"options": [
|
||||
{
|
||||
"label": "Textual"
|
||||
"label": "Textový"
|
||||
},
|
||||
{
|
||||
"label": "Dots"
|
||||
"label": "Tečky"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Pass percentage",
|
||||
"description": "Percentage of Total score required for passing the quiz."
|
||||
"label": "Procento úspěšnosti",
|
||||
"description": "Procento z celkového skóre požadovaného pro absolvování testu."
|
||||
},
|
||||
{
|
||||
"label": "Questions",
|
||||
"label": "Otázky",
|
||||
"widgets": [
|
||||
{
|
||||
"label": "Default"
|
||||
"label": "Výchozí"
|
||||
},
|
||||
{
|
||||
"label": "Textual"
|
||||
"label": "Textové"
|
||||
}
|
||||
],
|
||||
"entity": "question",
|
||||
"entity": "otázka",
|
||||
"field": {
|
||||
"label": "Question type",
|
||||
"description": "Library for this question."
|
||||
"label": "Typ otázky",
|
||||
"description": "Knihovna pro tuto otázku."
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "Interface texts in quiz",
|
||||
"label": "Rozhraní v testu",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Back button",
|
||||
"default": "Previous question"
|
||||
"label": "Tlačítko Zpět",
|
||||
"default": "Předchozí otázka"
|
||||
},
|
||||
{
|
||||
"label": "Next button",
|
||||
"default": "Next question"
|
||||
"label": "Tlačítko Další",
|
||||
"default": "Další otázka"
|
||||
},
|
||||
{
|
||||
"label": "Finish button",
|
||||
"default": "Finish"
|
||||
"label": "Tlačítko Dokončit",
|
||||
"default": "Dokončit"
|
||||
},
|
||||
{
|
||||
"label": "Progress text",
|
||||
"description": "Text used if textual progress is selected.",
|
||||
"default": "Question: @current of @total questions"
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"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": "Text průběhu",
|
||||
"description": "Text použitý, pokud je vybrán textový průběh.",
|
||||
"default": "Otázka: @current z @total otázek"
|
||||
},
|
||||
{
|
||||
"label": "Copyright dialog question label",
|
||||
"default": "Question"
|
||||
"label": "Popisek pro skok na určitou otázku",
|
||||
"description": "Musíte použít zástupný symbol \"%d\" namísto čísla otázky, a %total namísto celkového počtu otázek.",
|
||||
"default": "Otázka %d z %total"
|
||||
},
|
||||
{
|
||||
"label": "Readspeaker progress",
|
||||
"description": "May use @current and @total question variables",
|
||||
"default": "Question @current of @total"
|
||||
"label": "Popisek s otázkou dialogového okna autorských práv",
|
||||
"default": "Otázka"
|
||||
},
|
||||
{
|
||||
"label": "Unanswered question text",
|
||||
"default": "Unanswered"
|
||||
"label": "Průběh čtení čtečky",
|
||||
"description": "Mohou používat proměnné otázek @current a @total",
|
||||
"default": "Otázka @current z @total"
|
||||
},
|
||||
{
|
||||
"label": "Answered question text",
|
||||
"default": "Answered"
|
||||
"label": "Text nezodpovězené otázky",
|
||||
"default": "Nezodpovězeno"
|
||||
},
|
||||
{
|
||||
"label": "Current question text",
|
||||
"default": "Current question"
|
||||
"label": "Text odpovězené otázky",
|
||||
"default": "Odpovězeno"
|
||||
},
|
||||
{
|
||||
"label": "Text aktuální otázky",
|
||||
"default": "Aktuální otázka"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Disable backwards navigation",
|
||||
"description": "This option will only allow you to move forward in Question Set"
|
||||
"label": "Zakázat navigaci zpět",
|
||||
"description": "Tato možnost vám umožní postupovat v sadě otázek pouze vpřed"
|
||||
},
|
||||
{
|
||||
"label": "Randomize questions",
|
||||
"description": "Enable to randomize the order of questions on display."
|
||||
"label": "Náhodné otázky",
|
||||
"description": "Povolit náhodný výběr pořadí zobrazovaných otázek."
|
||||
},
|
||||
{
|
||||
"label": "Number of questions to be shown:",
|
||||
"description": "Create a randomized batch of questions from the total."
|
||||
"label": "Počet otázek, které se mají zobrazit:",
|
||||
"description": "Vytvořte náhodnou dávku otázek z celkového počtu."
|
||||
},
|
||||
{
|
||||
"label": "Quiz finished",
|
||||
"label": "Test skončil",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Display results"
|
||||
"label": "Zobrazit výsledky"
|
||||
},
|
||||
{
|
||||
"label": "Display solution button"
|
||||
"label": "Zobrazit tlačítko řešení"
|
||||
},
|
||||
{
|
||||
"label": "Display retry button"
|
||||
"label": "Zobrazit tlačítko opakování"
|
||||
},
|
||||
{
|
||||
"label": "No results message",
|
||||
"description": "Text displayed on end page when \"Display results\" is disabled",
|
||||
"default": "Finished"
|
||||
"label": "Žádná zpráva o výsledcích",
|
||||
"description": "Text zobrazený na konci stránky, když je zakázáno \"Zobrazit výsledky\"",
|
||||
"default": "Dokončeno"
|
||||
},
|
||||
{
|
||||
"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": "Zpětná vazba",
|
||||
"default": "Váš výsledek:",
|
||||
"description": "Tento nadpis se zobrazí na konci testu, když uživatel odpoví na všechny otázky."
|
||||
},
|
||||
{
|
||||
"label": "Overall Feedback",
|
||||
"label": "Celková zpětná vazba",
|
||||
"fields": [
|
||||
{
|
||||
"widgets": [
|
||||
{
|
||||
"label": "Default"
|
||||
"label": "Výchozí"
|
||||
}
|
||||
],
|
||||
"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": "Definujte vlastní zpětnou vazbu pro libovolný rozsah skóre",
|
||||
"description": "Příklad: 0-20% špatné skóre, 21-91% průměrné skóre, 91-100% výborné skóre!",
|
||||
"entity": "rozsah",
|
||||
"field": {
|
||||
"fields": [
|
||||
{
|
||||
"label": "Score Range"
|
||||
"label": "Rozsah skóre"
|
||||
},
|
||||
{},
|
||||
{
|
||||
"label": "Feedback for defined score range",
|
||||
"placeholder": "Fill in the feedback"
|
||||
"label": "Zpětná vazba pro definovaný rozsah skóre",
|
||||
"placeholder": "Vyplňte zpětnou vazbu"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -170,88 +174,92 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"label": "Old Feedback",
|
||||
"label": "Stará zpětná vazba",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Quiz passed greeting",
|
||||
"description": "This text will be displayed above the score if the user has successfully passed the quiz."
|
||||
"label": "Pozdrav úspěšného testu",
|
||||
"description": "Tento text se zobrazí nad skóre, pokud uživatel úspěšně prošel testem."
|
||||
},
|
||||
{
|
||||
"label": "Passed comment",
|
||||
"description": "This comment will be displayed after the score if the user has successfully passed the quiz."
|
||||
"label": "Úspěšný komentář",
|
||||
"description": "Tento komentář se zobrazí po skóre, pokud uživatel úspěšně prošel testem."
|
||||
},
|
||||
{
|
||||
"label": "Quiz failed title",
|
||||
"description": "This text will be displayed above the score if the user has failed the quiz."
|
||||
"label": "Test se nezdařil",
|
||||
"description": "Tento text se zobrazí nad skóre, pokud uživatel byl v testu neúspěšný."
|
||||
},
|
||||
{
|
||||
"label": "Failed comment",
|
||||
"description": "This comment will be displayed after the score if the user has failed the quiz."
|
||||
"label": "Komentář při neúspěchu",
|
||||
"description": "Tento komentář se zobrazí po skóre, pokud uživatel byl v testu neúspěšný."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Solution button label",
|
||||
"default": "Show solution",
|
||||
"description": "Text for the solution button."
|
||||
"label": "Popisek tlačítka řešení",
|
||||
"default": "Zobrazit řešení",
|
||||
"description": "Text tlačítka řešení."
|
||||
},
|
||||
{
|
||||
"label": "Retry button label",
|
||||
"default": "Retry",
|
||||
"description": "Text for the retry button."
|
||||
"label": "Popisek tlačítka opakovat",
|
||||
"default": "Opakovat",
|
||||
"description": "Text tlačítka opakovat."
|
||||
},
|
||||
{
|
||||
"label": "Finish button text",
|
||||
"default": "Finish"
|
||||
"label": "Popisek tlačítka dokončit",
|
||||
"default": "Dokončit"
|
||||
},
|
||||
{
|
||||
"label": "Display video before quiz results"
|
||||
"label": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Enable skip video button"
|
||||
"label": "Zobrazit video před výsledky testu"
|
||||
},
|
||||
{
|
||||
"label": "Skip video button label",
|
||||
"default": "Skip video"
|
||||
"label": "Povolit tlačítko přeskočit video"
|
||||
},
|
||||
{
|
||||
"label": "Passed video",
|
||||
"description": "This video will be played if the user successfully passed the quiz."
|
||||
"label": "Popisek tlačítka Přeskočit video",
|
||||
"default": "Přeskočit video"
|
||||
},
|
||||
{
|
||||
"label": "Fail video",
|
||||
"description": "This video will be played if the user fails the quiz."
|
||||
"label": "Přehrát video",
|
||||
"description": "Toto video se přehraje, pokud uživatel úspěšně prošel testem."
|
||||
},
|
||||
{
|
||||
"label": "Video při neúspěchu",
|
||||
"description": "Toto video se přehraje, pokud uživatel byl v testu neúspěšný."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
||||
"label": "Nastavení tlačítek \"Zobrazit výsledek\" a \"Opakovat\"",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Show \"Check\" buttons",
|
||||
"description": "This option determines if the \"Check\" button will be shown for all questions."
|
||||
"label": "Zobrazit tlačítko \"Zkontrolovat\"",
|
||||
"description": "Tato volba určuje, zda se u všech otázek zobrazí tlačítko \"Zkontrolovat\" ."
|
||||
},
|
||||
{
|
||||
"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": "Přepsat tlačítko \"Zobrazit řešení\"",
|
||||
"description": "Tato volba určuje, zda se u všech otázek zobrazí tlačítko \"Zobrazit řešení\" , nebo bude zakázané pro všechny nebo nakonfigurované pro každou otázku samostatně.",
|
||||
"options": [
|
||||
{
|
||||
"label": "Enabled"
|
||||
"label": "Povoleno"
|
||||
},
|
||||
{
|
||||
"label": "Disabled"
|
||||
"label": "Zakázáno"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"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": "Přepsat tlačítko \"Opakovat\"",
|
||||
"description": "Tato volba určuje, zda se u všech otázek zobrazí tlačítko \"Opakovat\" , nebo bude zakázané pro všechny nebo nakonfigurované pro každou otázku samostatně.",
|
||||
"options": [
|
||||
{
|
||||
"label": "Enabled"
|
||||
"label": "Povoleno"
|
||||
},
|
||||
{
|
||||
"label": "Disabled"
|
||||
"label": "Zakázáno"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
@ -75,6 +75,10 @@
|
|||
"label": "Finish button",
|
||||
"default": "Finish"
|
||||
},
|
||||
{
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Progress text",
|
||||
"description": "Text used if textual progress is selected.",
|
||||
|
@ -204,6 +208,10 @@
|
|||
"label": "Finish button text",
|
||||
"default": "Finish"
|
||||
},
|
||||
{
|
||||
"label": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Display video before quiz results"
|
||||
},
|
||||
|
|
|
@ -75,6 +75,10 @@
|
|||
"label": "Beschriftung des \"Beenden\"-Buttons",
|
||||
"default": "Beenden"
|
||||
},
|
||||
{
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Text der Fortschrittsanzeige",
|
||||
"description": "Verwendeter Text, wenn Fortschrittsanzeige in Textform gewählt wurde.",
|
||||
|
@ -110,7 +114,7 @@
|
|||
},
|
||||
{
|
||||
"label": "Rückwärts-Navigation deaktivieren",
|
||||
"description": "Wenn aktiviert, kann der Nutzer nur vorwärts durch den Fragensatz navigieren."
|
||||
"description": "Wenn aktiviert, kann der Nutzer nur vorwärts durch den Fragensatz navigieren"
|
||||
},
|
||||
{
|
||||
"label": "Fragen zufällig anordnen",
|
||||
|
@ -204,6 +208,10 @@
|
|||
"label": "Beschriftung des \"Beenden\"-Buttons",
|
||||
"default": "Beenden"
|
||||
},
|
||||
{
|
||||
"label": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Zeige ein Video vor den Ergebnissen an"
|
||||
},
|
||||
|
|
|
@ -75,6 +75,10 @@
|
|||
"label": "Κουμπί ολοκλήρωσης",
|
||||
"default": "Ολοκλήρωση"
|
||||
},
|
||||
{
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Κείμενο προόδου",
|
||||
"description": "Κείμενο που χρησιμοποιείται, εάν έχει επιλεγεί το κειμενικό στυλ εμφάνισης της προόδου.",
|
||||
|
@ -204,6 +208,10 @@
|
|||
"label": "Ετικέτα κουμπιού ολοκλήρωσης",
|
||||
"default": "Ολοκλήρωση"
|
||||
},
|
||||
{
|
||||
"label": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Εμφάνιση βίντεο πριν τα αποτελέσματα του κουίζ"
|
||||
},
|
||||
|
|
|
@ -0,0 +1,269 @@
|
|||
{
|
||||
"semantics": [
|
||||
{
|
||||
"label": "Introducción al Examen",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Mostrar introducción"
|
||||
},
|
||||
{
|
||||
"label": "Título",
|
||||
"description": "Este título será mostrado arriba del texto introductorio."
|
||||
},
|
||||
{
|
||||
"label": "Texto introductorio",
|
||||
"description": "Este texto será mostrado antes de que inicie el examen."
|
||||
},
|
||||
{
|
||||
"label": "Texto botón Comenzar",
|
||||
"default": "Comenzar Examen"
|
||||
},
|
||||
{
|
||||
"label": "Imagen de Fondo",
|
||||
"description": "Una imagen de fondo opcional para la introducción."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Imagen de fondo",
|
||||
"description": "Una imagen de fondo opcional para el Conjunto de preguntas."
|
||||
},
|
||||
{
|
||||
"label": "Indicador del Progreso",
|
||||
"description": "Estilo del indicador del progreso de Conjunto de preguntas.",
|
||||
"options": [
|
||||
{
|
||||
"label": "Textual"
|
||||
},
|
||||
{
|
||||
"label": "Puntos"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Porcentaje aprobatorio",
|
||||
"description": "Porcentaje del puntaje total requerido para pasar el examen."
|
||||
},
|
||||
{
|
||||
"label": "Preguntas",
|
||||
"widgets": [
|
||||
{
|
||||
"label": "Predeterminado"
|
||||
},
|
||||
{
|
||||
"label": "Textual"
|
||||
}
|
||||
],
|
||||
"entity": "pregunta",
|
||||
"field": {
|
||||
"label": "Tipo de pregunta",
|
||||
"description": "Librería para esta pregunta."
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "Textos de interfaz en examen",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Botón de Retroceso",
|
||||
"default": "Pregunta anterior"
|
||||
},
|
||||
{
|
||||
"label": "Botón Siguiente",
|
||||
"default": "Pregunta siguiente"
|
||||
},
|
||||
{
|
||||
"label": "Botón Terminar",
|
||||
"default": "Terminar"
|
||||
},
|
||||
{
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Texto del Progreso",
|
||||
"description": "Texto usado si progreso textual es seleccionado.",
|
||||
"default": "Pregunta: @current de @total preguntas"
|
||||
},
|
||||
{
|
||||
"label": "Etiqueta para saltar a una pregunta dada",
|
||||
"description": "Usted debe usar el remplazable '%d' en sustitución del número de la pregunta, y %total en lugar de cantidad total de preguntas.",
|
||||
"default": "Pregunta %d de %total"
|
||||
},
|
||||
{
|
||||
"label": "Etiqueta de diálogo de Copyright de pregunta",
|
||||
"default": "Pregunta"
|
||||
},
|
||||
{
|
||||
"label": "Progreso para Lector de texto en voz alta",
|
||||
"description": "Puede usar @current y @total como variables de preguntas",
|
||||
"default": "Pregunta @current de @total"
|
||||
},
|
||||
{
|
||||
"label": "Texto de pregunta no contestada",
|
||||
"default": "No contestada"
|
||||
},
|
||||
{
|
||||
"label": "Texto de pregunta contestada",
|
||||
"default": "Contestada"
|
||||
},
|
||||
{
|
||||
"label": "Texto de pregunta actual",
|
||||
"default": "Pregunta actual"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Deshabilitar navegación hacia atrás",
|
||||
"description": "Esta opción solamente le permitirá mover hacia adelante en Conjunto de Preguntas"
|
||||
},
|
||||
{
|
||||
"label": "Barajear preguntas",
|
||||
"description": "Habilitar para aleatorizar el orden de preguntas mostradas."
|
||||
},
|
||||
{
|
||||
"label": "Número de preguntas a mostrar:",
|
||||
"description": "Crear un lote aleatorizado de preguntas a partir del total."
|
||||
},
|
||||
{
|
||||
"label": "Examen terminado",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Mostrar resultados"
|
||||
},
|
||||
{
|
||||
"label": "Mostrar botón Solución"
|
||||
},
|
||||
{
|
||||
"label": "Mostrar botón Reintentar"
|
||||
},
|
||||
{
|
||||
"label": "Mensaje para Sin resultados",
|
||||
"description": "Texto mostrado en página final cuando está deshabilitado el \"Mostrar resultados\"",
|
||||
"default": "Terminado"
|
||||
},
|
||||
{
|
||||
"label": "Encabezado de Retroalimentación",
|
||||
"default": "Su resultado:",
|
||||
"description": "Este encabezado será mostrado al final del examen cuando el usuario haya contestado todas las preguntas."
|
||||
},
|
||||
{
|
||||
"label": "Retroalimentación Global",
|
||||
"fields": [
|
||||
{
|
||||
"widgets": [
|
||||
{
|
||||
"label": "Predeterminado"
|
||||
}
|
||||
],
|
||||
"label": "Definir retroalimentación personalizada para cualquier rango de puntaje",
|
||||
"description": "Ejemplo: 0-20% Mal Puntaje, 21-91% Puntaje Promedio, 91-100% ¡Magnífico Puntaje!",
|
||||
"entity": "rango",
|
||||
"field": {
|
||||
"fields": [
|
||||
{
|
||||
"label": "Rango de Puntaje"
|
||||
},
|
||||
{},
|
||||
{
|
||||
"label": "Retroalimentación para rango definido de puntaje",
|
||||
"placeholder": "Complete la retroalimentación"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Retroalimentación Antigua",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Felicitación examen aprobado",
|
||||
"description": "Este texto será mostrado arriba del puntaje si el usuario ha aprobado exitosamente el examen."
|
||||
},
|
||||
{
|
||||
"label": "Comentario para Aprobado",
|
||||
"description": "Este comentario será mostrado después del puntaje si el usuario ha aprobado exitosamente el examen."
|
||||
},
|
||||
{
|
||||
"label": "Título para examen reprobado",
|
||||
"description": "Este texto será mostrado arriba del puntaje si el usuario ha reprobado el examen."
|
||||
},
|
||||
{
|
||||
"label": "Comentario para Reprobado",
|
||||
"description": "Este comentario será mostrado después del puntaje si el usuario ha reprobado el examen."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Etiqueta botón Solución",
|
||||
"default": "Mostrar solución",
|
||||
"description": "Texto para el botón de Solución."
|
||||
},
|
||||
{
|
||||
"label": "Etiqueta botón Reintentar",
|
||||
"default": "Reintentar",
|
||||
"description": "Texto para el botón Reintentar."
|
||||
},
|
||||
{
|
||||
"label": "Texto botón Terminar",
|
||||
"default": "Terminar"
|
||||
},
|
||||
{
|
||||
"label": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Mostrar video antes de resultados del examen"
|
||||
},
|
||||
{
|
||||
"label": "Botón habilitar saltar video"
|
||||
},
|
||||
{
|
||||
"label": "Etiqueta botón Saltar video",
|
||||
"default": "Saltar video"
|
||||
},
|
||||
{
|
||||
"label": "Video para aprobado",
|
||||
"description": "Este video será reproducido si el usuario ha aprobado exitosamente el examen."
|
||||
},
|
||||
{
|
||||
"label": "Video para reprobado",
|
||||
"description": "Este video será reproducido si el usuario reprueba el examen."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Configuraciones para botones \"Mostrar solución\" y \"Reintentar\"",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Botones Mostrar \"Comprobar\"",
|
||||
"description": "Esta opción determina si el botón para \"Comprobar\" será mostrado para todas las preguntas."
|
||||
},
|
||||
{
|
||||
"label": "Anular el botón \"Mostrar Solución\"",
|
||||
"description": "Esta opción determina si el botón \"Mostrar Solución\" será mostrado en todas las preguntas, desactivado para todas, o configurado para cada pregunta individualmente.",
|
||||
"options": [
|
||||
{
|
||||
"label": "Habilitado"
|
||||
},
|
||||
{
|
||||
"label": "Deshabilitado"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Anular el botón de \"Reintentar\"",
|
||||
"description": "Esta opción determina si el botón \"Reintentar\" será mostrado para todas las preguntas, deshabilitado para todas, o configurado para cada pregunta individualmente.",
|
||||
"options": [
|
||||
{
|
||||
"label": "Habilitado"
|
||||
},
|
||||
{
|
||||
"label": "Deshabilitado"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
202
language/es.json
202
language/es.json
|
@ -1,51 +1,51 @@
|
|||
{
|
||||
"semantics": [
|
||||
{
|
||||
"label": "Quiz introduction",
|
||||
"label": "Introducción al Examen",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Display introduction"
|
||||
"label": "Mostrar introducción"
|
||||
},
|
||||
{
|
||||
"label": "Título",
|
||||
"description": "This title will be displayed above the introduction text."
|
||||
"description": "Este título será mostrado arriba del texto introductorio."
|
||||
},
|
||||
{
|
||||
"label": "Introduction text",
|
||||
"description": "This text will be displayed before the quiz starts."
|
||||
"label": "Texto introductorio",
|
||||
"description": "Este texto será mostrado antes de que inicie el examen."
|
||||
},
|
||||
{
|
||||
"label": "Start button text",
|
||||
"default": "Start Quiz"
|
||||
"label": "Texto botón Comenzar",
|
||||
"default": "Comenzar Examen"
|
||||
},
|
||||
{
|
||||
"label": "Background image",
|
||||
"description": "An optional background image for the introduction."
|
||||
"label": "Imagen de Fondo",
|
||||
"description": "Una imagen de fondo opcional para la introducción."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Background image",
|
||||
"description": "An optional background image for the Question set."
|
||||
"label": "Imagen de fondo",
|
||||
"description": "Una imagen de fondo opcional para el Conjunto de pregunta."
|
||||
},
|
||||
{
|
||||
"label": "Progress indicator",
|
||||
"description": "Question set progress indicator style.",
|
||||
"label": "Indicador del Progreso",
|
||||
"description": "Estilo del indicador del progreso de Conjunto de pregunta.",
|
||||
"options": [
|
||||
{
|
||||
"label": "Textual"
|
||||
},
|
||||
{
|
||||
"label": "Dots"
|
||||
"label": "Puntos"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Pass percentage",
|
||||
"description": "Percentage of Total score required for passing the quiz."
|
||||
"label": "Porcentaje aprobatorio",
|
||||
"description": "Porcentaje del puntaje total requerido para pasar el examen."
|
||||
},
|
||||
{
|
||||
"label": "Questions",
|
||||
"label": "Preguntas",
|
||||
"widgets": [
|
||||
{
|
||||
"label": "Predeterminado"
|
||||
|
@ -54,115 +54,119 @@
|
|||
"label": "Textual"
|
||||
}
|
||||
],
|
||||
"entity": "question",
|
||||
"entity": "pregunta",
|
||||
"field": {
|
||||
"label": "Question type",
|
||||
"description": "Library for this question."
|
||||
"label": "Tipo de pregunta",
|
||||
"description": "Librería para esta pregunta."
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "Interface texts in quiz",
|
||||
"label": "Textos de interfaz en examen",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Botón de retroceso",
|
||||
"default": "Previous question"
|
||||
"default": "Pregunta anterior"
|
||||
},
|
||||
{
|
||||
"label": "Next button",
|
||||
"default": "Next question"
|
||||
"label": "Botón Siguiente",
|
||||
"default": "Pregunta siguiente"
|
||||
},
|
||||
{
|
||||
"label": "Finish button",
|
||||
"default": "Finish"
|
||||
"label": "Botón Terminar",
|
||||
"default": "Terminar"
|
||||
},
|
||||
{
|
||||
"label": "Progress text",
|
||||
"description": "Text used if textual progress is selected.",
|
||||
"default": "Question: @current of @total questions"
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"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": "Texto del progreso",
|
||||
"description": "Texto usado si progreso textual es seleccionado.",
|
||||
"default": "Pregunta: @current de @total preguntas"
|
||||
},
|
||||
{
|
||||
"label": "Copyright dialog question label",
|
||||
"default": "Question"
|
||||
"label": "Etiqueta para saltar a una pregunta dada",
|
||||
"description": "Usted debe usar el remplazable '%d' en sustitución del número de la pregunta, y %total en lugar de cantidad total de preguntas.",
|
||||
"default": "Pregunta %d de %total"
|
||||
},
|
||||
{
|
||||
"label": "Readspeaker progress",
|
||||
"description": "May use @current and @total question variables",
|
||||
"default": "Question @current of @total"
|
||||
"label": "Etiqueta de diálogo de Copyright de pregunta",
|
||||
"default": "Pregunta"
|
||||
},
|
||||
{
|
||||
"label": "Unanswered question text",
|
||||
"default": "Unanswered"
|
||||
"label": "Progreso para Lector de texto en voz alta",
|
||||
"description": "Puede usar @current y @total como variables de preguntas",
|
||||
"default": "Pregunta @current de @total"
|
||||
},
|
||||
{
|
||||
"label": "Answered question text",
|
||||
"default": "Answered"
|
||||
"label": "Texto de pregunta no contestada",
|
||||
"default": "No contestada"
|
||||
},
|
||||
{
|
||||
"label": "Current question text",
|
||||
"default": "Current question"
|
||||
"label": "Texto de pregunta contestada",
|
||||
"default": "Contestada"
|
||||
},
|
||||
{
|
||||
"label": "Texto de pregunta actual",
|
||||
"default": "Pregunta actual"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Disable backwards navigation",
|
||||
"description": "This option will only allow you to move forward in Question Set"
|
||||
"label": "Deshabilitar navegación hacia atrás",
|
||||
"description": "Esta opción solamente le permitirá mover hacia adelante en Conjunto de pregunta"
|
||||
},
|
||||
{
|
||||
"label": "Randomize questions",
|
||||
"description": "Enable to randomize the order of questions on display."
|
||||
"label": "Barajear preguntas",
|
||||
"description": "Habilitar para aleatorizar el orden de preguntas mostradas."
|
||||
},
|
||||
{
|
||||
"label": "Number of questions to be shown:",
|
||||
"description": "Create a randomized batch of questions from the total."
|
||||
"label": "Número de preguntas a mostrar:",
|
||||
"description": "Crear un lote aleatorizado de preguntas a partir del total."
|
||||
},
|
||||
{
|
||||
"label": "Quiz finished",
|
||||
"label": "Examen terminado",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Display results"
|
||||
"label": "Mostrar resultados"
|
||||
},
|
||||
{
|
||||
"label": "Display solution button"
|
||||
"label": "Mostrar botón Solución"
|
||||
},
|
||||
{
|
||||
"label": "Display retry button"
|
||||
"label": "Mostrar botón Reintentar"
|
||||
},
|
||||
{
|
||||
"label": "No results message",
|
||||
"description": "Text displayed on end page when \"Display results\" is disabled",
|
||||
"default": "Finished"
|
||||
"label": "Mensaje para Sin resultados",
|
||||
"description": "Texto mostrado en página final cuando está deshabilitado el \"Mostrar resultados\"",
|
||||
"default": "Terminado"
|
||||
},
|
||||
{
|
||||
"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": "Encabezado de Retroalimentación",
|
||||
"default": "Su resultado:",
|
||||
"description": "Este encabezado será mostrado al final del examen cuando el usuario haya contestado todas las preguntas."
|
||||
},
|
||||
{
|
||||
"label": "Overall Feedback",
|
||||
"label": "Retroalimentación Global",
|
||||
"fields": [
|
||||
{
|
||||
"widgets": [
|
||||
{
|
||||
"label": "Default"
|
||||
"label": "Predeterminado"
|
||||
}
|
||||
],
|
||||
"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": "Definir retroalimentación personalizada para cualquier rango de puntaje",
|
||||
"description": "Ejemplo: 0-20% Mal Puntaje, 21-91% Puntaje Promedio, 91-100% ¡Magnífico Puntaje!",
|
||||
"entity": "rango",
|
||||
"field": {
|
||||
"fields": [
|
||||
{
|
||||
"label": "Score Range"
|
||||
"label": "Rango de Puntaje"
|
||||
},
|
||||
{},
|
||||
{
|
||||
"label": "Feedback for defined score range",
|
||||
"placeholder": "Fill in the feedback"
|
||||
"label": "Retroalimentación para rango definido de puntaje",
|
||||
"placeholder": "Complete la retroalimentación"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -170,70 +174,74 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"label": "Old Feedback",
|
||||
"label": "Retroalimentación Antigua",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Quiz passed greeting",
|
||||
"description": "This text will be displayed above the score if the user has successfully passed the quiz."
|
||||
"label": "Felicitación examen pasado",
|
||||
"description": "Este texto será mostrado arriba del puntaje si el usuario ha aprobado exitosamente el examen."
|
||||
},
|
||||
{
|
||||
"label": "Passed comment",
|
||||
"description": "This comment will be displayed after the score if the user has successfully passed the quiz."
|
||||
"label": "Comentario para Aprobado",
|
||||
"description": "Este comentario será mostrado después del puntaje si el usuario ha aprobado exitosamente el examen."
|
||||
},
|
||||
{
|
||||
"label": "Quiz failed title",
|
||||
"description": "This text will be displayed above the score if the user has failed the quiz."
|
||||
"label": "Título para examen reprobado",
|
||||
"description": "Este texto será mostrado arriba del puntaje si el usuario ha reprobado el examen."
|
||||
},
|
||||
{
|
||||
"label": "Failed comment",
|
||||
"description": "This comment will be displayed after the score if the user has failed the quiz."
|
||||
"label": "Comentario para Reprobado",
|
||||
"description": "Este comentario será mostrado después del puntaje si el usuario ha reprobado el examen."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Solution button label",
|
||||
"label": "Etiqueta botón Solución",
|
||||
"default": "Mostrar solución",
|
||||
"description": "Text for the solution button."
|
||||
"description": "Texto para el botón de Solución."
|
||||
},
|
||||
{
|
||||
"label": "Retry button label",
|
||||
"label": "Etiqueta botón Reintentar",
|
||||
"default": "Reintentar",
|
||||
"description": "Text for the retry button."
|
||||
"description": "Texto para el botón Reintentar."
|
||||
},
|
||||
{
|
||||
"label": "Finish button text",
|
||||
"default": "Finish"
|
||||
"label": "Texto botón Terminar",
|
||||
"default": "Terminar"
|
||||
},
|
||||
{
|
||||
"label": "Display video before quiz results"
|
||||
"label": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Enable skip video button"
|
||||
"label": "Mostrar video antes de resultados del examen"
|
||||
},
|
||||
{
|
||||
"label": "Skip video button label",
|
||||
"default": "Skip video"
|
||||
"label": "Botón habilitar saltar video"
|
||||
},
|
||||
{
|
||||
"label": "Passed video",
|
||||
"description": "This video will be played if the user successfully passed the quiz."
|
||||
"label": "Etiqueta botón Saltar video",
|
||||
"default": "Saltar video"
|
||||
},
|
||||
{
|
||||
"label": "Fail video",
|
||||
"description": "This video will be played if the user fails the quiz."
|
||||
"label": "Video para aprobado",
|
||||
"description": "Este video será reproducido si el usuario ha aprobado exitosamente el examen."
|
||||
},
|
||||
{
|
||||
"label": "Video para reprobado",
|
||||
"description": "Este video será reproducido si el usuario reprueba el examen."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
||||
"label": "Configuraciones para botones \"Mostrar solución\" y \"Reintentar\"",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Show \"Check\" buttons",
|
||||
"description": "This option determines if the \"Check\" button will be shown for all questions."
|
||||
"label": "Botones Mostrar \"Comprobar\"",
|
||||
"description": "Esta opción determina si el botón para \"Comprobar\" será mostrado para todas las preguntas."
|
||||
},
|
||||
{
|
||||
"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.",
|
||||
"label": "Anular el botón \"Mostrar Solución\"",
|
||||
"description": "Esta opción determina si el botón \"Mostrar Solución\" será mostrado en todas las preguntas, desactivado para todas, o configurado para cada pregunta individualmente.",
|
||||
"options": [
|
||||
{
|
||||
"label": "Habilitado"
|
||||
|
@ -244,8 +252,8 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"label": "Ocultar el botón de \"Reintentar\"",
|
||||
"description": "Esta opción determina si el botón \"Reintentar\" se muestra en todas las preguntas, se desactiva para todas, o se configura para cada pregunta individualmente.",
|
||||
"label": "Anular el botón de \"Reintentar\"",
|
||||
"description": "Esta opción determina si el botón \"Reintentar\" será mostrado para todas las preguntas, deshabilitado para todas o configurado para cada pregunta individualmente.",
|
||||
"options": [
|
||||
{
|
||||
"label": "Habilitado"
|
||||
|
|
|
@ -75,6 +75,10 @@
|
|||
"label": "Lõpeta nupp",
|
||||
"default": "Valmis"
|
||||
},
|
||||
{
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Edenemise tekst",
|
||||
"description": "Test, mida kasutatakse, kui valitud on tekstiline edenemisosuti.",
|
||||
|
@ -204,6 +208,10 @@
|
|||
"label": "Valmis nupu tekst",
|
||||
"default": "Valmis"
|
||||
},
|
||||
{
|
||||
"label": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Kuva videot enne viktoriini tulemusi"
|
||||
},
|
||||
|
|
|
@ -48,7 +48,7 @@
|
|||
"label": "Galderak",
|
||||
"widgets": [
|
||||
{
|
||||
"label": "Lehenetsia"
|
||||
"label": "Lehenetsitakoa"
|
||||
},
|
||||
{
|
||||
"label": "Testuala"
|
||||
|
@ -75,6 +75,10 @@
|
|||
"label": "Bukatu botoia",
|
||||
"default": "Bukatu"
|
||||
},
|
||||
{
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Aurrerapenaren testua",
|
||||
"description": "Testu-aurrerapena hautatuta badago erabiltzen den testua.",
|
||||
|
@ -151,7 +155,7 @@
|
|||
"label": "Lehenetsia"
|
||||
}
|
||||
],
|
||||
"label": "Definitu feedback pertsonalizatua edozein puntuazio tarterako",
|
||||
"label": "Zehaztu ezazu edozein puntuazio-tarterako feedback pertsonalizatua",
|
||||
"description": "Adibidez: 0-2%0 Puntuazio txarra, %21-%91 Tarteko puntuazioa, %91-%100 Puntuazio bikaina!",
|
||||
"entity": "tartea",
|
||||
"field": {
|
||||
|
@ -161,8 +165,8 @@
|
|||
},
|
||||
{},
|
||||
{
|
||||
"label": "Definitutako puntuazio tarterako feedbacka",
|
||||
"placeholder": "Bete feedbacka"
|
||||
"label": "Zehaztutako tartearentzako feedbacka",
|
||||
"placeholder": "Idatzi ezazu feedbacka"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -204,6 +208,10 @@
|
|||
"label": "Bukatu botoiaren testua",
|
||||
"default": "Bukatu"
|
||||
},
|
||||
{
|
||||
"label": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Bistaratu bideoa galdetegiaren emaitzen aurretik"
|
||||
},
|
||||
|
|
196
language/fa.json
196
language/fa.json
|
@ -1,168 +1,172 @@
|
|||
{
|
||||
"semantics": [
|
||||
{
|
||||
"label": "راهنمای سوال",
|
||||
"label": "مقدمه آزمون",
|
||||
"fields": [
|
||||
{
|
||||
"label": "نمایش راهنما"
|
||||
"label": "نمایش مقدمه"
|
||||
},
|
||||
{
|
||||
"label": "عنوان",
|
||||
"description": "این عنوان در بالای خلاصه نمایش داده میشود."
|
||||
"description": "این عنوان در بالای متن مقدمه نمایش داده خواهد شد."
|
||||
},
|
||||
{
|
||||
"label": "خلاصه متن",
|
||||
"description": "این متن قبل از شروع آزمون نمایش داده میشود"
|
||||
"label": "متن مقدمه",
|
||||
"description": "این متن قبل از شروع آزمون نمایش داده خواهد شد."
|
||||
},
|
||||
{
|
||||
"label": "متن دکمه شروع",
|
||||
"default": "شروع آزمون"
|
||||
},
|
||||
{
|
||||
"label": "تصویر پس زمینه",
|
||||
"description": "یک تصویر انتخابی برای قرارگرفتن در پس زمینه خلاصه"
|
||||
"label": "تصویر پسزمینه",
|
||||
"description": "یک تصویر انتخابی برای قرارگرفتن در پسزمینه مقدمه."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "تصویر پس زمینه",
|
||||
"description": "یک تصویر انتخابی برای قرار گرفتن در پس زمینه گروه سوالات"
|
||||
"label": "تصویر پسزمینه",
|
||||
"description": "یک تصویر انتخابی برای قرار گرفتن در پسزمینه مجموعه سوالات."
|
||||
},
|
||||
{
|
||||
"label": "جداکننده فرآیند",
|
||||
"description": "حالت نمایش جداکننده سوالات",
|
||||
"label": "شاخص پیشرفت",
|
||||
"description": "حالت نمایش شاخص پیشرفت مجموعه سؤالات.",
|
||||
"options": [
|
||||
{
|
||||
"label": "متنی"
|
||||
},
|
||||
{
|
||||
"label": "نقطه ای"
|
||||
"label": "نقطهای"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "درصد پاس شدن",
|
||||
"description": "درصدی که برای پاس شدن این آزمون مورد نیاز است"
|
||||
"label": "درصد قبولی",
|
||||
"description": "درصد از نمره کل که برای قبولی در این آزمون مورد نیاز است."
|
||||
},
|
||||
{
|
||||
"label": "سوالات",
|
||||
"label": "سؤالات",
|
||||
"widgets": [
|
||||
{
|
||||
"label": "Default"
|
||||
"label": "پیشفرض"
|
||||
},
|
||||
{
|
||||
"label": "متنی"
|
||||
}
|
||||
],
|
||||
"entity": "question",
|
||||
"entity": "سؤال",
|
||||
"field": {
|
||||
"label": "نوع سوال",
|
||||
"description": "کتابخانه برای این سوال"
|
||||
"description": "کتابخانه برای این سؤال."
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "متن نمایشی برای این آزمون",
|
||||
"label": "متون نمایشی برای آزمون",
|
||||
"fields": [
|
||||
{
|
||||
"label": "دکمه بازگشت",
|
||||
"default": "Previous question"
|
||||
"label": "دکمه برگشت",
|
||||
"default": "سؤال قبل"
|
||||
},
|
||||
{
|
||||
"label": "دکمه بعدی",
|
||||
"default": "Next question"
|
||||
"default": "سؤال بعدی"
|
||||
},
|
||||
{
|
||||
"label": "دکمه پایان",
|
||||
"default": "Finish"
|
||||
"default": "پایان"
|
||||
},
|
||||
{
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "متن پیشرفت",
|
||||
"description": "متن مورد استفاده در صورتی که پیشرفت متنی انتخاب شده باشد",
|
||||
"default": "Question: @current of @total questions"
|
||||
"description": "متن مورد استفاده در صورتی که پیشرفت متنی انتخاب شده باشد.",
|
||||
"default": "سؤال: @current از @total سؤال"
|
||||
},
|
||||
{
|
||||
"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"
|
||||
"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": "متن سوالات پاسخ داده نشده",
|
||||
"label": "متن سؤال پاسخ داده نشده",
|
||||
"default": "بدون پاسخ"
|
||||
},
|
||||
{
|
||||
"label": "متن سوالات پاسخ داده شده",
|
||||
"label": "متن سؤال پاسخ داده شده",
|
||||
"default": "پاسخ داده شده"
|
||||
},
|
||||
{
|
||||
"label": "متن سوال فعلی",
|
||||
"default": "Current question"
|
||||
"label": "متن سؤال فعلی",
|
||||
"default": "سؤال کنونی"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "غیرفعال کردن دکمه بازگشت",
|
||||
"description": "این گزینه به شما اجازه میدهد که در فقط در سوالات به جلو بروید"
|
||||
"label": "غیرفعال کردن راهبری به عقب",
|
||||
"description": "این گزینه به شما اجازه میدهد که در مجموعه سؤالات به جلو بروید"
|
||||
},
|
||||
{
|
||||
"label": "سوالات تصادفی",
|
||||
"description": "با انتخاب این گزینه سوالات به صورت تصادفی نمایش داده میشود"
|
||||
"label": "تصادفی کردن سؤالات",
|
||||
"description": "با انتخاب این گزینه سؤالات به صورت تصادفی نمایش داده میشوند."
|
||||
},
|
||||
{
|
||||
"label": "تعداد سوالاتی که باید نمایش داده شود:",
|
||||
"description": "تعدادی از سوالات بالا را به صورت تصادفی در آزمون نمایش میدهد"
|
||||
"label": "تعداد سؤالاتی که باید نمایش داده شوند:",
|
||||
"description": "دستهای از سؤالات را به صورت تصادفی در آزمون نمایش میدهد."
|
||||
},
|
||||
{
|
||||
"label": "آزمون به پایان رسیده",
|
||||
"label": "آزمون به پایان رسید",
|
||||
"fields": [
|
||||
{
|
||||
"label": "نمایش نتایج"
|
||||
},
|
||||
{
|
||||
"label": "دکمه نمایش راه حل"
|
||||
"label": "نمایش دکمه پاسخ صحیح"
|
||||
},
|
||||
{
|
||||
"label": "Display retry button"
|
||||
"label": "نمایش دکمه تلاش مجدد"
|
||||
},
|
||||
{
|
||||
"label": "پیام عدم وجود نتایج",
|
||||
"description": "Text displayed on end page when \"Display results\" is disabled",
|
||||
"default": "Finished"
|
||||
"description": "متن نمایش داده شده در صفحه آخر، وقتی «نمایش نتایج» غیرفعال است",
|
||||
"default": "به پایان رسید"
|
||||
},
|
||||
{
|
||||
"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": "سرصفحه بازخورد",
|
||||
"default": "نتیجه شما:",
|
||||
"description": "این سرصفحه در انتهای آزمون، وقتی کاربر به همه سؤالات پاسخ داد، نمایش داده خواهد شد."
|
||||
},
|
||||
{
|
||||
"label": "Overall Feedback",
|
||||
"label": "بازخورد سراسری",
|
||||
"fields": [
|
||||
{
|
||||
"widgets": [
|
||||
{
|
||||
"label": "Default"
|
||||
"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": "مثال: ۰ - ۲۰ ٪ نمره بد، ۲۱ - ۹۱٪ نمره متوسط، ۹۱ - ۱۰۰ ٪ نمره عالی!",
|
||||
"entity": "بازه",
|
||||
"field": {
|
||||
"fields": [
|
||||
{
|
||||
"label": "Score Range"
|
||||
"label": "بازه نمره"
|
||||
},
|
||||
{},
|
||||
{
|
||||
"label": "Feedback for defined score range",
|
||||
"placeholder": "Fill in the feedback"
|
||||
"label": "بازخورد برای بازه نمره تعریف شده",
|
||||
"placeholder": "بازخورد را پر کنید"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -170,88 +174,92 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"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": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Enable skip video button"
|
||||
"label": "ویدئو را پیش از نتایج آزمون نمایش بده"
|
||||
},
|
||||
{
|
||||
"label": "Skip video button label",
|
||||
"default": "Skip video"
|
||||
"label": "دکمه پرش از ویدئو را فعال کن"
|
||||
},
|
||||
{
|
||||
"label": "Passed video",
|
||||
"description": "This video will be played if the user successfully passed the quiz."
|
||||
"label": "برچسب دکمه پرش از ویدئو",
|
||||
"default": "پرش از ویدئو"
|
||||
},
|
||||
{
|
||||
"label": "Fail video",
|
||||
"description": "This video will be played if the user fails the quiz."
|
||||
"label": "ویدئو قبولی",
|
||||
"description": "اگر کاربر با موفقیت در آزمون قبول شود، این ویدئو پخش خواهد شد."
|
||||
},
|
||||
{
|
||||
"label": "ویدئو مردودی",
|
||||
"description": "اگر کاربر در آزمون مردود شود، این ویدئو پخش خواهد شد."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
||||
"label": "تنظیمات برای نمایش پاسخ صحیح و تلاش مجدد",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Show \"Check\" buttons",
|
||||
"description": "This option determines if the \"Check\" button will be shown for all questions."
|
||||
"label": "نمایش دکمه بررسی",
|
||||
"description": "این گزینه تعیین میکند که آیا دکمه «بررسی» برای همه سؤالها نمایش داده خواهد شد."
|
||||
},
|
||||
{
|
||||
"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": "این گزینه تعیین میکند که آیا دکمه «نمایش پاسخ صحیح» برای همه سؤالها نشان داده خواهد شد، برای همه غیرفعال خواهد شد یا برای هر سؤال تنظیم خواهد شد.",
|
||||
"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": "غیرفعال"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
@ -75,6 +75,10 @@
|
|||
"label": "Painikkeen Lopeta teksti",
|
||||
"default": "Lopeta"
|
||||
},
|
||||
{
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Edistyminen",
|
||||
"description": "Tekstiä käytetään mikäli tekstimuotoinen edistymisen näyttäminen on valittuna.",
|
||||
|
@ -204,6 +208,10 @@
|
|||
"label": "Painikkeen \"Lopeta\" teksti",
|
||||
"default": "Lopeta"
|
||||
},
|
||||
{
|
||||
"label": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Näytä video ennen tuloksia"
|
||||
},
|
||||
|
|
|
@ -75,6 +75,10 @@
|
|||
"label": "Bouton Fin",
|
||||
"default": "Terminer"
|
||||
},
|
||||
{
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Texte de progression",
|
||||
"description": "Texte utilisé si la progression textuelle a été sélectionnée.",
|
||||
|
@ -204,6 +208,10 @@
|
|||
"label": "Texte pour le bouton de fin",
|
||||
"default": "Terminer"
|
||||
},
|
||||
{
|
||||
"label": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Afficher une vidéo avant l'affichage des résultats du quiz"
|
||||
},
|
||||
|
|
|
@ -0,0 +1,269 @@
|
|||
{
|
||||
"semantics": [
|
||||
{
|
||||
"label": "Quiz introduction",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Display introduction"
|
||||
},
|
||||
{
|
||||
"label": "Title",
|
||||
"description": "This title will be displayed above the introduction text."
|
||||
},
|
||||
{
|
||||
"label": "Introduction text",
|
||||
"description": "This text will be displayed before the quiz starts."
|
||||
},
|
||||
{
|
||||
"label": "Start button text",
|
||||
"default": "Tosaigh Tráth na gCeist."
|
||||
},
|
||||
{
|
||||
"label": "Background image",
|
||||
"description": "An optional background image for the introduction."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Background image",
|
||||
"description": "An optional background image for the Question set."
|
||||
},
|
||||
{
|
||||
"label": "Progress indicator",
|
||||
"description": "Question set progress indicator style.",
|
||||
"options": [
|
||||
{
|
||||
"label": "Textual"
|
||||
},
|
||||
{
|
||||
"label": "Dots"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Pass percentage",
|
||||
"description": "Percentage of Total score required for passing the quiz."
|
||||
},
|
||||
{
|
||||
"label": "Questions",
|
||||
"widgets": [
|
||||
{
|
||||
"label": "Default"
|
||||
},
|
||||
{
|
||||
"label": "Textual"
|
||||
}
|
||||
],
|
||||
"entity": "question",
|
||||
"field": {
|
||||
"label": "Question type",
|
||||
"description": "Library for this question."
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "Interface texts in quiz",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Back button",
|
||||
"default": "Previous question"
|
||||
},
|
||||
{
|
||||
"label": "Next button",
|
||||
"default": "Next question"
|
||||
},
|
||||
{
|
||||
"label": "Finish button",
|
||||
"default": "Críochnaigh"
|
||||
},
|
||||
{
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Progress text",
|
||||
"description": "Text used if textual progress is selected.",
|
||||
"default": "Ceist: @current as @total"
|
||||
},
|
||||
{
|
||||
"label": "Label for jumping to a certain question",
|
||||
"description": "You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
|
||||
"default": "Question %d of %total"
|
||||
},
|
||||
{
|
||||
"label": "Copyright dialog question label",
|
||||
"default": "Question"
|
||||
},
|
||||
{
|
||||
"label": "Readspeaker progress",
|
||||
"description": "May use @current and @total question variables",
|
||||
"default": "Question @current of @total"
|
||||
},
|
||||
{
|
||||
"label": "Unanswered question text",
|
||||
"default": "Unanswered"
|
||||
},
|
||||
{
|
||||
"label": "Answered question text",
|
||||
"default": "Freagartha"
|
||||
},
|
||||
{
|
||||
"label": "Current question text",
|
||||
"default": "An cheist seo"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Disable backwards navigation",
|
||||
"description": "This option will only allow you to move forward in Question Set"
|
||||
},
|
||||
{
|
||||
"label": "Randomize questions",
|
||||
"description": "Enable to randomize the order of questions on display."
|
||||
},
|
||||
{
|
||||
"label": "Number of questions to be shown:",
|
||||
"description": "Create a randomized batch of questions from the total."
|
||||
},
|
||||
{
|
||||
"label": "Quiz finished",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Display results"
|
||||
},
|
||||
{
|
||||
"label": "Display solution button"
|
||||
},
|
||||
{
|
||||
"label": "Display retry button"
|
||||
},
|
||||
{
|
||||
"label": "No results message",
|
||||
"description": "Text displayed on end page when \"Display results\" is disabled",
|
||||
"default": "Críochnaighe"
|
||||
},
|
||||
{
|
||||
"label": "Feedback heading",
|
||||
"default": "Do thoradh:",
|
||||
"description": "This heading will be displayed at the end of the quiz when the user has answered all questions."
|
||||
},
|
||||
{
|
||||
"label": "Overall Feedback",
|
||||
"fields": [
|
||||
{
|
||||
"widgets": [
|
||||
{
|
||||
"label": "Default"
|
||||
}
|
||||
],
|
||||
"label": "Define custom feedback for any score range",
|
||||
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
||||
"entity": "range",
|
||||
"field": {
|
||||
"fields": [
|
||||
{
|
||||
"label": "Score Range"
|
||||
},
|
||||
{},
|
||||
{
|
||||
"label": "Feedback for defined score range",
|
||||
"placeholder": "Fill in the feedback"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Old Feedback",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Quiz passed greeting",
|
||||
"description": "This text will be displayed above the score if the user has successfully passed the quiz."
|
||||
},
|
||||
{
|
||||
"label": "Passed comment",
|
||||
"description": "This comment will be displayed after the score if the user has successfully passed the quiz."
|
||||
},
|
||||
{
|
||||
"label": "Quiz failed title",
|
||||
"description": "This text will be displayed above the score if the user has failed the quiz."
|
||||
},
|
||||
{
|
||||
"label": "Failed comment",
|
||||
"description": "This comment will be displayed after the score if the user has failed the quiz."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Solution button label",
|
||||
"default": "Taispeáin an freagra",
|
||||
"description": "Text for the solution button."
|
||||
},
|
||||
{
|
||||
"label": "Retry button label",
|
||||
"default": "Triail arís",
|
||||
"description": "Text for the retry button."
|
||||
},
|
||||
{
|
||||
"label": "Finish button text",
|
||||
"default": "Críochnaigh"
|
||||
},
|
||||
{
|
||||
"label": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Display video before quiz results"
|
||||
},
|
||||
{
|
||||
"label": "Enable skip video button"
|
||||
},
|
||||
{
|
||||
"label": "Skip video button label",
|
||||
"default": "Scipeáil físeán"
|
||||
},
|
||||
{
|
||||
"label": "Passed video",
|
||||
"description": "This video will be played if the user successfully passed the quiz."
|
||||
},
|
||||
{
|
||||
"label": "Fail video",
|
||||
"description": "This video will be played if the user fails the quiz."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Settings for \"Seiceáil\", \"Taispeáin an freagra\" and \"Retry\" buttons",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Show \"Seiceáil\" buttons",
|
||||
"description": "This option determines if the \"Seiceáil\" button will be shown for all questions."
|
||||
},
|
||||
{
|
||||
"label": "Override \"Taispeáin an freagra\" button",
|
||||
"description": "This option determines if the \"Taispeáin an freagra\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
||||
"options": [
|
||||
{
|
||||
"label": "Enabled"
|
||||
},
|
||||
{
|
||||
"label": "Disabled"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Override \"Retry\" button",
|
||||
"description": "This option determines if the \"Retry\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
||||
"options": [
|
||||
{
|
||||
"label": "Enabled"
|
||||
},
|
||||
{
|
||||
"label": "Disabled"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,269 @@
|
|||
{
|
||||
"semantics": [
|
||||
{
|
||||
"label": "Introdución ao cuestionario",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Amosar introdución"
|
||||
},
|
||||
{
|
||||
"label": "Título",
|
||||
"description": "Este título amosarase enriba do texto de introdución."
|
||||
},
|
||||
{
|
||||
"label": "Texto de introdución",
|
||||
"description": "Este texto amosarase antes de que empece o questionario."
|
||||
},
|
||||
{
|
||||
"label": "Texto para o botón empezar",
|
||||
"default": "Empezar o Cuestionario"
|
||||
},
|
||||
{
|
||||
"label": "Imaxe de fondo",
|
||||
"description": "Unha imaxe de fondo opcional para a introdución."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Imaxe de fondo",
|
||||
"description": "Unha imaxe de fondo opcional para o grupo de preguntas."
|
||||
},
|
||||
{
|
||||
"label": "Indicador de progreso",
|
||||
"description": "Estilo do indicador de progreso para o grupo de preguntas.",
|
||||
"options": [
|
||||
{
|
||||
"label": "Textual"
|
||||
},
|
||||
{
|
||||
"label": "Puntos"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Porcentaxe para aprobar",
|
||||
"description": "Porcentaxe da puntuación total requirida para aprobar o cuestionario."
|
||||
},
|
||||
{
|
||||
"label": "Preguntas",
|
||||
"widgets": [
|
||||
{
|
||||
"label": "Por defecto"
|
||||
},
|
||||
{
|
||||
"label": "Textual"
|
||||
}
|
||||
],
|
||||
"entity": "pregunta",
|
||||
"field": {
|
||||
"label": "Tipo de pregunta",
|
||||
"description": "Biblioteca para esta pregunta."
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "Textos da interface no cuestionario",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Botón atrás",
|
||||
"default": "Pregunta anterior"
|
||||
},
|
||||
{
|
||||
"label": "Botón seguinte",
|
||||
"default": "Pregunta seguinte"
|
||||
},
|
||||
{
|
||||
"label": "Botón rematar",
|
||||
"default": "Rematar"
|
||||
},
|
||||
{
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Texto de progreso",
|
||||
"description": "Texto usado ao seleccionar progreso textual.",
|
||||
"default": "Pregunta: @current de @total preguntas"
|
||||
},
|
||||
{
|
||||
"label": "Etiqueta para saltar a unha pregunta determinada",
|
||||
"description": "Debes usar o marcador '%d' en lugar do número da pregunta, e %total en lugar do número total de preguntas.",
|
||||
"default": "Pregunta %d de %total"
|
||||
},
|
||||
{
|
||||
"label": "Etiqueta para o diálogo de Copyright da pregunta",
|
||||
"default": "Pregunta"
|
||||
},
|
||||
{
|
||||
"label": "Progreso do lector de pantalla",
|
||||
"description": "Pódense usar as variables de pregunta @current e @total",
|
||||
"default": "Pregunta @current de @total"
|
||||
},
|
||||
{
|
||||
"label": "Texto para preguntas non contestadas",
|
||||
"default": "Non contestada"
|
||||
},
|
||||
{
|
||||
"label": "Texto para preguntas contestadas",
|
||||
"default": "Contestada"
|
||||
},
|
||||
{
|
||||
"label": "Texto para a pregunta actual",
|
||||
"default": "Pregunta actual"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Desactivar a navegación cara atrás",
|
||||
"description": "Este opción só permitirá o desprazamento cara adiante no Conxunto de Preguntas"
|
||||
},
|
||||
{
|
||||
"label": "Aleatorizar as preguntas",
|
||||
"description": "Activar para facer aleatoria a orde das preguntas amosadas."
|
||||
},
|
||||
{
|
||||
"label": "Número de preguntas amosadas:",
|
||||
"description": "Crea un grupo de preguntas aleatorias do total de preguntas."
|
||||
},
|
||||
{
|
||||
"label": "Cuestionario rematado",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Amosar resultados"
|
||||
},
|
||||
{
|
||||
"label": "Amosar botón de solución"
|
||||
},
|
||||
{
|
||||
"label": "Amosar o botón reintentar"
|
||||
},
|
||||
{
|
||||
"label": "Mensaxe para resultado non atopado",
|
||||
"description": "Texto amosado ao final da páxina cando \"Amosar resultados\" está desactivado",
|
||||
"default": "Rematado"
|
||||
},
|
||||
{
|
||||
"label": "Cabeceira da retroalimentación",
|
||||
"default": "O teu resultado:",
|
||||
"description": "Amosarase esta cabeceira ao final do cuestionario cando o usuario acabe de contestar todas as preguntas."
|
||||
},
|
||||
{
|
||||
"label": "Retroalimentación Xeral",
|
||||
"fields": [
|
||||
{
|
||||
"widgets": [
|
||||
{
|
||||
"label": "Por defecto"
|
||||
}
|
||||
],
|
||||
"label": "Define a retroalimentación personalizada para calquera rango de puntuación",
|
||||
"description": "Exemplo: 0-20% Puntuación mala, 21-91% Puntuación media, 91-100% Puntuación xenial!",
|
||||
"entity": "rango",
|
||||
"field": {
|
||||
"fields": [
|
||||
{
|
||||
"label": "Rango de puntuación"
|
||||
},
|
||||
{},
|
||||
{
|
||||
"label": "Retroalimentación para o rango de puntuación definido",
|
||||
"placeholder": "Escribe a retroalimentación"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Antiga Retroalimentación",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Título para cuestionario aprobado",
|
||||
"description": "Amosarase este texto enriba da puntuación se o ususario aproba o cuestionario."
|
||||
},
|
||||
{
|
||||
"label": "Comentario para aprobado",
|
||||
"description": "Este comentario amosarase despois da puntuación se o usuario aproba o cuestionario."
|
||||
},
|
||||
{
|
||||
"label": "Título para cuestionario non aprobado",
|
||||
"description": "Este texto amosarase enriba da puntuación se o usuario non aproba o cuestionario."
|
||||
},
|
||||
{
|
||||
"label": "Comentario para non a probado",
|
||||
"description": "Este comentario amosarase despois da puntuación seo usuario non aproba o cuestionario."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Etiqueta do botón da solución",
|
||||
"default": "Amosar a solución",
|
||||
"description": "Texto para o botón da solución."
|
||||
},
|
||||
{
|
||||
"label": "Etiqueta para o botón reintentar",
|
||||
"default": "Reintentar",
|
||||
"description": "Texto para o botón reintentar."
|
||||
},
|
||||
{
|
||||
"label": "Texto para o botón rematar",
|
||||
"default": "Rematar"
|
||||
},
|
||||
{
|
||||
"label": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Amosar vídeo antes dos resultados do cuestionario"
|
||||
},
|
||||
{
|
||||
"label": "Activar botón saltar vídeo"
|
||||
},
|
||||
{
|
||||
"label": "Etiqueta para o botón saltar vídeo",
|
||||
"default": "Saltar vídeo"
|
||||
},
|
||||
{
|
||||
"label": "Vídeo para aprobados",
|
||||
"description": "Reproducirase este vídeo se o usuario aproba o cuestionario."
|
||||
},
|
||||
{
|
||||
"label": "Vídeo para non aprobados",
|
||||
"description": "Reproducirase este vídeo se o usuario non aproba o cuestionario."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Configuración para os botóns \"Amosar solución\" e \"Reintentar\"",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Amosar botóns \"Comprobar\"",
|
||||
"description": "Esta opción determina se se amosa o botón \"Comprobar\" para todas as preguntas."
|
||||
},
|
||||
{
|
||||
"label": "Anular botón \"Amosar solución\"",
|
||||
"description": "Esta opción determina se se amosa o botón \"Amosar solución\" para todas as preguntas, se desactiva para todas ou se configura para cada unha individualmente.",
|
||||
"options": [
|
||||
{
|
||||
"label": "Activado"
|
||||
},
|
||||
{
|
||||
"label": "Desactivado"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Anular botón \"Reintentar\"",
|
||||
"description": "Esta opción determina se se amosa o botón \"Reintentar\" para todas as preguntas, se desactíva para todas ou se configura para cada unha individualmente.",
|
||||
"options": [
|
||||
{
|
||||
"label": "Activado"
|
||||
},
|
||||
{
|
||||
"label": "Desactivado"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
|
@ -8,29 +8,29 @@
|
|||
},
|
||||
{
|
||||
"label": "כותרת",
|
||||
"description": "כותרת זו תוצג מעל תיאור המבוא"
|
||||
"description": "כותרת זו תוצג מעל תיאור המבוא."
|
||||
},
|
||||
{
|
||||
"label": "תיאור מבוא",
|
||||
"description": "תיאור זה יוצג לפני שהחידון מתחיל"
|
||||
"description": "תיאור זה יוצג לפני שהחידון מתחיל."
|
||||
},
|
||||
{
|
||||
"label": "תיאור כפתור ההתחלה ",
|
||||
"label": "תיאור כפתור ההתחלה",
|
||||
"default": "התחילו את החידון"
|
||||
},
|
||||
{
|
||||
"label": "תמונת רקע",
|
||||
"description": "תמונת רקע אפשרית למבוא"
|
||||
"description": "תמונת רקע אפשרית למבוא."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "תמונת רקע",
|
||||
"description": "תמונת רקע אפשרית עבור הגדרות השאלה"
|
||||
"description": "תמונת רקע אפשרית עבור הגדרות השאלה."
|
||||
},
|
||||
{
|
||||
"label": "מחוון התקדמות",
|
||||
"description": "הגדרות שאלה מסוג מחוון התקדמות",
|
||||
"description": "הגדרות שאלה מסוג מחוון התקדמות.",
|
||||
"options": [
|
||||
{
|
||||
"label": "מילולי"
|
||||
|
@ -57,7 +57,7 @@
|
|||
"entity": "שאלה",
|
||||
"field": {
|
||||
"label": "סוג שאלה",
|
||||
"description": "ספריה עבור שאלה זו"
|
||||
"description": "ספריה עבור שאלה זו."
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -75,10 +75,14 @@
|
|||
"label": "כפתור סיום",
|
||||
"default": "סיום"
|
||||
},
|
||||
{
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "תוכן מתקדם",
|
||||
"description": "תוכן שבו נעשה שימוש אם תוכן מתקדם נבחר",
|
||||
"default": ""
|
||||
"description": "תוכן שבו נעשה שימוש אם תוכן מתקדם נבחר.",
|
||||
"default": "שאלה: current@ מתוך total@ שאלות"
|
||||
},
|
||||
{
|
||||
"label": "תווית עבור קפיצה לשאלה מסוימת",
|
||||
|
@ -91,7 +95,7 @@
|
|||
},
|
||||
{
|
||||
"label": "Readspeaker progress",
|
||||
"description": "May use @current and @total question variables",
|
||||
"description": "ניתן להשתמש במשתני השאלה current@ ו- total@",
|
||||
"default": "שאלה @current מתוך @total"
|
||||
},
|
||||
{
|
||||
|
@ -110,15 +114,15 @@
|
|||
},
|
||||
{
|
||||
"label": "ניווט קדימה בלבד",
|
||||
"description": "הגדרה מאפשרת התקדמות ומעבר לשאלה הבאה בלבד."
|
||||
"description": "הגדרה מאפשרת התקדמות ומעבר לשאלה הבאה בלבד"
|
||||
},
|
||||
{
|
||||
"label": "שאלות אקראיות",
|
||||
"description": "מאפשר תצוגת סדר השאלות באופן אקראי"
|
||||
"description": "מאפשר תצוגת סדר השאלות באופן אקראי."
|
||||
},
|
||||
{
|
||||
"label": "מספר השאלות שיוצגו:",
|
||||
"description": "יצירת סדרה של שאלות אקראיות מסך כל השאלות"
|
||||
"description": "יצירת סדרה של שאלות אקראיות מסך כל השאלות."
|
||||
},
|
||||
{
|
||||
"label": "החידון הסתיים",
|
||||
|
@ -130,7 +134,7 @@
|
|||
"label": "כפתור הצגת הפתרון"
|
||||
},
|
||||
{
|
||||
"label": "Display retry button"
|
||||
"label": "הצגת כפתור \"נסו שוב\""
|
||||
},
|
||||
{
|
||||
"label": "אין הודעת תוצאות",
|
||||
|
@ -140,7 +144,7 @@
|
|||
{
|
||||
"label": "כותרת המשוב",
|
||||
"default": "התוצאה שלכם:",
|
||||
"description": "כותרת זו תוצג בסיום החידון כאשר הנבחן ענה על כל השאלות"
|
||||
"description": "כותרת זו תוצג בסיום החידון כאשר הנבחן ענה על כל השאלות."
|
||||
},
|
||||
{
|
||||
"label": "משוב כולל",
|
||||
|
@ -152,7 +156,7 @@
|
|||
}
|
||||
],
|
||||
"label": "יש להגדיר משוב מותאם אישית לכל טווח ניקוד",
|
||||
"description": "לדוגמא:0-20% ציון לא טוב,21-91% ציון ממוצע,91-100% ציון מעולה!\"",
|
||||
"description": "לדוגמא:0-20% ציון לא טוב,21-91% ציון ממוצע,91-100% ציון מעולה!",
|
||||
"entity": "טווח",
|
||||
"field": {
|
||||
"fields": [
|
||||
|
@ -174,36 +178,40 @@
|
|||
"fields": [
|
||||
{
|
||||
"label": "ברכת הצלחה בחידון",
|
||||
"description": "תוכן זה יוצג מעל הניקוד אם הנבחן עבר בהצלחה את החידון"
|
||||
"description": "תוכן זה יוצג מעל הניקוד אם הנבחן עבר בהצלחה את החידון."
|
||||
},
|
||||
{
|
||||
"label": "הערה עבור הצלחה בחידון ",
|
||||
"description": "הערה זו תוצג מעל הניקוד, אם הנבחן עבר בהצלחה את החידון"
|
||||
"label": "הערה עבור הצלחה בחידון",
|
||||
"description": "הערה זו תוצג מעל הניקוד, אם הנבחן עבר בהצלחה את החידון."
|
||||
},
|
||||
{
|
||||
"label": "כותרת כשלון בחידון",
|
||||
"description": "תוכן זה יוצג מעל הניקוד אם הנבחן נכשל בחידון"
|
||||
"description": "תוכן זה יוצג מעל הניקוד אם הנבחן נכשל בחידון."
|
||||
},
|
||||
{
|
||||
"label": "הערה עבור כשלון בחידון",
|
||||
"description": "הערה זו תוצג מעל הניקוד, אם הנבחן נכשל בחידון"
|
||||
"description": "הערה זו תוצג מעל הניקוד, אם הנבחן נכשל בחידון."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "\"תווית כפתור \"הפתרון",
|
||||
"default": "הציגו פתרון",
|
||||
"description": "\"תוכן עבור כפתור \"הפתרון"
|
||||
"description": "תאור עבור כפתור \"הפתרון\"."
|
||||
},
|
||||
{
|
||||
"label": "תווית כפתור נסו שוב",
|
||||
"default": "נסו בשנית",
|
||||
"description": "\"תוכן עבור כפתור \"נסו שוב"
|
||||
"description": "תוכן עבור כפתור \"נסו שוב\"."
|
||||
},
|
||||
{
|
||||
"label": "\"תוכן כפתור \"סיום",
|
||||
"default": "סיום"
|
||||
},
|
||||
{
|
||||
"label": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "יש להציג וידאו לפני תוצאות החידון"
|
||||
},
|
||||
|
@ -216,11 +224,11 @@
|
|||
},
|
||||
{
|
||||
"label": "וידאו של הצלחה בחידון",
|
||||
"description": "וידאו זה יופעל במידה והנבחן יעבור בהצלחה את החידון"
|
||||
"description": "וידאו זה יופעל במידה והנבחן יעבור בהצלחה את החידון."
|
||||
},
|
||||
{
|
||||
"label": "וידאו של כישלון בחידון",
|
||||
"description": "וידאו זה יופעל במידה והנבחן יכשל בחידון"
|
||||
"description": "סרטון זה יופעל במידה והנבחן ייכשל בחידון."
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -228,12 +236,12 @@
|
|||
"label": "הגדרות עבור כפתורי \"הציגו פתרון\" ו \"נסו בשנית\"",
|
||||
"fields": [
|
||||
{
|
||||
"label": "הציגו כפתורי \"נבחר\" ",
|
||||
"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": "אפשרות זו קובעת האם הכפתור \"הצגת פתרון\" יוצג עבור כל השאלות, יכובה לכולן או יוגדר לכל שאלה בנפרד.",
|
||||
"options": [
|
||||
{
|
||||
"label": "פעיל"
|
||||
|
@ -245,7 +253,7 @@
|
|||
},
|
||||
{
|
||||
"label": "עדכון כפתור \"נסו שוב\"",
|
||||
"description": "אפשרות זו קובעת אם הכפתור \"נסו שוב\" יוצג עבור כל השאלות, יושבת עבור כל השאלות או יוגדר עבור כל שאלה בנפרד.\n",
|
||||
"description": "אפשרות זו קובעת אם הכפתור \"נסו שוב\" יוצג עבור כל השאלות, יושבת עבור כל השאלות או יוגדר עבור כל שאלה בנפרד.",
|
||||
"options": [
|
||||
{
|
||||
"label": "פעיל"
|
||||
|
|
|
@ -75,6 +75,10 @@
|
|||
"label": "Finish button",
|
||||
"default": "Finish"
|
||||
},
|
||||
{
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Progress text",
|
||||
"description": "Text used if textual progress is selected.",
|
||||
|
@ -204,6 +208,10 @@
|
|||
"label": "Finish button text",
|
||||
"default": "Finish"
|
||||
},
|
||||
{
|
||||
"label": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Display video before quiz results"
|
||||
},
|
||||
|
|
|
@ -75,6 +75,10 @@
|
|||
"label": "Pulsante fine",
|
||||
"default": "Finito"
|
||||
},
|
||||
{
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Testo di avanzamento",
|
||||
"description": "Testo usato se è selezionato l'avanzamento testuale",
|
||||
|
@ -204,6 +208,10 @@
|
|||
"label": "Testo del pulsante di fine prova",
|
||||
"default": "Finito"
|
||||
},
|
||||
{
|
||||
"label": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Mostra il video prima dei risultati della prova"
|
||||
},
|
||||
|
|
|
@ -75,6 +75,10 @@
|
|||
"label": "完了ボタン",
|
||||
"default": "完了"
|
||||
},
|
||||
{
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "進行状況のテキスト",
|
||||
"description": "テキストによる進行状況を選択した場合に使用するテキスト。",
|
||||
|
@ -204,6 +208,10 @@
|
|||
"label": "完了ボタンのテキスト",
|
||||
"default": "完了"
|
||||
},
|
||||
{
|
||||
"label": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "クイズの結果の前にビデオを表示"
|
||||
},
|
||||
|
|
|
@ -0,0 +1,269 @@
|
|||
{
|
||||
"semantics": [
|
||||
{
|
||||
"label": "Quiz introduction",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Display introduction"
|
||||
},
|
||||
{
|
||||
"label": "Title",
|
||||
"description": "This title will be displayed above the introduction text."
|
||||
},
|
||||
{
|
||||
"label": "Introduction text",
|
||||
"description": "This text will be displayed before the quiz starts."
|
||||
},
|
||||
{
|
||||
"label": "Start button text",
|
||||
"default": "ចាប់ផ្តើមកម្រងសំណួរ"
|
||||
},
|
||||
{
|
||||
"label": "Background image",
|
||||
"description": "An optional background image for the introduction."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Background image",
|
||||
"description": "An optional background image for the Question set."
|
||||
},
|
||||
{
|
||||
"label": "Progress indicator",
|
||||
"description": "Question set progress indicator style.",
|
||||
"options": [
|
||||
{
|
||||
"label": "Textual"
|
||||
},
|
||||
{
|
||||
"label": "Dots"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Pass percentage",
|
||||
"description": "Percentage of Total score required for passing the quiz."
|
||||
},
|
||||
{
|
||||
"label": "Questions",
|
||||
"widgets": [
|
||||
{
|
||||
"label": "Default"
|
||||
},
|
||||
{
|
||||
"label": "Textual"
|
||||
}
|
||||
],
|
||||
"entity": "question",
|
||||
"field": {
|
||||
"label": "Question type",
|
||||
"description": "Library for this question."
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "Interface texts in quiz",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Back button",
|
||||
"default": "សំណួរមុន"
|
||||
},
|
||||
{
|
||||
"label": "Next button",
|
||||
"default": "សំណួរបន្ទាប់"
|
||||
},
|
||||
{
|
||||
"label": "Finish button",
|
||||
"default": "បញ្ចប់"
|
||||
},
|
||||
{
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Progress text",
|
||||
"description": "Text used if textual progress is selected.",
|
||||
"default": "សំណួរ: @current ចំណោម @total សំណួរ"
|
||||
},
|
||||
{
|
||||
"label": "Label for jumping to a certain question",
|
||||
"description": "You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.",
|
||||
"default": "សំណួរទី %d ចំណោម %total"
|
||||
},
|
||||
{
|
||||
"label": "Copyright dialog question label",
|
||||
"default": "សំណួរ"
|
||||
},
|
||||
{
|
||||
"label": "Readspeaker progress",
|
||||
"description": "May use @current and @total question variables",
|
||||
"default": "សំណួរទី @current ចំណោម @total"
|
||||
},
|
||||
{
|
||||
"label": "Unanswered question text",
|
||||
"default": "មិនបានឆ្លើយ"
|
||||
},
|
||||
{
|
||||
"label": "Answered question text",
|
||||
"default": "បានឆ្លើយ"
|
||||
},
|
||||
{
|
||||
"label": "Current question text",
|
||||
"default": "សំណួរបច្ចុប្បន្ន"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Disable backwards navigation",
|
||||
"description": "This option will only allow you to move forward in Question Set"
|
||||
},
|
||||
{
|
||||
"label": "Randomize questions",
|
||||
"description": "Enable to randomize the order of questions on display."
|
||||
},
|
||||
{
|
||||
"label": "Number of questions to be shown:",
|
||||
"description": "Create a randomized batch of questions from the total."
|
||||
},
|
||||
{
|
||||
"label": "Quiz finished",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Display results"
|
||||
},
|
||||
{
|
||||
"label": "Display solution button"
|
||||
},
|
||||
{
|
||||
"label": "Display retry button"
|
||||
},
|
||||
{
|
||||
"label": "No results message",
|
||||
"description": "Text displayed on end page when \"Display results\" is disabled",
|
||||
"default": "បានបញ្ចប់"
|
||||
},
|
||||
{
|
||||
"label": "Feedback heading",
|
||||
"default": "លទ្ធផលរបស់អ្នក:",
|
||||
"description": "This heading will be displayed at the end of the quiz when the user has answered all questions."
|
||||
},
|
||||
{
|
||||
"label": "Overall Feedback",
|
||||
"fields": [
|
||||
{
|
||||
"widgets": [
|
||||
{
|
||||
"label": "Default"
|
||||
}
|
||||
],
|
||||
"label": "Define custom feedback for any score range",
|
||||
"description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
|
||||
"entity": "range",
|
||||
"field": {
|
||||
"fields": [
|
||||
{
|
||||
"label": "Score Range"
|
||||
},
|
||||
{},
|
||||
{
|
||||
"label": "Feedback for defined score range",
|
||||
"placeholder": "Fill in the feedback"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Old Feedback",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Quiz passed greeting",
|
||||
"description": "This text will be displayed above the score if the user has successfully passed the quiz."
|
||||
},
|
||||
{
|
||||
"label": "Passed comment",
|
||||
"description": "This comment will be displayed after the score if the user has successfully passed the quiz."
|
||||
},
|
||||
{
|
||||
"label": "Quiz failed title",
|
||||
"description": "This text will be displayed above the score if the user has failed the quiz."
|
||||
},
|
||||
{
|
||||
"label": "Failed comment",
|
||||
"description": "This comment will be displayed after the score if the user has failed the quiz."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Solution button label",
|
||||
"default": "បង្ហាញចម្លើយត្រឹមត្រូវ",
|
||||
"description": "Text for the solution button."
|
||||
},
|
||||
{
|
||||
"label": "Retry button label",
|
||||
"default": "សាកម្តងទៀត",
|
||||
"description": "Text for the retry button."
|
||||
},
|
||||
{
|
||||
"label": "Finish button text",
|
||||
"default": "បញ្ចប់"
|
||||
},
|
||||
{
|
||||
"label": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Display video before quiz results"
|
||||
},
|
||||
{
|
||||
"label": "Enable skip video button"
|
||||
},
|
||||
{
|
||||
"label": "Skip video button label",
|
||||
"default": "រំលងវីដេអូ"
|
||||
},
|
||||
{
|
||||
"label": "Passed video",
|
||||
"description": "This video will be played if the user successfully passed the quiz."
|
||||
},
|
||||
{
|
||||
"label": "Fail video",
|
||||
"description": "This video will be played if the user fails the quiz."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Show \"Check\" buttons",
|
||||
"description": "This option determines if the \"Check\" button will be shown for all questions."
|
||||
},
|
||||
{
|
||||
"label": "Override \"Show Solution\" button",
|
||||
"description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
||||
"options": [
|
||||
{
|
||||
"label": "Enabled"
|
||||
},
|
||||
{
|
||||
"label": "Disabled"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Override \"Retry\" button",
|
||||
"description": "This option determines if the \"Retry\" button will be shown for all questions, disabled for all or configured for each question individually.",
|
||||
"options": [
|
||||
{
|
||||
"label": "Enabled"
|
||||
},
|
||||
{
|
||||
"label": "Disabled"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
224
language/ko.json
224
language/ko.json
|
@ -1,168 +1,172 @@
|
|||
{
|
||||
"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": "점 유형"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"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": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"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": "텍스트형 진행률을 선택한 경우 사용되는 글자.",
|
||||
"default": "Question: 총 @total 질문 중 현재 @current"
|
||||
},
|
||||
{
|
||||
"label": "Copyright dialog question label",
|
||||
"default": "Question"
|
||||
"label": "특정 문제로 이동을 위한 라벨",
|
||||
"description": "문항 번호 대신 자리 표시자 '%d'를 사용해야 하며, 총 문제 수 대신 %total을 사용해야 한다.",
|
||||
"default": "%total 중 %d 문제"
|
||||
},
|
||||
{
|
||||
"label": "Readspeaker progress",
|
||||
"description": "May use @current and @total question variables",
|
||||
"default": "Question @current of @total"
|
||||
"label": "저작권 대화 문제 라벨",
|
||||
"default": "문제"
|
||||
},
|
||||
{
|
||||
"label": "Unanswered question text",
|
||||
"default": "Unanswered"
|
||||
"label": "자동 문장 읽어 주기 기능에서 진행율",
|
||||
"description": "@current 및 @total 문제 변수를 사용할 수 있음",
|
||||
"default": "총 @total 중 현재 @current 질문"
|
||||
},
|
||||
{
|
||||
"label": "Answered question text",
|
||||
"default": "Answered"
|
||||
"label": "미답변 문제 텍스트",
|
||||
"default": "답변되지 않음"
|
||||
},
|
||||
{
|
||||
"label": "Current question text",
|
||||
"default": "Current question"
|
||||
"label": "답변 문제 텍스트",
|
||||
"default": "답변됨"
|
||||
},
|
||||
{
|
||||
"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": "Display retry button"
|
||||
"label": "재시도 버튼 표시"
|
||||
},
|
||||
{
|
||||
"label": "No results message",
|
||||
"description": "Text displayed on end page when \"Display results\" is disabled",
|
||||
"default": "Finished"
|
||||
"label": "결과 메시지 없음",
|
||||
"description": "\"Display results\"가 비활성화된 경우 끝 페이지에 표시되는 텍스트",
|
||||
"default": "완료"
|
||||
},
|
||||
{
|
||||
"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": "피드백 제목",
|
||||
"default": "결과:",
|
||||
"description": "이 제목은 사용자가 모든 질문에 답했을 때 퀴즈 끝에 표시됨."
|
||||
},
|
||||
{
|
||||
"label": "Overall Feedback",
|
||||
"label": "전반적인 피드백",
|
||||
"fields": [
|
||||
{
|
||||
"widgets": [
|
||||
{
|
||||
"label": "Default"
|
||||
"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": "피드백 작성"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -170,88 +174,92 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"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": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Enable skip video button"
|
||||
"label": "퀴즈 결과 전에 비디오 표시"
|
||||
},
|
||||
{
|
||||
"label": "Skip video button label",
|
||||
"default": "Skip video"
|
||||
"label": "비디오 건너뛰기 버튼 사용"
|
||||
},
|
||||
{
|
||||
"label": "Passed video",
|
||||
"description": "This video will be played if the user successfully passed the quiz."
|
||||
"label": "비디오 건너뛰기 버튼 레이블",
|
||||
"default": "비디오 건너뛰기"
|
||||
},
|
||||
{
|
||||
"label": "Fail video",
|
||||
"description": "This video will be played if the user fails the quiz."
|
||||
"label": "통과한 경우 비디오",
|
||||
"description": "이 동영상은 사용자가 퀴즈를 성공적으로 통과하면 재생됨."
|
||||
},
|
||||
{
|
||||
"label": "실패한 경우 비디오",
|
||||
"description": "이 동영상은 사용자가 퀴즈에 실패하면 재생됨."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
||||
"label": "\"Show solution\" 및 \"Retry\" 버튼 설정",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Show \"Check\" buttons",
|
||||
"description": "This option determines if the \"Check\" button will be shown for all questions."
|
||||
"label": "\"Check\"버튼 표시",
|
||||
"description": "이 옵션은 모든 질문에 \"Check\" 버튼이 표시될지 여부를 결정함."
|
||||
},
|
||||
{
|
||||
"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": "\"Sow Solution\" 버튼 재정의",
|
||||
"description": "이 옵션은 모든 질문에 대해 \"Show Solution\" 버튼을 표시할지 또는 각 질문에 대해 개별적으로 구성할지 결정",
|
||||
"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": "\"Retry\"버튼 재정의",
|
||||
"description": "이 옵션은 모든 질문에 대해 \"Retry\"버튼을 표시할지 아니면 모든 질문에 대해 개별적으로 구성할지 결정",
|
||||
"options": [
|
||||
{
|
||||
"label": "Enabled"
|
||||
"label": "활성화"
|
||||
},
|
||||
{
|
||||
"label": "Disabled"
|
||||
"label": "비활성화"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
@ -75,6 +75,10 @@
|
|||
"label": "Avslutt-knappen",
|
||||
"default": "Avslutt"
|
||||
},
|
||||
{
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Fremgangstekst",
|
||||
"description": "Tekst brukt hvis tekstlig angivelse av fremdrift er valgt. Variabler: @current og @total.",
|
||||
|
@ -204,6 +208,10 @@
|
|||
"label": "Avslutt knappetekst",
|
||||
"default": "Bekreft"
|
||||
},
|
||||
{
|
||||
"label": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Vis video før resultatene"
|
||||
},
|
||||
|
|
|
@ -75,6 +75,10 @@
|
|||
"label": "Beëindigings-knop",
|
||||
"default": "Klaar"
|
||||
},
|
||||
{
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Tekst bij voortgang",
|
||||
"description": "Deze tekst wordt gebruikt als 'Tekst' als voortgangsindicator is geselecteerd.",
|
||||
|
@ -130,7 +134,7 @@
|
|||
"label": "Toon de oplossings-knop"
|
||||
},
|
||||
{
|
||||
"label": "Display retry button"
|
||||
"label": "Toon opnieuw proberen-knop"
|
||||
},
|
||||
{
|
||||
"label": "Geen resultaten bericht",
|
||||
|
@ -204,6 +208,10 @@
|
|||
"label": "Tekst voor de beëindigings-knop",
|
||||
"default": "Klaar"
|
||||
},
|
||||
{
|
||||
"label": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Toon video voor de quizresultaten"
|
||||
},
|
||||
|
|
|
@ -75,6 +75,10 @@
|
|||
"label": "Avslutt-knappen",
|
||||
"default": "Bekreft"
|
||||
},
|
||||
{
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Fremgangstekst",
|
||||
"description": "Tekst brukt hvis tekstlig angivelse av fremdrift er valgt. Variabler: @current og @total",
|
||||
|
@ -92,7 +96,7 @@
|
|||
{
|
||||
"label": "Fremdriftstekst for hjelpemiddelteknologi",
|
||||
"description": "Kan bruke @current og @total variabler",
|
||||
"default": "Deloppgave @current av @total"
|
||||
"default": "Deloppgåve @current av @total"
|
||||
},
|
||||
{
|
||||
"label": "Ikke svart på spørsmål-tekst",
|
||||
|
@ -100,7 +104,7 @@
|
|||
},
|
||||
{
|
||||
"label": "Svart på spørsmål-tekst",
|
||||
"default": "Svar avgitt"
|
||||
"default": "Svar gitt"
|
||||
},
|
||||
{
|
||||
"label": "Aktivt spørsmål-tekst",
|
||||
|
@ -204,6 +208,10 @@
|
|||
"label": "Tekst til \"Avslutt\" knapp",
|
||||
"default": "Bekreft"
|
||||
},
|
||||
{
|
||||
"label": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Vis video før resultata"
|
||||
},
|
||||
|
|
|
@ -75,6 +75,10 @@
|
|||
"label": "Przycisk zakończenia",
|
||||
"default": "Zakończ"
|
||||
},
|
||||
{
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Tekst postępu",
|
||||
"description": "Ten tekst zostanie wyświetlony, jeśli wybrana zostanie opcja wyświetlania postępu tekstowo.",
|
||||
|
@ -130,7 +134,7 @@
|
|||
"label": "Przycisk wyświetlania wyników"
|
||||
},
|
||||
{
|
||||
"label": "Display retry button"
|
||||
"label": "Wyświetl przycisk powtórzenia"
|
||||
},
|
||||
{
|
||||
"label": "Informacja dla braku wyników",
|
||||
|
@ -204,6 +208,10 @@
|
|||
"label": "Etykieta przycisku zakończenia",
|
||||
"default": "Zakończ"
|
||||
},
|
||||
{
|
||||
"label": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Odtwórz wideo przed ekranem wyników"
|
||||
},
|
||||
|
|
|
@ -75,6 +75,10 @@
|
|||
"label": "Botão para terminar",
|
||||
"default": "Terminar"
|
||||
},
|
||||
{
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Texto do progresso",
|
||||
"description": "Texto a utilizar se o progresso textual estiver ativo.",
|
||||
|
@ -204,6 +208,10 @@
|
|||
"label": "Texto para o botão terminar",
|
||||
"default": "Terminar"
|
||||
},
|
||||
{
|
||||
"label": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Mostrar video antes dos resultados do questionário"
|
||||
},
|
||||
|
|
|
@ -75,6 +75,10 @@
|
|||
"label": "Finish button",
|
||||
"default": "Finish"
|
||||
},
|
||||
{
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Progress text",
|
||||
"description": "Text used if textual progress is selected.",
|
||||
|
@ -204,6 +208,10 @@
|
|||
"label": "Finish button text",
|
||||
"default": "Finish"
|
||||
},
|
||||
{
|
||||
"label": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Display video before quiz results"
|
||||
},
|
||||
|
|
|
@ -75,6 +75,10 @@
|
|||
"label": "Кнопка Завершить",
|
||||
"default": "Завершить"
|
||||
},
|
||||
{
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Текст прогресса",
|
||||
"description": "Текст, используемый, если выбран текстовый прогресс.",
|
||||
|
@ -204,6 +208,10 @@
|
|||
"label": "Текст кнопки завершения",
|
||||
"default": "Завершить"
|
||||
},
|
||||
{
|
||||
"label": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Показать видео до результатов теста"
|
||||
},
|
||||
|
|
|
@ -75,6 +75,10 @@
|
|||
"label": "Besedilo gumba \"Potrdi\"",
|
||||
"default": "Potrdi"
|
||||
},
|
||||
{
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Besedilo o napredku",
|
||||
"description": "Besedilo v primeru izbire tekstovnega indikatorja napredka.",
|
||||
|
@ -193,17 +197,21 @@
|
|||
{
|
||||
"label": "Besedilo za gumb \"Prikaži rešitev\"",
|
||||
"default": "Prikaži rešitev",
|
||||
"description": ""
|
||||
"description": "Text for the solution button."
|
||||
},
|
||||
{
|
||||
"label": "Besedilo za gumb \"Poskusi ponovno\"",
|
||||
"default": "Poskusi ponovno",
|
||||
"description": ""
|
||||
"description": "Text for the retry button."
|
||||
},
|
||||
{
|
||||
"label": "Besedilo gumba \"Potrdi\"",
|
||||
"default": "Potrdi"
|
||||
},
|
||||
{
|
||||
"label": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Predvajaj videoposnetek ob zaključku kviza"
|
||||
},
|
||||
|
|
|
@ -75,6 +75,10 @@
|
|||
"label": "Finish button",
|
||||
"default": "Finish"
|
||||
},
|
||||
{
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Progress text",
|
||||
"description": "Text used if textual progress is selected.",
|
||||
|
@ -204,6 +208,10 @@
|
|||
"label": "Finish button text",
|
||||
"default": "Finish"
|
||||
},
|
||||
{
|
||||
"label": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Display video before quiz results"
|
||||
},
|
||||
|
|
|
@ -75,6 +75,10 @@
|
|||
"label": "Finish button",
|
||||
"default": "Finish"
|
||||
},
|
||||
{
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Progress text",
|
||||
"description": "Text used if textual progress is selected.",
|
||||
|
@ -204,6 +208,10 @@
|
|||
"label": "Finish button text",
|
||||
"default": "Finish"
|
||||
},
|
||||
{
|
||||
"label": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Display video before quiz results"
|
||||
},
|
||||
|
|
|
@ -75,6 +75,10 @@
|
|||
"label": "Finish button",
|
||||
"default": "Finish"
|
||||
},
|
||||
{
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Progress text",
|
||||
"description": "Text used if textual progress is selected.",
|
||||
|
@ -204,6 +208,10 @@
|
|||
"label": "Finish button text",
|
||||
"default": "Finish"
|
||||
},
|
||||
{
|
||||
"label": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Display video before quiz results"
|
||||
},
|
||||
|
|
220
language/sr.json
220
language/sr.json
|
@ -1,168 +1,172 @@
|
|||
{
|
||||
"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": "Тачке"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"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": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"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": "Текст који се користи ако је одабран текстуални напредак.",
|
||||
"default": "Питање: @current од @total питања"
|
||||
},
|
||||
{
|
||||
"label": "Copyright dialog question label",
|
||||
"default": "Question"
|
||||
"label": "Ознака за прелазак на одређено питање",
|
||||
"description": "Морате користити резервирано место '%d' уместо броја питања и %total уместо укупне количине питања.",
|
||||
"default": "Питање %d од %total"
|
||||
},
|
||||
{
|
||||
"label": "Readspeaker progress",
|
||||
"description": "May use @current and @total question variables",
|
||||
"default": "Question @current of @total"
|
||||
"label": "Ознака са дијалогом о ауторским правима",
|
||||
"default": "Питање"
|
||||
},
|
||||
{
|
||||
"label": "Unanswered question text",
|
||||
"default": "Unanswered"
|
||||
"label": "Напредак читача звучника",
|
||||
"description": "Можете користити @current и @total променљиве",
|
||||
"default": "Питање @current од @total"
|
||||
},
|
||||
{
|
||||
"label": "Answered question text",
|
||||
"default": "Answered"
|
||||
"label": "Текст питања без одговора",
|
||||
"default": "Без одговора"
|
||||
},
|
||||
{
|
||||
"label": "Current question text",
|
||||
"default": "Current question"
|
||||
"label": "Текст питања са одговором",
|
||||
"default": "Одговорио"
|
||||
},
|
||||
{
|
||||
"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": "Display retry button"
|
||||
"label": "Прикажи дугме за поновни покушај"
|
||||
},
|
||||
{
|
||||
"label": "No results message",
|
||||
"description": "Text displayed on end page when \"Display results\" is disabled",
|
||||
"default": "Finished"
|
||||
"label": "Нема резултата",
|
||||
"description": "Текст се приказује на завршној страници када \"Прикажи резултате\" је онемогућено",
|
||||
"default": "Готово"
|
||||
},
|
||||
{
|
||||
"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": "Наслов повратне информације",
|
||||
"default": "Ваш резултат:",
|
||||
"description": "Овај наслов ће се приказати на крају квиза када корисник одговори на сва питања."
|
||||
},
|
||||
{
|
||||
"label": "Overall Feedback",
|
||||
"label": "Укупне повратне информације",
|
||||
"fields": [
|
||||
{
|
||||
"widgets": [
|
||||
{
|
||||
"label": "Default"
|
||||
"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": "Попуните повратне информације"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -170,88 +174,92 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"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": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Enable skip video button"
|
||||
"label": "Прикажите видео пре резултата квиза"
|
||||
},
|
||||
{
|
||||
"label": "Skip video button label",
|
||||
"default": "Skip video"
|
||||
"label": "Омогући дугме за прескакање видео записа"
|
||||
},
|
||||
{
|
||||
"label": "Passed video",
|
||||
"description": "This video will be played if the user successfully passed the quiz."
|
||||
"label": "Ознака за прескакање видеа",
|
||||
"default": "Прескочи видео"
|
||||
},
|
||||
{
|
||||
"label": "Fail video",
|
||||
"description": "This video will be played if the user fails the quiz."
|
||||
"label": "Видео је прошао",
|
||||
"description": "Овај видео ће се репродуковати ако је корисник успешно прошао квиз."
|
||||
},
|
||||
{
|
||||
"label": "Неуспели видео",
|
||||
"description": "Овај видео ће се репродуковати ако корисник није прошао квиз."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
||||
"label": "Подешавања за \"Прикажи решења\" и \"Врати\" дугмиће",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Show \"Check\" buttons",
|
||||
"description": "This option determines if the \"Check\" button will be shown for all questions."
|
||||
"label": "Прикажи \"Провери\" дугме",
|
||||
"description": "Ова опција одређује да ли ће \"Провери\" дугме ће бити приказано за сва питања."
|
||||
},
|
||||
{
|
||||
"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": "Ова опција одређује да ли ће \"Прикажи решења\" дугме бити приказано за сва питања, онемогућено за сва или конфигурисано за свако питање појединачно.",
|
||||
"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": "Онемогући"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"semantics": [
|
||||
{
|
||||
"label": "Quiz introduktion",
|
||||
"label": "Introduktion",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Visa introduktion"
|
||||
|
@ -75,6 +75,10 @@
|
|||
"label": "Avsluta-knapp",
|
||||
"default": "Avsluta"
|
||||
},
|
||||
{
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Text för framsteg",
|
||||
"description": "Text som används om textuella framsteg är valt.",
|
||||
|
@ -130,7 +134,7 @@
|
|||
"label": "Visa rätt svar-knapp"
|
||||
},
|
||||
{
|
||||
"label": "Display retry button"
|
||||
"label": "Visa försök igen-knapp"
|
||||
},
|
||||
{
|
||||
"label": "Meddelande vid inget resultat",
|
||||
|
@ -161,7 +165,7 @@
|
|||
},
|
||||
{},
|
||||
{
|
||||
"label": "Feedback för definierat poängintervall",
|
||||
"label": "Feedback för detta poängintervall",
|
||||
"placeholder": "Fyll i feedback"
|
||||
}
|
||||
]
|
||||
|
@ -204,6 +208,10 @@
|
|||
"label": "Text för knappen Avsluta",
|
||||
"default": "Avsluta"
|
||||
},
|
||||
{
|
||||
"label": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Visa video före resultat från denna quiz"
|
||||
},
|
||||
|
@ -220,16 +228,16 @@
|
|||
},
|
||||
{
|
||||
"label": "Ej godkänt-video",
|
||||
"description": "Denna video kommer att visas om användaren har misslyckats med att nå godkänt på denna quiz."
|
||||
"description": "Denna video kommer att visas om användaren misslyckas med att nå godkänt på denna quiz."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Inställningar för knapparna \"Visa rätt svar\" och \"Försök igen\"",
|
||||
"label": "Inställningar för knapparna \"Visa lösning\" och \"Försök igen\"",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Visa \"Rätta\" knappar",
|
||||
"description": "Denna inställning avgör om knappen \"Rätta\" ska visas på alla frågor."
|
||||
"label": "Visa \"Svara\"-knappar",
|
||||
"description": "Denna inställning avgör om knappen \"Svara\" (som visar om svaret var korrekt eller ej) ska visas på alla frågor."
|
||||
},
|
||||
{
|
||||
"label": "Ignorera knapp \"Visa rätt svar\"",
|
||||
|
@ -244,8 +252,8 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"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",
|
||||
"label": "Ignorera knapp \"Försök igen\"",
|
||||
"description": "Denna inställning avgör om knappen \"Försök igen\" ska visas på alla frågor, vara inaktiverad för alla frågor, eller konfigureras individuellt per fråga.",
|
||||
"options": [
|
||||
{
|
||||
"label": "Aktiverad"
|
||||
|
|
213
language/tr.json
213
language/tr.json
|
@ -1,51 +1,51 @@
|
|||
{
|
||||
"semantics": [
|
||||
{
|
||||
"label": "Quiz introduction",
|
||||
"label": "Sınav (Quiz) Hakkında Bilgilendirme",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Display introduction"
|
||||
"label": "Bilgilendirmeyi göster"
|
||||
},
|
||||
{
|
||||
"label": "Title",
|
||||
"description": "This title will be displayed above the introduction text."
|
||||
"label": "Başlık",
|
||||
"description": "Bu başlık bilgilendirme metninin başlığıdır. "
|
||||
},
|
||||
{
|
||||
"label": "Giriş metni",
|
||||
"description": "This text will be displayed before the quiz starts."
|
||||
"label": "Bilgilendirme metni",
|
||||
"description": "Sınav (quiz) başlamadan önce gösterlecek metin"
|
||||
},
|
||||
{
|
||||
"label": "Start button text",
|
||||
"default": "Start Quiz"
|
||||
"label": "Başla butonu metni",
|
||||
"default": "Sınavı başlat"
|
||||
},
|
||||
{
|
||||
"label": "Background image",
|
||||
"description": "An optional background image for the introduction."
|
||||
"label": "Arka plan görseli",
|
||||
"description": "Bilgilendirme bölümü için isterseniz arka plan görseli ekleyebilirsiniz."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Background image",
|
||||
"description": "An optional background image for the Question set."
|
||||
"label": "Arka plan görseli",
|
||||
"description": "Soru seti için isteğe bağlı arka plan görseli."
|
||||
},
|
||||
{
|
||||
"label": "Progress indicator",
|
||||
"description": "Question set progress indicator style.",
|
||||
"label": "İlerleme göstergeleri",
|
||||
"description": "Soru seti ilerleme göstergesi stili",
|
||||
"options": [
|
||||
{
|
||||
"label": "Metin"
|
||||
"label": "Metinsel"
|
||||
},
|
||||
{
|
||||
"label": "Dots"
|
||||
"label": "Noktalar"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Geçiş yüzdesi",
|
||||
"description": "Quizi geçmek için gerekli toplam puan yüzdesi."
|
||||
"label": "Geçme puanı (%)",
|
||||
"description": "Sınavı (quiz) geçmek için gerekli toplam puan yüzdesi."
|
||||
},
|
||||
{
|
||||
"label": "Questions",
|
||||
"label": "Sorular",
|
||||
"widgets": [
|
||||
{
|
||||
"label": "Varsayılan"
|
||||
|
@ -54,115 +54,119 @@
|
|||
"label": "Metin"
|
||||
}
|
||||
],
|
||||
"entity": "question",
|
||||
"entity": "soru",
|
||||
"field": {
|
||||
"label": "Question type",
|
||||
"description": "Library for this question."
|
||||
"label": "Soru türü",
|
||||
"description": "Soru şablonlarından seçin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "Interface texts in quiz",
|
||||
"label": "Test arayüz metinleri",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Back button",
|
||||
"default": "Previous question"
|
||||
"label": "Geri butonu",
|
||||
"default": "Önceki soru"
|
||||
},
|
||||
{
|
||||
"label": "Next button",
|
||||
"default": "Next question"
|
||||
"label": "Sonraki butonu",
|
||||
"default": "Sonraki soru"
|
||||
},
|
||||
{
|
||||
"label": "Finish button",
|
||||
"label": "Bitir butonu",
|
||||
"default": "Bitir"
|
||||
},
|
||||
{
|
||||
"label": "Progress text",
|
||||
"description": "Text used if textual progress is selected.",
|
||||
"default": "Question: @current of @total questions"
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"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": "İlerleme metni",
|
||||
"description": "İlerleme göstergesi olarak metin seçildiyse kullanılacak metin.",
|
||||
"default": "Soru: @current / @total"
|
||||
},
|
||||
{
|
||||
"label": "Copyright dialog question label",
|
||||
"label": "Belirli bir soruya geçmek için etiket",
|
||||
"description": "Soru numarası yerine '%d' yer tutucusunu ve toplam soru sayısı yerine de %total'ı kullanmalısınız.",
|
||||
"default": "Soru %d / %total"
|
||||
},
|
||||
{
|
||||
"label": "Telif hakkı iletişim kutusu soru etiketi",
|
||||
"default": "Soru"
|
||||
},
|
||||
{
|
||||
"label": "Readspeaker progress",
|
||||
"description": "May use @current and @total question variables",
|
||||
"default": "Question @current of @total"
|
||||
"label": "Okuyucu ilerleme durumu",
|
||||
"description": "@current ve @total soru değişkenleri kullanabilir",
|
||||
"default": "Soru @current / @total"
|
||||
},
|
||||
{
|
||||
"label": "Unanswered question text",
|
||||
"default": "Unanswered"
|
||||
"label": "Yanıtlanmamış soru için metin",
|
||||
"default": "Yanıtlanmadı"
|
||||
},
|
||||
{
|
||||
"label": "Answered question text",
|
||||
"default": "Answered"
|
||||
"label": "Yanıtlanmış soru için metin",
|
||||
"default": "Yanıtlandı"
|
||||
},
|
||||
{
|
||||
"label": "Current question text",
|
||||
"default": "Current question"
|
||||
"label": "Geçerli soru için metin",
|
||||
"default": "Geçerli soru"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Disable backwards navigation",
|
||||
"description": "This option will only allow you to move forward in Question Set"
|
||||
"label": "Geri gelmeyi engelle",
|
||||
"description": "Bu seçenek soru setinde sadece ileri doğru gezmeye olanak verir önceki soruya dönemez."
|
||||
},
|
||||
{
|
||||
"label": "Randomize questions",
|
||||
"description": "Soruları sırasını ekranda rasgele gelmesi için etkinleştirin."
|
||||
"label": "Rastgele Sorular",
|
||||
"description": "Soruların ekranda rastgele bir şekilde (her seferinde farklı sıralamada) gelmesi için etkinleştirin."
|
||||
},
|
||||
{
|
||||
"label": "Number of questions to be shown:",
|
||||
"description": "Create a randomized batch of questions from the total."
|
||||
"label": "Sınavda sorulacak soru sayısı:",
|
||||
"description": "Soru havuzundan belirli sayıda rastgele soru seçmenizi sağlar."
|
||||
},
|
||||
{
|
||||
"label": "Quiz finished",
|
||||
"label": "Sınav (quiz) bitti",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Display results"
|
||||
"label": "Sonuçları göster"
|
||||
},
|
||||
{
|
||||
"label": "Display solution button"
|
||||
"label": "Çözümü göster butonunu göster"
|
||||
},
|
||||
{
|
||||
"label": "Display retry button"
|
||||
"label": "Yeniden dene butonunu göster"
|
||||
},
|
||||
{
|
||||
"label": "No results message",
|
||||
"description": "Text displayed on end page when \"Display results\" is disabled",
|
||||
"default": "Finished"
|
||||
"label": "Sonuç yok mesajı",
|
||||
"description": " \"Sonuçları göster\" devre dışı bırakıldığında gösterilecek metin.",
|
||||
"default": "Bitti"
|
||||
},
|
||||
{
|
||||
"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": "Geri bildirim başlığı",
|
||||
"default": "Sonucunuz:",
|
||||
"description": "Bu başlık, kullanıcı tüm soruları yanıtladığında sınavın sonunda görüntülenecektir."
|
||||
},
|
||||
{
|
||||
"label": "Overall Feedback",
|
||||
"label": "Genel geri bildirim",
|
||||
"fields": [
|
||||
{
|
||||
"widgets": [
|
||||
{
|
||||
"label": "Default"
|
||||
"label": "Varsayılan"
|
||||
}
|
||||
],
|
||||
"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": "Herhangi bir puan aralığı için özel geri bildirim tanımlayabilirsiniz.",
|
||||
"description": "Örnek: 0-44% Geliştirilmeli, 45-70% Orta, 70-100% İyi!",
|
||||
"entity": "aralık",
|
||||
"field": {
|
||||
"fields": [
|
||||
{
|
||||
"label": "Score Range"
|
||||
"label": "Skor Aralığı"
|
||||
},
|
||||
{},
|
||||
{
|
||||
"label": "Feedback for defined score range",
|
||||
"placeholder": "Fill in the feedback"
|
||||
"label": "Tanımlanmış puan aralığı için geri bildirim",
|
||||
"placeholder": "Geri bildirim için doldurun"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -170,88 +174,93 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"label": "Old Feedback",
|
||||
"label": "Eski Geri Bildirim",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Quiz passed greeting",
|
||||
"description": "This text will be displayed above the score if the user has successfully passed the quiz."
|
||||
"label": "Sınavı geçtiniz tebrikler",
|
||||
"description": "Kullanıcı sınavı başarıyla geçerse puanının üzerinde bu metin görüntülenecektir."
|
||||
},
|
||||
{
|
||||
"label": "Passed comment",
|
||||
"description": "This comment will be displayed after the score if the user has successfully passed the quiz."
|
||||
"label": "Geçti yorumu",
|
||||
"description": "Kullanıcı sınavı başarıyla geçtiyse puandan sonra bu yorum görüntülenecektir."
|
||||
},
|
||||
{
|
||||
"label": "Quiz failed title",
|
||||
"description": "This text will be displayed above the score if the user has failed the quiz."
|
||||
"label": "Sınav başarısız başlığı",
|
||||
"description": "Kullanıcı sınavda başarısız olursa puanının üzerinde bu metin görüntülenecektir."
|
||||
},
|
||||
{
|
||||
"label": "Failed comment",
|
||||
"description": "This comment will be displayed after the score if the user has failed the quiz."
|
||||
"label": "Kaldı yorumu",
|
||||
"description": "Kullanıcı sınavda başarısız olursa puandan sonra bu yorum görüntülenecektir."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Solution button label",
|
||||
"label": "Çözümü göster butonu etiketi",
|
||||
"default": "Çözümü göster",
|
||||
"description": "Text for the solution button."
|
||||
"description": "Çözümü göster butonu için etiket"
|
||||
},
|
||||
{
|
||||
"label": "Yeniden dene buton etiketi",
|
||||
"default": "Yeniden dene",
|
||||
"description": "Text for the retry button."
|
||||
"label": "Yeniden dene butonu etiketi",
|
||||
"default": "Yeniden Dene",
|
||||
"description": "Yeniden dene butonu için etiket"
|
||||
},
|
||||
|
||||
{
|
||||
"label": "Finish button text",
|
||||
"label": "Bitir butonu için etiket",
|
||||
"default": "Bitir"
|
||||
},
|
||||
{
|
||||
"label": "Display video before quiz results"
|
||||
"label": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Enable skip video button"
|
||||
"label": "Sınav sonuçlarından önce videoyu göster"
|
||||
},
|
||||
{
|
||||
"label": "Skip video button label",
|
||||
"default": "Skip video"
|
||||
"label": "Videoyu atla düğmesini etkinleştir"
|
||||
},
|
||||
{
|
||||
"label": "Passed video",
|
||||
"description": "This video will be played if the user successfully passed the quiz."
|
||||
"label": "Videoyu atla düğmesi etiketi",
|
||||
"default": "Videoyu Atla"
|
||||
},
|
||||
{
|
||||
"label": "Fail video",
|
||||
"description": "This video will be played if the user fails the quiz."
|
||||
"label": "Geçti videosu",
|
||||
"description": "Bu video, kullanıcı sınavı başarıyla geçerse oynatılacaktır."
|
||||
},
|
||||
{
|
||||
"label": "Kaldı videosu",
|
||||
"description": "Bu video, kullanıcı sınavda başarısız olursa oynatılacaktır."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
||||
"label": "\"Çözümü göster\" ve \"Yeniden dene\" butonları için ayarlar",
|
||||
"fields": [
|
||||
{
|
||||
"label": "Show \"Check\" buttons",
|
||||
"description": "This option determines if the \"Check\" button will be shown for all questions."
|
||||
"label": "\"Kontrol et\" butonlarını göster",
|
||||
"description": "Bu seçenek, tüm sorular için \"Kontrol et\" butonunun gösterilip gösterilmeyeceğini belirler."
|
||||
},
|
||||
{
|
||||
"label": "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": "\"Çözümü göster\" butonunu etkinleştir.",
|
||||
"description": "Bu seçenek, \"Çözümü göster\" butonunun tüm sorular için gösterilip gösterilmeyeceğini, tümü için devre dışı bırakılıp bırakılmayacağını veya her soru için ayrı ayrı yapılandırılıp yapılandırılmayacağını belirler.",
|
||||
"options": [
|
||||
{
|
||||
"label": "Enabled"
|
||||
"label": "Etkinleştir"
|
||||
},
|
||||
{
|
||||
"label": "Disabled"
|
||||
"label": "Devre dışı bırak"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"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": "Override \"Yeniden dene\" ",
|
||||
"description": "Bu seçenek, \"Yeniden dene\" butonunun tüm sorular için gösterilip gösterilmeyeceğini, tümü için devre dışı bırakılıp bırakılmayacağını veya her soru için ayrı ayrı yapılandırılıp yapılandırılmayacağını belirler.",
|
||||
"options": [
|
||||
{
|
||||
"label": "Enabled"
|
||||
"label": "Etkinleştir"
|
||||
},
|
||||
{
|
||||
"label": "Disabled"
|
||||
"label": "Devre dışı bırak"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
@ -75,6 +75,10 @@
|
|||
"label": "Кнопка Завершити",
|
||||
"default": "Завершити"
|
||||
},
|
||||
{
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Текст прогресу",
|
||||
"description": "Текст, який використовується якщо обрано текстовий прогрес.",
|
||||
|
@ -204,6 +208,10 @@
|
|||
"label": "Текст кнопки завершення",
|
||||
"default": "Завершити"
|
||||
},
|
||||
{
|
||||
"label": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Показати відео до результатів тесту"
|
||||
},
|
||||
|
|
|
@ -75,6 +75,10 @@
|
|||
"label": "Finish button",
|
||||
"default": "Finish"
|
||||
},
|
||||
{
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Progress text",
|
||||
"description": "Text used if textual progress is selected.",
|
||||
|
@ -204,6 +208,14 @@
|
|||
"label": "Finish button text",
|
||||
"default": "Finish"
|
||||
},
|
||||
{
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "Display video before quiz results"
|
||||
},
|
||||
|
|
|
@ -75,6 +75,10 @@
|
|||
"label": "完成功能鈕名稱",
|
||||
"default": "完成"
|
||||
},
|
||||
{
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "進度",
|
||||
"description": "若進度指示選擇以文字方式呈現,則以文字方式顯示.",
|
||||
|
@ -204,6 +208,10 @@
|
|||
"label": "完成功能鈕名稱",
|
||||
"default": "完成"
|
||||
},
|
||||
{
|
||||
"label": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "在測驗結果前撥放影片"
|
||||
},
|
||||
|
|
|
@ -75,6 +75,10 @@
|
|||
"label": "完成按鈕顯示文字",
|
||||
"default": "完成"
|
||||
},
|
||||
{
|
||||
"label": "Submit button",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "進度顯示文字",
|
||||
"description": "若進度指示選擇文字式時顯示的文字。",
|
||||
|
@ -204,6 +208,10 @@
|
|||
"label": "完成按鈕的顯示文字",
|
||||
"default": "完成"
|
||||
},
|
||||
{
|
||||
"label": "Submit button text",
|
||||
"default": "Submit"
|
||||
},
|
||||
{
|
||||
"label": "在測驗結果出現前顯示影片"
|
||||
},
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
"contentType": "question",
|
||||
"majorVersion": 1,
|
||||
"minorVersion": 17,
|
||||
"patchVersion": 1,
|
||||
"patchVersion": 7,
|
||||
"embedTypes": [
|
||||
"iframe"
|
||||
],
|
||||
|
|
Loading…
Reference in New Issue