@webwriter/quiz 1.0.10 → 1.1.2

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 (104) hide show
  1. package/LICENSE +6 -6
  2. package/custom.d.ts +175 -175
  3. package/dist/widgets/webwriter-choice-item.js +10 -7
  4. package/dist/widgets/webwriter-choice.js +36 -6
  5. package/dist/widgets/webwriter-order-item.js +14 -12
  6. package/dist/widgets/webwriter-order.js +28 -4
  7. package/dist/widgets/webwriter-quiz.js +1 -1
  8. package/dist/widgets/webwriter-task.js +0 -1
  9. package/dist/widgets/webwriter-text.js +26 -9
  10. package/lit-localize.json +14 -14
  11. package/localization/bg.xlf +69 -69
  12. package/localization/cs.xlf +69 -69
  13. package/localization/da.xlf +69 -69
  14. package/localization/de.xlf +74 -74
  15. package/localization/el.xlf +69 -69
  16. package/localization/es.xlf +69 -69
  17. package/localization/et.xlf +69 -69
  18. package/localization/fi.xlf +69 -69
  19. package/localization/fr.xlf +69 -69
  20. package/localization/generated/bg.ts +29 -29
  21. package/localization/generated/cs.ts +29 -29
  22. package/localization/generated/da.ts +29 -29
  23. package/localization/generated/de.ts +29 -29
  24. package/localization/generated/el.ts +29 -29
  25. package/localization/generated/es.ts +29 -29
  26. package/localization/generated/et.ts +29 -29
  27. package/localization/generated/fi.ts +29 -29
  28. package/localization/generated/fr.ts +29 -29
  29. package/localization/generated/hu.ts +29 -29
  30. package/localization/generated/id.ts +29 -29
  31. package/localization/generated/index.js +2 -2
  32. package/localization/generated/it.ts +29 -29
  33. package/localization/generated/ja.ts +29 -29
  34. package/localization/generated/ko.ts +29 -29
  35. package/localization/generated/locale-codes.js +79 -79
  36. package/localization/generated/lt.ts +29 -29
  37. package/localization/generated/lv.ts +29 -29
  38. package/localization/generated/nb.ts +29 -29
  39. package/localization/generated/nl.ts +29 -29
  40. package/localization/generated/pl.ts +29 -29
  41. package/localization/generated/pt-BR.ts +29 -29
  42. package/localization/generated/pt-PT.ts +29 -29
  43. package/localization/generated/ro.ts +29 -29
  44. package/localization/generated/ru.ts +29 -29
  45. package/localization/generated/sk.ts +29 -29
  46. package/localization/generated/sl.ts +29 -29
  47. package/localization/generated/sv.ts +29 -29
  48. package/localization/generated/tr.ts +29 -29
  49. package/localization/generated/uk.ts +29 -29
  50. package/localization/generated/zh-hans.ts +29 -29
  51. package/localization/hu.xlf +69 -69
  52. package/localization/id.xlf +69 -69
  53. package/localization/it.xlf +69 -69
  54. package/localization/ja.xlf +69 -69
  55. package/localization/ko.xlf +69 -69
  56. package/localization/lt.xlf +69 -69
  57. package/localization/lv.xlf +69 -69
  58. package/localization/nb.xlf +69 -69
  59. package/localization/nl.xlf +69 -69
  60. package/localization/pl.xlf +69 -69
  61. package/localization/pt-BR.xlf +69 -69
  62. package/localization/pt-PT.xlf +69 -69
  63. package/localization/ro.xlf +69 -69
  64. package/localization/ru.xlf +69 -69
  65. package/localization/sk.xlf +69 -69
  66. package/localization/sl.xlf +69 -69
  67. package/localization/sv.xlf +69 -69
  68. package/localization/tr.xlf +69 -69
  69. package/localization/uk.xlf +69 -69
  70. package/localization/zh-hans.xlf +69 -69
  71. package/package.json +7 -2
  72. package/src/lib/combobox.ts +455 -455
  73. package/src/lib/highlighter-fill.svg +5 -5
  74. package/src/snippets/Beispiel-Choice.html +57 -57
  75. package/src/snippets/Beispiel-Mark.html +13 -13
  76. package/src/snippets/Beispiel-Order.html +52 -52
  77. package/src/snippets/Beispiel-Text.html +20 -20
  78. package/src/snippets/blank.html +1 -0
  79. package/src/snippets/choice.html +7 -7
  80. package/src/snippets/cloze.html +3 -3
  81. package/src/snippets/mark.html +3 -3
  82. package/src/snippets/order.html +7 -7
  83. package/src/snippets/pairing.html +9 -9
  84. package/src/snippets/speech.html +3 -3
  85. package/src/snippets/text.html +3 -3
  86. package/src/snippets/wordsearch.html +3 -3
  87. package/src/widgets/webwriter-choice-item.ts +253 -250
  88. package/src/widgets/webwriter-choice.ts +336 -314
  89. package/src/widgets/webwriter-cloze-gap.ts +215 -215
  90. package/src/widgets/webwriter-cloze.ts +135 -135
  91. package/src/widgets/webwriter-mark.ts +431 -431
  92. package/src/widgets/webwriter-order-item.ts +440 -437
  93. package/src/widgets/webwriter-order.ts +309 -284
  94. package/src/widgets/webwriter-pairing-item.ts +160 -160
  95. package/src/widgets/webwriter-pairing.ts +192 -192
  96. package/src/widgets/webwriter-quiz.ts +281 -281
  97. package/src/widgets/webwriter-speech.ts +272 -272
  98. package/src/widgets/webwriter-task-explainer.ts +42 -42
  99. package/src/widgets/webwriter-task-hint.ts +22 -22
  100. package/src/widgets/webwriter-task-prompt.ts +23 -23
  101. package/src/widgets/webwriter-task.ts +546 -546
  102. package/src/widgets/webwriter-text.ts +155 -135
  103. package/tsconfig.json +6 -6
  104. package/.env +0 -1
