@windward/games 0.0.10 → 0.1.1

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 (80) hide show
  1. package/components/content/CrudTable.vue +2 -2
  2. package/components/content/blocks/crosswordPuzzle/CrosswordClues.vue +4 -2
  3. package/components/content/blocks/crosswordPuzzle/CrosswordPuzzle.vue +14 -12
  4. package/components/content/blocks/dragDrop/BucketGame.vue +14 -15
  5. package/components/content/blocks/dragDrop/SortingGame.vue +4 -4
  6. package/components/content/blocks/flashcards/CardFace.vue +38 -39
  7. package/components/content/blocks/flashcards/Flashcard.vue +109 -28
  8. package/components/content/blocks/flashcards/FlashcardSlides.vue +1 -2
  9. package/components/content/blocks/matchingGame/MatchingGame.vue +15 -14
  10. package/components/content/blocks/multipleChoice/MultipleChoice.vue +186 -225
  11. package/components/content/blocks/multipleChoice/QuestionDialog.vue +7 -7
  12. package/components/content/blocks/quizshowGame/AnswerPanel.vue +9 -9
  13. package/components/content/blocks/quizshowGame/Gridview.vue +20 -24
  14. package/components/content/blocks/quizshowGame/QuizShow.vue +6 -6
  15. package/components/content/blocks/quizshowGame/feedbackIcons.vue +4 -2
  16. package/components/content/blocks/sevenStrikes/SevenStikes.vue +165 -111
  17. package/components/content/blocks/sevenStrikes/keyboard.vue +9 -2
  18. package/components/content/blocks/slideshow/SlideShow.vue +9 -5
  19. package/components/content/blocks/wordJumble/Jumble.vue +0 -2
  20. package/components/content/blocks/wordJumble/WordJumble.vue +121 -60
  21. package/components/settings/BucketGameSettingsManager.vue +20 -20
  22. package/components/settings/CrosswordPuzzleSettingsManager.vue +114 -181
  23. package/components/settings/FlashCardSlidesManager.vue +46 -63
  24. package/components/settings/MatchingGameManager.vue +19 -19
  25. package/components/settings/MultipleChoiceSettingsManager.vue +130 -140
  26. package/components/settings/QuizShowSettingsManager.vue +17 -17
  27. package/components/settings/SevenStrikesSettingsManager.vue +139 -193
  28. package/components/settings/SlideShowManager.vue +17 -9
  29. package/components/settings/SortingGameSettingsManager.vue +11 -11
  30. package/components/settings/WordJumbleSettingsManager.vue +48 -12
  31. package/i18n/en-US/components/content/blocks/flashcard.ts +1 -0
  32. package/i18n/en-US/components/content/blocks/word_jumble.ts +2 -0
  33. package/i18n/en-US/components/settings/bucket_game.ts +3 -2
  34. package/i18n/en-US/components/settings/flashcard.ts +1 -0
  35. package/i18n/en-US/components/settings/seven_strikes.ts +1 -1
  36. package/i18n/en-US/index.ts +2 -1
  37. package/i18n/es-ES/components/content/blocks/flashcard.ts +1 -0
  38. package/i18n/es-ES/components/content/blocks/word_jumble.ts +2 -0
  39. package/i18n/es-ES/components/settings/bucket_game.ts +3 -2
  40. package/i18n/es-ES/components/settings/flashcard.ts +1 -0
  41. package/i18n/es-ES/components/settings/seven_strikes.ts +2 -2
  42. package/i18n/es-ES/index.ts +2 -1
  43. package/i18n/index.ts +11 -0
  44. package/i18n/sv-SE/components/content/blocks/flashcard.ts +1 -0
  45. package/i18n/sv-SE/components/content/blocks/word_jumble.ts +2 -0
  46. package/i18n/sv-SE/components/settings/bucket_game.ts +2 -2
  47. package/i18n/sv-SE/components/settings/flashcard.ts +1 -0
  48. package/i18n/sv-SE/components/settings/seven_strikes.ts +1 -1
  49. package/i18n/sv-SE/index.ts +2 -1
  50. package/package.json +1 -1
  51. package/plugin.js +33 -34
  52. package/test/Feature/LocaleKeys.spec.js +11 -0
  53. package/test/__mocks__/componentsMock.js +12 -0
  54. package/test/__mocks__/fileMock.js +1 -0
  55. package/test/__mocks__/modelMock.js +88 -0
  56. package/test/__mocks__/styleMock.js +1 -0
  57. package/test/blocks/crossword/CrosswordPuzzle.spec.js +1 -1
  58. package/test/blocks/dragDrop/BucketGame.spec.js +1 -1
  59. package/test/blocks/dragDrop/SortingGame.spec.js +1 -1
  60. package/test/blocks/flashcards/CardFace.spec.js +1 -1
  61. package/test/blocks/flashcards/FlashCardSlides.spec.js +1 -1
  62. package/test/blocks/flashcards/Flashcard.spec.js +1 -1
  63. package/test/blocks/matchingGame/MatchingGame.spec.js +1 -1
  64. package/test/blocks/multipleChoice/MultipleChoice.spec.js +1 -1
  65. package/test/blocks/multipleChoice/QuestionDialog.spec.js +1 -1
  66. package/test/blocks/quizShow/quizShow.spec.js +1 -1
  67. package/test/blocks/sevenStrikes/sevenStrikes.spec.js +1 -1
  68. package/test/blocks/slideshow/slideshow.spec.js +1 -1
  69. package/test/blocks/wordJumble/Jumble.spec.js +1 -1
  70. package/test/blocks/wordJumble/WordJumble.spec.js +1 -1
  71. package/test/mocks.js +8 -2
  72. package/test/settings/BucketGameManager.spec.js +4 -4
  73. package/test/settings/CrosswordPuzzleManager.spec.js +6 -11
  74. package/test/settings/FlashCardSlidesManager.spec.js +1 -1
  75. package/test/settings/MatchingGameManager.spec.js +1 -1
  76. package/test/settings/MultipleChoiceGameManager.spec.js +1 -1
  77. package/test/settings/SevenStrikesManager.spec.js +1 -1
  78. package/test/settings/SlideShowManager.spec.js +1 -1
  79. package/test/settings/SortingGameManager.spec.js +1 -1
  80. package/test/settings/WordJumbleManager.spec.js +1 -4
