@webwriter/quiz 1.0.10 → 1.1.1

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 (103) hide show
  1. package/LICENSE +6 -6
  2. package/custom.d.ts +175 -175
  3. package/dist/widgets/webwriter-choice-item.js +10 -7
  4. package/dist/widgets/webwriter-choice.js +39 -6
  5. package/dist/widgets/webwriter-order-item.js +14 -11
  6. package/dist/widgets/webwriter-order.js +30 -4
  7. package/dist/widgets/webwriter-quiz.js +2 -1
  8. package/dist/widgets/webwriter-text.js +26 -9
  9. package/lit-localize.json +14 -14
  10. package/localization/bg.xlf +69 -69
  11. package/localization/cs.xlf +69 -69
  12. package/localization/da.xlf +69 -69
  13. package/localization/de.xlf +74 -74
  14. package/localization/el.xlf +69 -69
  15. package/localization/es.xlf +69 -69
  16. package/localization/et.xlf +69 -69
  17. package/localization/fi.xlf +69 -69
  18. package/localization/fr.xlf +69 -69
  19. package/localization/generated/bg.ts +29 -29
  20. package/localization/generated/cs.ts +29 -29
  21. package/localization/generated/da.ts +29 -29
  22. package/localization/generated/de.ts +29 -29
  23. package/localization/generated/el.ts +29 -29
  24. package/localization/generated/es.ts +29 -29
  25. package/localization/generated/et.ts +29 -29
  26. package/localization/generated/fi.ts +29 -29
  27. package/localization/generated/fr.ts +29 -29
  28. package/localization/generated/hu.ts +29 -29
  29. package/localization/generated/id.ts +29 -29
  30. package/localization/generated/index.js +2 -2
  31. package/localization/generated/it.ts +29 -29
  32. package/localization/generated/ja.ts +29 -29
  33. package/localization/generated/ko.ts +29 -29
  34. package/localization/generated/locale-codes.js +79 -79
  35. package/localization/generated/lt.ts +29 -29
  36. package/localization/generated/lv.ts +29 -29
  37. package/localization/generated/nb.ts +29 -29
  38. package/localization/generated/nl.ts +29 -29
  39. package/localization/generated/pl.ts +29 -29
  40. package/localization/generated/pt-BR.ts +29 -29
  41. package/localization/generated/pt-PT.ts +29 -29
  42. package/localization/generated/ro.ts +29 -29
  43. package/localization/generated/ru.ts +29 -29
  44. package/localization/generated/sk.ts +29 -29
  45. package/localization/generated/sl.ts +29 -29
  46. package/localization/generated/sv.ts +29 -29
  47. package/localization/generated/tr.ts +29 -29
  48. package/localization/generated/uk.ts +29 -29
  49. package/localization/generated/zh-hans.ts +29 -29
  50. package/localization/hu.xlf +69 -69
  51. package/localization/id.xlf +69 -69
  52. package/localization/it.xlf +69 -69
  53. package/localization/ja.xlf +69 -69
  54. package/localization/ko.xlf +69 -69
  55. package/localization/lt.xlf +69 -69
  56. package/localization/lv.xlf +69 -69
  57. package/localization/nb.xlf +69 -69
  58. package/localization/nl.xlf +69 -69
  59. package/localization/pl.xlf +69 -69
  60. package/localization/pt-BR.xlf +69 -69
  61. package/localization/pt-PT.xlf +69 -69
  62. package/localization/ro.xlf +69 -69
  63. package/localization/ru.xlf +69 -69
  64. package/localization/sk.xlf +69 -69
  65. package/localization/sl.xlf +69 -69
  66. package/localization/sv.xlf +69 -69
  67. package/localization/tr.xlf +69 -69
  68. package/localization/uk.xlf +69 -69
  69. package/localization/zh-hans.xlf +69 -69
  70. package/package.json +7 -2
  71. package/src/lib/combobox.ts +455 -455
  72. package/src/lib/highlighter-fill.svg +5 -5
  73. package/src/snippets/Beispiel-Choice.html +57 -57
  74. package/src/snippets/Beispiel-Mark.html +13 -13
  75. package/src/snippets/Beispiel-Order.html +52 -52
  76. package/src/snippets/Beispiel-Text.html +20 -20
  77. package/src/snippets/blank.html +1 -0
  78. package/src/snippets/choice.html +7 -7
  79. package/src/snippets/cloze.html +3 -3
  80. package/src/snippets/mark.html +3 -3
  81. package/src/snippets/order.html +7 -7
  82. package/src/snippets/pairing.html +9 -9
  83. package/src/snippets/speech.html +3 -3
  84. package/src/snippets/text.html +3 -3
  85. package/src/snippets/wordsearch.html +3 -3
  86. package/src/widgets/webwriter-choice-item.ts +253 -250
  87. package/src/widgets/webwriter-choice.ts +339 -314
  88. package/src/widgets/webwriter-cloze-gap.ts +215 -215
  89. package/src/widgets/webwriter-cloze.ts +135 -135
  90. package/src/widgets/webwriter-mark.ts +431 -431
  91. package/src/widgets/webwriter-order-item.ts +440 -437
  92. package/src/widgets/webwriter-order.ts +311 -284
  93. package/src/widgets/webwriter-pairing-item.ts +160 -160
  94. package/src/widgets/webwriter-pairing.ts +192 -192
  95. package/src/widgets/webwriter-quiz.ts +282 -281
  96. package/src/widgets/webwriter-speech.ts +272 -272
  97. package/src/widgets/webwriter-task-explainer.ts +42 -42
  98. package/src/widgets/webwriter-task-hint.ts +22 -22
  99. package/src/widgets/webwriter-task-prompt.ts +23 -23
  100. package/src/widgets/webwriter-task.ts +546 -546
  101. package/src/widgets/webwriter-text.ts +155 -135
  102. package/tsconfig.json +6 -6
  103. package/.env +0 -1