@@ -1,30 +1,30 @@
1
-
2
- // Do not modify this file by hand!
3
- // Re-generate this file by running lit-localize
4
-
5
-
6
-
7
-
8
- /* eslint-disable no-irregular-whitespace */
9
- /* eslint-disable @typescript-eslint/no-explicit-any */
10
-
11
- export const templates = {
12
- 's159928724265eb05': `Lisa võimalus`,
13
- 's1b23c41934894f30': `Selgitus`,
14
- 's255857544a9d5ec0': `Reset`,
15
- 's4802e47fe2e95134': `Valik`,
16
- 's54393bfa280ea55b': `Prompt`,
17
- 's7254ca27b16ae2d8': `Vale`,
18
- 's80dc9f56411917df': `Teksti esiletõstmine`,
19
- 's85ea99fb52be3385': `Tõsi`,
20
- 'sb3d4f79d9d8b71e5': `Esita`,
21
- 'sc56e9323f076a11e': `Tekst, millele lisada lüngad`,
22
- 'scd1dd6ff53d0d01a': `Proovi uuesti`,
23
- 'sd26e8d4eef55e341': `Kontrollige oma vastuseid`,
24
- 'sb0aadaa04e658ad6': `Choice`,
25
- 's2ba5f4d8f3bd7c57': `Order`,
26
- 's2492f5fb1b05b45e': `Text`,
27
- 's49c940aecfef3ea0': `Mark`,
28
- 'saa3efba1f0c816b7': `Speech`,
29
- };
1
+
2
+ // Do not modify this file by hand!
3
+ // Re-generate this file by running lit-localize
4
+
5
+
6
+
7
+
8
+ /* eslint-disable no-irregular-whitespace */
9
+ /* eslint-disable @typescript-eslint/no-explicit-any */
10
+
11
+ export const templates = {
12
+ 's159928724265eb05': `Lisa võimalus`,
13
+ 's1b23c41934894f30': `Selgitus`,
14
+ 's255857544a9d5ec0': `Reset`,
15
+ 's4802e47fe2e95134': `Valik`,
16
+ 's54393bfa280ea55b': `Prompt`,
17
+ 's7254ca27b16ae2d8': `Vale`,
18
+ 's80dc9f56411917df': `Teksti esiletõstmine`,
19
+ 's85ea99fb52be3385': `Tõsi`,
20
+ 'sb3d4f79d9d8b71e5': `Esita`,
21
+ 'sc56e9323f076a11e': `Tekst, millele lisada lüngad`,
22
+ 'scd1dd6ff53d0d01a': `Proovi uuesti`,
23
+ 'sd26e8d4eef55e341': `Kontrollige oma vastuseid`,
24
+ 'sb0aadaa04e658ad6': `Choice`,
25
+ 's2ba5f4d8f3bd7c57': `Order`,
26
+ 's2492f5fb1b05b45e': `Text`,
27
+ 's49c940aecfef3ea0': `Mark`,
28
+ 'saa3efba1f0c816b7': `Speech`,
29
+ };
30
30
 
