@windward/core 0.4.3 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (159) hide show
  1. package/.idea/codeStyles/Project.xml +58 -0
  2. package/.idea/codeStyles/codeStyleConfig.xml +5 -0
  3. package/.idea/inspectionProfiles/Project_Default.xml +6 -0
  4. package/.idea/modules.xml +8 -0
  5. package/.idea/php-docker-settings.xml +24 -0
  6. package/.idea/php.xml +19 -0
  7. package/.idea/vcs.xml +6 -0
  8. package/.idea/watcherTasks.xml +4 -0
  9. package/.idea/windward-ui-plugin-core.iml +8 -0
  10. package/components/Content/Blocks/Accordion.vue +10 -6
  11. package/components/Content/Blocks/ClickableIcons.vue +6 -5
  12. package/components/Content/Blocks/Feedback.vue +1 -1
  13. package/components/Content/Blocks/FileDownload/FileLinks.vue +82 -0
  14. package/components/Content/Blocks/FileDownload/FileTable.vue +106 -0
  15. package/components/Content/Blocks/FileDownload.vue +145 -0
  16. package/components/Content/Blocks/GenerateAIQuestionButton.vue +61 -0
  17. package/components/Content/Blocks/ScenarioChoice.vue +2 -2
  18. package/components/Content/Blocks/UserUpload.vue +15 -36
  19. package/components/Content/Blocks/Video.vue +2 -57
  20. package/components/Settings/AccordionSettings.vue +3 -6
  21. package/components/Settings/BlockQuoteSettings.vue +2 -2
  22. package/components/Settings/EmailSettings.vue +2 -2
  23. package/components/Settings/FileDownloadSettings.vue +168 -0
  24. package/components/Settings/UserUploadSettings.vue +36 -39
  25. package/components/utils/ContentViewer.vue +1 -0
  26. package/components/utils/TinyMCEWrapper.vue +15 -16
  27. package/components/utils/assets/tinymce/content/global.scss +10 -0
  28. package/config/menu.config.json +475 -0
  29. package/coverage/clover.xml +223 -0
  30. package/coverage/coverage-final.json +16 -0
  31. package/coverage/lcov-report/base.css +224 -0
  32. package/coverage/lcov-report/block-navigation.js +87 -0
  33. package/coverage/lcov-report/components/Content/Blocks/Accordion.vue.html +430 -0
  34. package/coverage/lcov-report/components/Content/Blocks/Image.vue.html +394 -0
  35. package/coverage/lcov-report/components/Content/Blocks/Math.vue.html +262 -0
  36. package/coverage/lcov-report/components/Content/Blocks/RichText.vue.html +295 -0
  37. package/coverage/lcov-report/components/Content/Blocks/Tab.vue.html +415 -0
  38. package/coverage/lcov-report/components/Content/Blocks/Table.vue.html +667 -0
  39. package/coverage/lcov-report/components/Content/Blocks/Video.vue.html +2275 -0
  40. package/coverage/lcov-report/components/Content/Blocks/index.html +206 -0
  41. package/coverage/lcov-report/components/utils/ContentViewer.vue.html +199 -0
  42. package/coverage/lcov-report/components/utils/MathExpressionEditor.vue.html +919 -0
  43. package/coverage/lcov-report/components/utils/MathLiveWrapper.vue.html +343 -0
  44. package/coverage/lcov-report/components/utils/TinyMCEWrapper.vue.html +271 -0
  45. package/coverage/lcov-report/components/utils/index.html +161 -0
  46. package/coverage/lcov-report/config/index.html +116 -0
  47. package/coverage/lcov-report/config/tinymce.config.js.html +493 -0
  48. package/coverage/lcov-report/favicon.png +0 -0
  49. package/coverage/lcov-report/helpers/MathHelper.ts.html +793 -0
  50. package/coverage/lcov-report/helpers/index.html +116 -0
  51. package/coverage/lcov-report/helpers/tinymce/index.html +116 -0
  52. package/coverage/lcov-report/helpers/tinymce/plugin.ts.html +334 -0
  53. package/coverage/lcov-report/index.html +191 -0
  54. package/coverage/lcov-report/prettify.css +1 -0
  55. package/coverage/lcov-report/prettify.js +2 -0
  56. package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  57. package/coverage/lcov-report/sorter.js +196 -0
  58. package/coverage/lcov-report/test/index.html +116 -0
  59. package/coverage/lcov-report/test/mocks.js.html +457 -0
  60. package/coverage/lcov.info +403 -0
  61. package/i18n/en-US/components/content/blocks/file_download.ts +5 -0
  62. package/i18n/en-US/components/content/blocks/generate_questions.ts +3 -0
  63. package/i18n/en-US/components/content/blocks/index.ts +4 -0
  64. package/i18n/en-US/components/content/blocks/user_upload.ts +0 -2
  65. package/i18n/en-US/components/settings/file_download.ts +8 -0
  66. package/i18n/en-US/components/settings/index.ts +2 -0
  67. package/i18n/en-US/shared/content_blocks.ts +1 -0
  68. package/i18n/en-US/shared/settings.ts +1 -3
  69. package/i18n/es-ES/components/content/blocks/file_download.ts +5 -0
  70. package/i18n/es-ES/components/content/blocks/generate_questions.ts +3 -0
  71. package/i18n/es-ES/components/content/blocks/index.ts +6 -2
  72. package/i18n/es-ES/components/content/blocks/user_upload.ts +0 -2
  73. package/i18n/es-ES/components/settings/file_download.ts +8 -0
  74. package/i18n/es-ES/components/settings/index.ts +4 -2
  75. package/i18n/es-ES/shared/content_blocks.ts +1 -0
  76. package/i18n/es-ES/shared/settings.ts +1 -3
  77. package/i18n/sv-SE/components/content/blocks/file_download.ts +5 -0
  78. package/i18n/sv-SE/components/content/blocks/generate_questions.ts +3 -0
  79. package/i18n/sv-SE/components/content/blocks/index.ts +4 -0
  80. package/i18n/sv-SE/components/content/blocks/user_upload.ts +0 -2
  81. package/i18n/sv-SE/components/settings/file_download.ts +8 -0
  82. package/i18n/sv-SE/components/settings/index.ts +4 -2
  83. package/i18n/sv-SE/shared/content_blocks.ts +1 -0
  84. package/i18n/sv-SE/shared/settings.ts +2 -4
  85. package/lib/helpers/GlossaryHelper.d.ts +9 -0
  86. package/lib/helpers/GlossaryHelper.js +118 -0
  87. package/lib/helpers/GlossaryTerm.d.ts +10 -0
  88. package/lib/helpers/GlossaryTerm.js +22 -0
  89. package/lib/helpers/MathHelper.d.ts +99 -0
  90. package/lib/helpers/MathHelper.js +194 -0
  91. package/lib/helpers/tinymce/plugin.d.ts +2 -0
  92. package/lib/helpers/tinymce/plugin.js +86 -0
  93. package/lib/i18n/en-US/components/content/blocks/image.d.ts +6 -0
  94. package/lib/i18n/en-US/components/content/blocks/image.js +7 -0
  95. package/lib/i18n/en-US/components/content/blocks/index.d.ts +75 -0
  96. package/lib/i18n/en-US/components/content/blocks/index.js +14 -0
  97. package/lib/i18n/en-US/components/content/blocks/tab.d.ts +5 -0
  98. package/lib/i18n/en-US/components/content/blocks/tab.js +6 -0
  99. package/lib/i18n/en-US/components/content/blocks/table.d.ts +5 -0
  100. package/lib/i18n/en-US/components/content/blocks/table.js +6 -0
  101. package/lib/i18n/en-US/components/content/blocks/user_upload.d.ts +13 -0
  102. package/lib/i18n/en-US/components/content/blocks/user_upload.js +14 -0
  103. package/lib/i18n/en-US/components/content/blocks/video.d.ts +48 -0
  104. package/lib/i18n/en-US/components/content/blocks/video.js +49 -0
  105. package/lib/i18n/en-US/components/content/index.d.ts +77 -0
  106. package/lib/i18n/en-US/components/content/index.js +6 -0
  107. package/lib/i18n/en-US/components/index.d.ts +140 -0
  108. package/lib/i18n/en-US/components/index.js +12 -0
  109. package/lib/i18n/en-US/components/navigation/image.d.ts +5 -0
  110. package/lib/i18n/en-US/components/navigation/image.js +6 -0
  111. package/lib/i18n/en-US/components/navigation/index.d.ts +10 -0
  112. package/lib/i18n/en-US/components/navigation/index.js +8 -0
  113. package/lib/i18n/en-US/components/navigation/user_upload.d.ts +4 -0
  114. package/lib/i18n/en-US/components/navigation/user_upload.js +5 -0
  115. package/lib/i18n/en-US/components/settings/clickable_icon.d.ts +6 -0
  116. package/lib/i18n/en-US/components/settings/clickable_icon.js +7 -0
  117. package/lib/i18n/en-US/components/settings/image.d.ts +2 -0
  118. package/lib/i18n/en-US/components/settings/image.js +3 -0
  119. package/lib/i18n/en-US/components/settings/index.d.ts +39 -0
  120. package/lib/i18n/en-US/components/settings/index.js +14 -0
  121. package/lib/i18n/en-US/components/settings/text_editor.d.ts +8 -0
  122. package/lib/i18n/en-US/components/settings/text_editor.js +9 -0
  123. package/lib/i18n/en-US/components/settings/user_upload.d.ts +12 -0
  124. package/lib/i18n/en-US/components/settings/user_upload.js +13 -0
  125. package/lib/i18n/en-US/components/settings/video.d.ts +13 -0
  126. package/lib/i18n/en-US/components/settings/video.js +14 -0
  127. package/lib/i18n/en-US/components/utils/index.d.ts +15 -0
  128. package/lib/i18n/en-US/components/utils/index.js +6 -0
  129. package/lib/i18n/en-US/components/utils/tiny_mce_wrapper.d.ts +13 -0
  130. package/lib/i18n/en-US/components/utils/tiny_mce_wrapper.js +14 -0
  131. package/lib/i18n/en-US/index.d.ts +197 -0
  132. package/lib/i18n/en-US/index.js +16 -0
  133. package/lib/i18n/en-US/modules/index.d.ts +2 -0
  134. package/lib/i18n/en-US/modules/index.js +6 -0
  135. package/lib/i18n/en-US/pages/glossary.d.ts +8 -0
  136. package/lib/i18n/en-US/pages/glossary.js +9 -0
  137. package/lib/i18n/en-US/pages/index.d.ts +13 -0
  138. package/lib/i18n/en-US/pages/index.js +8 -0
  139. package/lib/i18n/en-US/pages/user_upload.d.ts +4 -0
  140. package/lib/i18n/en-US/pages/user_upload.js +5 -0
  141. package/lib/i18n/en-US/shared/content_blocks.d.ts +20 -0
  142. package/lib/i18n/en-US/shared/content_blocks.js +21 -0
  143. package/lib/i18n/en-US/shared/index.d.ts +39 -0
  144. package/lib/i18n/en-US/shared/index.js +10 -0
  145. package/lib/i18n/en-US/shared/menu.d.ts +4 -0
  146. package/lib/i18n/en-US/shared/menu.js +5 -0
  147. package/lib/i18n/en-US/shared/settings.d.ts +15 -0
  148. package/lib/i18n/en-US/shared/settings.js +16 -0
  149. package/lib/i18n/en-US.d.ts +197 -0
  150. package/lib/i18n/en-US.js +15 -0
  151. package/lib/models/UserFileAsset.d.ts +5 -0
  152. package/lib/models/UserFileAsset.js +37 -0
  153. package/package.json +2 -2
  154. package/plugin.js +20 -0
  155. package/test/Components/Content/Blocks/FileDownload.spec.js +25 -0
  156. package/test/Components/Content/Blocks/Video.spec.js +0 -22
  157. package/test/Components/Settings/FileDownloadSettings.spec.js +20 -0
  158. package/test/Components/Settings/UserUploadSettings.spec.js +1 -1
  159. package/utils/index.js +2 -0
