@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
package/localization/nl.xlf
CHANGED
|
@@ -1,54 +1,69 @@
|
|
|
1
|
-
<xliff xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 http://docs.oasis-open.org/xliff/v1.2/os/xliff-core-1.2-strict.xsd" xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
|
|
2
|
-
<file original="lit-localize-inputs" datatype="plaintext" source-language="en" target-language="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
|
-
|
|
53
|
-
</
|
|
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
|
+
<trans-unit id="sb0aadaa04e658ad6">
|
|
53
|
+
<source>Choice</source>
|
|
54
|
+
</trans-unit>
|
|
55
|
+
<trans-unit id="s2ba5f4d8f3bd7c57">
|
|
56
|
+
<source>Order</source>
|
|
57
|
+
</trans-unit>
|
|
58
|
+
<trans-unit id="s2492f5fb1b05b45e">
|
|
59
|
+
<source>Text</source>
|
|
60
|
+
</trans-unit>
|
|
61
|
+
<trans-unit id="s49c940aecfef3ea0">
|
|
62
|
+
<source>Mark</source>
|
|
63
|
+
</trans-unit>
|
|
64
|
+
<trans-unit id="saa3efba1f0c816b7">
|
|
65
|
+
<source>Speech</source>
|
|
66
|
+
</trans-unit>
|
|
67
|
+
</body>
|
|
68
|
+
</file>
|
|
69
|
+
</xliff>
|
package/localization/pl.xlf
CHANGED
|
@@ -1,54 +1,69 @@
|
|
|
1
|
-
<xliff xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 http://docs.oasis-open.org/xliff/v1.2/os/xliff-core-1.2-strict.xsd" xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
|
|
2
|
-
<file original="lit-localize-inputs" datatype="plaintext" source-language="en" target-language="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
|
-
|
|
53
|
-
</
|
|
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
|
+
<trans-unit id="sb0aadaa04e658ad6">
|
|
53
|
+
<source>Choice</source>
|
|
54
|
+
</trans-unit>
|
|
55
|
+
<trans-unit id="s2ba5f4d8f3bd7c57">
|
|
56
|
+
<source>Order</source>
|
|
57
|
+
</trans-unit>
|
|
58
|
+
<trans-unit id="s2492f5fb1b05b45e">
|
|
59
|
+
<source>Text</source>
|
|
60
|
+
</trans-unit>
|
|
61
|
+
<trans-unit id="s49c940aecfef3ea0">
|
|
62
|
+
<source>Mark</source>
|
|
63
|
+
</trans-unit>
|
|
64
|
+
<trans-unit id="saa3efba1f0c816b7">
|
|
65
|
+
<source>Speech</source>
|
|
66
|
+
</trans-unit>
|
|
67
|
+
</body>
|
|
68
|
+
</file>
|
|
69
|
+
</xliff>
|
package/localization/pt-BR.xlf
CHANGED
|
@@ -1,54 +1,69 @@
|
|
|
1
|
-
<xliff xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 http://docs.oasis-open.org/xliff/v1.2/os/xliff-core-1.2-strict.xsd" xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
|
|
2
|
-
<file original="lit-localize-inputs" datatype="plaintext" source-language="en" target-language="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
|
-
|
|
53
|
-
</
|
|
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
|
+
<trans-unit id="sb0aadaa04e658ad6">
|
|
53
|
+
<source>Choice</source>
|
|
54
|
+
</trans-unit>
|
|
55
|
+
<trans-unit id="s2ba5f4d8f3bd7c57">
|
|
56
|
+
<source>Order</source>
|
|
57
|
+
</trans-unit>
|
|
58
|
+
<trans-unit id="s2492f5fb1b05b45e">
|
|
59
|
+
<source>Text</source>
|
|
60
|
+
</trans-unit>
|
|
61
|
+
<trans-unit id="s49c940aecfef3ea0">
|
|
62
|
+
<source>Mark</source>
|
|
63
|
+
</trans-unit>
|
|
64
|
+
<trans-unit id="saa3efba1f0c816b7">
|
|
65
|
+
<source>Speech</source>
|
|
66
|
+
</trans-unit>
|
|
67
|
+
</body>
|
|
68
|
+
</file>
|
|
69
|
+
</xliff>
|
package/localization/pt-PT.xlf
CHANGED
|
@@ -1,54 +1,69 @@
|
|
|
1
|
-
<xliff xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 http://docs.oasis-open.org/xliff/v1.2/os/xliff-core-1.2-strict.xsd" xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
|
|
2
|
-
<file original="lit-localize-inputs" datatype="plaintext" source-language="en" target-language="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
|
-
|
|
53
|
-
</
|
|
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
|
+
<trans-unit id="sb0aadaa04e658ad6">
|
|
53
|
+
<source>Choice</source>
|
|
54
|
+
</trans-unit>
|
|
55
|
+
<trans-unit id="s2ba5f4d8f3bd7c57">
|
|
56
|
+
<source>Order</source>
|
|
57
|
+
</trans-unit>
|
|
58
|
+
<trans-unit id="s2492f5fb1b05b45e">
|
|
59
|
+
<source>Text</source>
|
|
60
|
+
</trans-unit>
|
|
61
|
+
<trans-unit id="s49c940aecfef3ea0">
|
|
62
|
+
<source>Mark</source>
|
|
63
|
+
</trans-unit>
|
|
64
|
+
<trans-unit id="saa3efba1f0c816b7">
|
|
65
|
+
<source>Speech</source>
|
|
66
|
+
</trans-unit>
|
|
67
|
+
</body>
|
|
68
|
+
</file>
|
|
69
|
+
</xliff>
|
package/localization/ro.xlf
CHANGED
|
@@ -1,54 +1,69 @@
|
|
|
1
|
-
<xliff xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 http://docs.oasis-open.org/xliff/v1.2/os/xliff-core-1.2-strict.xsd" xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
|
|
2
|
-
<file original="lit-localize-inputs" datatype="plaintext" source-language="en" target-language="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
|
-
|
|
53
|
-
</
|
|
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
|
+
<trans-unit id="sb0aadaa04e658ad6">
|
|
53
|
+
<source>Choice</source>
|
|
54
|
+
</trans-unit>
|
|
55
|
+
<trans-unit id="s2ba5f4d8f3bd7c57">
|
|
56
|
+
<source>Order</source>
|
|
57
|
+
</trans-unit>
|
|
58
|
+
<trans-unit id="s2492f5fb1b05b45e">
|
|
59
|
+
<source>Text</source>
|
|
60
|
+
</trans-unit>
|
|
61
|
+
<trans-unit id="s49c940aecfef3ea0">
|
|
62
|
+
<source>Mark</source>
|
|
63
|
+
</trans-unit>
|
|
64
|
+
<trans-unit id="saa3efba1f0c816b7">
|
|
65
|
+
<source>Speech</source>
|
|
66
|
+
</trans-unit>
|
|
67
|
+
</body>
|
|
68
|
+
</file>
|
|
69
|
+
</xliff>
|