@@ -9,7 +9,7 @@
9
9
  :autofocus="true"
10
10
  :label="
11
11
  $t(
12
- 'plugin.games.components.settings.matching_game.form.title'
12
+ 'windward.games.components.settings.matching_game.form.title'
13
13
  )
14
14
  "
15
15
  ref="title"
@@ -21,7 +21,7 @@
21
21
  :counter="255"
22
22
  :label="
23
23
  $t(
24
- 'plugin.games.components.settings.matching_game.form.instructions'
24
+ 'windward.games.components.settings.matching_game.form.instructions'
25
25
  )
26
26
  "
27
27
  ></v-textarea>
@@ -31,7 +31,7 @@
31
31
  <p>
32
32
  {{
33
33
  $t(
34
- 'plugin.games.components.content.blocks.matching_game.terms'
34
+ 'windward.games.components.content.blocks.matching_game.terms'
35
35
  )
36
36
  }}
37
37
  </p>
@@ -46,7 +46,7 @@
46
46
  ? block.metadata.config.answerObjects[index]
47
47
  .display
48
48
  : $t(
49
- 'plugin.games.components.content.blocks.matching_game.click_here'
49
+ 'windward.games.components.content.blocks.matching_game.click_here'
50
50
  )
51
51
  }}
52
52
  </template>
@@ -56,7 +56,7 @@
56
56
  <p color="primary" class="p-label">
57
57
  {{
58
58
  $t(
59
- 'plugin.games.components.content.blocks.matching_game.term'
59
+ 'windward.games.components.content.blocks.matching_game.term'
60
60
  )
61
61
  }}
62
62
  </p>
@@ -74,7 +74,7 @@
74
74
  <p color="primary" class="p-label">