@@ -0,0 +1,403 @@
1
+ TN:
2
+ SF:components/Content/Blocks/Accordion.vue
3
+ FNF:0
4
+ FNH:0
5
+ DA:53,1
6
+ DA:54,1
7
+ DA:55,1
8
+ LF:3
9
+ LH:3
10
+ BRF:0
11
+ BRH:0
12
+ end_of_record
13
+ TN:
14
+ SF:components/Content/Blocks/Image.vue
15
+ FNF:0
16
+ FNH:0
17
+ DA:50,1
18
+ DA:51,1
19
+ DA:52,1
20
+ LF:3
21
+ LH:3
22
+ BRF:0
23
+ BRH:0
24
+ end_of_record
25
+ TN:
26
+ SF:components/Content/Blocks/Math.vue
27
+ FNF:0
28
+ FNH:0
29
+ DA:20,1
30
+ DA:21,1
31
+ DA:22,1
32
+ LF:3
33
+ LH:3
34
+ BRF:0
35
+ BRH:0
36
+ end_of_record
37
+ TN:
38
+ SF:components/Content/Blocks/RichText.vue
39
+ FNF:0
40
+ FNH:0
41
+ DA:20,1
42
+ DA:21,1
43
+ DA:22,1
44
+ DA:23,1
45
+ LF:4
46
+ LH:4
47
+ BRF:0
48
+ BRH:0
49
+ end_of_record
50
+ TN:
51
+ SF:components/Content/Blocks/Tab.vue
52
+ FNF:0
53
+ FNH:0
54
+ DA:57,1
55
+ DA:58,1
56
+ DA:59,1
57
+ LF:3
58
+ LH:3
59
+ BRF:0
60
+ BRH:0
61
+ end_of_record
62
+ TN:
63
+ SF:components/Content/Blocks/Table.vue
64
+ FNF:0
65
+ FNH:0
66
+ DA:95,1
67
+ LF:1
68
+ LH:1
69
+ BRF:0
70
+ BRH:0
71
+ end_of_record
72
+ TN:
73
+ SF:components/Content/Blocks/Video.vue
74
+ FNF:0
75
+ FNH:0
76
+ DA:296,1
77
+ DA:297,1
78
+ DA:298,1
79
+ DA:299,1
80
+ LF:4
81
+ LH:4
82
+ BRF:0
83
+ BRH:0
84
+ end_of_record
85
+ TN:
86
+ SF:components/utils/ContentViewer.vue
87
+ FNF:0
88
+ FNH:0
89
+ DA:6,3
90
+ LF:1
91
+ LH:1
92
+ BRF:0
93
+ BRH:0
94
+ end_of_record
95
+ TN:
96
+ SF:components/utils/MathExpressionEditor.vue
97
+ FNF:0
98
+ FNH:0
99
+ DA:107,1
100
+ DA:108,1
101
+ DA:109,1
102
+ LF:3
103
+ LH:3
104
+ BRF:0
105
+ BRH:0
106
+ end_of_record
107
+ TN:
108
+ SF:components/utils/MathLiveWrapper.vue
109
+ FNF:0
110
+ FNH:0
111
+ DA:6,1
112
+ DA:7,1
113
+ DA:8,1
114
+ LF:3
115
+ LH:3
116
+ BRF:0
117
+ BRH:0
118
+ end_of_record
119
+ TN:
120
+ SF:components/utils/TinyMCEWrapper.vue
121
+ FNF:0
122
+ FNH:0
123
+ DA:15,3
124
+ DA:16,3
125
+ LF:2
126
+ LH:2
127
+ BRF:0
128
+ BRH:0
129
+ end_of_record
130
+ TN:
131
+ SF:config/tinymce.config.js
132
+ FNF:0
133
+ FNH:0
134
+ LF:0
135
+ LH:0
136
+ BRF:0
137
+ BRH:0
138
+ end_of_record
139
+ TN:
140
+ SF:helpers/MathHelper.ts
141
+ FN:4,(anonymous_0)
142
+ FN:17,(anonymous_2)
143
+ FN:30,(anonymous_3)
144
+ FN:43,(anonymous_4)
145
+ FN:55,(anonymous_5)
146
+ FN:59,(anonymous_6)
147
+ FN:76,(anonymous_7)
148
+ FN:80,(anonymous_8)
149
+ FN:110,(anonymous_9)
150
+ FN:124,(anonymous_10)
151
+ FN:129,(anonymous_11)
152
+ FN:152,(anonymous_12)
153
+ FN:157,(anonymous_13)
154
+ FN:182,(anonymous_14)
155
+ FN:196,(anonymous_15)
156
+ FN:207,(anonymous_16)
157
+ FN:226,(anonymous_17)
158
+ FNF:17
159
+ FNH:17
160
+ FNDA:5,(anonymous_0)
161
+ FNDA:3,(anonymous_2)
162
+ FNDA:2,(anonymous_3)
163
+ FNDA:2,(anonymous_4)
164
+ FNDA:3,(anonymous_5)
165
+ FNDA:2,(anonymous_6)
166
+ FNDA:3,(anonymous_7)
167
+ FNDA:2,(anonymous_8)
168
+ FNDA:2,(anonymous_9)
169
+ FNDA:3,(anonymous_10)
170
+ FNDA:3,(anonymous_11)
171
+ FNDA:3,(anonymous_12)
172
+ FNDA:2,(anonymous_13)
173
+ FNDA:2,(anonymous_14)
174
+ FNDA:1,(anonymous_15)
175
+ FNDA:2,(anonymous_16)
176
+ FNDA:2,(anonymous_17)
177
+ DA:1,5
178
+ DA:2,5
179
+ DA:3,5
180
+ DA:4,5
181
+ DA:8,5
182
+ DA:17,5
183
+ DA:18,3
184
+ DA:20,3
185
+ DA:30,5
186
+ DA:31,2
187
+ DA:33,2
188
+ DA:43,5
189
+ DA:44,2
190
+ DA:46,2
191
+ DA:55,5
192
+ DA:56,3
193
+ DA:57,3
194
+ DA:58,3
195
+ DA:59,2
196
+ DA:60,2
197
+ DA:67,3
198
+ DA:76,5
199
+ DA:77,3
200
+ DA:78,3
201
+ DA:79,3
202
+ DA:80,2
203
+ DA:81,2
204
+ DA:82,2
205
+ DA:83,1
206
+ DA:90,2
207
+ DA:91,1
208
+ DA:101,3
209
+ DA:110,5
210
+ DA:112,2
211
+ DA:114,2
212
+ DA:124,5
213
+ DA:125,3
214
+ DA:127,3
215
+ DA:128,3
216
+ DA:129,2
217
+ DA:130,3
218
+ DA:142,3
219
+ DA:152,5
220
+ DA:153,3
221
+ DA:155,3
222
+ DA:156,3
223
+ DA:157,2
224
+ DA:158,2
225
+ DA:159,2
226
+ DA:172,3
227
+ DA:182,5
228
+ DA:183,2
229
+ DA:196,5
230
+ DA:197,1
231
+ DA:207,5
232
+ DA:208,2
233
+ DA:210,2
234
+ DA:211,2
235
+ DA:212,1
236
+ DA:213,1
237
+ DA:216,1
238
+ DA:226,5
239
+ DA:227,2
240
+ DA:229,2
241
+ DA:230,2
242
+ DA:231,1
243
+ DA:234,1
244
+ DA:236,5
245
+ LF:68
246
+ LH:68
247
+ BRDA:58,0,0,2
248
+ BRDA:79,1,0,2
249
+ BRDA:82,2,0,1
250
+ BRDA:90,3,0,1
251
+ BRDA:128,4,0,2
252
+ BRDA:156,5,0,2
253
+ BRDA:211,6,0,1
254
+ BRDA:230,7,0,1
255
+ BRF:8
256
+ BRH:8
257
+ end_of_record
258
+ TN:
259
+ SF:helpers/tinymce/plugin.ts
260
+ FN:1,(anonymous_0)
261
+ FN:5,(anonymous_1)
262
+ FN:22,(anonymous_2)
263
+ FN:36,(anonymous_3)
264
+ FN:52,(anonymous_4)
265
+ FN:56,(anonymous_5)
266
+ FN:59,setOnClickEquationContent
267
+ FN:72,(anonymous_7)
268
+ FNF:8
269
+ FNH:0
270
+ FNDA:0,(anonymous_0)
271
+ FNDA:0,(anonymous_1)
272
+ FNDA:0,(anonymous_2)
273
+ FNDA:0,(anonymous_3)
274
+ FNDA:0,(anonymous_4)
275
+ FNDA:0,(anonymous_5)
276
+ FNDA:0,setOnClickEquationContent
277
+ FNDA:0,(anonymous_7)
278
+ DA:1,3
279
+ DA:5,0
280
+ DA:6,0
281
+ DA:23,0
282
+ DA:24,0
283
+ DA:26,0
284
+ DA:32,0
285
+ DA:33,0
286
+ DA:37,0
287
+ DA:39,0
288
+ DA:40,0
289
+ DA:42,0
290
+ DA:43,0
291
+ DA:49,0
292
+ DA:53,0
293
+ DA:56,0
294
+ DA:57,0
295
+ DA:60,0
296
+ DA:61,0
297
+ DA:66,0
298
+ DA:67,0
299
+ DA:68,0
300
+ DA:69,0
301
+ DA:72,0
302
+ DA:73,0
303
+ DA:74,0
304
+ DA:83,3
305
+ LF:27
306
+ LH:2
307
+ BRDA:23,0,0,0
308
+ BRDA:37,1,0,0
309
+ BRDA:37,1,1,0
310
+ BRDA:68,2,0,0
311
+ BRF:4
312
+ BRH:0
313
+ end_of_record
314
+ TN:
315
+ SF:test/mocks.js
316
+ FN:7,(anonymous_0)
317
+ FN:8,(anonymous_1)
318
+ FN:9,(anonymous_2)
319
+ FN:10,(anonymous_3)
320
+ FN:11,(anonymous_4)
321
+ FN:12,(anonymous_5)
322
+ FN:13,(anonymous_6)
323
+ FN:14,(anonymous_7)
324
+ FN:15,(anonymous_8)
325
+ FN:19,(anonymous_9)
326
+ FN:22,(anonymous_10)
327
+ FN:26,(anonymous_11)
328
+ FN:42,(anonymous_12)
329
+ FN:44,(anonymous_13)
330
+ FN:62,(anonymous_14)
331
+ FN:73,(anonymous_15)
332
+ FN:74,(anonymous_16)
333
+ FN:77,(anonymous_17)
334
+ FN:78,(anonymous_18)
335
+ FN:101,(anonymous_19)
336
+ FN:102,(anonymous_20)
337
+ FN:106,(anonymous_21)
338
+ FN:110,(anonymous_22)
339
+ FN:111,(anonymous_23)
340
+ FN:112,(anonymous_24)
341
+ FN:113,(anonymous_25)
342
+ FNF:26
343
+ FNH:1
344
+ FNDA:0,(anonymous_0)
345
+ FNDA:0,(anonymous_1)
346
+ FNDA:0,(anonymous_2)
347
+ FNDA:0,(anonymous_3)
348
+ FNDA:0,(anonymous_4)
349
+ FNDA:0,(anonymous_5)
350
+ FNDA:0,(anonymous_6)
351
+ FNDA:0,(anonymous_7)
352
+ FNDA:0,(anonymous_8)
353
+ FNDA:0,(anonymous_9)
354
+ FNDA:0,(anonymous_10)
355
+ FNDA:0,(anonymous_11)
356
+ FNDA:0,(anonymous_12)
357
+ FNDA:0,(anonymous_13)
358
+ FNDA:0,(anonymous_14)
359
+ FNDA:0,(anonymous_15)
360
+ FNDA:0,(anonymous_16)
361
+ FNDA:2,(anonymous_17)
362
+ FNDA:0,(anonymous_18)
363
+ FNDA:0,(anonymous_19)
364
+ FNDA:0,(anonymous_20)
365
+ FNDA:0,(anonymous_21)
366
+ FNDA:0,(anonymous_22)
367
+ FNDA:0,(anonymous_23)
368
+ FNDA:0,(anonymous_24)
369
+ FNDA:0,(anonymous_25)
370
+ DA:2,7
371
+ DA:3,7
372
+ DA:4,7
373
+ DA:7,7
374
+ DA:8,7
375
+ DA:9,7
376
+ DA:10,7
377
+ DA:11,7
378
+ DA:12,7
379
+ DA:13,7
380
+ DA:14,7
381
+ DA:15,7
382
+ DA:17,7
383
+ DA:20,0
384
+ DA:23,0
385
+ DA:24,0
386
+ DA:26,0
387
+ DA:27,0
388
+ DA:31,0
389
+ DA:38,7
390
+ DA:45,0
391
+ DA:77,2
392
+ DA:78,0
393
+ DA:118,7
394
+ DA:119,7
395
+ DA:120,7
396
+ DA:121,7
397
+ DA:122,7
398
+ DA:124,7
399
+ LF:29
400
+ LH:21
401
+ BRF:0
402
+ BRH:0
403
+ end_of_record
@@ -0,0 +1,5 @@
1
+ export default {
2
+ default_title: 'Download File(s)',
3
+ default_instructions: 'Click on each link to download the file.',
4
+ no_files: 'No files',
5
+ }
@@ -0,0 +1,3 @@
1
+ export default {
2
+ error: "Could not generate question from provided content."
3
+ }
@@ -8,6 +8,8 @@ import open_response_collate from './open_response_collate'
8
8
  import scenarioChoice from './scenario_choice'
