@windward/core 0.2.0 → 0.2.2

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 (67) hide show
  1. package/components/Content/Blocks/Accordion.vue +25 -11
  2. package/components/Content/Blocks/BlockQuote.vue +3 -1
  3. package/components/Content/Blocks/ClickableIcons.vue +29 -27
  4. package/components/Content/Blocks/Email.vue +64 -24
  5. package/components/Content/Blocks/Feedback.vue +5 -13
  6. package/components/Content/Blocks/Image.vue +8 -1
  7. package/components/Content/Blocks/Math.vue +3 -1
  8. package/components/Content/Blocks/OpenResponseCollate.vue +1 -1
  9. package/components/Content/Blocks/ScenarioChoice.vue +3 -1
  10. package/components/Content/Blocks/Tab.vue +3 -1
  11. package/components/Content/Blocks/UserUpload.vue +5 -3
  12. package/components/Settings/AccordionSettings.vue +34 -11
  13. package/components/Settings/BlockQuoteSettings.vue +1 -1
  14. package/components/Settings/ClickableIconsSettings.vue +1 -1
  15. package/components/Settings/EmailSettings.vue +61 -19
  16. package/components/Settings/FeedbackSettings.vue +3 -1
  17. package/components/Settings/MathSettings.vue +6 -4
  18. package/components/Settings/ScenarioChoiceSettings.vue +57 -48
  19. package/components/Settings/TabSettings.vue +4 -2
  20. package/components/Settings/TextEditorSettings.vue +72 -30
  21. package/components/Settings/UserUploadSettings.vue +4 -4
  22. package/components/Settings/VideoSettings.vue +2 -2
  23. package/components/utils/ContentViewer.vue +2 -1
  24. package/components/utils/FillInBlank/FillInTheBlanksManager.vue +20 -24
  25. package/components/utils/MathExpressionEditor.vue +81 -85
  26. package/components/utils/MathLiveWrapper.vue +3 -1
  27. package/components/utils/TinyMCEWrapper.vue +91 -21
  28. package/components/utils/glossary/CourseGlossary.vue +45 -32
  29. package/components/utils/glossary/CourseGlossaryForm.vue +1 -0
  30. package/config/tinymce.config.ts +314 -0
  31. package/helpers/tinymce/plugin.ts +48 -27
  32. package/i18n/en-US/components/content/blocks/email.ts +2 -0
  33. package/i18n/en-US/components/settings/accordion.ts +2 -1
  34. package/i18n/en-US/components/settings/email.ts +1 -0
  35. package/i18n/en-US/components/settings/text_editor.ts +4 -1
  36. package/i18n/en-US/components/utils/math_expression_editor.ts +11 -0
  37. package/i18n/en-US/components/utils/tiny_mce_wrapper.ts +1 -0
  38. package/i18n/en-US/pages/index.ts +2 -0
  39. package/i18n/en-US/pages/plugins/error.ts +9 -0
  40. package/i18n/en-US/pages/plugins/index.ts +5 -0
  41. package/i18n/en-US/shared/settings.ts +1 -1
  42. package/i18n/es-ES/components/content/blocks/email.ts +2 -0
  43. package/i18n/es-ES/components/settings/accordion.ts +2 -1
  44. package/i18n/es-ES/components/settings/email.ts +1 -0
  45. package/i18n/es-ES/components/settings/text_editor.ts +4 -1
  46. package/i18n/es-ES/components/utils/math_expression_editor.ts +11 -0
  47. package/i18n/es-ES/components/utils/tiny_mce_wrapper.ts +1 -0
  48. package/i18n/es-ES/pages/index.ts +2 -0
  49. package/i18n/es-ES/pages/plugins/error.ts +9 -0
  50. package/i18n/es-ES/pages/plugins/index.ts +5 -0
  51. package/i18n/sv-SE/components/content/blocks/email.ts +2 -0
  52. package/i18n/sv-SE/components/settings/accordion.ts +1 -0
  53. package/i18n/sv-SE/components/settings/email.ts +1 -0
  54. package/i18n/sv-SE/components/settings/text_editor.ts +4 -1
  55. package/i18n/sv-SE/components/utils/math_expression_editor.ts +11 -0
  56. package/i18n/sv-SE/components/utils/tiny_mce_wrapper.ts +1 -0
  57. package/i18n/sv-SE/pages/index.ts +2 -0
  58. package/i18n/sv-SE/pages/plugins/error.ts +8 -0
  59. package/i18n/sv-SE/pages/plugins/index.ts +5 -0
  60. package/package.json +1 -1
  61. package/pages/plugins/tinymce/_plugin.vue +79 -0
  62. package/plugin.js +10 -0
  63. package/test/Components/Settings/EmailSettings.spec.js +18 -2
  64. package/test/Pages/Plugins/TinyMce.spec.js +23 -0
  65. package/test/__mocks__/componentsMock.js +0 -12
  66. package/test/mocks.js +1 -0
  67. package/config/tinymce.config.js +0 -136