75
75
  {{
76
76
  $t(
77
- 'plugin.games.components.content.blocks.matching_game.prompts'
77
+ 'windward.games.components.content.blocks.matching_game.prompts'
78
78
  )
79
79
  }}
80
80
  </p>
@@ -99,7 +99,7 @@
99
99
  index
100
100
  ][indexPrompt].prompt
101
101
  : $t(
102
- 'plugin.games.components.content.blocks.matching_game.click_here'
102
+ 'windward.games.components.content.blocks.matching_game.click_here'
103
103
  )
104
104
  }}
105
105
  </span>
@@ -107,7 +107,7 @@
107
107
  prompt.file && prompt.file !== null
108
108
  ? prompt.file.name
109
109
  : $t(
110
- 'plugin.games.components.content.blocks.matching_game.image'
110
+ 'windward.games.components.content.blocks.matching_game.image'
111
111
  )
112
112
  }}</span>
113
113
  </template>
@@ -126,7 +126,7 @@
126
126
  >
127
127
  {{
128
128
  $t(
129
- 'plugin.games.components.content.blocks.matching_game.prompt'
129
+ 'windward.games.components.content.blocks.matching_game.prompt'
130
130
  )
131
131
  }}
132
132
  </v-col>
@@ -197,7 +197,7 @@
197
197
  :autofocus="true"
198
198
  :label="
199
199
  $t(
200
- 'plugin.games.components.content.blocks.matching_game.alt_image'
200
+ 'windward.games.components.content.blocks.matching_game.alt_image'
201
201
  )
202
202
  "
203
203
  ></v-text-field>
@@ -215,7 +215,7 @@
215
215
  outlined
216
216
  :label="
217
217
  $t(
218
- 'plugin.games.components.content.blocks.matching_game.aria_described'
218
+ 'windward.games.components.content.blocks.matching_game.aria_described'
219
219
  )
220
220
  "
221
221
  ></v-text-field>
@@ -242,7 +242,7 @@
242
242
  <v-icon>mdi-plus</v-icon>
243
243
  {{
244
244
  $t(
245
- 'plugin.games.components.content.blocks.matching_game.add_prompt'
245
+ 'windward.games.components.content.blocks.matching_game.add_prompt'
246
246
  )
247
247
  }}
248
248
  </v-btn>
@@ -257,7 +257,7 @@
257
257
  <v-icon>mdi-plus</v-icon>
258
258
  {{
259
259
  $t(
260
- 'plugin.games.components.content.blocks.matching_game.add_answer'
260
+ 'windward.games.components.content.blocks.matching_game.add_answer'
261
261
  )
262
262
  }}
263
263
  </v-btn>
@@ -270,7 +270,7 @@
270
270
  :counter="255"
271
271
  :label="
272
272
  $t(
273
- 'plugin.games.components.settings.matching_game.form.feedback.correct'
273
+ 'windward.games.components.settings.matching_game.form.feedback.correct'
274
274
  )
275
275
  "
276
276
  ></v-textarea>
@@ -281,7 +281,7 @@
281
281
  :counter="255"
282
282
  :label="
283
283
  $t(
284
- 'plugin.games.components.settings.matching_game.form.feedback.incorrect'
284
+ 'windward.games.components.settings.matching_game.form.feedback.incorrect'
285
285
  )
286
286
  "
287
287
  ></v-textarea>
@@ -313,7 +313,7 @@ export default {
313
313
  }
314
314
  if (_.isEmpty(this.block.body)) {
315
315
  this.block.body = this.$t(
316
- 'plugin.games.components.settings.matching_game.form.title'
316
+ 'windward.games.components.settings.matching_game.form.title'
317
317
  )
318
318
  }
