@windward/games 0.0.9 → 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.
- package/components/content/blocks/dragDrop/BucketGame.vue +41 -87
- package/components/content/blocks/dragDrop/SortingGame.vue +43 -29
- package/components/content/blocks/flashcards/FlashcardSlides.vue +3 -1
- package/components/content/blocks/matchingGame/MatchingGame.vue +94 -51
- package/components/content/blocks/quizshowGame/AnswerPanel.vue +23 -16
- package/components/content/blocks/quizshowGame/QuizShow.vue +17 -4
- package/components/content/blocks/slideshow/SlideShow.vue +3 -1
- package/components/content/blocks/wordJumble/Jumble.vue +4 -2
- package/components/content/blocks/wordJumble/WordJumble.vue +11 -2
- package/components/settings/BucketGameSettingsManager.vue +175 -349
- package/components/settings/FlashCardSlidesManager.vue +335 -414
- package/components/settings/MatchingGameManager.vue +357 -618
- package/components/settings/SlideShowManager.vue +89 -127
- package/components/settings/SortingGameSettingsManager.vue +32 -144
- package/components/settings/WordJumbleSettingsManager.vue +48 -142
- package/i18n/en-US/components/content/blocks/bucket_game.ts +1 -0
- package/i18n/en-US/components/content/blocks/flashcard.ts +2 -0
- package/i18n/en-US/components/settings/matching_game.ts +1 -1
- package/i18n/en-US/components/settings/quizshow_game.ts +1 -1
- package/i18n/en-US/components/settings/slideshow.ts +2 -0
- package/i18n/es-ES/components/content/blocks/bucket_game.ts +40 -0
- package/i18n/es-ES/components/content/blocks/crossword.ts +25 -0
- package/i18n/es-ES/components/content/blocks/flashcard.ts +7 -0
- package/i18n/es-ES/components/content/blocks/index.ts +23 -0
- package/i18n/es-ES/components/content/blocks/matching_game.ts +26 -0
- package/i18n/es-ES/components/content/blocks/multiple_choice.ts +9 -0
- package/i18n/es-ES/components/content/blocks/quizshow_game.ts +35 -0
- package/i18n/es-ES/components/content/blocks/seven_strikes.ts +6 -0
- package/i18n/es-ES/components/content/blocks/slideshow.ts +13 -0
- package/i18n/es-ES/components/content/blocks/sorting_game.ts +5 -0
- package/i18n/es-ES/components/content/blocks/word_jumble.ts +9 -0
- package/i18n/es-ES/components/content/crud_table.ts +6 -0
- package/i18n/es-ES/components/content/index.ts +7 -0
- package/i18n/es-ES/components/index.ts +9 -0
- package/i18n/es-ES/components/navigation/index.ts +5 -0
- package/i18n/es-ES/components/settings/bucket_game.ts +38 -0
- package/i18n/es-ES/components/settings/crossword.ts +7 -0
- package/i18n/es-ES/components/settings/flashcard.ts +28 -0
- package/i18n/es-ES/components/settings/index.ts +23 -0
- package/i18n/es-ES/components/settings/matching_game.ts +15 -0
- package/i18n/es-ES/components/settings/multiple_choice.ts +17 -0
- package/i18n/es-ES/components/settings/quizshow_game.ts +20 -0
- package/i18n/es-ES/components/settings/seven_strikes.ts +8 -0
- package/i18n/es-ES/components/settings/slideshow.ts +13 -0
- package/i18n/es-ES/components/settings/sorting_game.ts +5 -0
- package/i18n/es-ES/components/settings/word_jumble.ts +11 -0
- package/i18n/es-ES/index.ts +15 -0
- package/i18n/es-ES/modules/index.ts +5 -0
- package/i18n/es-ES/pages/index.ts +5 -0
- package/i18n/es-ES/shared/content_blocks.ts +18 -0
- package/i18n/es-ES/shared/index.ts +7 -0
- package/i18n/es-ES/shared/settings.ts +14 -0
- package/i18n/sv-SE/components/content/blocks/bucket_game.ts +40 -0
- package/i18n/sv-SE/components/content/blocks/crossword.ts +20 -0
- package/i18n/sv-SE/components/content/blocks/flashcard.ts +7 -0
- package/i18n/sv-SE/components/content/blocks/index.ts +23 -0
- package/i18n/sv-SE/components/content/blocks/matching_game.ts +25 -0
- package/i18n/sv-SE/components/content/blocks/multiple_choice.ts +9 -0
- package/i18n/sv-SE/components/content/blocks/quizshow_game.ts +35 -0
- package/i18n/sv-SE/components/content/blocks/seven_strikes.ts +6 -0
- package/i18n/sv-SE/components/content/blocks/slideshow.ts +13 -0
- package/i18n/sv-SE/components/content/blocks/sorting_game.ts +5 -0
- package/i18n/sv-SE/components/content/blocks/word_jumble.ts +9 -0
- package/i18n/sv-SE/components/content/crud_table.ts +6 -0
- package/i18n/sv-SE/components/content/index.ts +7 -0
- package/i18n/sv-SE/components/index.ts +9 -0
- package/i18n/sv-SE/components/navigation/index.ts +5 -0
- package/i18n/sv-SE/components/settings/bucket_game.ts +38 -0
- package/i18n/sv-SE/components/settings/crossword.ts +7 -0
- package/i18n/sv-SE/components/settings/flashcard.ts +28 -0
- package/i18n/sv-SE/components/settings/index.ts +23 -0
- package/i18n/sv-SE/components/settings/matching_game.ts +15 -0
- package/i18n/sv-SE/components/settings/multiple_choice.ts +16 -0
- package/i18n/sv-SE/components/settings/quizshow_game.ts +20 -0
- package/i18n/sv-SE/components/settings/seven_strikes.ts +8 -0
- package/i18n/sv-SE/components/settings/slideshow.ts +13 -0
- package/i18n/sv-SE/components/settings/sorting_game.ts +5 -0
- package/i18n/sv-SE/components/settings/word_jumble.ts +11 -0
- package/i18n/sv-SE/index.ts +15 -0
- package/i18n/sv-SE/modules/index.ts +5 -0
- package/i18n/sv-SE/pages/index.ts +5 -0
- package/i18n/sv-SE/shared/content_blocks.ts +18 -0
- package/i18n/sv-SE/shared/index.ts +7 -0
- package/i18n/sv-SE/shared/settings.ts +14 -0
- package/package.json +1 -1
- package/i18n/en-US.ts +0 -5
|
@@ -34,87 +34,55 @@
|
|
|
34
34
|
)
|
|
35
35
|
}}
|
|
36
36
|
</p>
|
|
37
|
-
<
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
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
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
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
|
-
|
|
81
|
-
|
|
82
|
-
|
|
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
|
|
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
|
-
|
|
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;
|
|
@@ -15,6 +15,6 @@ export default {
|
|
|
15
15
|
responsive: 'Responsive Columns',
|
|
16
16
|
confirm_change_text: 'Are you sure you want to change this?',
|
|
17
17
|
default_instructions:
|
|
18
|
-
'Drag and drop the correct word, statement, or image presented into the prompt container and watch for feedback.
|
|
18
|
+
'Drag and drop the correct word, statement, or image presented into the prompt container and watch for feedback. ',
|
|
19
19
|
},
|
|
20
20
|
}
|
|
@@ -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,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,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,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,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,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
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
form: {
|
|
3
|
+
title: 'Juego de Correspondencias',
|
|
4
|
+
instructions: 'Instrucciones',
|
|
5
|
+
feedback: {
|
|
6
|
+
correct: 'comentarios cuando sea correcto',
|
|
7
|
+
incorrect: 'comentarios cuando son incorrectos',
|
|
8
|
+
},
|
|
9
|
+
rules: {
|
|
10
|
+
field_required: 'Este campo es obligatorio',
|
|
11
|
+
char_count_less_then:
|
|
12
|
+
'El número de caracteres para este campo debe ser menor que',
|
|
13
|
+
},
|
|
14
|
+
},
|
|
15
|
+
}
|