@webwriter/quiz 1.1.3 → 1.1.5

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.
Files changed (112) hide show
  1. package/.github/workflows/publish.yml +8 -0
  2. package/LICENSE +6 -6
  3. package/custom.d.ts +175 -175
  4. package/dist/widgets/webwriter-choice-item.js +69 -205
  5. package/dist/widgets/webwriter-choice.js +72 -205
  6. package/dist/widgets/webwriter-cloze-gap.js +74 -213
  7. package/dist/widgets/webwriter-cloze.js +71 -204
  8. package/dist/widgets/webwriter-mark.js +72 -205
  9. package/dist/widgets/webwriter-order-item.js +68 -201
  10. package/dist/widgets/webwriter-order.js +70 -197
  11. package/dist/widgets/webwriter-pairing-item.js +57 -160
  12. package/dist/widgets/webwriter-pairing.js +69 -196
  13. package/dist/widgets/webwriter-quiz.js +72 -211
  14. package/dist/widgets/webwriter-speech.js +71 -204
  15. package/dist/widgets/webwriter-task-explainer.js +57 -160
  16. package/dist/widgets/webwriter-task-hint.js +55 -158
  17. package/dist/widgets/webwriter-task-prompt.js +61 -170
  18. package/dist/widgets/webwriter-task.js +80 -205
  19. package/dist/widgets/webwriter-text.js +94 -205
  20. package/lit-localize.json +14 -14
  21. package/localization/bg.xlf +72 -69
  22. package/localization/cs.xlf +72 -69
  23. package/localization/da.xlf +72 -69
  24. package/localization/de.xlf +77 -74
  25. package/localization/el.xlf +72 -69
  26. package/localization/es.xlf +72 -69
  27. package/localization/et.xlf +72 -69
  28. package/localization/fi.xlf +72 -69
  29. package/localization/fr.xlf +72 -69
  30. package/localization/generated/bg.ts +30 -29
  31. package/localization/generated/cs.ts +30 -29
  32. package/localization/generated/da.ts +30 -29
  33. package/localization/generated/de.ts +30 -29
  34. package/localization/generated/el.ts +30 -29
  35. package/localization/generated/es.ts +30 -29
  36. package/localization/generated/et.ts +30 -29
  37. package/localization/generated/fi.ts +30 -29
  38. package/localization/generated/fr.ts +30 -29
  39. package/localization/generated/hu.ts +30 -29
  40. package/localization/generated/id.ts +30 -29
  41. package/localization/generated/index.js +2 -2
  42. package/localization/generated/it.ts +30 -29
  43. package/localization/generated/ja.ts +30 -29
  44. package/localization/generated/ko.ts +30 -29
  45. package/localization/generated/locale-codes.js +79 -79
  46. package/localization/generated/lt.ts +30 -29
  47. package/localization/generated/lv.ts +30 -29
  48. package/localization/generated/nb.ts +30 -29
  49. package/localization/generated/nl.ts +30 -29
  50. package/localization/generated/pl.ts +30 -29
  51. package/localization/generated/pt-BR.ts +30 -29
  52. package/localization/generated/pt-PT.ts +30 -29
  53. package/localization/generated/ro.ts +30 -29
  54. package/localization/generated/ru.ts +30 -29
  55. package/localization/generated/sk.ts +30 -29
  56. package/localization/generated/sl.ts +30 -29
  57. package/localization/generated/sv.ts +30 -29
  58. package/localization/generated/tr.ts +30 -29
  59. package/localization/generated/uk.ts +30 -29
  60. package/localization/generated/zh-hans.ts +30 -29
  61. package/localization/hu.xlf +72 -69
  62. package/localization/id.xlf +72 -69
  63. package/localization/it.xlf +72 -69
  64. package/localization/ja.xlf +72 -69
  65. package/localization/ko.xlf +72 -69
  66. package/localization/lt.xlf +72 -69
  67. package/localization/lv.xlf +72 -69
  68. package/localization/nb.xlf +72 -69
  69. package/localization/nl.xlf +72 -69
  70. package/localization/pl.xlf +72 -69
  71. package/localization/pt-BR.xlf +72 -69
  72. package/localization/pt-PT.xlf +72 -69
  73. package/localization/ro.xlf +72 -69
  74. package/localization/ru.xlf +72 -69
  75. package/localization/sk.xlf +72 -69
  76. package/localization/sl.xlf +72 -69
  77. package/localization/sv.xlf +72 -69
  78. package/localization/tr.xlf +72 -69
  79. package/localization/uk.xlf +72 -69
  80. package/localization/zh-hans.xlf +72 -69
  81. package/package.json +4 -3
  82. package/src/lib/combobox.ts +455 -455
  83. package/src/lib/highlighter-fill.svg +5 -5
  84. package/src/snippets/Beispiel-Choice.html +57 -57
  85. package/src/snippets/Beispiel-Mark.html +13 -13
  86. package/src/snippets/Beispiel-Order.html +52 -52
  87. package/src/snippets/Beispiel-Text.html +20 -20
  88. package/src/snippets/choice.html +7 -7
  89. package/src/snippets/cloze.html +3 -3
  90. package/src/snippets/mark.html +3 -3
  91. package/src/snippets/order.html +7 -7
  92. package/src/snippets/pairing.html +9 -9
  93. package/src/snippets/speech.html +3 -3
  94. package/src/snippets/text.html +3 -3
  95. package/src/snippets/wordsearch.html +3 -3
  96. package/src/widgets/webwriter-choice-item.ts +256 -253
  97. package/src/widgets/webwriter-choice.ts +352 -352
  98. package/src/widgets/webwriter-cloze-gap.ts +215 -215
  99. package/src/widgets/webwriter-cloze.ts +135 -135
  100. package/src/widgets/webwriter-mark.ts +431 -431
  101. package/src/widgets/webwriter-order-item.ts +440 -440
  102. package/src/widgets/webwriter-order.ts +326 -326
  103. package/src/widgets/webwriter-pairing-item.ts +160 -160
  104. package/src/widgets/webwriter-pairing.ts +192 -192
  105. package/src/widgets/webwriter-quiz.ts +281 -281
  106. package/src/widgets/webwriter-speech.ts +272 -272
  107. package/src/widgets/webwriter-task-explainer.ts +42 -42
  108. package/src/widgets/webwriter-task-hint.ts +22 -22
  109. package/src/widgets/webwriter-task-prompt.ts +23 -23
  110. package/src/widgets/webwriter-task.ts +554 -546
  111. package/src/widgets/webwriter-text.ts +176 -155
  112. package/tsconfig.json +6 -6
@@ -1,69 +1,72 @@
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
- <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>
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
+ <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
+ <trans-unit id="saf8b589e65febbd2">
68
+ <source>Save answer</source>
69
+ </trans-unit>
70
+ </body>
71
+ </file>
72
+ </xliff>
@@ -1,69 +1,72 @@
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
- <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>
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
+ <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
+ <trans-unit id="saf8b589e65febbd2">
68
+ <source>Save answer</source>
69
+ </trans-unit>
70
+ </body>
71
+ </file>
72
+ </xliff>
@@ -1,69 +1,72 @@
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
- <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>
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
+ <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
+ <trans-unit id="saf8b589e65febbd2">
68
+ <source>Save answer</source>
69
+ </trans-unit>
70
+ </body>
71
+ </file>
72
+ </xliff>
@@ -1,69 +1,72 @@
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
- <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>
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
+ <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
+ <trans-unit id="saf8b589e65febbd2">
68
+ <source>Save answer</source>
69
+ </trans-unit>
70
+ </body>
71
+ </file>
72
+ </xliff>