@@ -1,30 +1,30 @@
1
-
2
- // Do not modify this file by hand!
3
- // Re-generate this file by running lit-localize
4
-
5
-
6
-
7
-
8
- /* eslint-disable no-irregular-whitespace */
9
- /* eslint-disable @typescript-eslint/no-explicit-any */
10
-
11
- export const templates = {
12
- 's159928724265eb05': `Lisää vaihtoehto`,
13
- 's1b23c41934894f30': `Selitys`,
14
- 's255857544a9d5ec0': `Nollaa`,
15
- 's4802e47fe2e95134': `Vaihtoehto`,
16
- 's54393bfa280ea55b': `Kehotus`,
17
- 's7254ca27b16ae2d8': `False`,
18
- 's80dc9f56411917df': `Korostettava teksti`,
19
- 's85ea99fb52be3385': `Totta`,
20
- 'sb3d4f79d9d8b71e5': `Lähetä`,
21
- 'sc56e9323f076a11e': `Teksti, johon lisätään aukkoja`,
22
- 'scd1dd6ff53d0d01a': `Yritä uudelleen`,
23
- 'sd26e8d4eef55e341': `Tarkista vastauksesi`,
24
- 'sb0aadaa04e658ad6': `Choice`,
25
- 's2ba5f4d8f3bd7c57': `Order`,
26
- 's2492f5fb1b05b45e': `Text`,
27
- 's49c940aecfef3ea0': `Mark`,
28
- 'saa3efba1f0c816b7': `Speech`,
29
- };
1
+
2
+ // Do not modify this file by hand!
3
+ // Re-generate this file by running lit-localize
4
+
5
+
6
+
7
+
8
+ /* eslint-disable no-irregular-whitespace */
9
+ /* eslint-disable @typescript-eslint/no-explicit-any */
10
+
11
+ export const templates = {
12
+ 's159928724265eb05': `Lisää vaihtoehto`,
13
+ 's1b23c41934894f30': `Selitys`,
14
+ 's255857544a9d5ec0': `Nollaa`,
15
+ 's4802e47fe2e95134': `Vaihtoehto`,
16
+ 's54393bfa280ea55b': `Kehotus`,
17
+ 's7254ca27b16ae2d8': `False`,
18
+ 's80dc9f56411917df': `Korostettava teksti`,
19
+ 's85ea99fb52be3385': `Totta`,
20
+ 'sb3d4f79d9d8b71e5': `Lähetä`,
21
+ 'sc56e9323f076a11e': `Teksti, johon lisätään aukkoja`,
22
+ 'scd1dd6ff53d0d01a': `Yritä uudelleen`,
23
+ 'sd26e8d4eef55e341': `Tarkista vastauksesi`,
24
+ 'sb0aadaa04e658ad6': `Choice`,
25
+ 's2ba5f4d8f3bd7c57': `Order`,
26
+ 's2492f5fb1b05b45e': `Text`,
27
+ 's49c940aecfef3ea0': `Mark`,
28
+ 'saa3efba1f0c816b7': `Speech`,
29
+ };
30
30
 
