@windward/games 0.5.1 → 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 (56) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/bitbucket-pipelines.yml +14 -0
  3. package/components/content/blocks/dragDrop/BucketGame.vue +24 -8
  4. package/components/content/blocks/flashcards/CardFace.vue +3 -3
  5. package/components/content/blocks/matchingGame/MatchingGame.vue +30 -38
  6. package/components/content/blocks/sevenStrikes/SevenStikes.vue +2 -6
  7. package/components/content/blocks/wordJumble/WordJumble.vue +9 -8
  8. package/components/settings/BucketGameSettingsManager.vue +253 -243
  9. package/components/settings/CrosswordPuzzleSettingsManager.vue +164 -111
  10. package/components/settings/FlashCardSlidesManager.vue +337 -336
  11. package/components/settings/MatchingGameManager.vue +347 -323
  12. package/components/settings/MultipleChoiceSettingsManager.vue +100 -69
  13. package/components/settings/QuizShowSettingsManager.vue +223 -203
  14. package/components/settings/SevenStrikesSettingsManager.vue +173 -133
  15. package/components/settings/SlideShowManager.vue +174 -134
  16. package/components/settings/SortingGameSettingsManager.vue +157 -108
  17. package/components/settings/WordJumbleSettingsManager.vue +171 -135
  18. package/i18n/en-US/components/content/blocks/bucket_game.ts +1 -0
  19. package/i18n/en-US/components/content/blocks/flashcard.ts +2 -2
  20. package/i18n/en-US/components/content/blocks/quizshow_game.ts +1 -1
  21. package/i18n/en-US/components/settings/bucket_game.ts +2 -1
  22. package/i18n/en-US/components/settings/crossword.ts +1 -0
  23. package/i18n/en-US/components/settings/flashcard.ts +2 -1
  24. package/i18n/en-US/components/settings/matching_game.ts +1 -0
  25. package/i18n/en-US/components/settings/multiple_choice.ts +1 -0
  26. package/i18n/en-US/components/settings/quizshow_game.ts +1 -1
  27. package/i18n/en-US/components/settings/seven_strikes.ts +1 -1
  28. package/i18n/en-US/components/settings/slideshow.ts +3 -2
  29. package/i18n/en-US/components/settings/sorting_game.ts +1 -0
  30. package/i18n/en-US/components/settings/word_jumble.ts +1 -0
  31. package/i18n/en-US/shared/settings.ts +3 -0
  32. package/i18n/es-ES/components/content/blocks/bucket_game.ts +1 -0
  33. package/i18n/es-ES/components/settings/bucket_game.ts +3 -1
  34. package/i18n/es-ES/components/settings/crossword.ts +2 -0
  35. package/i18n/es-ES/components/settings/flashcard.ts +1 -0
  36. package/i18n/es-ES/components/settings/matching_game.ts +1 -0
  37. package/i18n/es-ES/components/settings/multiple_choice.ts +2 -0
  38. package/i18n/es-ES/components/settings/quizshow_game.ts +1 -1
  39. package/i18n/es-ES/components/settings/slideshow.ts +1 -0
  40. package/i18n/es-ES/components/settings/sorting_game.ts +1 -0
  41. package/i18n/es-ES/components/settings/word_jumble.ts +1 -0
  42. package/i18n/es-ES/shared/settings.ts +3 -0
  43. package/i18n/sv-SE/components/content/blocks/bucket_game.ts +1 -0
  44. package/i18n/sv-SE/components/content/blocks/quizshow_game.ts +1 -1
  45. package/i18n/sv-SE/components/settings/bucket_game.ts +2 -0
  46. package/i18n/sv-SE/components/settings/crossword.ts +1 -0
  47. package/i18n/sv-SE/components/settings/flashcard.ts +1 -0
  48. package/i18n/sv-SE/components/settings/matching_game.ts +1 -0
  49. package/i18n/sv-SE/components/settings/multiple_choice.ts +1 -0
  50. package/i18n/sv-SE/components/settings/quizshow_game.ts +1 -1
  51. package/i18n/sv-SE/components/settings/slideshow.ts +1 -0
  52. package/i18n/sv-SE/components/settings/sorting_game.ts +1 -0
  53. package/i18n/sv-SE/components/settings/word_jumble.ts +2 -1
  54. package/i18n/sv-SE/shared/content_blocks.ts +5 -5
  55. package/i18n/sv-SE/shared/settings.ts +8 -5
  56. package/package.json +1 -1
@@ -1,137 +1,139 @@
1
1
  <template>
2
2
  <div>