@@ -4577,7 +4577,7 @@ function shuffle(a5) {
4577
4577
  }
4578
4578
  return a5;
4579
4579
  }
4580
- var _solution_dec, _items_dec, _itemsSlot_dec, _hideOrderButtons_dec, _layout_dec, _a2, _WebwriterOrder_decorators, _init2, _itemsSlot, _items, _solution;
4580
+ var _solution_dec, _items_dec, _itemsSlot_dec, _showSolution_dec, _hideOrderButtons_dec, _layout_dec, _a2, _WebwriterOrder_decorators, _init2, _showSolution, _itemsSlot, _items, _solution;
4581
4581
  _WebwriterOrder_decorators = [t4("webwriter-order")];
4582
4582
  var WebwriterOrder = class extends (_a2 = LitElementWw, _layout_dec = [n5({ type: String, attribute: true, reflect: true }), option({
4583
4583
  type: "select",
@@ -4585,18 +4585,22 @@ var WebwriterOrder = class extends (_a2 = LitElementWw, _layout_dec = [n5({ type
4585
4585
  { value: "list", label: { "en": "List" } },
4586
4586
  { value: "tiles", label: { "en": "Tiles" } }
4587
4587
  ]
4588
- })], _hideOrderButtons_dec = [n5({ type: Boolean, attribute: true, reflect: true }), option({ type: Boolean, label: { _: "Hide order buttons" } })], _itemsSlot_dec = [e6("#items-slot")], _items_dec = [o6()], _solution_dec = [n5({ attribute: false })], _a2) {
4588
+ })], _hideOrderButtons_dec = [n5({ type: Boolean, attribute: true, reflect: true }), option({ type: Boolean, label: { "en": "Hide order buttons", "de": "Pfeile zum Verschieben verstecken" } })], _showSolution_dec = [n5({ type: Boolean, attribute: true, reflect: true }), option({
4589
+ type: Boolean,
4590
+ label: { "en": "show Solution", "de": "L\xF6sung anzeigen" }
4591
+ })], _itemsSlot_dec = [e6("#items-slot")], _items_dec = [o6()], _solution_dec = [n5({ attribute: false })], _a2) {
4589
4592
  constructor() {
4590
4593
  super(...arguments);
4591
4594
  __runInitializers(_init2, 5, this);
4592
4595
  __publicField(this, "localize", generated_default);
4596
+ __privateAdd(this, _showSolution, __runInitializers(_init2, 8, this, true)), __runInitializers(_init2, 11, this);
4593
4597
  __publicField(this, "observer");
4594
4598
  __publicField(this, "orderSheet", new CSSStyleSheet());
4595
4599
  __publicField(this, "clearDropPreviews", () => {
4596
4600
  this.items.forEach((item) => item.dropPreview = void 0);
4597
4601
  });
4598
- __privateAdd(this, _itemsSlot, __runInitializers(_init2, 8, this)), __runInitializers(_init2, 11, this);
4599
- __privateAdd(this, _items, __runInitializers(_init2, 12, this)), __runInitializers(_init2, 15, this);
4602
+ __privateAdd(this, _itemsSlot, __runInitializers(_init2, 12, this)), __runInitializers(_init2, 15, this);
4603
+ __privateAdd(this, _items, __runInitializers(_init2, 16, this)), __runInitializers(_init2, 19, this);
4600
4604
  __publicField(this, "handleMove", (e10) => {
4601
4605
  const elem = e10.target;
4602
4606
  const children = Array.from(this.children);
@@ -4697,11 +4701,31 @@ var WebwriterOrder = class extends (_a2 = LitElementWw, _layout_dec = [n5({ type
4697
4701
  }
4698
4702
  }
4699
4703
  reportSolution() {
4704
+ console.log(this.solution, this.items);
4700
4705
  this.solution.forEach((id, i7) => this.querySelector(`#${id}`).validOrder = i7);
4706
+ if (!this.showSolution) {
4707
+ this.items.forEach((item) => {
4708
+ console.log(item.validOrder, this.solution.indexOf(item.id));
4709
+ if (this.items.indexOf(item) != this.solution.indexOf(item.id)) {
4710
+ this.items.forEach((i7) => {
4711
+ i7.showSolution = false;
4712
+ });
4713
+ }
4714
+ });
4715
+ }
4716
+ this.items.forEach((item) => {
4717
+ item.style.pointerEvents = "none";
4718
+ });
4701
4719
  }
4702
4720
  reset() {
4703
4721
  this.solution = void 0;
4704
4722
  this.shuffleItems();
4723
+ this.items.forEach((item) => {
4724
+ item.style.pointerEvents = "auto";
4725
+ });
4726
+ }
4727
+ firstUpdated(_changedProperties) {
4728
+ this.showSolution = this.showSolution;
4705
4729
  }
4706
4730
  render() {
4707
4731
  return x`
@@ -4713,11 +4737,13 @@ var WebwriterOrder = class extends (_a2 = LitElementWw, _layout_dec = [n5({ type
4713
4737
  }
4714
4738
  };
4715
4739
  _init2 = __decoratorStart(_a2);
4740
+ _showSolution = new WeakMap();
4716
4741
  _itemsSlot = new WeakMap();
4717
4742
  _items = new WeakMap();
4718
4743
  _solution = new WeakMap();
4719
4744
  __decorateElement(_init2, 3, "layout", _layout_dec, WebwriterOrder);
4720
4745
  __decorateElement(_init2, 3, "hideOrderButtons", _hideOrderButtons_dec, WebwriterOrder);
4746
+ __decorateElement(_init2, 4, "showSolution", _showSolution_dec, WebwriterOrder, _showSolution);
4721
4747
  __decorateElement(_init2, 4, "itemsSlot", _itemsSlot_dec, WebwriterOrder, _itemsSlot);
4722
4748
  __decorateElement(_init2, 4, "items", _items_dec, WebwriterOrder, _items);
4723
4749
  __decorateElement(_init2, 3, "solution", _solution_dec, WebwriterOrder);
@@ -7972,7 +7972,8 @@ var WebwriterQuiz = class extends (_a2 = LitElementWw, _randomOrder_dec = [n5({
7972
7972
  __publicField(this, "localize", generated_default);
7973
7973
  __privateAdd(this, _randomOrder, __runInitializers(_init2, 8, this, false)), __runInitializers(_init2, 11, this);
7974
7974
  __publicField(this, "handleReset", () => {
7975
- this.tasks.forEach((task) => task.reset());
7975
+ console.warn(this.tasks);
7976
+ this.tasks.forEach((task) => task.handleReset());
7976
7977
  this.requestUpdate();
7977
7978
  this.submitted = false;
7978
7979
  });
@@ -4952,7 +4952,7 @@ var globImport_ts = __glob({
4952
4952
  var generated_default = configureLocalization({ sourceLocale, targetLocales, loadLocale: (locale) => globImport_ts(`./${locale}.ts`) });
4953
4953
 
4954
4954
  // src/widgets/webwriter-text.ts
4955
- var _solution_dec, _input_dec, _value_dec, _placeholder_dec, _type_dec, _a2, _WebwriterText_decorators, _init2, _type, _placeholder, _value, _input, _solution;
4955
+ var _solution_dec, _input_dec, _value_dec, _wrongMessage_dec, _showSolution_dec, _ignoreCase_dec, _placeholder_dec, _type_dec, _a2, _WebwriterText_decorators, _init2, _type, _placeholder, _ignoreCase, _showSolution, _wrongMessage, _value, _input, _solution;
4956
4956
  _WebwriterText_decorators = [t4("webwriter-text")];
4957
4957
  var WebwriterText = class extends (_a2 = LitElementWw, _type_dec = [n5({ type: String, attribute: true, reflect: true }), option({
4958
4958
  type: "select",
@@ -4965,13 +4965,24 @@ var WebwriterText = class extends (_a2 = LitElementWw, _type_dec = [n5({ type: S
4965
4965
  { value: "time", label: { "en": "Time", "de": "Uhrzeit" } },
4966
4966
  { value: "datetime-local", label: { "en": "Date & Time", "de": "Datum & Uhrzeit" } }
4967
4967
  ]
4968
- })], _placeholder_dec = [n5({ type: String, attribute: true, reflect: true }), option()], _value_dec = [n5({ type: String, attribute: true, reflect: true })], _input_dec = [e6("sl-textarea, sl-input")], _solution_dec = [n5({ type: String, attribute: false, reflect: false })], _a2) {
4968
+ })], _placeholder_dec = [n5({ type: String, attribute: true, reflect: true }), option()], _ignoreCase_dec = [n5({ type: Boolean, attribute: true, reflect: true }), option({
4969
+ type: Boolean,
4970
+ label: { "en": "Ignore capitalization", "de": "Gro\xDFschreibung ignorieren" }
4971
+ })], _showSolution_dec = [n5({ type: Boolean, attribute: true, reflect: true }), option({
4972
+ type: Boolean,
4973
+ label: { "en": "show Solution", "de": "L\xF6sung anzeigen" }
4974
+ })], _wrongMessage_dec = [n5({ type: String, attribute: true, reflect: true }), option({
4975
+ label: { "en": "Message for wrong solution", "de": "Nachricht bei falscher L\xF6sung" }
4976
+ })], _value_dec = [n5({ type: String, attribute: true, reflect: true })], _input_dec = [e6("sl-textarea, sl-input")], _solution_dec = [n5({ type: String, attribute: false, reflect: false })], _a2) {
4969
4977
  constructor() {
4970
4978
  super(...arguments);
4971
4979
  __publicField(this, "localize", generated_default);
4972
4980
  __privateAdd(this, _type, __runInitializers(_init2, 8, this, "long-text")), __runInitializers(_init2, 11, this);
4973
4981
  __privateAdd(this, _placeholder, __runInitializers(_init2, 12, this)), __runInitializers(_init2, 15, this);
4974
- __privateAdd(this, _value, __runInitializers(_init2, 16, this)), __runInitializers(_init2, 19, this);
4982
+ __privateAdd(this, _ignoreCase, __runInitializers(_init2, 16, this, false)), __runInitializers(_init2, 19, this);
4983
+ __privateAdd(this, _showSolution, __runInitializers(_init2, 20, this, false)), __runInitializers(_init2, 23, this);
4984
+ __privateAdd(this, _wrongMessage, __runInitializers(_init2, 24, this)), __runInitializers(_init2, 27, this);
4985
+ __privateAdd(this, _value, __runInitializers(_init2, 28, this)), __runInitializers(_init2, 31, this);
4975
4986
  __publicField(this, "handleChange", (e10) => {
4976
4987
  const target = e10.target;
4977
4988
  if (this.isContentEditable) {
@@ -4985,8 +4996,8 @@ var WebwriterText = class extends (_a2 = LitElementWw, _type_dec = [n5({ type: S
4985
4996
  composed: true
4986
4997
  }));
4987
4998
  });
4988
- __privateAdd(this, _input, __runInitializers(_init2, 20, this)), __runInitializers(_init2, 23, this);
4989
- __privateAdd(this, _solution, __runInitializers(_init2, 24, this)), __runInitializers(_init2, 27, this);
4999
+ __privateAdd(this, _input, __runInitializers(_init2, 32, this)), __runInitializers(_init2, 35, this);
5000
+ __privateAdd(this, _solution, __runInitializers(_init2, 36, this)), __runInitializers(_init2, 39, this);
4990
5001
  }
4991
5002
  focus() {
4992
5003
  this.input.focus();
@@ -4998,23 +5009,29 @@ var WebwriterText = class extends (_a2 = LitElementWw, _type_dec = [n5({ type: S
4998
5009
  reportSolution() {
4999
5010
  }
5000
5011
  render() {
5001
- const correct = this.solution && this.value?.trim() === this.solution;
5012
+ const correct = !this.ignoreCase ? this.solution && this.value?.trim() === this.solution : this.solution && this.value?.trim().toLowerCase() === this.solution.toLowerCase();
5002
5013
  const textarea = x`<sl-textarea ?data-correct=${correct} value=${this.isContentEditable ? this.solution : this.value} placeholder=${this.placeholder} resize="none" @sl-change=${this.handleChange}></sl-textarea>`;
5003
5014
  const input = x`<sl-input ?data-correct=${correct} value=${this.isContentEditable ? this.solution : this.value} placeholder=${this.placeholder} type=${this.type} @sl-change=${this.handleChange}></sl-input>`;
5004
5015
  return x`
5005
5016
  ${this.type === "long-text" ? textarea : input}
5006
- ${this.solution && !this.isContentEditable && !correct ? x`<div id="solution" ?data-correct=${correct}>${this.solution}</div>` : void 0}
5017
+ ${this.solution && !this.isContentEditable && !correct ? x`<div id="solution" ?data-correct=${correct}>${this.showSolution ? this.solution : x`<i>${this.wrongMessage}</i>`}</div>` : void 0}
5007
5018
  `;
5008
5019
  }
5009
5020
  };
5010
5021
  _init2 = __decoratorStart(_a2);
5011
5022
  _type = new WeakMap();
5012
5023
  _placeholder = new WeakMap();
5024
+ _ignoreCase = new WeakMap();
5025
+ _showSolution = new WeakMap();
5026
+ _wrongMessage = new WeakMap();
5013
5027
  _value = new WeakMap();
5014
5028
  _input = new WeakMap();
5015
5029
  _solution = new WeakMap();
5016
5030
  __decorateElement(_init2, 4, "type", _type_dec, WebwriterText, _type);
5017
5031
  __decorateElement(_init2, 4, "placeholder", _placeholder_dec, WebwriterText, _placeholder);
5032
+ __decorateElement(_init2, 4, "ignoreCase", _ignoreCase_dec, WebwriterText, _ignoreCase);
5033
+ __decorateElement(_init2, 4, "showSolution", _showSolution_dec, WebwriterText, _showSolution);
5034
+ __decorateElement(_init2, 4, "wrongMessage", _wrongMessage_dec, WebwriterText, _wrongMessage);
5018
5035
  __decorateElement(_init2, 4, "value", _value_dec, WebwriterText, _value);
5019
5036
  __decorateElement(_init2, 4, "input", _input_dec, WebwriterText, _input);
5020
5037
  __decorateElement(_init2, 4, "solution", _solution_dec, WebwriterText, _solution);
@@ -5060,11 +5077,11 @@ __publicField(WebwriterText, "styles", i`
5060
5077
  }
5061
5078
 
5062
5079
  #solution[data-correct] {
5063
- background: var(--sl-color-success-200);
5080
+ background-color: var(--sl-color-success-200);
5064
5081
  }
5065
5082
 
5066
5083
  #solution:not([data-correct]) {
5067
- background: var(--sl-color-danger-200);
5084
+ background-color: var(--sl-color-danger-200);
5068
5085
  }
5069
5086
  `);
5070
5087
  __runInitializers(_init2, 1, WebwriterText);
package/lit-localize.json CHANGED
@@ -1,15 +1,15 @@
1
- {
2
- "$schema": "https://raw.githubusercontent.com/lit/lit/main/packages/localize-tools/config.schema.json",
3
- "sourceLocale": "en",
4
- "targetLocales": ["de", "bg", "cs", "da", "nl", "et", "fi", "fr", "el", "hu", "it", "lv", "lt", "nb", "pl", "pt-PT", "ro", "ru", "sk", "sl", "es", "sv", "tr", "uk", "pt-BR", "ko", "ja", "id", "zh-hans"],
5
- "tsConfig": "./tsconfig.json",
6
- "output": {
7
- "mode": "runtime",
8
- "outputDir": "./localization/generated",
9
- "localeCodesModule": "./localization/generated/locale-codes.js"
10
- },
11
- "interchange": {
12
- "format": "xliff",
13
- "xliffDir": "./localization"
14
- }
1
+ {
2
+ "$schema": "https://raw.githubusercontent.com/lit/lit/main/packages/localize-tools/config.schema.json",
3
+ "sourceLocale": "en",
4
+ "targetLocales": ["de", "bg", "cs", "da", "nl", "et", "fi", "fr", "el", "hu", "it", "lv", "lt", "nb", "pl", "pt-PT", "ro", "ru", "sk", "sl", "es", "sv", "tr", "uk", "pt-BR", "ko", "ja", "id", "zh-hans"],
5
+ "tsConfig": "./tsconfig.json",
6
+ "output": {
7
+ "mode": "runtime",
8
+ "outputDir": "./localization/generated",
9
+ "localeCodesModule": "./localization/generated/locale-codes.js"
10
+ },
11
+ "interchange": {
12
+ "format": "xliff",
13
+ "xliffDir": "./localization"
14
+ }
15
15
  }
@@ -1,69 +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="bg">
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="bg">
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,69 +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="cs">
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>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>Přidat možnost</target>
19
- </trans-unit>
20
- <trans-unit id="sc56e9323f076a11e">
21
- <source>Text to add gaps to</source>
22
- <target>Text, do kterého se přidávají mezery</target>
23
- </trans-unit>
24
- <trans-unit id="s80dc9f56411917df">
25
- <source>Text to Highlight</source>
26
- <target>Text ke zvýraznění</target>
27
- </trans-unit>
28
- <trans-unit id="s1b23c41934894f30">
29
- <source>Explanation</source>
30
- <target>Vysvětlení</target>
31
- </trans-unit>
32
- <trans-unit id="sd26e8d4eef55e341">
33
- <source>Check your answers</source>
34
- <target>Zkontrolujte své odpovědi</target>
35
- </trans-unit>
36
- <trans-unit id="scd1dd6ff53d0d01a">
37
- <source>Try again</source>
38
- <target>Zkuste to znovu</target>
39
- </trans-unit>
40
- <trans-unit id="sb3d4f79d9d8b71e5">
41
- <source>Submit</source>
42
- <target>Odeslat</target>
43
- </trans-unit>
44
- <trans-unit id="s255857544a9d5ec0">
45
- <source>Reset</source>
46
- <target>Obnovení</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>
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="cs">
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>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>Přidat možnost</target>
19
+ </trans-unit>
20
+ <trans-unit id="sc56e9323f076a11e">
21
+ <source>Text to add gaps to</source>
22
+ <target>Text, do kterého se přidávají mezery</target>
23
+ </trans-unit>
24
+ <trans-unit id="s80dc9f56411917df">
25
+ <source>Text to Highlight</source>
26
+ <target>Text ke zvýraznění</target>
27
+ </trans-unit>
28
+ <trans-unit id="s1b23c41934894f30">
29
+ <source>Explanation</source>
30
+ <target>Vysvětlení</target>
31
+ </trans-unit>
32
+ <trans-unit id="sd26e8d4eef55e341">
33
+ <source>Check your answers</source>
34
+ <target>Zkontrolujte své odpovědi</target>
35
+ </trans-unit>
36
+ <trans-unit id="scd1dd6ff53d0d01a">
37
+ <source>Try again</source>
38
+ <target>Zkuste to znovu</target>
39
+ </trans-unit>
40
+ <trans-unit id="sb3d4f79d9d8b71e5">
41
+ <source>Submit</source>
42
+ <target>Odeslat</target>
43
+ </trans-unit>
44
+ <trans-unit id="s255857544a9d5ec0">
45
+ <source>Reset</source>
46
+ <target>Obnovení</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>
@@ -1,69 +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="da">
3
- <body>
4
- <trans-unit id="s4802e47fe2e95134">
5
- <source>Option</source>
6
- <target>Mulighed</target>
7
- </trans-unit>
8
- <trans-unit id="s85ea99fb52be3385">
9
- <source>True</source>
10
- <target>Sandt</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>Tilføj mulighed</target>
19
- </trans-unit>
20
- <trans-unit id="sc56e9323f076a11e">
21
- <source>Text to add gaps to</source>
22
- <target>Tekst til at tilføje mellemrum til</target>
23
- </trans-unit>
24
- <trans-unit id="s80dc9f56411917df">
25
- <source>Text to Highlight</source>
26
- <target>Tekst til at fremhæve</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>Tjek dine svar</target>
35
- </trans-unit>
36
- <trans-unit id="scd1dd6ff53d0d01a">
37
- <source>Try again</source>
38
- <target>Prøv igen</target>
39
- </trans-unit>
40
- <trans-unit id="sb3d4f79d9d8b71e5">
41
- <source>Submit</source>
42
- <target>Send ind</target>
43
- </trans-unit>
44
- <trans-unit id="s255857544a9d5ec0">
45
- <source>Reset</source>
46
- <target>Nulstil</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>
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="da">
3
+ <body>
4
+ <trans-unit id="s4802e47fe2e95134">
5
+ <source>Option</source>
6
+ <target>Mulighed</target>
7
+ </trans-unit>
8
+ <trans-unit id="s85ea99fb52be3385">
9
+ <source>True</source>
10
+ <target>Sandt</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>Tilføj mulighed</target>
19
+ </trans-unit>
20
+ <trans-unit id="sc56e9323f076a11e">
21
+ <source>Text to add gaps to</source>
22
+ <target>Tekst til at tilføje mellemrum til</target>
23
+ </trans-unit>
24
+ <trans-unit id="s80dc9f56411917df">
25
+ <source>Text to Highlight</source>
26
+ <target>Tekst til at fremhæve</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>Tjek dine svar</target>
35
+ </trans-unit>
36
+ <trans-unit id="scd1dd6ff53d0d01a">
37
+ <source>Try again</source>
38
+ <target>Prøv igen</target>
39
+ </trans-unit>
40
+ <trans-unit id="sb3d4f79d9d8b71e5">
41
+ <source>Submit</source>
42
+ <target>Send ind</target>
43
+ </trans-unit>
44
+ <trans-unit id="s255857544a9d5ec0">
45
+ <source>Reset</source>
46
+ <target>Nulstil</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>