@windward/core 0.0.3 → 0.0.6

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 (208) hide show
  1. package/.vscode/settings.json +3 -0
  2. package/README.md +2 -1
  3. package/components/Content/Blocks/ClickableIcons.vue +12 -3
  4. package/components/Content/Blocks/Feedback.vue +19 -11
  5. package/components/Content/Blocks/FeedbackTemplates/FeedbackQuestionLikert.vue +6 -6
  6. package/components/Content/Blocks/FeedbackTemplates/FeedbackQuestionOpenResponse.vue +11 -10
  7. package/components/Content/Blocks/FeedbackTemplates/FeedbackQuestionTrueFalse.vue +3 -3
  8. package/components/Content/Blocks/Video.vue +2 -2
  9. package/components/Navigation/Items/AskTheExpert.vue +173 -0
  10. package/components/Settings/ClickableIconsSettings.vue +10 -5
  11. package/components/Settings/FeedbackSettings.vue +3 -3
  12. package/components/Settings/UserUploadSettings.vue +2 -2
  13. package/components/Settings/VideoSettings.vue +6 -6
  14. package/components/utils/ContentViewer.vue +15 -4
  15. package/components/utils/FillInBlank/FillInBlankInput.vue +208 -0
  16. package/components/utils/FillInBlank/FillInTheBlanksManager.vue +98 -0
  17. package/components/utils/MathExpressionEditor.vue +8 -6
  18. package/components/utils/TinyMCEWrapper.vue +48 -8
  19. package/components/utils/assets/tinymce/css/content.scss +9 -0
  20. package/components/utils/glossary/CourseGlossary.vue +12 -8
  21. package/components/utils/glossary/CourseGlossaryForm.vue +24 -5
  22. package/helpers/FillInBlankHelper.ts +55 -0
  23. package/helpers/GlossaryHelper.ts +4 -4
  24. package/helpers/tinymce/plugin.ts +99 -4
  25. package/i18n/en-US/components/content/blocks/feedback.ts +3 -0
  26. package/i18n/en-US/components/index.ts +0 -1
  27. package/i18n/en-US/components/navigation/ask_the_expert.ts +11 -0
  28. package/i18n/en-US/components/navigation/index.ts +2 -0
  29. package/i18n/en-US/components/utils/FillInBlank/FillInBlankInput.ts +13 -0
  30. package/i18n/en-US/components/utils/FillInBlank/FillInTheBlanksManager.ts +11 -0
  31. package/i18n/en-US/components/utils/FillInBlank/index.ts +6 -0
  32. package/i18n/en-US/components/utils/index.ts +2 -1
  33. package/i18n/en-US/components/utils/tiny_mce_wrapper.ts +1 -0
  34. package/i18n/en-US/shared/menu.ts +1 -0
  35. package/i18n/es-ES/components/content/blocks/feedback.ts +29 -0
  36. package/i18n/es-ES/components/content/blocks/image.ts +5 -0
  37. package/i18n/es-ES/components/content/blocks/index.ts +15 -0
  38. package/i18n/es-ES/components/content/blocks/tab.ts +4 -0
  39. package/i18n/es-ES/components/content/blocks/table.ts +4 -0
  40. package/i18n/es-ES/components/content/blocks/user_upload.ts +13 -0
  41. package/i18n/es-ES/components/content/blocks/video.ts +55 -0
  42. package/i18n/es-ES/components/content/index.ts +5 -0
  43. package/i18n/es-ES/components/index.ts +12 -0
  44. package/i18n/es-ES/components/navigation/ask_the_expert.ts +11 -0
  45. package/i18n/es-ES/components/navigation/image.ts +4 -0
  46. package/i18n/es-ES/components/navigation/index.ts +7 -0
  47. package/i18n/es-ES/components/navigation/user_upload.ts +3 -0
  48. package/i18n/es-ES/components/settings/clickable_icon.ts +10 -0
  49. package/i18n/es-ES/components/settings/image.ts +1 -0
  50. package/i18n/es-ES/components/settings/index.ts +13 -0
  51. package/i18n/es-ES/components/settings/text_editor.ts +7 -0
  52. package/i18n/es-ES/components/settings/user_upload.ts +11 -0
  53. package/i18n/es-ES/components/settings/video.ts +13 -0
  54. package/i18n/es-ES/components/utils/index.ts +5 -0
  55. package/i18n/es-ES/components/utils/tiny_mce_wrapper.ts +18 -0
  56. package/i18n/es-ES/index.ts +16 -0
  57. package/i18n/es-ES/modules/index.ts +5 -0
  58. package/i18n/es-ES/pages/glossary.ts +7 -0
  59. package/i18n/es-ES/pages/index.ts +7 -0
  60. package/i18n/es-ES/pages/user_upload.ts +3 -0
  61. package/i18n/es-ES/shared/content_blocks.ts +20 -0
  62. package/i18n/es-ES/shared/index.ts +11 -0
  63. package/i18n/es-ES/shared/menu.ts +3 -0
  64. package/i18n/es-ES/shared/permission.ts +15 -0
  65. package/i18n/es-ES/shared/settings.ts +16 -0
  66. package/i18n/sv-SE/components/content/blocks/feedback.ts +29 -0
  67. package/i18n/sv-SE/components/content/blocks/image.ts +5 -0
  68. package/i18n/sv-SE/components/content/blocks/index.ts +15 -0
  69. package/i18n/sv-SE/components/content/blocks/tab.ts +4 -0
  70. package/i18n/sv-SE/components/content/blocks/table.ts +4 -0
  71. package/i18n/sv-SE/components/content/blocks/user_upload.ts +13 -0
  72. package/i18n/sv-SE/components/content/blocks/video.ts +53 -0
  73. package/i18n/sv-SE/components/content/index.ts +5 -0
  74. package/i18n/sv-SE/components/index.ts +12 -0
  75. package/i18n/sv-SE/components/navigation/ask_the_expert.ts +11 -0
  76. package/i18n/sv-SE/components/navigation/image.ts +4 -0
  77. package/i18n/sv-SE/components/navigation/index.ts +7 -0
  78. package/i18n/sv-SE/components/navigation/user_upload.ts +3 -0
  79. package/i18n/sv-SE/components/settings/clickable_icon.ts +10 -0
  80. package/i18n/sv-SE/components/settings/image.ts +1 -0
  81. package/i18n/sv-SE/components/settings/index.ts +13 -0
  82. package/i18n/sv-SE/components/settings/text_editor.ts +7 -0
  83. package/i18n/sv-SE/components/settings/user_upload.ts +11 -0
  84. package/i18n/sv-SE/components/settings/video.ts +13 -0
  85. package/i18n/sv-SE/components/utils/index.ts +5 -0
  86. package/i18n/sv-SE/components/utils/tiny_mce_wrapper.ts +18 -0
  87. package/i18n/sv-SE/index.ts +16 -0
  88. package/i18n/sv-SE/modules/index.ts +5 -0
  89. package/i18n/sv-SE/pages/glossary.ts +7 -0
  90. package/i18n/sv-SE/pages/index.ts +7 -0
  91. package/i18n/sv-SE/pages/user_upload.ts +3 -0
  92. package/{lib/i18n/en-US/shared/content_blocks.js → i18n/sv-SE/shared/content_blocks.ts} +8 -9
  93. package/i18n/sv-SE/shared/index.ts +11 -0
  94. package/i18n/sv-SE/shared/menu.ts +3 -0
  95. package/i18n/sv-SE/shared/permission.ts +15 -0
  96. package/i18n/sv-SE/shared/settings.ts +15 -0
  97. package/package.json +1 -1
  98. package/pages/glossary.vue +2 -2
  99. package/pages/userUpload.vue +1 -1
  100. package/plugin.js +28 -3
  101. package/.idea/codeStyles/Project.xml +0 -58
  102. package/.idea/codeStyles/codeStyleConfig.xml +0 -5
  103. package/.idea/inspectionProfiles/Project_Default.xml +0 -6
  104. package/.idea/modules.xml +0 -8
  105. package/.idea/php-docker-settings.xml +0 -24
  106. package/.idea/php.xml +0 -19
  107. package/.idea/vcs.xml +0 -6
  108. package/.idea/watcherTasks.xml +0 -4
  109. package/.idea/windward-ui-plugin-core.iml +0 -8
  110. package/coverage/clover.xml +0 -223
  111. package/coverage/coverage-final.json +0 -16
  112. package/coverage/lcov-report/base.css +0 -224
  113. package/coverage/lcov-report/block-navigation.js +0 -87
  114. package/coverage/lcov-report/components/Content/Blocks/Accordion.vue.html +0 -430
  115. package/coverage/lcov-report/components/Content/Blocks/Image.vue.html +0 -394
  116. package/coverage/lcov-report/components/Content/Blocks/Math.vue.html +0 -262
  117. package/coverage/lcov-report/components/Content/Blocks/RichText.vue.html +0 -295
  118. package/coverage/lcov-report/components/Content/Blocks/Tab.vue.html +0 -415
  119. package/coverage/lcov-report/components/Content/Blocks/Table.vue.html +0 -667
  120. package/coverage/lcov-report/components/Content/Blocks/Video.vue.html +0 -2275
  121. package/coverage/lcov-report/components/Content/Blocks/index.html +0 -206
  122. package/coverage/lcov-report/components/utils/ContentViewer.vue.html +0 -199
  123. package/coverage/lcov-report/components/utils/MathExpressionEditor.vue.html +0 -919
  124. package/coverage/lcov-report/components/utils/MathLiveWrapper.vue.html +0 -343
  125. package/coverage/lcov-report/components/utils/TinyMCEWrapper.vue.html +0 -271
  126. package/coverage/lcov-report/components/utils/index.html +0 -161
  127. package/coverage/lcov-report/config/index.html +0 -116
  128. package/coverage/lcov-report/config/tinymce.config.js.html +0 -493
  129. package/coverage/lcov-report/favicon.png +0 -0
  130. package/coverage/lcov-report/helpers/MathHelper.ts.html +0 -793
  131. package/coverage/lcov-report/helpers/index.html +0 -116
  132. package/coverage/lcov-report/helpers/tinymce/index.html +0 -116
  133. package/coverage/lcov-report/helpers/tinymce/plugin.ts.html +0 -334
  134. package/coverage/lcov-report/index.html +0 -191
  135. package/coverage/lcov-report/prettify.css +0 -1
  136. package/coverage/lcov-report/prettify.js +0 -2
  137. package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  138. package/coverage/lcov-report/sorter.js +0 -196
  139. package/coverage/lcov-report/test/index.html +0 -116
  140. package/coverage/lcov-report/test/mocks.js.html +0 -457
  141. package/coverage/lcov.info +0 -403
  142. package/lib/helpers/GlossaryHelper.d.ts +0 -9
  143. package/lib/helpers/GlossaryHelper.js +0 -118
  144. package/lib/helpers/GlossaryTerm.d.ts +0 -10
  145. package/lib/helpers/GlossaryTerm.js +0 -22
  146. package/lib/helpers/MathHelper.d.ts +0 -99
  147. package/lib/helpers/MathHelper.js +0 -194
  148. package/lib/helpers/tinymce/plugin.d.ts +0 -2
  149. package/lib/helpers/tinymce/plugin.js +0 -86
  150. package/lib/i18n/en-US/components/content/blocks/image.d.ts +0 -6
  151. package/lib/i18n/en-US/components/content/blocks/image.js +0 -7
  152. package/lib/i18n/en-US/components/content/blocks/index.d.ts +0 -75
  153. package/lib/i18n/en-US/components/content/blocks/index.js +0 -14
  154. package/lib/i18n/en-US/components/content/blocks/tab.d.ts +0 -5
  155. package/lib/i18n/en-US/components/content/blocks/tab.js +0 -6
  156. package/lib/i18n/en-US/components/content/blocks/table.d.ts +0 -5
  157. package/lib/i18n/en-US/components/content/blocks/table.js +0 -6
  158. package/lib/i18n/en-US/components/content/blocks/user_upload.d.ts +0 -13
  159. package/lib/i18n/en-US/components/content/blocks/user_upload.js +0 -14
  160. package/lib/i18n/en-US/components/content/blocks/video.d.ts +0 -48
  161. package/lib/i18n/en-US/components/content/blocks/video.js +0 -49
  162. package/lib/i18n/en-US/components/content/index.d.ts +0 -77
  163. package/lib/i18n/en-US/components/content/index.js +0 -6
  164. package/lib/i18n/en-US/components/index.d.ts +0 -140
  165. package/lib/i18n/en-US/components/index.js +0 -12
  166. package/lib/i18n/en-US/components/navigation/image.d.ts +0 -5
  167. package/lib/i18n/en-US/components/navigation/image.js +0 -6
  168. package/lib/i18n/en-US/components/navigation/index.d.ts +0 -10
  169. package/lib/i18n/en-US/components/navigation/index.js +0 -8
  170. package/lib/i18n/en-US/components/navigation/user_upload.d.ts +0 -4
  171. package/lib/i18n/en-US/components/navigation/user_upload.js +0 -5
  172. package/lib/i18n/en-US/components/settings/clickable_icon.d.ts +0 -6
  173. package/lib/i18n/en-US/components/settings/clickable_icon.js +0 -7
  174. package/lib/i18n/en-US/components/settings/image.d.ts +0 -2
  175. package/lib/i18n/en-US/components/settings/image.js +0 -3
  176. package/lib/i18n/en-US/components/settings/index.d.ts +0 -39
  177. package/lib/i18n/en-US/components/settings/index.js +0 -14
  178. package/lib/i18n/en-US/components/settings/text_editor.d.ts +0 -8
  179. package/lib/i18n/en-US/components/settings/text_editor.js +0 -9
  180. package/lib/i18n/en-US/components/settings/user_upload.d.ts +0 -12
  181. package/lib/i18n/en-US/components/settings/user_upload.js +0 -13
  182. package/lib/i18n/en-US/components/settings/video.d.ts +0 -13
  183. package/lib/i18n/en-US/components/settings/video.js +0 -14
  184. package/lib/i18n/en-US/components/utils/index.d.ts +0 -15
  185. package/lib/i18n/en-US/components/utils/index.js +0 -6
  186. package/lib/i18n/en-US/components/utils/tiny_mce_wrapper.d.ts +0 -13
  187. package/lib/i18n/en-US/components/utils/tiny_mce_wrapper.js +0 -14
  188. package/lib/i18n/en-US/index.d.ts +0 -197
  189. package/lib/i18n/en-US/index.js +0 -16
  190. package/lib/i18n/en-US/modules/index.d.ts +0 -2
  191. package/lib/i18n/en-US/modules/index.js +0 -6
  192. package/lib/i18n/en-US/pages/glossary.d.ts +0 -8
  193. package/lib/i18n/en-US/pages/glossary.js +0 -9
  194. package/lib/i18n/en-US/pages/index.d.ts +0 -13
  195. package/lib/i18n/en-US/pages/index.js +0 -8
  196. package/lib/i18n/en-US/pages/user_upload.d.ts +0 -4
  197. package/lib/i18n/en-US/pages/user_upload.js +0 -5
  198. package/lib/i18n/en-US/shared/content_blocks.d.ts +0 -20
  199. package/lib/i18n/en-US/shared/index.d.ts +0 -39
  200. package/lib/i18n/en-US/shared/index.js +0 -10
  201. package/lib/i18n/en-US/shared/menu.d.ts +0 -4
  202. package/lib/i18n/en-US/shared/menu.js +0 -5
  203. package/lib/i18n/en-US/shared/settings.d.ts +0 -15
  204. package/lib/i18n/en-US/shared/settings.js +0 -16
  205. package/lib/i18n/en-US.d.ts +0 -197
  206. package/lib/i18n/en-US.js +0 -15
  207. package/lib/models/UserFileAsset.d.ts +0 -5
  208. package/lib/models/UserFileAsset.js +0 -37
