This repository has been archived by the owner on Jul 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 67
/
semantics.json
221 lines (221 loc) · 5.29 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
[
{
"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"
]
},
{
"name": "coverImage",
"type": "image",
"label": "Cover image",
"importance": "low",
"optional": true,
"description": "An optional background image for the introduction."
}
]
},
{
"name": "chapters",
"type": "list",
"label": "Chapters",
"entity": "Chapter",
"widgets": [
{
"name": "VerticalTabs",
"label": "Default"
}
],
"importance": "high",
"min": 1,
"max": 50,
"field": {
"name": "item",
"type": "group",
"label": "Item",
"importance": "low",
"expanded": true,
"fields": [
{
"label": "Chapter",
"name": "chapter",
"type": "library",
"options": [
"H5P.Column 1.8"
]
}
]
}
},
{
"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": "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": "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 \"Chapter completed!\"",
"importance": "low",
"default": "Chapter 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 chapter\"",
"importance": "low",
"default": "Incomplete chapter",
"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
}
]