@windward/games 0.6.0 → 0.8.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 (64) hide show
  1. package/CHANGELOG.md +8 -1
  2. package/components/content/blocks/crosswordPuzzle/CrosswordPuzzle.vue +10 -2
  3. package/components/content/blocks/dragDrop/BucketGame.vue +30 -9
  4. package/components/content/blocks/dragDrop/SortingGame.vue +4 -2
  5. package/components/content/blocks/flashcards/CardFace.vue +3 -3
  6. package/components/content/blocks/flashcards/FlashcardSlides.vue +2 -2
  7. package/components/content/blocks/matchingGame/MatchingGame.vue +34 -17
  8. package/components/content/blocks/multipleChoice/MultipleChoice.vue +10 -2
  9. package/components/content/blocks/multipleChoice/QuestionDialog.vue +4 -7
  10. package/components/content/blocks/quizshowGame/QuizShow.vue +0 -7
  11. package/components/content/blocks/sevenStrikes/SevenStikes.vue +2 -6
  12. package/components/content/blocks/slideshow/SlideShow.vue +6 -1
  13. package/components/content/blocks/wordJumble/WordJumble.vue +9 -8
  14. package/components/settings/BucketGameSettingsManager.vue +23 -50
  15. package/components/settings/CrosswordPuzzleSettingsManager.vue +35 -34
  16. package/components/settings/FlashCardSlidesManager.vue +22 -30
  17. package/components/settings/MatchingGameManager.vue +36 -37
  18. package/components/settings/MultipleChoiceSettingsManager.vue +15 -24
  19. package/components/settings/QuizShowSettingsManager.vue +12 -54
  20. package/components/settings/SevenStrikesSettingsManager.vue +18 -41
  21. package/components/settings/SlideShowManager.vue +29 -37
  22. package/components/settings/SortingGameSettingsManager.vue +18 -34
  23. package/components/settings/WordJumbleSettingsManager.vue +13 -41
  24. package/i18n/en-US/components/content/blocks/bucket_game.ts +1 -0
  25. package/i18n/en-US/components/content/blocks/flashcard.ts +2 -2
  26. package/i18n/en-US/components/content/blocks/quizshow_game.ts +1 -1
  27. package/i18n/en-US/components/settings/bucket_game.ts +2 -1
  28. package/i18n/en-US/components/settings/crossword.ts +1 -0
  29. package/i18n/en-US/components/settings/flashcard.ts +2 -1
  30. package/i18n/en-US/components/settings/matching_game.ts +1 -0
  31. package/i18n/en-US/components/settings/multiple_choice.ts +1 -0
  32. package/i18n/en-US/components/settings/quizshow_game.ts +1 -1
  33. package/i18n/en-US/components/settings/seven_strikes.ts +1 -1
  34. package/i18n/en-US/components/settings/slideshow.ts +3 -2
  35. package/i18n/en-US/components/settings/sorting_game.ts +1 -0
  36. package/i18n/en-US/components/settings/word_jumble.ts +1 -0
  37. package/i18n/en-US/shared/content_blocks.ts +1 -1
  38. package/i18n/en-US/shared/settings.ts +3 -0
  39. package/i18n/es-ES/components/content/blocks/bucket_game.ts +1 -0
  40. package/i18n/es-ES/components/settings/bucket_game.ts +3 -1
  41. package/i18n/es-ES/components/settings/crossword.ts +2 -0
  42. package/i18n/es-ES/components/settings/flashcard.ts +1 -0
  43. package/i18n/es-ES/components/settings/matching_game.ts +1 -0
  44. package/i18n/es-ES/components/settings/multiple_choice.ts +2 -0
  45. package/i18n/es-ES/components/settings/quizshow_game.ts +1 -1
  46. package/i18n/es-ES/components/settings/slideshow.ts +1 -0
  47. package/i18n/es-ES/components/settings/sorting_game.ts +1 -0
  48. package/i18n/es-ES/components/settings/word_jumble.ts +1 -0
  49. package/i18n/es-ES/shared/settings.ts +3 -0
  50. package/i18n/sv-SE/components/content/blocks/bucket_game.ts +1 -0
  51. package/i18n/sv-SE/components/content/blocks/quizshow_game.ts +1 -1
  52. package/i18n/sv-SE/components/settings/bucket_game.ts +2 -0
  53. package/i18n/sv-SE/components/settings/crossword.ts +1 -0
  54. package/i18n/sv-SE/components/settings/flashcard.ts +1 -0
  55. package/i18n/sv-SE/components/settings/matching_game.ts +1 -0
  56. package/i18n/sv-SE/components/settings/multiple_choice.ts +1 -0
  57. package/i18n/sv-SE/components/settings/quizshow_game.ts +1 -1
  58. package/i18n/sv-SE/components/settings/slideshow.ts +1 -0
  59. package/i18n/sv-SE/components/settings/sorting_game.ts +1 -0
  60. package/i18n/sv-SE/components/settings/word_jumble.ts +2 -1
  61. package/i18n/sv-SE/shared/content_blocks.ts +5 -5
  62. package/i18n/sv-SE/shared/settings.ts +9 -6
  63. package/package.json +2 -2
  64. package/test/settings/BucketGameManager.spec.js +0 -1