319
319
  if (_.isEmpty(this.block.metadata)) {
@@ -324,7 +324,7 @@ export default {
324
324
  }
325
325
  if (_.isEmpty(this.block.metadata.config.title)) {
326
326
  this.block.metadata.config.title = this.$t(
327
- 'plugin.games.components.settings.matching_game.form.title'
327
+ 'windward.games.components.settings.matching_game.form.title'
328
328
  )
329
329
  }
330
330
  if (_.isEmpty(this.block.metadata.config.instructions)) {
@@ -332,12 +332,12 @@ export default {
332
332
  }
333
333
  if (_.isEmpty(this.block.metadata.config.feedback_correct)) {
334
334
  this.block.metadata.config.feedback_correct = this.$t(
335
- 'plugin.games.components.settings.bucket_game.form.feedback.correct_default'
335
+ 'windward.games.components.settings.bucket_game.form.feedback.correct_default'
336
336
  )
337
337
  }
338
338
  if (_.isEmpty(this.block.metadata.config.feedback_incorrect)) {
339
339
  this.block.metadata.config.feedback_incorrect = this.$t(
340
- 'plugin.games.components.settings.bucket_game.form.feedback.incorrect_default'
340
+ 'windward.games.components.settings.bucket_game.form.feedback.incorrect_default'
341
341
  )
342
342
  }
343
343
  if (_.isEmpty(this.block.metadata.config.answerObjects)) {
@@ -1,123 +1,102 @@
1
1
  <template>
2
- <v-container>
3
- <div ref="form">
4
- <v-text-field
5
- v-model="block.metadata.config.title"
6
- :counter="50"
7
- maxlength="50"
8
- :label="
9
- $t(
10
- 'plugin.games.components.settings.multiple_choice.title_placeholder'
11
- )
12
- "
13
- ></v-text-field>
14
- <v-textarea
15
- outlined
16
- auto-grow
17
- v-model="block.metadata.config.instructions"
18
- :counter="255"
19
- maxlength="255"
20
- :label="
21
- $t(
22
- 'plugin.games.components.settings.multiple_choice.instructions'
23
- )
24
- "
25
- ></v-textarea>
26
- <div>
27
- <v-container class="pa-0">
28
- <v-expansion-panels flat>
29
- <v-expansion-panel>
30
- <v-expansion-panel-header class="pa-0">
31
- <h5>
32
- {{
33
- $t(
34
- 'plugin.games.components.settings.multiple_choice.questions'
35
- )
36
- }}
37
- </h5></v-expansion-panel-header
38
- >
39
- <v-expansion-panel-content class="ma-0">
40
- <v-container class="pa-0">
41
- <draggable
42
- :list="block.metadata.config.questions"
43
- :disabled="false"
44
- class="flex-fill"
45
- :group="{
46
- name: 'people',
47
- pull: 'clone',
48
- put: false,
49
- }"
2
+ <div>
3
+ <v-form ref="form">
4
+ <v-container class="pa-0">
5
+ <v-text-field
6
+ v-model="block.metadata.config.title"
7
+ outlined
8
+ :counter="50"
9
+ :autofocus="true"
10
+ maxlength="50"
11
+ :label="
12
+ $t(
13
+ 'windward.games.components.settings.multiple_choice.title_placeholder'
14
+ )
15
+ "
16
+ ></v-text-field>
17
+ <v-textarea
18
+ v-model="block.metadata.config.instructions"
19
+ outlined
20
+ auto-grow
21
+ :counter="255"
22
+ maxlength="255"
23
+ :label="
24
+ $t(
25
+ 'windward.games.components.settings.multiple_choice.instructions'
26
+ )
27
+ "
28
+ ></v-textarea>
29
+ </v-container>
30
+ <v-divider class="my-4 primary"></v-divider>
31
+ <v-container class="pa-0">
32
+ <p>
33
+ {{
34
+ $t(
35
+ 'windward.games.components.settings.multiple_choice.questions'
36
+ )
37
+ }}
38
+ </p>
39
+ <draggable
40
+ :list="block.metadata.config.questions"
41
+ group="people"
42
+ >
43
+ <v-container
44
+ v-for="(question, index) in block.metadata.config
45
+ .questions"
46
+ :key="index"
47
+ class="container-card-outline"
48
+ elevation="0"
49
+ outlined
50
+ tile
51
+ >
52
+ <v-layout row wrap outlined>
53
+ <v-flex xs10>
54
+ <p
55
+ class="text-truncate mb-0 p-header"
56
+ :class="cursor"
57
+ @click="onOpenModal($event, index)"
58
+ @mouseover="onHover"
59
+ @mouseleave="onHoverLeave"
60
+ >
61
+ <v-icon class="pl-2"
62
+ >mdi-drag-vertical</v-icon
50
63
  >
51
- <v-card
52
- v-for="(question, index) in block
53
- .metadata.config.questions"
54
- :key="index"
55
- class="pa-2 flex-fill cardOutline"
56
- elevation="0"
57
- outlined
58
- tile
59
- >
60
- <v-row
61
- class="itemHeight"
62
- :class="cursor"
63
- >
64
- <p
65
- class="text-truncate ma-0 seventy"
66
- @click="
67
- onOpenModal(
68
- $event,
69
- index
70
- )
71
- "
72
- @mouseover="onHover"
73
- @mouseleave="onHoverLeave"
74
- >
75
- <v-icon class="pl-2"
76
- >mdi-gesture-tap-hold</v-icon
77
- >
78
- {{
79
- question.body
80
- ? question.body
81
- : $t(
82
- 'plugin.games.components.settings.bucket_game.form.enter_text'
83
- )
84
- }}
85
- </p>
86
- <v-icon
87
- class="twenty"
88
- @click="onDelete(index)"
89
- >mdi-delete-outline</v-icon
90
- >
91
- </v-row>
92
- </v-card>
93
- </draggable>
94
- <v-container class="d-flex justify-center">
95
- <p
96
- @mouseover="onHover"
97
- @mouseleave="onHoverLeave"
98
- @click="onOpenModal"
99
- v-on:keydown.enter="onOpenModal"
100
- class="fullWidth"
101
- :class="cursor"
102
- tabindex="0"
103
- >
104
- <v-icon class="primary addIcon"
105
- >mdi-plus</v-icon
106
- >
107
- {{
108
- $t(
109
- 'plugin.games.components.settings.multiple_choice.add_question'
110
- )
111
- }}
112
- </p>
113
- </v-container>
114
- </v-container>
115
- </v-expansion-panel-content>
116
- </v-expansion-panel>
117
- </v-expansion-panels>
118
- </v-container>
119
- </div>
120
- </div>
64
+ <span class="span-text-ellipsis">
65
+ {{
66
+ question.body
67
+ ? question.body
68
+ : $t(
69
+ 'windward.games.components.settings.bucket_game.form.enter_text'
70
+ )
71
+ }}
72
+ </span>
73
+ </p>
74
+ </v-flex>
75
+ <v-flex
76
+ xs2
77
+ class="btn-header-delete d-flex justify-center"
78
+ >
79
+ <v-icon
80
+ class="btn-delete-icon"
81
+ @click="onDelete(index)"
82
+ >mdi-delete-outline</v-icon
83
+ >
84
+ </v-flex>
85
+ </v-layout>
86
+ </v-container>
87
+ </draggable>
88
+ <v-row justify="center" class="my-4">
89
+ <v-btn color="primary" @click="onOpenModal">
90
+ <v-icon>mdi-plus</v-icon>
91
+ {{
92
+ $t(
93
+ 'windward.games.components.settings.multiple_choice.add_question'
94
+ )
95
+ }}
96
+ </v-btn>
97
+ </v-row>
98
+ </v-container>
99
+ </v-form>
121
100
  <Dialog
122
101
  v-model="dialog"
123
102
  :trigger="false"
@@ -129,19 +108,29 @@
129
108
  >
130
109
  <template #title>{{
131
110
  $t(
132
- 'plugin.games.components.settings.multiple_choice.modal_title'
111
+ 'windward.games.components.settings.multiple_choice.modal_title'
133
112
  )
134
113
  }}</template>
