From e903f96ead0d0a3926d15b41e2cf9fbec1a50226 Mon Sep 17 00:00:00 2001 From: Andreas Nergaard Date: Wed, 4 Oct 2017 15:00:58 +0200 Subject: [PATCH 01/12] HFP-30 Added checkButton override to semantic and logic for buttons. --- js/questionset.js | 8 +++++++- semantics.json | 18 ++++++++++++++++++ 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/js/questionset.js b/js/questionset.js index b7e885a..1d73bf5 100644 --- a/js/questionset.js +++ b/js/questionset.js @@ -231,7 +231,7 @@ H5P.QuestionSet = function (options, contentId, contentData) { // Set overrides for questions var override; - if (params.override.showSolutionButton || params.override.retryButton) { + if (params.override.showSolutionButton || params.override.retryButton || params.override.checkButton) { override = {}; if (params.override.showSolutionButton) { // Force "Show solution" button to be on or off for all interactions @@ -244,6 +244,12 @@ H5P.QuestionSet = function (options, contentId, contentData) { override.enableRetry = (params.override.retryButton === 'on' ? true : false); } + + if (params.override.checkButton) { + // Force "Retry" button to be on or off for all interactions + override.enableCheckButton = + (params.override.checkButton === 'on' ? true : false); + } } /** diff --git a/semantics.json b/semantics.json index bd8e8e8..3d66070 100644 --- a/semantics.json +++ b/semantics.json @@ -509,6 +509,24 @@ "label": "Disabled" } ] + }, + { + "name": "checkButton", + "type": "select", + "label": "Override \"Check\" button", + "importance": "low", + "description": "This option determines if the \"Check\" button will be shown for all questions, disabled for all or configured for each question individually.", + "optional": true, + "options": [ + { + "value": "on", + "label": "Enabled" + }, + { + "value": "off", + "label": "Disabled" + } + ] } ] } From c8531f60f0fae0701bada4f62ba5c2da8f8c741b Mon Sep 17 00:00:00 2001 From: Andreas Nergaard Date: Thu, 12 Oct 2017 13:51:54 +0200 Subject: [PATCH 02/12] HFP-30 Made checkButton into a boolean instead of select. Updated checkButton logic. --- js/questionset.js | 9 ++++----- semantics.json | 17 ++++------------- 2 files changed, 8 insertions(+), 18 deletions(-) diff --git a/js/questionset.js b/js/questionset.js index 1d73bf5..a1a2347 100644 --- a/js/questionset.js +++ b/js/questionset.js @@ -231,7 +231,7 @@ H5P.QuestionSet = function (options, contentId, contentData) { // Set overrides for questions var override; - if (params.override.showSolutionButton || params.override.retryButton || params.override.checkButton) { + if (params.override.showSolutionButton || params.override.retryButton || params.override.checkButton === false) { override = {}; if (params.override.showSolutionButton) { // Force "Show solution" button to be on or off for all interactions @@ -245,10 +245,9 @@ H5P.QuestionSet = function (options, contentId, contentData) { (params.override.retryButton === 'on' ? true : false); } - if (params.override.checkButton) { - // Force "Retry" button to be on or off for all interactions - override.enableCheckButton = - (params.override.checkButton === 'on' ? true : false); + if (params.override.checkButton === false) { + // Force "Check" button to be on or off for all interactions + override.enableCheckButton = params.override.checkButton; } } diff --git a/semantics.json b/semantics.json index 3d66070..49134cb 100644 --- a/semantics.json +++ b/semantics.json @@ -512,21 +512,12 @@ }, { "name": "checkButton", - "type": "select", - "label": "Override \"Check\" button", + "type": "boolean", + "label": "Show \"Check\" buttons", "importance": "low", - "description": "This option determines if the \"Check\" button will be shown for all questions, disabled for all or configured for each question individually.", + "description": "This option determines if the \"Check\" button will be shown for all questions.", "optional": true, - "options": [ - { - "value": "on", - "label": "Enabled" - }, - { - "value": "off", - "label": "Disabled" - } - ] + "default": true } ] } From b10c1354e2ef8992a6ca4ebcc176d5af1b45383b Mon Sep 17 00:00:00 2001 From: Andreas Nergaard Date: Thu, 12 Oct 2017 15:09:12 +0200 Subject: [PATCH 03/12] HFP-30 Added showWhen widget and made retry/show solution to toggle by new field checkButton --- library.json | 7 ++++++- semantics.json | 36 +++++++++++++++++++++++++++--------- 2 files changed, 33 insertions(+), 10 deletions(-) diff --git a/library.json b/library.json index 8be26d3..790a771 100644 --- a/library.json +++ b/library.json @@ -64,6 +64,11 @@ "machineName": "H5PEditor.QuestionSetTextualEditor", "majorVersion": 1, "minorVersion": 2 + }, + { + "machineName": "H5PEditor.ShowWhen", + "majorVersion": 1, + "minorVersion": 0 } ] -} \ No newline at end of file +} diff --git a/semantics.json b/semantics.json index 49134cb..0b85910 100644 --- a/semantics.json +++ b/semantics.json @@ -474,6 +474,15 @@ "importance": "low", "optional": true, "fields": [ + { + "name": "checkButton", + "type": "boolean", + "label": "Show \"Check\" buttons", + "importance": "low", + "description": "This option determines if the \"Check\" button will be shown for all questions.", + "optional": true, + "default": true + }, { "name": "showSolutionButton", "type": "select", @@ -481,6 +490,15 @@ "importance": "low", "description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.", "optional": true, + "widget": "showWhen", + "showWhen": { + "rules": [ + { + "field": "checkButton", + "equals": true + } + ] + }, "options": [ { "value": "on", @@ -499,6 +517,15 @@ "importance": "low", "description": "This option determines if the \"Retry\" button will be shown for all questions, disabled for all or configured for each question individually.", "optional": true, + "widget": "showWhen", + "showWhen": { + "rules": [ + { + "field": "checkButton", + "equals": true + } + ] + }, "options": [ { "value": "on", @@ -509,15 +536,6 @@ "label": "Disabled" } ] - }, - { - "name": "checkButton", - "type": "boolean", - "label": "Show \"Check\" buttons", - "importance": "low", - "description": "This option determines if the \"Check\" button will be shown for all questions.", - "optional": true, - "default": true } ] } From 3ebce107c42d74ad8e03f829084eaa535be3e205 Mon Sep 17 00:00:00 2001 From: Andreas Nergaard Date: Fri, 13 Oct 2017 10:15:19 +0200 Subject: [PATCH 04/12] HFP-30 Updated translations. Added new field checkButton with the state new. Ran the h5p update-translations command. Added nb and nn translations for the new field. --- language/.en.json | 15 ++- language/af.json | 253 ++++++++++++++++++++++----------------------- language/ar.json | 253 ++++++++++++++++++++++----------------------- language/bs.json | 253 ++++++++++++++++++++++----------------------- language/ca.json | 253 ++++++++++++++++++++++----------------------- language/cs.json | 253 ++++++++++++++++++++++----------------------- language/da.json | 253 ++++++++++++++++++++++----------------------- language/de.json | 253 ++++++++++++++++++++++----------------------- language/el.json | 253 ++++++++++++++++++++++----------------------- language/es.json | 253 ++++++++++++++++++++++----------------------- language/et.json | 253 ++++++++++++++++++++++----------------------- language/fi.json | 255 +++++++++++++++++++++++----------------------- language/fr.json | 253 ++++++++++++++++++++++----------------------- language/he.json | 253 ++++++++++++++++++++++----------------------- language/hu.json | 253 ++++++++++++++++++++++----------------------- language/it.json | 253 ++++++++++++++++++++++----------------------- language/ja.json | 253 ++++++++++++++++++++++----------------------- language/ko.json | 253 ++++++++++++++++++++++----------------------- language/nb.json | 255 +++++++++++++++++++++++----------------------- language/nl.json | 253 ++++++++++++++++++++++----------------------- language/nn.json | 255 +++++++++++++++++++++++----------------------- language/pl.json | 253 ++++++++++++++++++++++----------------------- language/pt.json | 253 ++++++++++++++++++++++----------------------- language/ro.json | 253 ++++++++++++++++++++++----------------------- language/ru.json | 253 ++++++++++++++++++++++----------------------- language/sr.json | 253 ++++++++++++++++++++++----------------------- language/sv.json | 253 ++++++++++++++++++++++----------------------- language/tr.json | 253 ++++++++++++++++++++++----------------------- language/vi.json | 253 ++++++++++++++++++++++----------------------- semantics.json | 2 +- 30 files changed, 3599 insertions(+), 3508 deletions(-) diff --git a/language/.en.json b/language/.en.json index 5dbdf69..5928587 100644 --- a/language/.en.json +++ b/language/.en.json @@ -38,8 +38,7 @@ { "label": "Dots" } - ], - "default": "dots" + ] }, { "label": "Pass percentage", @@ -144,7 +143,11 @@ "label": "Overall Feedback", "fields": [ { - "widgets": [], + "widgets": [ + { + "label": "Default" + } + ], "label": "Define custom feedback for any score range", "description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!", "entity": "range", @@ -221,6 +224,10 @@ { "label": "Settings for \"Show solution\" and \"Retry\" buttons", "fields": [ + { + "label": "Show \"Check\" buttons", + "description": "This option determines if the \"Check\" button will be shown for all questions." + }, { "label": "Override \"Show Solution\" button", "description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.", @@ -248,4 +255,4 @@ ] } ] -} +} \ No newline at end of file diff --git a/language/af.json b/language/af.json index c97b04e..5928587 100644 --- a/language/af.json +++ b/language/af.json @@ -1,166 +1,165 @@ { - "semantics":[ + "semantics": [ { - "label":"Quiz introduction", - "fields":[ + "label": "Quiz introduction", + "fields": [ { - "label":"Display introduction" + "label": "Display introduction" }, { - "label":"Title", - "description":"This title will be displayed above the introduction text." + "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": "Introduction text", + "description": "This text will be displayed before the quiz starts." }, { - "label":"Start button text", - "default":"Start Quiz" + "label": "Start button text", + "default": "Start Quiz" }, { - "label":"Background image", - "description":"An optional background image for the introduction." + "label": "Background image", + "description": "An optional background image for the introduction." } ] }, { - "label":"Background image", - "description":"An optional background image for the Question set." + "label": "Background image", + "description": "An optional background image for the Question set." }, { - "label":"Progress indicator", - "description":"Question set progress indicator style.", - "options":[ + "label": "Progress indicator", + "description": "Question set progress indicator style.", + "options": [ { - "label":"Textual" + "label": "Textual" }, { - "label":"Dots" + "label": "Dots" } - ], - "default":"dots" + ] }, { - "label":"Pass percentage", - "description":"Percentage of Total score required for passing the quiz." + "label": "Pass percentage", + "description": "Percentage of Total score required for passing the quiz." }, { - "label":"Questions", - "widgets":[ + "label": "Questions", + "widgets": [ { - "label":"Default" + "label": "Default" }, { - "label":"Textual" + "label": "Textual" } ], - "entity":"question", - "field":{ - "label":"Question type", - "description":"Library for this question." + "entity": "question", + "field": { + "label": "Question type", + "description": "Library for this question." } }, { - "label":"Interface texts in quiz", - "fields":[ + "label": "Interface texts in quiz", + "fields": [ { - "label":"Back button", - "default":"Previous question" + "label": "Back button", + "default": "Previous question" }, { - "label":"Next button", - "default":"Next question" + "label": "Next button", + "default": "Next question" }, { - "label":"Finish button", - "default":"Finish" + "label": "Finish button", + "default": "Finish" }, { - "label":"Progress text", - "description":"Text used if textual progress is selected.", - "default":"Question: @current of @total questions" + "label": "Progress text", + "description": "Text used if textual progress is selected.", + "default": "Question: @current of @total questions" }, { - "label":"Label for jumping to a certain question", - "description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.", - "default":"Question %d of %total" + "label": "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": "Copyright dialog question label", + "default": "Question" }, { - "label":"Readspeaker progress", - "description":"May use @current and @total question variables", - "default":"Question @current of @total" + "label": "Readspeaker progress", + "description": "May use @current and @total question variables", + "default": "Question @current of @total" }, { - "label":"Unanswered question text", - "default":"Unanswered" + "label": "Unanswered question text", + "default": "Unanswered" }, { - "label":"Answered question text", - "default":"Answered" + "label": "Answered question text", + "default": "Answered" }, { - "label":"Current question text", - "default":"Current question" + "label": "Current question text", + "default": "Current question" } ] }, { - "label":"Disable backwards navigation", - "description":"This option will only allow you to move forward in Question Set" + "label": "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": "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": "Number of questions to be shown:", + "description": "Create a randomized batch of questions from the total." }, { - "label":"Quiz finished", - "fields":[ + "label": "Quiz finished", + "fields": [ { - "label":"Display results" + "label": "Display results" }, { - "label":"Display solution button" + "label": "Display solution button" }, { - "label":"No results message", - "description":"Text displayed on end page when \"Display results\" is disabled", - "default":"Finished" + "label": "No results message", + "description": "Text displayed on end page when \"Display results\" is disabled", + "default": "Finished" }, { - "label":"Feedback heading", - "default":"Your result:", - "description":"This heading will be displayed at the end of the quiz when the user has answered all questions." + "label": "Feedback heading", + "default": "Your result:", + "description": "This heading will be displayed at the end of the quiz when the user has answered all questions." }, { - "label":"Overall Feedback", - "fields":[ + "label": "Overall Feedback", + "fields": [ { - "widgets":[ - + "widgets": [ + { + "label": "Default" + } ], - "label":"Define custom feedback for any score range", - "description":"Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!", - "entity":"range", - "field":{ - "fields":[ + "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": "Score Range" }, + {}, { - - }, - { - "label":"Feedback for defined score range", - "placeholder":"Fill in the feedback" + "label": "Feedback for defined score range", + "placeholder": "Fill in the feedback" } ] } @@ -168,84 +167,88 @@ ] }, { - "label":"Old Feedback", - "fields":[ + "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": "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": "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": "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": "Failed comment", + "description": "This comment will be displayed after the score if the user has failed the quiz." } ] }, { - "label":"Solution button label", - "default":"Show solution", - "description":"Text for the solution button." + "label": "Solution button label", + "default": "Show solution", + "description": "Text for the solution button." }, { - "label":"Retry button label", - "default":"Retry", - "description":"Text for the retry button." + "label": "Retry button label", + "default": "Retry", + "description": "Text for the retry button." }, { - "label":"Finish button text", - "default":"Finish" + "label": "Finish button text", + "default": "Finish" }, { - "label":"Display video before quiz results" + "label": "Display video before quiz results" }, { - "label":"Enable skip video button" + "label": "Enable skip video button" }, { - "label":"Skip video button label", - "default":"Skip video" + "label": "Skip video button label", + "default": "Skip video" }, { - "label":"Passed video", - "description":"This video will be played if the user successfully passed the quiz." + "label": "Passed video", + "description": "This video will be played if the user successfully passed the quiz." }, { - "label":"Fail video", - "description":"This video will be played if the user failes the quiz." + "label": "Fail video", + "description": "This video will be played if the user failes the quiz." } ] }, { - "label":"Settings for \"Show solution\" and \"Retry\" buttons", - "fields":[ + "label": "Settings for \"Show solution\" and \"Retry\" buttons", + "fields": [ { - "label":"Override \"Show Solution\" button", - "description":"This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.", - "options":[ + "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": "Enabled" }, { - "label":"Disabled" + "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": "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": "Enabled" }, { - "label":"Disabled" + "label": "Disabled" } ] } diff --git a/language/ar.json b/language/ar.json index e9fe2ba..2993dc6 100644 --- a/language/ar.json +++ b/language/ar.json @@ -1,166 +1,165 @@ { - "semantics":[ + "semantics": [ { - "label":"مقدمة المسابقة", - "fields":[ + "label": "مقدمة المسابقة", + "fields": [ { - "label":"عرض المقدمة" + "label": "عرض المقدمة" }, { - "label":"العنوان", - "description":"سيتم عرض هذا العنوان فوق النص المقدمة" + "label": "العنوان", + "description": "سيتم عرض هذا العنوان فوق النص المقدمة" }, { - "label":"مقدمة النص", - "description":"سيتم عرض هذا النص قبل أن تبدأ هذه المسابقة" + "label": "مقدمة النص", + "description": "سيتم عرض هذا النص قبل أن تبدأ هذه المسابقة" }, { - "label":"بدء زر النص", - "default":"Start Quiz" + "label": "بدء زر النص", + "default": "Start Quiz" }, { - "label":"صورة الخلفية", - "description":"إدخال صورة خلفية اختيارية" + "label": "صورة الخلفية", + "description": "إدخال صورة خلفية اختيارية" } ] }, { - "label":"صورة الخلفية", - "description":"صورة خلفية اختيارية لأسئلة" + "label": "صورة الخلفية", + "description": "صورة خلفية اختيارية لأسئلة" }, { - "label":"مؤشر التقدم", - "description":"أسئلة لتعيين نمط مؤشر التقدم", - "options":[ + "label": "مؤشر التقدم", + "description": "أسئلة لتعيين نمط مؤشر التقدم", + "options": [ { - "label":"النصية" + "label": "النصية" }, { - "label":"النقاط" + "label": "النقاط" } - ], - "default":"dots" + ] }, { - "label":"نسبة النجاح", - "description":"النسبة المئوية لمجموع النقاط المطلوبة لاجتياز الاختبار" + "label": "نسبة النجاح", + "description": "النسبة المئوية لمجموع النقاط المطلوبة لاجتياز الاختبار" }, { - "label":"الأسئلة", - "widgets":[ + "label": "الأسئلة", + "widgets": [ { - "label":"الافتراضي" + "label": "الافتراضي" }, { - "label":"النصية" + "label": "النصية" } ], - "entity":"السؤال", - "field":{ - "label":"نوع السؤال", - "description":"مكتبة لهذا السؤال" + "entity": "السؤال", + "field": { + "label": "نوع السؤال", + "description": "مكتبة لهذا السؤال" } }, { - "label":"واجهة النصوص لهذه المسابقة", - "fields":[ + "label": "واجهة النصوص لهذه المسابقة", + "fields": [ { - "label":"زر العودة", - "default":"Previous question" + "label": "زر العودة", + "default": "Previous question" }, { - "label":"زر التقدم", - "default":"Next question" + "label": "زر التقدم", + "default": "Next question" }, { - "label":"زر الانتهاء", - "default":"Finish" + "label": "زر الانتهاء", + "default": "Finish" }, { - "label":"نص التقدم", - "description":"النص المستخدم إذا تم تحديد التقدم نصيا", - "default":"Question: @current of @total questions" + "label": "نص التقدم", + "description": "النص المستخدم إذا تم تحديد التقدم نصيا", + "default": "Question: @current of @total questions" }, { - "label":"Label for jumping to a certain question", - "description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.", - "default":"Question %d of %total" + "label": "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":"السؤال" + "label": "Copyright dialog question label", + "default": "السؤال" }, { - "label":"Readspeaker progress", - "description":"May use @current and @total question variables", - "default":"Question @current of @total" + "label": "Readspeaker progress", + "description": "May use @current and @total question variables", + "default": "Question @current of @total" }, { - "label":"Unanswered question text", - "default":"Unanswered" + "label": "Unanswered question text", + "default": "Unanswered" }, { - "label":"Answered question text", - "default":"Answered" + "label": "Answered question text", + "default": "Answered" }, { - "label":"Current question text", - "default":"Current question" + "label": "Current question text", + "default": "Current question" } ] }, { - "label":"Disable backwards navigation", - "description":"This option will only allow you to move forward in Question Set" + "label": "Disable backwards navigation", + "description": "This option will only allow you to move forward in Question Set" }, { - "label":"Randomize questions", - "description":"تمكين العرض بطريقة عشوائية وترتيب الأسئلة على الشاشة" + "label": "Randomize questions", + "description": "تمكين العرض بطريقة عشوائية وترتيب الأسئلة على الشاشة" }, { - "label":"Number of questions to be shown:", - "description":"Create a randomized batch of questions from the total." + "label": "Number of questions to be shown:", + "description": "Create a randomized batch of questions from the total." }, { - "label":"انتهاء المسابقة", - "fields":[ + "label": "انتهاء المسابقة", + "fields": [ { - "label":"عرض النتائج" + "label": "عرض النتائج" }, { - "label":"Display solution button" + "label": "Display solution button" }, { - "label":"No results message", - "description":"Text displayed on end page when \"Display results\" is disabled", - "default":"Finished" + "label": "No results message", + "description": "Text displayed on end page when \"Display results\" is disabled", + "default": "Finished" }, { - "label":"نص راس الملاحظات", - "default":"Your result:", - "description":"سيتم عرض هذا العنوان في نهاية هذه المسابقة حيثما أجاب المستخدم على جميع الأسئلة المستعملة" + "label": "نص راس الملاحظات", + "default": "Your result:", + "description": "سيتم عرض هذا العنوان في نهاية هذه المسابقة حيثما أجاب المستخدم على جميع الأسئلة المستعملة" }, { - "label":"شفافية خلفية العناصر", - "fields":[ + "label": "شفافية خلفية العناصر", + "fields": [ { - "widgets":[ - + "widgets": [ + { + "label": "Default" + } ], - "label":"Define custom feedback for any score range", - "description":"Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!", - "entity":"range", - "field":{ - "fields":[ + "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": "Score Range" }, + {}, { - - }, - { - "label":"Feedback for defined score range", - "placeholder":"Fill in the feedback" + "label": "Feedback for defined score range", + "placeholder": "Fill in the feedback" } ] } @@ -168,84 +167,88 @@ ] }, { - "label":"Old Feedback", - "fields":[ + "label": "Old Feedback", + "fields": [ { - "label":"تعليق النجاح بالمسابقة", - "description":"سيتم عرض هذا النص أعلاه النتيجة إذا انقضى المستخدم بنجاح هذه المسابقة" + "label": "تعليق النجاح بالمسابقة", + "description": "سيتم عرض هذا النص أعلاه النتيجة إذا انقضى المستخدم بنجاح هذه المسابقة" }, { - "label":"ملاحظة النجاح", - "description":"سيتم عرض هذه الملاحظة بعد النتيجة إذا انقضى المستخدم بنجاح هذه المسابقة" + "label": "ملاحظة النجاح", + "description": "سيتم عرض هذه الملاحظة بعد النتيجة إذا انقضى المستخدم بنجاح هذه المسابقة" }, { - "label":"تعليق الرسوب بالمسابقة", - "description":"سيتم عرض هذا النص أعلاه النتيجة إذا كان المستخدم قد فشلت في المسابقة" + "label": "تعليق الرسوب بالمسابقة", + "description": "سيتم عرض هذا النص أعلاه النتيجة إذا كان المستخدم قد فشلت في المسابقة" }, { - "label":"ملاحظة الرسوب", - "description":"سيتم عرض هذه الملاحظة بعد النتيجة إذا كان المستخدم قد فشلت في المسابقة" + "label": "ملاحظة الرسوب", + "description": "سيتم عرض هذه الملاحظة بعد النتيجة إذا كان المستخدم قد فشلت في المسابقة" } ] }, { - "label":"تسمية زر اظهار الحل", - "default":"مشاهدة الحل", - "description":"نص زر الحل" + "label": "تسمية زر اظهار الحل", + "default": "مشاهدة الحل", + "description": "نص زر الحل" }, { - "label":"تسمية زر إعادة المحاولة", - "default":"إعادة المحاولة", - "description":"نص زر إعادة المحاولة" + "label": "تسمية زر إعادة المحاولة", + "default": "إعادة المحاولة", + "description": "نص زر إعادة المحاولة" }, { - "label":"نص زر الانتهاء", - "default":"Finish" + "label": "نص زر الانتهاء", + "default": "Finish" }, { - "label":"عرض الفيديو قبل نتائج المسابقة" + "label": "عرض الفيديو قبل نتائج المسابقة" }, { - "label":"تفعيل زر تخطى الفيديو" + "label": "تفعيل زر تخطى الفيديو" }, { - "label":"تسمية زر تخطى الفيديو", - "default":"Skip video" + "label": "تسمية زر تخطى الفيديو", + "default": "Skip video" }, { - "label":"فيديو النجاح بالمسابقة", - "description":"سيتم تشغيل هذا الفيديو إذا كان المستخدم ناجحا بهذه المسابقة" + "label": "فيديو النجاح بالمسابقة", + "description": "سيتم تشغيل هذا الفيديو إذا كان المستخدم ناجحا بهذه المسابقة" }, { - "label":"فيديو الرسوب بالمسابقة", - "description":"سيتم تشغيل هذا الفيديو إذا كان المستخدم راسبا بهذه المسابقة" + "label": "فيديو الرسوب بالمسابقة", + "description": "سيتم تشغيل هذا الفيديو إذا كان المستخدم راسبا بهذه المسابقة" } ] }, { - "label":"إعدادات زر \"مشاهدة حل \" وزر \"إعادة المحاولة\" ", - "fields":[ + "label": "إعدادات زر \"مشاهدة حل \" وزر \"إعادة المحاولة\" ", + "fields": [ { - "label":"Override \"Show Solution\" button", - "description":"This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.", - "options":[ + "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": "Enabled" }, { - "label":"Disabled" + "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": "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": "Enabled" }, { - "label":"Disabled" + "label": "Disabled" } ] } diff --git a/language/bs.json b/language/bs.json index b3d4ee1..06a75c4 100644 --- a/language/bs.json +++ b/language/bs.json @@ -1,166 +1,165 @@ { - "semantics":[ + "semantics": [ { - "label":"Uvod u kviz", - "fields":[ + "label": "Uvod u kviz", + "fields": [ { - "label":"Prikaži uvod" + "label": "Prikaži uvod" }, { - "label":"Naziv", - "description":"Ovaj će naziv biti prikazan iznad uvodnog teksta." + "label": "Naziv", + "description": "Ovaj će naziv biti prikazan iznad uvodnog teksta." }, { - "label":"Tekst uvoda", - "description":"Ovaj će naziv biti prikazan prije početka kviza." + "label": "Tekst uvoda", + "description": "Ovaj će naziv biti prikazan prije početka kviza." }, { - "label":"Oznaka za dugme \"Start\"", - "default":"Start" + "label": "Oznaka za dugme \"Start\"", + "default": "Start" }, { - "label":"Slika pozadine", - "description":"Slika pozadine na početku. (opcionalno)." + "label": "Slika pozadine", + "description": "Slika pozadine na početku. (opcionalno)." } ] }, { - "label":"Slika pozadine", - "description":"Slika pozadine seta pitanja. (opcionalno)." + "label": "Slika pozadine", + "description": "Slika pozadine seta pitanja. (opcionalno)." }, { - "label":"Prikaz napredovanja", - "description":"Prikazivanje napredovanja", - "options":[ + "label": "Prikaz napredovanja", + "description": "Prikazivanje napredovanja", + "options": [ { - "label":"Tekst" + "label": "Tekst" }, { - "label":"Bodovi" + "label": "Bodovi" } - ], - "default":"dots" + ] }, { - "label":"Procenat za uspješan prolaz", - "description":"Procenat tačnih odgovora kao preduvijet da je kviz\/zadatak uspješno završen." + "label": "Procenat za uspješan prolaz", + "description": "Procenat tačnih odgovora kao preduvijet da je kviz/zadatak uspješno završen." }, { - "label":"Pitanja", - "widgets":[ + "label": "Pitanja", + "widgets": [ { - "label":"Standard" + "label": "Standard" }, { - "label":"Tekst" + "label": "Tekst" } ], - "entity":"pitanje", - "field":{ - "label":"Vrsta pitanja", - "description":"Biblioteka za ovo pitanje." + "entity": "pitanje", + "field": { + "label": "Vrsta pitanja", + "description": "Biblioteka za ovo pitanje." } }, { - "label":"Prikaz teksta u kvizu", - "fields":[ + "label": "Prikaz teksta u kvizu", + "fields": [ { - "label":"Oznaka za dugme \"Nazad\"", - "default":"Zurück" + "label": "Oznaka za dugme \"Nazad\"", + "default": "Zurück" }, { - "label":"Oznaka za dugme \"Naprijed\"", - "default":"Weiter" + "label": "Oznaka za dugme \"Naprijed\"", + "default": "Weiter" }, { - "label":"Oznaka za dugme \"Završi\"", - "default":"Kraj" + "label": "Oznaka za dugme \"Završi\"", + "default": "Kraj" }, { - "label":"Početni tekst", - "description":"Koristi tekst ako je izabran za napredak u pisanom obliku.", - "default":"Aktuelno pitanje: @current od @total pitanja" + "label": "Početni tekst", + "description": "Koristi tekst ako je izabran za napredak u pisanom obliku.", + "default": "Aktuelno pitanje: @current od @total pitanja" }, { - "label":"Označavanje za skakanje do određene tačke", - "description":"Koristi mjesto '%d' za redoslijed pitanja i %total za ukupan broj pitanja.", - "default":"Pitanje %d od %total" + "label": "Označavanje za skakanje do određene tačke", + "description": "Koristi mjesto '%d' za redoslijed pitanja i %total za ukupan broj pitanja.", + "default": "Pitanje %d od %total" }, { - "label":"Opis pitanja u vezi sa vezi s autorom", - "default":"Pitanje" + "label": "Opis pitanja u vezi sa vezi s autorom", + "default": "Pitanje" }, { - "label":"Napredno \"Readspeaker\"", - "description":"Varijable: @current i @total", - "default":"Pitanje @current od @total" + "label": "Napredno \"Readspeaker\"", + "description": "Varijable: @current i @total", + "default": "Pitanje @current od @total" }, { - "label":"Tekst za neodgovorena pitanja", - "default":"Neodgovoreno" + "label": "Tekst za neodgovorena pitanja", + "default": "Neodgovoreno" }, { - "label":"Tekst za odgovorena pitanja", - "default":"Odgovoreno" + "label": "Tekst za odgovorena pitanja", + "default": "Odgovoreno" }, { - "label":"Tekst za trenutno pitanja", - "default":"Trenutno pitanje" + "label": "Tekst za trenutno pitanja", + "default": "Trenutno pitanje" } ] }, { - "label":"Deaktivirati mogućnost povratka unazad", - "description":"Ako je aktivirano, korisnik će moći ići samo naprijed u odgovaranju na pitanja." + "label": "Deaktivirati mogućnost povratka unazad", + "description": "Ako je aktivirano, korisnik će moći ići samo naprijed u odgovaranju na pitanja." }, { - "label":"Izmješati pitanja", - "description":"Ako je aktivirano, pitanja će kod svakog učitavanja kviza imati drugi raspored." + "label": "Izmješati pitanja", + "description": "Ako je aktivirano, pitanja će kod svakog učitavanja kviza imati drugi raspored." }, { - "label":"Broj pitanja za prikaz:", - "description":"Može se koristiti kod odabira slučajnog pitanja." + "label": "Broj pitanja za prikaz:", + "description": "Može se koristiti kod odabira slučajnog pitanja." }, { - "label":"Završi kviz", - "fields":[ + "label": "Završi kviz", + "fields": [ { - "label":"Prikaz rezultata" + "label": "Prikaz rezultata" }, { - "label":"Napomena ako nema rezultata" + "label": "Napomena ako nema rezultata" }, { - "label":"Oznaka za povratne informacije", - "description":"Ovaj tekst će biti prikazan na kraju kviza kada korisnik odgovori na pitanja.", - "default":"Tvoj rezultat:" + "label": "Oznaka za povratne informacije", + "description": "Ovaj tekst će biti prikazan na kraju kviza kada korisnik odgovori na pitanja.", + "default": "Tvoj rezultat:" }, { - "label":"Tekst za prikaz broj odova", - "default":"Osvojeno @score bodova od @total mogućih.", - "description":"Ovaj tekst će se koristiti da prikaže ukupan broj bodova korisnika. \"@score\" će biti zamjenjen sa osvojenim bodovima, \"@total\" će biti zamjenjeno sa maksimalnim brojem bodova." + "label": "Tekst za prikaz broj odova", + "default": "Osvojeno @score bodova od @total mogućih.", + "description": "Ovaj tekst će se koristiti da prikaže ukupan broj bodova korisnika. \"@score\" će biti zamjenjen sa osvojenim bodovima, \"@total\" će biti zamjenjeno sa maksimalnim brojem bodova." }, { - "label":"Pozadinska zamućenost za elemente za uzimanje", - "fields":[ + "label": "Pozadinska zamućenost za elemente za uzimanje", + "fields": [ { - "widgets":[ - + "widgets": [ + { + "label": "Default" + } ], - "label":"Define custom feedback for any score range", - "description":"Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!", - "entity":"range", - "field":{ - "fields":[ + "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": "Score Range" }, + {}, { - - }, - { - "label":"Feedback for defined score range", - "placeholder":"Fill in the feedback" + "label": "Feedback for defined score range", + "placeholder": "Fill in the feedback" } ] } @@ -168,84 +167,88 @@ ] }, { - "label":"Old Feedback", - "fields":[ + "label": "Old Feedback", + "fields": [ { - "label":"Komentar za uspješno završen kviz", - "description":"Ovaj tekst će biti prikazan iznad broja bodova kada je korisnik uspješno završio kviz." + "label": "Komentar za uspješno završen kviz", + "description": "Ovaj tekst će biti prikazan iznad broja bodova kada je korisnik uspješno završio kviz." }, { - "label":"Oznaka kod neuspješnog završetka kviza", - "description":"Ovaj tekst će biti prikazan iznad broja bodova kada je korisnik nije uspješno završio kviz." + "label": "Oznaka kod neuspješnog završetka kviza", + "description": "Ovaj tekst će biti prikazan iznad broja bodova kada je korisnik nije uspješno završio kviz." }, { - "label":"Oznaka kod neuspješnog završetka kviza", - "description":"Ovaj komentar će se pokazati nakon što korisnik nije sakupio dovoljan broj bodova za uspješan završetak kviza." + "label": "Oznaka kod neuspješnog završetka kviza", + "description": "Ovaj komentar će se pokazati nakon što korisnik nije sakupio dovoljan broj bodova za uspješan završetak kviza." }, { - "label":"Oznaka za dugme \"Prikaži rješenje\"", - "description":"Oznaka za dugme \"Prikaži rješenje\"" + "label": "Oznaka za dugme \"Prikaži rješenje\"", + "description": "Oznaka za dugme \"Prikaži rješenje\"" } ] }, { - "label":"Oznaka za dugme \"Ponovi\"", - "default":"Prikaži rješenje", - "description":"Oznaka za dugme \"Ponovi\"" + "label": "Oznaka za dugme \"Ponovi\"", + "default": "Prikaži rješenje", + "description": "Oznaka za dugme \"Ponovi\"" }, { - "label":"Oznaka za dugme \"Završi\"", - "default":"Ponovi", - "description":"Text for the retry button." + "label": "Oznaka za dugme \"Završi\"", + "default": "Ponovi", + "description": "Text for the retry button." }, { - "label":"Prikaži video prije rezultata kviza", - "default":"Kraj" + "label": "Prikaži video prije rezultata kviza", + "default": "Kraj" }, { - "label":"Aktiviraj dugme \"Preskoči vidio\"" + "label": "Aktiviraj dugme \"Preskoči vidio\"" }, { - "label":"Oznaka za dugme \"Preskoči video\"" + "label": "Oznaka za dugme \"Preskoči video\"" }, { - "label":"Video nakon položenog kviza", - "default":"Skip video" + "label": "Video nakon položenog kviza", + "default": "Skip video" }, { - "label":"Video nakon nepoloženog kviza", - "description":"Ovaj video se prikazuje nakon što korisnik neuspješno završi kviz." + "label": "Video nakon nepoloženog kviza", + "description": "Ovaj video se prikazuje nakon što korisnik neuspješno završi kviz." }, { - "label":"Fail video", - "description":"This video will be played if the user failes the quiz." + "label": "Fail video", + "description": "This video will be played if the user failes the quiz." } ] }, { - "label":"Podešavanje dugmeta \"Prikaži rješenje\" i \"Ponovi\".", - "fields":[ + "label": "Podešavanje dugmeta \"Prikaži rješenje\" i \"Ponovi\".", + "fields": [ { - "label":"Poništi dugme \"Prikaži rješenje\"", - "description":"Ova opcija podešava prikazivanje dugmeta \"Prikaži rješenje\" za sva pitanja ili da bude za svako posebno pitanje konfigurirano.", - "options":[ + "label": "Show \"Check\" buttons", + "description": "This option determines if the \"Check\" button will be shown for all questions." + }, + { + "label": "Poništi dugme \"Prikaži rješenje\"", + "description": "Ova opcija podešava prikazivanje dugmeta \"Prikaži rješenje\" za sva pitanja ili da bude za svako posebno pitanje konfigurirano.", + "options": [ { - "label":"Prikaži" + "label": "Prikaži" }, { - "label":"Nemoj prikazati" + "label": "Nemoj prikazati" } ] }, { - "label":"Poništi dugme \"Ponovi\"", - "description":"Ova opcija podešava prikazivanje dugmeta \"Ponovi\" za sva pitanja ili da bude za svako posebno pitanje konfigurirano.", - "options":[ + "label": "Poništi dugme \"Ponovi\"", + "description": "Ova opcija podešava prikazivanje dugmeta \"Ponovi\" za sva pitanja ili da bude za svako posebno pitanje konfigurirano.", + "options": [ { - "label":"Prikaži" + "label": "Prikaži" }, { - "label":"Nemoj prikazati" + "label": "Nemoj prikazati" } ] } diff --git a/language/ca.json b/language/ca.json index 97b41b8..bb59d49 100644 --- a/language/ca.json +++ b/language/ca.json @@ -1,166 +1,165 @@ { - "semantics":[ + "semantics": [ { - "label":"Quiz introduction", - "fields":[ + "label": "Quiz introduction", + "fields": [ { - "label":"Display introduction" + "label": "Display introduction" }, { - "label":"Title", - "description":"This title will be displayed above the introduction text." + "label": "Title", + "description": "This title will be displayed above the introduction text." }, { - "label":"Text d'introducció", - "description":"This text will be displayed before the quiz starts." + "label": "Text d'introducció", + "description": "This text will be displayed before the quiz starts." }, { - "label":"Start button text", - "default":"Start Quiz" + "label": "Start button text", + "default": "Start Quiz" }, { - "label":"Imatge de fons", - "description":"An optional background image for the introduction." + "label": "Imatge de fons", + "description": "An optional background image for the introduction." } ] }, { - "label":"Imatge de fons", - "description":"An optional background image for the Question set." + "label": "Imatge de fons", + "description": "An optional background image for the Question set." }, { - "label":"Progress indicator", - "description":"Question set progress indicator style.", - "options":[ + "label": "Progress indicator", + "description": "Question set progress indicator style.", + "options": [ { - "label":"Textual" + "label": "Textual" }, { - "label":"Dots" + "label": "Dots" } - ], - "default":"dots" + ] }, { - "label":"Percentatge per passar", - "description":"Percentage of Total score required for passing the quiz." + "label": "Percentatge per passar", + "description": "Percentage of Total score required for passing the quiz." }, { - "label":"Questions", - "widgets":[ + "label": "Questions", + "widgets": [ { - "label":"Per defecte" + "label": "Per defecte" }, { - "label":"Textual" + "label": "Textual" } ], - "entity":"question", - "field":{ - "label":"Question type", - "description":"Library for this question." + "entity": "question", + "field": { + "label": "Question type", + "description": "Library for this question." } }, { - "label":"Interface texts in quiz", - "fields":[ + "label": "Interface texts in quiz", + "fields": [ { - "label":"Back button", - "default":"Previous question" + "label": "Back button", + "default": "Previous question" }, { - "label":"Next button", - "default":"Next question" + "label": "Next button", + "default": "Next question" }, { - "label":"Finish button", - "default":"Acabar" + "label": "Finish button", + "default": "Acabar" }, { - "label":"Progress text", - "description":"Text used if textual progress is selected.", - "default":"Question: @current of @total questions" + "label": "Progress text", + "description": "Text used if textual progress is selected.", + "default": "Question: @current of @total questions" }, { - "label":"Label for jumping to a certain question", - "description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.", - "default":"Question %d of %total" + "label": "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":"Pregunta" + "label": "Copyright dialog question label", + "default": "Pregunta" }, { - "label":"Readspeaker progress", - "description":"May use @current and @total question variables", - "default":"Question @current of @total" + "label": "Readspeaker progress", + "description": "May use @current and @total question variables", + "default": "Question @current of @total" }, { - "label":"Unanswered question text", - "default":"Unanswered" + "label": "Unanswered question text", + "default": "Unanswered" }, { - "label":"Answered question text", - "default":"Answered" + "label": "Answered question text", + "default": "Answered" }, { - "label":"Current question text", - "default":"Current question" + "label": "Current question text", + "default": "Current question" } ] }, { - "label":"Disable backwards navigation", - "description":"This option will only allow you to move forward in Question Set" + "label": "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": "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": "Number of questions to be shown:", + "description": "Create a randomized batch of questions from the total." }, { - "label":"Quiz finished", - "fields":[ + "label": "Quiz finished", + "fields": [ { - "label":"Display results" + "label": "Display results" }, { - "label":"Display solution button" + "label": "Display solution button" }, { - "label":"No results message", - "description":"Text displayed on end page when \"Display results\" is disabled", - "default":"Finished" + "label": "No results message", + "description": "Text displayed on end page when \"Display results\" is disabled", + "default": "Finished" }, { - "label":"Feedback heading", - "default":"Your result:", - "description":"This heading will be displayed at the end of the quiz when the user has answered all questions." + "label": "Feedback heading", + "default": "Your result:", + "description": "This heading will be displayed at the end of the quiz when the user has answered all questions." }, { - "label":"Overall Feedback", - "fields":[ + "label": "Overall Feedback", + "fields": [ { - "widgets":[ - + "widgets": [ + { + "label": "Default" + } ], - "label":"Define custom feedback for any score range", - "description":"Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!", - "entity":"range", - "field":{ - "fields":[ + "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": "Score Range" }, + {}, { - - }, - { - "label":"Feedback for defined score range", - "placeholder":"Fill in the feedback" + "label": "Feedback for defined score range", + "placeholder": "Fill in the feedback" } ] } @@ -168,84 +167,88 @@ ] }, { - "label":"Old Feedback", - "fields":[ + "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": "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": "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": "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": "Failed comment", + "description": "This comment will be displayed after the score if the user has failed the quiz." } ] }, { - "label":"Solution button label", - "default":"Mostrar solució", - "description":"Text for the solution button." + "label": "Solution button label", + "default": "Mostrar solució", + "description": "Text for the solution button." }, { - "label":"Etiqueta del botó \"Tornar-ho a provar\"", - "default":"Tornar-ho a provar", - "description":"Text for the retry button." + "label": "Etiqueta del botó \"Tornar-ho a provar\"", + "default": "Tornar-ho a provar", + "description": "Text for the retry button." }, { - "label":"Finish button text", - "default":"Acabar" + "label": "Finish button text", + "default": "Acabar" }, { - "label":"Display video before quiz results" + "label": "Display video before quiz results" }, { - "label":"Enable skip video button" + "label": "Enable skip video button" }, { - "label":"Skip video button label", - "default":"Skip video" + "label": "Skip video button label", + "default": "Skip video" }, { - "label":"Passed video", - "description":"This video will be played if the user successfully passed the quiz." + "label": "Passed video", + "description": "This video will be played if the user successfully passed the quiz." }, { - "label":"Fail video", - "description":"This video will be played if the user failes the quiz." + "label": "Fail video", + "description": "This video will be played if the user failes the quiz." } ] }, { - "label":"Settings for \"Show solution\" and \"Retry\" buttons", - "fields":[ + "label": "Settings for \"Show solution\" and \"Retry\" buttons", + "fields": [ { - "label":"Override \"Show Solution\" button", - "description":"This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.", - "options":[ + "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": "Enabled" }, { - "label":"Disabled" + "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": "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": "Enabled" }, { - "label":"Disabled" + "label": "Disabled" } ] } diff --git a/language/cs.json b/language/cs.json index c97b04e..5928587 100644 --- a/language/cs.json +++ b/language/cs.json @@ -1,166 +1,165 @@ { - "semantics":[ + "semantics": [ { - "label":"Quiz introduction", - "fields":[ + "label": "Quiz introduction", + "fields": [ { - "label":"Display introduction" + "label": "Display introduction" }, { - "label":"Title", - "description":"This title will be displayed above the introduction text." + "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": "Introduction text", + "description": "This text will be displayed before the quiz starts." }, { - "label":"Start button text", - "default":"Start Quiz" + "label": "Start button text", + "default": "Start Quiz" }, { - "label":"Background image", - "description":"An optional background image for the introduction." + "label": "Background image", + "description": "An optional background image for the introduction." } ] }, { - "label":"Background image", - "description":"An optional background image for the Question set." + "label": "Background image", + "description": "An optional background image for the Question set." }, { - "label":"Progress indicator", - "description":"Question set progress indicator style.", - "options":[ + "label": "Progress indicator", + "description": "Question set progress indicator style.", + "options": [ { - "label":"Textual" + "label": "Textual" }, { - "label":"Dots" + "label": "Dots" } - ], - "default":"dots" + ] }, { - "label":"Pass percentage", - "description":"Percentage of Total score required for passing the quiz." + "label": "Pass percentage", + "description": "Percentage of Total score required for passing the quiz." }, { - "label":"Questions", - "widgets":[ + "label": "Questions", + "widgets": [ { - "label":"Default" + "label": "Default" }, { - "label":"Textual" + "label": "Textual" } ], - "entity":"question", - "field":{ - "label":"Question type", - "description":"Library for this question." + "entity": "question", + "field": { + "label": "Question type", + "description": "Library for this question." } }, { - "label":"Interface texts in quiz", - "fields":[ + "label": "Interface texts in quiz", + "fields": [ { - "label":"Back button", - "default":"Previous question" + "label": "Back button", + "default": "Previous question" }, { - "label":"Next button", - "default":"Next question" + "label": "Next button", + "default": "Next question" }, { - "label":"Finish button", - "default":"Finish" + "label": "Finish button", + "default": "Finish" }, { - "label":"Progress text", - "description":"Text used if textual progress is selected.", - "default":"Question: @current of @total questions" + "label": "Progress text", + "description": "Text used if textual progress is selected.", + "default": "Question: @current of @total questions" }, { - "label":"Label for jumping to a certain question", - "description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.", - "default":"Question %d of %total" + "label": "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": "Copyright dialog question label", + "default": "Question" }, { - "label":"Readspeaker progress", - "description":"May use @current and @total question variables", - "default":"Question @current of @total" + "label": "Readspeaker progress", + "description": "May use @current and @total question variables", + "default": "Question @current of @total" }, { - "label":"Unanswered question text", - "default":"Unanswered" + "label": "Unanswered question text", + "default": "Unanswered" }, { - "label":"Answered question text", - "default":"Answered" + "label": "Answered question text", + "default": "Answered" }, { - "label":"Current question text", - "default":"Current question" + "label": "Current question text", + "default": "Current question" } ] }, { - "label":"Disable backwards navigation", - "description":"This option will only allow you to move forward in Question Set" + "label": "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": "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": "Number of questions to be shown:", + "description": "Create a randomized batch of questions from the total." }, { - "label":"Quiz finished", - "fields":[ + "label": "Quiz finished", + "fields": [ { - "label":"Display results" + "label": "Display results" }, { - "label":"Display solution button" + "label": "Display solution button" }, { - "label":"No results message", - "description":"Text displayed on end page when \"Display results\" is disabled", - "default":"Finished" + "label": "No results message", + "description": "Text displayed on end page when \"Display results\" is disabled", + "default": "Finished" }, { - "label":"Feedback heading", - "default":"Your result:", - "description":"This heading will be displayed at the end of the quiz when the user has answered all questions." + "label": "Feedback heading", + "default": "Your result:", + "description": "This heading will be displayed at the end of the quiz when the user has answered all questions." }, { - "label":"Overall Feedback", - "fields":[ + "label": "Overall Feedback", + "fields": [ { - "widgets":[ - + "widgets": [ + { + "label": "Default" + } ], - "label":"Define custom feedback for any score range", - "description":"Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!", - "entity":"range", - "field":{ - "fields":[ + "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": "Score Range" }, + {}, { - - }, - { - "label":"Feedback for defined score range", - "placeholder":"Fill in the feedback" + "label": "Feedback for defined score range", + "placeholder": "Fill in the feedback" } ] } @@ -168,84 +167,88 @@ ] }, { - "label":"Old Feedback", - "fields":[ + "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": "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": "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": "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": "Failed comment", + "description": "This comment will be displayed after the score if the user has failed the quiz." } ] }, { - "label":"Solution button label", - "default":"Show solution", - "description":"Text for the solution button." + "label": "Solution button label", + "default": "Show solution", + "description": "Text for the solution button." }, { - "label":"Retry button label", - "default":"Retry", - "description":"Text for the retry button." + "label": "Retry button label", + "default": "Retry", + "description": "Text for the retry button." }, { - "label":"Finish button text", - "default":"Finish" + "label": "Finish button text", + "default": "Finish" }, { - "label":"Display video before quiz results" + "label": "Display video before quiz results" }, { - "label":"Enable skip video button" + "label": "Enable skip video button" }, { - "label":"Skip video button label", - "default":"Skip video" + "label": "Skip video button label", + "default": "Skip video" }, { - "label":"Passed video", - "description":"This video will be played if the user successfully passed the quiz." + "label": "Passed video", + "description": "This video will be played if the user successfully passed the quiz." }, { - "label":"Fail video", - "description":"This video will be played if the user failes the quiz." + "label": "Fail video", + "description": "This video will be played if the user failes the quiz." } ] }, { - "label":"Settings for \"Show solution\" and \"Retry\" buttons", - "fields":[ + "label": "Settings for \"Show solution\" and \"Retry\" buttons", + "fields": [ { - "label":"Override \"Show Solution\" button", - "description":"This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.", - "options":[ + "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": "Enabled" }, { - "label":"Disabled" + "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": "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": "Enabled" }, { - "label":"Disabled" + "label": "Disabled" } ] } diff --git a/language/da.json b/language/da.json index 719fc18..5592e53 100644 --- a/language/da.json +++ b/language/da.json @@ -1,166 +1,165 @@ { - "semantics":[ + "semantics": [ { - "label":"Quiz introduction", - "fields":[ + "label": "Quiz introduction", + "fields": [ { - "label":"Display introduction" + "label": "Display introduction" }, { - "label":"Title", - "description":"This title will be displayed above the introduction text." + "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": "Introduction text", + "description": "This text will be displayed before the quiz starts." }, { - "label":"Start button text", - "default":"Start Quiz" + "label": "Start button text", + "default": "Start Quiz" }, { - "label":"Background image", - "description":"An optional background image for the introduction." + "label": "Background image", + "description": "An optional background image for the introduction." } ] }, { - "label":"Background image", - "description":"An optional background image for the Question set." + "label": "Background image", + "description": "An optional background image for the Question set." }, { - "label":"Progress indicator", - "description":"Question set progress indicator style.", - "options":[ + "label": "Progress indicator", + "description": "Question set progress indicator style.", + "options": [ { - "label":"Textual" + "label": "Textual" }, { - "label":"Dots" + "label": "Dots" } - ], - "default":"dots" + ] }, { - "label":"Pass percentage", - "description":"Percentage of Total score required for passing the quiz." + "label": "Pass percentage", + "description": "Percentage of Total score required for passing the quiz." }, { - "label":"Questions", - "widgets":[ + "label": "Questions", + "widgets": [ { - "label":"Default" + "label": "Default" }, { - "label":"Textual" + "label": "Textual" } ], - "entity":"question", - "field":{ - "label":"Question type", - "description":"Library for this question." + "entity": "question", + "field": { + "label": "Question type", + "description": "Library for this question." } }, { - "label":"Interface texts in quiz", - "fields":[ + "label": "Interface texts in quiz", + "fields": [ { - "label":"Tilbage-knap", - "default":"Previous question" + "label": "Tilbage-knap", + "default": "Previous question" }, { - "label":"Next button", - "default":"Next question" + "label": "Next button", + "default": "Next question" }, { - "label":"Finish button", - "default":"Finish" + "label": "Finish button", + "default": "Finish" }, { - "label":"Progress text", - "description":"Text used if textual progress is selected.", - "default":"Question: @current of @total questions" + "label": "Progress text", + "description": "Text used if textual progress is selected.", + "default": "Question: @current of @total questions" }, { - "label":"Label for jumping to a certain question", - "description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.", - "default":"Question %d of %total" + "label": "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": "Copyright dialog question label", + "default": "Question" }, { - "label":"Readspeaker progress", - "description":"May use @current and @total question variables", - "default":"Question @current of @total" + "label": "Readspeaker progress", + "description": "May use @current and @total question variables", + "default": "Question @current of @total" }, { - "label":"Unanswered question text", - "default":"Unanswered" + "label": "Unanswered question text", + "default": "Unanswered" }, { - "label":"Answered question text", - "default":"Answered" + "label": "Answered question text", + "default": "Answered" }, { - "label":"Current question text", - "default":"Current question" + "label": "Current question text", + "default": "Current question" } ] }, { - "label":"Disable backwards navigation", - "description":"This option will only allow you to move forward in Question Set" + "label": "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": "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": "Number of questions to be shown:", + "description": "Create a randomized batch of questions from the total." }, { - "label":"Quiz finished", - "fields":[ + "label": "Quiz finished", + "fields": [ { - "label":"Display results" + "label": "Display results" }, { - "label":"Display solution button" + "label": "Display solution button" }, { - "label":"No results message", - "description":"Text displayed on end page when \"Display results\" is disabled", - "default":"Finished" + "label": "No results message", + "description": "Text displayed on end page when \"Display results\" is disabled", + "default": "Finished" }, { - "label":"Feedback heading", - "default":"Your result:", - "description":"This heading will be displayed at the end of the quiz when the user has answered all questions." + "label": "Feedback heading", + "default": "Your result:", + "description": "This heading will be displayed at the end of the quiz when the user has answered all questions." }, { - "label":"Overall Feedback", - "fields":[ + "label": "Overall Feedback", + "fields": [ { - "widgets":[ - + "widgets": [ + { + "label": "Default" + } ], - "label":"Define custom feedback for any score range", - "description":"Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!", - "entity":"range", - "field":{ - "fields":[ + "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": "Score Range" }, + {}, { - - }, - { - "label":"Feedback for defined score range", - "placeholder":"Fill in the feedback" + "label": "Feedback for defined score range", + "placeholder": "Fill in the feedback" } ] } @@ -168,84 +167,88 @@ ] }, { - "label":"Old Feedback", - "fields":[ + "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": "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": "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": "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": "Failed comment", + "description": "This comment will be displayed after the score if the user has failed the quiz." } ] }, { - "label":"Solution button label", - "default":"Show solution", - "description":"Text for the solution button." + "label": "Solution button label", + "default": "Show solution", + "description": "Text for the solution button." }, { - "label":"Retry button label", - "default":"Retry", - "description":"Text for the retry button." + "label": "Retry button label", + "default": "Retry", + "description": "Text for the retry button." }, { - "label":"Finish button text", - "default":"Finish" + "label": "Finish button text", + "default": "Finish" }, { - "label":"Display video before quiz results" + "label": "Display video before quiz results" }, { - "label":"Enable skip video button" + "label": "Enable skip video button" }, { - "label":"Skip video button label", - "default":"Skip video" + "label": "Skip video button label", + "default": "Skip video" }, { - "label":"Passed video", - "description":"This video will be played if the user successfully passed the quiz." + "label": "Passed video", + "description": "This video will be played if the user successfully passed the quiz." }, { - "label":"Fail video", - "description":"This video will be played if the user failes the quiz." + "label": "Fail video", + "description": "This video will be played if the user failes the quiz." } ] }, { - "label":"Settings for \"Show solution\" and \"Retry\" buttons", - "fields":[ + "label": "Settings for \"Show solution\" and \"Retry\" buttons", + "fields": [ { - "label":"Overskriv \"Vi svar\"-knap", - "description":"Dette valg afgør om \"Vis svar\"-knappen skal vises på alle spørgsmål, skjules for alle eller konfigureres individuelt til hvert spørgsmål.", - "options":[ + "label": "Show \"Check\" buttons", + "description": "This option determines if the \"Check\" button will be shown for all questions." + }, + { + "label": "Overskriv \"Vi svar\"-knap", + "description": "Dette valg afgør om \"Vis svar\"-knappen skal vises på alle spørgsmål, skjules for alle eller konfigureres individuelt til hvert spørgsmål.", + "options": [ { - "label":"Aktiveret" + "label": "Aktiveret" }, { - "label":"Deaktiveret" + "label": "Deaktiveret" } ] }, { - "label":"Overskriv \"Prøv igen\"-knap", - "description":"Dette valg afgør om \"Prøv igen\"-knappen skal vises på alle spørgsmål, skjules for alle eller konfigureres individuelt til hvert spørgsmål.", - "options":[ + "label": "Overskriv \"Prøv igen\"-knap", + "description": "Dette valg afgør om \"Prøv igen\"-knappen skal vises på alle spørgsmål, skjules for alle eller konfigureres individuelt til hvert spørgsmål.", + "options": [ { - "label":"Aktiveret" + "label": "Aktiveret" }, { - "label":"Deaktiveret" + "label": "Deaktiveret" } ] } diff --git a/language/de.json b/language/de.json index f3cd608..ad2f099 100644 --- a/language/de.json +++ b/language/de.json @@ -1,166 +1,165 @@ { - "semantics":[ + "semantics": [ { - "label":"Quiz-Einführung", - "fields":[ + "label": "Quiz-Einführung", + "fields": [ { - "label":"Zeige Einführung" + "label": "Zeige Einführung" }, { - "label":"Titel", - "description":"Dieser Titel wird über dem Einführungstext angezeigt." + "label": "Titel", + "description": "Dieser Titel wird über dem Einführungstext angezeigt." }, { - "label":"Einführungstext", - "description":"Dieser Text wird angezeigt, bevor das Quiz anfängt." + "label": "Einführungstext", + "description": "Dieser Text wird angezeigt, bevor das Quiz anfängt." }, { - "label":"Beschriftung des \"Start\"-Buttons", - "default":"Starte Quiz" + "label": "Beschriftung des \"Start\"-Buttons", + "default": "Starte Quiz" }, { - "label":"Hintergrundbild", - "description":"Ein optionales Hintergrundbild für die Einführung." + "label": "Hintergrundbild", + "description": "Ein optionales Hintergrundbild für die Einführung." } ] }, { - "label":"Hintergrundbild", - "description":"Ein optionales Hintergrundbild für das Fragenset." + "label": "Hintergrundbild", + "description": "Ein optionales Hintergrundbild für das Fragenset." }, { - "label":"Fortschrittsanzeige", - "description":"Anzeigestil für die Fortschrittsanzeige des Fragensets.", - "options":[ + "label": "Fortschrittsanzeige", + "description": "Anzeigestil für die Fortschrittsanzeige des Fragensets.", + "options": [ { - "label":"Text" + "label": "Text" }, { - "label":"Punkte" + "label": "Punkte" } - ], - "default":"dots" + ] }, { - "label":"Prozentsatz zum Bestehen", - "description":"Prozentsatz der Gesamtpunktzahl, der nötig ist, um das Quiz zu bestehen" + "label": "Prozentsatz zum Bestehen", + "description": "Prozentsatz der Gesamtpunktzahl, der nötig ist, um das Quiz zu bestehen" }, { - "label":"Fragen", - "widgets":[ + "label": "Fragen", + "widgets": [ { - "label":"Vorgabe" + "label": "Vorgabe" }, { - "label":"Text" + "label": "Text" } ], - "entity":"frage", - "field":{ - "label":"Fragentyp", - "description":"Bibliothek für diese Frage." + "entity": "frage", + "field": { + "label": "Fragentyp", + "description": "Bibliothek für diese Frage." } }, { - "label":"Anzeigetexte im Quiz", - "fields":[ + "label": "Anzeigetexte im Quiz", + "fields": [ { - "label":"Zurück-Button", - "default":"Zurück" + "label": "Zurück-Button", + "default": "Zurück" }, { - "label":"Beschriftung des \"Weiter\"-Buttons", - "default":"Weiter" + "label": "Beschriftung des \"Weiter\"-Buttons", + "default": "Weiter" }, { - "label":"Beschriftung des \"Beenden\"-Buttons", - "default":"Beenden" + "label": "Beschriftung des \"Beenden\"-Buttons", + "default": "Beenden" }, { - "label":"Fortschrittsanzeigetext", - "description":"Verwendeter Text, wenn Fortschrittsanzeige in Textform gewählt wurde.", - "default":"Aktuelle Frage: @current von @total Fragen" + "label": "Fortschrittsanzeigetext", + "description": "Verwendeter Text, wenn Fortschrittsanzeige in Textform gewählt wurde.", + "default": "Aktuelle Frage: @current von @total Fragen" }, { - "label":"Beschriftung für das Springen zu einem bestimmten Punkt", - "description":"Nutze den Platzhalter '%d' für die Fragennummer und %total für die Gesamtzahl der Fragen.", - "default":"Frage %d von %total" + "label": "Beschriftung für das Springen zu einem bestimmten Punkt", + "description": "Nutze den Platzhalter '%d' für die Fragennummer und %total für die Gesamtzahl der Fragen.", + "default": "Frage %d von %total" }, { - "label":"Beschriftung für eine Frage zum Urheberrechtsdialog", - "default":"Frage" + "label": "Beschriftung für eine Frage zum Urheberrechtsdialog", + "default": "Frage" }, { - "label":"Fortschritt \"Readspeaker\"", - "description":"Variablen: @current und @total", - "default":"Frage @current von @total" + "label": "Fortschritt \"Readspeaker\"", + "description": "Variablen: @current und @total", + "default": "Frage @current von @total" }, { - "label":"Text für unbeantwortete Fragen", - "default":"Unbeantwortet" + "label": "Text für unbeantwortete Fragen", + "default": "Unbeantwortet" }, { - "label":"Text für beantwortete Fragen", - "default":"Beantwortet" + "label": "Text für beantwortete Fragen", + "default": "Beantwortet" }, { - "label":"Text fpr aktuelle Frage", - "default":"Aktuelle Frage" + "label": "Text fpr aktuelle Frage", + "default": "Aktuelle Frage" } ] }, { - "label":"Rückwärts-Navigation ausstellen", - "description":"Wenn aktiviert, kann der Nutzer nur vorwärts durch das Fragenset navigieren." + "label": "Rückwärts-Navigation ausstellen", + "description": "Wenn aktiviert, kann der Nutzer nur vorwärts durch das Fragenset navigieren." }, { - "label":"Fragen zufällig anordnen", - "description":"Aktivieren, um die Fragen auf dem Bildschirm zufällig anzuordnen." + "label": "Fragen zufällig anordnen", + "description": "Aktivieren, um die Fragen auf dem Bildschirm zufällig anzuordnen." }, { - "label":"Anzahl der anzuzeigenden Fragen:", - "description":"Kann benutzt werden, um eine zufällige Auswahl auf mehreren Fragen zu treffen." + "label": "Anzahl der anzuzeigenden Fragen:", + "description": "Kann benutzt werden, um eine zufällige Auswahl auf mehreren Fragen zu treffen." }, { - "label":"Quiz beendet", - "fields":[ + "label": "Quiz beendet", + "fields": [ { - "label":"Ergebnisanzeige" + "label": "Ergebnisanzeige" }, { - "label":"Hinweis bei keinen Ergebnissen" + "label": "Hinweis bei keinen Ergebnissen" }, { - "label":"Kopfzeile für die Rückmeldungen", - "description":"diese Kopfzeile wird am Ende des Quizzes angezeigt, wenn der Nutzer alle Fragen beantwortet hat.", - "default":"Dein Ergebnis:" + "label": "Kopfzeile für die Rückmeldungen", + "description": "diese Kopfzeile wird am Ende des Quizzes angezeigt, wenn der Nutzer alle Fragen beantwortet hat.", + "default": "Dein Ergebnis:" }, { - "label":"Text für die Punkteanzeige", - "default":"Du hast @score Punkte von @total möglichen.", - "description":"Dieser Text wird verwendet, um die Gesamtpunkte des Nutzers anzuzeigen. \"@score\" wird durch die errechnete Punktzahl ersetzt, \"@total\" wird durch die maximal erreichbare Punktzahl ersetzt." + "label": "Text für die Punkteanzeige", + "default": "Du hast @score Punkte von @total möglichen.", + "description": "Dieser Text wird verwendet, um die Gesamtpunkte des Nutzers anzuzeigen. \"@score\" wird durch die errechnete Punktzahl ersetzt, \"@total\" wird durch die maximal erreichbare Punktzahl ersetzt." }, { - "label":"Hintergrunddeckkraft für bewegliche Elemente", - "fields":[ + "label": "Hintergrunddeckkraft für bewegliche Elemente", + "fields": [ { - "widgets":[ - + "widgets": [ + { + "label": "Default" + } ], - "label":"Benutzerdefinierte Rückmeldung für jeden Punkte-Bereich definieren", - "description":"Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!", - "entity":"Bereich", - "field":{ - "fields":[ + "label": "Benutzerdefinierte Rückmeldung für jeden Punkte-Bereich definieren", + "description": "Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!", + "entity": "Bereich", + "field": { + "fields": [ { - "label":"Punkte-Bereich" + "label": "Punkte-Bereich" }, + {}, { - - }, - { - "label":"Feedback for defined score range", - "placeholder":"Fill in the feedback" + "label": "Feedback for defined score range", + "placeholder": "Fill in the feedback" } ] } @@ -168,84 +167,88 @@ ] }, { - "label":"Old Feedback", - "fields":[ + "label": "Old Feedback", + "fields": [ { - "label":"Kommentar für bestandenes Quiz", - "description":"Dieser Kommentar wird nach den Punkten angezeigt, wenn der Nutzer das Quiz erfolgreich bestanden hat." + "label": "Kommentar für bestandenes Quiz", + "description": "Dieser Kommentar wird nach den Punkten angezeigt, wenn der Nutzer das Quiz erfolgreich bestanden hat." }, { - "label":"Kopfzeile für nicht bestandenes Quiz", - "description":"Dieser Text wird oberhalb der Punkte angezeigt, wenn der Nutzer das Quiz nicht bestanden hat." + "label": "Kopfzeile für nicht bestandenes Quiz", + "description": "Dieser Text wird oberhalb der Punkte angezeigt, wenn der Nutzer das Quiz nicht bestanden hat." }, { - "label":"Kommentar für nicht bestandenes Quiz", - "description":"Dieser Kommentar wird nach den Punkten angezeigt, wenn der Nutzer das Quiz nicht bestanden hat." + "label": "Kommentar für nicht bestandenes Quiz", + "description": "Dieser Kommentar wird nach den Punkten angezeigt, wenn der Nutzer das Quiz nicht bestanden hat." }, { - "label":"Beschriftung des \"Lösung zeigen\"-Buttons", - "description":"Beschriftung des \"Lösung zeigen\"-Buttons" + "label": "Beschriftung des \"Lösung zeigen\"-Buttons", + "description": "Beschriftung des \"Lösung zeigen\"-Buttons" } ] }, { - "label":"Beschriftung des \"Wiederholen\"-Buttons", - "default":"Lösung anzeigen", - "description":"Beschriftung des \"Wiederholen\"-Buttons" + "label": "Beschriftung des \"Wiederholen\"-Buttons", + "default": "Lösung anzeigen", + "description": "Beschriftung des \"Wiederholen\"-Buttons" }, { - "label":"Beschriftung des \"Beenden\"-Buttons", - "default":"Wiederholen", - "description":"Text for the retry button." + "label": "Beschriftung des \"Beenden\"-Buttons", + "default": "Wiederholen", + "description": "Text for the retry button." }, { - "label":"Schaltflächentext Beenden", - "default":"Beenden" + "label": "Schaltflächentext Beenden", + "default": "Beenden" }, { - "label":"Aktiviere \"Video überspringen\"-Button" + "label": "Aktiviere \"Video überspringen\"-Button" }, { - "label":"Beschriftung des \"Video überspringen\"-Buttons" + "label": "Beschriftung des \"Video überspringen\"-Buttons" }, { - "label":"Bestanden-Video", - "default":"Skip video" + "label": "Bestanden-Video", + "default": "Skip video" }, { - "label":"Nicht-bestanden-Video", - "description":"Dieses Video wird angezeigt, wenn der Nutzer das Quiz nicht bestanden hat." + "label": "Nicht-bestanden-Video", + "description": "Dieses Video wird angezeigt, wenn der Nutzer das Quiz nicht bestanden hat." }, { - "label":"Fail video", - "description":"This video will be played if the user failes the quiz." + "label": "Fail video", + "description": "This video will be played if the user failes the quiz." } ] }, { - "label":"Einstellungen für \"Lösung zeigen\"-Button und \"Nochmal\".", - "fields":[ + "label": "Einstellungen für \"Lösung zeigen\"-Button und \"Nochmal\".", + "fields": [ { - "label":"Überschreiben des \"Lösungen anzeigen\"-Buttons", - "description":"Diese Option gibt an, ob der \"Lösung anzeigen\"-Button für alle Fragen angezeigt, ausgeblendet oder für jede Frage individuell konfiguriert wird.", - "options":[ + "label": "Show \"Check\" buttons", + "description": "This option determines if the \"Check\" button will be shown for all questions." + }, + { + "label": "Überschreiben des \"Lösungen anzeigen\"-Buttons", + "description": "Diese Option gibt an, ob der \"Lösung anzeigen\"-Button für alle Fragen angezeigt, ausgeblendet oder für jede Frage individuell konfiguriert wird.", + "options": [ { - "label":"Anzeigen" + "label": "Anzeigen" }, { - "label":"Ausblenden" + "label": "Ausblenden" } ] }, { - "label":"Überschreiben des \"Wiederholen\"-Buttons", - "description":"Diese Option gibt an, ob der \"Wiederholen\" Button für alle Fragen angezeigt, ausgeblendet oder für jede Frage individuell konfiguriert wird.", - "options":[ + "label": "Überschreiben des \"Wiederholen\"-Buttons", + "description": "Diese Option gibt an, ob der \"Wiederholen\" Button für alle Fragen angezeigt, ausgeblendet oder für jede Frage individuell konfiguriert wird.", + "options": [ { - "label":"Anzeigen" + "label": "Anzeigen" }, { - "label":"Ausblenden" + "label": "Ausblenden" } ] } diff --git a/language/el.json b/language/el.json index 4b3141d..88fc0b8 100644 --- a/language/el.json +++ b/language/el.json @@ -1,166 +1,165 @@ { - "semantics":[ + "semantics": [ { - "label":"Quiz introduction", - "fields":[ + "label": "Quiz introduction", + "fields": [ { - "label":"Display introduction" + "label": "Display introduction" }, { - "label":"Title", - "description":"This title will be displayed above the introduction text." + "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": "Introduction text", + "description": "This text will be displayed before the quiz starts." }, { - "label":"Start button text", - "default":"Start Quiz" + "label": "Start button text", + "default": "Start Quiz" }, { - "label":"Background image", - "description":"An optional background image for the introduction." + "label": "Background image", + "description": "An optional background image for the introduction." } ] }, { - "label":"Background image", - "description":"An optional background image for the Question set." + "label": "Background image", + "description": "An optional background image for the Question set." }, { - "label":"Progress indicator", - "description":"Question set progress indicator style.", - "options":[ + "label": "Progress indicator", + "description": "Question set progress indicator style.", + "options": [ { - "label":"Textual" + "label": "Textual" }, { - "label":"Dots" + "label": "Dots" } - ], - "default":"dots" + ] }, { - "label":"Pass percentage", - "description":"Percentage of Total score required for passing the quiz." + "label": "Pass percentage", + "description": "Percentage of Total score required for passing the quiz." }, { - "label":"Questions", - "widgets":[ + "label": "Questions", + "widgets": [ { - "label":"Default" + "label": "Default" }, { - "label":"Textual" + "label": "Textual" } ], - "entity":"question", - "field":{ - "label":"Question type", - "description":"Library for this question." + "entity": "question", + "field": { + "label": "Question type", + "description": "Library for this question." } }, { - "label":"Interface texts in quiz", - "fields":[ + "label": "Interface texts in quiz", + "fields": [ { - "label":"Back button", - "default":"Previous question" + "label": "Back button", + "default": "Previous question" }, { - "label":"Next button", - "default":"Next question" + "label": "Next button", + "default": "Next question" }, { - "label":"Finish button", - "default":"Finish" + "label": "Finish button", + "default": "Finish" }, { - "label":"Progress text", - "description":"Text used if textual progress is selected.", - "default":"Question: @current of @total questions" + "label": "Progress text", + "description": "Text used if textual progress is selected.", + "default": "Question: @current of @total questions" }, { - "label":"Label for jumping to a certain question", - "description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.", - "default":"Question %d of %total" + "label": "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": "Copyright dialog question label", + "default": "Question" }, { - "label":"Readspeaker progress", - "description":"May use @current and @total question variables", - "default":"Question @current of @total" + "label": "Readspeaker progress", + "description": "May use @current and @total question variables", + "default": "Question @current of @total" }, { - "label":"Unanswered question text", - "default":"Unanswered" + "label": "Unanswered question text", + "default": "Unanswered" }, { - "label":"Answered question text", - "default":"Answered" + "label": "Answered question text", + "default": "Answered" }, { - "label":"Current question text", - "default":"Current question" + "label": "Current question text", + "default": "Current question" } ] }, { - "label":"Disable backwards navigation", - "description":"This option will only allow you to move forward in Question Set" + "label": "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": "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": "Number of questions to be shown:", + "description": "Create a randomized batch of questions from the total." }, { - "label":"Quiz finished", - "fields":[ + "label": "Quiz finished", + "fields": [ { - "label":"Display results" + "label": "Display results" }, { - "label":"Display solution button" + "label": "Display solution button" }, { - "label":"No results message", - "description":"Text displayed on end page when \"Display results\" is disabled", - "default":"Finished" + "label": "No results message", + "description": "Text displayed on end page when \"Display results\" is disabled", + "default": "Finished" }, { - "label":"Feedback heading", - "default":"Your result:", - "description":"This heading will be displayed at the end of the quiz when the user has answered all questions." + "label": "Feedback heading", + "default": "Your result:", + "description": "This heading will be displayed at the end of the quiz when the user has answered all questions." }, { - "label":"Overall Feedback", - "fields":[ + "label": "Overall Feedback", + "fields": [ { - "widgets":[ - + "widgets": [ + { + "label": "Default" + } ], - "label":"Define custom feedback for any score range", - "description":"Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!", - "entity":"range", - "field":{ - "fields":[ + "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": "Score Range" }, + {}, { - - }, - { - "label":"Feedback for defined score range", - "placeholder":"Fill in the feedback" + "label": "Feedback for defined score range", + "placeholder": "Fill in the feedback" } ] } @@ -168,84 +167,88 @@ ] }, { - "label":"Old Feedback", - "fields":[ + "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": "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": "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": "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": "Failed comment", + "description": "This comment will be displayed after the score if the user has failed the quiz." } ] }, { - "label":"Solution button label", - "default":"Show solution", - "description":"Text for the solution button." + "label": "Solution button label", + "default": "Show solution", + "description": "Text for the solution button." }, { - "label":"Retry button label", - "default":"Επανάληψη", - "description":"Text for the retry button." + "label": "Retry button label", + "default": "Επανάληψη", + "description": "Text for the retry button." }, { - "label":"Finish button text", - "default":"Finish" + "label": "Finish button text", + "default": "Finish" }, { - "label":"Display video before quiz results" + "label": "Display video before quiz results" }, { - "label":"Enable skip video button" + "label": "Enable skip video button" }, { - "label":"Skip video button label", - "default":"Skip video" + "label": "Skip video button label", + "default": "Skip video" }, { - "label":"Passed video", - "description":"This video will be played if the user successfully passed the quiz." + "label": "Passed video", + "description": "This video will be played if the user successfully passed the quiz." }, { - "label":"Fail video", - "description":"This video will be played if the user failes the quiz." + "label": "Fail video", + "description": "This video will be played if the user failes the quiz." } ] }, { - "label":"Settings for \"Show solution\" and \"Retry\" buttons", - "fields":[ + "label": "Settings for \"Show solution\" and \"Retry\" buttons", + "fields": [ { - "label":"Override \"Show Solution\" button", - "description":"This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.", - "options":[ + "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": "Enabled" }, { - "label":"Disabled" + "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": "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": "Enabled" }, { - "label":"Disabled" + "label": "Disabled" } ] } diff --git a/language/es.json b/language/es.json index 9b7e813..c7ee5c0 100644 --- a/language/es.json +++ b/language/es.json @@ -1,166 +1,165 @@ { - "semantics":[ + "semantics": [ { - "label":"Quiz introduction", - "fields":[ + "label": "Quiz introduction", + "fields": [ { - "label":"Display introduction" + "label": "Display introduction" }, { - "label":"Título", - "description":"This title will be displayed above the introduction text." + "label": "Título", + "description": "This title will be displayed above the introduction text." }, { - "label":"Introduction text", - "description":"This text will be displayed before the quiz starts." + "label": "Introduction text", + "description": "This text will be displayed before the quiz starts." }, { - "label":"Start button text", - "default":"Start Quiz" + "label": "Start button text", + "default": "Start Quiz" }, { - "label":"Background image", - "description":"An optional background image for the introduction." + "label": "Background image", + "description": "An optional background image for the introduction." } ] }, { - "label":"Background image", - "description":"An optional background image for the Question set." + "label": "Background image", + "description": "An optional background image for the Question set." }, { - "label":"Progress indicator", - "description":"Question set progress indicator style.", - "options":[ + "label": "Progress indicator", + "description": "Question set progress indicator style.", + "options": [ { - "label":"Textual" + "label": "Textual" }, { - "label":"Dots" + "label": "Dots" } - ], - "default":"dots" + ] }, { - "label":"Pass percentage", - "description":"Percentage of Total score required for passing the quiz." + "label": "Pass percentage", + "description": "Percentage of Total score required for passing the quiz." }, { - "label":"Questions", - "widgets":[ + "label": "Questions", + "widgets": [ { - "label":"Predeterminado" + "label": "Predeterminado" }, { - "label":"Textual" + "label": "Textual" } ], - "entity":"question", - "field":{ - "label":"Question type", - "description":"Library for this question." + "entity": "question", + "field": { + "label": "Question type", + "description": "Library for this question." } }, { - "label":"Interface texts in quiz", - "fields":[ + "label": "Interface texts in quiz", + "fields": [ { - "label":"Botón de retroceso", - "default":"Previous question" + "label": "Botón de retroceso", + "default": "Previous question" }, { - "label":"Next button", - "default":"Next question" + "label": "Next button", + "default": "Next question" }, { - "label":"Finish button", - "default":"Finish" + "label": "Finish button", + "default": "Finish" }, { - "label":"Progress text", - "description":"Text used if textual progress is selected.", - "default":"Question: @current of @total questions" + "label": "Progress text", + "description": "Text used if textual progress is selected.", + "default": "Question: @current of @total questions" }, { - "label":"Label for jumping to a certain question", - "description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.", - "default":"Question %d of %total" + "label": "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": "Copyright dialog question label", + "default": "Question" }, { - "label":"Readspeaker progress", - "description":"May use @current and @total question variables", - "default":"Question @current of @total" + "label": "Readspeaker progress", + "description": "May use @current and @total question variables", + "default": "Question @current of @total" }, { - "label":"Unanswered question text", - "default":"Unanswered" + "label": "Unanswered question text", + "default": "Unanswered" }, { - "label":"Answered question text", - "default":"Answered" + "label": "Answered question text", + "default": "Answered" }, { - "label":"Current question text", - "default":"Current question" + "label": "Current question text", + "default": "Current question" } ] }, { - "label":"Disable backwards navigation", - "description":"This option will only allow you to move forward in Question Set" + "label": "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": "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": "Number of questions to be shown:", + "description": "Create a randomized batch of questions from the total." }, { - "label":"Quiz finished", - "fields":[ + "label": "Quiz finished", + "fields": [ { - "label":"Display results" + "label": "Display results" }, { - "label":"Display solution button" + "label": "Display solution button" }, { - "label":"No results message", - "description":"Text displayed on end page when \"Display results\" is disabled", - "default":"Finished" + "label": "No results message", + "description": "Text displayed on end page when \"Display results\" is disabled", + "default": "Finished" }, { - "label":"Feedback heading", - "default":"Your result:", - "description":"This heading will be displayed at the end of the quiz when the user has answered all questions." + "label": "Feedback heading", + "default": "Your result:", + "description": "This heading will be displayed at the end of the quiz when the user has answered all questions." }, { - "label":"Overall Feedback", - "fields":[ + "label": "Overall Feedback", + "fields": [ { - "widgets":[ - + "widgets": [ + { + "label": "Default" + } ], - "label":"Define custom feedback for any score range", - "description":"Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!", - "entity":"range", - "field":{ - "fields":[ + "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": "Score Range" }, + {}, { - - }, - { - "label":"Feedback for defined score range", - "placeholder":"Fill in the feedback" + "label": "Feedback for defined score range", + "placeholder": "Fill in the feedback" } ] } @@ -168,84 +167,88 @@ ] }, { - "label":"Old Feedback", - "fields":[ + "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": "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": "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": "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": "Failed comment", + "description": "This comment will be displayed after the score if the user has failed the quiz." } ] }, { - "label":"Solution button label", - "default":"Mostrar solución", - "description":"Text for the solution button." + "label": "Solution button label", + "default": "Mostrar solución", + "description": "Text for the solution button." }, { - "label":"Retry button label", - "default":"Reintentar", - "description":"Text for the retry button." + "label": "Retry button label", + "default": "Reintentar", + "description": "Text for the retry button." }, { - "label":"Finish button text", - "default":"Finish" + "label": "Finish button text", + "default": "Finish" }, { - "label":"Display video before quiz results" + "label": "Display video before quiz results" }, { - "label":"Enable skip video button" + "label": "Enable skip video button" }, { - "label":"Skip video button label", - "default":"Skip video" + "label": "Skip video button label", + "default": "Skip video" }, { - "label":"Passed video", - "description":"This video will be played if the user successfully passed the quiz." + "label": "Passed video", + "description": "This video will be played if the user successfully passed the quiz." }, { - "label":"Fail video", - "description":"This video will be played if the user failes the quiz." + "label": "Fail video", + "description": "This video will be played if the user failes the quiz." } ] }, { - "label":"Settings for \"Show solution\" and \"Retry\" buttons", - "fields":[ + "label": "Settings for \"Show solution\" and \"Retry\" buttons", + "fields": [ { - "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.", - "options":[ + "label": "Show \"Check\" buttons", + "description": "This option determines if the \"Check\" button will be shown for all questions." + }, + { + "label": "Ocultar el botón \"Mostrar solución\"", + "description": "Esta opción determina si el botón \"Mostrar solución\" se muestra en todas las preguntas, se desactiva para todas, o se configura para cada pregunta individualmente.", + "options": [ { - "label":"Habilitado" + "label": "Habilitado" }, { - "label":"Deshabilitado" + "label": "Deshabilitado" } ] }, { - "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.", - "options":[ + "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.", + "options": [ { - "label":"Habilitado" + "label": "Habilitado" }, { - "label":"Deshabilitado" + "label": "Deshabilitado" } ] } diff --git a/language/et.json b/language/et.json index b29dd97..7e58812 100644 --- a/language/et.json +++ b/language/et.json @@ -1,166 +1,165 @@ { - "semantics":[ + "semantics": [ { - "label":"Quiz introduction", - "fields":[ + "label": "Quiz introduction", + "fields": [ { - "label":"Display introduction" + "label": "Display introduction" }, { - "label":"Title", - "description":"This title will be displayed above the introduction text." + "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": "Introduction text", + "description": "This text will be displayed before the quiz starts." }, { - "label":"Start button text", - "default":"Start Quiz" + "label": "Start button text", + "default": "Start Quiz" }, { - "label":"Background image", - "description":"An optional background image for the introduction." + "label": "Background image", + "description": "An optional background image for the introduction." } ] }, { - "label":"Background image", - "description":"An optional background image for the Question set." + "label": "Background image", + "description": "An optional background image for the Question set." }, { - "label":"Progress indicator", - "description":"Question set progress indicator style.", - "options":[ + "label": "Progress indicator", + "description": "Question set progress indicator style.", + "options": [ { - "label":"Textual" + "label": "Textual" }, { - "label":"Dots" + "label": "Dots" } - ], - "default":"dots" + ] }, { - "label":"Pass percentage", - "description":"Percentage of Total score required for passing the quiz." + "label": "Pass percentage", + "description": "Percentage of Total score required for passing the quiz." }, { - "label":"Questions", - "widgets":[ + "label": "Questions", + "widgets": [ { - "label":"Default" + "label": "Default" }, { - "label":"Textual" + "label": "Textual" } ], - "entity":"question", - "field":{ - "label":"Question type", - "description":"Library for this question." + "entity": "question", + "field": { + "label": "Question type", + "description": "Library for this question." } }, { - "label":"Interface texts in quiz", - "fields":[ + "label": "Interface texts in quiz", + "fields": [ { - "label":"Back button", - "default":"Previous question" + "label": "Back button", + "default": "Previous question" }, { - "label":"Next button", - "default":"Next question" + "label": "Next button", + "default": "Next question" }, { - "label":"Finish button", - "default":"Finish" + "label": "Finish button", + "default": "Finish" }, { - "label":"Progress text", - "description":"Text used if textual progress is selected.", - "default":"Question: @current of @total questions" + "label": "Progress text", + "description": "Text used if textual progress is selected.", + "default": "Question: @current of @total questions" }, { - "label":"Label for jumping to a certain question", - "description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.", - "default":"Question %d of %total" + "label": "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":"Küsimus" + "label": "Copyright dialog question label", + "default": "Küsimus" }, { - "label":"Readspeaker progress", - "description":"May use @current and @total question variables", - "default":"Question @current of @total" + "label": "Readspeaker progress", + "description": "May use @current and @total question variables", + "default": "Question @current of @total" }, { - "label":"Unanswered question text", - "default":"Unanswered" + "label": "Unanswered question text", + "default": "Unanswered" }, { - "label":"Answered question text", - "default":"Answered" + "label": "Answered question text", + "default": "Answered" }, { - "label":"Current question text", - "default":"Current question" + "label": "Current question text", + "default": "Current question" } ] }, { - "label":"Disable backwards navigation", - "description":"This option will only allow you to move forward in Question Set" + "label": "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": "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": "Number of questions to be shown:", + "description": "Create a randomized batch of questions from the total." }, { - "label":"Quiz finished", - "fields":[ + "label": "Quiz finished", + "fields": [ { - "label":"Display results" + "label": "Display results" }, { - "label":"Display solution button" + "label": "Display solution button" }, { - "label":"No results message", - "description":"Text displayed on end page when \"Display results\" is disabled", - "default":"Finished" + "label": "No results message", + "description": "Text displayed on end page when \"Display results\" is disabled", + "default": "Finished" }, { - "label":"Feedback heading", - "default":"Your result:", - "description":"This heading will be displayed at the end of the quiz when the user has answered all questions." + "label": "Feedback heading", + "default": "Your result:", + "description": "This heading will be displayed at the end of the quiz when the user has answered all questions." }, { - "label":"Overall Feedback", - "fields":[ + "label": "Overall Feedback", + "fields": [ { - "widgets":[ - + "widgets": [ + { + "label": "Default" + } ], - "label":"Define custom feedback for any score range", - "description":"Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!", - "entity":"range", - "field":{ - "fields":[ + "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": "Score Range" }, + {}, { - - }, - { - "label":"Feedback for defined score range", - "placeholder":"Fill in the feedback" + "label": "Feedback for defined score range", + "placeholder": "Fill in the feedback" } ] } @@ -168,84 +167,88 @@ ] }, { - "label":"Old Feedback", - "fields":[ + "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": "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": "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": "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": "Failed comment", + "description": "This comment will be displayed after the score if the user has failed the quiz." } ] }, { - "label":"Solution button label", - "default":"Õige vastus", - "description":"Text for the solution button." + "label": "Solution button label", + "default": "Õige vastus", + "description": "Text for the solution button." }, { - "label":"Proovi uuesti nupu silt", - "default":"Proovi uuesti", - "description":"Text for the retry button." + "label": "Proovi uuesti nupu silt", + "default": "Proovi uuesti", + "description": "Text for the retry button." }, { - "label":"Finish button text", - "default":"Finish" + "label": "Finish button text", + "default": "Finish" }, { - "label":"Display video before quiz results" + "label": "Display video before quiz results" }, { - "label":"Enable skip video button" + "label": "Enable skip video button" }, { - "label":"Skip video button label", - "default":"Skip video" + "label": "Skip video button label", + "default": "Skip video" }, { - "label":"Passed video", - "description":"This video will be played if the user successfully passed the quiz." + "label": "Passed video", + "description": "This video will be played if the user successfully passed the quiz." }, { - "label":"Fail video", - "description":"This video will be played if the user failes the quiz." + "label": "Fail video", + "description": "This video will be played if the user failes the quiz." } ] }, { - "label":"Settings for \"Show solution\" and \"Retry\" buttons", - "fields":[ + "label": "Settings for \"Show solution\" and \"Retry\" buttons", + "fields": [ { - "label":"Override \"Show Solution\" button", - "description":"This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.", - "options":[ + "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": "Enabled" }, { - "label":"Disabled" + "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": "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": "Enabled" }, { - "label":"Disabled" + "label": "Disabled" } ] } diff --git a/language/fi.json b/language/fi.json index 2b4607e..3c9509b 100644 --- a/language/fi.json +++ b/language/fi.json @@ -1,166 +1,165 @@ { - "semantics":[ + "semantics": [ { - "label":"Tietovisan johdanto", - "fields":[ + "label": "Tietovisan johdanto", + "fields": [ { - "label":"Näytä johdanto" + "label": "Näytä johdanto" }, { - "label":"Otsikko", - "description":"Johdanto-osion otsikko." + "label": "Otsikko", + "description": "Johdanto-osion otsikko." }, { - "label":"Johdantoteksti", - "description":"Teksti näytetään ennen visan alkua." + "label": "Johdantoteksti", + "description": "Teksti näytetään ennen visan alkua." }, { - "label":"Aloita -painikkeen teksti", - "default":"Aloita" + "label": "Aloita -painikkeen teksti", + "default": "Aloita" }, { - "label":"Taustakuva", - "description":"Valinnainen taustakuva johdantoon." + "label": "Taustakuva", + "description": "Valinnainen taustakuva johdantoon." } ] }, { - "label":"Taustakuva", - "description":"Valinnainen taustakuva kysymyksille." + "label": "Taustakuva", + "description": "Valinnainen taustakuva kysymyksille." }, { - "label":"Edistymisen näyttäminen", - "description":"Miten edistyminen tehtävässä näytetään tekijälle.", - "options":[ + "label": "Edistymisen näyttäminen", + "description": "Miten edistyminen tehtävässä näytetään tekijälle.", + "options": [ { - "label":"Teksti" + "label": "Teksti" }, { - "label":"Täplät" + "label": "Täplät" } - ], - "default":"dots" + ] }, { - "label":"Läpäisyprosentti", - "description":"Kuinka monta prosenttia maksimipisteistä vaaditaan tehtävän läpäisyyn." + "label": "Läpäisyprosentti", + "description": "Kuinka monta prosenttia maksimipisteistä vaaditaan tehtävän läpäisyyn." }, { - "label":"Kysymykset", - "widgets":[ + "label": "Kysymykset", + "widgets": [ { - "label":"Oletus" + "label": "Oletus" }, { - "label":"Teksti" + "label": "Teksti" } ], - "entity":"kysymys", - "field":{ - "label":"Kysymyksen tyyppi", - "description":"Tarjolla olevat kysymystyypit." + "entity": "kysymys", + "field": { + "label": "Kysymyksen tyyppi", + "description": "Tarjolla olevat kysymystyypit." } }, { - "label":"Käyttöliittymän tekstit", - "fields":[ + "label": "Käyttöliittymän tekstit", + "fields": [ { - "label":"Painikkeen Edellinen teksti", - "default":"Edellinen kysymys" + "label": "Painikkeen Edellinen teksti", + "default": "Edellinen kysymys" }, { - "label":"Painikkeen Seuraava teksti", - "default":"Seuraava kysymys" + "label": "Painikkeen Seuraava teksti", + "default": "Seuraava kysymys" }, { - "label":"Painikkeen Lopeta teksti", - "default":"Lopeta" + "label": "Painikkeen Lopeta teksti", + "default": "Lopeta" }, { - "label":"Edistyminen", - "description":"Tekstiä käytetään mikäli tekstimuotoinen edistymisen näyttäminen on valittuna.", - "default":"Kysymys @current\/@total" + "label": "Edistyminen", + "description": "Tekstiä käytetään mikäli tekstimuotoinen edistymisen näyttäminen on valittuna.", + "default": "Kysymys @current/@total" }, { - "label":"Teksti kun hypätään tiettyyn kysymykseen", - "description":"Käytettävissä olevat muuttujat: '%d' kysymyksen numerolle ja %total kysymysten kokonaismäärälle.", - "default":"Kysymys %d\/%total" + "label": "Teksti kun hypätään tiettyyn kysymykseen", + "description": "Käytettävissä olevat muuttujat: '%d' kysymyksen numerolle ja %total kysymysten kokonaismäärälle.", + "default": "Kysymys %d/%total" }, { - "label":"Kysymyksen selite tekijänoikeusvalinnoissa", - "default":"Kysymys" + "label": "Kysymyksen selite tekijänoikeusvalinnoissa", + "default": "Kysymys" }, { - "label":"Ruudunlukijan teksti edistymiselle", - "description":"Käytettävissä olevat muuttujat: @current ja @total", - "default":"Kysymys @current\/@total" + "label": "Ruudunlukijan teksti edistymiselle", + "description": "Käytettävissä olevat muuttujat: @current ja @total", + "default": "Kysymys @current/@total" }, { - "label":"Teksti vastaamattomalle kysymykselle", - "default":"Ei vastattu" + "label": "Teksti vastaamattomalle kysymykselle", + "default": "Ei vastattu" }, { - "label":"Teksti vastatulle kysymykselle", - "default":"Vastattu" + "label": "Teksti vastatulle kysymykselle", + "default": "Vastattu" }, { - "label":"Teksti meneillään olevalle kysymykselle", - "default":"Meneillään oleva kysymys" + "label": "Teksti meneillään olevalle kysymykselle", + "default": "Meneillään oleva kysymys" } ] }, { - "label":"Estä paluu", - "description":"Tämä valinta sallii vain eteenpäin siirtymisen tehtävässä" + "label": "Estä paluu", + "description": "Tämä valinta sallii vain eteenpäin siirtymisen tehtävässä" }, { - "label":"Sekoita kysymykset", - "description":"Kysymykset näytetään satunnaisessa järjestyksessä." + "label": "Sekoita kysymykset", + "description": "Kysymykset näytetään satunnaisessa järjestyksessä." }, { - "label":"Näytettävien kysymyksien määrä:", - "description":"Näytetään annettu lukumäärä kysymyksiä kokonaismäärästä." + "label": "Näytettävien kysymyksien määrä:", + "description": "Näytetään annettu lukumäärä kysymyksiä kokonaismäärästä." }, { - "label":"Tehtävän päätyttyä", - "fields":[ + "label": "Tehtävän päätyttyä", + "fields": [ { - "label":"Näytä tulokset" + "label": "Näytä tulokset" }, { - "label":"Salli painike \"Katso vastaus\"" + "label": "Salli painike \"Katso vastaus\"" }, { - "label":"Teksti kun ei tuloksia", - "description":"Teksti näytetään, kun \"Näytä tulokset\" ei ole valittuna", - "default":"Valmis" + "label": "Teksti kun ei tuloksia", + "description": "Teksti näytetään, kun \"Näytä tulokset\" ei ole valittuna", + "default": "Valmis" }, { - "label":"Palautteet otsikko", - "default":"Tuloksesi:", - "description":"Otsikko näytetään tehtävän lopussa, kun käyttäjä on vastannut kaikkiin kysymyksiin." + "label": "Palautteet otsikko", + "default": "Tuloksesi:", + "description": "Otsikko näytetään tehtävän lopussa, kun käyttäjä on vastannut kaikkiin kysymyksiin." }, { - "label":"Yleispalaute", - "fields":[ + "label": "Yleispalaute", + "fields": [ { - "widgets":[ - + "widgets": [ + { + "label": "Default" + } ], - "label":"Määritä muokattu palaute pisterajojen mukaan.", - "description":"Klikkaa \"Lisää alue\" painiketta lisätäksesi niin monta pisterajaa kuin tarvit. Esimerkiksi: 0-20% Huono tulos, 21-91% Kelpo tulos, 91-100% Mahtava tulos!", - "entity":"alue", - "field":{ - "fields":[ + "label": "Määritä muokattu palaute pisterajojen mukaan.", + "description": "Klikkaa \"Lisää alue\" painiketta lisätäksesi niin monta pisterajaa kuin tarvit. Esimerkiksi: 0-20% Huono tulos, 21-91% Kelpo tulos, 91-100% Mahtava tulos!", + "entity": "alue", + "field": { + "fields": [ { - "label":"Pisteraja" + "label": "Pisteraja" }, + {}, { - - }, - { - "label":"Palaute määritellylle pisterajalle", - "placeholder":"Kirjoita palaute" + "label": "Palaute määritellylle pisterajalle", + "placeholder": "Kirjoita palaute" } ] } @@ -168,88 +167,92 @@ ] }, { - "label":"Old Feedback", - "fields":[ + "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": "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": "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": "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": "Failed comment", + "description": "This comment will be displayed after the score if the user has failed the quiz." } ] }, { - "label":"Painikkeen \"Katso vastaus\" nimi", - "default":"Katso vastaus", - "description":"Teksti \"Katso vastaus\" painikkeelle." + "label": "Painikkeen \"Katso vastaus\" nimi", + "default": "Katso vastaus", + "description": "Teksti \"Katso vastaus\" painikkeelle." }, { - "label":"Painikkeen \"Yritä uudelleen\" nimi", - "default":"Yritä uudelleen", - "description":"Teksti \"Yritä uudelleen\" painikkeelle." + "label": "Painikkeen \"Yritä uudelleen\" nimi", + "default": "Yritä uudelleen", + "description": "Teksti \"Yritä uudelleen\" painikkeelle." }, { - "label":"Painikkeen \"Lopeta\" teksti", - "default":"Lopeta" + "label": "Painikkeen \"Lopeta\" teksti", + "default": "Lopeta" }, { - "label":"Näytä video ennen tuloksia" + "label": "Näytä video ennen tuloksia" }, { - "label":"Salli videon ohittaminen" + "label": "Salli videon ohittaminen" }, { - "label":"Teksti painikkeelle Ohita video", - "default":"Ohita video" + "label": "Teksti painikkeelle Ohita video", + "default": "Ohita video" }, { - "label":"Video, kun suoritettu", - "description":"Tämä video näytetään, kun tehtävä on suoritettu onnistuneesti." + "label": "Video, kun suoritettu", + "description": "Tämä video näytetään, kun tehtävä on suoritettu onnistuneesti." }, { - "label":"Video, kun ei suoritettu", - "description":"Tämä video näytetään, kun tehtävää ei ole suoritettu onnistuneesti." + "label": "Video, kun ei suoritettu", + "description": "Tämä video näytetään, kun tehtävää ei ole suoritettu onnistuneesti." } ] }, { - "label":"Asetukset \"Näytä vastaus\" ja \"Yritä uudelleen\" painikkeille", - "fields":[ + "label": "Asetukset \"Näytä vastaus\" ja \"Yritä uudelleen\" painikkeille", + "fields": [ { - "label":"\"Näytä vastaus\"-painike", - "description":"Ota käyttöön kaikissa kysymyksissä, ei yhdessäkään, tai jätä tyhjäksi käyttääksesi tehtäväkohtaisia asetuksia", - "options":[ + "label": "Show \"Check\" buttons", + "description": "This option determines if the \"Check\" button will be shown for all questions." + }, + { + "label": "\"Näytä vastaus\"-painike", + "description": "Ota käyttöön kaikissa kysymyksissä, ei yhdessäkään, tai jätä tyhjäksi käyttääksesi tehtäväkohtaisia asetuksia", + "options": [ { - "label":"Käytössä kaikissa" + "label": "Käytössä kaikissa" }, { - "label":"Pois käytöstä" + "label": "Pois käytöstä" } ] }, { - "label":"\"Yritä uudelleen\"-painike", - "description":"Ota käyttöön kaikissa kysymyksissä, ei yhdessäkään, tai jätä tyhjäksi käyttääksesi tehtäväkohtaisia asetuksia.", - "options":[ + "label": "\"Yritä uudelleen\"-painike", + "description": "Ota käyttöön kaikissa kysymyksissä, ei yhdessäkään, tai jätä tyhjäksi käyttääksesi tehtäväkohtaisia asetuksia.", + "options": [ { - "label":"Käytössä kaikissa" + "label": "Käytössä kaikissa" }, { - "label":"Pois käytöstä" + "label": "Pois käytöstä" } ] } ] } ] -} +} \ No newline at end of file diff --git a/language/fr.json b/language/fr.json index b1c191e..fabef16 100644 --- a/language/fr.json +++ b/language/fr.json @@ -1,166 +1,165 @@ { - "semantics":[ + "semantics": [ { - "label":"Introduction du Quiz ", - "fields":[ + "label": "Introduction du Quiz ", + "fields": [ { - "label":"Afficher l'introduction" + "label": "Afficher l'introduction" }, { - "label":"Titre", - "description":"Ce titre sera affiché au-dessus de votre texte d'introduction." + "label": "Titre", + "description": "Ce titre sera affiché au-dessus de votre texte d'introduction." }, { - "label":"Texte d'introduction ", - "description":"Ce texte sera affiché avant le démarrage du quiz." + "label": "Texte d'introduction ", + "description": "Ce texte sera affiché avant le démarrage du quiz." }, { - "label":"Texte du bouton de démarrage", - "default":"Commencer" + "label": "Texte du bouton de démarrage", + "default": "Commencer" }, { - "label":"Image d'arrière-plan", - "description":"Image d'arrière-plan optionnelle pour l'introduction." + "label": "Image d'arrière-plan", + "description": "Image d'arrière-plan optionnelle pour l'introduction." } ] }, { - "label":"Image d'arrière-plan", - "description":"Image d'arrière-plan optionnelle pour la série de questions." + "label": "Image d'arrière-plan", + "description": "Image d'arrière-plan optionnelle pour la série de questions." }, { - "label":"Indicateur de progression", - "description":"Style de l'indicateur de progression de la série de questions.", - "options":[ + "label": "Indicateur de progression", + "description": "Style de l'indicateur de progression de la série de questions.", + "options": [ { - "label":"Texte" + "label": "Texte" }, { - "label":"Points" + "label": "Points" } - ], - "default":"dots" + ] }, { - "label":"Pourcentage de réussite", - "description":"Pourcentage exigé pour considérer que le quiz est réussi." + "label": "Pourcentage de réussite", + "description": "Pourcentage exigé pour considérer que le quiz est réussi." }, { - "label":"Questions", - "widgets":[ + "label": "Questions", + "widgets": [ { - "label":"Par défaut" + "label": "Par défaut" }, { - "label":"Texte" + "label": "Texte" } ], - "entity":"question", - "field":{ - "label":"Type de question", - "description":"Types possibles pour cette question." + "entity": "question", + "field": { + "label": "Type de question", + "description": "Types possibles pour cette question." } }, { - "label":"Textes de l'interface du quiz", - "fields":[ + "label": "Textes de l'interface du quiz", + "fields": [ { - "label":"Bouton Retour", - "default":"Retour" + "label": "Bouton Retour", + "default": "Retour" }, { - "label":"Bouton suivant", - "default":"Suite" + "label": "Bouton suivant", + "default": "Suite" }, { - "label":"Bouton fin", - "default":"Confirmer" + "label": "Bouton fin", + "default": "Confirmer" }, { - "label":"Texte de progression", - "description":"Texte utilisé si la progression textuelle a été sélectionnée.", - "default":"Question @current sur @total" + "label": "Texte de progression", + "description": "Texte utilisé si la progression textuelle a été sélectionnée.", + "default": "Question @current sur @total" }, { - "label":"Texte pour aller directement à une question", - "description":"Vous devez utiliser la variable '%d' à la place du numéro de la question et %total à la place du nombre total de questions.", - "default":"Question %d sur %total" + "label": "Texte pour aller directement à une question", + "description": "Vous devez utiliser la variable '%d' à la place du numéro de la question et %total à la place du nombre total de questions.", + "default": "Question %d sur %total" }, { - "label":"Texte de la question de la boîte de dialogue de copyright", - "default":"Question" + "label": "Texte de la question de la boîte de dialogue de copyright", + "default": "Question" }, { - "label":"Progression pour la synthèse vocale", - "description":"Vous pouvez utiliser les variables @current et @total", - "default":"Question @current sur @total" + "label": "Progression pour la synthèse vocale", + "description": "Vous pouvez utiliser les variables @current et @total", + "default": "Question @current sur @total" }, { - "label":"Texte d'une question sans réponse", - "default":"Pas de réponse donnée" + "label": "Texte d'une question sans réponse", + "default": "Pas de réponse donnée" }, { - "label":"Texte d'une question ayant reçu une réponse", - "default":"Réponse donnée" + "label": "Texte d'une question ayant reçu une réponse", + "default": "Réponse donnée" }, { - "label":"Texte de la question en cours", - "default":"Question en cours" + "label": "Texte de la question en cours", + "default": "Question en cours" } ] }, { - "label":"Désactiver la possibilité de naviguer en arrière", - "description":"Cette option ne permettra plus que la navigation en avant au sein du module Question Set" + "label": "Désactiver la possibilité de naviguer en arrière", + "description": "Cette option ne permettra plus que la navigation en avant au sein du module Question Set" }, { - "label":"Afficher les question dans un ordre aléatoire", - "description":"Les réponses possibles seront affichées dans l'ordre aléatoire." + "label": "Afficher les question dans un ordre aléatoire", + "description": "Les réponses possibles seront affichées dans l'ordre aléatoire." }, { - "label":"Nombre de questions à afficher:", - "description":"Génère aléatoire un jeu de question parmi toutes les questions disponibles." + "label": "Nombre de questions à afficher:", + "description": "Génère aléatoire un jeu de question parmi toutes les questions disponibles." }, { - "label":"Quiz terminé", - "fields":[ + "label": "Quiz terminé", + "fields": [ { - "label":"Afficher les résultats" + "label": "Afficher les résultats" }, { - "label":"Display solution button" + "label": "Display solution button" }, { - "label":"Message si pas de résultats", - "description":"Texte affiché sur la page finale si l'option \"Afficher les résultats\" est désactivée.", - "default":"Terminé" + "label": "Message si pas de résultats", + "description": "Texte affiché sur la page finale si l'option \"Afficher les résultats\" est désactivée.", + "default": "Terminé" }, { - "label":"Titre des commentaires", - "default":"Vos résultats :", - "description":"Ce titre sera affiché à la fin du quiz quand l'utilisateur aura répondu à toutes les questions." + "label": "Titre des commentaires", + "default": "Vos résultats :", + "description": "Ce titre sera affiché à la fin du quiz quand l'utilisateur aura répondu à toutes les questions." }, { - "label":"Opacité des étiquettes", - "fields":[ + "label": "Opacité des étiquettes", + "fields": [ { - "widgets":[ - + "widgets": [ + { + "label": "Default" + } ], - "label":"Define custom feedback for any score range", - "description":"Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!", - "entity":"range", - "field":{ - "fields":[ + "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": "Score Range" }, + {}, { - - }, - { - "label":"Feedback for defined score range", - "placeholder":"Fill in the feedback" + "label": "Feedback for defined score range", + "placeholder": "Fill in the feedback" } ] } @@ -168,84 +167,88 @@ ] }, { - "label":"Old Feedback", - "fields":[ + "label": "Old Feedback", + "fields": [ { - "label":"Commentaire de félicitation", - "description":"Ce commentaire sera affiché au-dessus du score de l'utilisateur si celui-ci réussit le quiz." + "label": "Commentaire de félicitation", + "description": "Ce commentaire sera affiché au-dessus du score de l'utilisateur si celui-ci réussit le quiz." }, { - "label":"Commentaire en cas de succès", - "description":"Commentaire affiché lors du passage du quiz avec succès." + "label": "Commentaire en cas de succès", + "description": "Commentaire affiché lors du passage du quiz avec succès." }, { - "label":"Commentaire en cas d'échec", - "description":"Ce commentaire sera affiché au-dessus du score de l'utilisateur si celui-ci échoue au quiz." + "label": "Commentaire en cas d'échec", + "description": "Ce commentaire sera affiché au-dessus du score de l'utilisateur si celui-ci échoue au quiz." }, { - "label":"Commentaire additionnel en cas d'échec", - "description":"Commentaire additionnel affiché lors de l'échec au quiz." + "label": "Commentaire additionnel en cas d'échec", + "description": "Commentaire additionnel affiché lors de l'échec au quiz." } ] }, { - "label":"Texte du bouton \"Solution\"", - "default":"Voir la solution", - "description":"Texte pour le bouton de solution." + "label": "Texte du bouton \"Solution\"", + "default": "Voir la solution", + "description": "Texte pour le bouton de solution." }, { - "label":"Texte du bouton \"Recommencer\"", - "default":"Recommencer", - "description":"Texte pour le bouton Recommencer." + "label": "Texte du bouton \"Recommencer\"", + "default": "Recommencer", + "description": "Texte pour le bouton Recommencer." }, { - "label":"Texte pour le bouton de fin", - "default":"Confirmer" + "label": "Texte pour le bouton de fin", + "default": "Confirmer" }, { - "label":"Afficher une vidéo avant l'affichage des résultats du quiz" + "label": "Afficher une vidéo avant l'affichage des résultats du quiz" }, { - "label":"Activer le bouton \"Passer la vidéo\"" + "label": "Activer le bouton \"Passer la vidéo\"" }, { - "label":"Texte du bouton \"Passer la vidéo\"", - "default":"Passer la vidéo" + "label": "Texte du bouton \"Passer la vidéo\"", + "default": "Passer la vidéo" }, { - "label":"Vidéo en cas de succès", - "description":"Vidéo affichée si l'utilisateur réussit le quiz." + "label": "Vidéo en cas de succès", + "description": "Vidéo affichée si l'utilisateur réussit le quiz." }, { - "label":"Vidéo en cas d'échec", - "description":"Vidéo affichée si l'utilisateur échoue au quiz." + "label": "Vidéo en cas d'échec", + "description": "Vidéo affichée si l'utilisateur échoue au quiz." } ] }, { - "label":"Options pour les boutons \"Montrer la solution\" et \"Recommencer\".", - "fields":[ + "label": "Options pour les boutons \"Montrer la solution\" et \"Recommencer\".", + "fields": [ { - "label":"Ecraser le bouton \"Voir la correction\"", - "description":"Cette option détermine si le bouton \"Voir la correction\" sera affiché pour toutes les questions, désactivé pour toutes ou configuré pour chaque question individuellement.", - "options":[ + "label": "Show \"Check\" buttons", + "description": "This option determines if the \"Check\" button will be shown for all questions." + }, + { + "label": "Ecraser le bouton \"Voir la correction\"", + "description": "Cette option détermine si le bouton \"Voir la correction\" sera affiché pour toutes les questions, désactivé pour toutes ou configuré pour chaque question individuellement.", + "options": [ { - "label":"Activé" + "label": "Activé" }, { - "label":"Désactivé" + "label": "Désactivé" } ] }, { - "label":"Ecraser le bouton \"Recommencer\"", - "description":"Cette option détermine si le bouton \"Recommencer\" sera affiché pour toutes les questions, désactivé pour toutes ou configuré pour chaque question individuellement.", - "options":[ + "label": "Ecraser le bouton \"Recommencer\"", + "description": "Cette option détermine si le bouton \"Recommencer\" sera affiché pour toutes les questions, désactivé pour toutes ou configuré pour chaque question individuellement.", + "options": [ { - "label":"Activé" + "label": "Activé" }, { - "label":"Désactivé" + "label": "Désactivé" } ] } diff --git a/language/he.json b/language/he.json index c97b04e..5928587 100644 --- a/language/he.json +++ b/language/he.json @@ -1,166 +1,165 @@ { - "semantics":[ + "semantics": [ { - "label":"Quiz introduction", - "fields":[ + "label": "Quiz introduction", + "fields": [ { - "label":"Display introduction" + "label": "Display introduction" }, { - "label":"Title", - "description":"This title will be displayed above the introduction text." + "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": "Introduction text", + "description": "This text will be displayed before the quiz starts." }, { - "label":"Start button text", - "default":"Start Quiz" + "label": "Start button text", + "default": "Start Quiz" }, { - "label":"Background image", - "description":"An optional background image for the introduction." + "label": "Background image", + "description": "An optional background image for the introduction." } ] }, { - "label":"Background image", - "description":"An optional background image for the Question set." + "label": "Background image", + "description": "An optional background image for the Question set." }, { - "label":"Progress indicator", - "description":"Question set progress indicator style.", - "options":[ + "label": "Progress indicator", + "description": "Question set progress indicator style.", + "options": [ { - "label":"Textual" + "label": "Textual" }, { - "label":"Dots" + "label": "Dots" } - ], - "default":"dots" + ] }, { - "label":"Pass percentage", - "description":"Percentage of Total score required for passing the quiz." + "label": "Pass percentage", + "description": "Percentage of Total score required for passing the quiz." }, { - "label":"Questions", - "widgets":[ + "label": "Questions", + "widgets": [ { - "label":"Default" + "label": "Default" }, { - "label":"Textual" + "label": "Textual" } ], - "entity":"question", - "field":{ - "label":"Question type", - "description":"Library for this question." + "entity": "question", + "field": { + "label": "Question type", + "description": "Library for this question." } }, { - "label":"Interface texts in quiz", - "fields":[ + "label": "Interface texts in quiz", + "fields": [ { - "label":"Back button", - "default":"Previous question" + "label": "Back button", + "default": "Previous question" }, { - "label":"Next button", - "default":"Next question" + "label": "Next button", + "default": "Next question" }, { - "label":"Finish button", - "default":"Finish" + "label": "Finish button", + "default": "Finish" }, { - "label":"Progress text", - "description":"Text used if textual progress is selected.", - "default":"Question: @current of @total questions" + "label": "Progress text", + "description": "Text used if textual progress is selected.", + "default": "Question: @current of @total questions" }, { - "label":"Label for jumping to a certain question", - "description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.", - "default":"Question %d of %total" + "label": "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": "Copyright dialog question label", + "default": "Question" }, { - "label":"Readspeaker progress", - "description":"May use @current and @total question variables", - "default":"Question @current of @total" + "label": "Readspeaker progress", + "description": "May use @current and @total question variables", + "default": "Question @current of @total" }, { - "label":"Unanswered question text", - "default":"Unanswered" + "label": "Unanswered question text", + "default": "Unanswered" }, { - "label":"Answered question text", - "default":"Answered" + "label": "Answered question text", + "default": "Answered" }, { - "label":"Current question text", - "default":"Current question" + "label": "Current question text", + "default": "Current question" } ] }, { - "label":"Disable backwards navigation", - "description":"This option will only allow you to move forward in Question Set" + "label": "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": "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": "Number of questions to be shown:", + "description": "Create a randomized batch of questions from the total." }, { - "label":"Quiz finished", - "fields":[ + "label": "Quiz finished", + "fields": [ { - "label":"Display results" + "label": "Display results" }, { - "label":"Display solution button" + "label": "Display solution button" }, { - "label":"No results message", - "description":"Text displayed on end page when \"Display results\" is disabled", - "default":"Finished" + "label": "No results message", + "description": "Text displayed on end page when \"Display results\" is disabled", + "default": "Finished" }, { - "label":"Feedback heading", - "default":"Your result:", - "description":"This heading will be displayed at the end of the quiz when the user has answered all questions." + "label": "Feedback heading", + "default": "Your result:", + "description": "This heading will be displayed at the end of the quiz when the user has answered all questions." }, { - "label":"Overall Feedback", - "fields":[ + "label": "Overall Feedback", + "fields": [ { - "widgets":[ - + "widgets": [ + { + "label": "Default" + } ], - "label":"Define custom feedback for any score range", - "description":"Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!", - "entity":"range", - "field":{ - "fields":[ + "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": "Score Range" }, + {}, { - - }, - { - "label":"Feedback for defined score range", - "placeholder":"Fill in the feedback" + "label": "Feedback for defined score range", + "placeholder": "Fill in the feedback" } ] } @@ -168,84 +167,88 @@ ] }, { - "label":"Old Feedback", - "fields":[ + "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": "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": "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": "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": "Failed comment", + "description": "This comment will be displayed after the score if the user has failed the quiz." } ] }, { - "label":"Solution button label", - "default":"Show solution", - "description":"Text for the solution button." + "label": "Solution button label", + "default": "Show solution", + "description": "Text for the solution button." }, { - "label":"Retry button label", - "default":"Retry", - "description":"Text for the retry button." + "label": "Retry button label", + "default": "Retry", + "description": "Text for the retry button." }, { - "label":"Finish button text", - "default":"Finish" + "label": "Finish button text", + "default": "Finish" }, { - "label":"Display video before quiz results" + "label": "Display video before quiz results" }, { - "label":"Enable skip video button" + "label": "Enable skip video button" }, { - "label":"Skip video button label", - "default":"Skip video" + "label": "Skip video button label", + "default": "Skip video" }, { - "label":"Passed video", - "description":"This video will be played if the user successfully passed the quiz." + "label": "Passed video", + "description": "This video will be played if the user successfully passed the quiz." }, { - "label":"Fail video", - "description":"This video will be played if the user failes the quiz." + "label": "Fail video", + "description": "This video will be played if the user failes the quiz." } ] }, { - "label":"Settings for \"Show solution\" and \"Retry\" buttons", - "fields":[ + "label": "Settings for \"Show solution\" and \"Retry\" buttons", + "fields": [ { - "label":"Override \"Show Solution\" button", - "description":"This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.", - "options":[ + "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": "Enabled" }, { - "label":"Disabled" + "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": "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": "Enabled" }, { - "label":"Disabled" + "label": "Disabled" } ] } diff --git a/language/hu.json b/language/hu.json index c97b04e..5928587 100644 --- a/language/hu.json +++ b/language/hu.json @@ -1,166 +1,165 @@ { - "semantics":[ + "semantics": [ { - "label":"Quiz introduction", - "fields":[ + "label": "Quiz introduction", + "fields": [ { - "label":"Display introduction" + "label": "Display introduction" }, { - "label":"Title", - "description":"This title will be displayed above the introduction text." + "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": "Introduction text", + "description": "This text will be displayed before the quiz starts." }, { - "label":"Start button text", - "default":"Start Quiz" + "label": "Start button text", + "default": "Start Quiz" }, { - "label":"Background image", - "description":"An optional background image for the introduction." + "label": "Background image", + "description": "An optional background image for the introduction." } ] }, { - "label":"Background image", - "description":"An optional background image for the Question set." + "label": "Background image", + "description": "An optional background image for the Question set." }, { - "label":"Progress indicator", - "description":"Question set progress indicator style.", - "options":[ + "label": "Progress indicator", + "description": "Question set progress indicator style.", + "options": [ { - "label":"Textual" + "label": "Textual" }, { - "label":"Dots" + "label": "Dots" } - ], - "default":"dots" + ] }, { - "label":"Pass percentage", - "description":"Percentage of Total score required for passing the quiz." + "label": "Pass percentage", + "description": "Percentage of Total score required for passing the quiz." }, { - "label":"Questions", - "widgets":[ + "label": "Questions", + "widgets": [ { - "label":"Default" + "label": "Default" }, { - "label":"Textual" + "label": "Textual" } ], - "entity":"question", - "field":{ - "label":"Question type", - "description":"Library for this question." + "entity": "question", + "field": { + "label": "Question type", + "description": "Library for this question." } }, { - "label":"Interface texts in quiz", - "fields":[ + "label": "Interface texts in quiz", + "fields": [ { - "label":"Back button", - "default":"Previous question" + "label": "Back button", + "default": "Previous question" }, { - "label":"Next button", - "default":"Next question" + "label": "Next button", + "default": "Next question" }, { - "label":"Finish button", - "default":"Finish" + "label": "Finish button", + "default": "Finish" }, { - "label":"Progress text", - "description":"Text used if textual progress is selected.", - "default":"Question: @current of @total questions" + "label": "Progress text", + "description": "Text used if textual progress is selected.", + "default": "Question: @current of @total questions" }, { - "label":"Label for jumping to a certain question", - "description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.", - "default":"Question %d of %total" + "label": "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": "Copyright dialog question label", + "default": "Question" }, { - "label":"Readspeaker progress", - "description":"May use @current and @total question variables", - "default":"Question @current of @total" + "label": "Readspeaker progress", + "description": "May use @current and @total question variables", + "default": "Question @current of @total" }, { - "label":"Unanswered question text", - "default":"Unanswered" + "label": "Unanswered question text", + "default": "Unanswered" }, { - "label":"Answered question text", - "default":"Answered" + "label": "Answered question text", + "default": "Answered" }, { - "label":"Current question text", - "default":"Current question" + "label": "Current question text", + "default": "Current question" } ] }, { - "label":"Disable backwards navigation", - "description":"This option will only allow you to move forward in Question Set" + "label": "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": "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": "Number of questions to be shown:", + "description": "Create a randomized batch of questions from the total." }, { - "label":"Quiz finished", - "fields":[ + "label": "Quiz finished", + "fields": [ { - "label":"Display results" + "label": "Display results" }, { - "label":"Display solution button" + "label": "Display solution button" }, { - "label":"No results message", - "description":"Text displayed on end page when \"Display results\" is disabled", - "default":"Finished" + "label": "No results message", + "description": "Text displayed on end page when \"Display results\" is disabled", + "default": "Finished" }, { - "label":"Feedback heading", - "default":"Your result:", - "description":"This heading will be displayed at the end of the quiz when the user has answered all questions." + "label": "Feedback heading", + "default": "Your result:", + "description": "This heading will be displayed at the end of the quiz when the user has answered all questions." }, { - "label":"Overall Feedback", - "fields":[ + "label": "Overall Feedback", + "fields": [ { - "widgets":[ - + "widgets": [ + { + "label": "Default" + } ], - "label":"Define custom feedback for any score range", - "description":"Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!", - "entity":"range", - "field":{ - "fields":[ + "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": "Score Range" }, + {}, { - - }, - { - "label":"Feedback for defined score range", - "placeholder":"Fill in the feedback" + "label": "Feedback for defined score range", + "placeholder": "Fill in the feedback" } ] } @@ -168,84 +167,88 @@ ] }, { - "label":"Old Feedback", - "fields":[ + "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": "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": "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": "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": "Failed comment", + "description": "This comment will be displayed after the score if the user has failed the quiz." } ] }, { - "label":"Solution button label", - "default":"Show solution", - "description":"Text for the solution button." + "label": "Solution button label", + "default": "Show solution", + "description": "Text for the solution button." }, { - "label":"Retry button label", - "default":"Retry", - "description":"Text for the retry button." + "label": "Retry button label", + "default": "Retry", + "description": "Text for the retry button." }, { - "label":"Finish button text", - "default":"Finish" + "label": "Finish button text", + "default": "Finish" }, { - "label":"Display video before quiz results" + "label": "Display video before quiz results" }, { - "label":"Enable skip video button" + "label": "Enable skip video button" }, { - "label":"Skip video button label", - "default":"Skip video" + "label": "Skip video button label", + "default": "Skip video" }, { - "label":"Passed video", - "description":"This video will be played if the user successfully passed the quiz." + "label": "Passed video", + "description": "This video will be played if the user successfully passed the quiz." }, { - "label":"Fail video", - "description":"This video will be played if the user failes the quiz." + "label": "Fail video", + "description": "This video will be played if the user failes the quiz." } ] }, { - "label":"Settings for \"Show solution\" and \"Retry\" buttons", - "fields":[ + "label": "Settings for \"Show solution\" and \"Retry\" buttons", + "fields": [ { - "label":"Override \"Show Solution\" button", - "description":"This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.", - "options":[ + "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": "Enabled" }, { - "label":"Disabled" + "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": "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": "Enabled" }, { - "label":"Disabled" + "label": "Disabled" } ] } diff --git a/language/it.json b/language/it.json index 9502545..b203c64 100644 --- a/language/it.json +++ b/language/it.json @@ -1,166 +1,165 @@ { - "semantics":[ + "semantics": [ { - "label":"Introduzione al quiz", - "fields":[ + "label": "Introduzione al quiz", + "fields": [ { - "label":"Visualizza l'introduzione" + "label": "Visualizza l'introduzione" }, { - "label":"Titolo", - "description":"Questo titolo sarà visualizzato sopra il testo introduttivo." + "label": "Titolo", + "description": "Questo titolo sarà visualizzato sopra il testo introduttivo." }, { - "label":"Testo di introduzione", - "description":"Questo testo sarà visualizzato prima dell'inizio del quiz." + "label": "Testo di introduzione", + "description": "Questo testo sarà visualizzato prima dell'inizio del quiz." }, { - "label":"Testo pulsante di avvio", - "default":"Inizia il quiz" + "label": "Testo pulsante di avvio", + "default": "Inizia il quiz" }, { - "label":"Immagine di sfondo", - "description":"Immagine di sfondo facoltativa per l'introduzione." + "label": "Immagine di sfondo", + "description": "Immagine di sfondo facoltativa per l'introduzione." } ] }, { - "label":"Immagine di sfondo", - "description":"Immagine di sfondo facoltativa per il gruppo di domande." + "label": "Immagine di sfondo", + "description": "Immagine di sfondo facoltativa per il gruppo di domande." }, { - "label":"Indicatore di avanzamento", - "description":"Stile dell'indicatore di avanzamento del gruppo di domande.", - "options":[ + "label": "Indicatore di avanzamento", + "description": "Stile dell'indicatore di avanzamento del gruppo di domande.", + "options": [ { - "label":"Testuale" + "label": "Testuale" }, { - "label":"Punti" + "label": "Punti" } - ], - "default":"dots" + ] }, { - "label":"Percentuale di superamento della prova", - "description":"Percentuale del punteggio totale richiesto per passare il quiz." + "label": "Percentuale di superamento della prova", + "description": "Percentuale del punteggio totale richiesto per passare il quiz." }, { - "label":"Domande", - "widgets":[ + "label": "Domande", + "widgets": [ { - "label":"Predefinito" + "label": "Predefinito" }, { - "label":"Testuale" + "label": "Testuale" } ], - "entity":"domanda", - "field":{ - "label":"Tipo di domanda", - "description":"Libreria per questa domanda." + "entity": "domanda", + "field": { + "label": "Tipo di domanda", + "description": "Libreria per questa domanda." } }, { - "label":"Testi di interfaccia nel quiz", - "fields":[ + "label": "Testi di interfaccia nel quiz", + "fields": [ { - "label":"Pulsante indietro", - "default":"Domanda precedente" + "label": "Pulsante indietro", + "default": "Domanda precedente" }, { - "label":"Pulsante Avanti", - "default":"Prossima domanda" + "label": "Pulsante Avanti", + "default": "Prossima domanda" }, { - "label":"Pulsante Fine", - "default":"Finito" + "label": "Pulsante Fine", + "default": "Finito" }, { - "label":"Testo di avanzamento", - "description":"Testo usate se il testo di avanzamento è selezionato.", - "default":"Domanda: @current di @total domande totali" + "label": "Testo di avanzamento", + "description": "Testo usate se il testo di avanzamento è selezionato.", + "default": "Domanda: @current di @total domande totali" }, { - "label":"Etichetta per saltare a una determinata domanda", - "description":"Devi usare il segnaposto '%d' anziché il numero di domanda, e %total invece del numero totale delle domande.", - "default":"Domanda %d di %total" + "label": "Etichetta per saltare a una determinata domanda", + "description": "Devi usare il segnaposto '%d' anziché il numero di domanda, e %total invece del numero totale delle domande.", + "default": "Domanda %d di %total" }, { - "label":"Etichetta della domanda nella finestra sul diritto d'autore", - "default":"Domanda" + "label": "Etichetta della domanda nella finestra sul diritto d'autore", + "default": "Domanda" }, { - "label":"Progresso del dispositvo di riproduzione vocale", - "description":"Puoi utilizzare le variabili di domanda @current e @total", - "default":"Domanda @current di @total" + "label": "Progresso del dispositvo di riproduzione vocale", + "description": "Puoi utilizzare le variabili di domanda @current e @total", + "default": "Domanda @current di @total" }, { - "label":"Testo della domanda senza risposta", - "default":"Senza risposta" + "label": "Testo della domanda senza risposta", + "default": "Senza risposta" }, { - "label":"Testo della domanda con risposta", - "default":"Risposta" + "label": "Testo della domanda con risposta", + "default": "Risposta" }, { - "label":"Testo della domanda corrente", - "default":"Domanda corrente" + "label": "Testo della domanda corrente", + "default": "Domanda corrente" } ] }, { - "label":"Disattiva la navigazione all'indietro", - "description":"Questa opzione ti permetterà solo di spostarti in avanti in Question Set (Insieme di domande)" + "label": "Disattiva la navigazione all'indietro", + "description": "Questa opzione ti permetterà solo di spostarti in avanti in Question Set (Insieme di domande)" }, { - "label":"Rendi casuale l'ordine delle domande", - "description":"Abilita per rendere casuale l'ordine delle domande visualizzate." + "label": "Rendi casuale l'ordine delle domande", + "description": "Abilita per rendere casuale l'ordine delle domande visualizzate." }, { - "label":"Numero di domande da mostrare:", - "description":"Crea un raggruppamento casuale dal totale delle domande." + "label": "Numero di domande da mostrare:", + "description": "Crea un raggruppamento casuale dal totale delle domande." }, { - "label":"Quiz terminato", - "fields":[ + "label": "Quiz terminato", + "fields": [ { - "label":"Visualizza i risultati" + "label": "Visualizza i risultati" }, { - "label":"Pulsante visualizza soluzione" + "label": "Pulsante visualizza soluzione" }, { - "label":"Messaggio di nessun risultato", - "description":"Testo visualizzato nella pagina finale quando \"Visualizza risultati\" è disattivato", - "default":"Finito" + "label": "Messaggio di nessun risultato", + "description": "Testo visualizzato nella pagina finale quando \"Visualizza risultati\" è disattivato", + "default": "Finito" }, { - "label":"Intestazione di feedback", - "default":"Il tuo risultato:", - "description":"Questa intestazione sarà visualizzata alla fine del quiz, dopo che l'utente avrà risposto a tutte le domande." + "label": "Intestazione di feedback", + "default": "Il tuo risultato:", + "description": "Questa intestazione sarà visualizzata alla fine del quiz, dopo che l'utente avrà risposto a tutte le domande." }, { - "label":"Feedback generale", - "fields":[ + "label": "Feedback generale", + "fields": [ { - "widgets":[ - + "widgets": [ + { + "label": "Default" + } ], - "label":"Definisci un feedback personalizzato per ogni intervallo di punteggio", - "description":"Esempio: 0-20%, cattivo punteggio; 21-91% punteggio nella media; 91-100% ottimo punteggio!", - "entity":"Intervallo", - "field":{ - "fields":[ + "label": "Definisci un feedback personalizzato per ogni intervallo di punteggio", + "description": "Esempio: 0-20%, cattivo punteggio; 21-91% punteggio nella media; 91-100% ottimo punteggio!", + "entity": "Intervallo", + "field": { + "fields": [ { - "label":"Intervallo di punteggio" + "label": "Intervallo di punteggio" }, + {}, { - - }, - { - "label":"Feedback per un intervallo di punteggio definito", - "placeholder":"Compila il feedback" + "label": "Feedback per un intervallo di punteggio definito", + "placeholder": "Compila il feedback" } ] } @@ -168,84 +167,88 @@ ] }, { - "label":"Vecchio feedback", - "fields":[ + "label": "Vecchio feedback", + "fields": [ { - "label":"Messaggio di superamento quiz", - "description":"Questo testo verrà visualizzato sopra il punteggio se l'utente ha superato con successo il quiz." + "label": "Messaggio di superamento quiz", + "description": "Questo testo verrà visualizzato sopra il punteggio se l'utente ha superato con successo il quiz." }, { - "label":"Commento di superamento quiz", - "description":"Questo commento verrà visualizzato dopo il punteggio se l'utente ha superato con successo il quiz." + "label": "Commento di superamento quiz", + "description": "Questo commento verrà visualizzato dopo il punteggio se l'utente ha superato con successo il quiz." }, { - "label":"Titolo quiz fallito", - "description":"Questo testo verrà visualizzato sopra il punteggio se l'utente non ha superato il quiz." + "label": "Titolo quiz fallito", + "description": "Questo testo verrà visualizzato sopra il punteggio se l'utente non ha superato il quiz." }, { - "label":"Commento quiz fallito", - "description":"Questo commento verrà visualizzato dopo il punteggio se l'utente non ha superato il quiz." + "label": "Commento quiz fallito", + "description": "Questo commento verrà visualizzato dopo il punteggio se l'utente non ha superato il quiz." } ] }, { - "label":"Etichetta pulsante Soluzione", - "default":"Mostra la soluzione", - "description":"Testo per il pulsante Soluzione." + "label": "Etichetta pulsante Soluzione", + "default": "Mostra la soluzione", + "description": "Testo per il pulsante Soluzione." }, { - "label":"Etichetta del pulsante Riprova", - "default":"Riprova", - "description":"Testo per il pulsante Riprova." + "label": "Etichetta del pulsante Riprova", + "default": "Riprova", + "description": "Testo per il pulsante Riprova." }, { - "label":"Testo pulsante Fine", - "default":"Finito" + "label": "Testo pulsante Fine", + "default": "Finito" }, { - "label":"Visualizza il video prima dei risultati del quiz" + "label": "Visualizza il video prima dei risultati del quiz" }, { - "label":"Abilita pulsante Salta video" + "label": "Abilita pulsante Salta video" }, { - "label":"Etichetta pulsante Salta video", - "default":"Salta video" + "label": "Etichetta pulsante Salta video", + "default": "Salta video" }, { - "label":"Video di superamento quiz", - "description":"Questo video verrà visualizzato sopra il punteggio se l'utente ha superato con successo il quiz." + "label": "Video di superamento quiz", + "description": "Questo video verrà visualizzato sopra il punteggio se l'utente ha superato con successo il quiz." }, { - "label":"Video quiz fallito", - "description":"Questo testo verrà visualizzato se l'utente non ha superato il quiz." + "label": "Video quiz fallito", + "description": "Questo testo verrà visualizzato se l'utente non ha superato il quiz." } ] }, { - "label":"Impostazioni per i pulsanti \"Mostra soluzione\" e \"Riprova\".", - "fields":[ + "label": "Impostazioni per i pulsanti \"Mostra soluzione\" e \"Riprova\".", + "fields": [ { - "label":"Sovrascrivi il pulsante Mostra soluzione", - "description":"Questa opzione determina se il pulsante \"Mostra soluzione\" sarà visualizzato per tutte le domande, disabilitato per tutti o configurato individualmente per ogni domanda.", - "options":[ + "label": "Show \"Check\" buttons", + "description": "This option determines if the \"Check\" button will be shown for all questions." + }, + { + "label": "Sovrascrivi il pulsante Mostra soluzione", + "description": "Questa opzione determina se il pulsante \"Mostra soluzione\" sarà visualizzato per tutte le domande, disabilitato per tutti o configurato individualmente per ogni domanda.", + "options": [ { - "label":"Attivato" + "label": "Attivato" }, { - "label":"Disabilitato" + "label": "Disabilitato" } ] }, { - "label":"Sovrascrivi il pulsante \"Riprova\"", - "description":"Questa opzione determina se il pulsante \"Riprova\" sarà visualizzato per tutte le domande, disabilitato per tutti o configurato individualmente per ogni domanda.", - "options":[ + "label": "Sovrascrivi il pulsante \"Riprova\"", + "description": "Questa opzione determina se il pulsante \"Riprova\" sarà visualizzato per tutte le domande, disabilitato per tutti o configurato individualmente per ogni domanda.", + "options": [ { - "label":"Attivo" + "label": "Attivo" }, { - "label":"Disattivato" + "label": "Disattivato" } ] } diff --git a/language/ja.json b/language/ja.json index 23b120a..a8e490b 100644 --- a/language/ja.json +++ b/language/ja.json @@ -1,166 +1,165 @@ { - "semantics":[ + "semantics": [ { - "label":"クイズ概要", - "fields":[ + "label": "クイズ概要", + "fields": [ { - "label":"概要を表示" + "label": "概要を表示" }, { - "label":"タイトル", - "description":"このタイトルは、概要文の上に表示されます。" + "label": "タイトル", + "description": "このタイトルは、概要文の上に表示されます。" }, { - "label":"概要文", - "description":"このテキストは、クイズが始まる前に表示されます。" + "label": "概要文", + "description": "このテキストは、クイズが始まる前に表示されます。" }, { - "label":"スタート ボタンのテキスト", - "default":"クイズをスタート" + "label": "スタート ボタンのテキスト", + "default": "クイズをスタート" }, { - "label":"背景画像", - "description":"概要のオプションの背景画像" + "label": "背景画像", + "description": "概要のオプションの背景画像" } ] }, { - "label":"背景画像", - "description":"設問集のオプションの背景画像" + "label": "背景画像", + "description": "設問集のオプションの背景画像" }, { - "label":"進行状況インジケーター", - "description":"設問集の進捗状況インジケータースタイル", - "options":[ + "label": "進行状況インジケーター", + "description": "設問集の進捗状況インジケータースタイル", + "options": [ { - "label":"原文" + "label": "原文" }, { - "label":"ドット" + "label": "ドット" } - ], - "default":"dots" + ] }, { - "label":"合格パーセンテージ", - "description":"クイズにパスするために必要となる合計点のパーセンテージです。" + "label": "合格パーセンテージ", + "description": "クイズにパスするために必要となる合計点のパーセンテージです。" }, { - "label":"設問", - "widgets":[ + "label": "設問", + "widgets": [ { - "label":"デフォルト" + "label": "デフォルト" }, { - "label":"原文" + "label": "原文" } ], - "entity":"設問", - "field":{ - "label":"設問タイプ", - "description":"この設問のライブラリ。" + "entity": "設問", + "field": { + "label": "設問タイプ", + "description": "この設問のライブラリ。" } }, { - "label":"クイズ内のインターフェイステキスト", - "fields":[ + "label": "クイズ内のインターフェイステキスト", + "fields": [ { - "label":"戻るボタン", - "default":"前の設問" + "label": "戻るボタン", + "default": "前の設問" }, { - "label":"次へボタン", - "default":"次の設問" + "label": "次へボタン", + "default": "次の設問" }, { - "label":"完了ボタン", - "default":"完了" + "label": "完了ボタン", + "default": "完了" }, { - "label":"進行状況のテキスト", - "description":"テキストによる進行状況を選択した場合に使用するテキスト。", - "default":"設問: @current \/ @total" + "label": "進行状況のテキスト", + "description": "テキストによる進行状況を選択した場合に使用するテキスト。", + "default": "設問: @current / @total" }, { - "label":"特定の設問にジャンプするラベル", - "description":"設問番号ではなくプレース ホルダー '%d' を、また設問の全体数ではなく %total を使用する必要があります。", - "default":"設問 %d \/ %total" + "label": "特定の設問にジャンプするラベル", + "description": "設問番号ではなくプレース ホルダー '%d' を、また設問の全体数ではなく %total を使用する必要があります。", + "default": "設問 %d / %total" }, { - "label":"著作権ダイアログ設問ラベル", - "default":"設問" + "label": "著作権ダイアログ設問ラベル", + "default": "設問" }, { - "label":"リードスピーカーの進行状況", - "description":"@current と @total の設問用変数を使用できます", - "default":"設問 @current \/ @total" + "label": "リードスピーカーの進行状況", + "description": "@current と @total の設問用変数を使用できます", + "default": "設問 @current / @total" }, { - "label":"未回答の設問テキスト", - "default":"未回答" + "label": "未回答の設問テキスト", + "default": "未回答" }, { - "label":"回答済みの設問テキスト", - "default":"回答済み" + "label": "回答済みの設問テキスト", + "default": "回答済み" }, { - "label":"現在の設問テキスト", - "default":"現在の設問" + "label": "現在の設問テキスト", + "default": "現在の設問" } ] }, { - "label":"後方ナビゲーションを無効化", - "description":"このオプションは、設問集内で前方移動を許可します。" + "label": "後方ナビゲーションを無効化", + "description": "このオプションは、設問集内で前方移動を許可します。" }, { - "label":"ランダムな設問", - "description":"表示される設問の順序をランダム化します。" + "label": "ランダムな設問", + "description": "表示される設問の順序をランダム化します。" }, { - "label":"表示される設問の数:", - "description":"全体からランダム化したに設問集を作成します。" + "label": "表示される設問の数:", + "description": "全体からランダム化したに設問集を作成します。" }, { - "label":"クイズ完了", - "fields":[ + "label": "クイズ完了", + "fields": [ { - "label":"結果を表示" + "label": "結果を表示" }, { - "label":"解ボタンを表示" + "label": "解ボタンを表示" }, { - "label":"結果のメッセージはありません", - "description":"「結果を表示」が無効のとき最後のページにに表示されるテキスト", - "default":"完了" + "label": "結果のメッセージはありません", + "description": "「結果を表示」が無効のとき最後のページにに表示されるテキスト", + "default": "完了" }, { - "label":"フィードバックの見出し", - "default":"結果:", - "description":"この見出しは、ユーザーがすべての設問に答えたときクイズの終わりに表示されます。" + "label": "フィードバックの見出し", + "default": "結果:", + "description": "この見出しは、ユーザーがすべての設問に答えたときクイズの終わりに表示されます。" }, { - "label":"全体のフィードバック", - "fields":[ + "label": "全体のフィードバック", + "fields": [ { - "widgets":[ - + "widgets": [ + { + "label": "Default" + } ], - "label":"ある得点範囲に対して、カスタムフィードバックを定義します。", - "description":"例: 0-20% 低得点、 21-91% 平均点、 91-100% 高得点 !", - "entity":"範囲", - "field":{ - "fields":[ + "label": "ある得点範囲に対して、カスタムフィードバックを定義します。", + "description": "例: 0-20% 低得点、 21-91% 平均点、 91-100% 高得点 !", + "entity": "範囲", + "field": { + "fields": [ { - "label":"得点範囲" + "label": "得点範囲" }, + {}, { - - }, - { - "label":"定義した得点範囲に対するフィードバック", - "placeholder":"フィードバックを記入" + "label": "定義した得点範囲に対するフィードバック", + "placeholder": "フィードバックを記入" } ] } @@ -168,84 +167,88 @@ ] }, { - "label":"古いフィードバック", - "fields":[ + "label": "古いフィードバック", + "fields": [ { - "label":"クイズの合格メッセージ", - "description":"このテキストは、クイズの合格に成功した場合、得点の上に表示されます。" + "label": "クイズの合格メッセージ", + "description": "このテキストは、クイズの合格に成功した場合、得点の上に表示されます。" }, { - "label":"合格コメント", - "description":"このコメントは、クイズの合格に成功した場合、得点の後に表示されます。" + "label": "合格コメント", + "description": "このコメントは、クイズの合格に成功した場合、得点の後に表示されます。" }, { - "label":"クイズ不合格タイトル", - "description":"このテキストは、クイズに不合格となった場合、得点の上に表示されます。" + "label": "クイズ不合格タイトル", + "description": "このテキストは、クイズに不合格となった場合、得点の上に表示されます。" }, { - "label":"不合格コメント", - "description":"このコメントは、クイズに不合格となった場合、得点の後に表示されます。" + "label": "不合格コメント", + "description": "このコメントは、クイズに不合格となった場合、得点の後に表示されます。" } ] }, { - "label":"解ボタンのラベル", - "default":"解を表示", - "description":"解ボタンのテキスト" + "label": "解ボタンのラベル", + "default": "解を表示", + "description": "解ボタンのテキスト" }, { - "label":"リトライボタンのラベル", - "default":"リトライ", - "description":"リトライボタンのテキスト" + "label": "リトライボタンのラベル", + "default": "リトライ", + "description": "リトライボタンのテキスト" }, { - "label":"完了ボタンのテキスト", - "default":"完了" + "label": "完了ボタンのテキスト", + "default": "完了" }, { - "label":"クイズの結果の前にビデオを表示" + "label": "クイズの結果の前にビデオを表示" }, { - "label":"ビデオスキップボタンを有効化" + "label": "ビデオスキップボタンを有効化" }, { - "label":"ビデオスをスキップボタンのラベル", - "default":"ビデオをスキップ" + "label": "ビデオスをスキップボタンのラベル", + "default": "ビデオをスキップ" }, { - "label":"合格ビデオ", - "description":"このビデオは、ユーザーがクイズの合格に成功した場合に表示されます。" + "label": "合格ビデオ", + "description": "このビデオは、ユーザーがクイズの合格に成功した場合に表示されます。" }, { - "label":"不合格ビデオ", - "description":"このビデオは、ユーザーがクイズに不合格となった場合に表示されます。" + "label": "不合格ビデオ", + "description": "このビデオは、ユーザーがクイズに不合格となった場合に表示されます。" } ] }, { - "label":"「解を表示」と「リトライ」ボタンの設定", - "fields":[ + "label": "「解を表示」と「リトライ」ボタンの設定", + "fields": [ { - "label":"「解を表示」ボタンを上書き", - "description":"このオプションは、すべての設問に対して「解を表示」ボタンが表示されるか、すべての設問に対して無効になるか、各設問ごとに個別に設定されるかを決定します。", - "options":[ + "label": "Show \"Check\" buttons", + "description": "This option determines if the \"Check\" button will be shown for all questions." + }, + { + "label": "「解を表示」ボタンを上書き", + "description": "このオプションは、すべての設問に対して「解を表示」ボタンが表示されるか、すべての設問に対して無効になるか、各設問ごとに個別に設定されるかを決定します。", + "options": [ { - "label":"有効" + "label": "有効" }, { - "label":"無効" + "label": "無効" } ] }, { - "label":"「リトライ」ボタンを上書き", - "description":"このオプションは、すべての設問に対して「リトライ」ボタンが表示されるか、すべての設問に対して無効になるか、各設問ごとに個別に設定されるかを決定します。", - "options":[ + "label": "「リトライ」ボタンを上書き", + "description": "このオプションは、すべての設問に対して「リトライ」ボタンが表示されるか、すべての設問に対して無効になるか、各設問ごとに個別に設定されるかを決定します。", + "options": [ { - "label":"有効" + "label": "有効" }, { - "label":"無効" + "label": "無効" } ] } diff --git a/language/ko.json b/language/ko.json index c97b04e..5928587 100644 --- a/language/ko.json +++ b/language/ko.json @@ -1,166 +1,165 @@ { - "semantics":[ + "semantics": [ { - "label":"Quiz introduction", - "fields":[ + "label": "Quiz introduction", + "fields": [ { - "label":"Display introduction" + "label": "Display introduction" }, { - "label":"Title", - "description":"This title will be displayed above the introduction text." + "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": "Introduction text", + "description": "This text will be displayed before the quiz starts." }, { - "label":"Start button text", - "default":"Start Quiz" + "label": "Start button text", + "default": "Start Quiz" }, { - "label":"Background image", - "description":"An optional background image for the introduction." + "label": "Background image", + "description": "An optional background image for the introduction." } ] }, { - "label":"Background image", - "description":"An optional background image for the Question set." + "label": "Background image", + "description": "An optional background image for the Question set." }, { - "label":"Progress indicator", - "description":"Question set progress indicator style.", - "options":[ + "label": "Progress indicator", + "description": "Question set progress indicator style.", + "options": [ { - "label":"Textual" + "label": "Textual" }, { - "label":"Dots" + "label": "Dots" } - ], - "default":"dots" + ] }, { - "label":"Pass percentage", - "description":"Percentage of Total score required for passing the quiz." + "label": "Pass percentage", + "description": "Percentage of Total score required for passing the quiz." }, { - "label":"Questions", - "widgets":[ + "label": "Questions", + "widgets": [ { - "label":"Default" + "label": "Default" }, { - "label":"Textual" + "label": "Textual" } ], - "entity":"question", - "field":{ - "label":"Question type", - "description":"Library for this question." + "entity": "question", + "field": { + "label": "Question type", + "description": "Library for this question." } }, { - "label":"Interface texts in quiz", - "fields":[ + "label": "Interface texts in quiz", + "fields": [ { - "label":"Back button", - "default":"Previous question" + "label": "Back button", + "default": "Previous question" }, { - "label":"Next button", - "default":"Next question" + "label": "Next button", + "default": "Next question" }, { - "label":"Finish button", - "default":"Finish" + "label": "Finish button", + "default": "Finish" }, { - "label":"Progress text", - "description":"Text used if textual progress is selected.", - "default":"Question: @current of @total questions" + "label": "Progress text", + "description": "Text used if textual progress is selected.", + "default": "Question: @current of @total questions" }, { - "label":"Label for jumping to a certain question", - "description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.", - "default":"Question %d of %total" + "label": "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": "Copyright dialog question label", + "default": "Question" }, { - "label":"Readspeaker progress", - "description":"May use @current and @total question variables", - "default":"Question @current of @total" + "label": "Readspeaker progress", + "description": "May use @current and @total question variables", + "default": "Question @current of @total" }, { - "label":"Unanswered question text", - "default":"Unanswered" + "label": "Unanswered question text", + "default": "Unanswered" }, { - "label":"Answered question text", - "default":"Answered" + "label": "Answered question text", + "default": "Answered" }, { - "label":"Current question text", - "default":"Current question" + "label": "Current question text", + "default": "Current question" } ] }, { - "label":"Disable backwards navigation", - "description":"This option will only allow you to move forward in Question Set" + "label": "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": "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": "Number of questions to be shown:", + "description": "Create a randomized batch of questions from the total." }, { - "label":"Quiz finished", - "fields":[ + "label": "Quiz finished", + "fields": [ { - "label":"Display results" + "label": "Display results" }, { - "label":"Display solution button" + "label": "Display solution button" }, { - "label":"No results message", - "description":"Text displayed on end page when \"Display results\" is disabled", - "default":"Finished" + "label": "No results message", + "description": "Text displayed on end page when \"Display results\" is disabled", + "default": "Finished" }, { - "label":"Feedback heading", - "default":"Your result:", - "description":"This heading will be displayed at the end of the quiz when the user has answered all questions." + "label": "Feedback heading", + "default": "Your result:", + "description": "This heading will be displayed at the end of the quiz when the user has answered all questions." }, { - "label":"Overall Feedback", - "fields":[ + "label": "Overall Feedback", + "fields": [ { - "widgets":[ - + "widgets": [ + { + "label": "Default" + } ], - "label":"Define custom feedback for any score range", - "description":"Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!", - "entity":"range", - "field":{ - "fields":[ + "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": "Score Range" }, + {}, { - - }, - { - "label":"Feedback for defined score range", - "placeholder":"Fill in the feedback" + "label": "Feedback for defined score range", + "placeholder": "Fill in the feedback" } ] } @@ -168,84 +167,88 @@ ] }, { - "label":"Old Feedback", - "fields":[ + "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": "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": "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": "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": "Failed comment", + "description": "This comment will be displayed after the score if the user has failed the quiz." } ] }, { - "label":"Solution button label", - "default":"Show solution", - "description":"Text for the solution button." + "label": "Solution button label", + "default": "Show solution", + "description": "Text for the solution button." }, { - "label":"Retry button label", - "default":"Retry", - "description":"Text for the retry button." + "label": "Retry button label", + "default": "Retry", + "description": "Text for the retry button." }, { - "label":"Finish button text", - "default":"Finish" + "label": "Finish button text", + "default": "Finish" }, { - "label":"Display video before quiz results" + "label": "Display video before quiz results" }, { - "label":"Enable skip video button" + "label": "Enable skip video button" }, { - "label":"Skip video button label", - "default":"Skip video" + "label": "Skip video button label", + "default": "Skip video" }, { - "label":"Passed video", - "description":"This video will be played if the user successfully passed the quiz." + "label": "Passed video", + "description": "This video will be played if the user successfully passed the quiz." }, { - "label":"Fail video", - "description":"This video will be played if the user failes the quiz." + "label": "Fail video", + "description": "This video will be played if the user failes the quiz." } ] }, { - "label":"Settings for \"Show solution\" and \"Retry\" buttons", - "fields":[ + "label": "Settings for \"Show solution\" and \"Retry\" buttons", + "fields": [ { - "label":"Override \"Show Solution\" button", - "description":"This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.", - "options":[ + "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": "Enabled" }, { - "label":"Disabled" + "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": "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": "Enabled" }, { - "label":"Disabled" + "label": "Disabled" } ] } diff --git a/language/nb.json b/language/nb.json index f4fe6e2..9854940 100644 --- a/language/nb.json +++ b/language/nb.json @@ -1,166 +1,165 @@ { - "semantics":[ + "semantics": [ { - "label":"Introduksjon", - "fields":[ + "label": "Introduksjon", + "fields": [ { - "label":"Vis introduksjon" + "label": "Vis introduksjon" }, { - "label":"Tittel", - "description":"Denne tittelen vil bli vist over introduksjonsteksten." + "label": "Tittel", + "description": "Denne tittelen vil bli vist over introduksjonsteksten." }, { - "label":"Introduksjonstekst", - "description":"Denne teksten vises før spørsmålssettet starter." + "label": "Introduksjonstekst", + "description": "Denne teksten vises før spørsmålssettet starter." }, { - "label":"Tekst til \"Start\" knappen", - "default":"Start" + "label": "Tekst til \"Start\" knappen", + "default": "Start" }, { - "label":"Bakgrunnsbilde", - "description":"Et valgfritt bakgrunnsbilde for introduksjonssiden." + "label": "Bakgrunnsbilde", + "description": "Et valgfritt bakgrunnsbilde for introduksjonssiden." } ] }, { - "label":"Bakgrunnsbilde", - "description":"Bakgrunnsbilde for spørsmålssettet (ikke obligatorisk)." + "label": "Bakgrunnsbilde", + "description": "Bakgrunnsbilde for spørsmålssettet (ikke obligatorisk)." }, { - "label":"Fremdriftsindikator", - "description":"Velg om fremdriften skal angis som prikker (få spørsmål) eller som tekst (mange spørsmål).", - "options":[ + "label": "Fremdriftsindikator", + "description": "Velg om fremdriften skal angis som prikker (få spørsmål) eller som tekst (mange spørsmål).", + "options": [ { - "label":"Tekstlig" + "label": "Tekstlig" }, { - "label":"Prikker" + "label": "Prikker" } - ], - "default":"dots" + ] }, { - "label":"Krav for å bestå", - "description":"Antall prosent riktig som kreves for å bestå spørsmålssettet." + "label": "Krav for å bestå", + "description": "Antall prosent riktig som kreves for å bestå spørsmålssettet." }, { - "label":"Spørsmål", - "widgets":[ + "label": "Spørsmål", + "widgets": [ { - "label":"Standard" + "label": "Standard" }, { - "label":"Tekstlig" + "label": "Tekstlig" } ], - "entity":"spørsmål", - "field":{ - "label":"Spørsmåltype", - "description":"Velg spørsmålstype for dette spørsmålet" + "entity": "spørsmål", + "field": { + "label": "Spørsmåltype", + "description": "Velg spørsmålstype for dette spørsmålet" } }, { - "label":"Ledetekster", - "fields":[ + "label": "Ledetekster", + "fields": [ { - "label":"Forrige-knappen", - "default":"Forrige spørsmål" + "label": "Forrige-knappen", + "default": "Forrige spørsmål" }, { - "label":"Neste-knappen", - "default":"Neste spørsmål" + "label": "Neste-knappen", + "default": "Neste spørsmål" }, { - "label":"Avslutt-knappen", - "default":"Avslutt" + "label": "Avslutt-knappen", + "default": "Avslutt" }, { - "label":"Fremgangstekst", - "description":"Tekst brukt hvis tekstlig angivelse av fremdrift er valgt. Variabler: @current og @total", - "default":"Deloppgave @current av @total" + "label": "Fremgangstekst", + "description": "Tekst brukt hvis tekstlig angivelse av fremdrift er valgt. Variabler: @current og @total", + "default": "Deloppgave @current av @total" }, { - "label":"Merkelapp ved hopping til spørsmål", - "description":"Du må bruke plassholderen '%d' istedenfor spørsmålsnummeret, og '%total' istedet for totalt antall spørsmål.", - "default":"Spørsmål %d av %total" + "label": "Merkelapp ved hopping til spørsmål", + "description": "Du må bruke plassholderen '%d' istedenfor spørsmålsnummeret, og '%total' istedet for totalt antall spørsmål.", + "default": "Spørsmål %d av %total" }, { - "label":"Opphavsrett spørsmål-etikett", - "default":"Spørsmål" + "label": "Opphavsrett spørsmål-etikett", + "default": "Spørsmål" }, { - "label":"Fremdriftstekst for hjelpemiddelteknologi", - "description":"Kan bruke @current og @total variabler", - "default":"Deloppgave @current av @total" + "label": "Fremdriftstekst for hjelpemiddelteknologi", + "description": "Kan bruke @current og @total variabler", + "default": "Deloppgave @current av @total" }, { - "label":"Ikke svart på spørsmål-tekst", - "default":"Ikke svart" + "label": "Ikke svart på spørsmål-tekst", + "default": "Ikke svart" }, { - "label":"Svart på spørsmål-tekst", - "default":"Svar avgitt" + "label": "Svart på spørsmål-tekst", + "default": "Svar avgitt" }, { - "label":"Aktivt spørsmål-tekst", - "default":"Aktivt spørsmål" + "label": "Aktivt spørsmål-tekst", + "default": "Aktivt spørsmål" } ] }, { - "label":"Slå av tilbakenavigering", - "description":"Slå på for å nekte å gå tilbake i Question Set" + "label": "Slå av tilbakenavigering", + "description": "Slå på for å nekte å gå tilbake i Question Set" }, { - "label":"Stokk spørsmålene", - "description":"Slå på for å vise alternativene i tilfeldig rekkefølge." + "label": "Stokk spørsmålene", + "description": "Slå på for å vise alternativene i tilfeldig rekkefølge." }, { - "label":"Antall spørsmål som skal vises:", - "description":"Lag et tilfeldig sett med spørsmål." + "label": "Antall spørsmål som skal vises:", + "description": "Lag et tilfeldig sett med spørsmål." }, { - "label":"Spørsmålssett avslutning", - "fields":[ + "label": "Spørsmålssett avslutning", + "fields": [ { - "label":"Vis resultater" + "label": "Vis resultater" }, { - "label":"Vis resultatknapp" + "label": "Vis resultatknapp" }, { - "label":"Melding når resultater ikke vises", - "description":"Teksten vises på avslutnings-siden når resultater ikke vises", - "default":"Ferdig" + "label": "Melding når resultater ikke vises", + "description": "Teksten vises på avslutnings-siden når resultater ikke vises", + "default": "Ferdig" }, { - "label":"Overskrift over tilbakemeldinger", - "default":"Resultat:", - "description":"Denne overskriften vises over tilbakemeldingene på slutten av spørsmålssettet." + "label": "Overskrift over tilbakemeldinger", + "default": "Resultat:", + "description": "Denne overskriften vises over tilbakemeldingene på slutten av spørsmålssettet." }, { - "label":"Samlet tilbakemelding", - "fields":[ + "label": "Samlet tilbakemelding", + "fields": [ { - "widgets":[ - + "widgets": [ + { + "label": "Default" + } ], - "label":"Spesifiser en egendefinert tilbakemelding for et poengintervall", - "description":"Eksempel: 0-20% dårlig poengsum, 21-91% gjennomsnittlig poengsum, 91-100% God poengsum!", - "entity":"intervall", - "field":{ - "fields":[ + "label": "Spesifiser en egendefinert tilbakemelding for et poengintervall", + "description": "Eksempel: 0-20% dårlig poengsum, 21-91% gjennomsnittlig poengsum, 91-100% God poengsum!", + "entity": "intervall", + "field": { + "fields": [ { - "label":"Poengintervall" + "label": "Poengintervall" }, + {}, { - - }, - { - "label":"Tilbakemelding for spesifisert poengintervall", - "placeholder":"Fyll inn tilbakemelding" + "label": "Tilbakemelding for spesifisert poengintervall", + "placeholder": "Fyll inn tilbakemelding" } ] } @@ -168,88 +167,92 @@ ] }, { - "label":"Gammel tilbakemelding", - "fields":[ + "label": "Gammel tilbakemelding", + "fields": [ { - "label":"Tittel ved bestått", - "description":"Denne tittelen vises dersom brukeren har bestått spørsmålssettet." + "label": "Tittel ved bestått", + "description": "Denne tittelen vises dersom brukeren har bestått spørsmålssettet." }, { - "label":"Kommentar ved bestått", - "description":"Denne kommentaren vises dersom brukeren har bestått spørsmålssettet." + "label": "Kommentar ved bestått", + "description": "Denne kommentaren vises dersom brukeren har bestått spørsmålssettet." }, { - "label":"Tittel ved ikke bestått", - "description":"Denne tittelen vises dersom brukeren ikke har bestått spørsmålssettet." + "label": "Tittel ved ikke bestått", + "description": "Denne tittelen vises dersom brukeren ikke har bestått spørsmålssettet." }, { - "label":"Kommentar ved ikke bestått", - "description":"Denne kommentaren vises dersom brukeren ikke har bestått spørsmålssettet." + "label": "Kommentar ved ikke bestått", + "description": "Denne kommentaren vises dersom brukeren ikke har bestått spørsmålssettet." } ] }, { - "label":"Tekst til \"Fasit\" knapp", - "default":"Vis svar", - "description":"Tekst for \"Fasit\" knapp." + "label": "Tekst til \"Fasit\" knapp", + "default": "Vis svar", + "description": "Tekst for \"Fasit\" knapp." }, { - "label":"Tekst til \"Prøv igjen\" knapp", - "default":"Prøv igjen", - "description":"Tekst til \"Prøv igjen\"-knappen." + "label": "Tekst til \"Prøv igjen\" knapp", + "default": "Prøv igjen", + "description": "Tekst til \"Prøv igjen\"-knappen." }, { - "label":"Avslutt knappetekst", - "default":"Bekreft" + "label": "Avslutt knappetekst", + "default": "Bekreft" }, { - "label":"Vis video før resultatene" + "label": "Vis video før resultatene" }, { - "label":"Tillat å hoppe over video" + "label": "Tillat å hoppe over video" }, { - "label":"Tekst til \"Hopp over video\" knapp", - "default":"Hopp over" + "label": "Tekst til \"Hopp over video\" knapp", + "default": "Hopp over" }, { - "label":"Video ved bestått", - "description":"Denne videoen vil bli vist dersom brukeren består spørsmålssettet." + "label": "Video ved bestått", + "description": "Denne videoen vil bli vist dersom brukeren består spørsmålssettet." }, { - "label":"Video ved ikke bestått", - "description":"Denne videoen vil bli vist dersom brukeren ikke består spørsmålssettet." + "label": "Video ved ikke bestått", + "description": "Denne videoen vil bli vist dersom brukeren ikke består spørsmålssettet." } ] }, { - "label":"Innstillinger for «Fasit»- og «Prøv igjen»-knapp", - "fields":[ + "label": "Innstillinger for «Fasit»- og «Prøv igjen»-knapp", + "fields": [ { - "label":"Overstyr «Vis svar»-knapp", - "description":"Dette valget avgjør om «Vis svar»-knappen vil vises for alle spørsmål, skjules for alle eller konfigureres individuelt for hvert spørsmål.", - "options":[ + "label": "Vis \"Sjekk\"-knapper", + "description": "Dette valget avgjør om «Sjekk»-knappen vil vises for alle spørsmål." + }, + { + "label": "Overstyr «Vis svar»-knapp", + "description": "Dette valget avgjør om «Vis svar»-knappen vil vises for alle spørsmål, skjules for alle eller konfigureres individuelt for hvert spørsmål.", + "options": [ { - "label":"Aktivert" + "label": "Aktivert" }, { - "label":"Deaktivert" + "label": "Deaktivert" } ] }, { - "label":"Overstyr «Prøv igjen»-knapp", - "description":"Dette valget avgjør om «Prøv igjen»-knappen vil vises for alle spørsmål, skjules for alle eller konfigureres individuelt for hvert spørsmål.", - "options":[ + "label": "Overstyr «Prøv igjen»-knapp", + "description": "Dette valget avgjør om «Prøv igjen»-knappen vil vises for alle spørsmål, skjules for alle eller konfigureres individuelt for hvert spørsmål.", + "options": [ { - "label":"Aktivert" + "label": "Aktivert" }, { - "label":"Deaktivert" + "label": "Deaktivert" } ] } ] } ] -} \ No newline at end of file +} diff --git a/language/nl.json b/language/nl.json index 0d74118..5fb8e9e 100644 --- a/language/nl.json +++ b/language/nl.json @@ -1,166 +1,165 @@ { - "semantics":[ + "semantics": [ { - "label":"Quiz introduction", - "fields":[ + "label": "Quiz introduction", + "fields": [ { - "label":"Display introduction" + "label": "Display introduction" }, { - "label":"Titel", - "description":"This title will be displayed above the introduction text." + "label": "Titel", + "description": "This title will be displayed above the introduction text." }, { - "label":"Inleidende tekst", - "description":"This text will be displayed before the quiz starts." + "label": "Inleidende tekst", + "description": "This text will be displayed before the quiz starts." }, { - "label":"Start button text", - "default":"Start Quiz" + "label": "Start button text", + "default": "Start Quiz" }, { - "label":"Achtergrondafbeelding", - "description":"An optional background image for the introduction." + "label": "Achtergrondafbeelding", + "description": "An optional background image for the introduction." } ] }, { - "label":"Achtergrondafbeelding", - "description":"An optional background image for the Question set." + "label": "Achtergrondafbeelding", + "description": "An optional background image for the Question set." }, { - "label":"Progress indicator", - "description":"Question set progress indicator style.", - "options":[ + "label": "Progress indicator", + "description": "Question set progress indicator style.", + "options": [ { - "label":"Tekstueel" + "label": "Tekstueel" }, { - "label":"Dots" + "label": "Dots" } - ], - "default":"dots" + ] }, { - "label":"Slagingspercentage", - "description":"Percentage van de Totale score die vereist is om te slagen." + "label": "Slagingspercentage", + "description": "Percentage van de Totale score die vereist is om te slagen." }, { - "label":"Questions", - "widgets":[ + "label": "Questions", + "widgets": [ { - "label":"Standaard" + "label": "Standaard" }, { - "label":"Tekstueel" + "label": "Tekstueel" } ], - "entity":"question", - "field":{ - "label":"Question type", - "description":"Library for this question." + "entity": "question", + "field": { + "label": "Question type", + "description": "Library for this question." } }, { - "label":"Interface texts in quiz", - "fields":[ + "label": "Interface texts in quiz", + "fields": [ { - "label":"Terugknop", - "default":"Previous question" + "label": "Terugknop", + "default": "Previous question" }, { - "label":"Next button", - "default":"Next question" + "label": "Next button", + "default": "Next question" }, { - "label":"Finish button", - "default":"Beëindigen" + "label": "Finish button", + "default": "Beëindigen" }, { - "label":"Tekst bij voortgang", - "description":"Text used if textual progress is selected.", - "default":"Question: @current of @total questions" + "label": "Tekst bij voortgang", + "description": "Text used if textual progress is selected.", + "default": "Question: @current of @total questions" }, { - "label":"Label for jumping to a certain question", - "description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.", - "default":"Question %d of %total" + "label": "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":"Vraag" + "label": "Copyright dialog question label", + "default": "Vraag" }, { - "label":"Readspeaker progress", - "description":"May use @current and @total question variables", - "default":"Question @current of @total" + "label": "Readspeaker progress", + "description": "May use @current and @total question variables", + "default": "Question @current of @total" }, { - "label":"Unanswered question text", - "default":"Unanswered" + "label": "Unanswered question text", + "default": "Unanswered" }, { - "label":"Answered question text", - "default":"Answered" + "label": "Answered question text", + "default": "Answered" }, { - "label":"Current question text", - "default":"Current question" + "label": "Current question text", + "default": "Current question" } ] }, { - "label":"Achteruit navigeren uitschakelen", - "description":"This option will only allow you to move forward in Question Set" + "label": "Achteruit navigeren uitschakelen", + "description": "This option will only allow you to move forward in Question Set" }, { - "label":"Randomize questions", - "description":"Vragen in willekeurige volgorde inschakelen." + "label": "Randomize questions", + "description": "Vragen in willekeurige volgorde inschakelen." }, { - "label":"Number of questions to be shown:", - "description":"Create a randomized batch of questions from the total." + "label": "Number of questions to be shown:", + "description": "Create a randomized batch of questions from the total." }, { - "label":"Quiz finished", - "fields":[ + "label": "Quiz finished", + "fields": [ { - "label":"Display results" + "label": "Display results" }, { - "label":"Display solution button" + "label": "Display solution button" }, { - "label":"No results message", - "description":"Text displayed on end page when \"Display results\" is disabled", - "default":"Finished" + "label": "No results message", + "description": "Text displayed on end page when \"Display results\" is disabled", + "default": "Finished" }, { - "label":"Feedback heading", - "default":"Your result:", - "description":"This heading will be displayed at the end of the quiz when the user has answered all questions." + "label": "Feedback heading", + "default": "Your result:", + "description": "This heading will be displayed at the end of the quiz when the user has answered all questions." }, { - "label":"Overall Feedback", - "fields":[ + "label": "Overall Feedback", + "fields": [ { - "widgets":[ - + "widgets": [ + { + "label": "Default" + } ], - "label":"Define custom feedback for any score range", - "description":"Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!", - "entity":"range", - "field":{ - "fields":[ + "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": "Score Range" }, + {}, { - - }, - { - "label":"Feedback for defined score range", - "placeholder":"Fill in the feedback" + "label": "Feedback for defined score range", + "placeholder": "Fill in the feedback" } ] } @@ -168,84 +167,88 @@ ] }, { - "label":"Old Feedback", - "fields":[ + "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": "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": "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": "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": "Failed comment", + "description": "This comment will be displayed after the score if the user has failed the quiz." } ] }, { - "label":"Solution button label", - "default":"Toon oplossing", - "description":"Text for the solution button." + "label": "Solution button label", + "default": "Toon oplossing", + "description": "Text for the solution button." }, { - "label":"Tekst van de Opnieuw proberen knop", - "default":"Opnieuw proberen", - "description":"Text for the retry button." + "label": "Tekst van de Opnieuw proberen knop", + "default": "Opnieuw proberen", + "description": "Text for the retry button." }, { - "label":"Finish button text", - "default":"Beëindigen" + "label": "Finish button text", + "default": "Beëindigen" }, { - "label":"Display video before quiz results" + "label": "Display video before quiz results" }, { - "label":"Enable skip video button" + "label": "Enable skip video button" }, { - "label":"Skip video button label", - "default":"Skip video" + "label": "Skip video button label", + "default": "Skip video" }, { - "label":"Passed video", - "description":"This video will be played if the user successfully passed the quiz." + "label": "Passed video", + "description": "This video will be played if the user successfully passed the quiz." }, { - "label":"Fail video", - "description":"This video will be played if the user failes the quiz." + "label": "Fail video", + "description": "This video will be played if the user failes the quiz." } ] }, { - "label":"Settings for \"Show solution\" and \"Retry\" buttons", - "fields":[ + "label": "Settings for \"Show solution\" and \"Retry\" buttons", + "fields": [ { - "label":"\"Toon oplossing\" knop instellen", - "description":"Deze optie bepaalt of de \"Toon oplossing\" knop voor alle vragen wordt getoond, uitgeschakeld of voor iedere vraag afzonderlijk wordt geconfigureerd.", - "options":[ + "label": "Show \"Check\" buttons", + "description": "This option determines if the \"Check\" button will be shown for all questions." + }, + { + "label": "\"Toon oplossing\" knop instellen", + "description": "Deze optie bepaalt of de \"Toon oplossing\" knop voor alle vragen wordt getoond, uitgeschakeld of voor iedere vraag afzonderlijk wordt geconfigureerd.", + "options": [ { - "label":"Ingeschakeld" + "label": "Ingeschakeld" }, { - "label":"Uitgeschakeld" + "label": "Uitgeschakeld" } ] }, { - "label":"\"Opnieuw proberen\" knop instellen", - "description":"Deze optie bepaalt of de \"Opnieuw proberen\" knop voor alle vragen wordt getoond, uitgeschakeld of voor iedere vraag afzonderlijk wordt geconfigureerd.", - "options":[ + "label": "\"Opnieuw proberen\" knop instellen", + "description": "Deze optie bepaalt of de \"Opnieuw proberen\" knop voor alle vragen wordt getoond, uitgeschakeld of voor iedere vraag afzonderlijk wordt geconfigureerd.", + "options": [ { - "label":"Ingeschakeld" + "label": "Ingeschakeld" }, { - "label":"Uitgeschakeld" + "label": "Uitgeschakeld" } ] } diff --git a/language/nn.json b/language/nn.json index 84f2a20..038840f 100644 --- a/language/nn.json +++ b/language/nn.json @@ -1,166 +1,165 @@ { - "semantics":[ + "semantics": [ { - "label":"Introduksjon", - "fields":[ + "label": "Introduksjon", + "fields": [ { - "label":"Vis introduksjon" + "label": "Vis introduksjon" }, { - "label":"Tittel", - "description":"Tittel for intoduksjonssiden." + "label": "Tittel", + "description": "Tittel for intoduksjonssiden." }, { - "label":"Introduksjonstekst", - "description":"Denne teksten vises før spørsmålssettet starter." + "label": "Introduksjonstekst", + "description": "Denne teksten vises før spørsmålssettet starter." }, { - "label":"Tekst til \"Start\" knappen", - "default":"Start" + "label": "Tekst til \"Start\" knappen", + "default": "Start" }, { - "label":"Bakgrunnsbilde", - "description":"Bakgrunnsbilde for introduksjonssiden" + "label": "Bakgrunnsbilde", + "description": "Bakgrunnsbilde for introduksjonssiden" } ] }, { - "label":"Bakgrunnsbilde", - "description":"Bakgrunnsbilde for spørsmålssettet(ikke obligatorisk)." + "label": "Bakgrunnsbilde", + "description": "Bakgrunnsbilde for spørsmålssettet(ikke obligatorisk)." }, { - "label":"Fremdriftsindikator", - "description":"Velg om fremdriften skal angis som prikker(få spørsmål) eller som tekst(mange spørsmål).", - "options":[ + "label": "Fremdriftsindikator", + "description": "Velg om fremdriften skal angis som prikker(få spørsmål) eller som tekst(mange spørsmål).", + "options": [ { - "label":"Tekstlig" + "label": "Tekstlig" }, { - "label":"Angi fremdrift med prikker" + "label": "Angi fremdrift med prikker" } - ], - "default":"dots" + ] }, { - "label":"Krav for å bestå", - "description":"Antall prosent riktig som kreves for å bestå spørsmålssettet." + "label": "Krav for å bestå", + "description": "Antall prosent riktig som kreves for å bestå spørsmålssettet." }, { - "label":"Spørsmål", - "widgets":[ + "label": "Spørsmål", + "widgets": [ { - "label":"Standard" + "label": "Standard" }, { - "label":"Tekstlig" + "label": "Tekstlig" } ], - "entity":"spørsmål", - "field":{ - "label":"Spørsmålstype", - "description":"Velg spørsmålstype for dette spørsmålet" + "entity": "spørsmål", + "field": { + "label": "Spørsmålstype", + "description": "Velg spørsmålstype for dette spørsmålet" } }, { - "label":"Ledetekster", - "fields":[ + "label": "Ledetekster", + "fields": [ { - "label":"Tilbakeknapp", - "default":"Førre" + "label": "Tilbakeknapp", + "default": "Førre" }, { - "label":"Neste-knappen", - "default":"Neste" + "label": "Neste-knappen", + "default": "Neste" }, { - "label":"Avslutt-knappen", - "default":"Bekreft" + "label": "Avslutt-knappen", + "default": "Bekreft" }, { - "label":"Fremgangstekst", - "description":"Tekst brukt hvis tekstlig angivelse av fremdrift er valgt. Variabler: @current og @total", - "default":"Deloppgåve @current av @total" + "label": "Fremgangstekst", + "description": "Tekst brukt hvis tekstlig angivelse av fremdrift er valgt. Variabler: @current og @total", + "default": "Deloppgåve @current av @total" }, { - "label":"Merkelapp ved hopping til spørsmål", - "description":"Du må bruke plassholderen '%d' istedenfor spørsmålsnummeret, og '%total' istedet for totalt antall spørsmål.", - "default":"Spørsmål %d av %total" + "label": "Merkelapp ved hopping til spørsmål", + "description": "Du må bruke plassholderen '%d' istedenfor spørsmålsnummeret, og '%total' istedet for totalt antall spørsmål.", + "default": "Spørsmål %d av %total" }, { - "label":"Opphavsrett spørsmål-etikett", - "default":"Spørsmål" + "label": "Opphavsrett spørsmål-etikett", + "default": "Spørsmål" }, { - "label":"Fremdriftstekst for hjelpemiddelteknologi", - "description":"Kan bruke @current og @total variabler", - "default":"Deloppgave @current av @total" + "label": "Fremdriftstekst for hjelpemiddelteknologi", + "description": "Kan bruke @current og @total variabler", + "default": "Deloppgave @current av @total" }, { - "label":"Ikke svart på spørsmål-tekst", - "default":"Ikke svart" + "label": "Ikke svart på spørsmål-tekst", + "default": "Ikke svart" }, { - "label":"Svart på spørsmål-tekst", - "default":"Svar avgitt" + "label": "Svart på spørsmål-tekst", + "default": "Svar avgitt" }, { - "label":"Aktivt spørsmål-tekst", - "default":"Aktivt spørsmål" + "label": "Aktivt spørsmål-tekst", + "default": "Aktivt spørsmål" } ] }, { - "label":"Slå av tilbakenavigering", - "description":"Slå på for å nekte å gå tilbake i Question Set" + "label": "Slå av tilbakenavigering", + "description": "Slå på for å nekte å gå tilbake i Question Set" }, { - "label":"Randomize questions", - "description":"Slå på for å vise de mulige svara i tilfeldig rekkefølge." + "label": "Randomize questions", + "description": "Slå på for å vise de mulige svara i tilfeldig rekkefølge." }, { - "label":"Number of questions to be shown:", - "description":"Create a randomized batch of questions from the total." + "label": "Number of questions to be shown:", + "description": "Create a randomized batch of questions from the total." }, { - "label":"Spørsmålssett avslutning", - "fields":[ + "label": "Spørsmålssett avslutning", + "fields": [ { - "label":"Vis resultat" + "label": "Vis resultat" }, { - "label":"Vis resultatknapp" + "label": "Vis resultatknapp" }, { - "label":"Melding når resultater ikke vises", - "description":"Teksten vises på avslutnings-siden når resultater ikke vises", - "default":"Ferdig" + "label": "Melding når resultater ikke vises", + "description": "Teksten vises på avslutnings-siden når resultater ikke vises", + "default": "Ferdig" }, { - "label":"Overskrift over tilbakemeldingar", - "default":"Resultat:", - "description":"Denne overskriften vises over tilbakemeldingane på slutten av spørsmålssettet." + "label": "Overskrift over tilbakemeldingar", + "default": "Resultat:", + "description": "Denne overskriften vises over tilbakemeldingane på slutten av spørsmålssettet." }, { - "label":"Bakgrunnsopasitet på flyttbare elementer", - "fields":[ + "label": "Bakgrunnsopasitet på flyttbare elementer", + "fields": [ { - "widgets":[ - + "widgets": [ + { + "label": "Default" + } ], - "label":"Define custom feedback for any score range", - "description":"Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!", - "entity":"range", - "field":{ - "fields":[ + "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": "Score Range" }, + {}, { - - }, - { - "label":"Feedback for defined score range", - "placeholder":"Fill in the feedback" + "label": "Feedback for defined score range", + "placeholder": "Fill in the feedback" } ] } @@ -168,88 +167,92 @@ ] }, { - "label":"Old Feedback", - "fields":[ + "label": "Old Feedback", + "fields": [ { - "label":"Tittel ved bestått", - "description":"Denne tittelen vises dersom brukeren har bestått spørsmålssettet." + "label": "Tittel ved bestått", + "description": "Denne tittelen vises dersom brukeren har bestått spørsmålssettet." }, { - "label":"Kommentar ved bestått", - "description":"Denne kommentaren vises dersom brukaren har bestått spørsmålssettet." + "label": "Kommentar ved bestått", + "description": "Denne kommentaren vises dersom brukaren har bestått spørsmålssettet." }, { - "label":"Tittel ved ikkje bestått", - "description":"Denne tittelen visast dersom brukaren ikkje har bestått spørsmålssettet." + "label": "Tittel ved ikkje bestått", + "description": "Denne tittelen visast dersom brukaren ikkje har bestått spørsmålssettet." }, { - "label":"Kommentar ved ikkje bestått", - "description":"Denne kommentaren vises dersom brukaren ikkje har bestått spørsmålssettet." + "label": "Kommentar ved ikkje bestått", + "description": "Denne kommentaren vises dersom brukaren ikkje har bestått spørsmålssettet." } ] }, { - "label":"Tekst til \"Fasit\" knapp", - "default":"Fasit", - "description":"Text for the solution button." + "label": "Tekst til \"Fasit\" knapp", + "default": "Fasit", + "description": "Text for the solution button." }, { - "label":"Tekst til \"Prøv igjen\" knapp", - "default":"Prøv igjen", - "description":"Text for the retry button." + "label": "Tekst til \"Prøv igjen\" knapp", + "default": "Prøv igjen", + "description": "Text for the retry button." }, { - "label":"Tekst til \"Avslutt\" knapp", - "default":"Bekreft" + "label": "Tekst til \"Avslutt\" knapp", + "default": "Bekreft" }, { - "label":"Vis video før resultata" + "label": "Vis video før resultata" }, { - "label":"Tillat å hoppe over video" + "label": "Tillat å hoppe over video" }, { - "label":"Tekst til \"Hopp over video\" knapp", - "default":"Hopp over" + "label": "Tekst til \"Hopp over video\" knapp", + "default": "Hopp over" }, { - "label":"Video ved bestått", - "description":"Denne videoen vil bli vist dersom brukaren består spørsmålssettet." + "label": "Video ved bestått", + "description": "Denne videoen vil bli vist dersom brukaren består spørsmålssettet." }, { - "label":"Video ved ikke bestått", - "description":"Denne videoen vil bli vist dersom brukaren ikkje består spørsmålssettet." + "label": "Video ved ikke bestått", + "description": "Denne videoen vil bli vist dersom brukaren ikkje består spørsmålssettet." } ] }, { - "label":"Innstillinger for «Fasit»- og «Prøv igjen»-knapp", - "fields":[ + "label": "Innstillinger for «Fasit»- og «Prøv igjen»-knapp", + "fields": [ { - "label":"Overstyr «Vis svar»-knapp", - "description":"Dette valget avgjør om «Vis svar»-knappen vil vises for alle spørsmål, skjules for alle eller konfigureres individuelt for hvert spørsmål.", - "options":[ + "label": "Vis \"Sjekk\"-knappar", + "description": "Dette valget avgjer om «Sjekk»-knappen vil visast for alle spørsmål." + }, + { + "label": "Overstyr «Vis svar»-knapp", + "description": "Dette valget avgjør om «Vis svar»-knappen vil vises for alle spørsmål, skjules for alle eller konfigureres individuelt for hvert spørsmål.", + "options": [ { - "label":"Aktivert" + "label": "Aktivert" }, { - "label":"Deaktivert" + "label": "Deaktivert" } ] }, { - "label":"Overstyr «Prøv igjen»-knapp", - "description":"Dette valget avgjør om «Prøv igjen»-knappen vil vises for alle spørsmål, skjules for alle eller konfigureres individuelt for hvert spørsmål.", - "options":[ + "label": "Overstyr «Prøv igjen»-knapp", + "description": "Dette valget avgjør om «Prøv igjen»-knappen vil vises for alle spørsmål, skjules for alle eller konfigureres individuelt for hvert spørsmål.", + "options": [ { - "label":"Aktivert" + "label": "Aktivert" }, { - "label":"Deaktivert" + "label": "Deaktivert" } ] } ] } ] -} \ No newline at end of file +} diff --git a/language/pl.json b/language/pl.json index c97b04e..5928587 100644 --- a/language/pl.json +++ b/language/pl.json @@ -1,166 +1,165 @@ { - "semantics":[ + "semantics": [ { - "label":"Quiz introduction", - "fields":[ + "label": "Quiz introduction", + "fields": [ { - "label":"Display introduction" + "label": "Display introduction" }, { - "label":"Title", - "description":"This title will be displayed above the introduction text." + "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": "Introduction text", + "description": "This text will be displayed before the quiz starts." }, { - "label":"Start button text", - "default":"Start Quiz" + "label": "Start button text", + "default": "Start Quiz" }, { - "label":"Background image", - "description":"An optional background image for the introduction." + "label": "Background image", + "description": "An optional background image for the introduction." } ] }, { - "label":"Background image", - "description":"An optional background image for the Question set." + "label": "Background image", + "description": "An optional background image for the Question set." }, { - "label":"Progress indicator", - "description":"Question set progress indicator style.", - "options":[ + "label": "Progress indicator", + "description": "Question set progress indicator style.", + "options": [ { - "label":"Textual" + "label": "Textual" }, { - "label":"Dots" + "label": "Dots" } - ], - "default":"dots" + ] }, { - "label":"Pass percentage", - "description":"Percentage of Total score required for passing the quiz." + "label": "Pass percentage", + "description": "Percentage of Total score required for passing the quiz." }, { - "label":"Questions", - "widgets":[ + "label": "Questions", + "widgets": [ { - "label":"Default" + "label": "Default" }, { - "label":"Textual" + "label": "Textual" } ], - "entity":"question", - "field":{ - "label":"Question type", - "description":"Library for this question." + "entity": "question", + "field": { + "label": "Question type", + "description": "Library for this question." } }, { - "label":"Interface texts in quiz", - "fields":[ + "label": "Interface texts in quiz", + "fields": [ { - "label":"Back button", - "default":"Previous question" + "label": "Back button", + "default": "Previous question" }, { - "label":"Next button", - "default":"Next question" + "label": "Next button", + "default": "Next question" }, { - "label":"Finish button", - "default":"Finish" + "label": "Finish button", + "default": "Finish" }, { - "label":"Progress text", - "description":"Text used if textual progress is selected.", - "default":"Question: @current of @total questions" + "label": "Progress text", + "description": "Text used if textual progress is selected.", + "default": "Question: @current of @total questions" }, { - "label":"Label for jumping to a certain question", - "description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.", - "default":"Question %d of %total" + "label": "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": "Copyright dialog question label", + "default": "Question" }, { - "label":"Readspeaker progress", - "description":"May use @current and @total question variables", - "default":"Question @current of @total" + "label": "Readspeaker progress", + "description": "May use @current and @total question variables", + "default": "Question @current of @total" }, { - "label":"Unanswered question text", - "default":"Unanswered" + "label": "Unanswered question text", + "default": "Unanswered" }, { - "label":"Answered question text", - "default":"Answered" + "label": "Answered question text", + "default": "Answered" }, { - "label":"Current question text", - "default":"Current question" + "label": "Current question text", + "default": "Current question" } ] }, { - "label":"Disable backwards navigation", - "description":"This option will only allow you to move forward in Question Set" + "label": "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": "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": "Number of questions to be shown:", + "description": "Create a randomized batch of questions from the total." }, { - "label":"Quiz finished", - "fields":[ + "label": "Quiz finished", + "fields": [ { - "label":"Display results" + "label": "Display results" }, { - "label":"Display solution button" + "label": "Display solution button" }, { - "label":"No results message", - "description":"Text displayed on end page when \"Display results\" is disabled", - "default":"Finished" + "label": "No results message", + "description": "Text displayed on end page when \"Display results\" is disabled", + "default": "Finished" }, { - "label":"Feedback heading", - "default":"Your result:", - "description":"This heading will be displayed at the end of the quiz when the user has answered all questions." + "label": "Feedback heading", + "default": "Your result:", + "description": "This heading will be displayed at the end of the quiz when the user has answered all questions." }, { - "label":"Overall Feedback", - "fields":[ + "label": "Overall Feedback", + "fields": [ { - "widgets":[ - + "widgets": [ + { + "label": "Default" + } ], - "label":"Define custom feedback for any score range", - "description":"Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!", - "entity":"range", - "field":{ - "fields":[ + "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": "Score Range" }, + {}, { - - }, - { - "label":"Feedback for defined score range", - "placeholder":"Fill in the feedback" + "label": "Feedback for defined score range", + "placeholder": "Fill in the feedback" } ] } @@ -168,84 +167,88 @@ ] }, { - "label":"Old Feedback", - "fields":[ + "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": "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": "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": "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": "Failed comment", + "description": "This comment will be displayed after the score if the user has failed the quiz." } ] }, { - "label":"Solution button label", - "default":"Show solution", - "description":"Text for the solution button." + "label": "Solution button label", + "default": "Show solution", + "description": "Text for the solution button." }, { - "label":"Retry button label", - "default":"Retry", - "description":"Text for the retry button." + "label": "Retry button label", + "default": "Retry", + "description": "Text for the retry button." }, { - "label":"Finish button text", - "default":"Finish" + "label": "Finish button text", + "default": "Finish" }, { - "label":"Display video before quiz results" + "label": "Display video before quiz results" }, { - "label":"Enable skip video button" + "label": "Enable skip video button" }, { - "label":"Skip video button label", - "default":"Skip video" + "label": "Skip video button label", + "default": "Skip video" }, { - "label":"Passed video", - "description":"This video will be played if the user successfully passed the quiz." + "label": "Passed video", + "description": "This video will be played if the user successfully passed the quiz." }, { - "label":"Fail video", - "description":"This video will be played if the user failes the quiz." + "label": "Fail video", + "description": "This video will be played if the user failes the quiz." } ] }, { - "label":"Settings for \"Show solution\" and \"Retry\" buttons", - "fields":[ + "label": "Settings for \"Show solution\" and \"Retry\" buttons", + "fields": [ { - "label":"Override \"Show Solution\" button", - "description":"This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.", - "options":[ + "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": "Enabled" }, { - "label":"Disabled" + "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": "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": "Enabled" }, { - "label":"Disabled" + "label": "Disabled" } ] } diff --git a/language/pt.json b/language/pt.json index c97b04e..5928587 100644 --- a/language/pt.json +++ b/language/pt.json @@ -1,166 +1,165 @@ { - "semantics":[ + "semantics": [ { - "label":"Quiz introduction", - "fields":[ + "label": "Quiz introduction", + "fields": [ { - "label":"Display introduction" + "label": "Display introduction" }, { - "label":"Title", - "description":"This title will be displayed above the introduction text." + "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": "Introduction text", + "description": "This text will be displayed before the quiz starts." }, { - "label":"Start button text", - "default":"Start Quiz" + "label": "Start button text", + "default": "Start Quiz" }, { - "label":"Background image", - "description":"An optional background image for the introduction." + "label": "Background image", + "description": "An optional background image for the introduction." } ] }, { - "label":"Background image", - "description":"An optional background image for the Question set." + "label": "Background image", + "description": "An optional background image for the Question set." }, { - "label":"Progress indicator", - "description":"Question set progress indicator style.", - "options":[ + "label": "Progress indicator", + "description": "Question set progress indicator style.", + "options": [ { - "label":"Textual" + "label": "Textual" }, { - "label":"Dots" + "label": "Dots" } - ], - "default":"dots" + ] }, { - "label":"Pass percentage", - "description":"Percentage of Total score required for passing the quiz." + "label": "Pass percentage", + "description": "Percentage of Total score required for passing the quiz." }, { - "label":"Questions", - "widgets":[ + "label": "Questions", + "widgets": [ { - "label":"Default" + "label": "Default" }, { - "label":"Textual" + "label": "Textual" } ], - "entity":"question", - "field":{ - "label":"Question type", - "description":"Library for this question." + "entity": "question", + "field": { + "label": "Question type", + "description": "Library for this question." } }, { - "label":"Interface texts in quiz", - "fields":[ + "label": "Interface texts in quiz", + "fields": [ { - "label":"Back button", - "default":"Previous question" + "label": "Back button", + "default": "Previous question" }, { - "label":"Next button", - "default":"Next question" + "label": "Next button", + "default": "Next question" }, { - "label":"Finish button", - "default":"Finish" + "label": "Finish button", + "default": "Finish" }, { - "label":"Progress text", - "description":"Text used if textual progress is selected.", - "default":"Question: @current of @total questions" + "label": "Progress text", + "description": "Text used if textual progress is selected.", + "default": "Question: @current of @total questions" }, { - "label":"Label for jumping to a certain question", - "description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.", - "default":"Question %d of %total" + "label": "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": "Copyright dialog question label", + "default": "Question" }, { - "label":"Readspeaker progress", - "description":"May use @current and @total question variables", - "default":"Question @current of @total" + "label": "Readspeaker progress", + "description": "May use @current and @total question variables", + "default": "Question @current of @total" }, { - "label":"Unanswered question text", - "default":"Unanswered" + "label": "Unanswered question text", + "default": "Unanswered" }, { - "label":"Answered question text", - "default":"Answered" + "label": "Answered question text", + "default": "Answered" }, { - "label":"Current question text", - "default":"Current question" + "label": "Current question text", + "default": "Current question" } ] }, { - "label":"Disable backwards navigation", - "description":"This option will only allow you to move forward in Question Set" + "label": "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": "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": "Number of questions to be shown:", + "description": "Create a randomized batch of questions from the total." }, { - "label":"Quiz finished", - "fields":[ + "label": "Quiz finished", + "fields": [ { - "label":"Display results" + "label": "Display results" }, { - "label":"Display solution button" + "label": "Display solution button" }, { - "label":"No results message", - "description":"Text displayed on end page when \"Display results\" is disabled", - "default":"Finished" + "label": "No results message", + "description": "Text displayed on end page when \"Display results\" is disabled", + "default": "Finished" }, { - "label":"Feedback heading", - "default":"Your result:", - "description":"This heading will be displayed at the end of the quiz when the user has answered all questions." + "label": "Feedback heading", + "default": "Your result:", + "description": "This heading will be displayed at the end of the quiz when the user has answered all questions." }, { - "label":"Overall Feedback", - "fields":[ + "label": "Overall Feedback", + "fields": [ { - "widgets":[ - + "widgets": [ + { + "label": "Default" + } ], - "label":"Define custom feedback for any score range", - "description":"Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!", - "entity":"range", - "field":{ - "fields":[ + "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": "Score Range" }, + {}, { - - }, - { - "label":"Feedback for defined score range", - "placeholder":"Fill in the feedback" + "label": "Feedback for defined score range", + "placeholder": "Fill in the feedback" } ] } @@ -168,84 +167,88 @@ ] }, { - "label":"Old Feedback", - "fields":[ + "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": "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": "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": "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": "Failed comment", + "description": "This comment will be displayed after the score if the user has failed the quiz." } ] }, { - "label":"Solution button label", - "default":"Show solution", - "description":"Text for the solution button." + "label": "Solution button label", + "default": "Show solution", + "description": "Text for the solution button." }, { - "label":"Retry button label", - "default":"Retry", - "description":"Text for the retry button." + "label": "Retry button label", + "default": "Retry", + "description": "Text for the retry button." }, { - "label":"Finish button text", - "default":"Finish" + "label": "Finish button text", + "default": "Finish" }, { - "label":"Display video before quiz results" + "label": "Display video before quiz results" }, { - "label":"Enable skip video button" + "label": "Enable skip video button" }, { - "label":"Skip video button label", - "default":"Skip video" + "label": "Skip video button label", + "default": "Skip video" }, { - "label":"Passed video", - "description":"This video will be played if the user successfully passed the quiz." + "label": "Passed video", + "description": "This video will be played if the user successfully passed the quiz." }, { - "label":"Fail video", - "description":"This video will be played if the user failes the quiz." + "label": "Fail video", + "description": "This video will be played if the user failes the quiz." } ] }, { - "label":"Settings for \"Show solution\" and \"Retry\" buttons", - "fields":[ + "label": "Settings for \"Show solution\" and \"Retry\" buttons", + "fields": [ { - "label":"Override \"Show Solution\" button", - "description":"This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.", - "options":[ + "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": "Enabled" }, { - "label":"Disabled" + "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": "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": "Enabled" }, { - "label":"Disabled" + "label": "Disabled" } ] } diff --git a/language/ro.json b/language/ro.json index c97b04e..5928587 100644 --- a/language/ro.json +++ b/language/ro.json @@ -1,166 +1,165 @@ { - "semantics":[ + "semantics": [ { - "label":"Quiz introduction", - "fields":[ + "label": "Quiz introduction", + "fields": [ { - "label":"Display introduction" + "label": "Display introduction" }, { - "label":"Title", - "description":"This title will be displayed above the introduction text." + "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": "Introduction text", + "description": "This text will be displayed before the quiz starts." }, { - "label":"Start button text", - "default":"Start Quiz" + "label": "Start button text", + "default": "Start Quiz" }, { - "label":"Background image", - "description":"An optional background image for the introduction." + "label": "Background image", + "description": "An optional background image for the introduction." } ] }, { - "label":"Background image", - "description":"An optional background image for the Question set." + "label": "Background image", + "description": "An optional background image for the Question set." }, { - "label":"Progress indicator", - "description":"Question set progress indicator style.", - "options":[ + "label": "Progress indicator", + "description": "Question set progress indicator style.", + "options": [ { - "label":"Textual" + "label": "Textual" }, { - "label":"Dots" + "label": "Dots" } - ], - "default":"dots" + ] }, { - "label":"Pass percentage", - "description":"Percentage of Total score required for passing the quiz." + "label": "Pass percentage", + "description": "Percentage of Total score required for passing the quiz." }, { - "label":"Questions", - "widgets":[ + "label": "Questions", + "widgets": [ { - "label":"Default" + "label": "Default" }, { - "label":"Textual" + "label": "Textual" } ], - "entity":"question", - "field":{ - "label":"Question type", - "description":"Library for this question." + "entity": "question", + "field": { + "label": "Question type", + "description": "Library for this question." } }, { - "label":"Interface texts in quiz", - "fields":[ + "label": "Interface texts in quiz", + "fields": [ { - "label":"Back button", - "default":"Previous question" + "label": "Back button", + "default": "Previous question" }, { - "label":"Next button", - "default":"Next question" + "label": "Next button", + "default": "Next question" }, { - "label":"Finish button", - "default":"Finish" + "label": "Finish button", + "default": "Finish" }, { - "label":"Progress text", - "description":"Text used if textual progress is selected.", - "default":"Question: @current of @total questions" + "label": "Progress text", + "description": "Text used if textual progress is selected.", + "default": "Question: @current of @total questions" }, { - "label":"Label for jumping to a certain question", - "description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.", - "default":"Question %d of %total" + "label": "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": "Copyright dialog question label", + "default": "Question" }, { - "label":"Readspeaker progress", - "description":"May use @current and @total question variables", - "default":"Question @current of @total" + "label": "Readspeaker progress", + "description": "May use @current and @total question variables", + "default": "Question @current of @total" }, { - "label":"Unanswered question text", - "default":"Unanswered" + "label": "Unanswered question text", + "default": "Unanswered" }, { - "label":"Answered question text", - "default":"Answered" + "label": "Answered question text", + "default": "Answered" }, { - "label":"Current question text", - "default":"Current question" + "label": "Current question text", + "default": "Current question" } ] }, { - "label":"Disable backwards navigation", - "description":"This option will only allow you to move forward in Question Set" + "label": "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": "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": "Number of questions to be shown:", + "description": "Create a randomized batch of questions from the total." }, { - "label":"Quiz finished", - "fields":[ + "label": "Quiz finished", + "fields": [ { - "label":"Display results" + "label": "Display results" }, { - "label":"Display solution button" + "label": "Display solution button" }, { - "label":"No results message", - "description":"Text displayed on end page when \"Display results\" is disabled", - "default":"Finished" + "label": "No results message", + "description": "Text displayed on end page when \"Display results\" is disabled", + "default": "Finished" }, { - "label":"Feedback heading", - "default":"Your result:", - "description":"This heading will be displayed at the end of the quiz when the user has answered all questions." + "label": "Feedback heading", + "default": "Your result:", + "description": "This heading will be displayed at the end of the quiz when the user has answered all questions." }, { - "label":"Overall Feedback", - "fields":[ + "label": "Overall Feedback", + "fields": [ { - "widgets":[ - + "widgets": [ + { + "label": "Default" + } ], - "label":"Define custom feedback for any score range", - "description":"Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!", - "entity":"range", - "field":{ - "fields":[ + "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": "Score Range" }, + {}, { - - }, - { - "label":"Feedback for defined score range", - "placeholder":"Fill in the feedback" + "label": "Feedback for defined score range", + "placeholder": "Fill in the feedback" } ] } @@ -168,84 +167,88 @@ ] }, { - "label":"Old Feedback", - "fields":[ + "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": "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": "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": "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": "Failed comment", + "description": "This comment will be displayed after the score if the user has failed the quiz." } ] }, { - "label":"Solution button label", - "default":"Show solution", - "description":"Text for the solution button." + "label": "Solution button label", + "default": "Show solution", + "description": "Text for the solution button." }, { - "label":"Retry button label", - "default":"Retry", - "description":"Text for the retry button." + "label": "Retry button label", + "default": "Retry", + "description": "Text for the retry button." }, { - "label":"Finish button text", - "default":"Finish" + "label": "Finish button text", + "default": "Finish" }, { - "label":"Display video before quiz results" + "label": "Display video before quiz results" }, { - "label":"Enable skip video button" + "label": "Enable skip video button" }, { - "label":"Skip video button label", - "default":"Skip video" + "label": "Skip video button label", + "default": "Skip video" }, { - "label":"Passed video", - "description":"This video will be played if the user successfully passed the quiz." + "label": "Passed video", + "description": "This video will be played if the user successfully passed the quiz." }, { - "label":"Fail video", - "description":"This video will be played if the user failes the quiz." + "label": "Fail video", + "description": "This video will be played if the user failes the quiz." } ] }, { - "label":"Settings for \"Show solution\" and \"Retry\" buttons", - "fields":[ + "label": "Settings for \"Show solution\" and \"Retry\" buttons", + "fields": [ { - "label":"Override \"Show Solution\" button", - "description":"This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.", - "options":[ + "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": "Enabled" }, { - "label":"Disabled" + "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": "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": "Enabled" }, { - "label":"Disabled" + "label": "Disabled" } ] } diff --git a/language/ru.json b/language/ru.json index c97b04e..5928587 100644 --- a/language/ru.json +++ b/language/ru.json @@ -1,166 +1,165 @@ { - "semantics":[ + "semantics": [ { - "label":"Quiz introduction", - "fields":[ + "label": "Quiz introduction", + "fields": [ { - "label":"Display introduction" + "label": "Display introduction" }, { - "label":"Title", - "description":"This title will be displayed above the introduction text." + "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": "Introduction text", + "description": "This text will be displayed before the quiz starts." }, { - "label":"Start button text", - "default":"Start Quiz" + "label": "Start button text", + "default": "Start Quiz" }, { - "label":"Background image", - "description":"An optional background image for the introduction." + "label": "Background image", + "description": "An optional background image for the introduction." } ] }, { - "label":"Background image", - "description":"An optional background image for the Question set." + "label": "Background image", + "description": "An optional background image for the Question set." }, { - "label":"Progress indicator", - "description":"Question set progress indicator style.", - "options":[ + "label": "Progress indicator", + "description": "Question set progress indicator style.", + "options": [ { - "label":"Textual" + "label": "Textual" }, { - "label":"Dots" + "label": "Dots" } - ], - "default":"dots" + ] }, { - "label":"Pass percentage", - "description":"Percentage of Total score required for passing the quiz." + "label": "Pass percentage", + "description": "Percentage of Total score required for passing the quiz." }, { - "label":"Questions", - "widgets":[ + "label": "Questions", + "widgets": [ { - "label":"Default" + "label": "Default" }, { - "label":"Textual" + "label": "Textual" } ], - "entity":"question", - "field":{ - "label":"Question type", - "description":"Library for this question." + "entity": "question", + "field": { + "label": "Question type", + "description": "Library for this question." } }, { - "label":"Interface texts in quiz", - "fields":[ + "label": "Interface texts in quiz", + "fields": [ { - "label":"Back button", - "default":"Previous question" + "label": "Back button", + "default": "Previous question" }, { - "label":"Next button", - "default":"Next question" + "label": "Next button", + "default": "Next question" }, { - "label":"Finish button", - "default":"Finish" + "label": "Finish button", + "default": "Finish" }, { - "label":"Progress text", - "description":"Text used if textual progress is selected.", - "default":"Question: @current of @total questions" + "label": "Progress text", + "description": "Text used if textual progress is selected.", + "default": "Question: @current of @total questions" }, { - "label":"Label for jumping to a certain question", - "description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.", - "default":"Question %d of %total" + "label": "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": "Copyright dialog question label", + "default": "Question" }, { - "label":"Readspeaker progress", - "description":"May use @current and @total question variables", - "default":"Question @current of @total" + "label": "Readspeaker progress", + "description": "May use @current and @total question variables", + "default": "Question @current of @total" }, { - "label":"Unanswered question text", - "default":"Unanswered" + "label": "Unanswered question text", + "default": "Unanswered" }, { - "label":"Answered question text", - "default":"Answered" + "label": "Answered question text", + "default": "Answered" }, { - "label":"Current question text", - "default":"Current question" + "label": "Current question text", + "default": "Current question" } ] }, { - "label":"Disable backwards navigation", - "description":"This option will only allow you to move forward in Question Set" + "label": "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": "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": "Number of questions to be shown:", + "description": "Create a randomized batch of questions from the total." }, { - "label":"Quiz finished", - "fields":[ + "label": "Quiz finished", + "fields": [ { - "label":"Display results" + "label": "Display results" }, { - "label":"Display solution button" + "label": "Display solution button" }, { - "label":"No results message", - "description":"Text displayed on end page when \"Display results\" is disabled", - "default":"Finished" + "label": "No results message", + "description": "Text displayed on end page when \"Display results\" is disabled", + "default": "Finished" }, { - "label":"Feedback heading", - "default":"Your result:", - "description":"This heading will be displayed at the end of the quiz when the user has answered all questions." + "label": "Feedback heading", + "default": "Your result:", + "description": "This heading will be displayed at the end of the quiz when the user has answered all questions." }, { - "label":"Overall Feedback", - "fields":[ + "label": "Overall Feedback", + "fields": [ { - "widgets":[ - + "widgets": [ + { + "label": "Default" + } ], - "label":"Define custom feedback for any score range", - "description":"Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!", - "entity":"range", - "field":{ - "fields":[ + "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": "Score Range" }, + {}, { - - }, - { - "label":"Feedback for defined score range", - "placeholder":"Fill in the feedback" + "label": "Feedback for defined score range", + "placeholder": "Fill in the feedback" } ] } @@ -168,84 +167,88 @@ ] }, { - "label":"Old Feedback", - "fields":[ + "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": "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": "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": "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": "Failed comment", + "description": "This comment will be displayed after the score if the user has failed the quiz." } ] }, { - "label":"Solution button label", - "default":"Show solution", - "description":"Text for the solution button." + "label": "Solution button label", + "default": "Show solution", + "description": "Text for the solution button." }, { - "label":"Retry button label", - "default":"Retry", - "description":"Text for the retry button." + "label": "Retry button label", + "default": "Retry", + "description": "Text for the retry button." }, { - "label":"Finish button text", - "default":"Finish" + "label": "Finish button text", + "default": "Finish" }, { - "label":"Display video before quiz results" + "label": "Display video before quiz results" }, { - "label":"Enable skip video button" + "label": "Enable skip video button" }, { - "label":"Skip video button label", - "default":"Skip video" + "label": "Skip video button label", + "default": "Skip video" }, { - "label":"Passed video", - "description":"This video will be played if the user successfully passed the quiz." + "label": "Passed video", + "description": "This video will be played if the user successfully passed the quiz." }, { - "label":"Fail video", - "description":"This video will be played if the user failes the quiz." + "label": "Fail video", + "description": "This video will be played if the user failes the quiz." } ] }, { - "label":"Settings for \"Show solution\" and \"Retry\" buttons", - "fields":[ + "label": "Settings for \"Show solution\" and \"Retry\" buttons", + "fields": [ { - "label":"Override \"Show Solution\" button", - "description":"This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.", - "options":[ + "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": "Enabled" }, { - "label":"Disabled" + "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": "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": "Enabled" }, { - "label":"Disabled" + "label": "Disabled" } ] } diff --git a/language/sr.json b/language/sr.json index c97b04e..5928587 100644 --- a/language/sr.json +++ b/language/sr.json @@ -1,166 +1,165 @@ { - "semantics":[ + "semantics": [ { - "label":"Quiz introduction", - "fields":[ + "label": "Quiz introduction", + "fields": [ { - "label":"Display introduction" + "label": "Display introduction" }, { - "label":"Title", - "description":"This title will be displayed above the introduction text." + "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": "Introduction text", + "description": "This text will be displayed before the quiz starts." }, { - "label":"Start button text", - "default":"Start Quiz" + "label": "Start button text", + "default": "Start Quiz" }, { - "label":"Background image", - "description":"An optional background image for the introduction." + "label": "Background image", + "description": "An optional background image for the introduction." } ] }, { - "label":"Background image", - "description":"An optional background image for the Question set." + "label": "Background image", + "description": "An optional background image for the Question set." }, { - "label":"Progress indicator", - "description":"Question set progress indicator style.", - "options":[ + "label": "Progress indicator", + "description": "Question set progress indicator style.", + "options": [ { - "label":"Textual" + "label": "Textual" }, { - "label":"Dots" + "label": "Dots" } - ], - "default":"dots" + ] }, { - "label":"Pass percentage", - "description":"Percentage of Total score required for passing the quiz." + "label": "Pass percentage", + "description": "Percentage of Total score required for passing the quiz." }, { - "label":"Questions", - "widgets":[ + "label": "Questions", + "widgets": [ { - "label":"Default" + "label": "Default" }, { - "label":"Textual" + "label": "Textual" } ], - "entity":"question", - "field":{ - "label":"Question type", - "description":"Library for this question." + "entity": "question", + "field": { + "label": "Question type", + "description": "Library for this question." } }, { - "label":"Interface texts in quiz", - "fields":[ + "label": "Interface texts in quiz", + "fields": [ { - "label":"Back button", - "default":"Previous question" + "label": "Back button", + "default": "Previous question" }, { - "label":"Next button", - "default":"Next question" + "label": "Next button", + "default": "Next question" }, { - "label":"Finish button", - "default":"Finish" + "label": "Finish button", + "default": "Finish" }, { - "label":"Progress text", - "description":"Text used if textual progress is selected.", - "default":"Question: @current of @total questions" + "label": "Progress text", + "description": "Text used if textual progress is selected.", + "default": "Question: @current of @total questions" }, { - "label":"Label for jumping to a certain question", - "description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.", - "default":"Question %d of %total" + "label": "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": "Copyright dialog question label", + "default": "Question" }, { - "label":"Readspeaker progress", - "description":"May use @current and @total question variables", - "default":"Question @current of @total" + "label": "Readspeaker progress", + "description": "May use @current and @total question variables", + "default": "Question @current of @total" }, { - "label":"Unanswered question text", - "default":"Unanswered" + "label": "Unanswered question text", + "default": "Unanswered" }, { - "label":"Answered question text", - "default":"Answered" + "label": "Answered question text", + "default": "Answered" }, { - "label":"Current question text", - "default":"Current question" + "label": "Current question text", + "default": "Current question" } ] }, { - "label":"Disable backwards navigation", - "description":"This option will only allow you to move forward in Question Set" + "label": "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": "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": "Number of questions to be shown:", + "description": "Create a randomized batch of questions from the total." }, { - "label":"Quiz finished", - "fields":[ + "label": "Quiz finished", + "fields": [ { - "label":"Display results" + "label": "Display results" }, { - "label":"Display solution button" + "label": "Display solution button" }, { - "label":"No results message", - "description":"Text displayed on end page when \"Display results\" is disabled", - "default":"Finished" + "label": "No results message", + "description": "Text displayed on end page when \"Display results\" is disabled", + "default": "Finished" }, { - "label":"Feedback heading", - "default":"Your result:", - "description":"This heading will be displayed at the end of the quiz when the user has answered all questions." + "label": "Feedback heading", + "default": "Your result:", + "description": "This heading will be displayed at the end of the quiz when the user has answered all questions." }, { - "label":"Overall Feedback", - "fields":[ + "label": "Overall Feedback", + "fields": [ { - "widgets":[ - + "widgets": [ + { + "label": "Default" + } ], - "label":"Define custom feedback for any score range", - "description":"Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!", - "entity":"range", - "field":{ - "fields":[ + "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": "Score Range" }, + {}, { - - }, - { - "label":"Feedback for defined score range", - "placeholder":"Fill in the feedback" + "label": "Feedback for defined score range", + "placeholder": "Fill in the feedback" } ] } @@ -168,84 +167,88 @@ ] }, { - "label":"Old Feedback", - "fields":[ + "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": "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": "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": "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": "Failed comment", + "description": "This comment will be displayed after the score if the user has failed the quiz." } ] }, { - "label":"Solution button label", - "default":"Show solution", - "description":"Text for the solution button." + "label": "Solution button label", + "default": "Show solution", + "description": "Text for the solution button." }, { - "label":"Retry button label", - "default":"Retry", - "description":"Text for the retry button." + "label": "Retry button label", + "default": "Retry", + "description": "Text for the retry button." }, { - "label":"Finish button text", - "default":"Finish" + "label": "Finish button text", + "default": "Finish" }, { - "label":"Display video before quiz results" + "label": "Display video before quiz results" }, { - "label":"Enable skip video button" + "label": "Enable skip video button" }, { - "label":"Skip video button label", - "default":"Skip video" + "label": "Skip video button label", + "default": "Skip video" }, { - "label":"Passed video", - "description":"This video will be played if the user successfully passed the quiz." + "label": "Passed video", + "description": "This video will be played if the user successfully passed the quiz." }, { - "label":"Fail video", - "description":"This video will be played if the user failes the quiz." + "label": "Fail video", + "description": "This video will be played if the user failes the quiz." } ] }, { - "label":"Settings for \"Show solution\" and \"Retry\" buttons", - "fields":[ + "label": "Settings for \"Show solution\" and \"Retry\" buttons", + "fields": [ { - "label":"Override \"Show Solution\" button", - "description":"This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.", - "options":[ + "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": "Enabled" }, { - "label":"Disabled" + "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": "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": "Enabled" }, { - "label":"Disabled" + "label": "Disabled" } ] } diff --git a/language/sv.json b/language/sv.json index 74e8943..2643363 100644 --- a/language/sv.json +++ b/language/sv.json @@ -1,166 +1,165 @@ { - "semantics":[ + "semantics": [ { - "label":"Quiz introduction", - "fields":[ + "label": "Quiz introduction", + "fields": [ { - "label":"Display introduction" + "label": "Display introduction" }, { - "label":"Title", - "description":"This title will be displayed above the introduction text." + "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": "Introduction text", + "description": "This text will be displayed before the quiz starts." }, { - "label":"Start button text", - "default":"Start Quiz" + "label": "Start button text", + "default": "Start Quiz" }, { - "label":"Background image", - "description":"An optional background image for the introduction." + "label": "Background image", + "description": "An optional background image for the introduction." } ] }, { - "label":"Background image", - "description":"An optional background image for the Question set." + "label": "Background image", + "description": "An optional background image for the Question set." }, { - "label":"Progress indicator", - "description":"Question set progress indicator style.", - "options":[ + "label": "Progress indicator", + "description": "Question set progress indicator style.", + "options": [ { - "label":"Textual" + "label": "Textual" }, { - "label":"Dots" + "label": "Dots" } - ], - "default":"dots" + ] }, { - "label":"Pass percentage", - "description":"Percentage of Total score required for passing the quiz." + "label": "Pass percentage", + "description": "Percentage of Total score required for passing the quiz." }, { - "label":"Questions", - "widgets":[ + "label": "Questions", + "widgets": [ { - "label":"Default" + "label": "Default" }, { - "label":"Textual" + "label": "Textual" } ], - "entity":"question", - "field":{ - "label":"Question type", - "description":"Library for this question." + "entity": "question", + "field": { + "label": "Question type", + "description": "Library for this question." } }, { - "label":"Interface texts in quiz", - "fields":[ + "label": "Interface texts in quiz", + "fields": [ { - "label":"Back button", - "default":"Previous question" + "label": "Back button", + "default": "Previous question" }, { - "label":"Next button", - "default":"Next question" + "label": "Next button", + "default": "Next question" }, { - "label":"Finish button", - "default":"Finish" + "label": "Finish button", + "default": "Finish" }, { - "label":"Progress text", - "description":"Text used if textual progress is selected.", - "default":"Question: @current of @total questions" + "label": "Progress text", + "description": "Text used if textual progress is selected.", + "default": "Question: @current of @total questions" }, { - "label":"Label for jumping to a certain question", - "description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.", - "default":"Question %d of %total" + "label": "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": "Copyright dialog question label", + "default": "Question" }, { - "label":"Readspeaker progress", - "description":"May use @current and @total question variables", - "default":"Question @current of @total" + "label": "Readspeaker progress", + "description": "May use @current and @total question variables", + "default": "Question @current of @total" }, { - "label":"Unanswered question text", - "default":"Unanswered" + "label": "Unanswered question text", + "default": "Unanswered" }, { - "label":"Answered question text", - "default":"Answered" + "label": "Answered question text", + "default": "Answered" }, { - "label":"Current question text", - "default":"Current question" + "label": "Current question text", + "default": "Current question" } ] }, { - "label":"Disable backwards navigation", - "description":"This option will only allow you to move forward in Question Set" + "label": "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": "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": "Number of questions to be shown:", + "description": "Create a randomized batch of questions from the total." }, { - "label":"Quiz finished", - "fields":[ + "label": "Quiz finished", + "fields": [ { - "label":"Display results" + "label": "Display results" }, { - "label":"Display solution button" + "label": "Display solution button" }, { - "label":"No results message", - "description":"Text displayed on end page when \"Display results\" is disabled", - "default":"Finished" + "label": "No results message", + "description": "Text displayed on end page when \"Display results\" is disabled", + "default": "Finished" }, { - "label":"Feedback heading", - "default":"Your result:", - "description":"This heading will be displayed at the end of the quiz when the user has answered all questions." + "label": "Feedback heading", + "default": "Your result:", + "description": "This heading will be displayed at the end of the quiz when the user has answered all questions." }, { - "label":"Overall Feedback", - "fields":[ + "label": "Overall Feedback", + "fields": [ { - "widgets":[ - + "widgets": [ + { + "label": "Default" + } ], - "label":"Define custom feedback for any score range", - "description":"Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!", - "entity":"range", - "field":{ - "fields":[ + "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": "Score Range" }, + {}, { - - }, - { - "label":"Feedback for defined score range", - "placeholder":"Fill in the feedback" + "label": "Feedback for defined score range", + "placeholder": "Fill in the feedback" } ] } @@ -168,84 +167,88 @@ ] }, { - "label":"Old Feedback", - "fields":[ + "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": "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": "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": "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": "Failed comment", + "description": "This comment will be displayed after the score if the user has failed the quiz." } ] }, { - "label":"Solution button label", - "default":"Show solution", - "description":"Text for the solution button." + "label": "Solution button label", + "default": "Show solution", + "description": "Text for the solution button." }, { - "label":"Retry button label", - "default":"Försök på nytt", - "description":"Text for the retry button." + "label": "Retry button label", + "default": "Försök på nytt", + "description": "Text for the retry button." }, { - "label":"Finish button text", - "default":"Finish" + "label": "Finish button text", + "default": "Finish" }, { - "label":"Display video before quiz results" + "label": "Display video before quiz results" }, { - "label":"Enable skip video button" + "label": "Enable skip video button" }, { - "label":"Skip video button label", - "default":"Skip video" + "label": "Skip video button label", + "default": "Skip video" }, { - "label":"Passed video", - "description":"This video will be played if the user successfully passed the quiz." + "label": "Passed video", + "description": "This video will be played if the user successfully passed the quiz." }, { - "label":"Fail video", - "description":"This video will be played if the user failes the quiz." + "label": "Fail video", + "description": "This video will be played if the user failes the quiz." } ] }, { - "label":"Settings for \"Show solution\" and \"Retry\" buttons", - "fields":[ + "label": "Settings for \"Show solution\" and \"Retry\" buttons", + "fields": [ { - "label":"Override \"Show Solution\" button", - "description":"This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.", - "options":[ + "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": "Enabled" }, { - "label":"Disabled" + "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": "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": "Enabled" }, { - "label":"Disabled" + "label": "Disabled" } ] } diff --git a/language/tr.json b/language/tr.json index 77ae1a1..a981a2f 100644 --- a/language/tr.json +++ b/language/tr.json @@ -1,166 +1,165 @@ { - "semantics":[ + "semantics": [ { - "label":"Quiz introduction", - "fields":[ + "label": "Quiz introduction", + "fields": [ { - "label":"Display introduction" + "label": "Display introduction" }, { - "label":"Title", - "description":"This title will be displayed above the introduction text." + "label": "Title", + "description": "This title will be displayed above the introduction text." }, { - "label":"Giriş metni", - "description":"This text will be displayed before the quiz starts." + "label": "Giriş metni", + "description": "This text will be displayed before the quiz starts." }, { - "label":"Start button text", - "default":"Start Quiz" + "label": "Start button text", + "default": "Start Quiz" }, { - "label":"Background image", - "description":"An optional background image for the introduction." + "label": "Background image", + "description": "An optional background image for the introduction." } ] }, { - "label":"Background image", - "description":"An optional background image for the Question set." + "label": "Background image", + "description": "An optional background image for the Question set." }, { - "label":"Progress indicator", - "description":"Question set progress indicator style.", - "options":[ + "label": "Progress indicator", + "description": "Question set progress indicator style.", + "options": [ { - "label":"Metin" + "label": "Metin" }, { - "label":"Dots" + "label": "Dots" } - ], - "default":"dots" + ] }, { - "label":"Geçiş yüzdesi", - "description":"Quizi geçmek için gerekli toplam puan yüzdesi." + "label": "Geçiş yüzdesi", + "description": "Quizi geçmek için gerekli toplam puan yüzdesi." }, { - "label":"Questions", - "widgets":[ + "label": "Questions", + "widgets": [ { - "label":"Varsayılan" + "label": "Varsayılan" }, { - "label":"Metin" + "label": "Metin" } ], - "entity":"question", - "field":{ - "label":"Question type", - "description":"Library for this question." + "entity": "question", + "field": { + "label": "Question type", + "description": "Library for this question." } }, { - "label":"Interface texts in quiz", - "fields":[ + "label": "Interface texts in quiz", + "fields": [ { - "label":"Back button", - "default":"Previous question" + "label": "Back button", + "default": "Previous question" }, { - "label":"Next button", - "default":"Next question" + "label": "Next button", + "default": "Next question" }, { - "label":"Finish button", - "default":"Bitir" + "label": "Finish button", + "default": "Bitir" }, { - "label":"Progress text", - "description":"Text used if textual progress is selected.", - "default":"Question: @current of @total questions" + "label": "Progress text", + "description": "Text used if textual progress is selected.", + "default": "Question: @current of @total questions" }, { - "label":"Label for jumping to a certain question", - "description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.", - "default":"Question %d of %total" + "label": "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":"Soru" + "label": "Copyright dialog question label", + "default": "Soru" }, { - "label":"Readspeaker progress", - "description":"May use @current and @total question variables", - "default":"Question @current of @total" + "label": "Readspeaker progress", + "description": "May use @current and @total question variables", + "default": "Question @current of @total" }, { - "label":"Unanswered question text", - "default":"Unanswered" + "label": "Unanswered question text", + "default": "Unanswered" }, { - "label":"Answered question text", - "default":"Answered" + "label": "Answered question text", + "default": "Answered" }, { - "label":"Current question text", - "default":"Current question" + "label": "Current question text", + "default": "Current question" } ] }, { - "label":"Disable backwards navigation", - "description":"This option will only allow you to move forward in Question Set" + "label": "Disable backwards navigation", + "description": "This option will only allow you to move forward in Question Set" }, { - "label":"Randomize questions", - "description":"Soruları sırasını ekranda rasgele gelmesi için etkinleştirin." + "label": "Randomize questions", + "description": "Soruları sırasını ekranda rasgele gelmesi için etkinleştirin." }, { - "label":"Number of questions to be shown:", - "description":"Create a randomized batch of questions from the total." + "label": "Number of questions to be shown:", + "description": "Create a randomized batch of questions from the total." }, { - "label":"Quiz finished", - "fields":[ + "label": "Quiz finished", + "fields": [ { - "label":"Display results" + "label": "Display results" }, { - "label":"Display solution button" + "label": "Display solution button" }, { - "label":"No results message", - "description":"Text displayed on end page when \"Display results\" is disabled", - "default":"Finished" + "label": "No results message", + "description": "Text displayed on end page when \"Display results\" is disabled", + "default": "Finished" }, { - "label":"Feedback heading", - "default":"Your result:", - "description":"This heading will be displayed at the end of the quiz when the user has answered all questions." + "label": "Feedback heading", + "default": "Your result:", + "description": "This heading will be displayed at the end of the quiz when the user has answered all questions." }, { - "label":"Overall Feedback", - "fields":[ + "label": "Overall Feedback", + "fields": [ { - "widgets":[ - + "widgets": [ + { + "label": "Default" + } ], - "label":"Define custom feedback for any score range", - "description":"Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!", - "entity":"range", - "field":{ - "fields":[ + "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": "Score Range" }, + {}, { - - }, - { - "label":"Feedback for defined score range", - "placeholder":"Fill in the feedback" + "label": "Feedback for defined score range", + "placeholder": "Fill in the feedback" } ] } @@ -168,84 +167,88 @@ ] }, { - "label":"Old Feedback", - "fields":[ + "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": "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": "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": "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": "Failed comment", + "description": "This comment will be displayed after the score if the user has failed the quiz." } ] }, { - "label":"Solution button label", - "default":"Çözümü göster", - "description":"Text for the solution button." + "label": "Solution button label", + "default": "Çözümü göster", + "description": "Text for the solution button." }, { - "label":"Yeniden dene buton etiketi", - "default":"Yeniden dene", - "description":"Text for the retry button." + "label": "Yeniden dene buton etiketi", + "default": "Yeniden dene", + "description": "Text for the retry button." }, { - "label":"Finish button text", - "default":"Bitir" + "label": "Finish button text", + "default": "Bitir" }, { - "label":"Display video before quiz results" + "label": "Display video before quiz results" }, { - "label":"Enable skip video button" + "label": "Enable skip video button" }, { - "label":"Skip video button label", - "default":"Skip video" + "label": "Skip video button label", + "default": "Skip video" }, { - "label":"Passed video", - "description":"This video will be played if the user successfully passed the quiz." + "label": "Passed video", + "description": "This video will be played if the user successfully passed the quiz." }, { - "label":"Fail video", - "description":"This video will be played if the user failes the quiz." + "label": "Fail video", + "description": "This video will be played if the user failes the quiz." } ] }, { - "label":"Settings for \"Show solution\" and \"Retry\" buttons", - "fields":[ + "label": "Settings for \"Show solution\" and \"Retry\" buttons", + "fields": [ { - "label":"Override \"Show Solution\" button", - "description":"This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.", - "options":[ + "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": "Enabled" }, { - "label":"Disabled" + "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": "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": "Enabled" }, { - "label":"Disabled" + "label": "Disabled" } ] } diff --git a/language/vi.json b/language/vi.json index c97b04e..5928587 100644 --- a/language/vi.json +++ b/language/vi.json @@ -1,166 +1,165 @@ { - "semantics":[ + "semantics": [ { - "label":"Quiz introduction", - "fields":[ + "label": "Quiz introduction", + "fields": [ { - "label":"Display introduction" + "label": "Display introduction" }, { - "label":"Title", - "description":"This title will be displayed above the introduction text." + "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": "Introduction text", + "description": "This text will be displayed before the quiz starts." }, { - "label":"Start button text", - "default":"Start Quiz" + "label": "Start button text", + "default": "Start Quiz" }, { - "label":"Background image", - "description":"An optional background image for the introduction." + "label": "Background image", + "description": "An optional background image for the introduction." } ] }, { - "label":"Background image", - "description":"An optional background image for the Question set." + "label": "Background image", + "description": "An optional background image for the Question set." }, { - "label":"Progress indicator", - "description":"Question set progress indicator style.", - "options":[ + "label": "Progress indicator", + "description": "Question set progress indicator style.", + "options": [ { - "label":"Textual" + "label": "Textual" }, { - "label":"Dots" + "label": "Dots" } - ], - "default":"dots" + ] }, { - "label":"Pass percentage", - "description":"Percentage of Total score required for passing the quiz." + "label": "Pass percentage", + "description": "Percentage of Total score required for passing the quiz." }, { - "label":"Questions", - "widgets":[ + "label": "Questions", + "widgets": [ { - "label":"Default" + "label": "Default" }, { - "label":"Textual" + "label": "Textual" } ], - "entity":"question", - "field":{ - "label":"Question type", - "description":"Library for this question." + "entity": "question", + "field": { + "label": "Question type", + "description": "Library for this question." } }, { - "label":"Interface texts in quiz", - "fields":[ + "label": "Interface texts in quiz", + "fields": [ { - "label":"Back button", - "default":"Previous question" + "label": "Back button", + "default": "Previous question" }, { - "label":"Next button", - "default":"Next question" + "label": "Next button", + "default": "Next question" }, { - "label":"Finish button", - "default":"Finish" + "label": "Finish button", + "default": "Finish" }, { - "label":"Progress text", - "description":"Text used if textual progress is selected.", - "default":"Question: @current of @total questions" + "label": "Progress text", + "description": "Text used if textual progress is selected.", + "default": "Question: @current of @total questions" }, { - "label":"Label for jumping to a certain question", - "description":"You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.", - "default":"Question %d of %total" + "label": "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": "Copyright dialog question label", + "default": "Question" }, { - "label":"Readspeaker progress", - "description":"May use @current and @total question variables", - "default":"Question @current of @total" + "label": "Readspeaker progress", + "description": "May use @current and @total question variables", + "default": "Question @current of @total" }, { - "label":"Unanswered question text", - "default":"Unanswered" + "label": "Unanswered question text", + "default": "Unanswered" }, { - "label":"Answered question text", - "default":"Answered" + "label": "Answered question text", + "default": "Answered" }, { - "label":"Current question text", - "default":"Current question" + "label": "Current question text", + "default": "Current question" } ] }, { - "label":"Disable backwards navigation", - "description":"This option will only allow you to move forward in Question Set" + "label": "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": "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": "Number of questions to be shown:", + "description": "Create a randomized batch of questions from the total." }, { - "label":"Quiz finished", - "fields":[ + "label": "Quiz finished", + "fields": [ { - "label":"Display results" + "label": "Display results" }, { - "label":"Display solution button" + "label": "Display solution button" }, { - "label":"No results message", - "description":"Text displayed on end page when \"Display results\" is disabled", - "default":"Finished" + "label": "No results message", + "description": "Text displayed on end page when \"Display results\" is disabled", + "default": "Finished" }, { - "label":"Feedback heading", - "default":"Your result:", - "description":"This heading will be displayed at the end of the quiz when the user has answered all questions." + "label": "Feedback heading", + "default": "Your result:", + "description": "This heading will be displayed at the end of the quiz when the user has answered all questions." }, { - "label":"Overall Feedback", - "fields":[ + "label": "Overall Feedback", + "fields": [ { - "widgets":[ - + "widgets": [ + { + "label": "Default" + } ], - "label":"Define custom feedback for any score range", - "description":"Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!", - "entity":"range", - "field":{ - "fields":[ + "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": "Score Range" }, + {}, { - - }, - { - "label":"Feedback for defined score range", - "placeholder":"Fill in the feedback" + "label": "Feedback for defined score range", + "placeholder": "Fill in the feedback" } ] } @@ -168,84 +167,88 @@ ] }, { - "label":"Old Feedback", - "fields":[ + "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": "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": "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": "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": "Failed comment", + "description": "This comment will be displayed after the score if the user has failed the quiz." } ] }, { - "label":"Solution button label", - "default":"Show solution", - "description":"Text for the solution button." + "label": "Solution button label", + "default": "Show solution", + "description": "Text for the solution button." }, { - "label":"Retry button label", - "default":"Retry", - "description":"Text for the retry button." + "label": "Retry button label", + "default": "Retry", + "description": "Text for the retry button." }, { - "label":"Finish button text", - "default":"Finish" + "label": "Finish button text", + "default": "Finish" }, { - "label":"Display video before quiz results" + "label": "Display video before quiz results" }, { - "label":"Enable skip video button" + "label": "Enable skip video button" }, { - "label":"Skip video button label", - "default":"Skip video" + "label": "Skip video button label", + "default": "Skip video" }, { - "label":"Passed video", - "description":"This video will be played if the user successfully passed the quiz." + "label": "Passed video", + "description": "This video will be played if the user successfully passed the quiz." }, { - "label":"Fail video", - "description":"This video will be played if the user failes the quiz." + "label": "Fail video", + "description": "This video will be played if the user failes the quiz." } ] }, { - "label":"Settings for \"Show solution\" and \"Retry\" buttons", - "fields":[ + "label": "Settings for \"Show solution\" and \"Retry\" buttons", + "fields": [ { - "label":"Override \"Show Solution\" button", - "description":"This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.", - "options":[ + "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": "Enabled" }, { - "label":"Disabled" + "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": "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": "Enabled" }, { - "label":"Disabled" + "label": "Disabled" } ] } diff --git a/semantics.json b/semantics.json index 0b85910..e4fc51e 100644 --- a/semantics.json +++ b/semantics.json @@ -539,4 +539,4 @@ } ] } -] +] \ No newline at end of file From 4a372200fe2c6e67431904ae7d316e6fcac22649 Mon Sep 17 00:00:00 2001 From: Andreas Nergaard Date: Wed, 1 Nov 2017 11:59:24 +0100 Subject: [PATCH 05/12] HFP-30 Added check to the label for check, show solution and retry. --- semantics.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/semantics.json b/semantics.json index e4fc51e..d4f1f18 100644 --- a/semantics.json +++ b/semantics.json @@ -470,7 +470,7 @@ { "name": "override", "type": "group", - "label": "Settings for \"Show solution\" and \"Retry\" buttons", + "label": "Settings for \"Check\", \"Show solution\" and \"Retry\"", "importance": "low", "optional": true, "fields": [ @@ -539,4 +539,4 @@ } ] } -] \ No newline at end of file +] From 7626eee56c979a1c4db1cde8fe997cb75957e30b Mon Sep 17 00:00:00 2001 From: "C.W. Fann" Date: Fri, 8 Dec 2017 13:36:13 +0800 Subject: [PATCH 06/12] New Traditional Chinese translation --- language/zh-tw.json | 258 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 258 insertions(+) create mode 100644 language/zh-tw.json diff --git a/language/zh-tw.json b/language/zh-tw.json new file mode 100644 index 0000000..88adb45 --- /dev/null +++ b/language/zh-tw.json @@ -0,0 +1,258 @@ +{ + "semantics": [ + { + "label": "問題簡介", + "fields": [ + { + "label": "顯示簡介" + }, + { + "label": "標題", + "description": "標題將顯示在簡介內容中." + }, + { + "label": "簡介文字", + "description": "文字將顯示於問題開始進行前." + }, + { + "label": "開始功能鈕名稱", + "default": "開始測驗" + }, + { + "label": "背景圖示", + "description": "選填。可選擇一張圖示做為簡介的背景畫面." + } + ] + }, + { + "label": "背景圖示", + "description": "選填。可選擇一張圖示做為問題集的畫面背景." + }, + { + "label": "進度指示", + "description": "設定問題進度顯示樣式.", + "options": [ + { + "label": "文字" + }, + { + "label": "點狀" + } + ] + }, + { + "label": "通過率", + "description": "通過測驗所需總分的百分比." + }, + { + "label": "問題", + "widgets": [ + { + "label": "預設值" + }, + { + "label": "文字方式" + } + ], + "entity": "問題", + "field": { + "label": "問題類型", + "description": "Library for this question." + } + }, + { + "label": "測驗之使用界面", + "fields": [ + { + "label": "返回功能鈕名稱", + "default": "上一個問題" + }, + { + "label": "下一題功能鈕名稱", + "default": "下一個問題" + }, + { + "label": "完成功能鈕名稱", + "default": "完成" + }, + { + "label": "進度", + "description": "若進度指示選擇以文字方式呈現,則以文字方式顯示.", + "default": "問題:第 @current 題,共 @total 題" + }, + { + "label": "跳到某個問題", + "description": "請使用 %d 作為跳題標示,並不是使用問題編號。以 %total 表示總問題數.", + "default": "跳至 %d 問題,共 %total 題" + }, + { + "label": "問題之版權標示", + "default": "問題" + }, + { + "label": "閱讀器導讀進度", + "description": "使用@current 及@total 作為問題的變數", + "default": "第 @current題,共 @total 題" + }, + { + "label": "未回答問題顯示文字", + "default": "未回答" + }, + { + "label": "已回答問題顯示文字", + "default": "已回答" + }, + { + "label": "當前問題顯示文字", + "default": "當前問題" + } + ] + }, + { + "label": "禁用逆向引導", + "description": "勾選本選項後將僅允許在問題集中向前移動" + }, + { + "label": "隨機問答", + "description": "啟用隨機顯示問題順序." + }, + { + "label": "要顯示的問題數量:", + "description": "可在總問題集中隨機建立一批隨機問答." + }, + { + "label": "測驗完成", + "fields": [ + { + "label": "顯示結果" + }, + { + "label": "顯示查看解法功能鈕" + }, + { + "label": "沒有結果顯示資訊", + "description": "當未啟用顯示結果時,結束頁面所顯示的文字", + "default": "完成" + }, + { + "label": "回饋標題文字", + "default": "您的測驗結果:", + "description": "當使用者完成作答後所顯示的標題." + }, + { + "label": "整體回饋", + "fields": [ + { + "widgets": [ + { + "label": "Default" + } + ], + "label": "定義任意分數範圍的回饋", + "description": "點擊"新增範圍"功能鈕以添加您所需要的範圍. 例如: 0-20% 低分, 21-91% 平均得分, 91-100% 高分!", + "entity": "範圍", + "field": { + "fields": [ + { + "label": "得分範圍" + }, + {}, + { + "label": "回饋定義的得分範圍", + "placeholder": "填寫回饋" + } + ] + } + } + ] + }, + { + "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": "解法功能鈕名稱", + "default": "查看解法", + "description": "解法功能鈕名稱." + }, + { + "label": "重試功能鈕名稱", + "default": "重試", + "description": "重試功能鈕名稱." + }, + { + "label": "完成功能鈕名稱", + "default": "完成" + }, + { + "label": "在測驗結果前撥放影片" + }, + { + "label": "啟用略過影片撥放功能鈕" + }, + { + "label": "略過影片撥放功能鈕名稱", + "default": "略過影片" + }, + { + "label": "通過測驗影片", + "description": "當使用者通過測驗後所播放的影片." + }, + { + "label": "測驗失敗影片", + "description": "當使用者測驗失敗時所播放的影片." + } + ] + }, + { + "label": "設定"查看解法"和"重試"功能鈕", + "fields": [ + { + "label": "顯示”檢查”功能鈕", + "description": "設定此選項後將使問題集中皆顯示”檢查”功能鈕." + }, + { + "label": "“查看解法”功能鈕", + "description": "設定此選項後將使問題集中皆顯示”查看解法”功能鈕.", + "options": [ + { + "label": "啟用" + }, + { + "label": "禁用" + } + ] + }, + { + "label": "”重試”功能鈕", + "description": "設定此選項後將使問題集中皆顯示”重試”功能鈕.", + "options": [ + { + "label": "啟用" + }, + { + "label": "禁用" + } + ] + } + ] + } + ] +} From fce94403d5475e6160b0b6222c3007b304545067 Mon Sep 17 00:00:00 2001 From: "C.W. Fann" Date: Fri, 8 Dec 2017 17:49:50 +0800 Subject: [PATCH 07/12] Update zh-tw.json --- language/zh-tw.json | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/language/zh-tw.json b/language/zh-tw.json index 88adb45..f4637fb 100644 --- a/language/zh-tw.json +++ b/language/zh-tw.json @@ -57,7 +57,7 @@ "entity": "問題", "field": { "label": "問題類型", - "description": "Library for this question." + "description": "問題元件." } }, { @@ -91,7 +91,7 @@ }, { "label": "閱讀器導讀進度", - "description": "使用@current 及@total 作為問題的變數", + "description": "使用 @current 及 @total 作為問題的變數", "default": "第 @current題,共 @total 題" }, { @@ -145,7 +145,7 @@ { "widgets": [ { - "label": "Default" + "label": "預設值" } ], "label": "定義任意分數範圍的回饋", @@ -167,23 +167,23 @@ ] }, { - "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": "當使用者未通過測驗時,此段文字將顯示於分數之後." } ] }, From f263e0c29e183827c63383b5b5a8e403cddfed9f Mon Sep 17 00:00:00 2001 From: "C.W. Fann" Date: Wed, 13 Dec 2017 18:33:06 +0800 Subject: [PATCH 08/12] Update zh-tw.json --- language/zh-tw.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/language/zh-tw.json b/language/zh-tw.json index f4637fb..29ac832 100644 --- a/language/zh-tw.json +++ b/language/zh-tw.json @@ -20,13 +20,13 @@ }, { "label": "背景圖示", - "description": "選填。可選擇一張圖示做為簡介的背景畫面." + "description": "選填。可選擇一張圖像做為簡介的背景畫面." } ] }, { "label": "背景圖示", - "description": "選填。可選擇一張圖示做為問題集的畫面背景." + "description": "選填。可選擇一張圖像做為問題集的畫面背景." }, { "label": "進度指示", From dd389f9426b8ad937dc64f065f936000fc42d317 Mon Sep 17 00:00:00 2001 From: Julian Strecker Date: Fri, 5 Jan 2018 15:52:39 +0100 Subject: [PATCH 09/12] Make Questionset commit its introPage BackgroundImage to copyright-Button overview as well as all the others --- js/questionset.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/js/questionset.js b/js/questionset.js index a1a2347..55c43c2 100644 --- a/js/questionset.js +++ b/js/questionset.js @@ -1054,6 +1054,13 @@ H5P.QuestionSet = function (options, contentId, contentData) { this.getCopyrights = function () { var info = new H5P.ContentCopyrights(); + // IntroPage Background + if (params.introPage !== undefined && params.introPage.backgroundImage !== undefined && params.introPage.backgroundImage.copyright !== undefined) { + var introBackground = new H5P.MediaCopyright(params.introPage.backgroundImage.copyright); + introBackground.setThumbnail(new H5P.Thumbnail(H5P.getPath(params.introPage.backgroundImage.path, contentId), params.introPage.backgroundImage.width, params.introPage.backgroundImage.height)); + info.addMedia(introBackground); + } + // Background if (params.backgroundImage !== undefined && params.backgroundImage.copyright !== undefined) { var background = new H5P.MediaCopyright(params.backgroundImage.copyright); From b63fd0da9cc5a518d70532f90136d48915d6660f Mon Sep 17 00:00:00 2001 From: Nadav Kavalerchik Date: Sat, 6 Jan 2018 11:57:20 +0200 Subject: [PATCH 10/12] Initial Hebrew translation --- language/he.json | 223 +++++++++++++++++++++++------------------------ 1 file changed, 111 insertions(+), 112 deletions(-) diff --git a/language/he.json b/language/he.json index 5928587..9e4010b 100644 --- a/language/he.json +++ b/language/he.json @@ -1,165 +1,165 @@ { "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": "תוכן מתקדם", + "description": "תוכן שבו נעשה שימוש אם תוכן מתקדם נבחר", + "default": "" }, { - "label": "Label for jumping to a certain question", - "description": "You must use the placeholder '%d' instead of the question number, and %total instead of total amount of questions.", - "default": "Question %d of %total" + "label": "תווית עבור קפיצה לשאלה מסוימת", + "description": "יש להשתמש במציין המיקום '% d' במקום במספר השאלה, וב % סה\"כ במקום בסכום הכולל של השאלות.", + "default": "שאלה %d מתוך %total" }, { - "label": "Copyright dialog question label", - "default": "Question" + "label": "תווית שאלת שיח זכויות יוצרים", + "default": "שאלה" }, { "label": "Readspeaker progress", "description": "May use @current and @total question variables", - "default": "Question @current of @total" + "default": "שאלה @current מתוך @total" }, { - "label": "Unanswered question text", - "default": "Unanswered" + "label": "תיאור שאלות של תשובות שלא נענו", + "default": "לא נענה" }, { - "label": "Answered question text", - "default": "Answered" + "label": "תיאור שאלה שנענתה", + "default": "נענה" }, { - "label": "Current question text", - "default": "Current question" + "label": "תיאור שאלה נוכחית", + "default": "שאלה נוכחית" } ] }, { - "label": "Disable backwards navigation", - "description": "This option will only allow you to move forward in Question Set" + "label": "ניווט קדימה בלבד", + "description": "הגדרה מאפשרת התקדמות ומעבר לשאלה הבאה בלבד." }, { - "label": "Randomize questions", - "description": "Enable to randomize the order of questions on display." + "label": "שאלות אקראיות", + "description": "מאפשר תצוגת סדר השאלות באופן אקראי" }, { - "label": "Number of questions to be shown:", - "description": "Create a randomized batch of questions from the total." + "label": "מספר השאלות שיוצגו:", + "description": "יצירת סדרה של שאלות אקראיות מסך כל השאלות" }, { - "label": "Quiz finished", + "label": "החידון הסתיים", "fields": [ { - "label": "Display results" + "label": "הציגו תוצאות" }, { - "label": "Display solution button" + "label": "כפתור הצגת הפתרון" }, { - "label": "No results message", - "description": "Text displayed on end page when \"Display results\" is disabled", - "default": "Finished" + "label": "אין הודעת תוצאות", + "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": "לדוגמא: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": "יש למלא את המשוב" } ] } @@ -167,92 +167,91 @@ ] }, { - "label": "Old Feedback", + "label": "משוב ישן", "fields": [ { - "label": "Quiz passed greeting", - "description": "This text will be displayed above the score if the user has successfully passed the quiz." + "label": "ברכת הצלחה בחידון", + "description": "תוכן זה יוצג מעל הניקוד אם הנבחן עבר בהצלחה את החידון" }, { - "label": "Passed comment", - "description": "This comment will be displayed after the score if the user has successfully passed the quiz." + "label": "הערה עבור הצלחה בחידון ", + "description": "הערה זו תוצג מעל הניקוד, אם הנבחן עבר בהצלחה את החידון" }, { - "label": "Quiz failed title", - "description": "This text will be displayed above the score if the user has failed the quiz." + "label": "כותרת כשלון בחידון", + "description": "תוכן זה יוצג מעל הניקוד אם הנבחן נכשל בחידון" }, { - "label": "Failed comment", - "description": "This comment will be displayed after the score if the user has failed the quiz." + "label": "הערה עבור כשלון בחידון", + "description": "הערה זו תוצג מעל הניקוד, אם הנבחן נכשל בחידון" } ] }, { - "label": "Solution button label", - "default": "Show solution", - "description": "Text for the solution button." + "label": "\"תווית כפתור \"הפתרון", + "default": "הציגו פתרון", + "description": "\"תוכן עבור כפתור \"הפתרון" }, { - "label": "Retry button label", - "default": "Retry", - "description": "Text for the retry button." + "label": "תווית כפתור נסו שוב", + "default": "נסו בשנית", + "description": "\"תוכן עבור כפתור \"נסו שוב" }, { - "label": "Finish button text", - "default": "Finish" + "label": "\"תוכן כפתור \"סיום", + "default": "סיום" }, { - "label": "Display video before quiz results" + "label": "יש להציג וידאו לפני תוצאות החידון" }, { - "label": "Enable skip video button" + "label": "הפעילו את הכפתור \"דלגו על הסרטון\"" }, { - "label": "Skip video button label", - "default": "Skip video" + "label": "תווית כפתור דלגו על הסרטון", + "default": "דלגו על הוידאו" }, { - "label": "Passed video", - "description": "This video will be played if the user successfully passed the quiz." + "label": "וידאו של הצלחה בחידון", + "description": "וידאו זה יופעל במידה והנבחן יעבור בהצלחה את החידון" }, { - "label": "Fail video", - "description": "This video will be played if the user failes the quiz." + "label": "וידאו של כישלון בחידון", + "description": "וידאו זה יופעל במידה והנבחן יכשל בחידון" } ] }, { - "label": "Settings for \"Show solution\" and \"Retry\" buttons", + "label": "הגדרות עבור כפתורי \"הציגו פתרון\" ו \"נסו בשנית\"", "fields": [ { - "label": "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": "עדכון כפתור \"תצוגת פתרון\"", "options": [ { - "label": "Enabled" + "label": "עדכון כפתור \"נסו שוב\"", + "description": "אפשרות זו קובעת אם הכפתור \"נסו שוב\" יוצג עבור כל השאלות, יושבת עבור כל השאלות או יוגדר עבור כל שאלה בנפרד.\n", + "options": [ + { + "label": "פעיל" + }, + { + "label": "כבוי" + } + ] }, { - "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": "פעיל" }, { - "label": "Disabled" + "label": "כבוי" } ] } ] } ] -} \ No newline at end of file +} From 344fbef440d064197f189b08d245218e23b027a4 Mon Sep 17 00:00:00 2001 From: timothyylim Date: Fri, 26 Jan 2018 12:52:50 +0100 Subject: [PATCH 11/12] HFP-1831 Fix language files --- language/he.json | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/language/he.json b/language/he.json index 9e4010b..e3cc8d3 100644 --- a/language/he.json +++ b/language/he.json @@ -230,19 +230,20 @@ }, { "label": "עדכון כפתור \"תצוגת פתרון\"", + "description": "This option determines if the \"Show Solution\" button will be shown for all questions, disabled for all or configured for each question individually.", "options": [ { - "label": "עדכון כפתור \"נסו שוב\"", - "description": "אפשרות זו קובעת אם הכפתור \"נסו שוב\" יוצג עבור כל השאלות, יושבת עבור כל השאלות או יוגדר עבור כל שאלה בנפרד.\n", - "options": [ - { - "label": "פעיל" - }, - { - "label": "כבוי" - } - ] + "label": "פעיל" }, + { + "label": "כבוי" + } + ] + }, + { + "label": "עדכון כפתור \"נסו שוב\"", + "description": "אפשרות זו קובעת אם הכפתור \"נסו שוב\" יוצג עבור כל השאלות, יושבת עבור כל השאלות או יוגדר עבור כל שאלה בנפרד.\n", + "options": [ { "label": "פעיל" }, From b3d35fae370c87f0c47b7867393bfb8913e5e379 Mon Sep 17 00:00:00 2001 From: Paal Joergensen Date: Fri, 26 Jan 2018 15:47:56 +0100 Subject: [PATCH 12/12] Bump version --- library.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library.json b/library.json index ac51b1b..ca44b80 100644 --- a/library.json +++ b/library.json @@ -4,7 +4,7 @@ "contentType": "question", "majorVersion": 1, "minorVersion": 13, - "patchVersion": 3, + "patchVersion": 4, "embedTypes": [ "iframe" ], @@ -71,4 +71,4 @@ "minorVersion": 0 } ] -} +} \ No newline at end of file