@webwriter/quiz 1.1.3 → 2.0.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 (167) hide show
  1. package/.github/workflows/publish.yml +8 -0
  2. package/LICENSE +6 -6
  3. package/README.md +778 -0
  4. package/assets/icons/grip-horizontal.svg +8 -0
  5. package/assets/icons/grip-vertical.svg +8 -0
  6. package/assets/icons/truefalse.svg +6 -0
  7. package/custom-elements.json +2779 -0
  8. package/custom.d.ts +180 -176
  9. package/dist/api/index.d.ts +27 -0
  10. package/dist/api/index.js +40 -0
  11. package/dist/migrate.js +1434 -0
  12. package/dist/widgets/webwriter-choice-item.js +4036 -3895
  13. package/dist/widgets/webwriter-choice.js +2269 -5821
  14. package/dist/widgets/webwriter-gap-item.js +3987 -0
  15. package/dist/widgets/webwriter-gap.js +2908 -0
  16. package/dist/widgets/webwriter-mark.js +4335 -3489
  17. package/dist/widgets/webwriter-order-item.js +4014 -3306
  18. package/dist/widgets/webwriter-order.js +2944 -4386
  19. package/dist/widgets/webwriter-pairing-item.js +1058 -2421
  20. package/dist/widgets/webwriter-pairing.js +2993 -4383
  21. package/dist/widgets/webwriter-quiz-hint.js +2469 -0
  22. package/dist/widgets/webwriter-quiz.js +4933 -6099
  23. package/dist/widgets/webwriter-speech.js +6077 -5230
  24. package/dist/widgets/webwriter-task-prompt.js +4775 -2165
  25. package/dist/widgets/webwriter-task.js +2364 -8382
  26. package/dist/widgets/webwriter-text.js +4169 -4337
  27. package/dist/widgets/webwriter-true-false.js +4674 -0
  28. package/editing-config.json +106 -0
  29. package/lit-localize.json +21 -15
  30. package/localization/de.xlf +407 -74
  31. package/localization/es.xlf +407 -69
  32. package/localization/fr.xlf +407 -69
  33. package/localization/generated/de.ts +112 -29
  34. package/localization/generated/es.ts +112 -29
  35. package/localization/generated/fr.ts +112 -29
  36. package/localization/generated/index.d.ts +5 -0
  37. package/localization/generated/index.js +2 -2
  38. package/localization/generated/it.ts +112 -29
  39. package/localization/generated/locale-codes.js +31 -79
  40. package/localization/generated/nl.ts +112 -29
  41. package/localization/it.xlf +407 -69
  42. package/localization/nl.xlf +407 -69
  43. package/package.json +119 -252
  44. package/scripts/apply-translations.mjs +97 -0
  45. package/src/api/index.ts +72 -0
  46. package/src/lib/artboard.ts +686 -0
  47. package/src/lib/draggable-grid.ts +432 -0
  48. package/src/lib/encrypted-property.ts +202 -0
  49. package/src/lib/hint-popup.ts +152 -0
  50. package/src/lib/utils.ts +97 -0
  51. package/src/lib/webwriter-quirks.ts +121 -0
  52. package/src/migrate/index.ts +622 -0
  53. package/src/migrate/legacy-solution.ts +362 -0
  54. package/src/snippets/order.html +9 -8
  55. package/src/widgets/choice/webwriter-choice-item.ts +316 -0
  56. package/src/widgets/choice/webwriter-choice.ts +328 -0
  57. package/src/widgets/choice/webwriter-true-false.ts +113 -0
  58. package/src/widgets/dnd/webwriter-dnd-draggable.ts +28 -0
  59. package/src/widgets/dnd/webwriter-dnd-dropzone.ts +9 -0
  60. package/src/widgets/dnd/webwriter-dnd.ts +36 -0
  61. package/src/widgets/gap/webwriter-gap-item.ts +250 -0
  62. package/src/widgets/gap/webwriter-gap.ts +447 -0
  63. package/src/widgets/order/webwriter-order-item.ts +243 -0
  64. package/src/widgets/order/webwriter-order.ts +282 -0
  65. package/src/widgets/pairing/webwriter-pairing-item.ts +46 -0
  66. package/src/widgets/pairing/webwriter-pairing.ts +934 -0
  67. package/src/widgets/speech/audio-player.ts +325 -0
  68. package/src/widgets/speech/audio-recorder.ts +285 -0
  69. package/src/widgets/speech/waveform.ts +113 -0
  70. package/src/widgets/speech/webwriter-speech.ts +87 -0
  71. package/src/widgets/webwriter-mark.ts +374 -432
  72. package/src/widgets/webwriter-quiz-hint.ts +36 -0
  73. package/src/widgets/webwriter-quiz.ts +320 -282
  74. package/src/widgets/webwriter-task-prompt.ts +49 -24
  75. package/src/widgets/webwriter-task.ts +216 -547
  76. package/src/widgets/webwriter-text.ts +291 -156
  77. package/tsconfig.api.json +12 -0
  78. package/tsconfig.json +8 -7
  79. package/dist/widgets/webwriter-choice.css +0 -444
  80. package/dist/widgets/webwriter-cloze-gap.css +0 -444
  81. package/dist/widgets/webwriter-cloze-gap.js +0 -5866
  82. package/dist/widgets/webwriter-cloze.css +0 -444
  83. package/dist/widgets/webwriter-cloze.js +0 -3786
  84. package/dist/widgets/webwriter-mark.css +0 -444
  85. package/dist/widgets/webwriter-order.css +0 -444
  86. package/dist/widgets/webwriter-pairing-item.css +0 -444
  87. package/dist/widgets/webwriter-pairing.css +0 -444
  88. package/dist/widgets/webwriter-quiz.css +0 -444
  89. package/dist/widgets/webwriter-task-explainer.css +0 -444
  90. package/dist/widgets/webwriter-task-explainer.js +0 -2872
  91. package/dist/widgets/webwriter-task-hint.css +0 -444
  92. package/dist/widgets/webwriter-task-hint.js +0 -2811
  93. package/dist/widgets/webwriter-task.css +0 -444
  94. package/dist/widgets/webwriter-text.css +0 -444
  95. package/localization/bg.xlf +0 -69
  96. package/localization/cs.xlf +0 -69
  97. package/localization/da.xlf +0 -69
  98. package/localization/el.xlf +0 -69
  99. package/localization/et.xlf +0 -69
  100. package/localization/fi.xlf +0 -69
  101. package/localization/generated/bg.ts +0 -30
  102. package/localization/generated/cs.ts +0 -30
  103. package/localization/generated/da.ts +0 -30
  104. package/localization/generated/el.ts +0 -30
  105. package/localization/generated/et.ts +0 -30
  106. package/localization/generated/fi.ts +0 -30
  107. package/localization/generated/hu.ts +0 -30
  108. package/localization/generated/id.ts +0 -30
  109. package/localization/generated/ja.ts +0 -30
  110. package/localization/generated/ko.ts +0 -30
  111. package/localization/generated/lt.ts +0 -30
  112. package/localization/generated/lv.ts +0 -30
  113. package/localization/generated/nb.ts +0 -30
  114. package/localization/generated/pl.ts +0 -30
  115. package/localization/generated/pt-BR.ts +0 -30
  116. package/localization/generated/pt-PT.ts +0 -30
  117. package/localization/generated/ro.ts +0 -30
  118. package/localization/generated/ru.ts +0 -30
  119. package/localization/generated/sk.ts +0 -30
  120. package/localization/generated/sl.ts +0 -30
  121. package/localization/generated/sv.ts +0 -30
  122. package/localization/generated/tr.ts +0 -30
  123. package/localization/generated/uk.ts +0 -30
  124. package/localization/generated/zh-hans.ts +0 -30
  125. package/localization/hu.xlf +0 -69
  126. package/localization/id.xlf +0 -69
  127. package/localization/ja.xlf +0 -69
  128. package/localization/ko.xlf +0 -69
  129. package/localization/lt.xlf +0 -69
  130. package/localization/lv.xlf +0 -69
  131. package/localization/nb.xlf +0 -69
  132. package/localization/pl.xlf +0 -69
  133. package/localization/pt-BR.xlf +0 -69
  134. package/localization/pt-PT.xlf +0 -69
  135. package/localization/ro.xlf +0 -69
  136. package/localization/ru.xlf +0 -69
  137. package/localization/sk.xlf +0 -69
  138. package/localization/sl.xlf +0 -69
  139. package/localization/sv.xlf +0 -69
  140. package/localization/tr.xlf +0 -69
  141. package/localization/uk.xlf +0 -69
  142. package/localization/zh-hans.xlf +0 -69
  143. package/src/lib/combobox.ts +0 -456
  144. package/src/lib/highlighter-fill.svg +0 -6
  145. package/src/snippets/Beispiel-Choice.html +0 -57
  146. package/src/snippets/Beispiel-Mark.html +0 -14
  147. package/src/snippets/Beispiel-Order.html +0 -52
  148. package/src/snippets/Beispiel-Text.html +0 -20
  149. package/src/snippets/blank.html +0 -1
  150. package/src/snippets/choice.html +0 -8
  151. package/src/snippets/cloze.html +0 -4
  152. package/src/snippets/mark.html +0 -4
  153. package/src/snippets/pairing.html +0 -10
  154. package/src/snippets/speech.html +0 -4
  155. package/src/snippets/text.html +0 -4
  156. package/src/snippets/wordsearch.html +0 -4
  157. package/src/widgets/webwriter-choice-item.ts +0 -254
  158. package/src/widgets/webwriter-choice.ts +0 -353
  159. package/src/widgets/webwriter-cloze-gap.ts +0 -216
  160. package/src/widgets/webwriter-cloze.ts +0 -136
  161. package/src/widgets/webwriter-order-item.ts +0 -441
  162. package/src/widgets/webwriter-order.ts +0 -327
  163. package/src/widgets/webwriter-pairing-item.ts +0 -161
  164. package/src/widgets/webwriter-pairing.ts +0 -193
  165. package/src/widgets/webwriter-speech.ts +0 -273
  166. package/src/widgets/webwriter-task-explainer.ts +0 -43
  167. package/src/widgets/webwriter-task-hint.ts +0 -23
