@windward/games 0.0.8 → 0.0.10

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 (88) hide show
  1. package/components/content/blocks/dragDrop/BucketGame.vue +41 -87
  2. package/components/content/blocks/dragDrop/SortingGame.vue +43 -29
  3. package/components/content/blocks/flashcards/FlashcardSlides.vue +3 -1
  4. package/components/content/blocks/matchingGame/MatchingGame.vue +94 -51
  5. package/components/content/blocks/quizshowGame/AnswerPanel.vue +93 -96
  6. package/components/content/blocks/quizshowGame/QuizShow.vue +54 -31
  7. package/components/content/blocks/slideshow/SlideShow.vue +3 -1
  8. package/components/content/blocks/wordJumble/Jumble.vue +4 -2
  9. package/components/content/blocks/wordJumble/WordJumble.vue +11 -2
  10. package/components/settings/BucketGameSettingsManager.vue +175 -349
  11. package/components/settings/FlashCardSlidesManager.vue +335 -414
  12. package/components/settings/MatchingGameManager.vue +357 -618
  13. package/components/settings/QuizShowSettingsManager.vue +228 -201
  14. package/components/settings/SlideShowManager.vue +89 -127
  15. package/components/settings/SortingGameSettingsManager.vue +32 -144
  16. package/components/settings/WordJumbleSettingsManager.vue +48 -142
  17. package/i18n/en-US/components/content/blocks/bucket_game.ts +1 -0
  18. package/i18n/en-US/components/content/blocks/flashcard.ts +2 -0
  19. package/i18n/en-US/components/content/blocks/quizshow_game.ts +1 -1
  20. package/i18n/en-US/components/settings/matching_game.ts +1 -1
  21. package/i18n/en-US/components/settings/quizshow_game.ts +8 -2
  22. package/i18n/en-US/components/settings/slideshow.ts +2 -0
  23. package/i18n/es-ES/components/content/blocks/bucket_game.ts +40 -0
  24. package/i18n/es-ES/components/content/blocks/crossword.ts +25 -0
  25. package/i18n/es-ES/components/content/blocks/flashcard.ts +7 -0
  26. package/i18n/es-ES/components/content/blocks/index.ts +23 -0
  27. package/i18n/es-ES/components/content/blocks/matching_game.ts +26 -0
  28. package/i18n/es-ES/components/content/blocks/multiple_choice.ts +9 -0
  29. package/i18n/es-ES/components/content/blocks/quizshow_game.ts +35 -0
  30. package/i18n/es-ES/components/content/blocks/seven_strikes.ts +6 -0
  31. package/i18n/es-ES/components/content/blocks/slideshow.ts +13 -0
  32. package/i18n/es-ES/components/content/blocks/sorting_game.ts +5 -0
  33. package/i18n/es-ES/components/content/blocks/word_jumble.ts +9 -0
  34. package/i18n/es-ES/components/content/crud_table.ts +6 -0
  35. package/i18n/es-ES/components/content/index.ts +7 -0
  36. package/i18n/es-ES/components/index.ts +9 -0
  37. package/i18n/es-ES/components/navigation/index.ts +5 -0
  38. package/i18n/es-ES/components/settings/bucket_game.ts +38 -0
  39. package/i18n/es-ES/components/settings/crossword.ts +7 -0
  40. package/i18n/es-ES/components/settings/flashcard.ts +28 -0
  41. package/i18n/es-ES/components/settings/index.ts +23 -0
  42. package/i18n/es-ES/components/settings/matching_game.ts +15 -0
  43. package/i18n/es-ES/components/settings/multiple_choice.ts +17 -0
  44. package/i18n/es-ES/components/settings/quizshow_game.ts +20 -0
  45. package/i18n/es-ES/components/settings/seven_strikes.ts +8 -0
  46. package/i18n/es-ES/components/settings/slideshow.ts +13 -0
  47. package/i18n/es-ES/components/settings/sorting_game.ts +5 -0
  48. package/i18n/es-ES/components/settings/word_jumble.ts +11 -0
  49. package/i18n/es-ES/index.ts +15 -0
  50. package/i18n/es-ES/modules/index.ts +5 -0
  51. package/i18n/es-ES/pages/index.ts +5 -0
  52. package/i18n/es-ES/shared/content_blocks.ts +18 -0
  53. package/i18n/es-ES/shared/index.ts +7 -0
  54. package/i18n/es-ES/shared/settings.ts +14 -0
  55. package/i18n/sv-SE/components/content/blocks/bucket_game.ts +40 -0
  56. package/i18n/sv-SE/components/content/blocks/crossword.ts +20 -0
  57. package/i18n/sv-SE/components/content/blocks/flashcard.ts +7 -0
  58. package/i18n/sv-SE/components/content/blocks/index.ts +23 -0
  59. package/i18n/sv-SE/components/content/blocks/matching_game.ts +25 -0
  60. package/i18n/sv-SE/components/content/blocks/multiple_choice.ts +9 -0
  61. package/i18n/sv-SE/components/content/blocks/quizshow_game.ts +35 -0
  62. package/i18n/sv-SE/components/content/blocks/seven_strikes.ts +6 -0
  63. package/i18n/sv-SE/components/content/blocks/slideshow.ts +13 -0
  64. package/i18n/sv-SE/components/content/blocks/sorting_game.ts +5 -0
  65. package/i18n/sv-SE/components/content/blocks/word_jumble.ts +9 -0
  66. package/i18n/sv-SE/components/content/crud_table.ts +6 -0
  67. package/i18n/sv-SE/components/content/index.ts +7 -0
  68. package/i18n/sv-SE/components/index.ts +9 -0
  69. package/i18n/sv-SE/components/navigation/index.ts +5 -0
  70. package/i18n/sv-SE/components/settings/bucket_game.ts +38 -0
  71. package/i18n/sv-SE/components/settings/crossword.ts +7 -0
  72. package/i18n/sv-SE/components/settings/flashcard.ts +28 -0
  73. package/i18n/sv-SE/components/settings/index.ts +23 -0
  74. package/i18n/sv-SE/components/settings/matching_game.ts +15 -0
  75. package/i18n/sv-SE/components/settings/multiple_choice.ts +16 -0
  76. package/i18n/sv-SE/components/settings/quizshow_game.ts +20 -0
  77. package/i18n/sv-SE/components/settings/seven_strikes.ts +8 -0
  78. package/i18n/sv-SE/components/settings/slideshow.ts +13 -0
  79. package/i18n/sv-SE/components/settings/sorting_game.ts +5 -0
  80. package/i18n/sv-SE/components/settings/word_jumble.ts +11 -0
  81. package/i18n/sv-SE/index.ts +15 -0
  82. package/i18n/sv-SE/modules/index.ts +5 -0
  83. package/i18n/sv-SE/pages/index.ts +5 -0
  84. package/i18n/sv-SE/shared/content_blocks.ts +18 -0
  85. package/i18n/sv-SE/shared/index.ts +7 -0
  86. package/i18n/sv-SE/shared/settings.ts +14 -0
  87. package/package.json +1 -1
  88. package/i18n/en-US.ts +0 -5
