-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathexample.json
148 lines (143 loc) · 6.08 KB
/
example.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
// To go in the course.json file
"_audio": {
"_isEnabled": true,
"_configureOnLoad": true,
"_reducedTextisEnabled": true,
"_autoplay": true,
"_autoPlayOnce": true,
"_showOnNavbar": true,
"_pauseStopAction": "stop", // options are "stop" or "pause"
"_triggerPosition": 40,
"title": "Audio",
"description": "Click here to view the audio settings for this course.",
"_drawerOrder": 0,
"_reducedText": {
"title": "Text",
"descriptionFull": "The text is set to full. Select the button below if you would like the text to summarise the audio.",
"descriptionReduced": "The text is set to reduced. Select the button below if you would like the text to match the audio exactly.",
"_buttons": {
"full": "Set to full text",
"reduced": "Set to reduced text"
}
},
"_channels": {
"_narration": {
"_isEnabled": true,
"_status": 1,
"title": "Audio",
"descriptionOn": "Audio is currently turned on. Select the icon below to turn the audio off.",
"descriptionOff": "Audio is currently turned off. Select the icon below to turn the audio on."
},
"_effects": {
"_isEnabled": true,
"_status": 1,
"title": "Sound effects",
"descriptionOn": "Sound effects are currently turned on. Select the icon below to turn the sound effects off.",
"descriptionOff": "Sound effects are currently turned off. Select the icon below to turn the sound effects on."
},
"_music": {
"_isEnabled": true,
"_status": 1,
"title": "Music",
"descriptionOn": "Music is currently turned on. Select the icon below to turn the music off.",
"descriptionOff": "Music is currently turned off. Select the icon below to turn the music on."
}
},
"_icons": {
"_audioOn": "audio-volume-medium",
"_audioOff": "audio-volume-mute",
"_audioPlay": "audio-play",
"_audioPause": "audio-stop"
},
"_prompt": {
"_isEnabled": true,
"title": "Audio and text",
"titleNoReduced": "Audio",
"bodyAudioOn": "Audio is turned on by default in this module. You can turn the audio on or off at any time by selecting the audio icon.<br><br>You can choose either full or reduced on-screen text. The full text option matches the audio exactly. The reduced text option summarises the audio.",
"instructionAudioOn": "Select Full or Reduced to continue.",
"bodyAudioOff": "Audio is turned off by default in this module. You can turn the audio on or off at any time by selecting the audio icon.<br><br>You can choose either full or reduced on-screen text. The full text option matches the audio exactly. The reduced text option summarises the audio.",
"instructionAudioOff": "Select Full or Reduced to continue.",
"bodyNoReducedAudioOn": "Audio is turned on by default in this module. You can change your preference at any time by selecting the audio icon.",
"instructionNoReducedAudioOn": "Select Continue or Turn audio off to continue.",
"bodyNoReducedAudioOff": "Audio is turned off by default in this module. You can change your preference at any time by selecting the audio icon.",
"instructionNoReducedAudioOff": "Select Continue or Turn audio on to continue.",
"_buttons": {
"full": "Full",
"reduced": "Reduced",
"continue": "Continue",
"turnOff": "Turn audio off",
"turnOn": "Turn audio on"
},
"_graphic": {
"_icon": "audio-volume-medium",
"src": ""
}
}
},
// To go in article/block/component.json
"_audio": {
"_isEnabled": true,
"_showControls": false,
"_autoplay": true,
"_autoPlayOnce": true,
"_channel": 0, // channels represent the number of items defined in the course.json settings, by default there are 0, 1 and 2 available (3 _audioItems in the array)
"_location": "top-right", // pre-defined styles are "top-left", "top-right", "bottom-left", "bottom-right"
"_media": {
"desktop": "course/en/audio/***.mp3",
"mobile": "course/en/audio/***.mp3"
},
"_reducedTextisEnabled": true,
"displayTitleReduced": "Reduced title",
"bodyReduced": "Reduced text",
"_feedback": {
"_isEnabled": true,
"_correct": {
"correctReduced": "Reduced correct text.",
"_correct": "course/en/audio/***.mp3"
},
"_incorrect": {
"notFinalReduced": "Reduced incorrect notFinal text.",
"finalReduced": "Reduced incorrect final text.",
"_notFinal": "course/en/audio/***.mp3",
"_final": "course/en/audio/***.mp3"
},
"_partlyCorrect": {
"notFinalReduced": "Reduced partly correct notFinal text.",
"finalReduced": "Reduced partly correct final text.",
"_notFinal": "course/en/audio/***.mp3",
"_final": "course/en/audio/***.mp3"
},
"_soundEffect": {
"_isEnabled": false,
"_correct": "",
"_incorrect": "",
"_partlyCorrect": ""
},
"_items": [
{
"_src": "course/en/audio/***.mp3"
},
{
"_src": "course/en/audio/***.mp3"
},
{
"_src": "course/en/audio/***.mp3"
},
{
"_src": "course/en/audio/***.mp3"
}
]
}
},
// To go on menu page element in contentObjects.json
"_audio": {
"_isEnabled": true,
"_showControls": true,
"_autoplay": true,
"_autoPlayOnce": false,
"_channel": 0,
"_location": "top-right",
"_media": {
"src": "course/en/audio/***.mp3"
}
},