@@ -1,69 +1,407 @@
1
- <xliff xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 http://docs.oasis-open.org/xliff/v1.2/os/xliff-core-1.2-strict.xsd" xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
2
- <file original="lit-localize-inputs" datatype="plaintext" source-language="en" target-language="es">
3
- <body>
4
- <trans-unit id="s4802e47fe2e95134">
5
- <source>Option</source>
6
- <target>Opción</target>
7
- </trans-unit>
8
- <trans-unit id="s85ea99fb52be3385">
9
- <source>True</source>
10
- <target>Verdadero</target>
11
- </trans-unit>
12
- <trans-unit id="s7254ca27b16ae2d8">
13
- <source>False</source>
14
- <target>Falso</target>
15
- </trans-unit>
16
- <trans-unit id="s159928724265eb05">
17
- <source>Add Option</source>
18
- <target>Añadir opción</target>
19
- </trans-unit>
20
- <trans-unit id="sc56e9323f076a11e">
21
- <source>Text to add gaps to</source>
22
- <target>Texto al que añadir huecos</target>
23
- </trans-unit>
24
- <trans-unit id="s80dc9f56411917df">
25
- <source>Text to Highlight</source>
26
- <target>Texto a destacar</target>
27
- </trans-unit>
28
- <trans-unit id="s1b23c41934894f30">
29
- <source>Explanation</source>
30
- <target>Explicación</target>
31
- </trans-unit>
32
- <trans-unit id="sd26e8d4eef55e341">
33
- <source>Check your answers</source>
34
- <target>Comprueba tus respuestas</target>
35
- </trans-unit>
36
- <trans-unit id="scd1dd6ff53d0d01a">
37
- <source>Try again</source>
38
- <target>Inténtalo de nuevo</target>
39
- </trans-unit>
40
- <trans-unit id="sb3d4f79d9d8b71e5">
41
- <source>Submit</source>
42
- <target>Enviar</target>
43
- </trans-unit>
44
- <trans-unit id="s255857544a9d5ec0">
45
- <source>Reset</source>
46
- <target>Restablecer</target>
47
- </trans-unit>
48
- <trans-unit id="s54393bfa280ea55b">
49
- <source>Prompt</source>
50
- <target>Pregunte a</target>
51
- </trans-unit>
52
- <trans-unit id="sb0aadaa04e658ad6">
53
- <source>Choice</source>
54
- </trans-unit>
55
- <trans-unit id="s2ba5f4d8f3bd7c57">
56
- <source>Order</source>
57
- </trans-unit>
58
- <trans-unit id="s2492f5fb1b05b45e">
59
- <source>Text</source>
60
- </trans-unit>
61
- <trans-unit id="s49c940aecfef3ea0">
62
- <source>Mark</source>
63
- </trans-unit>
64
- <trans-unit id="saa3efba1f0c816b7">
65
- <source>Speech</source>
66
- </trans-unit>
67
- </body>
68
- </file>
69
- </xliff>
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
3
+ <file target-language="es" source-language="en" original="lit-localize-inputs" datatype="plaintext">
4
+ <body>
5
+ <trans-unit id="s54393bfa280ea55b">
6
+ <source>Prompt</source>
7
+ <target>Enunciado</target>
8
+ </trans-unit>
9
+ <trans-unit id="s468f08dd3166cf44">
10
+ <source>Choose Background</source>
11
+ <target>Elegir fondo</target>
12
+ </trans-unit>
13
+ <trans-unit id="sc01c972e33754d22">
14
+ <source>Feedback if selected</source>
15
+ <target>Retroalimentación si se selecciona</target>
16
+ </trans-unit>
17
+ <trans-unit id="s31ac9cd289910c65">
18
+ <source>Feedback if not selected</source>
19
+ <target>Retroalimentación si no se selecciona</target>
20
+ </trans-unit>
21
+ <trans-unit id="s9daa676c05ab2a68">
22
+ <source>Single Choice</source>
23
+ <target>Opción única</target>
24
+ </trans-unit>
25
+ <trans-unit id="s485bbcc5d19e2b20">
26
+ <source>Multiple Choice</source>
27
+ <target>Opción múltiple</target>
28
+ </trans-unit>
29
+ <trans-unit id="s37cbecaec58e2192">
30
+ <source>Mode</source>
31
+ <target>Modo</target>
32
+ </trans-unit>
33
+ <trans-unit id="s3d249bb480032121">
34
+ <source>List</source>
35
+ <target>Lista</target>
36
+ </trans-unit>
37
+ <trans-unit id="sde8252d2a4d268ce">
38
+ <source>Tiles</source>
39
+ <target>Mosaico</target>
40
+ </trans-unit>
41
+ <trans-unit id="s2e4818861000b13f">
42
+ <source>Layout</source>
43
+ <target>Disposición</target>
44
+ </trans-unit>
45
+ <trans-unit id="sf0fce877a8caebec">
46
+ <source>Randomize Order</source>
47
+ <target>Orden aleatorio</target>
48
+ </trans-unit>
49
+ <trans-unit id="s159928724265eb05">
50
+ <source>Add Option</source>
51
+ <target>Añadir opción</target>
52
+ </trans-unit>
53
+ <trans-unit id="s021fb26da6a25f79">
54
+ <source>True or False</source>
55
+ <target>Verdadero o falso</target>
56
+ </trans-unit>
57
+ <trans-unit id="s85ea99fb52be3385">
58
+ <source>True</source>
59
+ <target>Verdadero</target>
60
+ </trans-unit>
61
+ <trans-unit id="s7254ca27b16ae2d8">
62
+ <source>False</source>
63
+ <target>Falso</target>
64
+ </trans-unit>
65
+ <trans-unit id="sdc9d86c26cff613b">
66
+ <source>Drag and Drop</source>
67
+ <target>Arrastrar y soltar</target>
68
+ </trans-unit>
69
+ <trans-unit id="sd24f4d056c0124f6">
70
+ <source>Empty gap</source>
71
+ <target>Hueco vacío</target>
72
+ </trans-unit>
73
+ <trans-unit id="sdb9694f31d64cfc8">
74
+ <source>Your answer</source>
75
+ <target>Tu respuesta</target>
76
+ </trans-unit>
77
+ <trans-unit id="s855bb4e2b08d1a18">
78
+ <source>No answer</source>
79
+ <target>Sin respuesta</target>
80
+ </trans-unit>
81
+ <trans-unit id="s0d9a7bb29fee2d85">
82
+ <source>Correct answer</source>
83
+ <target>Respuesta correcta</target>
84
+ </trans-unit>
85
+ <trans-unit id="seaf97719986faf4f">
86
+ <source>Gap</source>
87
+ <target>Hueco</target>
88
+ </trans-unit>
89
+ <trans-unit id="scc5671964ae0d6f7">
90
+ <source>Insert gap at selection</source>
91
+ <target>Insertar hueco en la selección</target>
92
+ </trans-unit>
93
+ <trans-unit id="sbbb7581f20733d79">
94
+ <source>Freeform input</source>
95
+ <target>Entrada libre</target>
96
+ </trans-unit>
97
+ <trans-unit id="sb20f85b66b8eed5b">
98
+ <source>Drag and drop</source>
99
+ <target>Arrastrar y soltar</target>
100
+ </trans-unit>
101
+ <trans-unit id="s34adfb0ab932043d">
102
+ <source>Ignore case</source>
103
+ <target>Ignorar mayúsculas</target>
104
+ </trans-unit>
105
+ <trans-unit id="s721db58b7b0ea2e3">
106
+ <source>Available answers</source>
107
+ <target>Respuestas disponibles</target>
108
+ </trans-unit>
109
+ <trans-unit id="s03d845021c14b84f">
110
+ <source>Return to answers</source>
111
+ <target>Devolver a las respuestas</target>
112
+ </trans-unit>
113
+ <trans-unit id="s4802e47fe2e95134">
114
+ <source>Option</source>
115
+ <target>Opción</target>
116
+ </trans-unit>
117
+ <trans-unit id="s2ba5f4d8f3bd7c57">
118
+ <source>Order</source>
119
+ <target>Ordenar</target>
120
+ </trans-unit>
121
+ <trans-unit id="s2d96dca399230ff3">
122
+ <source>The layout variant to use.</source>
123
+ <target>La variante de disposición que se utilizará.</target>
124
+ </trans-unit>
125
+ <trans-unit id="sd23ee5e66df8400a">
126
+ <source>Direction</source>
127
+ <target>Dirección</target>
128
+ </trans-unit>
129
+ <trans-unit id="s94c650bef124bd01">
130
+ <source>Ascending</source>
131
+ <target>Ascendente</target>
132
+ </trans-unit>
133
+ <trans-unit id="s15bdec250a4a55fb">
134
+ <source>Descending</source>
135
+ <target>Descendente</target>
136
+ </trans-unit>
137
+ <trans-unit id="s21b5ec7253ee5705">
138
+ <source>The order direction to use.</source>
139
+ <target>La dirección de ordenación que se utilizará.</target>
140
+ </trans-unit>
141
+ <trans-unit id="sde7fee183b3bda88">
142
+ <source>Numbering</source>
143
+ <target>Numeración</target>
144
+ </trans-unit>
145
+ <trans-unit id="s669b18c6d2d9c95b">
146
+ <source>None</source>
147
+ <target>Ninguna</target>
148
+ </trans-unit>
149
+ <trans-unit id="scc337566a7187408">
150
+ <source>Numeric</source>
151
+ <target>Numérica</target>
152
+ </trans-unit>
153
+ <trans-unit id="se8a94b4effa2033e">
154
+ <source>Alphabetic</source>
155
+ <target>Alfabética</target>
156
+ </trans-unit>
157
+ <trans-unit id="s7667ffa7b27a7232">
158
+ <source>Roman</source>
159
+ <target>Romana</target>
160
+ </trans-unit>
161
+ <trans-unit id="s36163be9d8064432">
162
+ <source>The numbering style to use.</source>
163
+ <target>El estilo de numeración que se utilizará.</target>
164
+ </trans-unit>
165
+ <trans-unit id="s8685fbc5eca0de27">
166
+ <source>Grading</source>
167
+ <target>Calificación</target>
168
+ </trans-unit>
169
+ <trans-unit id="s57784c3b7df6150c">
170
+ <source>Partial (Position)</source>
171
+ <target>Parcial (posición)</target>
172
+ </trans-unit>
173
+ <trans-unit id="sb1c40c0af94993b6">
174
+ <source>Partial (Sequence)</source>
175
+ <target>Parcial (secuencia)</target>
176
+ </trans-unit>
177
+ <trans-unit id="s4058ed60e59264ed">
178
+ <source>The grading method to use.</source>
179
+ <target>El método de calificación que se utilizará.</target>
180
+ </trans-unit>
181
+ <trans-unit id="s52cfa1d198476806">
182
+ <source>Item</source>
183
+ <target>Elemento</target>
184
+ </trans-unit>
185
+ <trans-unit id="saadba46653e4ffef">
186
+ <source>Pairing</source>
187
+ <target>Emparejamiento</target>
188
+ </trans-unit>
189
+ <trans-unit id="sbdc2605da169f810">
190
+ <source>Add Pair</source>
191
+ <target>Añadir pareja</target>
192
+ </trans-unit>
193
+ <trans-unit id="s16e1bead7b9c95ce">
194
+ <source>Memory</source>
195
+ <target>Memoria</target>
196
+ </trans-unit>
197
+ <trans-unit id="sf4e3c96801ebe794">
198
+ <source>Volume: <x id="0" equiv-text="${this.volume}"/>%</source>
199
+ <target>Volumen: <x id="0" equiv-text="${this.volume}"/>%</target>
200
+ </trans-unit>
201
+ <trans-unit id="s7acd963aa22be70c">
202
+ <source>Speed: <x id="0" equiv-text="${this.playbackSpeed}"/>x</source>
203
+ <target>Velocidad: <x id="0" equiv-text="${this.playbackSpeed}"/>x</target>
204
+ </trans-unit>
205
+ <trans-unit id="s5d86300c6e210017">
206
+ <source>WebWriter does not have permission to access the microphone.</source>
207
+ <target>WebWriter no tiene permiso para acceder al micrófono.</target>
208
+ </trans-unit>
209
+ <trans-unit id="sb5b8485f95c97a79">
210
+ <source>An error occurred while accessing the microphone.</source>
211
+ <target>Se ha producido un error al acceder al micrófono.</target>
212
+ </trans-unit>
213
+ <trans-unit id="s653f729e608b6653">
214
+ <source>Click to Start Recording</source>
215
+ <target>Haz clic para empezar a grabar</target>
216
+ </trans-unit>
217
+ <trans-unit id="saa3efba1f0c816b7">
218
+ <source>Speech</source>
219
+ <target>Voz</target>
220
+ </trans-unit>
221
+ <trans-unit id="s49c940aecfef3ea0">
222
+ <source>Mark</source>
223
+ <target>Resaltar</target>
224
+ </trans-unit>
225
+ <trans-unit id="s678dbf717a0b079d">
226
+ <source>Pass/Fail</source>
227
+ <target>Todo o nada</target>
228
+ </trans-unit>
229
+ <trans-unit id="sffeb741d73d302b3">
230
+ <source>Partial Credit</source>
231
+ <target>Puntuación parcial</target>
232
+ </trans-unit>
233
+ <trans-unit id="sb8f0e32715402f50">
234
+ <source>Grading Method</source>
235
+ <target>Método de calificación</target>
236
+ </trans-unit>
237
+ <trans-unit id="s848dd69654cedb5a">
238
+ <source>Toggle Marking at Position</source>
239
+ <target>Alternar resaltado en la posición</target>
240
+ </trans-unit>
241
+ <trans-unit id="s80dc9f56411917df">
242
+ <source>Text to Highlight</source>
243
+ <target>Texto para resaltar</target>
244
+ </trans-unit>
245
+ <trans-unit id="s3ff3b89e5871fae3">
246
+ <source>Multiple lines are not supported</source>
247
+ <target>No se admiten varias líneas</target>
248
+ </trans-unit>
249
+ <trans-unit id="s9dcffdd89c8e0f58">
250
+ <source>Hint</source>
251
+ <target>Pista</target>
252
+ </trans-unit>
253
+ <trans-unit id="s7a153886c76b7dcb">
254
+ <source>Show detailed feedback</source>
255
+ <target>Mostrar retroalimentación detallada</target>
256
+ </trans-unit>
257
+ <trans-unit id="s2f9c7cb1f24c3de8">
258
+ <source>Require confirmation before submitting</source>
259
+ <target>Pedir confirmación antes de enviar</target>
260
+ </trans-unit>
261
+ <trans-unit id="s5ca3b69235e6046b">
262
+ <source>Require confirmation before resetting</source>
263
+ <target>Pedir confirmación antes de reiniciar</target>
264
+ </trans-unit>
265
+ <trans-unit id="saa48690ce74705d4">
266
+ <source>Hide points</source>
267
+ <target>Ocultar puntos</target>
268
+ </trans-unit>
269
+ <trans-unit id="s766f42576852db83">
270
+ <source>Submit answers?</source>
271
+ <target>¿Enviar respuestas?</target>
272
+ </trans-unit>
273
+ <trans-unit id="sbcdedcdd8451318c">
274
+ <source>Reset answers?</source>
275
+ <target>¿Reiniciar respuestas?</target>
276
+ </trans-unit>
277
+ <trans-unit id="s0b733d4a22c3b12f">
278
+ <source>Submit your answers for evaluation?</source>
279
+ <target>¿Enviar tus respuestas para su evaluación?</target>
280
+ </trans-unit>
281
+ <trans-unit id="s7ac431061b2ebf1a">
282
+ <source>Reset all answers and start over?</source>
283
+ <target>¿Reiniciar todas las respuestas y empezar de nuevo?</target>
284
+ </trans-unit>
285
+ <trans-unit id="s2ceb11be2290bb1b">
286
+ <source>Cancel</source>
287
+ <target>Cancelar</target>
288
+ </trans-unit>
289
+ <trans-unit id="sb3d4f79d9d8b71e5">
290
+ <source>Submit</source>
291
+ <target>Enviar</target>
292
+ </trans-unit>
293
+ <trans-unit id="s270d49ea25614a7b">
294
+ <source>Reset answers</source>
295
+ <target>Reiniciar respuestas</target>
296
+ </trans-unit>
297
+ <trans-unit id="s53bc6e49623c8f80">
298
+ <source>Add Question</source>
299
+ <target>Añadir pregunta</target>
300
+ </trans-unit>
301
+ <trans-unit id="s729db3aabe406a0a">
302
+ <source>Question 1</source>
303
+ <target>Pregunta 1</target>
304
+ </trans-unit>
305
+ <trans-unit id="scabf78417c4e5d86">
306
+ <source>Points</source>
307
+ <target>Puntos</target>
308
+ </trans-unit>
309
+ <trans-unit id="s729dc6aabe408a53">
310
+ <source>Question <x id="0" equiv-text="${index + 1}"/></source>
311
+ <target>Pregunta <x id="0" equiv-text="${index + 1}"/></target>
312
+ </trans-unit>
313
+ <trans-unit id="s43f438831bf2524d">
314
+ <source>Unanswered</source>
315
+ <target>Sin responder</target>
316
+ </trans-unit>
317
+ <trans-unit id="s71ba655ef7772e6c">
318
+ <source>Incorrect</source>
319
+ <target>Incorrecto</target>
320
+ </trans-unit>
321
+ <trans-unit id="s4158d5fc29a1f991">
322
+ <source>Correct</source>
323
+ <target>Correcto</target>
324
+ </trans-unit>
325
+ <trans-unit id="s19d2c07c1effbdaf">
326
+ <source>Partially correct</source>
327
+ <target>Parcialmente correcto</target>
328
+ </trans-unit>
329
+ <trans-unit id="s73feab3544c345b1">
330
+ <source>point</source>
331
+ <target>punto</target>
332
+ </trans-unit>
333
+ <trans-unit id="sdd02ad83d7cf88a6">
334
+ <source>points</source>
335
+ <target>puntos</target>
336
+ </trans-unit>
337
+ <trans-unit id="s2492f5fb1b05b45e">
338
+ <source>Text</source>
339
+ <target>Texto</target>
340
+ </trans-unit>
341
+ <trans-unit id="sd2223afb7d6b100d">
342
+ <source>Type</source>
343
+ <target>Tipo</target>
344
+ </trans-unit>
345
+ <trans-unit id="sfe628f6e69f78cca">
346
+ <source>Long Text</source>
347
+ <target>Texto largo</target>
348
+ </trans-unit>
349
+ <trans-unit id="s2317e68a652c8498">
350
+ <source>Short Text</source>
351
+ <target>Texto corto</target>
352
+ </trans-unit>
353
+ <trans-unit id="sbbb97b1c63507dc0">
354
+ <source>Number</source>
355
+ <target>Número</target>
356
+ </trans-unit>
357
+ <trans-unit id="sac8252732f2edb19">
358
+ <source>Date</source>
359
+ <target>Fecha</target>
360
+ </trans-unit>
361
+ <trans-unit id="s48e186fb300e5464">
362
+ <source>Time</source>
363
+ <target>Hora</target>
364
+ </trans-unit>
365
+ <trans-unit id="s9bae45e308549364">
366
+ <source>Date &amp; Time</source>
367
+ <target>Fecha y hora</target>
368
+ </trans-unit>
369
+ <trans-unit id="sf90be97cb08f3d5a">
370
+ <source>Placeholder</source>
371
+ <target>Marcador de posición</target>
372
+ </trans-unit>
373
+ <trans-unit id="se2af7220fe721133">
374
+ <source>Free answer</source>
375
+ <target>Respuesta libre</target>
376
+ </trans-unit>
377
+ <trans-unit id="sa0a8f80935f767dd">
378
+ <source>Ignore capitalization</source>
379
+ <target>Ignorar mayúsculas y minúsculas</target>
380
+ </trans-unit>
381
+ <trans-unit id="s1705e89d78286348">
382
+ <source>Message for correct solution</source>
383
+ <target>Mensaje para solución correcta</target>
384
+ </trans-unit>
385
+ <trans-unit id="sea7b286dd4c986fd">
386
+ <source>Message for wrong solution</source>
387
+ <target>Mensaje para solución incorrecta</target>
388
+ </trans-unit>
389
+ <trans-unit id="sa937fce28916575e">
390
+ <source>Solution</source>
391
+ <target>Solución</target>
392
+ </trans-unit>
393
+ <trans-unit id="s73c0e4814878d26e">
394
+ <source>Snap to grid</source>
395
+ <target>Ajustar a la cuadrícula</target>
396
+ </trans-unit>
397
+ <trans-unit id="s5c8e286841ccfd0e">
398
+ <source>Grid columns</source>
399
+ <target>Columnas de la cuadrícula</target>
400
+ </trans-unit>
401
+ <trans-unit id="s96d2f1dc180a46d8">
402
+ <source>Debug</source>
403
+ <target>Depurar</target>
404
+ </trans-unit>
405
+ </body>
406
+ </file>
407
+ </xliff>