@webwriter/quiz 1.0.8 → 1.0.10

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 (112) hide show
  1. package/.env +1 -0
  2. package/LICENSE +6 -6
  3. package/custom.d.ts +175 -175
  4. package/dist/widgets/webwriter-choice-item.js +174 -29
  5. package/dist/widgets/webwriter-choice.js +174 -29
  6. package/dist/widgets/webwriter-cloze-gap.js +174 -29
  7. package/dist/widgets/webwriter-cloze.js +174 -29
  8. package/dist/widgets/webwriter-mark.js +174 -29
  9. package/dist/widgets/webwriter-order-item.js +174 -29
  10. package/dist/widgets/webwriter-order.js +174 -29
  11. package/dist/widgets/webwriter-pairing-item.js +174 -29
  12. package/dist/widgets/webwriter-pairing.js +174 -29
  13. package/dist/widgets/webwriter-quiz.js +174 -29
  14. package/dist/widgets/webwriter-speech.js +174 -29
  15. package/dist/widgets/webwriter-task-explainer.js +174 -29
  16. package/dist/widgets/webwriter-task-hint.js +174 -29
  17. package/dist/widgets/webwriter-task-prompt.js +174 -29
  18. package/dist/widgets/webwriter-task.js +176 -31
  19. package/dist/widgets/webwriter-text.js +174 -29
  20. package/lit-localize.json +14 -14
  21. package/localization/bg.xlf +69 -54
  22. package/localization/cs.xlf +69 -54
  23. package/localization/da.xlf +69 -54
  24. package/localization/de.xlf +74 -54
  25. package/localization/el.xlf +69 -54
  26. package/localization/es.xlf +69 -54
  27. package/localization/et.xlf +69 -54
  28. package/localization/fi.xlf +69 -54
  29. package/localization/fr.xlf +69 -54
  30. package/localization/generated/bg.ts +29 -24
  31. package/localization/generated/cs.ts +29 -24
  32. package/localization/generated/da.ts +29 -24
  33. package/localization/generated/de.ts +29 -24
  34. package/localization/generated/el.ts +29 -24
  35. package/localization/generated/es.ts +29 -24
  36. package/localization/generated/et.ts +29 -24
  37. package/localization/generated/fi.ts +29 -24
  38. package/localization/generated/fr.ts +29 -24
  39. package/localization/generated/hu.ts +29 -24
  40. package/localization/generated/id.ts +29 -24
  41. package/localization/generated/index.js +2 -2
  42. package/localization/generated/it.ts +29 -24
  43. package/localization/generated/ja.ts +29 -24
  44. package/localization/generated/ko.ts +29 -24
  45. package/localization/generated/locale-codes.js +79 -79
  46. package/localization/generated/lt.ts +29 -24
  47. package/localization/generated/lv.ts +29 -24
  48. package/localization/generated/nb.ts +29 -24
  49. package/localization/generated/nl.ts +29 -24
  50. package/localization/generated/pl.ts +29 -24
  51. package/localization/generated/pt-BR.ts +29 -24
  52. package/localization/generated/pt-PT.ts +29 -24
  53. package/localization/generated/ro.ts +29 -24
  54. package/localization/generated/ru.ts +29 -24
  55. package/localization/generated/sk.ts +29 -24
  56. package/localization/generated/sl.ts +29 -24
  57. package/localization/generated/sv.ts +29 -24
  58. package/localization/generated/tr.ts +29 -24
  59. package/localization/generated/uk.ts +29 -24
  60. package/localization/generated/zh-hans.ts +29 -24
  61. package/localization/hu.xlf +69 -54
  62. package/localization/id.xlf +69 -54
  63. package/localization/it.xlf +69 -54
  64. package/localization/ja.xlf +69 -54
  65. package/localization/ko.xlf +69 -54
  66. package/localization/lt.xlf +69 -54
  67. package/localization/lv.xlf +69 -54
  68. package/localization/nb.xlf +69 -54
  69. package/localization/nl.xlf +69 -54
  70. package/localization/pl.xlf +69 -54
  71. package/localization/pt-BR.xlf +69 -54
  72. package/localization/pt-PT.xlf +69 -54
  73. package/localization/ro.xlf +69 -54
  74. package/localization/ru.xlf +69 -54
  75. package/localization/sk.xlf +69 -54
  76. package/localization/sl.xlf +69 -54
  77. package/localization/sv.xlf +69 -54
  78. package/localization/tr.xlf +69 -54
  79. package/localization/uk.xlf +69 -54
  80. package/localization/zh-hans.xlf +69 -54
  81. package/package.json +4 -43
  82. package/src/lib/combobox.ts +455 -455
  83. package/src/lib/highlighter-fill.svg +5 -5
  84. package/src/snippets/Beispiel-Choice.html +57 -57
  85. package/src/snippets/Beispiel-Mark.html +13 -13
  86. package/src/snippets/Beispiel-Order.html +52 -52
  87. package/src/snippets/Beispiel-Text.html +20 -20
  88. package/src/snippets/choice.html +7 -7
  89. package/src/snippets/cloze.html +3 -3
  90. package/src/snippets/mark.html +3 -3
  91. package/src/snippets/order.html +7 -7
  92. package/src/snippets/pairing.html +9 -9
  93. package/src/snippets/speech.html +3 -3
  94. package/src/snippets/text.html +3 -3
  95. package/src/snippets/wordsearch.html +3 -3
  96. package/src/widgets/webwriter-choice-item.ts +250 -250
  97. package/src/widgets/webwriter-choice.ts +314 -314
  98. package/src/widgets/webwriter-cloze-gap.ts +215 -215
  99. package/src/widgets/webwriter-cloze.ts +135 -135
  100. package/src/widgets/webwriter-mark.ts +431 -431
  101. package/src/widgets/webwriter-order-item.ts +437 -437
  102. package/src/widgets/webwriter-order.ts +284 -284
  103. package/src/widgets/webwriter-pairing-item.ts +160 -160
  104. package/src/widgets/webwriter-pairing.ts +192 -192
  105. package/src/widgets/webwriter-quiz.ts +281 -281
  106. package/src/widgets/webwriter-speech.ts +272 -272
  107. package/src/widgets/webwriter-task-explainer.ts +42 -42
  108. package/src/widgets/webwriter-task-hint.ts +22 -22
  109. package/src/widgets/webwriter-task-prompt.ts +23 -23
  110. package/src/widgets/webwriter-task.ts +546 -546
  111. package/src/widgets/webwriter-text.ts +135 -135
  112. package/tsconfig.json +6 -6
