@windward/games 0.6.0 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -1
- package/components/content/blocks/dragDrop/BucketGame.vue +24 -8
- package/components/content/blocks/flashcards/CardFace.vue +3 -3
- package/components/content/blocks/matchingGame/MatchingGame.vue +0 -7
- package/components/content/blocks/sevenStrikes/SevenStikes.vue +2 -6
- package/components/content/blocks/wordJumble/WordJumble.vue +9 -8
- package/components/settings/BucketGameSettingsManager.vue +37 -40
- package/components/settings/CrosswordPuzzleSettingsManager.vue +49 -26
- package/components/settings/FlashCardSlidesManager.vue +30 -16
- package/components/settings/MatchingGameManager.vue +39 -20
- package/components/settings/MultipleChoiceSettingsManager.vue +29 -14
- package/components/settings/QuizShowSettingsManager.vue +20 -12
- package/components/settings/SevenStrikesSettingsManager.vue +37 -25
- package/components/settings/SlideShowManager.vue +39 -20
- package/components/settings/SortingGameSettingsManager.vue +40 -20
- package/components/settings/WordJumbleSettingsManager.vue +33 -25
- package/i18n/en-US/components/content/blocks/bucket_game.ts +1 -0
- package/i18n/en-US/components/content/blocks/flashcard.ts +2 -2
- package/i18n/en-US/components/content/blocks/quizshow_game.ts +1 -1
- package/i18n/en-US/components/settings/bucket_game.ts +2 -1
- package/i18n/en-US/components/settings/crossword.ts +1 -0
- package/i18n/en-US/components/settings/flashcard.ts +2 -1
- package/i18n/en-US/components/settings/matching_game.ts +1 -0
- package/i18n/en-US/components/settings/multiple_choice.ts +1 -0
- package/i18n/en-US/components/settings/quizshow_game.ts +1 -1
- package/i18n/en-US/components/settings/seven_strikes.ts +1 -1
- package/i18n/en-US/components/settings/slideshow.ts +3 -2
- package/i18n/en-US/components/settings/sorting_game.ts +1 -0
- package/i18n/en-US/components/settings/word_jumble.ts +1 -0
- package/i18n/es-ES/components/content/blocks/bucket_game.ts +1 -0
- package/i18n/es-ES/components/settings/bucket_game.ts +3 -1
- package/i18n/es-ES/components/settings/crossword.ts +2 -0
- package/i18n/es-ES/components/settings/flashcard.ts +1 -0
- package/i18n/es-ES/components/settings/matching_game.ts +1 -0
- package/i18n/es-ES/components/settings/multiple_choice.ts +2 -0
- package/i18n/es-ES/components/settings/quizshow_game.ts +1 -1
- package/i18n/es-ES/components/settings/slideshow.ts +1 -0
- package/i18n/es-ES/components/settings/sorting_game.ts +1 -0
- package/i18n/es-ES/components/settings/word_jumble.ts +1 -0
- package/i18n/sv-SE/components/content/blocks/bucket_game.ts +1 -0
- package/i18n/sv-SE/components/content/blocks/quizshow_game.ts +1 -1
- package/i18n/sv-SE/components/settings/bucket_game.ts +2 -0
- package/i18n/sv-SE/components/settings/crossword.ts +1 -0
- package/i18n/sv-SE/components/settings/flashcard.ts +1 -0
- package/i18n/sv-SE/components/settings/matching_game.ts +1 -0
- package/i18n/sv-SE/components/settings/multiple_choice.ts +1 -0
- package/i18n/sv-SE/components/settings/quizshow_game.ts +1 -1
- package/i18n/sv-SE/components/settings/slideshow.ts +1 -0
- package/i18n/sv-SE/components/settings/sorting_game.ts +1 -0
- package/i18n/sv-SE/components/settings/word_jumble.ts +2 -1
- package/i18n/sv-SE/shared/content_blocks.ts +5 -5
- package/i18n/sv-SE/shared/settings.ts +6 -6
- package/package.json +1 -1
|
@@ -273,20 +273,28 @@ export default {
|
|
|
273
273
|
},
|
|
274
274
|
],
|
|
275
275
|
shortInputRules: [
|
|
276
|
-
(v) =>
|
|
277
|
-
v.length
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
276
|
+
(v) => {
|
|
277
|
+
if (v && v.length >= 50) {
|
|
278
|
+
return this.$t(
|
|
279
|
+
'windward.games.shared.settings.errors.input_limitations',
|
|
280
|
+
[50]
|
|
281
|
+
)
|
|
282
|
+
} else {
|
|
283
|
+
return true
|
|
284
|
+
}
|
|
285
|
+
},
|
|
282
286
|
],
|
|
283
287
|
instructionRule: [
|
|
284
|
-
(v) =>
|
|
285
|
-
v.length
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
288
|
+
(v) => {
|
|
289
|
+
if (v && v.length >= 255) {
|
|
290
|
+
return this.$t(
|
|
291
|
+
'windward.games.shared.settings.errors.input_limitations',
|
|
292
|
+
[255]
|
|
293
|
+
)
|
|
294
|
+
} else {
|
|
295
|
+
return true
|
|
296
|
+
}
|
|
297
|
+
},
|
|
290
298
|
],
|
|
291
299
|
},
|
|
292
300
|
loading: false,
|
|
@@ -144,6 +144,7 @@ import draggable from 'vuedraggable'
|
|
|
144
144
|
import BaseContentSettings from '~/components/Content/Settings/BaseContentSettings.js'
|
|
145
145
|
import CrudTable from '../content/CrudTable.vue'
|
|
146
146
|
import SortableExpansionPanel from '~/components/Core/SortableExpansionPanel.vue'
|
|
147
|
+
import Uuid from '~/helpers/Uuid'
|
|
147
148
|
|
|
148
149
|
export default {
|
|
149
150
|
name: 'SevenStrikesSettingsManager',
|
|
@@ -167,20 +168,19 @@ export default {
|
|
|
167
168
|
'windward.games.components.settings.seven_strikes.title'
|
|
168
169
|
)
|
|
169
170
|
}
|
|
170
|
-
if (
|
|
171
|
+
if (
|
|
172
|
+
_.isEmpty(this.block.metadata.config.instructions) && this.block.id &&
|
|
173
|
+
!Uuid.test(this.block.id)
|
|
174
|
+
) {
|
|
171
175
|
this.block.metadata.config.instructions = this.$t(
|
|
172
176
|
'windward.games.components.settings.seven_strikes.instructions'
|
|
173
177
|
)
|
|
174
178
|
}
|
|
175
179
|
if (_.isEmpty(this.block.metadata.config.feedback_correct)) {
|
|
176
|
-
this.block.metadata.config.feedback_correct =
|
|
177
|
-
'windward.games.components.settings.bucket_game.form.feedback.correct_default'
|
|
178
|
-
)
|
|
180
|
+
this.block.metadata.config.feedback_correct = ''
|
|
179
181
|
}
|
|
180
182
|
if (_.isEmpty(this.block.metadata.config.feedback_incorrect)) {
|
|
181
|
-
this.block.metadata.config.feedback_incorrect =
|
|
182
|
-
'windward.games.components.settings.bucket_game.form.feedback.incorrect_default'
|
|
183
|
-
)
|
|
183
|
+
this.block.metadata.config.feedback_incorrect = ''
|
|
184
184
|
}
|
|
185
185
|
if (_.isEmpty(this.block.metadata.config.words)) {
|
|
186
186
|
this.block.metadata.config.words = []
|
|
@@ -199,28 +199,40 @@ export default {
|
|
|
199
199
|
loading: false,
|
|
200
200
|
validation: {
|
|
201
201
|
shortInputRules: [
|
|
202
|
-
(v) =>
|
|
203
|
-
v.length
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
202
|
+
(v) => {
|
|
203
|
+
if (v && v.length >= 50) {
|
|
204
|
+
return this.$t(
|
|
205
|
+
'windward.games.shared.settings.errors.input_limitations',
|
|
206
|
+
[50]
|
|
207
|
+
)
|
|
208
|
+
} else {
|
|
209
|
+
return true
|
|
210
|
+
}
|
|
211
|
+
},
|
|
208
212
|
],
|
|
209
213
|
instructionRule: [
|
|
210
|
-
(v) =>
|
|
211
|
-
v.length
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
214
|
+
(v) => {
|
|
215
|
+
if (v && v.length >= 255) {
|
|
216
|
+
return this.$t(
|
|
217
|
+
'windward.games.shared.settings.errors.input_limitations',
|
|
218
|
+
[255]
|
|
219
|
+
)
|
|
220
|
+
} else {
|
|
221
|
+
return true
|
|
222
|
+
}
|
|
223
|
+
},
|
|
216
224
|
],
|
|
217
225
|
clueRule: [
|
|
218
|
-
(v) =>
|
|
219
|
-
v.length
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
226
|
+
(v) => {
|
|
227
|
+
if (v && v.length >= 155) {
|
|
228
|
+
return this.$t(
|
|
229
|
+
'windward.games.shared.settings.errors.input_limitations',
|
|
230
|
+
[155]
|
|
231
|
+
)
|
|
232
|
+
} else {
|
|
233
|
+
return true
|
|
234
|
+
}
|
|
235
|
+
},
|
|
224
236
|
],
|
|
225
237
|
},
|
|
226
238
|
}
|
|
@@ -151,6 +151,7 @@ import BaseContentSettings from '~/components/Content/Settings/BaseContentSettin
|
|
|
151
151
|
import _ from 'lodash'
|
|
152
152
|
import ContentBlockAsset from '~/components/Content/ContentBlockAsset.vue'
|
|
153
153
|
import SortableExpansionPanel from '~/components/Core/SortableExpansionPanel.vue'
|
|
154
|
+
import Uuid from '~/helpers/Uuid'
|
|
154
155
|
|
|
155
156
|
export default {
|
|
156
157
|
name: 'SlideShowManager',
|
|
@@ -180,8 +181,14 @@ export default {
|
|
|
180
181
|
'windward.games.components.settings.slideshow.form.slideshow_title'
|
|
181
182
|
)
|
|
182
183
|
}
|
|
183
|
-
if (
|
|
184
|
-
this.block.metadata.config.instructions
|
|
184
|
+
if (
|
|
185
|
+
_.isEmpty(this.block.metadata.config.instructions) &&
|
|
186
|
+
this.block.id &&
|
|
187
|
+
!Uuid.test(this.block.id)
|
|
188
|
+
) {
|
|
189
|
+
this.block.metadata.config.instructions = this.$t(
|
|
190
|
+
'windward.games.components.settings.slideshow.form.default_instructions'
|
|
191
|
+
)
|
|
185
192
|
}
|
|
186
193
|
|
|
187
194
|
if (_.isEmpty(this.block.metadata.config.slides)) {
|
|
@@ -200,28 +207,40 @@ export default {
|
|
|
200
207
|
loading: false,
|
|
201
208
|
validation: {
|
|
202
209
|
shortInputRules: [
|
|
203
|
-
(v) =>
|
|
204
|
-
(v.length
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
210
|
+
(v) => {
|
|
211
|
+
if (v && v.length >= 50) {
|
|
212
|
+
return this.$t(
|
|
213
|
+
'windward.games.shared.settings.errors.input_limitations',
|
|
214
|
+
[50]
|
|
215
|
+
)
|
|
216
|
+
} else {
|
|
217
|
+
return true
|
|
218
|
+
}
|
|
219
|
+
},
|
|
209
220
|
],
|
|
210
221
|
instructionRule: [
|
|
211
|
-
(v) =>
|
|
212
|
-
(v.length
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
222
|
+
(v) => {
|
|
223
|
+
if (v && v.length >= 255) {
|
|
224
|
+
return this.$t(
|
|
225
|
+
'windward.games.shared.settings.errors.input_limitations',
|
|
226
|
+
[255]
|
|
227
|
+
)
|
|
228
|
+
} else {
|
|
229
|
+
return true
|
|
230
|
+
}
|
|
231
|
+
},
|
|
217
232
|
],
|
|
218
233
|
clueRule: [
|
|
219
|
-
(v) =>
|
|
220
|
-
(v.length
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
234
|
+
(v) => {
|
|
235
|
+
if (v && v.length >= 155) {
|
|
236
|
+
return this.$t(
|
|
237
|
+
'windward.games.shared.settings.errors.input_limitations',
|
|
238
|
+
[155]
|
|
239
|
+
)
|
|
240
|
+
} else {
|
|
241
|
+
return true
|
|
242
|
+
}
|
|
243
|
+
},
|
|
225
244
|
],
|
|
226
245
|
},
|
|
227
246
|
}
|
|
@@ -129,6 +129,8 @@
|
|
|
129
129
|
import _ from 'lodash'
|
|
130
130
|
import BaseContentSettings from '~/components/Content/Settings/BaseContentSettings.js'
|
|
131
131
|
import SortableExpansionPanel from '~/components/Core/SortableExpansionPanel.vue'
|
|
132
|
+
import Uuid from '~/helpers/Uuid'
|
|
133
|
+
|
|
132
134
|
export default {
|
|
133
135
|
name: 'SortingGameSettingsManager',
|
|
134
136
|
extends: BaseContentSettings,
|
|
@@ -148,8 +150,14 @@ export default {
|
|
|
148
150
|
'windward.games.components.settings.sorting_game.sortable_game'
|
|
149
151
|
)
|
|
150
152
|
}
|
|
151
|
-
if (
|
|
152
|
-
this.block.metadata.config.instructions
|
|
153
|
+
if (
|
|
154
|
+
_.isEmpty(this.block.metadata.config.instructions) &&
|
|
155
|
+
this.block.id &&
|
|
156
|
+
!Uuid.test(this.block.id)
|
|
157
|
+
) {
|
|
158
|
+
this.block.metadata.config.instructions = this.$t(
|
|
159
|
+
'windward.games.components.settings.sorting_game.instructions'
|
|
160
|
+
)
|
|
153
161
|
}
|
|
154
162
|
if (_.isEmpty(this.block.metadata.config.feedback_correct)) {
|
|
155
163
|
this.block.metadata.config.feedback_correct = this.$t(
|
|
@@ -187,28 +195,40 @@ export default {
|
|
|
187
195
|
cursor: null,
|
|
188
196
|
validation: {
|
|
189
197
|
shortInputRules: [
|
|
190
|
-
(v) =>
|
|
191
|
-
v.length
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
198
|
+
(v) => {
|
|
199
|
+
if (v && v.length >= 50) {
|
|
200
|
+
return this.$t(
|
|
201
|
+
'windward.games.shared.settings.errors.input_limitations',
|
|
202
|
+
[50]
|
|
203
|
+
)
|
|
204
|
+
} else {
|
|
205
|
+
return true
|
|
206
|
+
}
|
|
207
|
+
},
|
|
196
208
|
],
|
|
197
209
|
instructionRule: [
|
|
198
|
-
(v) =>
|
|
199
|
-
v.length
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
210
|
+
(v) => {
|
|
211
|
+
if (v && v.length >= 255) {
|
|
212
|
+
return this.$t(
|
|
213
|
+
'windward.games.shared.settings.errors.input_limitations',
|
|
214
|
+
[255]
|
|
215
|
+
)
|
|
216
|
+
} else {
|
|
217
|
+
return true
|
|
218
|
+
}
|
|
219
|
+
},
|
|
204
220
|
],
|
|
205
221
|
sortableWordRule: [
|
|
206
|
-
(v) =>
|
|
207
|
-
v.length
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
222
|
+
(v) => {
|
|
223
|
+
if (v && v.length >= 155) {
|
|
224
|
+
return this.$t(
|
|
225
|
+
'windward.games.shared.settings.errors.input_limitations',
|
|
226
|
+
[155]
|
|
227
|
+
)
|
|
228
|
+
} else {
|
|
229
|
+
return true
|
|
230
|
+
}
|
|
231
|
+
},
|
|
212
232
|
],
|
|
213
233
|
},
|
|
214
234
|
}
|
|
@@ -170,21 +170,17 @@ export default {
|
|
|
170
170
|
}
|
|
171
171
|
if (_.isEmpty(this.block.metadata.config.title)) {
|
|
172
172
|
this.block.metadata.config.title = this.$t(
|
|
173
|
-
'windward.games.components.
|
|
173
|
+
'windward.games.components.settings.word_jumble.title'
|
|
174
174
|
)
|
|
175
175
|
}
|
|
176
176
|
if (_.isEmpty(this.block.metadata.config.instructions)) {
|
|
177
177
|
this.block.metadata.config.instructions = ''
|
|
178
178
|
}
|
|
179
179
|
if (_.isEmpty(this.block.metadata.config.feedback_correct)) {
|
|
180
|
-
this.block.metadata.config.feedback_correct =
|
|
181
|
-
'windward.games.components.settings.bucket_game.form.feedback.correct_default'
|
|
182
|
-
)
|
|
180
|
+
this.block.metadata.config.feedback_correct = ''
|
|
183
181
|
}
|
|
184
182
|
if (_.isEmpty(this.block.metadata.config.feedback_incorrect)) {
|
|
185
|
-
this.block.metadata.config.feedback_incorrect =
|
|
186
|
-
'windward.games.components.settings.bucket_game.form.feedback.incorrect_default'
|
|
187
|
-
)
|
|
183
|
+
this.block.metadata.config.feedback_incorrect = ''
|
|
188
184
|
}
|
|
189
185
|
if (_.isEmpty(this.block.metadata.config.words)) {
|
|
190
186
|
this.block.metadata.config.words = []
|
|
@@ -197,28 +193,40 @@ export default {
|
|
|
197
193
|
loading: false,
|
|
198
194
|
validation: {
|
|
199
195
|
shortInputRules: [
|
|
200
|
-
(v) =>
|
|
201
|
-
v.length
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
196
|
+
(v) => {
|
|
197
|
+
if (v && v.length >= 50) {
|
|
198
|
+
return this.$t(
|
|
199
|
+
'windward.games.shared.settings.errors.input_limitations',
|
|
200
|
+
[50]
|
|
201
|
+
)
|
|
202
|
+
} else {
|
|
203
|
+
return true
|
|
204
|
+
}
|
|
205
|
+
},
|
|
206
206
|
],
|
|
207
207
|
instructionRule: [
|
|
208
|
-
(v) =>
|
|
209
|
-
v.length
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
208
|
+
(v) => {
|
|
209
|
+
if (v && v.length >= 255) {
|
|
210
|
+
return this.$t(
|
|
211
|
+
'windward.games.shared.settings.errors.input_limitations',
|
|
212
|
+
[255]
|
|
213
|
+
)
|
|
214
|
+
} else {
|
|
215
|
+
return true
|
|
216
|
+
}
|
|
217
|
+
},
|
|
214
218
|
],
|
|
215
219
|
hintRule: [
|
|
216
|
-
(v) =>
|
|
217
|
-
v.length
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
220
|
+
(v) => {
|
|
221
|
+
if (v && v.length >= 155) {
|
|
222
|
+
return this.$t(
|
|
223
|
+
'windward.games.shared.settings.errors.input_limitations',
|
|
224
|
+
[155]
|
|
225
|
+
)
|
|
226
|
+
} else {
|
|
227
|
+
return true
|
|
228
|
+
}
|
|
229
|
+
},
|
|
222
230
|
],
|
|
223
231
|
},
|
|
224
232
|
}
|
|
@@ -18,7 +18,7 @@ export default {
|
|
|
18
18
|
incorrect: 'Incorrect',
|
|
19
19
|
answer: 'Answer Feedback',
|
|
20
20
|
answer_description: 'Answer Description',
|
|
21
|
-
placeholder: 'This is the correct choice!'
|
|
21
|
+
placeholder: 'This is the correct choice!',
|
|
22
22
|
},
|
|
23
23
|
add_choice: 'add choice',
|
|
24
24
|
success: 'success',
|
|
@@ -4,6 +4,7 @@ export default {
|
|
|
4
4
|
mass_entry: 'Mass data entry',
|
|
5
5
|
title: 'Title',
|
|
6
6
|
instructions: 'Instructions',
|
|
7
|
+
default_instructions: 'Match the correct descriptor to the prompt. To make a match, drag the descriptor and release it over the prompt. Incorrect answers will flash red. Correct answers will flash green and reveal a Continue button so you can move on to the next prompt.',
|
|
7
8
|
buckets: 'Bucket Items',
|
|
8
9
|
feedback: {
|
|
9
10
|
feedback: 'Feedback',
|
|
@@ -12,7 +13,7 @@ export default {
|
|
|
12
13
|
incorrect: 'feedback when incorrect',
|
|
13
14
|
correct_default: 'That is correct.',
|
|
14
15
|
incorrect_default:
|
|
15
|
-
'That is incorrect.
|
|
16
|
+
'That is incorrect.',
|
|
16
17
|
},
|
|
17
18
|
image: {
|
|
18
19
|
title: 'Flash Card Image File',
|
|
@@ -4,4 +4,5 @@ export default {
|
|
|
4
4
|
clue: 'Clue',
|
|
5
5
|
min_length: 'Cannot have less than two words',
|
|
6
6
|
alert: 'Alert',
|
|
7
|
+
instructions: 'Complete the crossword by clicking on each square to type the appropriate letter. Use the tab key to move left to right across the grid. Click on the clue to highlight the corresponding word in the puzzle.',
|
|
7
8
|
}
|
|
@@ -9,7 +9,7 @@ export default {
|
|
|
9
9
|
header: 'Header',
|
|
10
10
|
text: 'Text',
|
|
11
11
|
image: {
|
|
12
|
-
title: '
|
|
12
|
+
title: 'Flashcard Image File',
|
|
13
13
|
configure_blurb:
|
|
14
14
|
'Upload an image file (.png or .jpg), pick one from the file manager, or add via the public URL. This is the image that appears in the middle of the flashcard.',
|
|
15
15
|
alt_text: 'Alt Text',
|
|
@@ -25,5 +25,6 @@ export default {
|
|
|
25
25
|
char_count_less_then:
|
|
26
26
|
'The character count for this field must be less than',
|
|
27
27
|
},
|
|
28
|
+
instructions:"Click on each card to reveal the term's definition. Use the arrows to move through the deck.",
|
|
28
29
|
},
|
|
29
30
|
}
|
|
@@ -2,6 +2,7 @@ export default {
|
|
|
2
2
|
form: {
|
|
3
3
|
title: 'Matching Game',
|
|
4
4
|
instructions: 'Instructions',
|
|
5
|
+
default_instructions: 'Match the following scenario with the appropriate descriptor. Drag the descriptor and release it over the scenario. Incorrect answers will flash red. Correct answers will flash green and reveal a Continue button so you can move on to the next scenario.',
|
|
5
6
|
prompt_body: 'Prompt Body',
|
|
6
7
|
correct_match: 'This match is correct.',
|
|
7
8
|
incorrect_match: 'That’s an incorrect match. Try again.',
|
|
@@ -2,6 +2,7 @@ export default {
|
|
|
2
2
|
game_title: 'Multiple Choice Game',
|
|
3
3
|
title_placeholder: 'Title',
|
|
4
4
|
instructions: 'Instructions',
|
|
5
|
+
default_instructions: 'Read the question and click the correct answer below. Use the arrows to move between questions.',
|
|
5
6
|
questions: 'Questions',
|
|
6
7
|
modal_title: 'Multiple Choice Question',
|
|
7
8
|
question_hint: 'Question Hint',
|
|
@@ -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
|
-
'
|
|
18
|
+
'To begin, choose a question box on the quiz board to view a question worth the specified number of points. Click your selected response to receive immediate feedback.',
|
|
19
19
|
},
|
|
20
20
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
title: 'Seven Strikes',
|
|
3
3
|
instructions:
|
|
4
|
-
|
|
4
|
+
"Read the clue below, and click on the letters to spell out the word the clue refers to. If you choose a letter that isn't in the word, an X will be illuminated. When you choose an incorrect letter 7 times, the game is over.",
|
|
5
5
|
word: 'Word or Phrase',
|
|
6
6
|
hint: 'Clue',
|
|
7
7
|
items: 'Seven Strikes Items',
|
|
@@ -2,12 +2,13 @@ export default {
|
|
|
2
2
|
form: {
|
|
3
3
|
title: 'Title',
|
|
4
4
|
instructions: 'Instructions',
|
|
5
|
+
default_instructions: 'Use the arrows to move through the slideshow.',
|
|
5
6
|
rules: {
|
|
6
7
|
field_required: 'This field is required',
|
|
7
8
|
char_count_less_then:
|
|
8
9
|
'The character count for this field must be less than',
|
|
9
10
|
},
|
|
10
|
-
items: '
|
|
11
|
-
slideshow_title: '
|
|
11
|
+
items: 'Slideshow Items',
|
|
12
|
+
slideshow_title: 'Slideshow Title',
|
|
12
13
|
},
|
|
13
14
|
}
|
|
@@ -2,4 +2,5 @@ export default {
|
|
|
2
2
|
sortable_game: 'Sortable Game',
|
|
3
3
|
sortable_items: 'Sortable Items',
|
|
4
4
|
word: 'Sortable Word',
|
|
5
|
+
instructions: 'Drag each statement into the correct order. When you are finished, click the Check Your Answers button. Statements in the correct order will appear green, while statements not in the correct order will appear red.',
|
|
5
6
|
}
|
|
@@ -4,6 +4,8 @@ export default {
|
|
|
4
4
|
mass_entry: 'Entrada masiva de datos',
|
|
5
5
|
title: 'Título',
|
|
6
6
|
instructions: 'Instrucciones',
|
|
7
|
+
default_instructions:
|
|
8
|
+
'Haga coincidir el descriptor correcto con el mensaje. Para hacer una coincidencia, arrastre el descriptor y suéltelo sobre el mensaje. Las respuestas incorrectas parpadearán en rojo. Las respuestas correctas parpadearán en verde y revelarán un botón Continuar para que pueda pasar al siguiente mensaje.',
|
|
7
9
|
buckets: 'Elementos del depósito',
|
|
8
10
|
feedback: {
|
|
9
11
|
feedback: 'Comentarios',
|
|
@@ -12,7 +14,7 @@ export default {
|
|
|
12
14
|
incorrect: 'comentarios cuando son incorrectos',
|
|
13
15
|
correct_default: 'Eso es correcto.',
|
|
14
16
|
incorrect_default:
|
|
15
|
-
'Eso no es correcto.
|
|
17
|
+
'Eso no es correcto.',
|
|
16
18
|
},
|
|
17
19
|
image: {
|
|
18
20
|
title: 'Archivo de imagen de tarjeta flash',
|
|
@@ -4,4 +4,6 @@ export default {
|
|
|
4
4
|
clue: 'Pista',
|
|
5
5
|
min_length: 'No puede tener menos de dos palabras',
|
|
6
6
|
alert: 'Alerta',
|
|
7
|
+
instructions:
|
|
8
|
+
'Complete el crucigrama haciendo clic en cada cuadrado para escribir la letra correspondiente. Utilice la tecla de tabulación para moverse de izquierda a derecha a través de la cuadrícula. Haga clic en la pista para resaltar la palabra correspondiente en el rompecabezas.',
|
|
7
9
|
}
|
|
@@ -2,6 +2,7 @@ export default {
|
|
|
2
2
|
form: {
|
|
3
3
|
title: 'Juego de Correspondencias',
|
|
4
4
|
instructions: 'Instrucciones',
|
|
5
|
+
default_instructions: 'Relacione el siguiente escenario con el descriptor apropiado. Arrastra el descriptor y suéltalo sobre el escenario. Las respuestas incorrectas parpadearán en rojo. Las respuestas correctas parpadearán en verde y revelarán un botón Continuar para que puedas pasar al siguiente escenario.',
|
|
5
6
|
prompt_body: 'Cuerpo rápido',
|
|
6
7
|
correct_match: 'Esta coincidencia es correcta.',
|
|
7
8
|
incorrect_match: 'Esa es una coincidencia incorrecta. Intentar otra vez.',
|
|
@@ -2,6 +2,8 @@ export default {
|
|
|
2
2
|
game_title: 'Juego de opción múltiple',
|
|
3
3
|
title_placeholder: 'Título',
|
|
4
4
|
instructions: 'Instrucciones',
|
|
5
|
+
default_instructions:
|
|
6
|
+
'Lea la pregunta y haga clic en la respuesta correcta a continuación. Utilice las flechas para moverse entre las preguntas.',
|
|
5
7
|
questions: 'Preguntas',
|
|
6
8
|
modal_title: 'Pregunta de opción múltiple',
|
|
7
9
|
question_hint: 'Pista de pregunta',
|
|
@@ -15,6 +15,6 @@ export default {
|
|
|
15
15
|
responsive: 'Columnas receptivas',
|
|
16
16
|
confirm_change_text: '¿Estás seguro de que quieres cambiar esto?',
|
|
17
17
|
default_instructions:
|
|
18
|
-
'
|
|
18
|
+
'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.',
|
|
19
19
|
},
|
|
20
20
|
}
|
|
@@ -2,4 +2,5 @@ export default {
|
|
|
2
2
|
sortable_game: 'Juego clasificable',
|
|
3
3
|
sortable_items: 'Elementos clasificables',
|
|
4
4
|
word: 'Palabra ordenable',
|
|
5
|
+
instructions: 'Arrastre cada declaración al orden correcto. Cuando haya terminado, haga clic en el botón Verifique sus respuestas. Las declaraciones en el orden correcto aparecerán en verde, mientras que las declaraciones que no estén en el orden correcto aparecerán en rojo.',
|
|
5
6
|
}
|