@webwriter/quiz 1.0.4 → 1.0.6
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 +1887 -2299
- 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 +206 -198
- 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 -444
- package/src/widgets/webwriter-order.ts +284 -272
- 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': `Додати опцію`,
|
|
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': `假的`,
|
|
18
|
+
's80dc9f56411917df': `突出显示文本`,
|
|
19
|
+
's85ea99fb52be3385': `正确`,
|
|
20
|
+
'sb3d4f79d9d8b71e5': `提交`,
|
|
21
|
+
'sc56e9323f076a11e': `为文本添加间隙`,
|
|
22
|
+
'scd1dd6ff53d0d01a': `再试一次`,
|
|
23
|
+
'sd26e8d4eef55e341': `检查答案`,
|
|
24
|
+
};
|
|
25
|
+
|
|
@@ -0,0 +1,54 @@
|
|
|
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="hu">
|
|
3
|
+
<body>
|
|
4
|
+
<trans-unit id="s4802e47fe2e95134">
|
|
5
|
+
<source>Option</source>
|
|
6
|
+
<target>Opció</target>
|
|
7
|
+
</trans-unit>
|
|
8
|
+
<trans-unit id="s85ea99fb52be3385">
|
|
9
|
+
<source>True</source>
|
|
10
|
+
<target>Igaz</target>
|
|
11
|
+
</trans-unit>
|
|
12
|
+
<trans-unit id="s7254ca27b16ae2d8">
|
|
13
|
+
<source>False</source>
|
|
14
|
+
<target>Hamis</target>
|
|
15
|
+
</trans-unit>
|
|
16
|
+
<trans-unit id="s159928724265eb05">
|
|
17
|
+
<source>Add Option</source>
|
|
18
|
+
<target>Opció hozzáadása</target>
|
|
19
|
+
</trans-unit>
|
|
20
|
+
<trans-unit id="sc56e9323f076a11e">
|
|
21
|
+
<source>Text to add gaps to</source>
|
|
22
|
+
<target>Hézagok hozzáadására szolgáló szöveg</target>
|
|
23
|
+
</trans-unit>
|
|
24
|
+
<trans-unit id="s80dc9f56411917df">
|
|
25
|
+
<source>Text to Highlight</source>
|
|
26
|
+
<target>Kiemelendő szöveg</target>
|
|
27
|
+
</trans-unit>
|
|
28
|
+
<trans-unit id="s1b23c41934894f30">
|
|
29
|
+
<source>Explanation</source>
|
|
30
|
+
<target>Magyarázat</target>
|
|
31
|
+
</trans-unit>
|
|
32
|
+
<trans-unit id="sd26e8d4eef55e341">
|
|
33
|
+
<source>Check your answers</source>
|
|
34
|
+
<target>Ellenőrizze válaszait</target>
|
|
35
|
+
</trans-unit>
|
|
36
|
+
<trans-unit id="scd1dd6ff53d0d01a">
|
|
37
|
+
<source>Try again</source>
|
|
38
|
+
<target>Próbálja újra</target>
|
|
39
|
+
</trans-unit>
|
|
40
|
+
<trans-unit id="sb3d4f79d9d8b71e5">
|
|
41
|
+
<source>Submit</source>
|
|
42
|
+
<target>Küldje be a</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>
|
|
@@ -0,0 +1,54 @@
|
|
|
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="id">
|
|
3
|
+
<body>
|
|
4
|
+
<trans-unit id="s4802e47fe2e95134">
|
|
5
|
+
<source>Option</source>
|
|
6
|
+
<target>Opsi</target>
|
|
7
|
+
</trans-unit>
|
|
8
|
+
<trans-unit id="s85ea99fb52be3385">
|
|
9
|
+
<source>True</source>
|
|
10
|
+
<target>Benar</target>
|
|
11
|
+
</trans-unit>
|
|
12
|
+
<trans-unit id="s7254ca27b16ae2d8">
|
|
13
|
+
<source>False</source>
|
|
14
|
+
<target>Salah</target>
|
|
15
|
+
</trans-unit>
|
|
16
|
+
<trans-unit id="s159928724265eb05">
|
|
17
|
+
<source>Add Option</source>
|
|
18
|
+
<target>Tambahkan Opsi</target>
|
|
19
|
+
</trans-unit>
|
|
20
|
+
<trans-unit id="sc56e9323f076a11e">
|
|
21
|
+
<source>Text to add gaps to</source>
|
|
22
|
+
<target>Teks yang akan ditambahkan celah</target>
|
|
23
|
+
</trans-unit>
|
|
24
|
+
<trans-unit id="s80dc9f56411917df">
|
|
25
|
+
<source>Text to Highlight</source>
|
|
26
|
+
<target>Teks untuk Disorot</target>
|
|
27
|
+
</trans-unit>
|
|
28
|
+
<trans-unit id="s1b23c41934894f30">
|
|
29
|
+
<source>Explanation</source>
|
|
30
|
+
<target>Penjelasan</target>
|
|
31
|
+
</trans-unit>
|
|
32
|
+
<trans-unit id="sd26e8d4eef55e341">
|
|
33
|
+
<source>Check your answers</source>
|
|
34
|
+
<target>Periksa jawaban Anda</target>
|
|
35
|
+
</trans-unit>
|
|
36
|
+
<trans-unit id="scd1dd6ff53d0d01a">
|
|
37
|
+
<source>Try again</source>
|
|
38
|
+
<target>Coba lagi</target>
|
|
39
|
+
</trans-unit>
|
|
40
|
+
<trans-unit id="sb3d4f79d9d8b71e5">
|
|
41
|
+
<source>Submit</source>
|
|
42
|
+
<target>Kirim</target>
|
|
43
|
+
</trans-unit>
|
|
44
|
+
<trans-unit id="s255857544a9d5ec0">
|
|
45
|
+
<source>Reset</source>
|
|
46
|
+
<target>Atur ulang</target>
|
|
47
|
+
</trans-unit>
|
|
48
|
+
<trans-unit id="s54393bfa280ea55b">
|
|
49
|
+
<source>Prompt</source>
|
|
50
|
+
<target>Cepat</target>
|
|
51
|
+
</trans-unit>
|
|
52
|
+
</body>
|
|
53
|
+
</file>
|
|
54
|
+
</xliff>
|
|
@@ -0,0 +1,54 @@
|
|
|
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="it">
|
|
3
|
+
<body>
|
|
4
|
+
<trans-unit id="s4802e47fe2e95134">
|
|
5
|
+
<source>Option</source>
|
|
6
|
+
<target>Opzione</target>
|
|
7
|
+
</trans-unit>
|
|
8
|
+
<trans-unit id="s85ea99fb52be3385">
|
|
9
|
+
<source>True</source>
|
|
10
|
+
<target>Vero</target>
|
|
11
|
+
</trans-unit>
|
|
12
|
+
<trans-unit id="s7254ca27b16ae2d8">
|
|
13
|
+
<source>False</source>
|
|
14
|
+
<target>Falso</target>
|
|
15
|
+
</trans-unit>
|
|
16
|
+
<trans-unit id="s159928724265eb05">
|
|
17
|
+
<source>Add Option</source>
|
|
18
|
+
<target>Aggiungi opzione</target>
|
|
19
|
+
</trans-unit>
|
|
20
|
+
<trans-unit id="sc56e9323f076a11e">
|
|
21
|
+
<source>Text to add gaps to</source>
|
|
22
|
+
<target>Testo a cui aggiungere spazi vuoti</target>
|
|
23
|
+
</trans-unit>
|
|
24
|
+
<trans-unit id="s80dc9f56411917df">
|
|
25
|
+
<source>Text to Highlight</source>
|
|
26
|
+
<target>Testo da evidenziare</target>
|
|
27
|
+
</trans-unit>
|
|
28
|
+
<trans-unit id="s1b23c41934894f30">
|
|
29
|
+
<source>Explanation</source>
|
|
30
|
+
<target>Spiegazione</target>
|
|
31
|
+
</trans-unit>
|
|
32
|
+
<trans-unit id="sd26e8d4eef55e341">
|
|
33
|
+
<source>Check your answers</source>
|
|
34
|
+
<target>Controllare le risposte</target>
|
|
35
|
+
</trans-unit>
|
|
36
|
+
<trans-unit id="scd1dd6ff53d0d01a">
|
|
37
|
+
<source>Try again</source>
|
|
38
|
+
<target>Riprova</target>
|
|
39
|
+
</trans-unit>
|
|
40
|
+
<trans-unit id="sb3d4f79d9d8b71e5">
|
|
41
|
+
<source>Submit</source>
|
|
42
|
+
<target>Invia</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>
|
|
@@ -0,0 +1,54 @@
|
|
|
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="ja">
|
|
3
|
+
<body>
|
|
4
|
+
<trans-unit id="s4802e47fe2e95134">
|
|
5
|
+
<source>Option</source>
|
|
6
|
+
<target>オプション</target>
|
|
7
|
+
</trans-unit>
|
|
8
|
+
<trans-unit id="s85ea99fb52be3385">
|
|
9
|
+
<source>True</source>
|
|
10
|
+
<target>真</target>
|
|
11
|
+
</trans-unit>
|
|
12
|
+
<trans-unit id="s7254ca27b16ae2d8">
|
|
13
|
+
<source>False</source>
|
|
14
|
+
<target>偽</target>
|
|
15
|
+
</trans-unit>
|
|
16
|
+
<trans-unit id="s159928724265eb05">
|
|
17
|
+
<source>Add Option</source>
|
|
18
|
+
<target>オプション追加</target>
|
|
19
|
+
</trans-unit>
|
|
20
|
+
<trans-unit id="sc56e9323f076a11e">
|
|
21
|
+
<source>Text to add gaps to</source>
|
|
22
|
+
<target>ギャップを追加するテキスト</target>
|
|
23
|
+
</trans-unit>
|
|
24
|
+
<trans-unit id="s80dc9f56411917df">
|
|
25
|
+
<source>Text to Highlight</source>
|
|
26
|
+
<target>ハイライトするテキスト</target>
|
|
27
|
+
</trans-unit>
|
|
28
|
+
<trans-unit id="s1b23c41934894f30">
|
|
29
|
+
<source>Explanation</source>
|
|
30
|
+
<target>説明</target>
|
|
31
|
+
</trans-unit>
|
|
32
|
+
<trans-unit id="sd26e8d4eef55e341">
|
|
33
|
+
<source>Check your answers</source>
|
|
34
|
+
<target>答えをチェックする</target>
|
|
35
|
+
</trans-unit>
|
|
36
|
+
<trans-unit id="scd1dd6ff53d0d01a">
|
|
37
|
+
<source>Try again</source>
|
|
38
|
+
<target>再試行</target>
|
|
39
|
+
</trans-unit>
|
|
40
|
+
<trans-unit id="sb3d4f79d9d8b71e5">
|
|
41
|
+
<source>Submit</source>
|
|
42
|
+
<target>投稿する</target>
|
|
43
|
+
</trans-unit>
|
|
44
|
+
<trans-unit id="s255857544a9d5ec0">
|
|
45
|
+
<source>Reset</source>
|
|
46
|
+
<target>リセット</target>
|
|
47
|
+
</trans-unit>
|
|
48
|
+
<trans-unit id="s54393bfa280ea55b">
|
|
49
|
+
<source>Prompt</source>
|
|
50
|
+
<target>プロンプト</target>
|
|
51
|
+
</trans-unit>
|
|
52
|
+
</body>
|
|
53
|
+
</file>
|
|
54
|
+
</xliff>
|
|
@@ -0,0 +1,54 @@
|
|
|
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="ko">
|
|
3
|
+
<body>
|
|
4
|
+
<trans-unit id="s4802e47fe2e95134">
|
|
5
|
+
<source>Option</source>
|
|
6
|
+
<target>옵션</target>
|
|
7
|
+
</trans-unit>
|
|
8
|
+
<trans-unit id="s85ea99fb52be3385">
|
|
9
|
+
<source>True</source>
|
|
10
|
+
<target>True</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>옵션 추가</target>
|
|
19
|
+
</trans-unit>
|
|
20
|
+
<trans-unit id="sc56e9323f076a11e">
|
|
21
|
+
<source>Text to add gaps to</source>
|
|
22
|
+
<target>공백을 추가할 텍스트</target>
|
|
23
|
+
</trans-unit>
|
|
24
|
+
<trans-unit id="s80dc9f56411917df">
|
|
25
|
+
<source>Text to Highlight</source>
|
|
26
|
+
<target>강조 표시할 텍스트</target>
|
|
27
|
+
</trans-unit>
|
|
28
|
+
<trans-unit id="s1b23c41934894f30">
|
|
29
|
+
<source>Explanation</source>
|
|
30
|
+
<target>설명</target>
|
|
31
|
+
</trans-unit>
|
|
32
|
+
<trans-unit id="sd26e8d4eef55e341">
|
|
33
|
+
<source>Check your answers</source>
|
|
34
|
+
<target>답변 확인</target>
|
|
35
|
+
</trans-unit>
|
|
36
|
+
<trans-unit id="scd1dd6ff53d0d01a">
|
|
37
|
+
<source>Try again</source>
|
|
38
|
+
<target>다시 시도</target>
|
|
39
|
+
</trans-unit>
|
|
40
|
+
<trans-unit id="sb3d4f79d9d8b71e5">
|
|
41
|
+
<source>Submit</source>
|
|
42
|
+
<target>제출하기</target>
|
|
43
|
+
</trans-unit>
|
|
44
|
+
<trans-unit id="s255857544a9d5ec0">
|
|
45
|
+
<source>Reset</source>
|
|
46
|
+
<target>초기화</target>
|
|
47
|
+
</trans-unit>
|
|
48
|
+
<trans-unit id="s54393bfa280ea55b">
|
|
49
|
+
<source>Prompt</source>
|
|
50
|
+
<target>프롬프트</target>
|
|
51
|
+
</trans-unit>
|
|
52
|
+
</body>
|
|
53
|
+
</file>
|
|
54
|
+
</xliff>
|
|
@@ -0,0 +1,54 @@
|
|
|
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="lt">
|
|
3
|
+
<body>
|
|
4
|
+
<trans-unit id="s4802e47fe2e95134">
|
|
5
|
+
<source>Option</source>
|
|
6
|
+
<target>Galimybė</target>
|
|
7
|
+
</trans-unit>
|
|
8
|
+
<trans-unit id="s85ea99fb52be3385">
|
|
9
|
+
<source>True</source>
|
|
10
|
+
<target>Tiesa</target>
|
|
11
|
+
</trans-unit>
|
|
12
|
+
<trans-unit id="s7254ca27b16ae2d8">
|
|
13
|
+
<source>False</source>
|
|
14
|
+
<target>Klaidingas</target>
|
|
15
|
+
</trans-unit>
|
|
16
|
+
<trans-unit id="s159928724265eb05">
|
|
17
|
+
<source>Add Option</source>
|
|
18
|
+
<target>Pridėti parinktį</target>
|
|
19
|
+
</trans-unit>
|
|
20
|
+
<trans-unit id="sc56e9323f076a11e">
|
|
21
|
+
<source>Text to add gaps to</source>
|
|
22
|
+
<target>Tekstas, prie kurio pridedami tarpai</target>
|
|
23
|
+
</trans-unit>
|
|
24
|
+
<trans-unit id="s80dc9f56411917df">
|
|
25
|
+
<source>Text to Highlight</source>
|
|
26
|
+
<target>Teksto paryškinimas</target>
|
|
27
|
+
</trans-unit>
|
|
28
|
+
<trans-unit id="s1b23c41934894f30">
|
|
29
|
+
<source>Explanation</source>
|
|
30
|
+
<target>Paaiškinimas</target>
|
|
31
|
+
</trans-unit>
|
|
32
|
+
<trans-unit id="sd26e8d4eef55e341">
|
|
33
|
+
<source>Check your answers</source>
|
|
34
|
+
<target>Patikrinkite savo atsakymus</target>
|
|
35
|
+
</trans-unit>
|
|
36
|
+
<trans-unit id="scd1dd6ff53d0d01a">
|
|
37
|
+
<source>Try again</source>
|
|
38
|
+
<target>Pabandykite dar kartą</target>
|
|
39
|
+
</trans-unit>
|
|
40
|
+
<trans-unit id="sb3d4f79d9d8b71e5">
|
|
41
|
+
<source>Submit</source>
|
|
42
|
+
<target>Pateikti</target>
|
|
43
|
+
</trans-unit>
|
|
44
|
+
<trans-unit id="s255857544a9d5ec0">
|
|
45
|
+
<source>Reset</source>
|
|
46
|
+
<target>Iš naujo nustatyti</target>
|
|
47
|
+
</trans-unit>
|
|
48
|
+
<trans-unit id="s54393bfa280ea55b">
|
|
49
|
+
<source>Prompt</source>
|
|
50
|
+
<target>Paraginimas</target>
|
|
51
|
+
</trans-unit>
|
|
52
|
+
</body>
|
|
53
|
+
</file>
|
|
54
|
+
</xliff>
|
|
@@ -0,0 +1,54 @@
|
|
|
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="lv">
|
|
3
|
+
<body>
|
|
4
|
+
<trans-unit id="s4802e47fe2e95134">
|
|
5
|
+
<source>Option</source>
|
|
6
|
+
<target>Iespēja</target>
|
|
7
|
+
</trans-unit>
|
|
8
|
+
<trans-unit id="s85ea99fb52be3385">
|
|
9
|
+
<source>True</source>
|
|
10
|
+
<target>True</target>
|
|
11
|
+
</trans-unit>
|
|
12
|
+
<trans-unit id="s7254ca27b16ae2d8">
|
|
13
|
+
<source>False</source>
|
|
14
|
+
<target>Viltus</target>
|
|
15
|
+
</trans-unit>
|
|
16
|
+
<trans-unit id="s159928724265eb05">
|
|
17
|
+
<source>Add Option</source>
|
|
18
|
+
<target>Pievienot iespēju</target>
|
|
19
|
+
</trans-unit>
|
|
20
|
+
<trans-unit id="sc56e9323f076a11e">
|
|
21
|
+
<source>Text to add gaps to</source>
|
|
22
|
+
<target>Teksts, kam pievienot atstarpes</target>
|
|
23
|
+
</trans-unit>
|
|
24
|
+
<trans-unit id="s80dc9f56411917df">
|
|
25
|
+
<source>Text to Highlight</source>
|
|
26
|
+
<target>Teksta izcelšana</target>
|
|
27
|
+
</trans-unit>
|
|
28
|
+
<trans-unit id="s1b23c41934894f30">
|
|
29
|
+
<source>Explanation</source>
|
|
30
|
+
<target>Paskaidrojums</target>
|
|
31
|
+
</trans-unit>
|
|
32
|
+
<trans-unit id="sd26e8d4eef55e341">
|
|
33
|
+
<source>Check your answers</source>
|
|
34
|
+
<target>Pārbaudiet savas atbildes</target>
|
|
35
|
+
</trans-unit>
|
|
36
|
+
<trans-unit id="scd1dd6ff53d0d01a">
|
|
37
|
+
<source>Try again</source>
|
|
38
|
+
<target>Mēģiniet vēlreiz</target>
|
|
39
|
+
</trans-unit>
|
|
40
|
+
<trans-unit id="sb3d4f79d9d8b71e5">
|
|
41
|
+
<source>Submit</source>
|
|
42
|
+
<target>Iesniegt</target>
|
|
43
|
+
</trans-unit>
|
|
44
|
+
<trans-unit id="s255857544a9d5ec0">
|
|
45
|
+
<source>Reset</source>
|
|
46
|
+
<target>Atiestatīt</target>
|
|
47
|
+
</trans-unit>
|
|
48
|
+
<trans-unit id="s54393bfa280ea55b">
|
|
49
|
+
<source>Prompt</source>
|
|
50
|
+
<target>Uzaicinājums</target>
|
|
51
|
+
</trans-unit>
|
|
52
|
+
</body>
|
|
53
|
+
</file>
|
|
54
|
+
</xliff>
|
|
@@ -0,0 +1,54 @@
|
|
|
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="nb">
|
|
3
|
+
<body>
|
|
4
|
+
<trans-unit id="s4802e47fe2e95134">
|
|
5
|
+
<source>Option</source>
|
|
6
|
+
<target>Alternativ</target>
|
|
7
|
+
</trans-unit>
|
|
8
|
+
<trans-unit id="s85ea99fb52be3385">
|
|
9
|
+
<source>True</source>
|
|
10
|
+
<target>Sant</target>
|
|
11
|
+
</trans-unit>
|
|
12
|
+
<trans-unit id="s7254ca27b16ae2d8">
|
|
13
|
+
<source>False</source>
|
|
14
|
+
<target>Falsk</target>
|
|
15
|
+
</trans-unit>
|
|
16
|
+
<trans-unit id="s159928724265eb05">
|
|
17
|
+
<source>Add Option</source>
|
|
18
|
+
<target>Legg til alternativ</target>
|
|
19
|
+
</trans-unit>
|
|
20
|
+
<trans-unit id="sc56e9323f076a11e">
|
|
21
|
+
<source>Text to add gaps to</source>
|
|
22
|
+
<target>Tekst for å legge til mellomrom</target>
|
|
23
|
+
</trans-unit>
|
|
24
|
+
<trans-unit id="s80dc9f56411917df">
|
|
25
|
+
<source>Text to Highlight</source>
|
|
26
|
+
<target>Tekst som skal fremheves</target>
|
|
27
|
+
</trans-unit>
|
|
28
|
+
<trans-unit id="s1b23c41934894f30">
|
|
29
|
+
<source>Explanation</source>
|
|
30
|
+
<target>Forklaring</target>
|
|
31
|
+
</trans-unit>
|
|
32
|
+
<trans-unit id="sd26e8d4eef55e341">
|
|
33
|
+
<source>Check your answers</source>
|
|
34
|
+
<target>Sjekk svarene dine</target>
|
|
35
|
+
</trans-unit>
|
|
36
|
+
<trans-unit id="scd1dd6ff53d0d01a">
|
|
37
|
+
<source>Try again</source>
|
|
38
|
+
<target>Prøv igjen</target>
|
|
39
|
+
</trans-unit>
|
|
40
|
+
<trans-unit id="sb3d4f79d9d8b71e5">
|
|
41
|
+
<source>Submit</source>
|
|
42
|
+
<target>Send inn</target>
|
|
43
|
+
</trans-unit>
|
|
44
|
+
<trans-unit id="s255857544a9d5ec0">
|
|
45
|
+
<source>Reset</source>
|
|
46
|
+
<target>Tilbakestill</target>
|
|
47
|
+
</trans-unit>
|
|
48
|
+
<trans-unit id="s54393bfa280ea55b">
|
|
49
|
+
<source>Prompt</source>
|
|
50
|
+
<target>Spør</target>
|
|
51
|
+
</trans-unit>
|
|
52
|
+
</body>
|
|
53
|
+
</file>
|
|
54
|
+
</xliff>
|
|
@@ -0,0 +1,54 @@
|
|
|
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="nl">
|
|
3
|
+
<body>
|
|
4
|
+
<trans-unit id="s4802e47fe2e95134">
|
|
5
|
+
<source>Option</source>
|
|
6
|
+
<target>Optie</target>
|
|
7
|
+
</trans-unit>
|
|
8
|
+
<trans-unit id="s85ea99fb52be3385">
|
|
9
|
+
<source>True</source>
|
|
10
|
+
<target>Echt</target>
|
|
11
|
+
</trans-unit>
|
|
12
|
+
<trans-unit id="s7254ca27b16ae2d8">
|
|
13
|
+
<source>False</source>
|
|
14
|
+
<target>Valse</target>
|
|
15
|
+
</trans-unit>
|
|
16
|
+
<trans-unit id="s159928724265eb05">
|
|
17
|
+
<source>Add Option</source>
|
|
18
|
+
<target>Optie toevoegen</target>
|
|
19
|
+
</trans-unit>
|
|
20
|
+
<trans-unit id="sc56e9323f076a11e">
|
|
21
|
+
<source>Text to add gaps to</source>
|
|
22
|
+
<target>Tekst om gaten aan toe te voegen</target>
|
|
23
|
+
</trans-unit>
|
|
24
|
+
<trans-unit id="s80dc9f56411917df">
|
|
25
|
+
<source>Text to Highlight</source>
|
|
26
|
+
<target>Te markeren tekst</target>
|
|
27
|
+
</trans-unit>
|
|
28
|
+
<trans-unit id="s1b23c41934894f30">
|
|
29
|
+
<source>Explanation</source>
|
|
30
|
+
<target>Uitleg</target>
|
|
31
|
+
</trans-unit>
|
|
32
|
+
<trans-unit id="sd26e8d4eef55e341">
|
|
33
|
+
<source>Check your answers</source>
|
|
34
|
+
<target>Controleer je antwoorden</target>
|
|
35
|
+
</trans-unit>
|
|
36
|
+
<trans-unit id="scd1dd6ff53d0d01a">
|
|
37
|
+
<source>Try again</source>
|
|
38
|
+
<target>Probeer het opnieuw</target>
|
|
39
|
+
</trans-unit>
|
|
40
|
+
<trans-unit id="sb3d4f79d9d8b71e5">
|
|
41
|
+
<source>Submit</source>
|
|
42
|
+
<target>Stuur in</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>
|
|
@@ -0,0 +1,54 @@
|
|
|
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="pl">
|
|
3
|
+
<body>
|
|
4
|
+
<trans-unit id="s4802e47fe2e95134">
|
|
5
|
+
<source>Option</source>
|
|
6
|
+
<target>Opcja</target>
|
|
7
|
+
</trans-unit>
|
|
8
|
+
<trans-unit id="s85ea99fb52be3385">
|
|
9
|
+
<source>True</source>
|
|
10
|
+
<target>Prawda</target>
|
|
11
|
+
</trans-unit>
|
|
12
|
+
<trans-unit id="s7254ca27b16ae2d8">
|
|
13
|
+
<source>False</source>
|
|
14
|
+
<target>Fałsz</target>
|
|
15
|
+
</trans-unit>
|
|
16
|
+
<trans-unit id="s159928724265eb05">
|
|
17
|
+
<source>Add Option</source>
|
|
18
|
+
<target>Dodaj opcję</target>
|
|
19
|
+
</trans-unit>
|
|
20
|
+
<trans-unit id="sc56e9323f076a11e">
|
|
21
|
+
<source>Text to add gaps to</source>
|
|
22
|
+
<target>Tekst do dodania przerw</target>
|
|
23
|
+
</trans-unit>
|
|
24
|
+
<trans-unit id="s80dc9f56411917df">
|
|
25
|
+
<source>Text to Highlight</source>
|
|
26
|
+
<target>Tekst do podświetlenia</target>
|
|
27
|
+
</trans-unit>
|
|
28
|
+
<trans-unit id="s1b23c41934894f30">
|
|
29
|
+
<source>Explanation</source>
|
|
30
|
+
<target>Wyjaśnienie</target>
|
|
31
|
+
</trans-unit>
|
|
32
|
+
<trans-unit id="sd26e8d4eef55e341">
|
|
33
|
+
<source>Check your answers</source>
|
|
34
|
+
<target>Sprawdź swoje odpowiedzi</target>
|
|
35
|
+
</trans-unit>
|
|
36
|
+
<trans-unit id="scd1dd6ff53d0d01a">
|
|
37
|
+
<source>Try again</source>
|
|
38
|
+
<target>Spróbuj ponownie</target>
|
|
39
|
+
</trans-unit>
|
|
40
|
+
<trans-unit id="sb3d4f79d9d8b71e5">
|
|
41
|
+
<source>Submit</source>
|
|
42
|
+
<target>Prześlij</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>Podpowiedź</target>
|
|
51
|
+
</trans-unit>
|
|
52
|
+
</body>
|
|
53
|
+
</file>
|
|
54
|
+
</xliff>
|
|
@@ -0,0 +1,54 @@
|
|
|
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="pt-BR">
|
|
3
|
+
<body>
|
|
4
|
+
<trans-unit id="s4802e47fe2e95134">
|
|
5
|
+
<source>Option</source>
|
|
6
|
+
<target>Opção</target>
|
|
7
|
+
</trans-unit>
|
|
8
|
+
<trans-unit id="s85ea99fb52be3385">
|
|
9
|
+
<source>True</source>
|
|
10
|
+
<target>Verdadeiro</target>
|
|
11
|
+
</trans-unit>
|
|
12
|
+
<trans-unit id="s7254ca27b16ae2d8">
|
|
13
|
+
<source>False</source>
|
|
14
|
+
<target>Falso</target>
|
|
15
|
+
</trans-unit>
|
|
16
|
+
<trans-unit id="s159928724265eb05">
|
|
17
|
+
<source>Add Option</source>
|
|
18
|
+
<target>Adicionar opção</target>
|
|
19
|
+
</trans-unit>
|
|
20
|
+
<trans-unit id="sc56e9323f076a11e">
|
|
21
|
+
<source>Text to add gaps to</source>
|
|
22
|
+
<target>Texto para adicionar lacunas</target>
|
|
23
|
+
</trans-unit>
|
|
24
|
+
<trans-unit id="s80dc9f56411917df">
|
|
25
|
+
<source>Text to Highlight</source>
|
|
26
|
+
<target>Texto para destacar</target>
|
|
27
|
+
</trans-unit>
|
|
28
|
+
<trans-unit id="s1b23c41934894f30">
|
|
29
|
+
<source>Explanation</source>
|
|
30
|
+
<target>Explicação</target>
|
|
31
|
+
</trans-unit>
|
|
32
|
+
<trans-unit id="sd26e8d4eef55e341">
|
|
33
|
+
<source>Check your answers</source>
|
|
34
|
+
<target>Verifique suas respostas</target>
|
|
35
|
+
</trans-unit>
|
|
36
|
+
<trans-unit id="scd1dd6ff53d0d01a">
|
|
37
|
+
<source>Try again</source>
|
|
38
|
+
<target>Tente novamente</target>
|
|
39
|
+
</trans-unit>
|
|
40
|
+
<trans-unit id="sb3d4f79d9d8b71e5">
|
|
41
|
+
<source>Submit</source>
|
|
42
|
+
<target>Enviar</target>
|
|
43
|
+
</trans-unit>
|
|
44
|
+
<trans-unit id="s255857544a9d5ec0">
|
|
45
|
+
<source>Reset</source>
|
|
46
|
+
<target>Redefinir</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>
|