@@ -1,54 +1,69 @@
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="et">
3
- <body>
4
- <trans-unit id="s4802e47fe2e95134">
5
- <source>Option</source>
6
- <target>Valik</target>
7
- </trans-unit>
8
- <trans-unit id="s85ea99fb52be3385">
9
- <source>True</source>
10
- <target>Tõsi</target>
11
- </trans-unit>
12
- <trans-unit id="s7254ca27b16ae2d8">
13
- <source>False</source>
14
- <target>Vale</target>
15
- </trans-unit>
16
- <trans-unit id="s159928724265eb05">
17
- <source>Add Option</source>
18
- <target>Lisa võimalus</target>
19
- </trans-unit>
20
- <trans-unit id="sc56e9323f076a11e">
21
- <source>Text to add gaps to</source>
22
- <target>Tekst, millele lisada lüngad</target>
23
- </trans-unit>
24
- <trans-unit id="s80dc9f56411917df">
25
- <source>Text to Highlight</source>
26
- <target>Teksti esiletõstmine</target>
27
- </trans-unit>
28
- <trans-unit id="s1b23c41934894f30">
29
- <source>Explanation</source>
30
- <target>Selgitus</target>
31
- </trans-unit>
32
- <trans-unit id="sd26e8d4eef55e341">
33
- <source>Check your answers</source>
34
- <target>Kontrollige oma vastuseid</target>
35
- </trans-unit>
36
- <trans-unit id="scd1dd6ff53d0d01a">
37
- <source>Try again</source>
38
- <target>Proovi uuesti</target>
39
- </trans-unit>
40
- <trans-unit id="sb3d4f79d9d8b71e5">
41
- <source>Submit</source>
42
- <target>Esita</target>
43
- </trans-unit>
44
- <trans-unit id="s255857544a9d5ec0">
45
- <source>Reset</source>
46
- <target>Reset</target>
47
- </trans-unit>
48
- <trans-unit id="s54393bfa280ea55b">
49
- <source>Prompt</source>
50
- <target>Prompt</target>
51
- </trans-unit>
52
- </body>
53
- </file>
54
- </xliff>
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="et">
3
+ <body>
4
+ <trans-unit id="s4802e47fe2e95134">
5
+ <source>Option</source>
6
+ <target>Valik</target>
7
+ </trans-unit>
8
+ <trans-unit id="s85ea99fb52be3385">
9
+ <source>True</source>
10
+ <target>Tõsi</target>
11
+ </trans-unit>
12
+ <trans-unit id="s7254ca27b16ae2d8">
13
+ <source>False</source>
14
+ <target>Vale</target>
15
+ </trans-unit>
16
+ <trans-unit id="s159928724265eb05">
17
+ <source>Add Option</source>
18
+ <target>Lisa võimalus</target>
19
+ </trans-unit>
20
+ <trans-unit id="sc56e9323f076a11e">
21
+ <source>Text to add gaps to</source>
22
+ <target>Tekst, millele lisada lüngad</target>
23
+ </trans-unit>
24
+ <trans-unit id="s80dc9f56411917df">
25
+ <source>Text to Highlight</source>
26
+ <target>Teksti esiletõstmine</target>
27
+ </trans-unit>
28
+ <trans-unit id="s1b23c41934894f30">
29
+ <source>Explanation</source>
30
+ <target>Selgitus</target>
31
+ </trans-unit>
32
+ <trans-unit id="sd26e8d4eef55e341">
33
+ <source>Check your answers</source>
34
+ <target>Kontrollige oma vastuseid</target>
35
+ </trans-unit>
36
+ <trans-unit id="scd1dd6ff53d0d01a">
37
+ <source>Try again</source>
38
+ <target>Proovi uuesti</target>
39
+ </trans-unit>
40
+ <trans-unit id="sb3d4f79d9d8b71e5">
41
+ <source>Submit</source>
42
+ <target>Esita</target>
43
+ </trans-unit>
44
+ <trans-unit id="s255857544a9d5ec0">
45
+ <source>Reset</source>
46
+ <target>Reset</target>
47
+ </trans-unit>
48
+ <trans-unit id="s54393bfa280ea55b">
49
+ <source>Prompt</source>
50
+ <target>Prompt</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,54 +1,69 @@
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="fi">
3
- <body>
4
- <trans-unit id="s4802e47fe2e95134">
5
- <source>Option</source>
6
- <target>Vaihtoehto</target>
7
- </trans-unit>
8
- <trans-unit id="s85ea99fb52be3385">
9
- <source>True</source>
10
- <target>Totta</target>
11
- </trans-unit>
12
- <trans-unit id="s7254ca27b16ae2d8">
13
- <source>False</source>
14
- <target>False</target>
15
- </trans-unit>
16
- <trans-unit id="s159928724265eb05">
17
- <source>Add Option</source>
18
- <target>Lisää vaihtoehto</target>
19
- </trans-unit>
20
- <trans-unit id="sc56e9323f076a11e">
21
- <source>Text to add gaps to</source>
22
- <target>Teksti, johon lisätään aukkoja</target>
23
- </trans-unit>
24
- <trans-unit id="s80dc9f56411917df">
25
- <source>Text to Highlight</source>
26
- <target>Korostettava teksti</target>
27
- </trans-unit>
28
- <trans-unit id="s1b23c41934894f30">
29
- <source>Explanation</source>
30
- <target>Selitys</target>
31
- </trans-unit>
32
- <trans-unit id="sd26e8d4eef55e341">
33
- <source>Check your answers</source>
34
- <target>Tarkista vastauksesi</target>
35
- </trans-unit>
36
- <trans-unit id="scd1dd6ff53d0d01a">
37
- <source>Try again</source>
38
- <target>Yritä uudelleen</target>
39
- </trans-unit>
40
- <trans-unit id="sb3d4f79d9d8b71e5">
41
- <source>Submit</source>
42
- <target>Lähetä</target>
43
- </trans-unit>
44
- <trans-unit id="s255857544a9d5ec0">
45
- <source>Reset</source>
46
- <target>Nollaa</target>
47
- </trans-unit>
48
- <trans-unit id="s54393bfa280ea55b">
49
- <source>Prompt</source>
50
- <target>Kehotus</target>
51
- </trans-unit>
52
- </body>
53
- </file>
54
- </xliff>
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="fi">
3
+ <body>
4
+ <trans-unit id="s4802e47fe2e95134">
5
+ <source>Option</source>
6
+ <target>Vaihtoehto</target>
7
+ </trans-unit>
8
+ <trans-unit id="s85ea99fb52be3385">
9
+ <source>True</source>
10
+ <target>Totta</target>
11
+ </trans-unit>
12
+ <trans-unit id="s7254ca27b16ae2d8">
13
+ <source>False</source>
14
+ <target>False</target>
15
+ </trans-unit>
16
+ <trans-unit id="s159928724265eb05">
17
+ <source>Add Option</source>
18
+ <target>Lisää vaihtoehto</target>
19
+ </trans-unit>
20
+ <trans-unit id="sc56e9323f076a11e">
21
+ <source>Text to add gaps to</source>
22
+ <target>Teksti, johon lisätään aukkoja</target>
23
+ </trans-unit>
24
+ <trans-unit id="s80dc9f56411917df">
25
+ <source>Text to Highlight</source>
26
+ <target>Korostettava teksti</target>
27
+ </trans-unit>
28
+ <trans-unit id="s1b23c41934894f30">
29
+ <source>Explanation</source>
30
+ <target>Selitys</target>
31
+ </trans-unit>
32
+ <trans-unit id="sd26e8d4eef55e341">
33
+ <source>Check your answers</source>
34
+ <target>Tarkista vastauksesi</target>
35
+ </trans-unit>
36
+ <trans-unit id="scd1dd6ff53d0d01a">
37
+ <source>Try again</source>
38
+ <target>Yritä uudelleen</target>
39
+ </trans-unit>
40
+ <trans-unit id="sb3d4f79d9d8b71e5">
41
+ <source>Submit</source>
42
+ <target>Lähetä</target>
43
+ </trans-unit>
44
+ <trans-unit id="s255857544a9d5ec0">
45
+ <source>Reset</source>
46
+ <target>Nollaa</target>
47
+ </trans-unit>
48
+ <trans-unit id="s54393bfa280ea55b">
49
+ <source>Prompt</source>
50
+ <target>Kehotus</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,54 +1,69 @@
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="fr">
3
- <body>
4
- <trans-unit id="s4802e47fe2e95134">
5
- <source>Option</source>
6
- <target>Option</target>
7
- </trans-unit>
8
- <trans-unit id="s85ea99fb52be3385">
9
- <source>True</source>
10
- <target>Vrai</target>
11
- </trans-unit>
12
- <trans-unit id="s7254ca27b16ae2d8">
13
- <source>False</source>
14
- <target>Faux</target>
15
- </trans-unit>
16
- <trans-unit id="s159928724265eb05">
17
- <source>Add Option</source>
18
- <target>Ajouter une option</target>
19
- </trans-unit>
20
- <trans-unit id="sc56e9323f076a11e">
21
- <source>Text to add gaps to</source>
22
- <target>Texte à ajouter aux lacunes</target>
23
- </trans-unit>
24
- <trans-unit id="s80dc9f56411917df">
25
- <source>Text to Highlight</source>
26
- <target>Texte à mettre en évidence</target>
27
- </trans-unit>
28
- <trans-unit id="s1b23c41934894f30">
29
- <source>Explanation</source>
30
- <target>Explication</target>
31
- </trans-unit>
32
- <trans-unit id="sd26e8d4eef55e341">
33
- <source>Check your answers</source>
34
- <target>Vérifiez vos réponses</target>
35
- </trans-unit>
36
- <trans-unit id="scd1dd6ff53d0d01a">
37
- <source>Try again</source>
38
- <target>Réessayer</target>
39
- </trans-unit>
40
- <trans-unit id="sb3d4f79d9d8b71e5">
41
- <source>Submit</source>
42
- <target>Soumettre</target>
43
- </trans-unit>
44
- <trans-unit id="s255857544a9d5ec0">
45
- <source>Reset</source>
46
- <target>Remise à zéro</target>
47
- </trans-unit>
48
- <trans-unit id="s54393bfa280ea55b">
49
- <source>Prompt</source>
50
- <target>Prompt</target>
51
- </trans-unit>
52
- </body>
53
- </file>
54
- </xliff>
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="fr">
3
+ <body>
4
+ <trans-unit id="s4802e47fe2e95134">
5
+ <source>Option</source>
6
+ <target>Option</target>
7
+ </trans-unit>
8
+ <trans-unit id="s85ea99fb52be3385">
9
+ <source>True</source>
10
+ <target>Vrai</target>
11
+ </trans-unit>
12
+ <trans-unit id="s7254ca27b16ae2d8">
13
+ <source>False</source>
14
+ <target>Faux</target>
15
+ </trans-unit>
16
+ <trans-unit id="s159928724265eb05">
17
+ <source>Add Option</source>
18
+ <target>Ajouter une option</target>
19
+ </trans-unit>
20
+ <trans-unit id="sc56e9323f076a11e">
21
+ <source>Text to add gaps to</source>
22
+ <target>Texte à ajouter aux lacunes</target>
23
+ </trans-unit>
24
+ <trans-unit id="s80dc9f56411917df">
25
+ <source>Text to Highlight</source>
26
+ <target>Texte à mettre en évidence</target>
27
+ </trans-unit>
28
+ <trans-unit id="s1b23c41934894f30">
29
+ <source>Explanation</source>
30
+ <target>Explication</target>
31
+ </trans-unit>
32
+ <trans-unit id="sd26e8d4eef55e341">
33
+ <source>Check your answers</source>
34
+ <target>Vérifiez vos réponses</target>
35
+ </trans-unit>
36
+ <trans-unit id="scd1dd6ff53d0d01a">
37
+ <source>Try again</source>
38
+ <target>Réessayer</target>
39
+ </trans-unit>
40
+ <trans-unit id="sb3d4f79d9d8b71e5">
41
+ <source>Submit</source>
42
+ <target>Soumettre</target>
43
+ </trans-unit>
44
+ <trans-unit id="s255857544a9d5ec0">
45
+ <source>Reset</source>
46
+ <target>Remise à zéro</target>
47
+ </trans-unit>
48
+ <trans-unit id="s54393bfa280ea55b">
49
+ <source>Prompt</source>
50
+ <target>Prompt</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,25 +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
- };
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
+ };
25
30
 