@@ -1,30 +1,30 @@
1
-
2
- // Do not modify this file by hand!
3
- // Re-generate this file by running lit-localize
4
-
5
-
6
-
7
-
8
- /* eslint-disable no-irregular-whitespace */
9
- /* eslint-disable @typescript-eslint/no-explicit-any */
10
-
11
- export const templates = {
12
- 's159928724265eb05': `Ajouter une option`,
13
- 's1b23c41934894f30': `Explication`,
14
- 's255857544a9d5ec0': `Remise à zéro`,
15
- 's4802e47fe2e95134': `Option`,
16
- 's54393bfa280ea55b': `Prompt`,
17
- 's7254ca27b16ae2d8': `Faux`,
18
- 's80dc9f56411917df': `Texte à mettre en évidence`,
19
- 's85ea99fb52be3385': `Vrai`,
20
- 'sb3d4f79d9d8b71e5': `Soumettre`,
21
- 'sc56e9323f076a11e': `Texte à ajouter aux lacunes`,
22
- 'scd1dd6ff53d0d01a': `Réessayer`,
23
- 'sd26e8d4eef55e341': `Vérifiez vos réponses`,
24
- 'sb0aadaa04e658ad6': `Choice`,
25
- 's2ba5f4d8f3bd7c57': `Order`,
26
- 's2492f5fb1b05b45e': `Text`,
27
- 's49c940aecfef3ea0': `Mark`,
28
- 'saa3efba1f0c816b7': `Speech`,
29
- };
1
+
2
+ // Do not modify this file by hand!
3
+ // Re-generate this file by running lit-localize
4
+
5
+
6
+
7
+
8
+ /* eslint-disable no-irregular-whitespace */
9
+ /* eslint-disable @typescript-eslint/no-explicit-any */
10
+
11
+ export const templates = {
12
+ 's159928724265eb05': `Ajouter une option`,
13
+ 's1b23c41934894f30': `Explication`,
14
+ 's255857544a9d5ec0': `Remise à zéro`,
15
+ 's4802e47fe2e95134': `Option`,
16
+ 's54393bfa280ea55b': `Prompt`,
17
+ 's7254ca27b16ae2d8': `Faux`,
18
+ 's80dc9f56411917df': `Texte à mettre en évidence`,
19
+ 's85ea99fb52be3385': `Vrai`,
20
+ 'sb3d4f79d9d8b71e5': `Soumettre`,
21
+ 'sc56e9323f076a11e': `Texte à ajouter aux lacunes`,
22
+ 'scd1dd6ff53d0d01a': `Réessayer`,
23
+ 'sd26e8d4eef55e341': `Vérifiez vos réponses`,
24
+ 'sb0aadaa04e658ad6': `Choice`,
25
+ 's2ba5f4d8f3bd7c57': `Order`,
26
+ 's2492f5fb1b05b45e': `Text`,
27
+ 's49c940aecfef3ea0': `Mark`,
28
+ 'saa3efba1f0c816b7': `Speech`,
29
+ };
30
30
 
@@ -1,30 +1,30 @@
1
-
2
- // Do not modify this file by hand!
3
- // Re-generate this file by running lit-localize
4
-
5
-
6
-
7
-
8
- /* eslint-disable no-irregular-whitespace */
9
- /* eslint-disable @typescript-eslint/no-explicit-any */
10
-
11
- export const templates = {
12
- 's159928724265eb05': `Opció hozzáadása`,
13
- 's1b23c41934894f30': `Magyarázat`,
14
- 's255857544a9d5ec0': `Reset`,
15
- 's4802e47fe2e95134': `Opció`,
16
- 's54393bfa280ea55b': `Prompt`,
17
- 's7254ca27b16ae2d8': `Hamis`,
18
- 's80dc9f56411917df': `Kiemelendő szöveg`,
19
- 's85ea99fb52be3385': `Igaz`,
20
- 'sb3d4f79d9d8b71e5': `Küldje be a`,
21
- 'sc56e9323f076a11e': `Hézagok hozzáadására szolgáló szöveg`,
22
- 'scd1dd6ff53d0d01a': `Próbálja újra`,
23
- 'sd26e8d4eef55e341': `Ellenőrizze válaszait`,
24
- 'sb0aadaa04e658ad6': `Choice`,
25
- 's2ba5f4d8f3bd7c57': `Order`,
26
- 's2492f5fb1b05b45e': `Text`,
27
- 's49c940aecfef3ea0': `Mark`,
28
- 'saa3efba1f0c816b7': `Speech`,
29
- };
1
+
2
+ // Do not modify this file by hand!
3
+ // Re-generate this file by running lit-localize
4
+
5
+
6
+
7
+
8
+ /* eslint-disable no-irregular-whitespace */
9
+ /* eslint-disable @typescript-eslint/no-explicit-any */
10
+
11
+ export const templates = {
12
+ 's159928724265eb05': `Opció hozzáadása`,
13
+ 's1b23c41934894f30': `Magyarázat`,
14
+ 's255857544a9d5ec0': `Reset`,
15
+ 's4802e47fe2e95134': `Opció`,
16
+ 's54393bfa280ea55b': `Prompt`,
17
+ 's7254ca27b16ae2d8': `Hamis`,
18
+ 's80dc9f56411917df': `Kiemelendő szöveg`,
19
+ 's85ea99fb52be3385': `Igaz`,
20
+ 'sb3d4f79d9d8b71e5': `Küldje be a`,
21
+ 'sc56e9323f076a11e': `Hézagok hozzáadására szolgáló szöveg`,
22
+ 'scd1dd6ff53d0d01a': `Próbálja újra`,
23
+ 'sd26e8d4eef55e341': `Ellenőrizze válaszait`,
24
+ 'sb0aadaa04e658ad6': `Choice`,
25
+ 's2ba5f4d8f3bd7c57': `Order`,
26
+ 's2492f5fb1b05b45e': `Text`,
27
+ 's49c940aecfef3ea0': `Mark`,
28
+ 'saa3efba1f0c816b7': `Speech`,
29
+ };
30
30
 