@@ -1,5 +1,6 @@
1
- const MathEditorPlugin = function (editor: any) {
1
+ const WindwardPlugins = function (editor: any) {
2
2
  let formula: any
3
+ let fillInBlank: any
3
4
  // ----- Events ----- //
4
5
  editor.ui.registry.addIcon('insertMath', '<svg x="0px" y="0px"width="20px" height="20px" viewBox="0 0 445.878 445.878" style="enable-background:new 0 0 445.878 445.878;">' +
5
6
  '<path d="M426.024,86.447H209.705l-84.911,298.911c-2.568,7.967-9.854,13.482-18.22,13.771c-0.236,0-0.464,0.006-0.688,0.006 c-8.092,0-15.41-4.924-18.436-12.478l-34.714-86.782H19.851C8.884,299.876,0,290.986,0,280.022 c0-10.965,8.893-19.854,19.851-19.854H66.18c8.109,0,15.421,4.941,18.436,12.483l19.237,48.09l72.472-260.218 c2.639-8.213,10.279-13.781,18.903-13.781h230.798c10.97,0,19.854,8.89,19.854,19.851S436.988,86.447,426.024,86.447z M436.723,353.227l-78.259-87.904l74.576-82.783c1.318-1.454,1.638-3.547,0.857-5.341c-0.804-1.791-2.577-2.946-4.54-2.946h-47.18 c-1.442,0-2.802,0.629-3.759,1.72l-50.059,58.047l-49.674-58.029c-0.939-1.103-2.317-1.738-3.771-1.738h-49.334 c-1.956,0-3.729,1.149-4.521,2.929c-0.81,1.785 0.479,3.875,0.824,5.332l73.743,82.81l-77.641,87.923 c-1.297,1.465-1.605,3.552 0.813,5.325c0.813,1.785,2.586,2.92,4.528,2.92h48.9c1.472,0,2.867-0.65,3.807-1.785l51.819-62.181 l53.05,62.229c0.951,1.11,2.328,1.743,3.782,1.743h49.97c1.962,0,3.735-1.141,4.527-2.926 C438.354,356.779,438.035,354.692,436.723,353.227z"/>' +
@@ -41,7 +42,7 @@ const MathEditorPlugin = function (editor: any) {
41
42
  formula = message.content
42
43
  break
43
44
  case 'math-plugin-mounted':
44
- window.parent.postMessage({ latex: data.latex }, '*')
45
+ window.postMessage({ latex: data.latex ?? '' }, '*')
45
46
  break
46
47
  }
47
48
  },
@@ -63,6 +64,11 @@ const MathEditorPlugin = function (editor: any) {
63
64
  })
64
65
  editor.on('init', function () {
65
66
  setOnClickEquationContent(editor)
67
+ setOnClickFillInBlank(editor)
68
+ })
69
+ editor.on('change', function () {
70
+ setOnClickEquationContent(editor)
71
+ setOnClickFillInBlank(editor)
66
72
  })
67
73
  function setOnClickEquationContent(editor: any) {
68
74
  const tinymceDoc = editor.getDoc()
@@ -86,7 +92,96 @@ const MathEditorPlugin = function (editor: any) {
86
92
  }
87
93
  }
88
94
  }