@@ -1,25 +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': `Přidat možnost`,
13
- 's1b23c41934894f30': `Vysvětlení`,
14
- 's255857544a9d5ec0': `Obnovení`,
15
- 's4802e47fe2e95134': `Možnost`,
16
- 's54393bfa280ea55b': `Prompt`,
17
- 's7254ca27b16ae2d8': `False`,
18
- 's80dc9f56411917df': `Text ke zvýraznění`,
19
- 's85ea99fb52be3385': `Pravda`,
20
- 'sb3d4f79d9d8b71e5': `Odeslat`,
21
- 'sc56e9323f076a11e': `Text, do kterého se přidávají mezery`,
22
- 'scd1dd6ff53d0d01a': `Zkuste to znovu`,
23
- 'sd26e8d4eef55e341': `Zkontrolujte své odpovědi`,
24
- };
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': `Přidat možnost`,
13
+ 's1b23c41934894f30': `Vysvětlení`,
14
+ 's255857544a9d5ec0': `Obnovení`,
15
+ 's4802e47fe2e95134': `Možnost`,
16
+ 's54393bfa280ea55b': `Prompt`,
17
+ 's7254ca27b16ae2d8': `False`,
18
+ 's80dc9f56411917df': `Text ke zvýraznění`,
19
+ 's85ea99fb52be3385': `Pravda`,
20
+ 'sb3d4f79d9d8b71e5': `Odeslat`,
21
+ 'sc56e9323f076a11e': `Text, do kterého se přidávají mezery`,
22
+ 'scd1dd6ff53d0d01a': `Zkuste to znovu`,
23
+ 'sd26e8d4eef55e341': `Zkontrolujte své odpovědi`,
24
+ 'sb0aadaa04e658ad6': `Choice`,
25
+ 's2ba5f4d8f3bd7c57': `Order`,
26
+ 's2492f5fb1b05b45e': `Text`,
27
+ 's49c940aecfef3ea0': `Mark`,
28
+ 'saa3efba1f0c816b7': `Speech`,
29
+ };
25
30
 