3
- <v-form ref="form" v-model="valid" v-if="!loading">
4
- <v-container class="pa-0">
5
- <v-text-field
6
- ref="title"
7
- v-model="block.metadata.config.title"
8
- :counter="50"
9
- outlined
10
- :autofocus="true"
11
- :label="
12
- $t(
13
- 'windward.games.components.settings.word_jumble.title_input'
14
- )
15
- "
16
- :disabled="render"
17
- ></v-text-field>
18
- <v-textarea
19
- v-model="block.metadata.config.instructions"
20
- outlined
21
- auto-grow
22
- :label="
23
- $t(
24
- 'windward.games.components.settings.word_jumble.instructions'
25
- )
26
- "
27
- :disabled="render"
28
- ></v-textarea>
29
- </v-container>
30
- <v-divider class="my-4 primary"></v-divider>
31
- <v-container class="pa-0">
32
- <p>
3
+ <v-container class="pa-0">
4
+ <v-text-field
5
+ ref="title"
6
+ v-model="block.metadata.config.title"
7
+ :counter="50"
8
+ :rules="validation.shortInputRules"
9
+ outlined
10
+ :autofocus="true"
11
+ :label="
12
+ $t(
13
+ 'windward.games.components.settings.word_jumble.title_input'
14
+ )
15
+ "
16
+ :disabled="render"
17
+ ></v-text-field>
18
+ <v-textarea
19
+ v-model="block.metadata.config.instructions"
20
+ :rules="validation.instructionRule"
21
+ :counter="255"
22
+ outlined
23
+ auto-grow
24
+ :label="
25
+ $t(
26
+ 'windward.games.components.settings.word_jumble.instructions'
27
+ )
28
+ "
29
+ :disabled="render"
30
+ ></v-textarea>
31
+ </v-container>
32
+ <v-divider class="my-4 primary"></v-divider>
33
+ <v-container class="pa-0">
34
+ <p>
35
+ {{
36
+ $t(
37
+ 'windward.games.components.settings.word_jumble.word_jumble'
38
+ )
39
+ }}
40
+ </p>
41
+ <SortableExpansionPanel
42
+ v-model="block.metadata.config.words"
43
+ v-bind:currentPanel.sync="block.metadata.config.currentWord"
44
+ :disabled="render"
45
+ @click:close="onDelete($event)"
46
+ >
47
+ <template #header="{ item, index }">
33
48
  {{
34
- $t(
35
- 'windward.games.components.settings.word_jumble.word_jumble'
36
- )
49
+ item.value
50
+ ? item.value
51
+ : $t(
52
+ 'windward.games.components.settings.word_jumble.click'
53
+ )
37
54
  }}
38
- </p>
39
- <SortableExpansionPanel
40
- v-model="block.metadata.config.words"
41
- v-bind:currentPanel.sync="block.metadata.config.currentWord"
55
+ </template>
56
+ <template #body="{ item, index }">
57
+ <v-container>
58
+ <v-flex xs12>
59
+ <p class="p-label">
60
+ {{
61
+ $t(
62
+ 'windward.games.components.settings.word_jumble.word_jumble'
63
+ )
64
+ }}
65
+ </p>
66
+ <v-text-field
67
+ v-model="
68
+ block.metadata.config.words[index].value
69
+ "
70
+ :rules="validation.shortInputRules"
71
+ :counter="50"
72
+ outlined
73
+ :disabled="render"
74
+ ></v-text-field>
75
+ </v-flex>
76
+ <v-flex xs12>
77
+ <p class="p-label">
78
+ {{
79
+ $t(
80
+ 'windward.games.components.settings.word_jumble.hint'
81
+ )
82
+ }}
83
+ </p>
84
+ <v-textarea
85
+ v-model="
86
+ block.metadata.config.words[index].hint
87
+ "
88
+ :rules="validation.hintRule"
89
+ :counter="155"
90
+ outlined
91
+ :disabled="render"
92
+ ></v-textarea>
93
+ </v-flex>
94
+ </v-container>
95
+ </template>
96
+ </SortableExpansionPanel>
97
+ </v-container>
98
+ <v-container class="pa-0">
99
+ <v-row justify="center" class="my-4">
100
+ <v-btn
101
+ color="primary"
102
+ elevation="0"
42
103
  :disabled="render"
43
- @click:close="onDelete($event)"
104
+ @click="onAddWord"
44
105
  >