@@ -2,10 +2,11 @@
2
2
  <div>
3
3
  <v-container class="pa-0">
4
4
  <v-text-field
5
+ id="block-settings-title"
5
6
  v-model="block.metadata.config.title"
6
7
  outlined
7
- :rules="validation.shortInputRules"
8
- :counter="50"
8
+ :rules="$Validation.getRule('block.title')"
9
+ :counter="$Validation.getLimit('block.title')"
9
10
  :label="
10
11
  $t(
11
12
  'windward.games.components.settings.slideshow.form.title'
@@ -14,11 +15,12 @@
14
15
  :disabled="render"
15
16
  ></v-text-field>
16
17
  <v-textarea
18
+ id="block-settings-instructions"
17
19
  v-model="block.metadata.config.instructions"
18
20
  outlined
19
21
  auto-grow
20
- :rules="validation.instructionRule"
21
- :counter="255"
22
+ :rules="$Validation.getRule('block.instructions')"
23
+ :counter="$Validation.getLimit('block.instructions')"
22
24
  :label="
23
25
  $t(
24
26
  'windward.games.components.settings.slideshow.form.instructions'
@@ -56,8 +58,8 @@
56
58
  <v-container>
57
59
  <v-text-field
58
60
  v-model="block.metadata.config.slides[index].header"
59
- :rules="validation.shortInputRules"
60
- :counter="50"
61
+ :rules="$Validation.getRule('shortInput')"
62
+ :counter="$Validation.getLimit('shortInput')"
61
63
  :autofocus="true"
62
64
  outlined
63
65
  :label="
@@ -71,8 +73,8 @@
71
73
  v-model="
72
74
  block.metadata.config.slides[index].description
73
75
  "
74
- :rules="validation.clueRule"
75
- :counter="155"
76
+ :rules="$Validation.getRule('mediumInput')"
77
+ :counter="$Validation.getLimit('mediumInput')"
76
78
  outlined
77
79
  :label="
78
80
  $t(
@@ -90,7 +92,16 @@
90
92
  :assets.sync="block.assets"
91
93
  mimes="image/png,image/jpeg"
92
94
  :disabled="render"
93
- ></ContentBlockAsset>
95
+ outlined
96
+ >
97
+ <template #title>
98
+ {{
99
+ $t(
100
+ 'windward.games.shared.settings.file_picker.image'
101
+ )
102
+ }}
103
+ </template>
104
+ </ContentBlockAsset>
94
105
 
95
106
  <v-text-field
96
107
  v-if="
@@ -151,6 +162,7 @@ import BaseContentSettings from '~/components/Content/Settings/BaseContentSettin
151
162
  import _ from 'lodash'
152
163
  import ContentBlockAsset from '~/components/Content/ContentBlockAsset.vue'
153
164
  import SortableExpansionPanel from '~/components/Core/SortableExpansionPanel.vue'
165
+ import Uuid from '~/helpers/Uuid'
154
166
 
155
167
  export default {
156
168
  name: 'SlideShowManager',
@@ -180,8 +192,14 @@ export default {
180
192
  'windward.games.components.settings.slideshow.form.slideshow_title'
181
193
  )
182
194
  }
183
- if (_.isEmpty(this.block.metadata.config.instructions)) {
184
- this.block.metadata.config.instructions = ''
195
+ if (
196
+ _.isEmpty(this.block.metadata.config.instructions) &&
197
+ this.block.id &&
198
+ !Uuid.test(this.block.id)
199
+ ) {
200
+ this.block.metadata.config.instructions = this.$t(
201
+ 'windward.games.components.settings.slideshow.form.default_instructions'
202
+ )
185
203
  }
186
204
 
187
205
  if (_.isEmpty(this.block.metadata.config.slides)) {
@@ -198,32 +216,6 @@ export default {
198
216
  valid: true,
199
217
  debounce: null,
200
218
  loading: false,
201
- validation: {
202
- shortInputRules: [
203
- (v) =>
204
- (v.length <= 50) ||
205
- this.$t(
206
- 'windward.games.shared.settings.errors.input_limitations',
207
- [50]
208
- ),
209
- ],
210
- instructionRule: [
211
- (v) =>
212
- (v.length <= 255) ||
213
- this.$t(
214
- 'windward.games.shared.settings.errors.input_limitations',
215
- [255]
216
- ),
217
- ],
218
- clueRule: [
219
- (v) =>
220
- (v.length <= 155) ||
221
- this.$t(
222
- 'windward.games.shared.settings.errors.input_limitations',
223
- [155]
224
- ),
225
- ],
226
- },
227
219
  }
228
220
  },
229
221
  methods: {
@@ -3,11 +3,12 @@
3
3
  <v-container class="pa-0">
4
4
  <v-text-field
5
5
  ref="title"
6
+ id="block-settings-title"
6
7
  v-model="block.metadata.config.title"
7
8
  outlined
8
9
  :autofocus="true"
9
- :rules="validation.shortInputRules"
10
- :counter="50"
10
+ :rules="$Validation.getRule('block.title')"
11
+ :counter="$Validation.getLimit('block.title')"
11
12
  :label="
12
13
  $t(
13
14
  'windward.games.components.settings.bucket_game.form.title'
@@ -16,11 +17,12 @@
16
17
  :disabled="render"
17
18
  ></v-text-field>
18
19
  <v-textarea
20
+ id="block-settings-instructions"
19
21
  v-model="block.metadata.config.instructions"
20
22
  outlined
21
23
  auto-grow
22
- :rules="validation.instructionRule"
23
- :counter="255"
24
+ :rules="$Validation.getRule('block.instructions')"
25
+ :counter="$Validation.getLimit('block.instructions')"
24
26
  :label="
25
27
  $t(
26
28
  'windward.games.components.settings.bucket_game.form.instructions'
@@ -63,8 +65,8 @@
63
65
  </p>
64
66
  <v-textarea
65
67
  v-model="block.metadata.config.answer[index].value"
66
- :rules="validation.sortableWordRule"
67
- :counter="155"
68
+ :rules="$Validation.getRule('mediumInput')"
69
+ :counter="$Validation.getLimit('mediumInput')"
68
70
  outlined
69
71
  :autofocus="true"
70
72
  :disabled="render"
@@ -129,6 +131,8 @@
129
131
  import _ from 'lodash'
130
132
  import BaseContentSettings from '~/components/Content/Settings/BaseContentSettings.js'
131
133
  import SortableExpansionPanel from '~/components/Core/SortableExpansionPanel.vue'
134
+ import Uuid from '~/helpers/Uuid'
135
+
132
136
  export default {
133
137
  name: 'SortingGameSettingsManager',
134
138
  extends: BaseContentSettings,
@@ -148,8 +152,14 @@ export default {
148
152
  'windward.games.components.settings.sorting_game.sortable_game'
149
153
  )
150
154
  }
151
- if (_.isEmpty(this.block.metadata.config.instructions)) {
152
- this.block.metadata.config.instructions = ''
155
+ if (
156
+ _.isEmpty(this.block.metadata.config.instructions) &&
157
+ this.block.id &&
158
+ !Uuid.test(this.block.id)
159
+ ) {
160
+ this.block.metadata.config.instructions = this.$t(
161
+ 'windward.games.components.settings.sorting_game.instructions'
162
+ )
153
163
  }
154
164
  if (_.isEmpty(this.block.metadata.config.feedback_correct)) {
155
165
  this.block.metadata.config.feedback_correct = this.$t(
@@ -185,32 +195,6 @@ export default {
185
195
  },
186
196
  ],
187
197
  cursor: null,
188
- validation: {
189
- shortInputRules: [
190
- (v) =>
191
- v.length <= 50 ||
192
- this.$t(
193
- 'windward.games.shared.settings.errors.input_limitations',
194
- [50]
195
- ),
196
- ],
197
- instructionRule: [
198
- (v) =>
199
- v.length <= 255 ||
200
- this.$t(
201
- 'windward.games.shared.settings.errors.input_limitations',
202
- [255]
203
- ),
204
- ],
205
- sortableWordRule: [
206
- (v) =>
207
- v.length <= 155 ||
208
- this.$t(
209
- 'windward.games.shared.settings.errors.input_limitations',
210
- [155]
211
- ),
212
- ],
213
- },
214
198
  }
215
199
  },
216
200
  methods: {
@@ -3,9 +3,10 @@
3
3
  <v-container class="pa-0">
4
4
  <v-text-field
5
5
  ref="title"
6
+ id="block-settings-title"
6
7
  v-model="block.metadata.config.title"
7
- :counter="50"
8
- :rules="validation.shortInputRules"
8
+ :rules="$Validation.getRule('block.title')"
9
+ :counter="$Validation.getLimit('block.title')"
9
10
  outlined
10
11
  :autofocus="true"
11
12
  :label="
@@ -16,9 +17,10 @@
16
17
  :disabled="render"
17
18
  ></v-text-field>
18
19
  <v-textarea
20
+ id="block-settings-instructions"
19
21
  v-model="block.metadata.config.instructions"
20
- :rules="validation.instructionRule"
21
- :counter="255"
22
+ :rules="$Validation.getRule('block.instructions')"
23
+ :counter="$Validation.getLimit('block.instructions')"
22
24
  outlined
23
25
  auto-grow
24
26
  :label="
@@ -67,8 +69,8 @@
67
69
  v-model="
68
70
  block.metadata.config.words[index].value
69
71
  "
70
- :rules="validation.shortInputRules"
71
- :counter="50"
72
+ :rules="$Validation.getRule('shortInput')"
73
+ :counter="$Validation.getLimit('shortInput')"
72
74
  outlined
73
75
  :disabled="render"
74
76
  ></v-text-field>
@@ -85,8 +87,8 @@
85
87
  v-model="
86
88
  block.metadata.config.words[index].hint
87
89
  "
88
- :rules="validation.hintRule"
89
- :counter="155"
90
+ :rules="$Validation.getRule('mediumInput')"
91
+ :counter="$Validation.getLimit('mediumInput')"
90
92
  outlined
91
93
  :disabled="render"
92
94
  ></v-textarea>
@@ -170,21 +172,17 @@ export default {
170
172
  }
171
173
  if (_.isEmpty(this.block.metadata.config.title)) {
172
174
  this.block.metadata.config.title = this.$t(
173
- 'windward.games.components.content.blocks.word_jumble.title'
175
+ 'windward.games.components.settings.word_jumble.title'
174
176
  )
175
177
  }
176
178
  if (_.isEmpty(this.block.metadata.config.instructions)) {
177
179
  this.block.metadata.config.instructions = ''
178
180
  }
179
181
  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
- )
182
+ this.block.metadata.config.feedback_correct = ''
183
183
  }
184
184
  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
- )
185
+ this.block.metadata.config.feedback_incorrect = ''
188
186
  }
189
187
  if (_.isEmpty(this.block.metadata.config.words)) {
190
188
  this.block.metadata.config.words = []
@@ -195,32 +193,6 @@ export default {
195
193
  return {
196
194
  valid: true,
197
195
  loading: false,
198
- validation: {
199
- shortInputRules: [
200
- (v) =>
201
- v.length <= 50 ||
202
- this.$t(
203
- 'windward.games.shared.settings.errors.input_limitations',
204
- [50]
205
- ),
206
- ],
207
- instructionRule: [
208
- (v) =>
209
- v.length <= 255 ||
210
- this.$t(
211
- 'windward.games.shared.settings.errors.input_limitations',
212
- [255]
213
- ),
214
- ],
215
- hintRule: [
216
- (v) =>
217
- v.length <= 155 ||
218
- this.$t(
219
- 'windward.games.shared.settings.errors.input_limitations',
220
- [155]
221
- ),
222
- ],
223
- },
224
196
  }
225
197
  },
226
198
  methods: {
@@ -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',
@@ -4,7 +4,7 @@ export default {
4
4
  bucket: 'Bucket',
5
5
  sort: 'Sorting',
6
6
  matching_game: 'Matching',
7
- quizshow: 'Quizshow',
7
+ quizshow: 'Quiz Show',
8
8
  slideshow: 'Slideshow',
9
9
  multiple_choice: 'Multiple Choice',
10
10
  word_jumble: 'Word Jumble',
@@ -14,4 +14,7 @@ export default {
14
14
  errors: {
15
15
  input_limitations: 'Must be less than {0} characters.'
16
16
  },
17
+ file_picker: {
18
+ image: 'Place Image'
19
+ }
17
20
  }
@@ -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,4 +14,7 @@ export default {
14
14
  errors: {
15
15
  input_limitations: 'Måste vara mindre än {0} tecken.',
16
16
  },
17
+ file_picker: {
18
+ image: 'Colocar imagen'
19
+ }
17
20
  }
@@ -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',
@@ -1,7 +1,7 @@
1
1
  export default {
2
2
  basic_instructions:
3
3
  'Börja med att välja en frågeruta på frågesportstavlan för att se en fråga värd det angivna antalet poäng. Klicka på ditt valda svar för att få omedelbar feedback. (Rätta svar kommer att visas i grönt, medan felaktiga svar kommer att markeras i rött.) ',
4
- title: 'Slideshow title',
4
+ title: 'Bildspelets titel',
5
5
  total_score: 'totalpoäng',
6
6
  return_to_questions: 'återgå till frågor',
7
7
  spreadsheet_mode: 'Kalkylarksläge',
@@ -4,6 +4,8 @@ export default {
4
4
  mass_entry: 'Massdatainmatning',
5
5
  title: 'Titel',
6
6
  instructions: 'Instruktioner',
7
+ default_instructions:
8
+ 'Matcha rätt beskrivning med prompten. För att göra en matchning, dra deskriptorn och släpp den över prompten. Felaktiga svar blinkar rött. Rätta svar blinkar grönt och visar en Fortsätt-knapp så att du kan gå vidare till nästa uppmaning.',
7
9
  buckets: 'Bucket Items',
8
10
  feedback: {
9
11
  feedback: 'Feedback',
@@ -4,4 +4,5 @@ export default {
4
4
  clue: 'Clue',
5
5
  min_length: 'Kan inte ha mindre än två ord',
6
6
  alert: 'Alert',
7
+ instructions: 'Fyll i korsordet genom att klicka på varje ruta för att skriva rätt bokstav. Använd tabbtangenten för att flytta från vänster till höger över rutnätet. Klicka på ledtråden för att markera motsvarande ord i pusslet.',
7
8
  }
@@ -25,5 +25,6 @@ export default {
25
25
  char_count_less_then:
26
26
  'Teckenantalet för detta fält måste vara mindre än',
27
27
  },
28
+ instructions:"Klicka på varje kort för att avslöja termens definition. Använd pilarna för att flytta genom däcket.",
28
29
  },
29
30
  }