@@ -1,25 +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': `Tilføj mulighed`,
13
- 's1b23c41934894f30': `Forklaring`,
14
- 's255857544a9d5ec0': `Nulstil`,
15
- 's4802e47fe2e95134': `Mulighed`,
16
- 's54393bfa280ea55b': `Prompt`,
17
- 's7254ca27b16ae2d8': `Falsk`,
18
- 's80dc9f56411917df': `Tekst til at fremhæve`,
19
- 's85ea99fb52be3385': `Sandt`,
20
- 'sb3d4f79d9d8b71e5': `Send ind`,
21
- 'sc56e9323f076a11e': `Tekst til at tilføje mellemrum til`,
22
- 'scd1dd6ff53d0d01a': `Prøv igen`,
23
- 'sd26e8d4eef55e341': `Tjek dine svar`,
24
- };
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': `Tilføj mulighed`,
13
+ 's1b23c41934894f30': `Forklaring`,
14
+ 's255857544a9d5ec0': `Nulstil`,
15
+ 's4802e47fe2e95134': `Mulighed`,
16
+ 's54393bfa280ea55b': `Prompt`,
17
+ 's7254ca27b16ae2d8': `Falsk`,
18
+ 's80dc9f56411917df': `Tekst til at fremhæve`,
19
+ 's85ea99fb52be3385': `Sandt`,
20
+ 'sb3d4f79d9d8b71e5': `Send ind`,
21
+ 'sc56e9323f076a11e': `Tekst til at tilføje mellemrum til`,
22
+ 'scd1dd6ff53d0d01a': `Prøv igen`,
23
+ 'sd26e8d4eef55e341': `Tjek dine svar`,
24
+ 'sb0aadaa04e658ad6': `Choice`,
25
+ 's2ba5f4d8f3bd7c57': `Order`,
26
+ 's2492f5fb1b05b45e': `Text`,
27
+ 's49c940aecfef3ea0': `Mark`,
28
+ 'saa3efba1f0c816b7': `Speech`,
29
+ };
25
30
 