89
- }
90
95
 
91
96
 
92
- export { MathEditorPlugin }
97
+ editor.addCommand('fib-window', function (data: any) {
98
+
99
+ return editor.windowManager.openUrl({
100
+ url: '/plugins/tinymce/FIB',
101
+ title: 'Fill in the blank',
102
+ width: 1024,
103
+ height: 768,
104
+ buttons: [
105
+ {
106
+ type: 'cancel',
107
+ text: 'cancel',
108
+ },
109
+ {
110
+ type: 'custom',
111
+ text: 'submit',
112
+ primary: true,
113
+ },
114
+ ],
115
+ onAction: () => {
116
+ if (data.currentTarget) {
117
+ editor.selection.select(data.currentTarget);
118
+ }
119
+ editor.selection.setContent(
120
+ `<span class='windward-fill-blank' data-feedback =`+ fillInBlank.feedback +` >` +
121
+ fillInBlank.answer +
122
+ `</span>`
123
+ )
124
+
125
+ editor.windowManager.close()
126
+ setOnClickFillInBlank(editor);
127
+ },
128
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
129
+ onMessage: (instance: any, message: any) => {
130
+ switch (message.mceAction) {
131
+ case 'fib-insert':
132
+ fillInBlank = { answer: message.content.answer, feedback: message.content.feedback }
133
+ break
134
+ case 'fib-plugin-mounted':
135
+ window.parent.postMessage({ answer: data.answer ,
136
+ feedback: data.feedback, }, '*')
137
+ break
138
+ }
139
+ },
140
+ })
141
+ })
142
+
143
+ editor.ui.registry.addIcon('insertFIB', '<svg width="20px" height="20px" viewBox="0 0 24 24"><path d="M17,7H22V17H17V19A1,1 0 0,0 18,20H20V22H17.5C16.95,22 16,21.55 16,21C16,21.55 15.05,22 14.5,22H12V20H14A1,1 0 0,0 15,19V5A1,1 0 0,0 14,4H12V2H14.5C15.05,2 16,2.45 16,3C16,2.45 16.95,2 17.5,2H20V4H18A1,1 0 0,0 17,5V7M2,7H13V9H4V15H13V17H2V7M20,15V9H17V15H20Z" /></svg>' );
144
+ /* Add a button that opens a window */
145
+ editor.ui.registry.addButton('fibButton', {
146
+ icon: 'insertFIB',
147
+ onAction: function () {
148
+ /* Open window */
149
+ editor.execCommand('fib-window', true)
150
+
151
+ }
152
+ });
153
+ editor.ui.registry.addMenuItem('FIB', {
154
+ text: 'FIll in the blank',
155
+ icon: 'insertFIB',
156
+ onAction: () => {
157
+ editor.execCommand('fib-window', true)
158
+ },
159
+ })
160
+
161
+ function setOnClickFillInBlank(editor: any) {
162
+ const tinymceDoc = editor.getDoc()
163
+ const mqSpan = tinymceDoc.getElementsByClassName(
164
+ 'windward-fill-blank'
165
+ )
166
+
167
+ // Add onclick listener to all equation content
168
+ for (const fib of mqSpan) {
169
+ fib.contentEditable = 'true'
170
+ if (fib.onclick) {
171
+ continue
172
+ }
173
+
174
+ fib.onclick = (event: any) => {
175
+ event.stopPropagation()
176
+ editor.execCommand('fib-window', {
177
+ answer: event.target.innerText,
178
+ feedback: event.target.getAttribute('data-feedback'),
179
+ currentTarget: event.target,
180
+ })
181
+ }
182
+ }
183
+ }
184
+
185
+ }
186
+
187
+ export { WindwardPlugins }
@@ -4,6 +4,8 @@ export default {
4
4
  module: 'Module',
5
5
  preset: 'Presets',
6
6
  likert: 'Add standart likert questions',
7
+ likert_directions:
8
+ 'Click to choose first option and then use tab to switch button groups and then arrows to navigate between options.',
7
9
  contact_mindedge: 'Contact Mindedge question',
8
10
  open_response: 'Open Response',
9
11
  response_prompt: 'Provide course feedback below',
@@ -14,6 +16,7 @@ export default {
14
16
  fill_out: 'Please fill out all fields',
15
17
  yes: 'Yes',
16
18
  no: 'No',
19
+ enter: 'Enter Text',
17
20
  description:
18
21
  "This feedback form is optional. However, we would love to hear your thoughts on this learning experience. We take your feedback very seriously, reading and reviewing each entry every day, and we are always trying to improve. Thank you for any comments you'd like to share.",
19
22
  sent_feedback:
@@ -3,7 +3,6 @@ import settings from './settings'
3
3
  import navigation from './navigation/index'
4
4
  import utils from './utils/index'
5
5
 
6
-
7
6
  export default {
8
7
  content,
9
8
  settings,
@@ -0,0 +1,11 @@
1
+ export default {
2
+ ask_expert: 'Ask the Expert',
3
+ config: 'Configuration',
4
+ recipient_email: 'Recipient Email',
5
+ course_info: 'Course and Page Name',
6
+ student_section: 'Student Section',
7
+ subject: 'Subject',
8
+ question: 'Question',
9
+ description:
10
+ 'Ask an expert a question that is specific to the course content',
11
+ }
@@ -1,7 +1,9 @@
1
+ import ask_the_expert from './ask_the_expert'
1
2
  import user_upload from './user_upload'
2
3
  import image from './image'
3
4
 
4
5
  export default {
5
6
  user_upload,
6
7
  image,
8
+ ask_the_expert,
7
9
  }
@@ -0,0 +1,13 @@
1
+ export default {
2
+ add_answer: 'Add Answer',
3
+ answer: 'Answer',
4
+ check: 'Check',
5
+ check_answer: 'Click to check answer',
6
+ close: 'Close',
7
+ correct: 'Correct',
8
+ default_description: 'default description',
9
+ incorrect: 'Incorrect',
10
+ input_incorrect: "'{0}' is incorrect",
11
+ reset: 'reset',
12
+ try_again: 'Try Again',
13
+ }
@@ -0,0 +1,11 @@
1
+ export default {
2
+ close: 'Close',
3
+ try_again: 'Try Again',
4
+ correct: 'Correct',
5
+ incorrect: 'Incorrect',
6
+ reset: 'reset',
7
+ check: 'Check',
8
+ add_answer: 'Add Answer',
9
+ default_description: 'default description',
10
+ answer: 'Answer',
11
+ }
@@ -0,0 +1,6 @@
1
+ import fill_in_blank_input from './FillInBlankInput'
2
+ import fill_in_the_blank_manager from './FillInTheBlanksManager'
3
+ export default {
4
+ fill_in_blank_input,
5
+ fill_in_the_blank_manager,
6
+ }
@@ -1,5 +1,6 @@
1
1
  import tiny_mce_wrapper from './tiny_mce_wrapper'
2
-
2
+ import fill_in_the_blank from './FillInBlank/index'
3
3
  export default {
4
4
  tiny_mce_wrapper,
5
+ fill_in_the_blank,
5
6
  }
@@ -4,6 +4,7 @@ export default {
4
4
  alternate_forms: 'Alternate Forms',
5
5
  definition: 'definition',
6
6
  related_terms: 'related terms',
7
+ fill_blank: 'Fill in the blank',
7
8
  table: {
8
9
  default: 'Default Table',
9
10
  default_white_line: 'Default Table white lines',
@@ -1,3 +1,4 @@
1
1
  export default {
2
2
  course_glossary: 'Course Glossary',
3
+ ask_the_expert: 'Ask the Expert',
3
4
  }
@@ -0,0 +1,29 @@
1
+ export default {
2
+ feedback: 'Comentario',
3
+ course: 'Curso',
4
+ module: 'Módulo',
5
+ preset: 'Preajustes',
6
+ likert: 'Agregar preguntas tipo Likert estándar',
7
+ contact_mindedge: 'Póngase en contacto con Mindedge pregunta',
8
+ open_response: 'Respuesta abierta',
9
+ response_prompt: 'Proporcione comentarios sobre el curso a continuación',
10
+ no_response_entered: 'No se ingresó ninguna respuesta',
11
+ required: 'Debe seleccionar una opción para enviar',
12
+ save: 'Enviar comentarios',
13
+ reset: 'Reiniciar',
14
+ fill_out: 'Por favor rellene todos los campos',
15
+ yes: 'Si',
16
+ no: 'No',
17
+ enter: 'Ingrese texto',
18
+ description:
19
+ 'Este formulario de comentarios es opcional. Sin embargo, nos encantaría escuchar sus pensamientos sobre esta experiencia de aprendizaje. Tomamos sus comentarios muy en serio, leemos y revisamos cada entrada todos los días, y siempre estamos tratando de mejorar. Gracias por cualquier comentario que quieras compartir.',
20
+ sent_feedback:
21
+ 'Gracias por enviar comentarios. Su opinión es muy importante y valiosa para nosotros. Si sugirió mejoras en sus comentarios, consideraremos esas sugerencias seriamente. La calidad del curso y la facilidad de uso son nuestras principales prioridades.',
22
+ scale: {
23
+ strongly_agree: 'Totalmente de acuerdo',
24
+ agree: 'Aceptar',
25
+ neutral: 'Neutral',
26
+ disagree: 'Discrepar',
27
+ strongly_disagree: 'Muy en desacuerdo',
28
+ },
29
+ }
@@ -0,0 +1,5 @@
1
+ export default {
2
+ title: 'Elige una imagen',
3
+ description: 'Elige una imagen para mostrar',
4
+ no_image_url: 'No hay imagen seleccionada ',
5
+ }
@@ -0,0 +1,15 @@
1
+ import user_upload from './user_upload'
2
+ import image from './image'
3
+ import video from './video'
4
+ import table from './table'
5
+ import tab from './tab'
6
+ import feedback from './feedback'
7
+
8
+ export default {
9
+ user_upload,
10
+ image,
11
+ video,
12
+ table,
13
+ tab,
14
+ feedback,
15
+ }
@@ -0,0 +1,4 @@
1
+ export default {
2
+ add_tab: 'Añadir pestaña',
3
+ delete_tab: 'Borrar pestaña',
4
+ }
@@ -0,0 +1,4 @@
1
+ export default {
2
+ column: 'columna',
3
+ row: 'celda',
4
+ }
@@ -0,0 +1,13 @@
1
+ export default {
2
+ user_uploads: 'Cargas de usuarios',
3
+ dialog_view: 'Ver cargas',
4
+ instructions: 'Instrucciones:',
5
+ instructions_none: 'Ninguno',
6
+ instructions_title: 'Instrucciones para el estudiante:',
7
+ must_save:
8
+ 'Debes guardar este bloque antes de que los usuarios puedan realizar cargas',
9
+ uploaded: 'Subido',
10
+ name: 'Nombre',
11
+ size: 'Tamaño',
12
+ download: 'Descargar',
13
+ }
@@ -0,0 +1,55 @@
1
+ export default {
2
+ tabs: {
3
+ video: 'Vídeo',
4
+ poster: 'Póster',
5
+ preroll: 'Preroll',
6
+ postroll: 'Desplazamiento posterior',
7
+ },
8
+ forms: {
9
+ unsaved: 'Tiene cambios sin guardar. ¿Te gustaría salvarlos?',
10
+ cancel: 'Cancelar',
11
+ confirm: 'Confirmar',
12
+ },
13
+ video: {
14
+ title: 'Archivo de vídeo',
15
+ configure_blurb:
16
+ 'Cargue un archivo de video (.mp4 o .webm), elija uno del administrador de archivos o agréguelo a través de la URL pública',
17
+ not_configured_title: 'Video no configurado',
18
+ edit_prompt: 'Editar este bloque para empezar',
19
+ autoplay: 'Reproducción automática al cargar',
20
+ controls: 'Mostrar controles',
21
+ loop: 'Vídeo en bucle',
22
+ muted: 'Empezar silenciado',
23
+ disablepictureinpicture: 'Desactivar botón de imagen en imagen',
24
+ poster: 'Póster de vídeo',
25
+ playback_rates: 'Tasas de reproducción',
26
+ rewind: 'Permitir rebobinado de 10 segundos',
27
+ playsinline:
28
+ 'Deshabilitar pantalla completa y forzar visualización en línea',
29
+ captionsmenu: 'Mostrar el interactivo menú de subtítulos',
30
+ playlistmenu:
31
+ 'Mostrar menú de lista de reproducción (requiere más de 1 video seleccionado para mostrar)',
32
+ playlistautoadvance:
33
+ 'Avanzar automáticamente la lista de reproducción al final de los medios',
34
+ },
35
+ caption: {
36
+ title: 'Archivo de subtítulos',
37
+ configure_blurb:
38
+ 'Cargue un archivo de subtítulos (.vtt o .xml), elija uno del administrador de archivos o agréguelo a través de la URL pública',
39
+ },
40
+ poster: {
41
+ title: 'Archivo de imagen de póster',
42
+ configure_blurb:
43
+ 'Cargue un archivo de póster (.png o .jpg), elija uno del administrador de archivos o agréguelo a través de la URL pública. Esta es la imagen que aparece antes de reproducir el video.',
44
+ },
45
+ preroll: {
46
+ title: 'Archivo de vídeo predesplazamiento',
47
+ configure_blurb:
48
+ 'Cargue un archivo de video pre-roll (.mp4 o .webm), elija uno del administrador de archivos o agréguelo a través de la URL pública',
49
+ },
50
+ postroll: {
51
+ title: 'Archivo de vídeo Post-roll',
52
+ configure_blurb:
53
+ 'Cargue un archivo de video post-roll (.mp4 o .webm), elija uno del administrador de archivos o agréguelo a través de la URL pública',
54
+ },
55
+ }
@@ -0,0 +1,5 @@
1
+ import blocks from './blocks'
2
+
3
+ export default {
4
+ blocks,
5
+ }
@@ -0,0 +1,12 @@
1
+ import content from './content'
2
+ import settings from './settings'
3
+ import navigation from './navigation/index'
4
+ import utils from './utils/index'
5
+
6
+
7
+ export default {
8
+ content,
9
+ settings,
10
+ navigation,
11
+ utils,
12
+ }
@@ -0,0 +1,11 @@
1
+ export default {
2
+ ask_expert: 'Pregúntale al experto',
3
+ config: 'Configuración',
4
+ recipient_email: 'Correo electrónico del destinatario',
5
+ course_info: 'Nombre del curso y de la página',
6
+ student_section: 'Sección Estudiante',
7
+ subject: 'Sujeto',
8
+ question: 'Pregunta',
9
+ description:
10
+ 'Haga una pregunta a un experto que sea específica del contenido del curso',
11
+ }
@@ -0,0 +1,4 @@
1
+ export default {
2
+ default_alt: 'Texto alternativo',
3
+ default_aria_described: 'Aria descrita por',
4
+ }
@@ -0,0 +1,7 @@
1
+ import user_upload from './user_upload'
2
+ import image from './image'
3
+
4
+ export default {
5
+ user_upload,
6
+ image,
7
+ }
@@ -0,0 +1,3 @@
1
+ export default {
2
+ title: 'Cargas de usuarios',
3
+ }
@@ -0,0 +1,10 @@
1
+ export default {
2
+ title: 'Título',
3
+ description: 'Descripción',
4
+ information:
5
+ 'Haga clic en cada uno de los elementos de la lista a continuación para obtener más información.',
6
+ item_icon: 'Ícono de elemento {0}',
7
+ item_title: 'Título del artículo',
8
+ item_color: 'Color del artículo',
9
+ item_text: 'Texto del elemento',
10
+ }
@@ -0,0 +1 @@
1
+ export default {}
@@ -0,0 +1,13 @@
1
+ import image from './image'
2
+ import user_upload from './user_upload'
3
+ import text_editor from './text_editor'
4
+ import video from './video'
5
+ import clickable_icon from './clickable_icon'
6
+
7
+ export default {
8
+ image,
9
+ user_upload,
10
+ text_editor,
11
+ video,
12
+ clickable_icon,
13
+ }
@@ -0,0 +1,7 @@
1
+ export default {
2
+ glossary: 'Glosario',
3
+ Text_editor: 'Editor',
4
+ verified_terms: 'términos verificados',
5
+ unverified_terms: 'términos no verificados',
6
+ no_glossary: 'No se detectaron los términos del glosario',
7
+ }
@@ -0,0 +1,11 @@
1
+ export default {
2
+ accept_multiple: 'Archivos Múltiples',
3
+ accept_types: 'Tipos de archivos permitidos ',
4
+ types: {
5
+ all: 'Todos los tipos de archivos',
6
+ all_image: 'Imágenes - .jpg, .png, .gif',
7
+ all_word: 'Documentos - .doc y .docx',
8
+ all_excel: 'Hojas de cálculo - .xls y .xlsx',
9
+ all_zip: 'Comprimido - .zip',
10
+ },
11
+ }
@@ -0,0 +1,13 @@
1
+ export default {
2
+ title: 'Título del vídeo',
3
+ sources: 'Fuentes',
4
+ playback: 'Reproducción',
5
+ no_sources: 'No hay fuentes configuradas',
6
+ default_filename: 'Vídeo',
7
+ playlist: 'Vídeos en lista de reproducción',
8
+ playlist_name: 'Nombre en lista de reproducción',
9
+ playlist_name_source_required:
10
+ 'Seleccione una fuente antes de nombrar este elemento de la lista de reproducción',
11
+ playlist_add: 'Añadir una lista de reproducción artículo',
12
+ playlist_remove: 'Eliminar este elemento de la lista de reproducción',
13
+ }
@@ -0,0 +1,5 @@
1
+ import tiny_mce_wrapper from './tiny_mce_wrapper'
2
+
3
+ export default {
4
+ tiny_mce_wrapper,
5
+ }
@@ -0,0 +1,18 @@
1
+ export default {
2
+ glossary: 'Glosario',
3
+ term: 'Término del glosario',
4
+ alternate_forms: 'Formas alternativas',
5
+ definition: 'definición',
6
+ related_terms: 'términos relacionados',
7
+ table: {
8
+ default: 'Tabla predeterminada',
9
+ default_white_line: 'Líneas blancas de tabla predeterminadas',
10
+ excel: 'Tabla de Excel',
11
+ ledger: 'Tabla mayor',
12
+ ledger_right: 'Libro mayor alineado a la derecha Mesa',
13
+ ledger_left: 'Tabla de libro mayor alineada a la izquierda',
14
+ project_management: 'Gestión de Proyectos',
15
+ t_chart: 'Gráfico T',
16
+ subject_report: 'Informe de asunto',
17
+ },
18
+ }
@@ -0,0 +1,16 @@
1
+ import pages from './pages/index'
2
+ import components from './components/index'
3
+ import shared from './shared/index'
4
+ import modules from './modules/index'
5
+
6
+ export default {
7
+ windward: {
8
+ core: {
9
+ name: 'Windward Core',
10
+ pages,
11
+ components,
12
+ shared,
13
+ modules,
14
+ },
15
+ },
16
+ }
@@ -0,0 +1,5 @@
1
+ // import example from './example'
2
+
3
+ export default {
4
+ // example,
5
+ }
@@ -0,0 +1,7 @@
1
+ export default {
2
+ title: 'Glosario del curso',
3
+ term: 'Plazo',
4
+ related_term: 'Término relacionado',
5
+ definition: 'definición',
6
+ alternate_forms: 'Formas alternativas',
7
+ }
@@ -0,0 +1,7 @@
1
+ import user_upload from './user_upload'
2
+ import glossary from './glossary'
3
+
4
+ export default {
5
+ user_upload,
6
+ glossary,
7
+ }
@@ -0,0 +1,3 @@
1
+ export default {
2
+ title: 'Resumen de carga del usuario',
3
+ }
@@ -0,0 +1,20 @@
1
+ export default {
2
+ title: {
3
+ assessment: 'Evaluación',
4
+ video: 'Vídeo/Audio',
5
+ default_table: 'Tabla predeterminada',
6
+ tab: 'Tab',
7
+ rich_text: 'Texto enriquecido',
8
+ math: 'Matemáticas',
9
+ accordion: 'Acordeón',
10
+ image: 'Imagen',
11
+ user_upload: 'Carga de usuario',
12
+ clickable_icons: 'Iconos en los que se puede hacer clic',
13
+ feedback: 'Comentarios',
14
+ },
15
+ grouping: {
16
+ basic: 'Componentes básicos',
17
+ multimedia: 'Archivos multimedia',
18
+ placeholder: 'Ingrese texto aquí',
19
+ },
20
+ }
@@ -0,0 +1,11 @@
1
+ import content_blocks from './content_blocks'
2
+ import settings from './settings'
3
+ import menu from './menu'
4
+ import permission from './permission'
5
+
6
+ export default {
7
+ content_blocks,
8
+ settings,
9
+ menu,
10
+ permission,
11
+ }
@@ -0,0 +1,3 @@
1
+ export default {
2
+ course_glossary: 'Glosario del curso',
3
+ }
@@ -0,0 +1,15 @@
1
+ export default {
2
+ type_title: {
3
+ 'plugin->windward->core->organization->course->user->feedback':
4
+ 'Feedback access for the current user',
5
+ 'plugin->windward->core->organization->course->user->userUpload':
6
+ 'User upload block access for the current user',
7
+ },
8
+
9
+ type_description: {
10
+ 'plugin->windward->core->organization->course->user->feedback':
11
+ 'The current users access to the feedback block',
12
+ 'plugin->windward->core->organization->course->user->userUpload':
13
+ 'The current users access to the user upload block',
14
+ },
15
+ }
@@ -0,0 +1,16 @@
1
+ export default {
2
+ title: {
3
+ assessment: 'Configuración de evaluación',
4
+ image: 'Configuración de imagen',
5
+ user_upload: 'Configuración de carga del usuario',
6
+ tab_settings: 'Configuración de pestaña',
7
+ text_editor: 'Configuración del editor de texto',
8
+ clickable_icons:
9
+ 'Configuración de iconos en los que se puede hacer clic',
10
+ accordion: 'Configuración de acordeón',
11
+ video: 'Configuración de vídeo',
12
+ table: 'Configuración de la tabla',
13
+ math: 'Configuración matemática',
14
+ feedback: 'Configuración de comentarios',
15
+ },
16
+ }