@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.
Files changed (53) hide show
  1. package/CHANGELOG.md +8 -1
  2. package/components/content/blocks/dragDrop/BucketGame.vue +24 -8
  3. package/components/content/blocks/flashcards/CardFace.vue +3 -3
  4. package/components/content/blocks/matchingGame/MatchingGame.vue +0 -7
  5. package/components/content/blocks/sevenStrikes/SevenStikes.vue +2 -6
  6. package/components/content/blocks/wordJumble/WordJumble.vue +9 -8
  7. package/components/settings/BucketGameSettingsManager.vue +37 -40
  8. package/components/settings/CrosswordPuzzleSettingsManager.vue +49 -26
  9. package/components/settings/FlashCardSlidesManager.vue +30 -16
  10. package/components/settings/MatchingGameManager.vue +39 -20
  11. package/components/settings/MultipleChoiceSettingsManager.vue +29 -14
  12. package/components/settings/QuizShowSettingsManager.vue +20 -12
  13. package/components/settings/SevenStrikesSettingsManager.vue +37 -25
  14. package/components/settings/SlideShowManager.vue +39 -20
  15. package/components/settings/SortingGameSettingsManager.vue +40 -20
  16. package/components/settings/WordJumbleSettingsManager.vue +33 -25
  17. package/i18n/en-US/components/content/blocks/bucket_game.ts +1 -0
  18. package/i18n/en-US/components/content/blocks/flashcard.ts +2 -2
  19. package/i18n/en-US/components/content/blocks/quizshow_game.ts +1 -1
  20. package/i18n/en-US/components/settings/bucket_game.ts +2 -1
  21. package/i18n/en-US/components/settings/crossword.ts +1 -0
  22. package/i18n/en-US/components/settings/flashcard.ts +2 -1
  23. package/i18n/en-US/components/settings/matching_game.ts +1 -0
  24. package/i18n/en-US/components/settings/multiple_choice.ts +1 -0
  25. package/i18n/en-US/components/settings/quizshow_game.ts +1 -1
  26. package/i18n/en-US/components/settings/seven_strikes.ts +1 -1
  27. package/i18n/en-US/components/settings/slideshow.ts +3 -2
  28. package/i18n/en-US/components/settings/sorting_game.ts +1 -0
  29. package/i18n/en-US/components/settings/word_jumble.ts +1 -0
  30. package/i18n/es-ES/components/content/blocks/bucket_game.ts +1 -0
  31. package/i18n/es-ES/components/settings/bucket_game.ts +3 -1
  32. package/i18n/es-ES/components/settings/crossword.ts +2 -0
  33. package/i18n/es-ES/components/settings/flashcard.ts +1 -0
  34. package/i18n/es-ES/components/settings/matching_game.ts +1 -0
  35. package/i18n/es-ES/components/settings/multiple_choice.ts +2 -0
  36. package/i18n/es-ES/components/settings/quizshow_game.ts +1 -1
  37. package/i18n/es-ES/components/settings/slideshow.ts +1 -0
  38. package/i18n/es-ES/components/settings/sorting_game.ts +1 -0
  39. package/i18n/es-ES/components/settings/word_jumble.ts +1 -0
  40. package/i18n/sv-SE/components/content/blocks/bucket_game.ts +1 -0
  41. package/i18n/sv-SE/components/content/blocks/quizshow_game.ts +1 -1
  42. package/i18n/sv-SE/components/settings/bucket_game.ts +2 -0
  43. package/i18n/sv-SE/components/settings/crossword.ts +1 -0
  44. package/i18n/sv-SE/components/settings/flashcard.ts +1 -0
  45. package/i18n/sv-SE/components/settings/matching_game.ts +1 -0
  46. package/i18n/sv-SE/components/settings/multiple_choice.ts +1 -0
  47. package/i18n/sv-SE/components/settings/quizshow_game.ts +1 -1
  48. package/i18n/sv-SE/components/settings/slideshow.ts +1 -0
  49. package/i18n/sv-SE/components/settings/sorting_game.ts +1 -0
  50. package/i18n/sv-SE/components/settings/word_jumble.ts +2 -1
  51. package/i18n/sv-SE/shared/content_blocks.ts +5 -5
  52. package/i18n/sv-SE/shared/settings.ts +6 -6
  53. package/package.json +1 -1
@@ -273,20 +273,28 @@ export default {
273
273
  },
274
274
  ],