@@ -1,25 +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': `Option hinzufügen`,
13
- 's1b23c41934894f30': `Erläuterung`,
14
- 's255857544a9d5ec0': `Zurücksetzen`,
15
- 's4802e47fe2e95134': `Option`,
16
- 's54393bfa280ea55b': `Eingabeaufforderung`,
17
- 's7254ca27b16ae2d8': `Falsch`,
18
- 's80dc9f56411917df': `Hervorzuhebender Text`,
19
- 's85ea99fb52be3385': `Wahr`,
20
- 'sb3d4f79d9d8b71e5': `Einreichen`,
21
- 'sc56e9323f076a11e': `Text zum Hinzufügen von Lücken`,
22
- 'scd1dd6ff53d0d01a': `Erneut versuchen`,
23
- 'sd26e8d4eef55e341': `Überprüfen Sie Ihre Antworten`,
24
- };
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': `Option hinzufügen`,
13
+ 's1b23c41934894f30': `Erläuterung`,
14
+ 's2492f5fb1b05b45e': `Text`,
15
+ 's255857544a9d5ec0': `Zurücksetzen`,
16
+ 's2ba5f4d8f3bd7c57': `Sortieren`,
17
+ 's4802e47fe2e95134': `Option`,
18
+ 's49c940aecfef3ea0': `Markieren`,
19
+ 's54393bfa280ea55b': `Aufgabe`,
20
+ 's7254ca27b16ae2d8': `Falsch`,
21
+ 's80dc9f56411917df': `Hervorzuhebender Text`,
22
+ 's85ea99fb52be3385': `Wahr`,
23
+ 'saa3efba1f0c816b7': `Sprechen`,
24
+ 'sb0aadaa04e658ad6': `Auswählen`,
25
+ 'sb3d4f79d9d8b71e5': `Einreichen`,
26
+ 'sc56e9323f076a11e': `Text zum Hinzufügen von Lücken`,
27
+ 'scd1dd6ff53d0d01a': `Erneut versuchen`,
28
+ 'sd26e8d4eef55e341': `Überprüfen Sie Ihre Antworten`,
29
+ };
25
30
 
@@ -1,25 +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
- };
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
+ };
25
30