135
114
  <template #form="{ on, attrs }">
136
115
  <QuestionDialog
137
116
  v-bind="attrs"
138
117
  v-on="on"
139
- @saveAndNew="saveAndNewCalled"
140
118
  v-model="block.metadata.config.questions[editingIndex]"
119
+ @saveAndNew="saveAndNewCalled"
141
120
  ></QuestionDialog>
142
121
  </template>
143
122
  </Dialog>
144
- </v-container>
123
+ <div>
124
+ <div v-if="loading" class="text-center">
125
+ <v-progress-circular
126
+ :size="70"
127
+ :width="7"
128
+ color="primary"
129
+ indeterminate
130
+ ></v-progress-circular>
131
+ </div>
132
+ </div>
133
+ </div>
145
134
  </template>
146
135
  <script>
147
136
  import BaseContentSettings from '~/components/Content/Tool/BaseContentSettings.js'
@@ -166,7 +155,9 @@ export default {
166
155
  this.block.metadata.config = {}
167
156
  }
168
157
  if (_.isEmpty(this.block.metadata.config.title)) {
169
- this.block.metadata.config.title = ''
158
+ this.block.metadata.config.title = this.$t(
159
+ 'windward.games.components.content.blocks.multiple_choice.game_title'
160
+ )
170
161
  }