45
- <template #header="{ item, index }">
46
- {{
47
- item.value
48
- ? item.value
49
- : $t(
50
- 'windward.games.components.settings.word_jumble.click'
51
- )
52
- }}
53
- </template>
54
- <template #body="{ item, index }">
55
- <v-container>
56
- <v-flex xs12>
57
- <p class="p-label">
58
- {{
59
- $t(
60
- 'windward.games.components.settings.word_jumble.word_jumble'
61
- )
62
- }}
63
- </p>
64
- <v-textarea
65
- v-model="
66
- block.metadata.config.words[index].value
67
- "
68
- outlined
69
- :autofocus="true"
70
- :disabled="render"
71
- ></v-textarea>
72
- </v-flex>
73
- <v-flex xs12>
74
- <p class="p-label">
75
- {{
76
- $t(
77
- 'windward.games.components.settings.word_jumble.hint'
78
- )
79
- }}
80
- </p>
81
- <v-textarea
82
- v-model="
83
- block.metadata.config.words[index].hint
84
- "
85
- outlined
86
- :disabled="render"
87
- ></v-textarea>
88
- </v-flex>
89
- </v-container>
90
- </template>
91
- </SortableExpansionPanel>
92
- </v-container>
93
- <v-container class="pa-0">
94
- <v-row justify="center" class="my-4">
95
- <v-btn
96
- color="primary"
97
- elevation="0"
98
- :disabled="render"
99
- @click="onAddWord"
100
- >
101
- <v-icon>mdi-plus</v-icon>
102
- {{
103
- $t(
104
- 'windward.games.components.settings.word_jumble.add'
105
- )
106
- }}
107
- </v-btn>
108
- </v-row>
109
- <v-textarea
110
- ref="title"
111
- v-model="block.metadata.config.feedback_correct"
112
- outlined
113
- auto-grow
114
- :counter="50"
115
- :label="
116
- $t(
117
- 'windward.games.components.settings.word_jumble.feedback_correct'
118
- )
119
- "
120
- :disabled="render"
121
- ></v-textarea>
122
- <v-textarea
123
- v-model="block.metadata.config.feedback_incorrect"
124
- outlined
125
- auto-grow
126
- :label="
127
- $t(
128
- 'windward.games.components.settings.word_jumble.feedback_incorrect'
129
- )
130
- "
131
- :disabled="render"
132
- ></v-textarea>
133
- </v-container>
134
- </v-form>
106
+ <v-icon>mdi-plus</v-icon>
107
+ {{
108
+ $t('windward.games.components.settings.word_jumble.add')
109
+ }}
110
+ </v-btn>
111
+ </v-row>
112
+ <v-textarea
113
+ ref="title"
114
+ v-model="block.metadata.config.feedback_correct"
115
+ outlined
116
+ auto-grow
117
+ :counter="50"
118
+ :label="
119
+ $t(
120
+ 'windward.games.components.settings.word_jumble.feedback_correct'
121
+ )
122
+ "
123
+ :disabled="render"
124
+ ></v-textarea>
125
+ <v-textarea
126
+ v-model="block.metadata.config.feedback_incorrect"
127
+ outlined
128
+ auto-grow
129
+ :label="
130
+ $t(
131
+ 'windward.games.components.settings.word_jumble.feedback_incorrect'
132
+ )
133
+ "
134
+ :disabled="render"
135
+ ></v-textarea>
136
+ </v-container>
135
137
  <div v-if="loading" class="text-center">
136
138
  <v-progress-circular
137
139
  :size="70"
@@ -168,21 +170,17 @@ export default {
168
170
  }
169
171
  if (_.isEmpty(this.block.metadata.config.title)) {
170
172
  this.block.metadata.config.title = this.$t(
171
- 'windward.games.components.content.blocks.word_jumble.title'
173
+ 'windward.games.components.settings.word_jumble.title'
172
174
  )
173
175
  }
174
176
  if (_.isEmpty(this.block.metadata.config.instructions)) {
175
177
  this.block.metadata.config.instructions = ''
176
178
  }
177
179
  if (_.isEmpty(this.block.metadata.config.feedback_correct)) {
178
- this.block.metadata.config.feedback_correct = this.$t(
179
- 'windward.games.components.settings.bucket_game.form.feedback.correct_default'
180
- )
180
+ this.block.metadata.config.feedback_correct = ''
181
181
  }
182
182
  if (_.isEmpty(this.block.metadata.config.feedback_incorrect)) {
183
- this.block.metadata.config.feedback_incorrect = this.$t(
184
- 'windward.games.components.settings.bucket_game.form.feedback.incorrect_default'
185
- )
183
+ this.block.metadata.config.feedback_incorrect = ''
186
184
  }
187
185
  if (_.isEmpty(this.block.metadata.config.words)) {
188
186
  this.block.metadata.config.words = []
@@ -193,6 +191,44 @@ export default {
193
191
  return {
194
192
  valid: true,
195
193
  loading: false,
194
+ validation: {
195
+ shortInputRules: [
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
+ ],
207
+ instructionRule: [
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
+ },
218
+ ],
219
+ hintRule: [
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
+ },
230
+ ],
231
+ },
196
232
  }
197
233
  },
198
234
  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',
@@ -11,4 +11,7 @@ export default {
11
11
  seven_strikes_manager: 'Seven Strikes Manager',
12
12
  crossword_puzzle_manager: 'Crossword Puzzle Manager',
13
13
  },
14
+ errors: {
15
+ input_limitations: 'Must be less than {0} characters.'
16
+ },
14
17
  }
@@ -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',
@@ -11,4 +11,7 @@ export default {
11
11
  seven_strikes_manager: 'Gerente de los Siete Golpes',
12
12
  crossword_puzzle_manager: 'Administrador de crucigramas',
13
13
  },
14
+ errors: {
15
+ input_limitations: 'Måste vara mindre än {0} tecken.',
16
+ },
14
17
  }
@@ -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
  }