@@ -1,30 +1,30 @@
1
-
2
- // Do not modify this file by hand!
3
- // Re-generate this file by running lit-localize
4
-
5
-
6
-
7
-
8
- /* eslint-disable no-irregular-whitespace */
9
- /* eslint-disable @typescript-eslint/no-explicit-any */
10
-
11
- export const templates = {
12
- 's159928724265eb05': `Tambahkan Opsi`,
13
- 's1b23c41934894f30': `Penjelasan`,
14
- 's255857544a9d5ec0': `Atur ulang`,
15
- 's4802e47fe2e95134': `Opsi`,
16
- 's54393bfa280ea55b': `Cepat`,
17
- 's7254ca27b16ae2d8': `Salah`,
18
- 's80dc9f56411917df': `Teks untuk Disorot`,
19
- 's85ea99fb52be3385': `Benar`,
20
- 'sb3d4f79d9d8b71e5': `Kirim`,
21
- 'sc56e9323f076a11e': `Teks yang akan ditambahkan celah`,
22
- 'scd1dd6ff53d0d01a': `Coba lagi`,
23
- 'sd26e8d4eef55e341': `Periksa jawaban Anda`,
24
- 'sb0aadaa04e658ad6': `Choice`,
25
- 's2ba5f4d8f3bd7c57': `Order`,
26
- 's2492f5fb1b05b45e': `Text`,
27
- 's49c940aecfef3ea0': `Mark`,
28
- 'saa3efba1f0c816b7': `Speech`,
29
- };
1
+
2
+ // Do not modify this file by hand!
3
+ // Re-generate this file by running lit-localize
4
+
5
+
6
+
7
+
8
+ /* eslint-disable no-irregular-whitespace */
9
+ /* eslint-disable @typescript-eslint/no-explicit-any */
10
+
11
+ export const templates = {
12
+ 's159928724265eb05': `Tambahkan Opsi`,
13
+ 's1b23c41934894f30': `Penjelasan`,
14
+ 's255857544a9d5ec0': `Atur ulang`,
15
+ 's4802e47fe2e95134': `Opsi`,
16
+ 's54393bfa280ea55b': `Cepat`,
17
+ 's7254ca27b16ae2d8': `Salah`,
18
+ 's80dc9f56411917df': `Teks untuk Disorot`,
19
+ 's85ea99fb52be3385': `Benar`,
20
+ 'sb3d4f79d9d8b71e5': `Kirim`,
21
+ 'sc56e9323f076a11e': `Teks yang akan ditambahkan celah`,
22
+ 'scd1dd6ff53d0d01a': `Coba lagi`,
23
+ 'sd26e8d4eef55e341': `Periksa jawaban Anda`,
24
+ 'sb0aadaa04e658ad6': `Choice`,
25
+ 's2ba5f4d8f3bd7c57': `Order`,
26
+ 's2492f5fb1b05b45e': `Text`,
27
+ 's49c940aecfef3ea0': `Mark`,
28
+ 'saa3efba1f0c816b7': `Speech`,
29
+ };
30
30
 
@@ -1,3 +1,3 @@
1
- import {sourceLocale, targetLocales} from './locale-codes.js';
2
- import {configureLocalization} from '@lit/localize';
1
+ import {sourceLocale, targetLocales} from './locale-codes.js';
2
+ import {configureLocalization} from '@lit/localize';
3
3
  export default configureLocalization({sourceLocale, targetLocales, loadLocale: (locale) => import(`./${locale}.ts`)});