171
162
  if (_.isEmpty(this.block.metadata.config.instructions)) {
172
163
  this.block.metadata.config.instructions = ''
@@ -182,6 +173,8 @@ export default {
182
173
  emittedQuestion: {},
183
174
  editingIndex: null,
184
175
  isNotEditing: false,
176
+ valid: true,
177
+ loading: false,
185
178
  }
186
179
  },
187
180
  mounted() {
@@ -274,30 +267,27 @@ export default {
274
267
  }
275
268
  </script>
276
269
  <style lang="scss" scoped>
277
- .cardOutline {
278
- border: 2px solid var(--v-primary-base);
270
+ .container-card-outline {
271
+ border: solid 1px var(--v-primary-base);
272
+ border-radius: 3px !important;
279
273
  margin-bottom: 8px;
280
274
  }
281
- .itemHeight {
275
+ .p-header {
276
+ height: 45px;
282
277
  display: flex;
283
- align-content: center;
284
- justify-content: space-between;
285
- height: 60px;
278
+ align-items: center;
286
279
  }
287
- .v-expansion-panel-content::v-deep .v-expansion-panel-content__wrap {
288
- padding: 0 !important;
280
+ .p-header:hover {
281
+ background-color: rgb(243, 243, 243);
289
282
  }
290
- .seventy {
291
- width: 70%;
292
- height: 100%;
293
- display: flex;
294
- align-items: center;
283
+ .btn-delete-icon {
284
+ color: var(--v-primary-base);
285
+ }
286
+ .btn-header-delete {
287
+ border-left: 1px solid var(--v-primary-base);
295
288
  }
296
- .twenty {
297
- width: 20%;
298
- height: 90%;
299
- margin-top: 3px;
300
- border-left: 2px solid var(--v-primary);
289
+ .btn-header-delete:hover {
290
+ background-color: rgb(243, 243, 243);
301
291
  }
302
292
  .changePointer {
303
293
  cursor: pointer !important;
@@ -8,7 +8,7 @@
8
8
  maxlength="50"
9
9
  :label="
10
10
  $t(
11
- 'plugin.games.components.settings.quizshow_game.form.title'
11
+ 'windward.games.components.settings.quizshow_game.form.title'
12
12
  )
13
13
  "
14
14
  ></v-text-field>
@@ -17,7 +17,7 @@
17
17
  v-model="block.metadata.config.responsive"
18
18
  :label="
19
19
  $t(
20
- 'plugin.games.components.settings.quizshow_game.form.responsive'
20
+ 'windward.games.components.settings.quizshow_game.form.responsive'
21
21
  )
22
22
  "
23
23
  ></v-checkbox>
@@ -30,7 +30,7 @@
30
30
  maxlength="300"
31
31
  :label="
32
32
  $t(
33
- 'plugin.games.components.settings.multiple_choice.instructions'
33
+ 'windward.games.components.settings.multiple_choice.instructions'
34
34
  )
35
35
  "
36
36
  ></v-textarea>
@@ -44,7 +44,7 @@
44
44
  <h5>
45
45
  {{
46
46
  $t(
47
- 'plugin.games.components.settings.quizshow_game.form.categories'
47
+ 'windward.games.components.settings.quizshow_game.form.categories'
48
48
  )
49
49
  }}
50
50
  </h5>
@@ -76,7 +76,7 @@
76
76
  maxlength="255"
77
77
  :label="
78
78
  $tc(
79
- 'plugin.games.components.settings.quizshow_game.form.category',
79
+ 'windward.games.components.settings.quizshow_game.form.category',
80
80
  1
81
81
  ) +
82
82
  ' ' +
@@ -102,7 +102,7 @@
102
102
  >
103
103
  <v-icon>mdi-plus</v-icon>&nbsp{{
104
104
  $t(
105
- 'plugin.games.components.settings.quizshow_game.form.add_category'
105
+ 'windward.games.components.settings.quizshow_game.form.add_category'
106
106
  )
107
107
  }}</v-btn
108
108
  >
@@ -120,7 +120,7 @@
120
120
  <h5>
121
121
  {{
122
122
  $t(
123
- 'plugin.games.components.settings.quizshow_game.form.max_rows'
123
+ 'windward.games.components.settings.quizshow_game.form.max_rows'
124
124
  )
125
125
  }}
126
126
  </h5>
@@ -155,7 +155,7 @@
155
155
  @input="onPointsChange(index - 1)"
156
156
  :label="
157
157
  $t(
158
- 'plugin.games.components.settings.quizshow_game.form.row'
158
+ 'windward.games.components.settings.quizshow_game.form.row'
159
159
  ) +
160
160
  ' ' +
161
161
  index
@@ -178,7 +178,7 @@
178
178
  >
179
179
  <v-icon>mdi-plus</v-icon>&nbsp{{
180
180
  $t(
181
- 'plugin.games.components.settings.quizshow_game.form.add_row'
181
+ 'windward.games.components.settings.quizshow_game.form.add_row'
182
182
  )
183
183
  }}</v-btn
184
184
  >
@@ -265,32 +265,32 @@ export default {
265
265
  cursor: 'changePointer',
266
266
  quizShowSettings: {
267
267
  title: this.$t(
268
- 'plugin.games.components.settings.quizshow_game.title'
268
+ 'windward.games.components.settings.quizshow_game.title'
269
269
  ),
270
270
  responsive: true,
271
271
  instructions: this.$t(
272
- 'plugin.games.components.settings.quizshow_game.form.default_instructions'
272
+ 'windward.games.components.settings.quizshow_game.form.default_instructions'
273
273
  ),
274
274
  maxCategories: 4,
275
275
  maxRows: 4,
276
276
  categories: [
277
277
  this.$tc(
278
- 'plugin.games.components.settings.quizshow_game.form.category',
278
+ 'windward.games.components.settings.quizshow_game.form.category',
279
279
  1,
280
280
  { index: 1 }
281
281
  ),
282
282
  this.$tc(
283
- 'plugin.games.components.settings.quizshow_game.form.category',
283
+ 'windward.games.components.settings.quizshow_game.form.category',
284
284
  1,
285
285
  { index: 2 }
286
286
  ),
287
287
  this.$tc(
288
- 'plugin.games.components.settings.quizshow_game.form.category',
288
+ 'windward.games.components.settings.quizshow_game.form.category',
289
289
  1,
290
290
  { index: 3 }
291
291
  ),
292
292
  this.$tc(
293
- 'plugin.games.components.settings.quizshow_game.form.category',
293
+ 'windward.games.components.settings.quizshow_game.form.category',
294
294
  1,
295
295
  { index: 4 }
296
296
  ),
@@ -380,11 +380,11 @@ export default {
380
380
  this.block.metadata.config.maxCategories
381
381
  ] =
382
382
  this.$t(
383
- 'plugin.games.components.settings.quizshow_game.form.new'
383
+ 'windward.games.components.settings.quizshow_game.form.new'
384
384
  ) +
385
385
  ' ' +
386
386
  this.$tc(
387
- 'plugin.games.components.settings.quizshow_game.form.category',
387
+ 'windward.games.components.settings.quizshow_game.form.category',
388
388
  1
389
389
  )
390
390
  this.block.metadata.config.maxCategories++