@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,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-PT">
|
|
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 a realçar</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 as suas respostas</target>
|
|
35
|
+
</trans-unit>
|
|
36
|
+
<trans-unit id="scd1dd6ff53d0d01a">
|
|
37
|
+
<source>Try again</source>
|
|
38
|
+
<target>Tentar 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>Reiniciar</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="ro">
|
|
3
|
+
<body>
|
|
4
|
+
<trans-unit id="s4802e47fe2e95134">
|
|
5
|
+
<source>Option</source>
|
|
6
|
+
<target>Opțiune</target>
|
|
7
|
+
</trans-unit>
|
|
8
|
+
<trans-unit id="s85ea99fb52be3385">
|
|
9
|
+
<source>True</source>
|
|
10
|
+
<target>Adevărat</target>
|
|
11
|
+
</trans-unit>
|
|
12
|
+
<trans-unit id="s7254ca27b16ae2d8">
|
|
13
|
+
<source>False</source>
|
|
14
|
+
<target>Fals</target>
|
|
15
|
+
</trans-unit>
|
|
16
|
+
<trans-unit id="s159928724265eb05">
|
|
17
|
+
<source>Add Option</source>
|
|
18
|
+
<target>Adaugă opțiune</target>
|
|
19
|
+
</trans-unit>
|
|
20
|
+
<trans-unit id="sc56e9323f076a11e">
|
|
21
|
+
<source>Text to add gaps to</source>
|
|
22
|
+
<target>Text la care să adăugați spații libere</target>
|
|
23
|
+
</trans-unit>
|
|
24
|
+
<trans-unit id="s80dc9f56411917df">
|
|
25
|
+
<source>Text to Highlight</source>
|
|
26
|
+
<target>Text pentru evidențiere</target>
|
|
27
|
+
</trans-unit>
|
|
28
|
+
<trans-unit id="s1b23c41934894f30">
|
|
29
|
+
<source>Explanation</source>
|
|
30
|
+
<target>Explicație</target>
|
|
31
|
+
</trans-unit>
|
|
32
|
+
<trans-unit id="sd26e8d4eef55e341">
|
|
33
|
+
<source>Check your answers</source>
|
|
34
|
+
<target>Verifică-ți răspunsurile</target>
|
|
35
|
+
</trans-unit>
|
|
36
|
+
<trans-unit id="scd1dd6ff53d0d01a">
|
|
37
|
+
<source>Try again</source>
|
|
38
|
+
<target>Încercați din nou</target>
|
|
39
|
+
</trans-unit>
|
|
40
|
+
<trans-unit id="sb3d4f79d9d8b71e5">
|
|
41
|
+
<source>Submit</source>
|
|
42
|
+
<target>Trimite</target>
|
|
43
|
+
</trans-unit>
|
|
44
|
+
<trans-unit id="s255857544a9d5ec0">
|
|
45
|
+
<source>Reset</source>
|
|
46
|
+
<target>Resetare</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="ru">
|
|
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="sk">
|
|
3
|
+
<body>
|
|
4
|
+
<trans-unit id="s4802e47fe2e95134">
|
|
5
|
+
<source>Option</source>
|
|
6
|
+
<target>Možnosť</target>
|
|
7
|
+
</trans-unit>
|
|
8
|
+
<trans-unit id="s85ea99fb52be3385">
|
|
9
|
+
<source>True</source>
|
|
10
|
+
<target>Pravda</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>Pridať možnosť</target>
|
|
19
|
+
</trans-unit>
|
|
20
|
+
<trans-unit id="sc56e9323f076a11e">
|
|
21
|
+
<source>Text to add gaps to</source>
|
|
22
|
+
<target>Text na pridanie medzier</target>
|
|
23
|
+
</trans-unit>
|
|
24
|
+
<trans-unit id="s80dc9f56411917df">
|
|
25
|
+
<source>Text to Highlight</source>
|
|
26
|
+
<target>Text na zvýraznenie</target>
|
|
27
|
+
</trans-unit>
|
|
28
|
+
<trans-unit id="s1b23c41934894f30">
|
|
29
|
+
<source>Explanation</source>
|
|
30
|
+
<target>Vysvetlenie</target>
|
|
31
|
+
</trans-unit>
|
|
32
|
+
<trans-unit id="sd26e8d4eef55e341">
|
|
33
|
+
<source>Check your answers</source>
|
|
34
|
+
<target>Skontrolujte svoje odpovede</target>
|
|
35
|
+
</trans-unit>
|
|
36
|
+
<trans-unit id="scd1dd6ff53d0d01a">
|
|
37
|
+
<source>Try again</source>
|
|
38
|
+
<target>Skúste to znova</target>
|
|
39
|
+
</trans-unit>
|
|
40
|
+
<trans-unit id="sb3d4f79d9d8b71e5">
|
|
41
|
+
<source>Submit</source>
|
|
42
|
+
<target>Odoslať</target>
|
|
43
|
+
</trans-unit>
|
|
44
|
+
<trans-unit id="s255857544a9d5ec0">
|
|
45
|
+
<source>Reset</source>
|
|
46
|
+
<target>Obnovenie</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="sl">
|
|
3
|
+
<body>
|
|
4
|
+
<trans-unit id="s4802e47fe2e95134">
|
|
5
|
+
<source>Option</source>
|
|
6
|
+
<target>Možnost</target>
|
|
7
|
+
</trans-unit>
|
|
8
|
+
<trans-unit id="s85ea99fb52be3385">
|
|
9
|
+
<source>True</source>
|
|
10
|
+
<target>Resnično</target>
|
|
11
|
+
</trans-unit>
|
|
12
|
+
<trans-unit id="s7254ca27b16ae2d8">
|
|
13
|
+
<source>False</source>
|
|
14
|
+
<target>Lažno</target>
|
|
15
|
+
</trans-unit>
|
|
16
|
+
<trans-unit id="s159928724265eb05">
|
|
17
|
+
<source>Add Option</source>
|
|
18
|
+
<target>Dodajanje možnosti</target>
|
|
19
|
+
</trans-unit>
|
|
20
|
+
<trans-unit id="sc56e9323f076a11e">
|
|
21
|
+
<source>Text to add gaps to</source>
|
|
22
|
+
<target>Besedilo za dodajanje presledkov</target>
|
|
23
|
+
</trans-unit>
|
|
24
|
+
<trans-unit id="s80dc9f56411917df">
|
|
25
|
+
<source>Text to Highlight</source>
|
|
26
|
+
<target>Besedilo za poudarjanje</target>
|
|
27
|
+
</trans-unit>
|
|
28
|
+
<trans-unit id="s1b23c41934894f30">
|
|
29
|
+
<source>Explanation</source>
|
|
30
|
+
<target>Razlaga:</target>
|
|
31
|
+
</trans-unit>
|
|
32
|
+
<trans-unit id="sd26e8d4eef55e341">
|
|
33
|
+
<source>Check your answers</source>
|
|
34
|
+
<target>Preverite svoje odgovore</target>
|
|
35
|
+
</trans-unit>
|
|
36
|
+
<trans-unit id="scd1dd6ff53d0d01a">
|
|
37
|
+
<source>Try again</source>
|
|
38
|
+
<target>Poskusite znova</target>
|
|
39
|
+
</trans-unit>
|
|
40
|
+
<trans-unit id="sb3d4f79d9d8b71e5">
|
|
41
|
+
<source>Submit</source>
|
|
42
|
+
<target>Pošlji</target>
|
|
43
|
+
</trans-unit>
|
|
44
|
+
<trans-unit id="s255857544a9d5ec0">
|
|
45
|
+
<source>Reset</source>
|
|
46
|
+
<target>Ponastavitev</target>
|
|
47
|
+
</trans-unit>
|
|
48
|
+
<trans-unit id="s54393bfa280ea55b">
|
|
49
|
+
<source>Prompt</source>
|
|
50
|
+
<target>Poziv</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="sv">
|
|
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>Lägg till alternativ</target>
|
|
19
|
+
</trans-unit>
|
|
20
|
+
<trans-unit id="sc56e9323f076a11e">
|
|
21
|
+
<source>Text to add gaps to</source>
|
|
22
|
+
<target>Text att lägga till luckor i</target>
|
|
23
|
+
</trans-unit>
|
|
24
|
+
<trans-unit id="s80dc9f56411917df">
|
|
25
|
+
<source>Text to Highlight</source>
|
|
26
|
+
<target>Text att lyfta fram</target>
|
|
27
|
+
</trans-unit>
|
|
28
|
+
<trans-unit id="s1b23c41934894f30">
|
|
29
|
+
<source>Explanation</source>
|
|
30
|
+
<target>Förklaring</target>
|
|
31
|
+
</trans-unit>
|
|
32
|
+
<trans-unit id="sd26e8d4eef55e341">
|
|
33
|
+
<source>Check your answers</source>
|
|
34
|
+
<target>Kontrollera dina svar</target>
|
|
35
|
+
</trans-unit>
|
|
36
|
+
<trans-unit id="scd1dd6ff53d0d01a">
|
|
37
|
+
<source>Try again</source>
|
|
38
|
+
<target>Försök igen</target>
|
|
39
|
+
</trans-unit>
|
|
40
|
+
<trans-unit id="sb3d4f79d9d8b71e5">
|
|
41
|
+
<source>Submit</source>
|
|
42
|
+
<target>Skicka in</target>
|
|
43
|
+
</trans-unit>
|
|
44
|
+
<trans-unit id="s255857544a9d5ec0">
|
|
45
|
+
<source>Reset</source>
|
|
46
|
+
<target>Återställning</target>
|
|
47
|
+
</trans-unit>
|
|
48
|
+
<trans-unit id="s54393bfa280ea55b">
|
|
49
|
+
<source>Prompt</source>
|
|
50
|
+
<target>Frågeställning</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="tr">
|
|
3
|
+
<body>
|
|
4
|
+
<trans-unit id="s4802e47fe2e95134">
|
|
5
|
+
<source>Option</source>
|
|
6
|
+
<target>Opsiyon</target>
|
|
7
|
+
</trans-unit>
|
|
8
|
+
<trans-unit id="s85ea99fb52be3385">
|
|
9
|
+
<source>True</source>
|
|
10
|
+
<target>Doğru</target>
|
|
11
|
+
</trans-unit>
|
|
12
|
+
<trans-unit id="s7254ca27b16ae2d8">
|
|
13
|
+
<source>False</source>
|
|
14
|
+
<target>Yanlış</target>
|
|
15
|
+
</trans-unit>
|
|
16
|
+
<trans-unit id="s159928724265eb05">
|
|
17
|
+
<source>Add Option</source>
|
|
18
|
+
<target>Seçenek Ekle</target>
|
|
19
|
+
</trans-unit>
|
|
20
|
+
<trans-unit id="sc56e9323f076a11e">
|
|
21
|
+
<source>Text to add gaps to</source>
|
|
22
|
+
<target>Boşluk eklenecek metin</target>
|
|
23
|
+
</trans-unit>
|
|
24
|
+
<trans-unit id="s80dc9f56411917df">
|
|
25
|
+
<source>Text to Highlight</source>
|
|
26
|
+
<target>Vurgulanacak Metin</target>
|
|
27
|
+
</trans-unit>
|
|
28
|
+
<trans-unit id="s1b23c41934894f30">
|
|
29
|
+
<source>Explanation</source>
|
|
30
|
+
<target>Açıklama</target>
|
|
31
|
+
</trans-unit>
|
|
32
|
+
<trans-unit id="sd26e8d4eef55e341">
|
|
33
|
+
<source>Check your answers</source>
|
|
34
|
+
<target>Cevaplarınızı kontrol edin</target>
|
|
35
|
+
</trans-unit>
|
|
36
|
+
<trans-unit id="scd1dd6ff53d0d01a">
|
|
37
|
+
<source>Try again</source>
|
|
38
|
+
<target>Tekrar deneyin</target>
|
|
39
|
+
</trans-unit>
|
|
40
|
+
<trans-unit id="sb3d4f79d9d8b71e5">
|
|
41
|
+
<source>Submit</source>
|
|
42
|
+
<target>Gönder</target>
|
|
43
|
+
</trans-unit>
|
|
44
|
+
<trans-unit id="s255857544a9d5ec0">
|
|
45
|
+
<source>Reset</source>
|
|
46
|
+
<target>Sıfırla</target>
|
|
47
|
+
</trans-unit>
|
|
48
|
+
<trans-unit id="s54393bfa280ea55b">
|
|
49
|
+
<source>Prompt</source>
|
|
50
|
+
<target>İstem</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="uk">
|
|
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="zh-hans">
|
|
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>
|