@@ -1,30 +1,30 @@
1
-
2
- // Do not modify this file by hand!
3
- // Re-generate this file by running lit-localize
4
-
5
-
6
-
7
-
8
- /* eslint-disable no-irregular-whitespace */
9
- /* eslint-disable @typescript-eslint/no-explicit-any */
10
-
11
- export const templates = {
12
- 's159928724265eb05': `Aggiungi opzione`,
13
- 's1b23c41934894f30': `Spiegazione`,
14
- 's255857544a9d5ec0': `Reset`,
15
- 's4802e47fe2e95134': `Opzione`,
16
- 's54393bfa280ea55b': `Prompt`,
17
- 's7254ca27b16ae2d8': `Falso`,
18
- 's80dc9f56411917df': `Testo da evidenziare`,
19
- 's85ea99fb52be3385': `Vero`,
20
- 'sb3d4f79d9d8b71e5': `Invia`,
21
- 'sc56e9323f076a11e': `Testo a cui aggiungere spazi vuoti`,
22
- 'scd1dd6ff53d0d01a': `Riprova`,
23
- 'sd26e8d4eef55e341': `Controllare le risposte`,
24
- 'sb0aadaa04e658ad6': `Choice`,
25
- 's2ba5f4d8f3bd7c57': `Order`,
26
- 's2492f5fb1b05b45e': `Text`,
27
- 's49c940aecfef3ea0': `Mark`,
28
- 'saa3efba1f0c816b7': `Speech`,
29
- };
1
+
2
+ // Do not modify this file by hand!
3
+ // Re-generate this file by running lit-localize
4
+
5
+
6
+
7
+
8
+ /* eslint-disable no-irregular-whitespace */
9
+ /* eslint-disable @typescript-eslint/no-explicit-any */
10
+
11
+ export const templates = {
12
+ 's159928724265eb05': `Aggiungi opzione`,
13
+ 's1b23c41934894f30': `Spiegazione`,
14
+ 's255857544a9d5ec0': `Reset`,
15
+ 's4802e47fe2e95134': `Opzione`,
16
+ 's54393bfa280ea55b': `Prompt`,
17
+ 's7254ca27b16ae2d8': `Falso`,
18
+ 's80dc9f56411917df': `Testo da evidenziare`,
19
+ 's85ea99fb52be3385': `Vero`,
20
+ 'sb3d4f79d9d8b71e5': `Invia`,
21
+ 'sc56e9323f076a11e': `Testo a cui aggiungere spazi vuoti`,
22
+ 'scd1dd6ff53d0d01a': `Riprova`,
23
+ 'sd26e8d4eef55e341': `Controllare le risposte`,
24
+ 'sb0aadaa04e658ad6': `Choice`,
25
+ 's2ba5f4d8f3bd7c57': `Order`,
26
+ 's2492f5fb1b05b45e': `Text`,
27
+ 's49c940aecfef3ea0': `Mark`,
28
+ 'saa3efba1f0c816b7': `Speech`,
29
+ };
30
30
 