@@ -34,87 +34,55 @@
34
34
  )
35
35
  }}
36
36
  </p>
37
- <draggable v-model="block.metadata.config.words" group="cards">
38
- <v-container
39
- v-for="(word, index) in block.metadata.config.words"
40
- :key="index"
41
- class="container-card-outline"
42
- elevation="0"
43
- outlined
44
- tile
45
- >
46
- <v-layout row wrap outlined>
47
- <v-flex xs10 :class="bottomBorder(index)">
48
- <p
49
- class="text-truncate mb-0 p-header"
50
- @click="onOpenEditor(index)"
51
- v-on:keyup.enter="onOpenEditor(index)"
52
- @mouseover="onHover"
53
- @mouseleave="onHoverLeave"
54
- :class="cursor"
55
- tabindex="0"
56
- >
57
- <v-icon>mdi-drag-vertical</v-icon>
58
- <span class="span-text-ellipsis">
59
- {{
60
- word.value
61
- ? word.value
62
- : $t(
63
- 'plugin.games.components.settings.word_jumble.click'
64
- )
65
- }}
66
- </span>
37
+ <SortableExpansionPanel
38
+ v-model="block.metadata.config.words"
39
+ @click:close="onDelete($event)"
40
+ >
41
+ <template #header="{ item, index }">
42
+ {{
43
+ item.value
44
+ ? item.value
45
+ : $t(
46
+ 'plugin.games.components.settings.word_jumble.click'
47
+ )
48
+ }}
49
+ </template>
50
+ <template #body="{ item, index }">
51
+ <v-container>
52
+ <v-flex xs12>
53
+ <p class="p-label">
54
+ {{
55
+ $t(
56
+ 'plugin.games.components.settings.word_jumble.word_jumble'
57
+ )
58
+ }}
67
59
  </p>
