@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.
- package/.env +1 -0
- package/LICENSE +6 -6
- package/custom.d.ts +175 -175
- package/dist/widgets/webwriter-choice-item.js +174 -29
- package/dist/widgets/webwriter-choice.js +174 -29
- package/dist/widgets/webwriter-cloze-gap.js +174 -29
- package/dist/widgets/webwriter-cloze.js +174 -29
- package/dist/widgets/webwriter-mark.js +174 -29
- package/dist/widgets/webwriter-order-item.js +174 -29
- package/dist/widgets/webwriter-order.js +174 -29
- package/dist/widgets/webwriter-pairing-item.js +174 -29
- package/dist/widgets/webwriter-pairing.js +174 -29
- package/dist/widgets/webwriter-quiz.js +174 -29
- package/dist/widgets/webwriter-speech.js +174 -29
- package/dist/widgets/webwriter-task-explainer.js +174 -29
- package/dist/widgets/webwriter-task-hint.js +174 -29
- package/dist/widgets/webwriter-task-prompt.js +174 -29
- package/dist/widgets/webwriter-task.js +176 -31
- package/dist/widgets/webwriter-text.js +174 -29
- package/lit-localize.json +14 -14
- package/localization/bg.xlf +69 -54
- package/localization/cs.xlf +69 -54
- package/localization/da.xlf +69 -54
- package/localization/de.xlf +74 -54
- package/localization/el.xlf +69 -54
- package/localization/es.xlf +69 -54
- package/localization/et.xlf +69 -54
- package/localization/fi.xlf +69 -54
- package/localization/fr.xlf +69 -54
- package/localization/generated/bg.ts +29 -24
- package/localization/generated/cs.ts +29 -24
- package/localization/generated/da.ts +29 -24
- package/localization/generated/de.ts +29 -24
- package/localization/generated/el.ts +29 -24
- package/localization/generated/es.ts +29 -24
- package/localization/generated/et.ts +29 -24
- package/localization/generated/fi.ts +29 -24
- package/localization/generated/fr.ts +29 -24
- package/localization/generated/hu.ts +29 -24
- package/localization/generated/id.ts +29 -24
- package/localization/generated/index.js +2 -2
- package/localization/generated/it.ts +29 -24
- package/localization/generated/ja.ts +29 -24
- package/localization/generated/ko.ts +29 -24
- package/localization/generated/locale-codes.js +79 -79
- package/localization/generated/lt.ts +29 -24
- package/localization/generated/lv.ts +29 -24
- package/localization/generated/nb.ts +29 -24
- package/localization/generated/nl.ts +29 -24
- package/localization/generated/pl.ts +29 -24
- package/localization/generated/pt-BR.ts +29 -24
- package/localization/generated/pt-PT.ts +29 -24
- package/localization/generated/ro.ts +29 -24
- package/localization/generated/ru.ts +29 -24
- package/localization/generated/sk.ts +29 -24
- package/localization/generated/sl.ts +29 -24
- package/localization/generated/sv.ts +29 -24
- package/localization/generated/tr.ts +29 -24
- package/localization/generated/uk.ts +29 -24
- package/localization/generated/zh-hans.ts +29 -24
- package/localization/hu.xlf +69 -54
- package/localization/id.xlf +69 -54
- package/localization/it.xlf +69 -54
- package/localization/ja.xlf +69 -54
- package/localization/ko.xlf +69 -54
- package/localization/lt.xlf +69 -54
- package/localization/lv.xlf +69 -54
- package/localization/nb.xlf +69 -54
- package/localization/nl.xlf +69 -54
- package/localization/pl.xlf +69 -54
- package/localization/pt-BR.xlf +69 -54
- package/localization/pt-PT.xlf +69 -54
- package/localization/ro.xlf +69 -54
- package/localization/ru.xlf +69 -54
- package/localization/sk.xlf +69 -54
- package/localization/sl.xlf +69 -54
- package/localization/sv.xlf +69 -54
- package/localization/tr.xlf +69 -54
- package/localization/uk.xlf +69 -54
- package/localization/zh-hans.xlf +69 -54
- package/package.json +4 -43
- package/src/lib/combobox.ts +455 -455
- package/src/lib/highlighter-fill.svg +5 -5
- package/src/snippets/Beispiel-Choice.html +57 -57
- package/src/snippets/Beispiel-Mark.html +13 -13
- package/src/snippets/Beispiel-Order.html +52 -52
- package/src/snippets/Beispiel-Text.html +20 -20
- package/src/snippets/choice.html +7 -7
- package/src/snippets/cloze.html +3 -3
- package/src/snippets/mark.html +3 -3
- package/src/snippets/order.html +7 -7
- package/src/snippets/pairing.html +9 -9
- package/src/snippets/speech.html +3 -3
- package/src/snippets/text.html +3 -3
- package/src/snippets/wordsearch.html +3 -3
- package/src/widgets/webwriter-choice-item.ts +250 -250
- package/src/widgets/webwriter-choice.ts +314 -314
- package/src/widgets/webwriter-cloze-gap.ts +215 -215
- package/src/widgets/webwriter-cloze.ts +135 -135
- package/src/widgets/webwriter-mark.ts +431 -431
- package/src/widgets/webwriter-order-item.ts +437 -437
- package/src/widgets/webwriter-order.ts +284 -284
- package/src/widgets/webwriter-pairing-item.ts +160 -160
- package/src/widgets/webwriter-pairing.ts +192 -192
- package/src/widgets/webwriter-quiz.ts +281 -281
- package/src/widgets/webwriter-speech.ts +272 -272
- package/src/widgets/webwriter-task-explainer.ts +42 -42
- package/src/widgets/webwriter-task-hint.ts +22 -22
- package/src/widgets/webwriter-task-prompt.ts +23 -23
- package/src/widgets/webwriter-task.ts +546 -546
- package/src/widgets/webwriter-text.ts +135 -135
- package/tsconfig.json +6 -6
|
@@ -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': `Pridėti parinktį`,
|
|
13
|
-
's1b23c41934894f30': `Paaiškinimas`,
|
|
14
|
-
's255857544a9d5ec0': `Iš naujo nustatyti`,
|
|
15
|
-
's4802e47fe2e95134': `Galimybė`,
|
|
16
|
-
's54393bfa280ea55b': `Paraginimas`,
|
|
17
|
-
's7254ca27b16ae2d8': `Klaidingas`,
|
|
18
|
-
's80dc9f56411917df': `Teksto paryškinimas`,
|
|
19
|
-
's85ea99fb52be3385': `Tiesa`,
|
|
20
|
-
'sb3d4f79d9d8b71e5': `Pateikti`,
|
|
21
|
-
'sc56e9323f076a11e': `Tekstas, prie kurio pridedami tarpai`,
|
|
22
|
-
'scd1dd6ff53d0d01a': `Pabandykite dar kartą`,
|
|
23
|
-
'sd26e8d4eef55e341': `Patikrinkite savo atsakymus`,
|
|
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': `Pridėti parinktį`,
|
|
13
|
+
's1b23c41934894f30': `Paaiškinimas`,
|
|
14
|
+
's255857544a9d5ec0': `Iš naujo nustatyti`,
|
|
15
|
+
's4802e47fe2e95134': `Galimybė`,
|
|
16
|
+
's54393bfa280ea55b': `Paraginimas`,
|
|
17
|
+
's7254ca27b16ae2d8': `Klaidingas`,
|
|
18
|
+
's80dc9f56411917df': `Teksto paryškinimas`,
|
|
19
|
+
's85ea99fb52be3385': `Tiesa`,
|
|
20
|
+
'sb3d4f79d9d8b71e5': `Pateikti`,
|
|
21
|
+
'sc56e9323f076a11e': `Tekstas, prie kurio pridedami tarpai`,
|
|
22
|
+
'scd1dd6ff53d0d01a': `Pabandykite dar kartą`,
|
|
23
|
+
'sd26e8d4eef55e341': `Patikrinkite savo atsakymus`,
|
|
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': `Pievienot iespēju`,
|
|
13
|
-
's1b23c41934894f30': `Paskaidrojums`,
|
|
14
|
-
's255857544a9d5ec0': `Atiestatīt`,
|
|
15
|
-
's4802e47fe2e95134': `Iespēja`,
|
|
16
|
-
's54393bfa280ea55b': `Uzaicinājums`,
|
|
17
|
-
's7254ca27b16ae2d8': `Viltus`,
|
|
18
|
-
's80dc9f56411917df': `Teksta izcelšana`,
|
|
19
|
-
's85ea99fb52be3385': `True`,
|
|
20
|
-
'sb3d4f79d9d8b71e5': `Iesniegt`,
|
|
21
|
-
'sc56e9323f076a11e': `Teksts, kam pievienot atstarpes`,
|
|
22
|
-
'scd1dd6ff53d0d01a': `Mēģiniet vēlreiz`,
|
|
23
|
-
'sd26e8d4eef55e341': `Pārbaudiet savas atbildes`,
|
|
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': `Pievienot iespēju`,
|
|
13
|
+
's1b23c41934894f30': `Paskaidrojums`,
|
|
14
|
+
's255857544a9d5ec0': `Atiestatīt`,
|
|
15
|
+
's4802e47fe2e95134': `Iespēja`,
|
|
16
|
+
's54393bfa280ea55b': `Uzaicinājums`,
|
|
17
|
+
's7254ca27b16ae2d8': `Viltus`,
|
|
18
|
+
's80dc9f56411917df': `Teksta izcelšana`,
|
|
19
|
+
's85ea99fb52be3385': `True`,
|
|
20
|
+
'sb3d4f79d9d8b71e5': `Iesniegt`,
|
|
21
|
+
'sc56e9323f076a11e': `Teksts, kam pievienot atstarpes`,
|
|
22
|
+
'scd1dd6ff53d0d01a': `Mēģiniet vēlreiz`,
|
|
23
|
+
'sd26e8d4eef55e341': `Pārbaudiet savas atbildes`,
|
|
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': `Legg til alternativ`,
|
|
13
|
-
's1b23c41934894f30': `Forklaring`,
|
|
14
|
-
's255857544a9d5ec0': `Tilbakestill`,
|
|
15
|
-
's4802e47fe2e95134': `Alternativ`,
|
|
16
|
-
's54393bfa280ea55b': `Spør`,
|
|
17
|
-
's7254ca27b16ae2d8': `Falsk`,
|
|
18
|
-
's80dc9f56411917df': `Tekst som skal fremheves`,
|
|
19
|
-
's85ea99fb52be3385': `Sant`,
|
|
20
|
-
'sb3d4f79d9d8b71e5': `Send inn`,
|
|
21
|
-
'sc56e9323f076a11e': `Tekst for å legge til mellomrom`,
|
|
22
|
-
'scd1dd6ff53d0d01a': `Prøv igjen`,
|
|
23
|
-
'sd26e8d4eef55e341': `Sjekk svarene dine`,
|
|
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': `Legg til alternativ`,
|
|
13
|
+
's1b23c41934894f30': `Forklaring`,
|
|
14
|
+
's255857544a9d5ec0': `Tilbakestill`,
|
|
15
|
+
's4802e47fe2e95134': `Alternativ`,
|
|
16
|
+
's54393bfa280ea55b': `Spør`,
|
|
17
|
+
's7254ca27b16ae2d8': `Falsk`,
|
|
18
|
+
's80dc9f56411917df': `Tekst som skal fremheves`,
|
|
19
|
+
's85ea99fb52be3385': `Sant`,
|
|
20
|
+
'sb3d4f79d9d8b71e5': `Send inn`,
|
|
21
|
+
'sc56e9323f076a11e': `Tekst for å legge til mellomrom`,
|
|
22
|
+
'scd1dd6ff53d0d01a': `Prøv igjen`,
|
|
23
|
+
'sd26e8d4eef55e341': `Sjekk svarene dine`,
|
|
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': `Optie toevoegen`,
|
|
13
|
-
's1b23c41934894f30': `Uitleg`,
|
|
14
|
-
's255857544a9d5ec0': `Reset`,
|
|
15
|
-
's4802e47fe2e95134': `Optie`,
|
|
16
|
-
's54393bfa280ea55b': `Prompt`,
|
|
17
|
-
's7254ca27b16ae2d8': `Valse`,
|
|
18
|
-
's80dc9f56411917df': `Te markeren tekst`,
|
|
19
|
-
's85ea99fb52be3385': `Echt`,
|
|
20
|
-
'sb3d4f79d9d8b71e5': `Stuur in`,
|
|
21
|
-
'sc56e9323f076a11e': `Tekst om gaten aan toe te voegen`,
|
|
22
|
-
'scd1dd6ff53d0d01a': `Probeer het opnieuw`,
|
|
23
|
-
'sd26e8d4eef55e341': `Controleer je antwoorden`,
|
|
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': `Optie toevoegen`,
|
|
13
|
+
's1b23c41934894f30': `Uitleg`,
|
|
14
|
+
's255857544a9d5ec0': `Reset`,
|
|
15
|
+
's4802e47fe2e95134': `Optie`,
|
|
16
|
+
's54393bfa280ea55b': `Prompt`,
|
|
17
|
+
's7254ca27b16ae2d8': `Valse`,
|
|
18
|
+
's80dc9f56411917df': `Te markeren tekst`,
|
|
19
|
+
's85ea99fb52be3385': `Echt`,
|
|
20
|
+
'sb3d4f79d9d8b71e5': `Stuur in`,
|
|
21
|
+
'sc56e9323f076a11e': `Tekst om gaten aan toe te voegen`,
|
|
22
|
+
'scd1dd6ff53d0d01a': `Probeer het opnieuw`,
|
|
23
|
+
'sd26e8d4eef55e341': `Controleer je antwoorden`,
|
|
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': `Dodaj opcję`,
|
|
13
|
-
's1b23c41934894f30': `Wyjaśnienie`,
|
|
14
|
-
's255857544a9d5ec0': `Reset`,
|
|
15
|
-
's4802e47fe2e95134': `Opcja`,
|
|
16
|
-
's54393bfa280ea55b': `Podpowiedź`,
|
|
17
|
-
's7254ca27b16ae2d8': `Fałsz`,
|
|
18
|
-
's80dc9f56411917df': `Tekst do podświetlenia`,
|
|
19
|
-
's85ea99fb52be3385': `Prawda`,
|
|
20
|
-
'sb3d4f79d9d8b71e5': `Prześlij`,
|
|
21
|
-
'sc56e9323f076a11e': `Tekst do dodania przerw`,
|
|
22
|
-
'scd1dd6ff53d0d01a': `Spróbuj ponownie`,
|
|
23
|
-
'sd26e8d4eef55e341': `Sprawdź swoje odpowiedzi`,
|
|
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': `Dodaj opcję`,
|
|
13
|
+
's1b23c41934894f30': `Wyjaśnienie`,
|
|
14
|
+
's255857544a9d5ec0': `Reset`,
|
|
15
|
+
's4802e47fe2e95134': `Opcja`,
|
|
16
|
+
's54393bfa280ea55b': `Podpowiedź`,
|
|
17
|
+
's7254ca27b16ae2d8': `Fałsz`,
|
|
18
|
+
's80dc9f56411917df': `Tekst do podświetlenia`,
|
|
19
|
+
's85ea99fb52be3385': `Prawda`,
|
|
20
|
+
'sb3d4f79d9d8b71e5': `Prześlij`,
|
|
21
|
+
'sc56e9323f076a11e': `Tekst do dodania przerw`,
|
|
22
|
+
'scd1dd6ff53d0d01a': `Spróbuj ponownie`,
|
|
23
|
+
'sd26e8d4eef55e341': `Sprawdź swoje odpowiedzi`,
|
|
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': `Adicionar opção`,
|
|
13
|
-
's1b23c41934894f30': `Explicação`,
|
|
14
|
-
's255857544a9d5ec0': `Redefinir`,
|
|
15
|
-
's4802e47fe2e95134': `Opção`,
|
|
16
|
-
's54393bfa280ea55b': `Prompt`,
|
|
17
|
-
's7254ca27b16ae2d8': `Falso`,
|
|
18
|
-
's80dc9f56411917df': `Texto para destacar`,
|
|
19
|
-
's85ea99fb52be3385': `Verdadeiro`,
|
|
20
|
-
'sb3d4f79d9d8b71e5': `Enviar`,
|
|
21
|
-
'sc56e9323f076a11e': `Texto para adicionar lacunas`,
|
|
22
|
-
'scd1dd6ff53d0d01a': `Tente novamente`,
|
|
23
|
-
'sd26e8d4eef55e341': `Verifique suas respostas`,
|
|
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': `Adicionar opção`,
|
|
13
|
+
's1b23c41934894f30': `Explicação`,
|
|
14
|
+
's255857544a9d5ec0': `Redefinir`,
|
|
15
|
+
's4802e47fe2e95134': `Opção`,
|
|
16
|
+
's54393bfa280ea55b': `Prompt`,
|
|
17
|
+
's7254ca27b16ae2d8': `Falso`,
|
|
18
|
+
's80dc9f56411917df': `Texto para destacar`,
|
|
19
|
+
's85ea99fb52be3385': `Verdadeiro`,
|
|
20
|
+
'sb3d4f79d9d8b71e5': `Enviar`,
|
|
21
|
+
'sc56e9323f076a11e': `Texto para adicionar lacunas`,
|
|
22
|
+
'scd1dd6ff53d0d01a': `Tente novamente`,
|
|
23
|
+
'sd26e8d4eef55e341': `Verifique suas respostas`,
|
|
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': `Adicionar opção`,
|
|
13
|
-
's1b23c41934894f30': `Explicação`,
|
|
14
|
-
's255857544a9d5ec0': `Reiniciar`,
|
|
15
|
-
's4802e47fe2e95134': `Opção`,
|
|
16
|
-
's54393bfa280ea55b': `Prompt`,
|
|
17
|
-
's7254ca27b16ae2d8': `Falso`,
|
|
18
|
-
's80dc9f56411917df': `Texto a realçar`,
|
|
19
|
-
's85ea99fb52be3385': `Verdadeiro`,
|
|
20
|
-
'sb3d4f79d9d8b71e5': `Enviar`,
|
|
21
|
-
'sc56e9323f076a11e': `Texto para adicionar lacunas`,
|
|
22
|
-
'scd1dd6ff53d0d01a': `Tentar novamente`,
|
|
23
|
-
'sd26e8d4eef55e341': `Verifique as suas respostas`,
|
|
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': `Adicionar opção`,
|
|
13
|
+
's1b23c41934894f30': `Explicação`,
|
|
14
|
+
's255857544a9d5ec0': `Reiniciar`,
|
|
15
|
+
's4802e47fe2e95134': `Opção`,
|
|
16
|
+
's54393bfa280ea55b': `Prompt`,
|
|
17
|
+
's7254ca27b16ae2d8': `Falso`,
|
|
18
|
+
's80dc9f56411917df': `Texto a realçar`,
|
|
19
|
+
's85ea99fb52be3385': `Verdadeiro`,
|
|
20
|
+
'sb3d4f79d9d8b71e5': `Enviar`,
|
|
21
|
+
'sc56e9323f076a11e': `Texto para adicionar lacunas`,
|
|
22
|
+
'scd1dd6ff53d0d01a': `Tentar novamente`,
|
|
23
|
+
'sd26e8d4eef55e341': `Verifique as suas respostas`,
|
|
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': `Adaugă opțiune`,
|
|
13
|
-
's1b23c41934894f30': `Explicație`,
|
|
14
|
-
's255857544a9d5ec0': `Resetare`,
|
|
15
|
-
's4802e47fe2e95134': `Opțiune`,
|
|
16
|
-
's54393bfa280ea55b': `Prompt`,
|
|
17
|
-
's7254ca27b16ae2d8': `Fals`,
|
|
18
|
-
's80dc9f56411917df': `Text pentru evidențiere`,
|
|
19
|
-
's85ea99fb52be3385': `Adevărat`,
|
|
20
|
-
'sb3d4f79d9d8b71e5': `Trimite`,
|
|
21
|
-
'sc56e9323f076a11e': `Text la care să adăugați spații libere`,
|
|
22
|
-
'scd1dd6ff53d0d01a': `Încercați din nou`,
|
|
23
|
-
'sd26e8d4eef55e341': `Verifică-ți răspunsurile`,
|
|
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': `Adaugă opțiune`,
|
|
13
|
+
's1b23c41934894f30': `Explicație`,
|
|
14
|
+
's255857544a9d5ec0': `Resetare`,
|
|
15
|
+
's4802e47fe2e95134': `Opțiune`,
|
|
16
|
+
's54393bfa280ea55b': `Prompt`,
|
|
17
|
+
's7254ca27b16ae2d8': `Fals`,
|
|
18
|
+
's80dc9f56411917df': `Text pentru evidențiere`,
|
|
19
|
+
's85ea99fb52be3385': `Adevărat`,
|
|
20
|
+
'sb3d4f79d9d8b71e5': `Trimite`,
|
|
21
|
+
'sc56e9323f076a11e': `Text la care să adăugați spații libere`,
|
|
22
|
+
'scd1dd6ff53d0d01a': `Încercați din nou`,
|
|
23
|
+
'sd26e8d4eef55e341': `Verifică-ți răspunsurile`,
|
|
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': `Добавить опцию`,
|
|
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': `Pridať možnosť`,
|
|
13
|
-
's1b23c41934894f30': `Vysvetlenie`,
|
|
14
|
-
's255857544a9d5ec0': `Obnovenie`,
|
|
15
|
-
's4802e47fe2e95134': `Možnosť`,
|
|
16
|
-
's54393bfa280ea55b': `Prompt`,
|
|
17
|
-
's7254ca27b16ae2d8': `False`,
|
|
18
|
-
's80dc9f56411917df': `Text na zvýraznenie`,
|
|
19
|
-
's85ea99fb52be3385': `Pravda`,
|
|
20
|
-
'sb3d4f79d9d8b71e5': `Odoslať`,
|
|
21
|
-
'sc56e9323f076a11e': `Text na pridanie medzier`,
|
|
22
|
-
'scd1dd6ff53d0d01a': `Skúste to znova`,
|
|
23
|
-
'sd26e8d4eef55e341': `Skontrolujte svoje odpovede`,
|
|
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': `Pridať možnosť`,
|
|
13
|
+
's1b23c41934894f30': `Vysvetlenie`,
|
|
14
|
+
's255857544a9d5ec0': `Obnovenie`,
|
|
15
|
+
's4802e47fe2e95134': `Možnosť`,
|
|
16
|
+
's54393bfa280ea55b': `Prompt`,
|
|
17
|
+
's7254ca27b16ae2d8': `False`,
|
|
18
|
+
's80dc9f56411917df': `Text na zvýraznenie`,
|
|
19
|
+
's85ea99fb52be3385': `Pravda`,
|
|
20
|
+
'sb3d4f79d9d8b71e5': `Odoslať`,
|
|
21
|
+
'sc56e9323f076a11e': `Text na pridanie medzier`,
|
|
22
|
+
'scd1dd6ff53d0d01a': `Skúste to znova`,
|
|
23
|
+
'sd26e8d4eef55e341': `Skontrolujte svoje odpovede`,
|
|
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': `Dodajanje možnosti`,
|
|
13
|
-
's1b23c41934894f30': `Razlaga:`,
|
|
14
|
-
's255857544a9d5ec0': `Ponastavitev`,
|
|
15
|
-
's4802e47fe2e95134': `Možnost`,
|
|
16
|
-
's54393bfa280ea55b': `Poziv`,
|
|
17
|
-
's7254ca27b16ae2d8': `Lažno`,
|
|
18
|
-
's80dc9f56411917df': `Besedilo za poudarjanje`,
|
|
19
|
-
's85ea99fb52be3385': `Resnično`,
|
|
20
|
-
'sb3d4f79d9d8b71e5': `Pošlji`,
|
|
21
|
-
'sc56e9323f076a11e': `Besedilo za dodajanje presledkov`,
|
|
22
|
-
'scd1dd6ff53d0d01a': `Poskusite znova`,
|
|
23
|
-
'sd26e8d4eef55e341': `Preverite svoje odgovore`,
|
|
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': `Dodajanje možnosti`,
|
|
13
|
+
's1b23c41934894f30': `Razlaga:`,
|
|
14
|
+
's255857544a9d5ec0': `Ponastavitev`,
|
|
15
|
+
's4802e47fe2e95134': `Možnost`,
|
|
16
|
+
's54393bfa280ea55b': `Poziv`,
|
|
17
|
+
's7254ca27b16ae2d8': `Lažno`,
|
|
18
|
+
's80dc9f56411917df': `Besedilo za poudarjanje`,
|
|
19
|
+
's85ea99fb52be3385': `Resnično`,
|
|
20
|
+
'sb3d4f79d9d8b71e5': `Pošlji`,
|
|
21
|
+
'sc56e9323f076a11e': `Besedilo za dodajanje presledkov`,
|
|
22
|
+
'scd1dd6ff53d0d01a': `Poskusite znova`,
|
|
23
|
+
'sd26e8d4eef55e341': `Preverite svoje odgovore`,
|
|
24
|
+
'sb0aadaa04e658ad6': `Choice`,
|
|
25
|
+
's2ba5f4d8f3bd7c57': `Order`,
|
|
26
|
+
's2492f5fb1b05b45e': `Text`,
|
|
27
|
+
's49c940aecfef3ea0': `Mark`,
|
|
28
|
+
'saa3efba1f0c816b7': `Speech`,
|
|
29
|
+
};
|
|
25
30
|
|