add importance to semantics HFP-346
parent
87f28e9a2a
commit
5d29e756dc
|
@ -3,16 +3,19 @@
|
|||
"name": "introPage",
|
||||
"type": "group",
|
||||
"label": "Quiz introduction",
|
||||
"importance":"medium",
|
||||
"fields": [
|
||||
{
|
||||
"name": "showIntroPage",
|
||||
"type": "boolean",
|
||||
"label": "Display introduction"
|
||||
"label": "Display introduction",
|
||||
"importance":"low"
|
||||
},
|
||||
{
|
||||
"name": "title",
|
||||
"type": "text",
|
||||
"label": "Title",
|
||||
"importance":"high",
|
||||
"optional": true,
|
||||
"description": "This title will be displayed above the introduction text.",
|
||||
"tags": [
|
||||
|
@ -27,6 +30,7 @@
|
|||
"type": "text",
|
||||
"widget": "html",
|
||||
"label": "Introduction text",
|
||||
"importance":"medium",
|
||||
"optional": true,
|
||||
"description": "This text will be displayed before the quiz starts.",
|
||||
"enterMode": "p",
|
||||
|
@ -42,6 +46,7 @@
|
|||
"name": "startButtonText",
|
||||
"type": "text",
|
||||
"label": "Start button text",
|
||||
"importance":"low",
|
||||
"optional": true,
|
||||
"default": "Start Quiz"
|
||||
},
|
||||
|
@ -49,6 +54,7 @@
|
|||
"name": "backgroundImage",
|
||||
"type": "image",
|
||||
"label": "Background image",
|
||||
"importance":"low",
|
||||
"optional": true,
|
||||
"description": "An optional background image for the introduction."
|
||||
}
|
||||
|
@ -58,6 +64,7 @@
|
|||
"name": "backgroundImage",
|
||||
"type": "image",
|
||||
"label": "Background image",
|
||||
"importance":"low",
|
||||
"optional": true,
|
||||
"description": "An optional background image for the Question set."
|
||||
},
|
||||
|
@ -65,6 +72,7 @@
|
|||
"name": "progressType",
|
||||
"type": "select",
|
||||
"label": "Progress indicator",
|
||||
"importance":"low",
|
||||
"description": "Question set progress indicator style.",
|
||||
"options": [
|
||||
{
|
||||
|
@ -82,6 +90,7 @@
|
|||
"name": "passPercentage",
|
||||
"type": "number",
|
||||
"label": "Pass percentage",
|
||||
"importance":"low",
|
||||
"description": "Percentage of Total score required for passing the quiz.",
|
||||
"min": 0,
|
||||
"max": 100,
|
||||
|
@ -91,6 +100,7 @@
|
|||
{
|
||||
"name": "questions",
|
||||
"label": "Questions",
|
||||
"importance":"high",
|
||||
"type": "list",
|
||||
"widgets": [
|
||||
{
|
||||
|
@ -108,6 +118,7 @@
|
|||
"name": "question",
|
||||
"type": "library",
|
||||
"label": "Question type",
|
||||
"importance":"high",
|
||||
"description": "Library for this question.",
|
||||
"options": [
|
||||
"H5P.MultiChoice 1.9",
|
||||
|
@ -123,30 +134,35 @@
|
|||
"name": "texts",
|
||||
"type": "group",
|
||||
"label": "Interface texts in quiz",
|
||||
"importance":"low",
|
||||
"common": true,
|
||||
"fields": [
|
||||
{
|
||||
"name": "prevButton",
|
||||
"type": "text",
|
||||
"label": "Back button",
|
||||
"importance":"low",
|
||||
"default": "Previous question"
|
||||
},
|
||||
{
|
||||
"name": "nextButton",
|
||||
"type": "text",
|
||||
"label": "Next button",
|
||||
"importance":"low",
|
||||
"default": "Next question"
|
||||
},
|
||||
{
|
||||
"name": "finishButton",
|
||||
"type": "text",
|
||||
"label": "Finish button",
|
||||
"importance":"low",
|
||||
"default": "Finish"
|
||||
},
|
||||
{
|
||||
"name": "textualProgress",
|
||||
"type": "text",
|
||||
"label": "Progress text",
|
||||
"importance":"low",
|
||||
"description": "Text used if textual progress is selected.",
|
||||
"default": "Question: @current of @total questions",
|
||||
"tags": [
|
||||
|
@ -158,6 +174,7 @@
|
|||
"name": "jumpToQuestion",
|
||||
"type": "text",
|
||||
"label": "Label for jumping to a certain question",
|
||||
"importance":"low",
|
||||
"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"
|
||||
},
|
||||
|
@ -165,12 +182,14 @@
|
|||
"name": "questionLabel",
|
||||
"type": "text",
|
||||
"label": "Copyright dialog question label",
|
||||
"importance":"low",
|
||||
"default": "Question"
|
||||
},
|
||||
{
|
||||
"name": "readSpeakerProgress",
|
||||
"type": "text",
|
||||
"label": "Readspeaker progress",
|
||||
"importance":"low",
|
||||
"description": "May use @current and @total question variables",
|
||||
"default": "Question @current of @total"
|
||||
},
|
||||
|
@ -178,18 +197,21 @@
|
|||
"name": "unansweredText",
|
||||
"type": "text",
|
||||
"label": "Unanswered question text",
|
||||
"importance":"low",
|
||||
"default": "Unanswered"
|
||||
},
|
||||
{
|
||||
"name": "answeredText",
|
||||
"type": "text",
|
||||
"label": "Answered question text",
|
||||
"importance":"low",
|
||||
"default": "Answered"
|
||||
},
|
||||
{
|
||||
"name": "currentQuestionText",
|
||||
"type": "text",
|
||||
"label": "Current question text",
|
||||
"importance":"low",
|
||||
"default": "Current question"
|
||||
}
|
||||
]
|
||||
|
@ -198,6 +220,7 @@
|
|||
"name": "disableBackwardsNavigation",
|
||||
"type": "boolean",
|
||||
"label": "Disable backwards navigation",
|
||||
"importance":"low",
|
||||
"description": "This option will only allow you to move forward in Question Set",
|
||||
"optional": true,
|
||||
"default": false
|
||||
|
@ -206,6 +229,7 @@
|
|||
"name": "randomQuestions",
|
||||
"type": "boolean",
|
||||
"label": "Randomize questions",
|
||||
"importance":"low",
|
||||
"description": "Enable to randomize the order of questions on display.",
|
||||
"default": false
|
||||
},
|
||||
|
@ -214,6 +238,7 @@
|
|||
"type": "number",
|
||||
"min": 1,
|
||||
"label": "Number of questions to be shown:",
|
||||
"importance":"low",
|
||||
"description": "Create a randomized batch of questions from the total.",
|
||||
"optional": true
|
||||
},
|
||||
|
@ -221,17 +246,20 @@
|
|||
"name": "endGame",
|
||||
"type": "group",
|
||||
"label": "Quiz finished",
|
||||
"importance":"medium",
|
||||
"fields": [
|
||||
{
|
||||
"name": "showResultPage",
|
||||
"type": "boolean",
|
||||
"label": "Display results",
|
||||
"importance":"low",
|
||||
"default": true
|
||||
},
|
||||
{
|
||||
"name": "noResultMessage",
|
||||
"type": "text",
|
||||
"label": "No results message",
|
||||
"importance":"low",
|
||||
"description": "Text displayed on end page when \"Display results\" is disabled",
|
||||
"default": "Finished",
|
||||
"optional": true
|
||||
|
@ -240,6 +268,7 @@
|
|||
"name": "message",
|
||||
"type": "text",
|
||||
"label": "Feedback heading",
|
||||
"importance":"low",
|
||||
"default": "Your result:",
|
||||
"optional": true,
|
||||
"description": "This heading will be displayed at the end of the quiz when the user has answered all questions.",
|
||||
|
@ -252,6 +281,7 @@
|
|||
"name": "scoreString",
|
||||
"type": "text",
|
||||
"label": "Score display text",
|
||||
"importance":"low",
|
||||
"description": "Text used to display Total user score. \"@score\" will be replaced by calculated score, \"@total\" will be replaced by maximum possible score. ",
|
||||
"default": "You got @score of @total points",
|
||||
"optional": true
|
||||
|
@ -260,6 +290,7 @@
|
|||
"name": "successGreeting",
|
||||
"type": "text",
|
||||
"label": "Quiz passed greeting",
|
||||
"importance":"low",
|
||||
"placeholder": "Congratulations!",
|
||||
"default": "Congratulations!",
|
||||
"optional": true,
|
||||
|
@ -274,6 +305,7 @@
|
|||
"type": "text",
|
||||
"widget": "html",
|
||||
"label": "Passed comment",
|
||||
"importance":"low",
|
||||
"default": "You did very well!",
|
||||
"optional": true,
|
||||
"description": "This comment will be displayed after the score if the user has successfully passed the quiz.",
|
||||
|
@ -290,6 +322,7 @@
|
|||
"name": "failGreeting",
|
||||
"type": "text",
|
||||
"label": "Quiz failed title",
|
||||
"importance":"low",
|
||||
"default": "You did not pass this time.",
|
||||
"optional": true,
|
||||
"description": "This text will be displayed above the score if the user has failed the quiz.",
|
||||
|
@ -303,6 +336,7 @@
|
|||
"type": "text",
|
||||
"widget": "html",
|
||||
"label": "Failed comment",
|
||||
"importance":"low",
|
||||
"default": "Have another try!",
|
||||
"optional": true,
|
||||
"description": "This comment will be displayed after the score if the user has failed the quiz.",
|
||||
|
@ -319,6 +353,7 @@
|
|||
"name": "solutionButtonText",
|
||||
"type": "text",
|
||||
"label": "Solution button label",
|
||||
"importance":"low",
|
||||
"default": "Show solution",
|
||||
"description": "Text for the solution button."
|
||||
},
|
||||
|
@ -326,6 +361,7 @@
|
|||
"name": "retryButtonText",
|
||||
"type": "text",
|
||||
"label": "Retry button label",
|
||||
"importance":"low",
|
||||
"default": "Retry",
|
||||
"description": "Text for the retry button."
|
||||
},
|
||||
|
@ -333,28 +369,33 @@
|
|||
"name": "finishButtonText",
|
||||
"type": "text",
|
||||
"label": "Finish button text",
|
||||
"importance":"low",
|
||||
"default": "Finish"
|
||||
},
|
||||
{
|
||||
"name": "showAnimations",
|
||||
"type": "boolean",
|
||||
"label": "Display video before quiz results"
|
||||
"label": "Display video before quiz results",
|
||||
"importance":"low"
|
||||
},
|
||||
{
|
||||
"name": "skippable",
|
||||
"type": "boolean",
|
||||
"label": "Enable skip video button"
|
||||
"label": "Enable skip video button",
|
||||
"importance":"low"
|
||||
},
|
||||
{
|
||||
"name": "skipButtonText",
|
||||
"type": "text",
|
||||
"label": "Skip video button label",
|
||||
"importance":"low",
|
||||
"default": "Skip video"
|
||||
},
|
||||
{
|
||||
"name": "successVideo",
|
||||
"type": "video",
|
||||
"label": "Passed video",
|
||||
"importance":"low",
|
||||
"optional": true,
|
||||
"description": "This video will be played if the user successfully passed the quiz."
|
||||
},
|
||||
|
@ -362,6 +403,7 @@
|
|||
"name": "failVideo",
|
||||
"type": "video",
|
||||
"label": "Fail video",
|
||||
"importance":"low",
|
||||
"optional": true,
|
||||
"description": "This video will be played if the user failes the quiz."
|
||||
}
|
||||
|
@ -371,12 +413,14 @@
|
|||
"name": "override",
|
||||
"type": "group",
|
||||
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
||||
"importance":"low",
|
||||
"optional": true,
|
||||
"fields": [
|
||||
{
|
||||
"name": "showSolutionButton",
|
||||
"type": "select",
|
||||
"label": "Override \"Show Solution\" button",
|
||||
"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,
|
||||
"options": [
|
||||
|
@ -394,6 +438,7 @@
|
|||
"name": "retryButton",
|
||||
"type": "select",
|
||||
"label": "Override \"Retry\" button",
|
||||
"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,
|
||||
"options": [
|
||||
|
|
Loading…
Reference in New Issue