@@ -1,30 +1,30 @@
1
-
2
- // Do not modify this file by hand!
3
- // Re-generate this file by running lit-localize
4
-
5
-
6
-
7
-
8
- /* eslint-disable no-irregular-whitespace */
9
- /* eslint-disable @typescript-eslint/no-explicit-any */
10
-
11
- export const templates = {
12
- 's159928724265eb05': `オプション追加`,
13
- 's1b23c41934894f30': `説明`,
14
- 's255857544a9d5ec0': `リセット`,
15
- 's4802e47fe2e95134': `オプション`,
16
- 's54393bfa280ea55b': `プロンプト`,
17
- 's7254ca27b16ae2d8': `偽`,
18
- 's80dc9f56411917df': `ハイライトするテキスト`,
19
- 's85ea99fb52be3385': `真`,
20
- 'sb3d4f79d9d8b71e5': `投稿する`,
21
- 'sc56e9323f076a11e': `ギャップを追加するテキスト`,
22
- 'scd1dd6ff53d0d01a': `再試行`,
23
- 'sd26e8d4eef55e341': `答えをチェックする`,
24
- 'sb0aadaa04e658ad6': `Choice`,
25
- 's2ba5f4d8f3bd7c57': `Order`,
26
- 's2492f5fb1b05b45e': `Text`,
27
- 's49c940aecfef3ea0': `Mark`,
28
- 'saa3efba1f0c816b7': `Speech`,
29
- };
1
+
2
+ // Do not modify this file by hand!
3
+ // Re-generate this file by running lit-localize
4
+
5
+
6
+
7
+
8
+ /* eslint-disable no-irregular-whitespace */
9
+ /* eslint-disable @typescript-eslint/no-explicit-any */
10
+
11
+ export const templates = {
12
+ 's159928724265eb05': `オプション追加`,
13
+ 's1b23c41934894f30': `説明`,
14
+ 's255857544a9d5ec0': `リセット`,
15
+ 's4802e47fe2e95134': `オプション`,
16
+ 's54393bfa280ea55b': `プロンプト`,
17
+ 's7254ca27b16ae2d8': `偽`,
18
+ 's80dc9f56411917df': `ハイライトするテキスト`,
19
+ 's85ea99fb52be3385': `真`,
20
+ 'sb3d4f79d9d8b71e5': `投稿する`,
21
+ 'sc56e9323f076a11e': `ギャップを追加するテキスト`,
22
+ 'scd1dd6ff53d0d01a': `再試行`,
23
+ 'sd26e8d4eef55e341': `答えをチェックする`,
24
+ 'sb0aadaa04e658ad6': `Choice`,
25
+ 's2ba5f4d8f3bd7c57': `Order`,
26
+ 's2492f5fb1b05b45e': `Text`,
27
+ 's49c940aecfef3ea0': `Mark`,
28
+ 'saa3efba1f0c816b7': `Speech`,
29
+ };
30
30
 
@@ -1,30 +1,30 @@
1
-
2
- // Do not modify this file by hand!
3
- // Re-generate this file by running lit-localize
4
-
5
-
6
-
7
-
8
- /* eslint-disable no-irregular-whitespace */
9
- /* eslint-disable @typescript-eslint/no-explicit-any */
10
-
11
- export const templates = {
12
- 's159928724265eb05': `옵션 추가`,
13
- 's1b23c41934894f30': `설명`,
14
- 's255857544a9d5ec0': `초기화`,
15
- 's4802e47fe2e95134': `옵션`,
16
- 's54393bfa280ea55b': `프롬프트`,
17
- 's7254ca27b16ae2d8': `False`,
18
- 's80dc9f56411917df': `강조 표시할 텍스트`,
19
- 's85ea99fb52be3385': `True`,
20
- 'sb3d4f79d9d8b71e5': `제출하기`,
21
- 'sc56e9323f076a11e': `공백을 추가할 텍스트`,
22
- 'scd1dd6ff53d0d01a': `다시 시도`,
23
- 'sd26e8d4eef55e341': `답변 확인`,
24
- 'sb0aadaa04e658ad6': `Choice`,
25
- 's2ba5f4d8f3bd7c57': `Order`,
26
- 's2492f5fb1b05b45e': `Text`,
27
- 's49c940aecfef3ea0': `Mark`,
28
- 'saa3efba1f0c816b7': `Speech`,
29
- };
1
+
2
+ // Do not modify this file by hand!
3
+ // Re-generate this file by running lit-localize
4
+
5
+
6
+
7
+
8
+ /* eslint-disable no-irregular-whitespace */
9
+ /* eslint-disable @typescript-eslint/no-explicit-any */
10
+
11
+ export const templates = {
12
+ 's159928724265eb05': `옵션 추가`,
13
+ 's1b23c41934894f30': `설명`,
14
+ 's255857544a9d5ec0': `초기화`,
15
+ 's4802e47fe2e95134': `옵션`,
16
+ 's54393bfa280ea55b': `프롬프트`,
17
+ 's7254ca27b16ae2d8': `False`,
18
+ 's80dc9f56411917df': `강조 표시할 텍스트`,
19
+ 's85ea99fb52be3385': `True`,
20
+ 'sb3d4f79d9d8b71e5': `제출하기`,
21
+ 'sc56e9323f076a11e': `공백을 추가할 텍스트`,
22
+ 'scd1dd6ff53d0d01a': `다시 시도`,
23
+ 'sd26e8d4eef55e341': `답변 확인`,
24
+ 'sb0aadaa04e658ad6': `Choice`,
25
+ 's2ba5f4d8f3bd7c57': `Order`,
26
+ 's2492f5fb1b05b45e': `Text`,
27
+ 's49c940aecfef3ea0': `Mark`,
28
+ 'saa3efba1f0c816b7': `Speech`,
29
+ };
30
30
 
