forked from h5p/h5p-interactive-book
-
Notifications
You must be signed in to change notification settings - Fork 0
/
semantics.json
433 lines (433 loc) · 10.9 KB
/
semantics.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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
[
{
"name": "showCoverPage",
"type": "boolean",
"label": "Enable book cover",
"description": "A cover that shows info regarding the book before access",
"importance": "low",
"default": false
},
{
"name": "bookCover",
"type": "group",
"label": "Cover Page",
"importance": "medium",
"widget": "showWhen",
"showWhen": {
"rules": [
{
"field": "showCoverPage",
"equals": true
}
]
},
"fields": [
{
"name": "coverDescription",
"type": "text",
"widget": "html",
"label": "Cover description",
"importance": "medium",
"optional": true,
"description": "This text will be the description of your book.",
"enterMode": "p",
"tags": [
"sub",
"sup",
"strong",
"em",
"p",
"code"
]
},
{
"name": "coverImage",
"type": "image",
"label": "Cover image",
"importance": "low",
"optional": true,
"description": "An optional background image for the introduction."
},
{
"name": "coverAltText",
"type": "text",
"label": "Cover image alternative text",
"importance": "low",
"optional": true,
"description": "An alternative text for the cover image"
}
]
},
{
"name": "chapters",
"type": "list",
"label": "Pages",
"entity": "Page",
"widgets": [
{
"name": "VerticalTabs",
"label": "Default"
}
],
"importance": "high",
"min": 1,
"max": 50,
"field": {
"name": "item",
"type": "group",
"label": "Item",
"importance": "low",
"expanded": true,
"fields": [
{
"label": "Page",
"name": "chapter",
"type": "library",
"options": [
"H5P.Column 1.12"
]
}
]
}
},
{
"name": "behaviour",
"type": "group",
"importance": "low",
"label": "Behavioural settings",
"fields": [
{
"name": "defaultTableOfContents",
"type": "boolean",
"label": "Display table of contents as default",
"description": "When enabled the table of contents is showed when opening the book",
"default": true
},
{
"name": "progressIndicators",
"type": "boolean",
"label": "Display Progress Indicators",
"description": "When enabled there will be indicators per page showing the user if he is done with the page or not.",
"default": true
},
{
"name": "progressAuto",
"type": "boolean",
"label": "Enable automatic progress",
"description": "If enabled a page without tasks is considered done when viewed. A page with tasks when all tasks are done. If disabled there will be a button at the bottom of every page for the user to click when done with the page.",
"default": true,
"widget": "showWhen",
"showWhen": {
"rules": [
{
"field": "progressIndicators",
"equals": true
}
]
}
},
{
"name": "displaySummary",
"type": "boolean",
"label": "Display summary",
"description": "When enabled the user can see a summary and submit the progress/answers",
"default": true
}
]
},
{
"name": "read",
"type": "text",
"label": "Translation for \"Read\"",
"importance": "low",
"default": "Read",
"common": true,
"optional": true
},
{
"name": "displayTOC",
"type": "text",
"label": "Translation for \"Display 'Table of contents'\"",
"importance": "low",
"default": "Display 'Table of contents'",
"common": true,
"optional": true
},
{
"name": "hideTOC",
"type": "text",
"label": "Translation for \"Hide 'Table of contents'\"",
"importance": "low",
"default": "Hide 'Table of contents'",
"common": true,
"optional": true
},
{
"name": "nextPage",
"type": "text",
"label": "Translation for \"Next page\"",
"importance": "low",
"default": "Next page",
"common": true,
"optional": true
},
{
"name": "previousPage",
"type": "text",
"label": "Translation for \"Previous page\"",
"importance": "low",
"default": "Previous page",
"common": true,
"optional": true
},
{
"name": "chapterCompleted",
"type": "text",
"label": "Translation for \"Page completed!\"",
"importance": "low",
"default": "Page completed!",
"common": true,
"optional": true
},
{
"name": "partCompleted",
"type": "text",
"label": "Translation for \"@pages of @total completed\" (@pages and @total will be replaced by actual values)",
"importance": "low",
"default": "@pages of @total completed",
"common": true,
"optional": true
},
{
"name": "incompleteChapter",
"type": "text",
"label": "Translation for \"Incomplete page\"",
"importance": "low",
"default": "Incomplete page",
"common": true,
"optional": true
},
{
"name": "navigateToTop",
"type": "text",
"label": "Translation for \"Navigate to the top\"",
"importance": "low",
"default": "Navigate to the top",
"common": true,
"optional": true
},
{
"name": "markAsFinished",
"type": "text",
"importance": "low",
"label": "Translation for \"I have finished this page\"",
"default": "I have finished this page",
"common": true,
"optional": true
},
{
"name": "fullscreen",
"type": "text",
"importance": "low",
"label": "Fullscreen button label",
"default": "Fullscreen",
"common": true,
"optional": true
},
{
"name": "exitFullscreen",
"type": "text",
"importance": "low",
"label": "Exit fullscreen button label",
"default": "Exit fullscreen",
"common": true,
"optional": true
},
{
"name": "bookProgressSubtext",
"type": "text",
"importance": "low",
"label": "Page progress in book",
"description": "\"@count\" will be replaced by page count, and \"@total\" with the total number of pages",
"default": "@count of @total pages",
"common": true,
"optional": true
},
{
"name": "interactionsProgressSubtext",
"type": "text",
"importance": "low",
"label": "Interaction progress",
"description": "\"@count\" will be replaced by page count, and \"@total\" with the total number of pages",
"default": "@count of @total interactions",
"common": true,
"optional": true
},
{
"name": "submitReport",
"type": "text",
"importance": "low",
"label": "Translation for \"Submit report\"",
"default": "Submit Report",
"common": true,
"optional": true
},
{
"name": "restartLabel",
"type": "text",
"importance": "low",
"label": "Label for \"restart\" button",
"default": "Restart",
"common": true,
"optional": true
},
{
"name": "summaryHeader",
"type": "text",
"importance": "low",
"label": "Summary header",
"default": "Summary",
"common": true,
"optional": true
},
{
"name": "allInteractions",
"type": "text",
"importance": "low",
"label": "Translation for \"All interactions\"",
"default": "All interactions",
"common": true,
"optional": true
},
{
"name": "unansweredInteractions",
"type": "text",
"importance": "low",
"label": "Translation for \"Unanswered interactions\"",
"default": "Unanswered interactions",
"common": true,
"optional": true
},
{
"name": "scoreText",
"type": "text",
"importance": "low",
"label": "Score",
"description": "\"@score\" will be replaced with current score, and \"@maxscore\" will be replaced with max achievable score",
"default": "@score / @maxscore",
"common": true,
"optional": true
},
{
"name": "leftOutOfTotalCompleted",
"type": "text",
"importance": "low",
"label": "Per page interactions completion",
"description": "\"@left\" will be replaced with remaining interactions, and \"@max\" will be replaced with total number of interactions on the page",
"default": "@left of @max interactions completed",
"common": true,
"optional": true
},
{
"name": "noInteractions",
"type": "text",
"importance": "low",
"label": "Translation for \"No interactions\"",
"default": "No interactions",
"common": true,
"optional": true
},
{
"name": "score",
"type": "text",
"importance": "low",
"label": "Translation for \"Score\"",
"default": "Score",
"common": true,
"optional": true
},
{
"name": "summaryAndSubmit",
"type": "text",
"importance": "low",
"label": "Label for \"Summary & submit\" button",
"default": "Summary & submit",
"common": true,
"optional": true
},
{
"name": "noChapterInteractionBoldText",
"type": "text",
"importance": "low",
"label": "Translation for \"You have not interacted with any pages.\"",
"default": "You have not interacted with any pages.",
"common": true,
"optional": true
},
{
"name": "noChapterInteractionText",
"type": "text",
"importance": "low",
"label": "Translation for \"You have to interact with at least one page before you can see the summary.\"",
"default": "You have to interact with at least one page before you can see the summary.",
"common": true,
"optional": true
},
{
"name": "yourAnswersAreSubmittedForReview",
"type": "text",
"importance": "low",
"label": "Translation for \"Your answers are submitted for review!\"",
"default": "Your answers are submitted for review!",
"common": true,
"optional": true
},
{
"name": "bookProgress",
"type": "text",
"importance": "low",
"label": "Summary progress label",
"default": "Book progress",
"common": true,
"optional": true
},
{
"name": "interactionsProgress",
"type": "text",
"importance": "low",
"label": "Interactions progress label",
"default": "Interactions progress",
"common": true,
"optional": true
},
{
"name": "totalScoreLabel",
"type": "text",
"importance": "low",
"label": "Total score label",
"default": "Total score",
"common": true,
"optional": true
},
{
"name": "a11y",
"type": "group",
"label": "Accessibility texts",
"common": true,
"fields": [
{
"name": "progress",
"type": "text",
"label": "Page progress textual alternative",
"description": "An alternative text for the visual page progress. @page and @total variables available.",
"default": "Page @page of @total."
},
{
"name": "menu",
"type": "text",
"label": "Label for expanding/collapsing navigation menu",
"default": "Toggle navigation menu"
}
]
}
]