9
9
  import email from './email'
10
10
  import block_quote from './block_quote'
11
+ import generate_questions from './generate_questions'
12
+ import file_download from './file_download'
11
13
 
12
14
  export default {
13
15
  user_upload,
@@ -20,4 +22,6 @@ export default {
20
22
  scenario_choice: scenarioChoice,
21
23
  email,
22
24
  block_quote,
25
+ generate_questions,
26
+ file_download,
23
27
  }
@@ -1,9 +1,7 @@
1
1
  export default {
2
2
  user_uploads: 'User Uploads',
3
3
  dialog_view: 'View Uploads',
4
- instructions: 'Instructions:',
5
4
  instructions_none: 'None',
6
- instructions_title: 'Student instructions:',
7
5
  must_save: 'You must save this block before users can make uploads',
8
6
  uploaded: 'Uploaded',
9
7
  name: 'Name',
@@ -0,0 +1,8 @@
1
+ export default {
2
+ file_download: 'File Download',
3
+ no_file_selected: 'No file selected',
4
+ add: 'Add File',
5
+ filename_optional: 'Filename (Optional)',
6
+ place_file: 'Place File',
7
+ display_detailed: 'Display in detailed view',
8
+ }
@@ -11,6 +11,7 @@ import tab from './tab'
11
11
  import email from './email'
12
12
  import block_quote from './block_quote'
13
13
  import horizontal_rule from './horizontal_rule'
14
+ import file_download from './file_download'
14
15
 
15
16
  export default {
16
17
  accordion,
@@ -26,4 +27,5 @@ export default {
26
27
  email,
27
28
  block_quote,
28
29
  horizontal_rule,
30
+ file_download,
29
31
  }
@@ -17,6 +17,7 @@ export default {
17
17
  email: 'Email',
18
18
  block_quote: 'Block Quote',
19
19
  horizontal_rule: 'Divider',
20
+ file_download: 'File Download',
20
21
  },
21
22
  grouping: {
22
23
  basic: 'Basic Components',
@@ -5,6 +5,7 @@ export default {
5
5
  open_response_collate: 'Open Response Collate Settings',
6
6
  image: 'Image Settings',
7
7
  user_upload: 'User Upload Settings',
8
+ file_download: 'File Download Settings',
8
9
  tab_settings: 'Tab Settings',
9
10
  text_editor: 'Text Editor Settings',
10
11
  clickable_icons: 'Clickable Icons Settings',
@@ -18,9 +19,6 @@ export default {
18
19
  email: 'Email Settings',
19
20
  click_to_enter: 'Click here to enter text',
20
21
  block_quote: 'Block Quote Settings',
21
- title: 'Title',
22
- instructions: 'Instructions',
23
- placeholder: 'Enter text here',
24
22
  },
25
23
  upload_file: 'Upload File',
26
24
  alt_image: 'Alternate text for image',
@@ -0,0 +1,5 @@
1
+ export default {
2
+ default_title: 'Descargar archivos',
3
+ default_instructions: 'Haga clic en cada enlace para descargar el archivo.',
4
+ no_files: 'Sin archivos',
5
+ }
@@ -0,0 +1,3 @@
1
+ export default {
2
+ error: "No se pudo generar una pregunta a partir del contenido proporcionado."
3
+ }
@@ -6,8 +6,10 @@ import feedback from './feedback'
6
6
  import open_response from './open_response'
7
7
  import open_response_collate from './open_response_collate'
8
8
  import scenarioChoice from './scenario_choice'
9
- import block_quote from './block_quote'
10
9
  import email from './email'
10
+ import block_quote from './block_quote'
11
+ import file_download from './file_download'
12
+ import generate_questions from './generate_questions'
11
13
 
12
14
  export default {
13
15
  user_upload,
@@ -18,6 +20,8 @@ export default {
18
20
  open_response,
19
21
  open_response_collate,
20
22
  scenario_choice: scenarioChoice,
21
- block_quote,
22
23
  email,
24
+ block_quote,
25
+ file_download,
26
+ generate_questions,
23
27
  }
@@ -1,9 +1,7 @@
1
1
  export default {
2
2
  user_uploads: 'Cargas de usuarios',
3
3
  dialog_view: 'Ver cargas',
4
- instructions: 'Instrucciones:',
5
4
  instructions_none: 'Ninguno',
6
- instructions_title: 'Instrucciones para el estudiante:',
7
5
  must_save:
8
6
  'Debes guardar este bloque antes de que los usuarios puedan realizar cargas',
9
7
  uploaded: 'Subido',
@@ -0,0 +1,8 @@
1
+ export default {
2
+ file_download: 'Descarga de archivos',
3
+ no_file_selected: 'Ningún archivo seleccionado',
4
+ add: 'Agregar archivo',
5
+ filename_optional: 'Nombre de archivo (opcional)',
6
+ place_file: 'Colocar archivo',
7
+ display_detailed: 'Mostrar en vista detallada',
8
+ }
@@ -8,9 +8,10 @@ import open_response_collate from './open_response_collate'
8
8
  import scenarioChoice from './scenario_choice'
9
9
  import accordion from './accordion'
10
10
  import tab from './tab'
11
- import block_quote from './block_quote'
12
11
  import email from './email'
12
+ import block_quote from './block_quote'
13
13
  import horizontal_rule from './horizontal_rule'
14
+ import file_download from './file_download'
14
15
 
15
16
  export default {
16
17
  accordion,
@@ -23,7 +24,8 @@ export default {
23
24
  open_response,
24
25
  open_response_collate,
25
26
  scenario_choice: scenarioChoice,
26
- block_quote,
27
27
  email,
28
+ block_quote,
28
29
  horizontal_rule,
30
+ file_download,
29
31
  }
@@ -17,6 +17,7 @@ export default {
17
17
  email: 'Correo Electrónico',
18
18
  block_quote: 'Cotización en bloque',
19
19
  horizontal_rule: 'Divisor',
20
+ file_download: 'Descarga de archivos',
20
21
  },
21
22
  grouping: {
22
23
  basic: 'Componentes básicos',
@@ -6,6 +6,7 @@ export default {
6
6
  'Abrir configuración de clasificación de respuestas',
7
7
  image: 'Configuración de imagen',
8
8
  user_upload: 'Configuración de carga del usuario',
9
+ file_download: 'Configuración de descarga de archivos',
9
10
  tab_settings: 'Configuración de pestaña',
10
11
  text_editor: 'Configuración del editor de texto',
11
12
  clickable_icons:
@@ -20,9 +21,6 @@ export default {
20
21
  email: 'Ajustes del correo electrónico',
21
22
  click_to_enter: 'Haga clic para ingresar texto',
22
23
  block_quote: 'Configuración de cotización en bloque',
23
- title: 'Título',
24
- instructions: 'Instrucciones',
25
- placeholder: 'Ingrese texto aquí',
26
24
  },
27
25
  upload_file: 'Subir Archivo',
28
26
  alt_image: 'Texto alternativo para imagen',
@@ -0,0 +1,5 @@
1
+ export default {
2
+ default_title: 'Ladda ner fil(er)',
3
+ default_instructions: 'Klicka på varje länk för att ladda ner filen.',
4
+ no_files: 'Inga filer',
5
+ }
@@ -0,0 +1,3 @@
1
+ export default {
2
+ error: "Kunde inte generera en fråga från det tillhandahållna innehållet."
3
+ }
@@ -7,7 +7,9 @@ import open_response from './open_response'
7
7
  import open_response_collate from './open_response_collate'
8
8
  import scenarioChoice from './scenario_choice'
9
9
  import block_quote from './block_quote'
10
+ import file_download from './file_download'
10
11
  import email from './email'
12
+ import generate_questions from './generate_questions'
11
13
 
12
14
  export default {
13
15
  user_upload,
@@ -19,5 +21,7 @@ export default {
19
21
  open_response_collate,
20
22
  scenario_choice: scenarioChoice,
21
23
  block_quote,
24
+ file_download,
22
25
  email,
26
+ generate_questions,
23
27
  }
@@ -1,9 +1,7 @@
1
1
  export default {
2
2
  user_uploads: 'Användaruppladdningar',
3
3
  dialog_view: 'Visa uppladdningar',
4
- instructions: 'Instruktioner:',
5
4
  instructions_none: 'Ingen',
6
- instructions_title: 'Elev instruktioner:',
7
5
  must_save:
8
6
  'Du måste spara detta block innan användare kan göra uppladdningar',
9
7
  uploaded: 'Uppladdat',
@@ -0,0 +1,8 @@
1
+ export default {
2
+ file_download: 'Filhämtning',
3
+ no_file_selected: 'Ingen fil har valts',
4
+ add: 'Lägg till fil',
5
+ filename_optional: 'Filnamn (valfritt)',
6
+ place_file: 'Placera fil',
7
+ display_detailed: 'Visa i detaljerad vy',
8
+ }
@@ -8,9 +8,10 @@ import open_response_collate from './open_response_collate'
8
8
  import scenarioChoice from './scenario_choice'
9
9
  import accordion from './accordion'
10
10
  import tab from './tab'
11
- import block_quote from './block_quote'
12
11
  import email from './email'
12
+ import block_quote from './block_quote'
13
13
  import horizontal_rule from './horizontal_rule'
14
+ import file_download from './file_download'
14
15
 
15
16
  export default {
16
17
  accordion,
@@ -23,7 +24,8 @@ export default {
23
24
  open_response,
24
25
  open_response_collate,
25
26
  scenario_choice: scenarioChoice,
26
- block_quote,
27
27
  email,
28
+ block_quote,
28
29
  horizontal_rule,
30
+ file_download,
29
31
  }
@@ -17,6 +17,7 @@ export default {
17
17
  email: 'E-Post',
18
18
  block_quote: 'Block citat',
19
19
  horizontal_rule: 'Delare',
20
+ file_download: 'Filhämtning',
20
21
  },
21
22
  grouping: {
22
23
  basic: 'Basic Components',
@@ -4,7 +4,8 @@ export default {
4
4
  open_response: 'Öppna svarsinställningar',
5
5
  open_response_collate: 'Öppna inställningar för svarssortering',
6
6
  image: 'Bildinställningar',
7
- user_upload: 'User Upload Settings',
7
+ user_upload: 'Användaruppladdningsinställningar',
8
+ file_download: 'Filnedladdningsinställningar',
8
9
  tab_settings: 'Flikinställningar',
9
10
  text_editor: 'Textredigeringsinställningar',
10
11
  clickable_icons: 'Inställningar för klickbara ikoner',
@@ -18,9 +19,6 @@ export default {
18
19
  email: 'E-postinställningar',
19
20
  click_to_enter: 'Klicka för att skriva in text',
20
21
  block_quote: 'Blockera offertinställningar',
21
- title: 'Titel',
22
- instructions: 'Instruktioner',
23
- placeholder: 'Skriv in text här',
24
22
  },
25
23
  upload_file: 'Ladda upp fil',
26
24
  alt_image: 'Alternativ text till bild',