@windward/games 0.25.0 → 0.26.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -0
- package/components/content/blocks/crosswordPuzzle/CrosswordPuzzle.vue +6 -8
- package/components/content/blocks/dragDrop/BucketGame.vue +10 -0
- package/components/content/blocks/dragDrop/SortingGame.vue +15 -2
- package/components/content/blocks/flashcards/FlashcardSlides.vue +10 -2
- package/components/content/blocks/matchingGame/MatchingGame.vue +15 -5
- package/components/content/blocks/multipleChoice/MultipleChoice.vue +14 -1
- package/components/content/blocks/sevenStrikes/SevenStikes.vue +15 -2
- package/components/content/blocks/slideshow/SlideShow.vue +12 -1
- package/components/content/blocks/wordJumble/WordJumble.vue +80 -78
- package/components/settings/BucketGameSettingsManager.vue +0 -1
- package/components/settings/CrosswordPuzzleSettingsManager.vue +1 -1
- package/components/settings/MatchingGameManager.vue +1 -2
- package/components/settings/SevenStrikesSettingsManager.vue +3 -35
- package/components/settings/SortingGameSettingsManager.vue +8 -7
- package/components/settings/WordJumbleSettingsManager.vue +1 -26
- package/i18n/en-US/components/content/blocks/bucket_game.ts +1 -0
- package/i18n/en-US/components/content/blocks/crossword.ts +2 -2
- package/i18n/en-US/components/content/blocks/flashcard.ts +1 -0
- package/i18n/en-US/components/content/blocks/matching_game.ts +4 -2
- package/i18n/en-US/components/content/blocks/multiple_choice.ts +2 -1
- package/i18n/en-US/components/content/blocks/seven_strikes.ts +2 -0
- package/i18n/en-US/components/content/blocks/slideshow.ts +2 -1
- package/i18n/en-US/components/content/blocks/sorting_game.ts +2 -0
- package/i18n/en-US/components/content/blocks/word_jumble.ts +1 -1
- package/i18n/en-US/components/settings/bucket_game.ts +5 -5
- package/i18n/en-US/components/settings/crossword.ts +1 -0
- package/i18n/en-US/components/settings/flashcard.ts +4 -3
- package/i18n/en-US/components/settings/multiple_choice.ts +3 -3
- package/i18n/en-US/components/settings/seven_strikes.ts +1 -0
- package/i18n/en-US/components/settings/slideshow.ts +1 -1
- package/i18n/en-US/components/settings/sorting_game.ts +9 -5
- package/i18n/en-US/components/settings/word_jumble.ts +8 -6
- package/i18n/en-US/shared/content_blocks.ts +2 -2
- package/i18n/es-ES/components/content/blocks/bucket_game.ts +1 -0
- package/i18n/es-ES/components/content/blocks/crossword.ts +2 -2
- package/i18n/es-ES/components/content/blocks/flashcard.ts +2 -1
- package/i18n/es-ES/components/content/blocks/matching_game.ts +4 -2
- package/i18n/es-ES/components/content/blocks/multiple_choice.ts +2 -1
- package/i18n/es-ES/components/content/blocks/seven_strikes.ts +2 -0
- package/i18n/es-ES/components/content/blocks/slideshow.ts +3 -2
- package/i18n/es-ES/components/content/blocks/sorting_game.ts +2 -0
- package/i18n/es-ES/components/content/blocks/word_jumble.ts +1 -1
- package/i18n/es-ES/components/settings/bucket_game.ts +5 -5
- package/i18n/es-ES/components/settings/crossword.ts +1 -0
- package/i18n/es-ES/components/settings/flashcard.ts +4 -3
- package/i18n/es-ES/components/settings/multiple_choice.ts +5 -4
- package/i18n/es-ES/components/settings/seven_strikes.ts +1 -0
- package/i18n/es-ES/components/settings/slideshow.ts +1 -1
- package/i18n/es-ES/components/settings/sorting_game.ts +12 -6
- package/i18n/es-ES/components/settings/word_jumble.ts +10 -7
- package/i18n/es-ES/shared/content_blocks.ts +1 -1
- package/i18n/sv-SE/components/content/blocks/bucket_game.ts +1 -0
- package/i18n/sv-SE/components/content/blocks/crossword.ts +3 -2
- package/i18n/sv-SE/components/content/blocks/flashcard.ts +2 -1
- package/i18n/sv-SE/components/content/blocks/matching_game.ts +4 -2
- package/i18n/sv-SE/components/content/blocks/multiple_choice.ts +2 -1
- package/i18n/sv-SE/components/content/blocks/seven_strikes.ts +2 -0
- package/i18n/sv-SE/components/content/blocks/slideshow.ts +2 -1
- package/i18n/sv-SE/components/content/blocks/sorting_game.ts +2 -0
- package/i18n/sv-SE/components/content/blocks/word_jumble.ts +1 -1
- package/i18n/sv-SE/components/settings/bucket_game.ts +2 -2
- package/i18n/sv-SE/components/settings/crossword.ts +1 -0
- package/i18n/sv-SE/components/settings/flashcard.ts +4 -3
- package/i18n/sv-SE/components/settings/multiple_choice.ts +5 -4
- package/i18n/sv-SE/components/settings/seven_strikes.ts +1 -0
- package/i18n/sv-SE/components/settings/slideshow.ts +1 -1
- package/i18n/sv-SE/components/settings/sorting_game.ts +10 -5
- package/i18n/sv-SE/components/settings/word_jumble.ts +8 -6
- package/i18n/sv-SE/shared/content_blocks.ts +1 -1
- package/package.json +1 -1
- package/plugin.js +1 -1
- package/test/blocks/dragDrop/BucketGame.spec.js +1 -1
- package/test/settings/BucketGameManager.spec.js +1 -4
- package/test/settings/SevenStrikesManager.spec.js +0 -1
- package/test/settings/SortingGameManager.spec.js +1 -2
- package/test/settings/WordJumbleManager.spec.js +1 -14
|
@@ -10,7 +10,7 @@ export default {
|
|
|
10
10
|
toggle: 'Toggle to upload image',
|
|
11
11
|
match_game_title: 'Match game title',
|
|
12
12
|
add_prompt: 'Add Prompt',
|
|
13
|
-
add_answer: 'Add
|
|
13
|
+
add_answer: 'Add Item',
|
|
14
14
|
choose_answer_value: 'Choose an answer value',
|
|
15
15
|
default_feedback: 'Watch Here for Feedback',
|
|
16
16
|
congratulations_feedback: 'Congratulations! You have completed the game!',
|
|
@@ -19,8 +19,10 @@ export default {
|
|
|
19
19
|
aria_described: 'Aria described by',
|
|
20
20
|
reset: 'Reset Game',
|
|
21
21
|
term: 'Term',
|
|
22
|
-
terms: '
|
|
22
|
+
terms: 'Matching Items',
|
|
23
23
|
prompts: 'Prompts',
|
|
24
24
|
click_here: 'Click here to enter text',
|
|
25
25
|
image: 'Image',
|
|
26
|
+
no_answer_objects:
|
|
27
|
+
'Add matching items to get started. Each matching item consists of a term and at least one prompt for each term.',
|
|
26
28
|
}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
export default {
|
|
2
|
-
game_title: 'Multiple Choice
|
|
2
|
+
game_title: 'Multiple Choice',
|
|
3
3
|
hint: 'View Hint',
|
|
4
4
|
fifty: '50:50',
|
|
5
5
|
hint_title: 'Hint',
|
|
6
6
|
answer_feedback: 'Answer Feedback',
|
|
7
7
|
total_points: 'Total Points for Course',
|
|
8
8
|
information: 'Answer Information',
|
|
9
|
+
no_questions: 'Add a multiple-choice question to get started.',
|
|
9
10
|
}
|
|
@@ -4,4 +4,6 @@ export default {
|
|
|
4
4
|
placeholder: 'Placeholder',
|
|
5
5
|
incorrect_feedback:
|
|
6
6
|
'This order is not correct. Items with green checkmarks are in the correct position.',
|
|
7
|
+
no_sortable_items:
|
|
8
|
+
'Add a scenario or instruction text to get started. Then, add items that can be placed into a correct order.',
|
|
7
9
|
}
|
|
@@ -4,7 +4,8 @@ export default {
|
|
|
4
4
|
mass_entry: 'Mass data entry',
|
|
5
5
|
title: 'Title',
|
|
6
6
|
instructions: 'Instructions',
|
|
7
|
-
default_instructions:
|
|
7
|
+
default_instructions:
|
|
8
|
+
'Match items and categories by dragging items and releasing them into a category area. Correctly sorted items will remain in the buckets. Keep sorting items until all of them are placed in a category.',
|
|
8
9
|
buckets: 'Bucket Items',
|
|
9
10
|
feedback: {
|
|
10
11
|
feedback: 'Feedback',
|
|
@@ -12,8 +13,7 @@ export default {
|
|
|
12
13
|
correct: 'feedback when correct',
|
|
13
14
|
incorrect: 'feedback when incorrect',
|
|
14
15
|
correct_default: 'That is correct.',
|
|
15
|
-
incorrect_default:
|
|
16
|
-
'That is incorrect.',
|
|
16
|
+
incorrect_default: 'That is incorrect.',
|
|
17
17
|
},
|
|
18
18
|
image: {
|
|
19
19
|
title: 'Flash Card Image File',
|
|
@@ -32,7 +32,7 @@ export default {
|
|
|
32
32
|
'The character count for this field must be less than',
|
|
33
33
|
},
|
|
34
34
|
enter_text: 'Click to enter text',
|
|
35
|
-
add_bucket: 'Add
|
|
35
|
+
add_bucket: 'Add Item',
|
|
36
36
|
click_here: 'Click here to enter text',
|
|
37
37
|
add_answer: 'Add Answer',
|
|
38
38
|
color: 'Bucket Color',
|
|
@@ -40,6 +40,6 @@ export default {
|
|
|
40
40
|
replaced_successfully: 'Buckets replaced successfully',
|
|
41
41
|
added_successfully: 'New buckets added successfully',
|
|
42
42
|
invalid_response: 'Invalid response from bucket game generation',
|
|
43
|
-
failed_to_process: 'Failed to process generated buckets'
|
|
43
|
+
failed_to_process: 'Failed to process generated buckets',
|
|
44
44
|
},
|
|
45
45
|
}
|
|
@@ -19,17 +19,18 @@ export default {
|
|
|
19
19
|
preview: 'preview ',
|
|
20
20
|
new: 'Add New ',
|
|
21
21
|
cancel: 'cancel ',
|
|
22
|
-
add_card: 'Add
|
|
22
|
+
add_card: 'Add Item',
|
|
23
23
|
rules: {
|
|
24
24
|
field_required: 'This field is required',
|
|
25
25
|
char_count_less_then:
|
|
26
26
|
'The character count for this field must be less than',
|
|
27
27
|
},
|
|
28
|
-
instructions:
|
|
28
|
+
instructions:
|
|
29
|
+
"Click on each card to reveal the term's definition. Use the arrows to move through the deck.",
|
|
29
30
|
replace_existing: 'Replace existing flashcards',
|
|
30
31
|
replaced_successfully: 'Flashcards replaced successfully',
|
|
31
32
|
added_successfully: 'New flashcards added successfully',
|
|
32
33
|
invalid_response: 'Invalid response from flashcard generation',
|
|
33
|
-
failed_to_process: 'Failed to process generated flashcards'
|
|
34
|
+
failed_to_process: 'Failed to process generated flashcards',
|
|
34
35
|
},
|
|
35
36
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export default {
|
|
2
|
-
game_title: 'Multiple Choice
|
|
2
|
+
game_title: 'Multiple Choice',
|
|
3
3
|
title_placeholder: 'Title',
|
|
4
4
|
instructions: 'Instructions',
|
|
5
5
|
default_instructions:
|
|
6
6
|
'Read the question and click the correct answer below. Use the arrows to move between questions.',
|
|
7
|
-
questions: 'Questions',
|
|
7
|
+
questions: 'Multiple Choice Questions',
|
|
8
8
|
modal_title: 'Multiple Choice Question',
|
|
9
9
|
question_hint: 'Question Hint',
|
|
10
10
|
answer_feedback: 'Answer Feedback',
|
|
@@ -13,7 +13,7 @@ export default {
|
|
|
13
13
|
answer_option: 'Answer Option',
|
|
14
14
|
correct: 'Correct',
|
|
15
15
|
add_answer: 'Add Answer Option',
|
|
16
|
-
add_question: 'Add
|
|
16
|
+
add_question: 'Add Item',
|
|
17
17
|
answer: 'Answers',
|
|
18
18
|
added_successfully: 'Questions added successfully',
|
|
19
19
|
replaced_successfully: 'Questions replaced successfully',
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
export default {
|
|
2
|
-
sortable_game: '
|
|
3
|
-
sortable_items: '
|
|
2
|
+
sortable_game: 'Ordering',
|
|
3
|
+
sortable_items: 'Ordering Items',
|
|
4
4
|
word: 'Sortable Word',
|
|
5
|
-
instructions:
|
|
5
|
+
instructions:
|
|
6
|
+
'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.',
|
|
6
7
|
feedback_correct_label: 'Explanation of the correct order',
|
|
7
8
|
default_feedback_correct: 'That is the correct order.',
|
|
8
9
|
form: {
|
|
@@ -10,6 +11,9 @@ export default {
|
|
|
10
11
|
replaced_successfully: 'Items replaced successfully',
|
|
11
12
|
added_successfully: 'New items added successfully',
|
|
12
13
|
invalid_response: 'Invalid response from sorting game generation',
|
|
13
|
-
failed_to_process: 'Failed to process generated sorting game'
|
|
14
|
-
}
|
|
14
|
+
failed_to_process: 'Failed to process generated sorting game',
|
|
15
|
+
},
|
|
16
|
+
ordering_alert:
|
|
17
|
+
'The order of the items below are the correct order. They will be shuffled on the rendered block.',
|
|
18
|
+
add_element: 'Add Item',
|
|
15
19
|
}
|
|
@@ -1,21 +1,23 @@
|
|
|
1
1
|
export default {
|
|
2
|
-
|
|
2
|
+
word_jumble_items_header: 'Word Jumble Items',
|
|
3
|
+
word_jumble: 'Word or Phrase',
|
|
3
4
|
title_input: 'Title',
|
|
4
5
|
title: 'Word Jumble',
|
|
5
6
|
instructions: 'Instructions',
|
|
6
7
|
click: 'Click to enter text',
|
|
7
8
|
label: 'Word for jumbling',
|
|
8
|
-
hint: 'Clue
|
|
9
|
-
add: 'Add
|
|
9
|
+
hint: 'Clue',
|
|
10
|
+
add: 'Add Item',
|
|
10
11
|
feedback_correct: 'Feedback when correct',
|
|
11
12
|
feedback_incorrect: 'Feedback when incorrect',
|
|
12
|
-
|
|
13
13
|
// AI generation keys in nested form structure
|
|
14
14
|
form: {
|
|
15
15
|
replace_existing: 'Replace existing words',
|
|
16
16
|
replaced_successfully: 'Words replaced successfully',
|
|
17
17
|
added_successfully: 'New words added successfully',
|
|
18
18
|
invalid_response: 'Invalid response from word jumble generation',
|
|
19
|
-
failed_to_process: 'Failed to process generated words'
|
|
20
|
-
}
|
|
19
|
+
failed_to_process: 'Failed to process generated words',
|
|
20
|
+
},
|
|
21
|
+
no_word_jumble_items:
|
|
22
|
+
'Add a word jumble item to get started. Every item should have a word or phrase and a matching clue.',
|
|
21
23
|
}
|
|
@@ -2,7 +2,7 @@ export default {
|
|
|
2
2
|
title: {
|
|
3
3
|
flashcards: 'Flashcards',
|
|
4
4
|
bucket: 'Bucket',
|
|
5
|
-
|
|
5
|
+
ordering: 'Ordering',
|
|
6
6
|
matching_game: 'Matching',
|
|
7
7
|
quizshow: 'Quiz Show',
|
|
8
8
|
slideshow: 'Slideshow',
|
|
@@ -15,5 +15,5 @@ export default {
|
|
|
15
15
|
game: 'Activities',
|
|
16
16
|
multimedia: 'Multimedia Files',
|
|
17
17
|
},
|
|
18
|
-
out_of: '{0} out of {1}'
|
|
18
|
+
out_of: '{0} out of {1}',
|
|
19
19
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export default {
|
|
2
|
-
crossword: '
|
|
2
|
+
crossword: 'Crucigramas',
|
|
3
3
|
add_element: 'Agregar elemento',
|
|
4
4
|
initial_setup:
|
|
5
|
-
'
|
|
5
|
+
'Agregue al menos dos elementos de crucigrama con una palabra y una pista para comenzar.',
|
|
6
6
|
validation_error:
|
|
7
7
|
'El crucigrama no se pudo cargar debido al siguiente error.',
|
|
8
8
|
error: {
|
|
@@ -5,5 +5,6 @@ export default {
|
|
|
5
5
|
flip_card: 'Haga clic para ver atras',
|
|
6
6
|
click_to_show_front: 'Haga clic para mostrar el frente',
|
|
7
7
|
click_to_show_back: 'Haga clic para mostrar Atrás',
|
|
8
|
-
replace_existing: 'Reemplazar tarjetas existentes'
|
|
8
|
+
replace_existing: 'Reemplazar tarjetas existentes',
|
|
9
|
+
no_flashcard: 'Añade un elemento de tarjeta didáctica para comenzar.',
|
|
9
10
|
}
|
|
@@ -10,7 +10,7 @@ export default {
|
|
|
10
10
|
toggle: 'Alternar para cargar imagen',
|
|
11
11
|
match_game_title: 'Título del juego de combinación',
|
|
12
12
|
add_prompt: 'Agregar mensaje',
|
|
13
|
-
add_answer: 'Agregar
|
|
13
|
+
add_answer: 'Agregar artículo',
|
|
14
14
|
choose_answer_value: 'Elija un valor de respuesta',
|
|
15
15
|
default_feedback: 'Mira aquí para recibir comentarios',
|
|
16
16
|
congratulations_feedback: '¡Felicitaciones! ¡Has completado el juego!',
|
|
@@ -19,8 +19,10 @@ export default {
|
|
|
19
19
|
aria_described: 'Aria descrita por',
|
|
20
20
|
reset: 'Reiniciar juego',
|
|
21
21
|
term: 'Término',
|
|
22
|
-
terms: '
|
|
22
|
+
terms: 'Artículos coincidentes',
|
|
23
23
|
prompts: 'Avisos',
|
|
24
24
|
click_here: 'Haga clic aquí para ingresar texto',
|
|
25
25
|
image: 'Imagen',
|
|
26
|
+
no_answer_objects:
|
|
27
|
+
'Añade elementos coincidentes para empezar. Cada elemento coincidente consta de un término y al menos una indicación para cada término.',
|
|
26
28
|
}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
export default {
|
|
2
|
-
game_title: '
|
|
2
|
+
game_title: 'Opción Múltiple',
|
|
3
3
|
hint: 'Ver sugerencia',
|
|
4
4
|
fifty: '50:50',
|
|
5
5
|
hint_title: 'Pista',
|
|
6
6
|
answer_feedback: 'Comentarios de respuesta',
|
|
7
7
|
total_points: 'Puntos totales por Curso',
|
|
8
8
|
information: 'Información de respuesta',
|
|
9
|
+
no_questions: 'Agrega una pregunta de opción múltiple para comenzar.',
|
|
9
10
|
}
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
slides: {
|
|
3
3
|
slide: 'Diapositiva {0}: {1}',
|
|
4
|
-
slide_header: 'Encabezado de diapositiva'
|
|
4
|
+
slide_header: 'Encabezado de diapositiva',
|
|
5
5
|
slide_description: 'Descripción de la diapositiva',
|
|
6
6
|
image_alt: 'Ingrese texto aquí si no está subiendo la imagen',
|
|
7
7
|
},
|
|
8
8
|
add_slide: 'Agregar diapositiva',
|
|
9
9
|
amount_of_slides: 'Cantidad de diapositivas',
|
|
10
|
-
slideshow_title: '
|
|
10
|
+
slideshow_title: 'Presentación de diapositivas',
|
|
11
|
+
no_slides_alert: 'Añade una diapositiva para comenzar.',
|
|
11
12
|
}
|
|
@@ -4,4 +4,6 @@ export default {
|
|
|
4
4
|
placeholder: 'Marcador de posición',
|
|
5
5
|
incorrect_feedback:
|
|
6
6
|
'Este orden no es correcto. Los elementos con marcas de verificación verdes están en la posición correcta.',
|
|
7
|
+
no_sortable_items:
|
|
8
|
+
'Añade un escenario o un texto instructivo para empezar. Luego, añade elementos que se puedan ordenar correctamente.',
|
|
7
9
|
}
|
|
@@ -13,8 +13,7 @@ export default {
|
|
|
13
13
|
correct: 'comentarios cuando sea correcto',
|
|
14
14
|
incorrect: 'comentarios cuando son incorrectos',
|
|
15
15
|
correct_default: 'Eso es correcto.',
|
|
16
|
-
incorrect_default:
|
|
17
|
-
'Eso no es correcto.',
|
|
16
|
+
incorrect_default: 'Eso no es correcto.',
|
|
18
17
|
},
|
|
19
18
|
image: {
|
|
20
19
|
title: 'Archivo de imagen de tarjeta flash',
|
|
@@ -33,14 +32,15 @@ export default {
|
|
|
33
32
|
'El número de caracteres para este campo debe ser menor que',
|
|
34
33
|
},
|
|
35
34
|
enter_text: 'Haga clic para ingresar texto',
|
|
36
|
-
add_bucket: 'Agregar
|
|
35
|
+
add_bucket: 'Agregar artículo',
|
|
37
36
|
click_here: 'Haga clic aquí para ingresar texto',
|
|
38
37
|
add_answer: 'Agregar respuesta',
|
|
39
38
|
color: 'Color del cubo',
|
|
40
39
|
replace_existing: 'Reemplazar cubos existentes',
|
|
41
40
|
replaced_successfully: 'Cubos reemplazados exitosamente',
|
|
42
41
|
added_successfully: 'Nuevos cubos añadidos exitosamente',
|
|
43
|
-
invalid_response:
|
|
44
|
-
|
|
42
|
+
invalid_response:
|
|
43
|
+
'Respuesta inválida de la generación del juego de cubos',
|
|
44
|
+
failed_to_process: 'Error al procesar los cubos generados',
|
|
45
45
|
},
|
|
46
46
|
}
|
|
@@ -10,4 +10,5 @@ export default {
|
|
|
10
10
|
added_successfully: 'Elementos del crucigrama agregados correctamente',
|
|
11
11
|
failed_to_process: 'Error al procesar los elementos generados del crucigrama',
|
|
12
12
|
invalid_response: 'No se pudieron procesar los elementos generados del crucigrama',
|
|
13
|
+
add_element: 'Añadir elemento',
|
|
13
14
|
}
|
|
@@ -19,17 +19,18 @@ export default {
|
|
|
19
19
|
preview: 'vista previa',
|
|
20
20
|
new: 'Agregar nuevo',
|
|
21
21
|
cancel: 'cancelar ',
|
|
22
|
-
add_card: 'Agregar
|
|
22
|
+
add_card: 'Agregar artículo',
|
|
23
23
|
rules: {
|
|
24
24
|
field_required: 'Este campo es obligatorio',
|
|
25
25
|
char_count_less_then:
|
|
26
26
|
'El número de caracteres para este campo debe ser menor que',
|
|
27
27
|
},
|
|
28
|
-
instructions:
|
|
28
|
+
instructions:
|
|
29
|
+
'Haga clic en cada tarjeta para revelar la definición del término. Usa las flechas para moverte por el mazo.',
|
|
29
30
|
replace_existing: 'Reemplazar tarjetas existentes',
|
|
30
31
|
replaced_successfully: 'Tarjetas reemplazadas con éxito',
|
|
31
32
|
added_successfully: 'Nuevas tarjetas agregadas con éxito',
|
|
32
33
|
invalid_response: 'Respuesta inválida de la generación de tarjetas',
|
|
33
|
-
failed_to_process: 'Error al procesar las tarjetas generadas'
|
|
34
|
+
failed_to_process: 'Error al procesar las tarjetas generadas',
|
|
34
35
|
},
|
|
35
36
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export default {
|
|
2
|
-
game_title: '
|
|
2
|
+
game_title: 'Opción Múltiple',
|
|
3
3
|
title_placeholder: 'Título',
|
|
4
4
|
instructions: 'Instrucciones',
|
|
5
5
|
default_instructions:
|
|
6
6
|
'Lea la pregunta y haga clic en la respuesta correcta a continuación. Utilice las flechas para moverse entre las preguntas.',
|
|
7
|
-
questions: 'Preguntas',
|
|
7
|
+
questions: 'Preguntas de Opción Múltiple',
|
|
8
8
|
modal_title: 'Pregunta de opción múltiple',
|
|
9
9
|
question_hint: 'Pista de pregunta',
|
|
10
10
|
answer_feedback: 'Comentarios de respuesta',
|
|
@@ -13,10 +13,11 @@ export default {
|
|
|
13
13
|
answer_option: 'Opción de respuesta',
|
|
14
14
|
correct: 'Correcto',
|
|
15
15
|
add_answer: 'Agregar opción de respuesta',
|
|
16
|
-
add_question: 'Agregar
|
|
16
|
+
add_question: 'Agregar artículo',
|
|
17
17
|
answer: 'Respuestas',
|
|
18
18
|
added_successfully: 'Preguntas agregadas correctamente',
|
|
19
19
|
replaced_successfully: 'Preguntas reemplazadas correctamente',
|
|
20
|
-
invalid_response:
|
|
20
|
+
invalid_response:
|
|
21
|
+
'No se pudo procesar la respuesta de IA para opción múltiple.',
|
|
21
22
|
failed_to_process: 'No se pudo procesar la respuesta de IA',
|
|
22
23
|
}
|
|
@@ -9,6 +9,6 @@ export default {
|
|
|
9
9
|
'El número de caracteres para este campo debe ser menor que',
|
|
10
10
|
},
|
|
11
11
|
items: 'Elementos de presentación de diapositivas',
|
|
12
|
-
slideshow_title: '
|
|
12
|
+
slideshow_title: 'Presentación de diapositivas',
|
|
13
13
|
},
|
|
14
14
|
}
|
|
@@ -1,15 +1,21 @@
|
|
|
1
1
|
export default {
|
|
2
|
-
sortable_game: '
|
|
3
|
-
sortable_items: '
|
|
2
|
+
sortable_game: 'Ordenación',
|
|
3
|
+
sortable_items: 'Realizar pedidos de artículos',
|
|
4
4
|
word: 'Palabra ordenable',
|
|
5
|
-
instructions:
|
|
5
|
+
instructions:
|
|
6
|
+
'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.',
|
|
6
7
|
feedback_correct_label: 'Explicación del orden correcto.',
|
|
7
8
|
default_feedback_correct: 'Ese es el orden correcto.',
|
|
8
9
|
form: {
|
|
9
10
|
replace_existing: 'Reemplazar elementos existentes',
|
|
10
11
|
replaced_successfully: 'Elementos reemplazados exitosamente',
|
|
11
12
|
added_successfully: 'Nuevos elementos agregados exitosamente',
|
|
12
|
-
invalid_response:
|
|
13
|
-
|
|
14
|
-
|
|
13
|
+
invalid_response:
|
|
14
|
+
'Respuesta inválida de la generación de juego de ordenamiento',
|
|
15
|
+
failed_to_process:
|
|
16
|
+
'Error al procesar el juego de ordenamiento generado',
|
|
17
|
+
},
|
|
18
|
+
ordering_alert:
|
|
19
|
+
'El orden de los elementos a continuación es correcto. Se reorganizarán en el bloque renderizado.',
|
|
20
|
+
add_element: 'Agregar artículo',
|
|
15
21
|
}
|
|
@@ -1,21 +1,24 @@
|
|
|
1
1
|
export default {
|
|
2
|
-
|
|
2
|
+
word_jumble_items_header: 'Elementos de Word Jumble',
|
|
3
|
+
word_jumble: 'Palabra o frase',
|
|
3
4
|
title_input: 'Título',
|
|
4
5
|
title: 'Revoltijo de palabras',
|
|
5
6
|
instructions: 'Instrucciones',
|
|
6
7
|
click: 'Haga clic para ingresar texto',
|
|
7
8
|
label: 'Palabra para mezclar',
|
|
8
|
-
hint: 'Pista
|
|
9
|
-
add: 'Agregar
|
|
9
|
+
hint: 'Pista',
|
|
10
|
+
add: 'Agregar artículo',
|
|
10
11
|
feedback_correct: 'Comentarios cuando sea correcto',
|
|
11
12
|
feedback_incorrect: 'Comentarios cuando sean incorrectos',
|
|
12
|
-
|
|
13
13
|
// AI generation keys in nested form structure
|
|
14
14
|
form: {
|
|
15
15
|
replace_existing: 'Reemplazar palabras existentes',
|
|
16
16
|
replaced_successfully: 'Palabras reemplazadas exitosamente',
|
|
17
17
|
added_successfully: 'Nuevas palabras añadidas exitosamente',
|
|
18
|
-
invalid_response:
|
|
19
|
-
|
|
20
|
-
|
|
18
|
+
invalid_response:
|
|
19
|
+
'Respuesta inválida de la generación de revoltijo de palabras',
|
|
20
|
+
failed_to_process: 'Error al procesar las palabras generadas',
|
|
21
|
+
},
|
|
22
|
+
no_word_jumble_items:
|
|
23
|
+
'Añade un elemento de sopa de letras para empezar. Cada elemento debe tener una palabra o frase y una pista correspondiente.',
|
|
21
24
|
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
export default {
|
|
2
|
-
crossword: 'Crossword
|
|
2
|
+
crossword: 'Crossword',
|
|
3
3
|
add_element: 'Lägg till element',
|
|
4
|
-
initial_setup:
|
|
4
|
+
initial_setup:
|
|
5
|
+
'Lägg till minst två korsord med ett ord och en ledtråd för att komma igång.',
|
|
5
6
|
validation_error: 'Korsordet kunde inte laddas på grund av felet nedan.',
|
|
6
7
|
error: {
|
|
7
8
|
min_words: 'Du måste ange minst två ord med ledtrådar!',
|
|
@@ -5,5 +5,6 @@ export default {
|
|
|
5
5
|
flip_card: 'Klicka för att vända kortet',
|
|
6
6
|
click_to_show_front: 'Klicka för att visa fronten',
|
|
7
7
|
click_to_show_back: 'Klicka för att visa tillbaka',
|
|
8
|
-
replace_existing: 'Ersätt befintliga flashcards'
|
|
8
|
+
replace_existing: 'Ersätt befintliga flashcards',
|
|
9
|
+
no_flashcard: 'Lägg till ett flashcard-objekt för att komma igång.',
|
|
9
10
|
}
|
|
@@ -9,7 +9,7 @@ export default {
|
|
|
9
9
|
toggle: 'Växla för att ladda upp bild',
|
|
10
10
|
match_game_title: 'Matchspelstitel',
|
|
11
11
|
add_prompt: 'Add Prompt',
|
|
12
|
-
add_answer: 'Lägg till
|
|
12
|
+
add_answer: 'Lägg till objekt',
|
|
13
13
|
choose_answer_value: 'Välj ett svarsvärde',
|
|
14
14
|
default_feedback: 'Titta här för feedback',
|
|
15
15
|
congratulations_feedback: 'Grattis! Du har slutfört spelet!',
|
|
@@ -18,8 +18,10 @@ export default {
|
|
|
18
18
|
aria_described: 'Aria beskrivs av',
|
|
19
19
|
reset: 'Återställ spel',
|
|
20
20
|
term: 'Term',
|
|
21
|
-
terms: '
|
|
21
|
+
terms: 'Matchande föremål',
|
|
22
22
|
prompts: 'Prompts',
|
|
23
23
|
click_here: 'Klicka här för att skriva in text',
|
|
24
24
|
image: 'Bild',
|
|
25
|
+
no_answer_objects:
|
|
26
|
+
'Lägg till matchande objekt för att komma igång. Varje matchande objekt består av en term och minst en prompt för varje term.',
|
|
25
27
|
}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
export default {
|
|
2
|
-
game_title: '
|
|
2
|
+
game_title: 'Flerval',
|
|
3
3
|
hint: 'Visa tips',
|
|
4
4
|
fifty: '50:50',
|
|
5
5
|
hint_title: 'Tips',
|
|
6
6
|
answer_feedback: 'Svara feedback',
|
|
7
7
|
total_points: 'Totala poäng för Kurs',
|
|
8
8
|
information: 'Svarsinformation',
|
|
9
|
+
no_questions: 'Lägg till en flervalsfråga för att komma igång.',
|
|
9
10
|
}
|
|
@@ -4,4 +4,6 @@ export default {
|
|
|
4
4
|
placeholder: 'Platshållare',
|
|
5
5
|
incorrect_feedback:
|
|
6
6
|
'Denna ordning är inte korrekt. Föremål med gröna bockar är i rätt position.',
|
|
7
|
+
no_sortable_items:
|
|
8
|
+
'Lägg till ett scenario eller en instruktionstext för att komma igång. Lägg sedan till objekt som kan placeras i rätt ordning.',
|
|
7
9
|
}
|