275
275
  shortInputRules: [
276
- (v) =>
277
- v.length <= 50 ||
278
- this.$t(
279
- 'windward.games.shared.settings.errors.input_limitations',
280
- [50]
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 <= 255 ||
286
- this.$t(
287
- 'windward.games.shared.settings.errors.input_limitations',
288
- [255]
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 (_.isEmpty(this.block.metadata.config.instructions)) {
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 = this.$t(
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 = this.$t(
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 <= 50 ||
204
- this.$t(
205
- 'windward.games.shared.settings.errors.input_limitations',
206
- [50]
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 <= 255 ||
212
- this.$t(
213
- 'windward.games.shared.settings.errors.input_limitations',
214
- [255]
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 <= 155 ||
220
- this.$t(
221
- 'windward.games.shared.settings.errors.input_limitations',
222
- [155]
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 (_.isEmpty(this.block.metadata.config.instructions)) {
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 <= 50) ||
205
- this.$t(
206
- 'windward.games.shared.settings.errors.input_limitations',
207
- [50]
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 <= 255) ||
213
- this.$t(
214
- 'windward.games.shared.settings.errors.input_limitations',
215
- [255]
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 <= 155) ||
221
- this.$t(
222
- 'windward.games.shared.settings.errors.input_limitations',
223
- [155]
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 (_.isEmpty(this.block.metadata.config.instructions)) {
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 <= 50 ||
192
- this.$t(
193
- 'windward.games.shared.settings.errors.input_limitations',
194
- [50]
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 <= 255 ||
200
- this.$t(
201
- 'windward.games.shared.settings.errors.input_limitations',
202
- [255]
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 <= 155 ||
208
- this.$t(
209
- 'windward.games.shared.settings.errors.input_limitations',
210
- [155]
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.content.blocks.word_jumble.title'
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 = this.$t(
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 = this.$t(
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 <= 50 ||
202
- this.$t(
203
- 'windward.games.shared.settings.errors.input_limitations',
204
- [50]
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 <= 255 ||
210
- this.$t(
211
- 'windward.games.shared.settings.errors.input_limitations',
212
- [255]
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 <= 155 ||
218
- this.$t(
219
- 'windward.games.shared.settings.errors.input_limitations',
220
- [155]
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
  }
@@ -14,6 +14,7 @@ export default {
14
14
  title: 'Title',
15
15
  instructions: 'Instructions',
16
16
  feedback: {
17
+ explanation: 'Explanation of the Correct Match',
17
18
  feedback: 'Feedback',
18
19
  feedback_here: 'Feedback here!',
19
20
  default: 'Default feedback',
@@ -1,6 +1,6 @@
1
1
  export default {
2
- title: 'FlashCards',
3
- items: 'FlashCard Items',
2
+ title: 'Flashcards',
3
+ items: 'Flashcard Items',
4
4
  img_alt: 'card image',
5
5
  flip_card: 'Click to flip card',
6
6
  click_to_show_front: 'Click to show Front',
@@ -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. Try again or select reveal answer.',
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: 'Flash Card Image File',
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
- 'Drag and drop the correct word, statement, or image presented into the prompt container and watch for feedback. ',
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
- 'Read the clue below, and click on the letters to spell out the word the clue refers to. If you choose a letter that isnt in the word, an X will be illuminated. When you choose an incorrect letter 7 times, the game is over.',
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: 'SlideShow Items',
11
- slideshow_title: '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
  }
@@ -1,6 +1,7 @@
1
1
  export default {
2
2
  word_jumble: 'Word Jumble Items',
3
3
  title_input: 'Title',
4
+ title: 'Word Jumble',
4
5
  instructions: 'Instructions',
5
6
  click: 'Click to enter text',
6
7
  label: 'Word for jumbling',
@@ -14,6 +14,7 @@ export default {
14
14
  title: 'Título',
15
15
  instructions: 'Instrucciones',
16
16
  feedback: {
17
+ explanation: 'Explicación de la coincidencia correcta',
17
18
  feedback: 'Comentarios',
18
19
  feedback_here: '¡Comentarios aquí!',
19
20
  default: 'Comentarios predeterminados',
@@ -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. Por favor intente de nuevo o seleccione la opcion de revelar la respuesta',
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
  }
@@ -25,5 +25,6 @@ export default {
25
25
  char_count_less_then:
26
26
  'El número de caracteres para este campo debe ser menor que',
27
27
  },
28
+ instructions:"Haga clic en cada tarjeta para revelar la definición del término. Usa las flechas para moverte por el mazo.",
28
29
  },
29
30
  }
@@ -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
- 'Arrastre y suelte la palabra, declaración o imagen correcta presentada en el contenedor de mensajes y observe los comentarios. Para comenzar, elija un cuadro de preguntas en el tablero de preguntas para ver una pregunta que valga la cantidad especificada de puntos. Seleccione su respuesta para recibir comentarios inmediatos. ',
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,6 +2,7 @@ export default {
2
2
  form: {
3
3
  title: 'Título',
4
4
  instructions: 'Instrucciones',
5
+ default_instructions: 'Utilice las flechas para moverse por la presentación de diapositivas.',
5
6
  rules: {
6
7
  field_required: 'Este campo es obligatorio',
7
8
  char_count_less_then:
@@ -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
  }
@@ -1,6 +1,7 @@
1
1
  export default {
2
2
  word_jumble: 'Elementos de revoltijo de palabras',
3
3
  title_input: 'Título',
4
+ title: 'Revoltijo de palabras',
4
5
  instructions: 'Instrucciones',
5
6
  click: 'Haga clic para ingresar texto',
6
7
  label: 'Palabra para mezclar',
@@ -14,6 +14,7 @@ export default {
14
14
  title: 'Titel',
15
15
  instructions: 'Instruktioner',
16
16
  feedback: {
17
+ explanation: 'Förklaring av den korrekta matchningen',
17
18
  feedback: 'Feedback',
18
19
  feedback_here: 'Feedback här!',
19
20
  default: 'Default feedback',