60
+ <v-textarea
61
+ outlined
62
+ :autofocus="true"
63
+ v-model="
64
+ block.metadata.config.words[index].value
65
+ "
66
+ ></v-textarea>
68
67
  </v-flex>
69
- <v-flex
70
- xs2
71
- class="btn-header-delete d-flex justify-center"
72
- :class="bottomBorder(index)"
73
- >
74
- <v-icon
75
- class="btn-delete-icon"
76
- @click="onDelete(index)"
77
- >mdi-delete-outline</v-icon
78
- >
68
+ <v-flex xs12>
69
+ <p class="p-label">
70
+ {{
71
+ $t(
72
+ 'plugin.games.components.settings.word_jumble.hint'
73
+ )
74
+ }}
75
+ </p>
76
+ <v-textarea
77
+ outlined
78
+ v-model="
79
+ block.metadata.config.words[index].hint
80
+ "
81
+ ></v-textarea>
79
82
  </v-flex>
80
- <v-container v-if="word.expand">
81
- <v-flex xs12>
82
- <p class="p-label">
83
- {{
84
- $t(
85
- 'plugin.games.components.settings.word_jumble.word_jumble'
86
- )
87
- }}
88
- </p>
89
- <v-textarea
90
- outlined
91
- :autofocus="true"
92
- v-model="
93
- block.metadata.config.words[index]
94
- .value
95
- "
96
- ></v-textarea>
97
- </v-flex>
98
- <v-flex xs12>
99
- <p class="p-label">
100
- {{
101
- $t(
102
- 'plugin.games.components.settings.word_jumble.hint'
103
- )
104
- }}
105
- </p>
106
- <v-textarea
107
- outlined
108
- v-model="
109
- block.metadata.config.words[index]
110
- .hint
111
- "
112
- ></v-textarea>
113
- </v-flex>
114
- </v-container>
115
- </v-layout>
116
- </v-container>
117
- </draggable>
83
+ </v-container>
84
+ </template>
85
+ </SortableExpansionPanel>
118
86
  </v-container>
119
87
  <v-container class="pa-0">
120
88
  <v-row justify="center" class="my-4">
@@ -164,13 +132,13 @@
164
132
  <script>
165
133
  import _ from 'lodash'
166
134
  import BaseContentSettings from '~/components/Content/Tool/BaseContentSettings.js'
167
- import draggable from 'vuedraggable'
135
+ import SortableExpansionPanel from '~/components/SortableExpansionPanel.vue'
168
136
 
