@webwriter/quiz 1.0.5 → 1.0.7
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/LICENSE +6 -6
- package/custom.d.ts +175 -175
- package/dist/widgets/webwriter-choice-item.css +1 -1
- package/dist/widgets/webwriter-choice-item.js +1886 -802
- package/dist/widgets/webwriter-choice.css +1 -1
- package/dist/widgets/webwriter-choice.js +1943 -846
- package/dist/widgets/webwriter-cloze-gap.css +1 -1
- package/dist/widgets/webwriter-cloze-gap.js +1988 -902
- package/dist/widgets/webwriter-cloze.css +1 -1
- package/dist/widgets/webwriter-cloze.js +1833 -748
- package/dist/widgets/webwriter-mark.css +1 -1
- package/dist/widgets/webwriter-mark.js +1848 -762
- package/dist/widgets/webwriter-order-item.css +1 -1
- package/dist/widgets/webwriter-order-item.js +1884 -799
- package/dist/widgets/webwriter-order.css +1 -1
- package/dist/widgets/webwriter-order.js +1882 -790
- package/dist/widgets/webwriter-pairing-item.css +1 -1
- package/dist/widgets/webwriter-pairing-item.js +1718 -614
- package/dist/widgets/webwriter-pairing.css +1 -1
- package/dist/widgets/webwriter-pairing.js +1873 -781
- package/dist/widgets/webwriter-quiz.css +1 -1
- package/dist/widgets/webwriter-quiz.js +2241 -1026
- package/dist/widgets/webwriter-speech.css +1 -1
- package/dist/widgets/webwriter-speech.js +2179 -961
- package/dist/widgets/webwriter-task-explainer.css +1 -1
- package/dist/widgets/webwriter-task-explainer.js +1704 -600
- package/dist/widgets/webwriter-task-hint.css +1 -1
- package/dist/widgets/webwriter-task-hint.js +1695 -591
- package/dist/widgets/webwriter-task-prompt.css +1 -1
- package/dist/widgets/webwriter-task-prompt.js +1670 -566
- package/dist/widgets/webwriter-task.css +1 -1
- package/dist/widgets/webwriter-task.js +2361 -1143
- package/dist/widgets/webwriter-text.css +1 -1
- package/dist/widgets/webwriter-text.js +1876 -770
- package/icon.svg +1 -0
- package/lit-localize.json +15 -0
- package/localization/bg.xlf +54 -0
- package/localization/cs.xlf +54 -0
- package/localization/da.xlf +54 -0
- package/localization/de.xlf +54 -0
- package/localization/el.xlf +54 -0
- package/localization/es.xlf +54 -0
- package/localization/et.xlf +54 -0
- package/localization/fi.xlf +54 -0
- package/localization/fr.xlf +54 -0
- package/localization/generated/bg.ts +25 -0
- package/localization/generated/cs.ts +25 -0
- package/localization/generated/da.ts +25 -0
- package/localization/generated/de.ts +25 -0
- package/localization/generated/el.ts +25 -0
- package/localization/generated/es.ts +25 -0
- package/localization/generated/et.ts +25 -0
- package/localization/generated/fi.ts +25 -0
- package/localization/generated/fr.ts +25 -0
- package/localization/generated/hu.ts +25 -0
- package/localization/generated/id.ts +25 -0
- package/localization/generated/index.js +3 -0
- package/localization/generated/it.ts +25 -0
- package/localization/generated/ja.ts +25 -0
- package/localization/generated/ko.ts +25 -0
- package/localization/generated/locale-codes.js +79 -0
- package/localization/generated/lt.ts +25 -0
- package/localization/generated/lv.ts +25 -0
- package/localization/generated/nb.ts +25 -0
- package/localization/generated/nl.ts +25 -0
- package/localization/generated/pl.ts +25 -0
- package/localization/generated/pt-BR.ts +25 -0
- package/localization/generated/pt-PT.ts +25 -0
- package/localization/generated/ro.ts +25 -0
- package/localization/generated/ru.ts +25 -0
- package/localization/generated/sk.ts +25 -0
- package/localization/generated/sl.ts +25 -0
- package/localization/generated/sv.ts +25 -0
- package/localization/generated/tr.ts +25 -0
- package/localization/generated/uk.ts +25 -0
- package/localization/generated/zh-hans.ts +25 -0
- package/localization/hu.xlf +54 -0
- package/localization/id.xlf +54 -0
- package/localization/it.xlf +54 -0
- package/localization/ja.xlf +54 -0
- package/localization/ko.xlf +54 -0
- package/localization/lt.xlf +54 -0
- package/localization/lv.xlf +54 -0
- package/localization/nb.xlf +54 -0
- package/localization/nl.xlf +54 -0
- package/localization/pl.xlf +54 -0
- package/localization/pt-BR.xlf +54 -0
- package/localization/pt-PT.xlf +54 -0
- package/localization/ro.xlf +54 -0
- package/localization/ru.xlf +54 -0
- package/localization/sk.xlf +54 -0
- package/localization/sl.xlf +54 -0
- package/localization/sv.xlf +54 -0
- package/localization/tr.xlf +54 -0
- package/localization/uk.xlf +54 -0
- package/localization/zh-hans.xlf +54 -0
- package/package.json +281 -193
- package/src/lib/combobox.ts +455 -455
- package/src/lib/highlighter-fill.svg +5 -5
- package/src/snippets/Beispiel-Choice.html +57 -0
- package/src/snippets/Beispiel-Mark.html +14 -0
- package/src/snippets/Beispiel-Order.html +52 -0
- package/src/snippets/Beispiel-Text.html +20 -0
- 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 -309
- package/src/widgets/webwriter-cloze-gap.ts +215 -216
- package/src/widgets/webwriter-cloze.ts +135 -135
- package/src/widgets/webwriter-mark.ts +431 -434
- package/src/widgets/webwriter-order-item.ts +437 -436
- package/src/widgets/webwriter-order.ts +284 -279
- package/src/widgets/webwriter-pairing-item.ts +160 -155
- package/src/widgets/webwriter-pairing.ts +192 -187
- package/src/widgets/webwriter-quiz.ts +281 -280
- package/src/widgets/webwriter-speech.ts +272 -267
- package/src/widgets/webwriter-task-explainer.ts +42 -37
- package/src/widgets/webwriter-task-hint.ts +22 -16
- package/src/widgets/webwriter-task-prompt.ts +23 -17
- package/src/widgets/webwriter-task.ts +546 -543
- package/src/widgets/webwriter-text.ts +135 -130
- package/tsconfig.json +6 -6
|
@@ -0,0 +1,25 @@
|
|
|
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': `Añadir opción`,
|
|
13
|
+
's1b23c41934894f30': `Explicación`,
|
|
14
|
+
's255857544a9d5ec0': `Restablecer`,
|
|
15
|
+
's4802e47fe2e95134': `Opción`,
|
|
16
|
+
's54393bfa280ea55b': `Pregunte a`,
|
|
17
|
+
's7254ca27b16ae2d8': `Falso`,
|
|
18
|
+
's80dc9f56411917df': `Texto a destacar`,
|
|
19
|
+
's85ea99fb52be3385': `Verdadero`,
|
|
20
|
+
'sb3d4f79d9d8b71e5': `Enviar`,
|
|
21
|
+
'sc56e9323f076a11e': `Texto al que añadir huecos`,
|
|
22
|
+
'scd1dd6ff53d0d01a': `Inténtalo de nuevo`,
|
|
23
|
+
'sd26e8d4eef55e341': `Comprueba tus respuestas`,
|
|
24
|
+
};
|
|
25
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
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
|
+
};
|
|
25
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
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
|
+
};
|
|
25
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
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
|
+
};
|
|
25
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
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
|
+
};
|
|
25
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
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
|
+
};
|
|
25
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
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
|
+
};
|
|
25
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
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
|
+
};
|
|
25
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
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
|
+
};
|
|
25
|
+
|
|
@@ -0,0 +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
|
+
];
|
|
@@ -0,0 +1,25 @@
|
|
|
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
|
+
};
|
|
25
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
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
|
+
};
|
|
25
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
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
|
+
};
|
|
25
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
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
|
+
};
|
|
25
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
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
|
+
};
|
|
25
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
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
|
+
};
|
|
25
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
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
|
+
};
|
|
25
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
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
|
+
};
|
|
25
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
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
|
+
};
|
|
25
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
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
|
+
};
|
|
25
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
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
|
+
};
|
|
25
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
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': `Lägg till alternativ`,
|
|
13
|
+
's1b23c41934894f30': `Förklaring`,
|
|
14
|
+
's255857544a9d5ec0': `Återställning`,
|
|
15
|
+
's4802e47fe2e95134': `Alternativ`,
|
|
16
|
+
's54393bfa280ea55b': `Frågeställning`,
|
|
17
|
+
's7254ca27b16ae2d8': `Falsk`,
|
|
18
|
+
's80dc9f56411917df': `Text att lyfta fram`,
|
|
19
|
+
's85ea99fb52be3385': `Sant`,
|
|
20
|
+
'sb3d4f79d9d8b71e5': `Skicka in`,
|
|
21
|
+
'sc56e9323f076a11e': `Text att lägga till luckor i`,
|
|
22
|
+
'scd1dd6ff53d0d01a': `Försök igen`,
|
|
23
|
+
'sd26e8d4eef55e341': `Kontrollera dina svar`,
|
|
24
|
+
};
|
|
25
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
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': `Seçenek Ekle`,
|
|
13
|
+
's1b23c41934894f30': `Açıklama`,
|
|
14
|
+
's255857544a9d5ec0': `Sıfırla`,
|
|
15
|
+
's4802e47fe2e95134': `Opsiyon`,
|
|
16
|
+
's54393bfa280ea55b': `İstem`,
|
|
17
|
+
's7254ca27b16ae2d8': `Yanlış`,
|
|
18
|
+
's80dc9f56411917df': `Vurgulanacak Metin`,
|
|
19
|
+
's85ea99fb52be3385': `Doğru`,
|
|
20
|
+
'sb3d4f79d9d8b71e5': `Gönder`,
|
|
21
|
+
'sc56e9323f076a11e': `Boşluk eklenecek metin`,
|
|
22
|
+
'scd1dd6ff53d0d01a': `Tekrar deneyin`,
|
|
23
|
+
'sd26e8d4eef55e341': `Cevaplarınızı kontrol edin`,
|
|
24
|
+
};
|
|
25
|
+
|