@@ -0,0 +1,314 @@
1
+ export default {
2
+ plugins: [
3
+ {
4
+ name: 'math',
5
+ tag: 'plugin-core-math-expression-editor',
6
+ buttons: {
7
+ groups: [
8
+ {
9
+ name: 'windward.core.components.utils.math_expression_editor.basic',
10
+ buttons: [
11
+ {
12
+ cmd: false,
13
+ text: 'x',
14
+ },
15
+ {
16
+ cmd: false,
17
+ text: 'y',
18
+ },
19
+ {
20
+ cmd: false,
21
+ text: 'e',
22
+ },
23
+ {
24
+ cmd: false,
25
+ text: 'i',
26
+ },
27
+ {
28
+ cmd: true,
29
+ text: '\\pi',
30
+ latex: '\\pi',
31
+ },
32
+ {
33
+ cmd: true,
34
+ text: '{x}^{2}',
35
+ latex: 'x^2',
36
+ },
37
+ {
38
+ cmd: true,
39
+ text: '{x}^{y}',
40
+ latex: '\\placeholder{x}^\\placeholder{y}',
41
+ },
42
+ {
43
+ cmd: true,
44
+ text: '{x}_{y}',
45
+ latex: '\\placeholder{x}_\\placeholder{y}',
46
+ },
47
+ {
48
+ text: '\\sqrt{x}',
49
+ latex: '\\sqrt{x}',
50
+ cmd: true,
51
+ },
52
+ {
53
+ latex: '\\sqrt[\\placeholder{n}]{\\placeholder{x}}',
54
+ text: '\\sqrt[n]{x}',
55
+ cmd: true,
56
+ },
57
+ {
58
+ cmd: false,
59
+ text: '\\frac{x}{y}',
60
+ latex:
61
+ '\\frac\n' +
62
+ ' {\\placeholder[numerator]{?}}\n' +
63
+ ' {\\placeholder[denominator]{?}}',
64
+ },
65
+ {
66
+ cmd: false,
67
+ text: '\\left|x\\right|',
68
+ },
69
+ {
70
+ cmd: false,
71
+ text: '\\left\\{\\right\\}',
72
+ },
73
+ {
74
+ cmd: false,
75
+ text: '\\infty',
76
+ },
77
+ {
78
+ cmd: false,
79
+ text: '(x,y)',
80
+ },
81
+ ],
82
+ },
83
+ {
84
+ name: 'windward.core.components.utils.math_expression_editor.operators',
85
+ buttons: [
86
+ {
87
+ cmd: false,
88
+ text: '\\neq',
89
+ },
90
+ {
91
+ cmd: false,
92
+ text: '\\geq',
93
+ },
94
+ {
95
+ cmd: false,
96
+ text: '\\leq',
97
+ },
98
+ {
99
+ cmd: false,
100
+ text: '\\approx',
101
+ },
102
+ {
103
+ cmd: false,
104
+ text: '\\sum_{}',
105
+ },
106
+ {
107
+ cmd: false,
108
+ text: '\\leftarrow',
109
+ },
110
+ {
111
+ cmd: false,
112
+ text: '\\rightarrow',
113
+ },
114
+ {
115
+ cmd: false,
116
+ text: '\\leftrightarrow',
117
+ },
118
+ {
119
+ cmd: false,
120
+ text: '+',
121
+ },
122
+ {
123
+ cmd: false,
124
+ text: '-',
125
+ },
126
+ {
127
+ cmd: false,
128
+ text: '\\times',
129
+ },
130
+ {
131
+ cmd: false,
132
+ text: '\\div',
133
+ },
134
+ {
135
+ cmd: false,
136
+ text: '=',
137
+ },
138
+ {
139
+ cmd: false,
140
+ text: '\\pm',
141
+ },
142
+ {
143
+ cmd: false,
144
+ text: '\\cdot',
145
+ },
146
+ {
147
+ cmd: true,
148
+ latex: '/',
149
+ text: '/',
150
+ },
151
+ ],
152
+ },
153
+ {
154
+ name: 'windward.core.components.utils.math_expression_editor.trigonometry',
155
+ buttons: [
156
+ {
157
+ cmd: false,
158
+ text: '\\sin',
159
+ },
160
+ {
161
+ cmd: false,
162
+ text: '\\cos',
163
+ },
164
+ {
165
+ cmd: false,
166
+ text: '\\tan',
167
+ },
168
+ {
169
+ cmd: false,
170
+ text: '\\sin^{-1}',
171
+ },
172
+ {
173
+ cmd: false,
174
+ text: '\\cos^{-1}',
175
+ },
176
+ {
177
+ cmd: false,
178
+ text: '\\tan^{-1}',
179
+ },
180
+ {
181
+ cmd: false,
182
+ text: '\\arcsin',
183
+ },
184
+ {
185
+ cmd: false,
186
+ text: '\\arccos',
187
+ },
188
+ {
189
+ cmd: false,
190
+ text: '\\arctan',
191
+ },
192
+ ],
193
+ },
194
+ {
195
+ name: 'windward.core.components.utils.math_expression_editor.greek',
196
+ buttons: [
197
+ {
198
+ cmd: false,
199
+ text: '\\alpha',
200
+ },
201
+ {
202
+ cmd: false,
203
+ text: '\\beta',
204
+ },
205
+ {
206
+ cmd: false,
207
+ text: '\\gamma',
208
+ },
209
+ {
210
+ cmd: false,
211
+ text: '\\delta',
212
+ },
213
+ {
214
+ cmd: false,
215
+ text: '\\Delta',
216
+ },
217
+ {
218
+ cmd: false,
219
+ text: '\\epsilon',
220
+ },
221
+ {
222
+ cmd: false,
223
+ text: '\\theta',
224
+ },
225
+ {
226
+ cmd: false,
227
+ text: '\\iota',
228
+ },
229
+ {
230
+ cmd: false,
231
+ text: '\\kappa',
232
+ },
233
+ {
234
+ cmd: false,
235
+ text: '\\lambda',
236
+ },
237
+ {
238
+ cmd: false,
239
+ text: '\\Lambda',
240
+ },
241
+ {
242
+ cmd: false,
243
+ text: '\\mu',
244
+ },
245
+ {
246
+ cmd: false,
247
+ text: '\\sigma',
248
+ },
249
+ {
250
+ cmd: false,
251
+ text: '\\Sigma',
252
+ },
253
+ {
254
+ cmd: false,
255
+ text: '\\phi',
256
+ },
257
+ {
258
+ cmd: false,
259
+ text: '\\omega',
260
+ },
261
+ {
262
+ cmd: false,
263
+ text: '\\Omega',
264
+ },
265
+ ],
266
+ },
267
+ {
268
+ name: 'windward.core.components.utils.math_expression_editor.probability',
269
+ buttons: [
270
+ {
271
+ cmd: false,
272
+ text: 'C(n,r)=\\binom nr=\\frac{n!}{(r!(n-r)!)}',
273
+ },
274
+ {
275
+ cmd: false,
276
+ text: '\\binom{n}{r}',
277
+ },
278
+ ],
279
+ },
280
+ {
281
+ name: 'windward.core.components.utils.math_expression_editor.matrix',
282
+ buttons: [
283
+ {
284
+ cmd: false,
285
+ text: '\\begin{bmatrix} a & b \\\\ c & d \\end{bmatrix}',
286
+ },
287
+ {
288
+ cmd: false,
289
+ text: '\\begin{bmatrix} a & b & c \\\\ d & e & f \\\\ g & h & i \\end{bmatrix}',
290
+ },
291
+ ],
292
+ },
293
+ {
294
+ name: 'windward.core.components.utils.math_expression_editor.eq_systems',
295
+ buttons: [
296
+ {
297
+ cmd: false,
298
+ text: '\\begin{cases} x + y \\\\ x + y \\end{cases}',
299
+ },
300
+ {
301
+ cmd: false,
302
+ text: '\\begin{cases} x + y \\\\ x – y \\end{cases}',
303
+ },
304
+ ],
305
+ },
306
+ ],
307
+ },
308
+ },
309
+ {
310
+ name: 'FIB',
311
+ tag: 'plugin-core-fill-blanks-tool',
312
+ },
313
+ ],
314
+ }
@@ -2,15 +2,18 @@ const WindwardPlugins = function (editor: any) {
2
2
  let formula: any
3
3
  let fillInBlank: any
4
4
  // ----- Events ----- //
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;">' +
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"/>' +
7
- '</svg>' );
5
+ editor.ui.registry.addIcon(
6
+ 'insertMath',
7
+ '<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;">' +
8
+ '<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"/>' +
9
+ '</svg>'
10
+ )
8
11
  editor.addCommand('equation-window', function (data: any) {
9
12
  return editor.windowManager.openUrl({
10
13
  url: '/plugins/tinymce/math',
11
14
  title: 'Equation editor',
12
- width: 800,
13
- height: 600,
15
+ width: window.innerWidth*.50,
16
+ height: window.innerHeight*.75,
14
17
  buttons: [
15
18
  {
16
19
  type: 'cancel',
@@ -24,7 +27,7 @@ const WindwardPlugins = function (editor: any) {
24
27
  ],
25
28
  onAction: () => {
26
29
  if (data.currentTarget) {
27
- editor.selection.select(data.currentTarget);
30
+ editor.selection.select(data.currentTarget)
28
31
  }
29
32
  editor.selection.setContent(
30
33
  ` <span class='windward-math-content'>` +
@@ -93,14 +96,12 @@ const WindwardPlugins = function (editor: any) {
93
96
  }
94
97
  }
95
98
 
96
-
97
99
  editor.addCommand('fib-window', function (data: any) {
98
-
99
100
  return editor.windowManager.openUrl({
100
101
  url: '/plugins/tinymce/FIB',
101
102
  title: 'Fill in the blank',
102
- width: 1024,
103
- height: 768,
103
+ width: window.innerWidth*.50,
104
+ height: window.innerHeight*.75,
104
105
  buttons: [
105
106
  {
106
107
  type: 'cancel',
@@ -114,42 +115,65 @@ const WindwardPlugins = function (editor: any) {
114
115
  ],
115
116
  onAction: () => {
116
117
  if (data.currentTarget) {
117
- editor.selection.select(data.currentTarget);
118
+ editor.selection.select(data.currentTarget)
118
119
  }
119
120
  editor.selection.setContent(
120
- `<span class='windward-fill-blank' data-feedback =`+ fillInBlank.feedback +` >` +
121
- fillInBlank.answer +
122
- `</span>`
121
+ `<span class='windward-fill-blank' data-feedback =` +
122
+ fillInBlank.feedback +
123
+ ` >` +
124
+ fillInBlank.answer +
125
+ `</span>`
123
126
  )
124
127
 
125
128
  editor.windowManager.close()
126
- setOnClickFillInBlank(editor);
129
+ setOnClickFillInBlank(editor)
127
130
  },
128
131
  // eslint-disable-next-line @typescript-eslint/no-unused-vars
129
132
  onMessage: (instance: any, message: any) => {
130
133
  switch (message.mceAction) {
131
134
  case 'fib-insert':
132
- fillInBlank = { answer: message.content.answer, feedback: message.content.feedback }
135
+ fillInBlank = {
136
+ answer: message.content.answer,
137
+ feedback: message.content.feedback,
138
+ }
133
139
  break
134
140
  case 'fib-plugin-mounted':
135
- window.parent.postMessage({ answer: data.answer ,
136
- feedback: data.feedback, }, '*')
141
+ window.parent.postMessage(
142
+ { answer: data.answer, feedback: data.feedback },
143
+ '*'
144
+ )
137
145
  break
138
146
  }
139
147
  },
140
148
  })
141
149
  })
142
150
 
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>' );
151
+ editor.ui.registry.addIcon(
152
+ 'insertFIB',
153
+ '<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>'
154
+ )
155
+
156
+ editor.ui.registry.addIcon(
157
+ 'glossaryIcon',
158
+ '<svg viewBox="0 0 24 24" width="20px" height="20px" ><path d="M3,15H1V3A2,2 0 0,1 3,1H19V3H3V15M12,23A1,1 0 0,1 11,22V19H7A2,2 0 0,1 5,17V7A2,2 0 0,1 7,5H21A2,2 0 0,1 23,7V17A2,2 0 0,1 21,19H16.9L13.2,22.71C13,22.89 12.76,23 12.5,23H12M9,9V11H19V9H9M9,13V15H17V13H9Z"></path></svg>'
159
+ )
160
+
161
+ /* Add a button that opens a window */
162
+ editor.ui.registry.addButton('glossaryButton', {
163
+ icon: 'glossaryIcon',
164
+ onAction: function () {
165
+ /* apply format */
166
+ editor.formatter.apply('glossary')
167
+ },
168
+ })
144
169
  /* Add a button that opens a window */
145
170
  editor.ui.registry.addButton('fibButton', {
146
171
  icon: 'insertFIB',
147
172
  onAction: function () {
148
173
  /* Open window */
149
- editor.execCommand('fib-window', true)
150
-
151
- }
152
- });
174
+ editor.execCommand('fib-window', true)
175
+ },
176
+ })
153
177
  editor.ui.registry.addMenuItem('FIB', {
154
178
  text: 'FIll in the blank',
155
179
  icon: 'insertFIB',
@@ -160,9 +184,7 @@ const WindwardPlugins = function (editor: any) {
160
184
 
161
185
  function setOnClickFillInBlank(editor: any) {
162
186
  const tinymceDoc = editor.getDoc()
163
- const mqSpan = tinymceDoc.getElementsByClassName(
164
- 'windward-fill-blank'
165
- )
187
+ const mqSpan = tinymceDoc.getElementsByClassName('windward-fill-blank')
166
188
 
167
189
  // Add onclick listener to all equation content
168
190
  for (const fib of mqSpan) {
@@ -181,7 +203,6 @@ const WindwardPlugins = function (editor: any) {
181
203
  }
182
204
  }
183
205
  }
184
-
185
206
  }
186
207
 
187
208
  export { WindwardPlugins }
@@ -3,10 +3,12 @@ export default {
3
3
  from: 'From',
4
4
  to: 'To',
5
5
  cc: 'CC',
6
+ subject: 'Subject',
6
7
  body: 'Email Body',
7
8
  simulation: 'Email Simulation',
8
9
  reply: 'Reply',
9
10
  reply_all: 'Reply All',
10
11
  forward: 'Forward',
11
12
  reset: 'Reset',
13
+ email: 'Email',
12
14
  }
@@ -1,5 +1,6 @@
1
1
  export default {
2
2
  items: 'Accordion Items',
3
- add: 'Add Accordion',
3
+ add: 'Add Accordion Item',
4
4
  accordion: 'Accordion',
5
+ label: 'Accordion body text',
5
6
  }
@@ -6,4 +6,5 @@ export default {
6
6
  to: 'To',
7
7
  cc: 'CC',
8
8
  body: 'Email Body',
9
+ placeholder: 'Email body text',
9
10
  }
@@ -1,7 +1,10 @@
1
1
  export default {
2
2
  glossary: 'Glossary',
3
- Text_editor: 'Editor',
3
+ text_editor: 'Editor',
4
4
  verified_terms: 'verified terms',
5
5
  unverified_terms: 'unverified terms',
6
6
  no_glossary: 'No glossary Terms detected',
7
+ click_to_expand: 'Click to expand editor',
8
+ click_to_hide_editor: 'Click to hide editor',
9
+ click_to_hide_glossary: 'Click to hide glossary',
7
10
  }
@@ -1,3 +1,14 @@
1
1
  export default {
2
2
  title: 'Mathematical Expression editor',
3
+ basic: 'Basic',
4
+ operators: 'Operators',
5
+ trigonometry: 'Trigonometry',
6
+ greek: 'Greek',
7
+ probability: 'Probability',
8
+ matrix: 'Matrix',
9
+ eq_systems: 'Equation Systems',
10
+ screen_reader_text: 'screen Reader Text',
11
+ default_screen_reader_text: 'Default screen Reader Text',
12
+ custom_screen_reader_text: 'Customize screen Reader Text',
13
+ read_text_aloud: 'Read Text aloud',
3
14
  }
@@ -16,4 +16,5 @@ export default {
16
16
  t_chart: 'T Chart',
17
17
  subject_report: 'Subject Report',
18
18
  },
19
+ minimize: 'Minimize',
19
20
  }
@@ -1,7 +1,9 @@
1
1
  import user_upload from './user_upload'
2
2
  import glossary from './glossary'
3
+ import plugins from './plugins'
3
4
 
4
5
  export default {
5
6
  user_upload,
6
7
  glossary,
8
+ plugins,
7
9
  }
@@ -0,0 +1,9 @@
1
+ export default {
2
+ title_401: 'No access',
3
+ description_401:
4
+ 'You are not authorized to use this plugin. Please contact your account administrator',
5
+ not_enabled:
6
+ "'{0}' is not enabled. Please contact your account administrator",
7
+ missing_tag:
8
+ "Something went wrong on our side. '{0}' is enabled but could not be loaded. Please contact your account administrator",
9
+ }
@@ -0,0 +1,5 @@
1
+ import error from './error'
2
+
3
+ export default {
4
+ error,
5
+ }
@@ -15,7 +15,7 @@ export default {
15
15
  math: 'Math Settings',
16
16
  feedback: 'Feedback Settings',
17
17
  horizontal_line: 'Divider Settings',
18
- email: 'Ajustes del correo electrónico',
18
+ email: 'Email Settings',
19
19
  click_to_enter: 'Click here to enter text',
20
20
  block_quote: 'Block Quote Settings',
21
21
  title: 'Title',
@@ -3,10 +3,12 @@ export default {
3
3
  from: 'De',
4
4
  to: 'Para',
5
5
  cc: 'CC',
6
+ subject: 'Sujeto',
6
7
  body: 'Cuerpo del correo electrónico',
7
8
  simulation: 'Simulación de correo electrónico',
8
9
  reply: 'Responder',
9
10
  reply_all: 'Responder a todos',
10
11
  forward: 'Adelante',
11
12
  reset: 'reiniciar',
13
+ email: 'Correo Electrónico',
12
14
  }
@@ -1,5 +1,6 @@
1
1
  export default {
2
2
  items: 'Artículos de acordeón',
3
- add: 'Agregar Acordeón',
3
+ add: 'Añadir acordeón',
4
4
  accordion: 'Acordeón',
5
+ label: 'Texto del cuerpo del acordeón',
5
6
  }
@@ -6,4 +6,5 @@ export default {
6
6
  to: 'Para',
7
7
  cc: 'CC',
8
8
  body: 'Cuerpo del correo electrónico',
9
+ placeholder: 'Texto del cuerpo del correo electrónico',
9
10
  }
@@ -1,7 +1,10 @@
1
1
  export default {
2
2
  glossary: 'Glosario',
3
- Text_editor: 'Editor',
3
+ text_editor: 'Editor',
4
4
  verified_terms: 'términos verificados',
5
5
  unverified_terms: 'términos no verificados',
6
6
  no_glossary: 'No se detectaron los términos del glosario',
7
+ click_to_expand: 'Haga Click ampliar el editor',
8
+ click_to_hide_editor: 'Haga click para esconder el editor',
9
+ click_to_hide_glossary: 'Haga click para esconder el glosario',
7
10
  }
@@ -1,3 +1,14 @@
1
1
  export default {
2
2
  title: 'Manipulador de expresión matemática',
3
+ basic: 'Basico',
4
+ operators: 'Operadores',
5
+ trigonometry: 'Trigonometría',
6
+ greek: 'Simbolos Griegos',
7
+ probability: 'Probabilidad',
8
+ matrix: 'Matriz',
9
+ eq_systems: 'Sistemas de ecuaciones',
10
+ screen_reader_text: 'Texto del lector de pantalla',
11
+ default_screen_reader_text: 'Texto del lector de pantalla auto generatpr',
12
+ custom_screen_reader_text: 'Personalizar el texto del lector de pantalla/',
13
+ read_text_aloud: 'Leer texto',
3
14
  }
@@ -16,4 +16,5 @@ export default {
16
16
  t_chart: 'Gráfico T',
17
17
  subject_report: 'Informe de asunto',
18
18
  },
19
+ minimize: 'Minimizar',
19
20
  }
@@ -1,7 +1,9 @@
1
1
  import user_upload from './user_upload'
2
2
  import glossary from './glossary'
3
+ import plugins from './plugins'
3
4
 
4
5
  export default {
5
6
  user_upload,
6
7
  glossary,
8
+ plugins,
7
9
  }
@@ -0,0 +1,9 @@
1
+ export default {
2
+ title_401: 'Sin acceso',
3
+ description_401:
4
+ 'No estás autorizado a utilizar este complemento. Por favor contacte al administrador de su cuenta',
5
+ not_enabled:
6
+ "'{0}' no está habilitado. Por favor contacte al administrador de su cuenta",
7
+ missing_tag:
8
+ "Algo salió mal de nuestro lado. '{0}' está habilitado pero no se pudo cargar. Por favor contacte al administrador de su cuenta",
9
+ }
@@ -0,0 +1,5 @@
1
+ import error from './error'
2
+
3
+ export default {
4
+ error,
5
+ }