169
137
  export default {
170
138
  name: 'WordJumbleSettings',
171
139
  extends: BaseContentSettings,
172
140
  components: {
173
- draggable,
141
+ SortableExpansionPanel,
174
142
  },
175
143
  beforeMount() {
176
144
  if (_.isEmpty(this.block)) {
@@ -208,28 +176,15 @@ export default {
208
176
  data() {
209
177
  return {
210
178
  valid: true,
211
- debounce: null,
212
- cursor: null,
213
179
  loading: false,
214
180
  }
215
181
  },
216
182
  methods: {
217
- bottomBorder(index) {
218
- if (this.block.metadata.config.words[index].expand === true) {
219
- return 'container-header-border'
220
- } else {
221
- return null
222
- }
223
- },
224
183
  onAddWord() {
225
- this.block.metadata.config.words.forEach((element) => {
226
- element.expand = false
227
- })
228
184
  let defaultWord = {
229
185
  id: this.block.metadata.config.words.length + 1,
230
186
  value: '',
231
187
  hint: '',
232
- expand: true,
233
188
  }
234
189
  this.block.metadata.config.words.push(defaultWord)
235
190
  },
@@ -241,22 +196,6 @@ export default {
241
196
  return (element.id = startingIndex)
242
197
  })
243
198
  },
244
- onOpenEditor(index) {
245
- // expands editing area of clicked upon word jumble
246
- this.block.metadata.config.words[index].expand =
247
- !this.block.metadata.config.words[index].expand
248
- this.block.metadata.config.words.forEach((element) => {
249
- if (index + 1 !== element.id) {
250
- element.expand = false
251
- }
252
- })
253
- },
254
- onHover(index) {
255
- this.cursor = 'change-pointer'
256
- },
257
- onHoverLeave() {
258
- this.cursor = ''
259
- },
260
199
  },
261
200
  }
262
201
  </script>
@@ -264,39 +203,6 @@ export default {
264
203
  .v-progress-circular {
265
204
  margin: 1rem;
266
205
  }
267
- .container-card-outline {
268
- border: solid 1px var(--v-primary-base);
269
- border-radius: 3px !important;
270
- margin-bottom: 8px;
271
- }
272
- .container-header-border {
273
- border-bottom: 1px solid var(--v-primary-base);
274
- }
275
- .change-pointer {
276
- cursor: pointer !important;
277
- }
278
- .p-header {
279
- height: 45px;
280
- display: flex;
281
- align-items: center;
282
- }
283
- .p-header:hover {
284
- background-color: rgb(243, 243, 243);
285
- }
286
- .span-text-ellipsis {
287
- white-space: nowrap;
288
- overflow: hidden;
289
- text-overflow: ellipsis;
290
- }
291
- .btn-header-delete {
292
- border-left: 1px solid var(--v-primary-base);
293
- }
294
- .btn-header-delete:hover {
295
- background-color: rgb(243, 243, 243);
296
- }
297
- .btn-delete-icon {
298
- color: var(--v-primary-base);
299
- }
300
206
  .p-label {
301
207
  font-size: 16px;
302
208
  font-weight: 500;
@@ -3,6 +3,7 @@ export default {
3
3
  completed: 'Completed!',
4
4
  name: 'Bucket Name',
5
5
  game_title: 'Bucket Game',
6
+ aria_title: 'Bucket Game Title',
6
7
  answers: 'Answers',
7
8
  cannot: 'Cannot drag when editing!',
8
9
  form: {
@@ -1,4 +1,6 @@
1
1
  export default {
2
+ title: 'FlashCards',
3
+ items: 'FlashCard Items',
2
4
  img_alt: 'card image',
3
5
  click_to_show_front: 'Click to show Front',
4
6
  click_to_show_back: 'Click to show Back',
@@ -16,7 +16,7 @@ export default {
16
16
  feedback: {
17
17
  correct: 'Correct',
18
18
  incorrect: 'Incorrect',
19
- feedback: 'Correct Answer Feedback',
19
+ answer: 'Answer Feedback',
20
20
  answer_description: 'Answer Description',
21
21
  placeholder: 'This is the correct choice!'
22
22
  },
@@ -1,6 +1,6 @@
1
1
  export default {
2
2
  form: {
3
- title: 'Title',
3
+ title: 'Matching Game',
4
4
  instructions: 'Instructions',
5
5
  feedback: {
6
6
  correct: 'feedback when correct',
@@ -1,14 +1,20 @@
1
1
  export default {
2
+ title: 'Quiz Show',
2
3
  form: {
3
4
  title: 'Title',
4
5
  instructions: 'Instructions',
5
6
  max_categories: '# of Categories',
6
- max_rows: '# of Questions Per Category',
7
- category: 'category',
7
+ new: 'new',
8
+ max_rows: 'points per questions',
9
+ category: 'no categories | category {index} | categories',
10
+ add_category: 'add category',
11
+ add_row: 'add question row',
8
12
  categories: 'Categories',
9
13
  points_per_row: 'Points per question',
10
14
  row: 'row',
11
15
  responsive: 'Responsive Columns',
12
16
  confirm_change_text: 'Are you sure you want to change this?',
17
+ default_instructions:
18
+ 'Drag and drop the correct word, statement, or image presented into the prompt container and watch for feedback. ',
13
19
  },
14
20
  }
@@ -7,5 +7,7 @@ export default {
7
7
  char_count_less_then:
8
8
  'The character count for this field must be less than',
9
9
  },
10
+ items: 'SlideShow Items',
11
+ slideshow_title: 'SlideShow Title',
10
12
  },
11
13
  }
@@ -0,0 +1,40 @@
1
+ export default {
2
+ out_of: '{0} de {1} completado',
3
+ completed: '¡Completado!',
4
+ name: 'Nombre del depósito',
5
+ game_title: 'Juego del cubo',
6
+ aria_title: 'título del juego de cubo',
7
+ answers: 'Respuestas',
8
+ cannot: '¡No se puede arrastrar al editar!',
9
+ form: {
10
+ answer: 'Respuesta',
11
+ value: 'Valor',
12
+ insert_math: 'Insertar matemáticas',
13
+ mass_entry: 'Entrada masiva de datos',
14
+ title: 'Título',
15
+ instructions: 'Instrucciones',
16
+ feedback: {
17
+ feedback: 'Comentarios',
18
+ feedback_here: '¡Comentarios aquí!',
19
+ default: 'Comentarios predeterminados',
20
+ correct: 'comentarios cuando sea correcto',
21
+ incorrect: 'comentarios cuando son incorrectos',
22
+ },
23
+ image: {
24
+ title: 'Archivo de imagen de tarjeta flash',
25
+ configure_blurb:
26
+ 'Cargue un archivo de imagen (.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 en el medio de la flashcard.',
27
+ alt_text: 'Texto alternativo',
28
+ },
29
+ update: 'actualizar',
30
+ submit: 'enviar',
31
+ preview: 'vista previa',
32
+ new: 'Agregar nuevo',
33
+ cancel: 'cancelar ',
34
+ rules: {
35
+ field_required: 'Este campo es obligatorio',
36
+ char_count_less_then:
37
+ 'El número de caracteres para este campo debe ser menor que',
38
+ },
39
+ },
40
+ }
@@ -0,0 +1,25 @@
1
+ export default {
2
+ crossword: 'Juego de crucigramas',
3
+ add_element: 'Agregar elemento',
4
+ initial_setup:
5
+ 'Ingresa al menos dos palabras con pistas para generar un crucigrama',
6
+ validation_error:
7
+ 'El crucigrama no se pudo cargar debido al siguiente error.',
8
+ error: {
9
+ min_words: '¡Debes ingresar al menos dos palabras con pistas!',
10
+ words_no_shared_letters:
11
+ 'Las siguientes palabras no comparten letras: {0}',
12
+ word_length_max_limit:
13
+ 'No se pueden usar palabras de más de 20 caracteres.',
14
+ word_length_min_limit:
15
+ 'No se pueden usar palabras de menos de 2 caracteres.',
16
+ could_not_generate:
17
+ 'No se pudo generar un crucigrama {0} por {0} con las palabras proporcionadas',
18
+ unknown:
19
+ 'Se produjo un error desconocido durante la creación del crucigrama',
20
+ },
21
+
22
+ play_again: 'Aleatorizar crucigramas y jugar de nuevo',
23
+ across: 'A través',
24
+ down: 'Abajo',
25
+ }
@@ -0,0 +1,7 @@
1
+ export default {
2
+ title: 'Tarjetas didácticas',
3
+ items: 'Elementos de la tarjeta didáctica',
4
+ img_alt: 'imagen de tarjeta',
5
+ click_to_show_front: 'Haga clic para mostrar el frente',
6
+ click_to_show_back: 'Haga clic para mostrar Atrás',
7
+ }
@@ -0,0 +1,23 @@
1
+ import bucket_game from './bucket_game'
2
+ import sorting_game from './sorting_game'
3
+ import flashcard from './flashcard'
4
+ import matching_game from './matching_game'
5
+ import quizshow_game from './quizshow_game'
6
+ import slideshow from './slideshow'
7
+ import multiple_choice from './multiple_choice'
8
+ import word_jumble from './word_jumble'
9
+ import seven_strikes from './seven_strikes'
10
+ import crossword from './crossword'
11
+
12
+ export default {
13
+ bucket_game,
14
+ sorting_game,
15
+ flashcard,
16
+ matching_game,
17
+ quizshow_game,
18
+ slideshow,
19
+ multiple_choice,
20
+ word_jumble,
21
+ seven_strikes,
22
+ crossword,
23
+ }
@@ -0,0 +1,26 @@
1
+ export default {
2
+ description:
3
+ 'Arrastra el descriptor correcto a la oración y espera comentarios.',
4
+ of_complete: '{0} de {1} completo',
5
+ of_complete_text_area: 'Completado {0} de {1}',
6
+ prompt: 'Avisar',
7
+ prompt_plural: 'Avisos',
8
+ amount_of_prompts: 'Cantidad de mensajes',
9
+ answer: 'Respuesta',
10
+ toggle: 'Alternar para cargar imagen',
11
+ match_game_title: 'Título del juego de combinación',
12
+ add_prompt: 'Agregar mensaje',
13
+ add_answer: 'Agregar respuesta',
14
+ choose_answer_value: 'Elija un valor de respuesta',
15
+ default_feedback: 'Mira aquí para recibir comentarios',
16
+ congratulations_feedback: '¡Felicitaciones! ¡Has completado el juego!',
17
+ answer_display_text: 'Texto mostrado de respuesta',
18
+ alt_image: 'Texto alternativo para imagen',
19
+ aria_described: 'Aria descrita por',
20
+ reset: 'Reiniciar juego',
21
+ term: 'Término',
22
+ terms: 'Términos',
23
+ prompts: 'Avisos',
24
+ click_here: 'Haga clic aquí para ingresar texto',
25
+ image: 'Imagen',
26
+ }
@@ -0,0 +1,9 @@
1
+ export default {
2
+ game_title: 'Juego de opción múltiple',
3
+ hint: 'Ver sugerencia',
4
+ fifty: '50:50',
5
+ hint_title: 'Pista',
6
+ answer_feedback: 'Comentarios de respuesta',
7
+ total_points: 'Puntos totales por Curso',
8
+ out_of: 'fuera de',
9
+ }
@@ -0,0 +1,35 @@
1
+ export default {
2
+ basic_instructions:
3
+ 'Para comenzar, elija un cuadro de preguntas en el tablero de preguntas para ver una pregunta que valga la cantidad especificada de puntos. Haga clic en la respuesta seleccionada para recibir comentarios inmediatos. (Las respuestas correctas aparecerán en verde, mientras que las respuestas incorrectas se marcarán en rojo). ',
4
+ title: 'Título de la presentación de diapositivas',
5
+ total_score: 'puntuación total',
6
+ return_to_questions: 'volver a preguntas',
7
+ spreadsheet_mode: 'Modo hoja de cálculo',
8
+ form: {
9
+ basic_instructions:
10
+ 'Para comenzar, elija un cuadro de preguntas en el tablero de preguntas para ver una pregunta que valga la cantidad especificada de puntos. Haga clic en la respuesta seleccionada para recibir comentarios inmediatos. (Las respuestas correctas aparecerán en verde, mientras que las respuestas incorrectas se marcarán en rojo). ',
11
+ question: 'pregunta',
12
+ question_text: 'Agregar pregunta aquí',
13
+ choice: 'Respuesta',
14
+ for_points: 'sin puntos | Por 1 punto | Para {puntos} puntos',
15
+ },
16
+ feedback: {
17
+ correct: 'Correcto',
18
+ incorrect: 'Incorrecto',
19
+ answer: 'Responder comentarios',
20
+ answer_description: 'Descripción de la respuesta',
21
+ placeholder: '¡Esta es la elección correcta!'
22
+ },
23
+ add_choice: 'añadir opción',
24
+ success: 'éxito',
25
+ error: 'error',
26
+ expand_button: 'haga clic para ampliar',
27
+ category: 'Categoría',
28
+ points: 'Puntos',
29
+ question: 'Pregunta',
30
+ answer: 'Respuesta',
31
+ choice_1: 'Elección 1',
32
+ choice_2: 'Elección 2',
33
+ choice_3: 'Elección 3',
34
+ choice_4: 'Elección 4',
35
+ }
@@ -0,0 +1,6 @@
1
+ export default {
2
+ title: 'Siete golpes',
3
+ reveal: 'Revelar respuesta',
4
+ again: 'Reproducir de nuevo',
5
+ next: 'Siguiente',
6
+ }
@@ -0,0 +1,13 @@
1
+ export default {
2
+ slides: {
3
+ slide: 'Diapositiva {0}: {1}',
4
+ slide_header: 'Encabezado de diapositiva' ,
5
+ slide_description: 'Descripción de la diapositiva',
6
+ image_alt: 'Ingrese texto aquí si no está subiendo la imagen',
7
+ },
8
+ add_slide: 'Agregar diapositiva',
9
+ amount_of_slides: 'Cantidad de diapositivas',
10
+ slideshow_title: 'Título de la presentación de diapositivas',
11
+ basic_instructions:
12
+ "Haga clic en los botones 'siguiente' y 'anterior' para moverse por la presentación de diapositivas.",
13
+ }
@@ -0,0 +1,5 @@
1
+ export default {
2
+ check_answers: 'Compruebe sus respuestas',
3
+ add_element: 'Agregar elemento',
4
+ placeholder: 'Marcador de posición',
5
+ }
@@ -0,0 +1,9 @@
1
+ export default {
2
+ title: 'Juego de palabras revueltas',
3
+ clue: 'Pista: ',
4
+ check: 'Comprobar respuesta',
5
+ reveal: 'Revelar respuesta',
6
+ correct: '¡Eso es correcto!',
7
+ incorrect: 'Eso es incorrecto',
8
+ feedback: 'Comentarios aquí',
9
+ }
@@ -0,0 +1,6 @@
1
+ export default {
2
+ display: 'Pantalla',
3
+ add_row: 'Agregar elementos',
4
+ new_item: 'Nuevo artículo',
5
+ answer_keys: 'Términos',
6
+ }
@@ -0,0 +1,7 @@
1
+ import blocks from './blocks'
2
+ import crud_table from './crud_table'
3
+
4
+ export default {
5
+ crud_table,
6
+ blocks,
7
+ }
@@ -0,0 +1,9 @@
1
+ import content from './content'
2
+ import settings from './settings'
3
+ import navigation from './navigation/index'
4
+
5
+ export default {
6
+ content,
7
+ settings,
8
+ navigation,
9
+ }
@@ -0,0 +1,5 @@
1
+ // import example from './example'
2
+
3
+ export default {
4
+ // example,
5
+ }
@@ -0,0 +1,38 @@
1
+ export default {
2
+ form: {
3
+ insert_math: 'Insertar matemáticas',
4
+ mass_entry: 'Entrada masiva de datos',
5
+ title: 'Título',
6
+ instructions: 'Instrucciones',
7
+ buckets: 'Elementos del depósito',
8
+ feedback: {
9
+ feedback: 'Comentarios',
10
+ default: 'Comentarios predeterminados',
11
+ correct: 'comentarios cuando sea correcto',
12
+ incorrect: 'comentarios cuando son incorrectos',
13
+ correct_default: '¡Correcto!',
14
+ incorrect_default: 'Eso es incorrecto.',
15
+ },
16
+ image: {
17
+ title: 'Archivo de imagen de tarjeta flash',
18
+ configure_blurb:
19
+ 'Cargue un archivo de imagen (.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 en el medio de la flashcard.',
20
+ alt_text: 'Texto alternativo',
21
+ },
22
+ update: 'actualizar',
23
+ submit: 'enviar',
24
+ preview: 'vista previa',
25
+ new: 'Agregar nuevo',
26
+ cancel: 'cancelar ',
27
+ rules: {
28
+ field_required: 'Este campo es obligatorio',
29
+ char_count_less_then:
30
+ 'El número de caracteres para este campo debe ser menor que',
31
+ },
32
+ enter_text: 'Haga clic para ingresar texto',
33
+ add_bucket: 'Agregar depósito',
34
+ click_here: 'Haga clic aquí para ingresar texto',
35
+ add_answer: 'Agregar respuesta',
36
+ color: 'Color del cubo',
37
+ },
38
+ }
@@ -0,0 +1,7 @@
1
+ export default {
2
+ crossword_items: 'Elementos de crucigrama',
3
+ word: 'Palabra',
4
+ clue: 'Pista',
5
+ min_length: 'No puede tener menos de dos palabras',
6
+ alert: 'Alerta',
7
+ }
@@ -0,0 +1,28 @@
1
+ export default {
2
+ form: {
3
+ card: 'Tarjeta',
4
+ label: 'Etiqueta de tarjeta',
5
+ card_content: 'Contenido de la tarjeta',
6
+ front: 'Frente',
7
+ back: 'Volver',
8
+ header: 'Encabezado',
9
+ text: 'Texto',
10
+ image: {
11
+ title: 'Archivo de imagen de tarjeta flash',
12
+ configure_blurb:
13
+ 'Cargue un archivo de imagen (.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 en el medio de la flashcard.',
14
+ alt_text: 'Texto alternativo',
15
+ },
16
+ update: 'actualizar',
17
+ submit: 'enviar',
18
+ preview: 'vista previa',
19
+ new: 'Agregar nuevo',
20
+ cancel: 'cancelar ',
21
+ add_card: 'Agregar tarjeta',
22
+ rules: {
23
+ field_required: 'Este campo es obligatorio',
24
+ char_count_less_then:
25
+ 'El número de caracteres para este campo debe ser menor que',
26
+ },
27
+ },
28
+ }
@@ -0,0 +1,23 @@
1
+ import bucket_game from './bucket_game'
2
+ import flashcard from './flashcard'
3
+ import matching_game from './matching_game'
4
+ import quizshow_game from './quizshow_game'
5
+ import slideshow from './slideshow'
6
+ import multiple_choice from './multiple_choice'
7
+ import sorting_game from './sorting_game'
8
+ import word_jumble from './word_jumble'
9
+ import seven_strikes from './seven_strikes'
10
+ import crossword from './crossword'
11
+
12
+ export default {
13
+ bucket_game,
14
+ flashcard,
15
+ matching_game,
16
+ quizshow_game,
17
+ word_jumble,
18
+ slideshow,
19
+ multiple_choice,
20
+ sorting_game,
21
+ seven_strikes,
22
+ crossword,
23
+ }