@@ -1,79 +1,79 @@
1
- // Do not modify this file by hand!
2
- // Re-generate this file by running lit-localize.
3
-
4
- /**
5
- * The locale code that templates in this source code are written in.
6
- */
7
- export const sourceLocale = `en`;
8
-
9
- /**
10
- * The other locale codes that this application is localized into. Sorted
11
- * lexicographically.
12
- */
13
- export const targetLocales = [
14
- `bg`,
15
- `cs`,
16
- `da`,
17
- `de`,
18
- `el`,
19
- `es`,
20
- `et`,
21
- `fi`,
22
- `fr`,
23
- `hu`,
24
- `id`,
25
- `it`,
26
- `ja`,
27
- `ko`,
28
- `lt`,
29
- `lv`,
30
- `nb`,
31
- `nl`,
32
- `pl`,
33
- `pt-BR`,
34
- `pt-PT`,
35
- `ro`,
36
- `ru`,
37
- `sk`,
38
- `sl`,
39
- `sv`,
40
- `tr`,
41
- `uk`,
42
- `zh-hans`,
43
- ];
44
-
45
- /**
46
- * All valid project locale codes. Sorted lexicographically.
47
- */
48
- export const allLocales = [
49
- `bg`,
50
- `cs`,
51
- `da`,
52
- `de`,
53
- `el`,
54
- `en`,
55
- `es`,
56
- `et`,
57
- `fi`,
58
- `fr`,
59
- `hu`,
60
- `id`,
61
- `it`,
62
- `ja`,
63
- `ko`,
64
- `lt`,
65
- `lv`,
66
- `nb`,
67
- `nl`,
68
- `pl`,
69
- `pt-BR`,
70
- `pt-PT`,
71
- `ro`,
72
- `ru`,
73
- `sk`,
74
- `sl`,
75
- `sv`,
76
- `tr`,
77
- `uk`,
78
- `zh-hans`,
79
- ];
1
+ // Do not modify this file by hand!
2
+ // Re-generate this file by running lit-localize.
3
+
4
+ /**
5
+ * The locale code that templates in this source code are written in.
6
+ */
7
+ export const sourceLocale = `en`;
8
+
9
+ /**
10
+ * The other locale codes that this application is localized into. Sorted
11
+ * lexicographically.
12
+ */
13
+ export const targetLocales = [
14
+ `bg`,
15
+ `cs`,
16
+ `da`,
17
+ `de`,
18
+ `el`,
19
+ `es`,
20
+ `et`,
21
+ `fi`,
22
+ `fr`,
23
+ `hu`,
24
+ `id`,
25
+ `it`,
26
+ `ja`,
27
+ `ko`,
28
+ `lt`,
29
+ `lv`,
30
+ `nb`,
31
+ `nl`,
32
+ `pl`,
33
+ `pt-BR`,
34
+ `pt-PT`,
35
+ `ro`,
36
+ `ru`,
37
+ `sk`,
38
+ `sl`,
39
+ `sv`,
40
+ `tr`,
41
+ `uk`,
42
+ `zh-hans`,
43
+ ];
44
+
45
+ /**
46
+ * All valid project locale codes. Sorted lexicographically.
47
+ */
48
+ export const allLocales = [
49
+ `bg`,
50
+ `cs`,
51
+ `da`,
52
+ `de`,
53
+ `el`,
54
+ `en`,
55
+ `es`,
56
+ `et`,
57
+ `fi`,
58
+ `fr`,
59
+ `hu`,
60
+ `id`,
61
+ `it`,
62
+ `ja`,
63
+ `ko`,
64
+ `lt`,
65
+ `lv`,
66
+ `nb`,
67
+ `nl`,
68
+ `pl`,
69
+ `pt-BR`,
70
+ `pt-PT`,
71
+ `ro`,
72
+ `ru`,
73
+ `sk`,
74
+ `sl`,
75
+ `sv`,
76
+ `tr`,
77
+ `uk`,
78
+ `zh-hans`,
79
+ ];