@webwriter/quiz 1.1.2 → 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.
- package/.github/workflows/publish.yml +8 -0
- package/LICENSE +6 -6
- package/custom.d.ts +175 -175
- package/dist/widgets/webwriter-choice-item.js +69 -205
- package/dist/widgets/webwriter-choice.js +99 -214
- package/dist/widgets/webwriter-cloze-gap.js +74 -213
- package/dist/widgets/webwriter-cloze.js +71 -204
- package/dist/widgets/webwriter-mark.js +72 -205
- package/dist/widgets/webwriter-order-item.js +68 -201
- package/dist/widgets/webwriter-order.js +99 -209
- package/dist/widgets/webwriter-pairing-item.js +57 -160
- package/dist/widgets/webwriter-pairing.js +69 -196
- package/dist/widgets/webwriter-quiz.js +72 -211
- package/dist/widgets/webwriter-speech.js +71 -204
- package/dist/widgets/webwriter-task-explainer.js +57 -160
- package/dist/widgets/webwriter-task-hint.js +55 -158
- package/dist/widgets/webwriter-task-prompt.js +61 -170
- package/dist/widgets/webwriter-task.js +80 -205
- package/dist/widgets/webwriter-text.js +94 -205
- package/lit-localize.json +14 -14
- package/localization/bg.xlf +72 -69
- package/localization/cs.xlf +72 -69
- package/localization/da.xlf +72 -69
- package/localization/de.xlf +77 -74
- package/localization/el.xlf +72 -69
- package/localization/es.xlf +72 -69
- package/localization/et.xlf +72 -69
- package/localization/fi.xlf +72 -69
- package/localization/fr.xlf +72 -69
- package/localization/generated/bg.ts +30 -29
- package/localization/generated/cs.ts +30 -29
- package/localization/generated/da.ts +30 -29
- package/localization/generated/de.ts +30 -29
- package/localization/generated/el.ts +30 -29
- package/localization/generated/es.ts +30 -29
- package/localization/generated/et.ts +30 -29
- package/localization/generated/fi.ts +30 -29
- package/localization/generated/fr.ts +30 -29
- package/localization/generated/hu.ts +30 -29
- package/localization/generated/id.ts +30 -29
- package/localization/generated/index.js +2 -2
- package/localization/generated/it.ts +30 -29
- package/localization/generated/ja.ts +30 -29
- package/localization/generated/ko.ts +30 -29
- package/localization/generated/locale-codes.js +79 -79
- package/localization/generated/lt.ts +30 -29
- package/localization/generated/lv.ts +30 -29
- package/localization/generated/nb.ts +30 -29
- package/localization/generated/nl.ts +30 -29
- package/localization/generated/pl.ts +30 -29
- package/localization/generated/pt-BR.ts +30 -29
- package/localization/generated/pt-PT.ts +30 -29
- package/localization/generated/ro.ts +30 -29
- package/localization/generated/ru.ts +30 -29
- package/localization/generated/sk.ts +30 -29
- package/localization/generated/sl.ts +30 -29
- package/localization/generated/sv.ts +30 -29
- package/localization/generated/tr.ts +30 -29
- package/localization/generated/uk.ts +30 -29
- package/localization/generated/zh-hans.ts +30 -29
- package/localization/hu.xlf +72 -69
- package/localization/id.xlf +72 -69
- package/localization/it.xlf +72 -69
- package/localization/ja.xlf +72 -69
- package/localization/ko.xlf +72 -69
- package/localization/lt.xlf +72 -69
- package/localization/lv.xlf +72 -69
- package/localization/nb.xlf +72 -69
- package/localization/nl.xlf +72 -69
- package/localization/pl.xlf +72 -69
- package/localization/pt-BR.xlf +72 -69
- package/localization/pt-PT.xlf +72 -69
- package/localization/ro.xlf +72 -69
- package/localization/ru.xlf +72 -69
- package/localization/sk.xlf +72 -69
- package/localization/sl.xlf +72 -69
- package/localization/sv.xlf +72 -69
- package/localization/tr.xlf +72 -69
- package/localization/uk.xlf +72 -69
- package/localization/zh-hans.xlf +72 -69
- package/package.json +4 -3
- 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 +256 -253
- package/src/widgets/webwriter-choice.ts +352 -336
- 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 +440 -440
- package/src/widgets/webwriter-order.ts +326 -309
- 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 +554 -546
- package/src/widgets/webwriter-text.ts +176 -155
- package/tsconfig.json +6 -6
|
@@ -1,30 +1,31 @@
|
|
|
1
|
-
|
|
2
|
-
// Do not modify this file by hand!
|
|
3
|
-
// Re-generate this file by running lit-localize
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
/* eslint-disable no-irregular-whitespace */
|
|
9
|
-
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
10
|
-
|
|
11
|
-
export const templates = {
|
|
12
|
-
's159928724265eb05': `Ajouter une option`,
|
|
13
|
-
's1b23c41934894f30': `Explication`,
|
|
14
|
-
's255857544a9d5ec0': `Remise à zéro`,
|
|
15
|
-
's4802e47fe2e95134': `Option`,
|
|
16
|
-
's54393bfa280ea55b': `Prompt`,
|
|
17
|
-
's7254ca27b16ae2d8': `Faux`,
|
|
18
|
-
's80dc9f56411917df': `Texte à mettre en évidence`,
|
|
19
|
-
's85ea99fb52be3385': `Vrai`,
|
|
20
|
-
'sb3d4f79d9d8b71e5': `Soumettre`,
|
|
21
|
-
'sc56e9323f076a11e': `Texte à ajouter aux lacunes`,
|
|
22
|
-
'scd1dd6ff53d0d01a': `Réessayer`,
|
|
23
|
-
'sd26e8d4eef55e341': `Vérifiez vos réponses`,
|
|
24
|
-
'
|
|
25
|
-
'
|
|
26
|
-
'
|
|
27
|
-
'
|
|
28
|
-
'
|
|
29
|
-
|
|
1
|
+
|
|
2
|
+
// Do not modify this file by hand!
|
|
3
|
+
// Re-generate this file by running lit-localize
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
/* eslint-disable no-irregular-whitespace */
|
|
9
|
+
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
10
|
+
|
|
11
|
+
export const templates = {
|
|
12
|
+
's159928724265eb05': `Ajouter une option`,
|
|
13
|
+
's1b23c41934894f30': `Explication`,
|
|
14
|
+
's255857544a9d5ec0': `Remise à zéro`,
|
|
15
|
+
's4802e47fe2e95134': `Option`,
|
|
16
|
+
's54393bfa280ea55b': `Prompt`,
|
|
17
|
+
's7254ca27b16ae2d8': `Faux`,
|
|
18
|
+
's80dc9f56411917df': `Texte à mettre en évidence`,
|
|
19
|
+
's85ea99fb52be3385': `Vrai`,
|
|
20
|
+
'sb3d4f79d9d8b71e5': `Soumettre`,
|
|
21
|
+
'sc56e9323f076a11e': `Texte à ajouter aux lacunes`,
|
|
22
|
+
'scd1dd6ff53d0d01a': `Réessayer`,
|
|
23
|
+
'sd26e8d4eef55e341': `Vérifiez vos réponses`,
|
|
24
|
+
'saf8b589e65febbd2': `Save answer`,
|
|
25
|
+
'sb0aadaa04e658ad6': `Choice`,
|
|
26
|
+
's2ba5f4d8f3bd7c57': `Order`,
|
|
27
|
+
's2492f5fb1b05b45e': `Text`,
|
|
28
|
+
's49c940aecfef3ea0': `Mark`,
|
|
29
|
+
'saa3efba1f0c816b7': `Speech`,
|
|
30
|
+
};
|
|
30
31
|
|
|
@@ -1,30 +1,31 @@
|
|
|
1
|
-
|
|
2
|
-
// Do not modify this file by hand!
|
|
3
|
-
// Re-generate this file by running lit-localize
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
/* eslint-disable no-irregular-whitespace */
|
|
9
|
-
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
10
|
-
|
|
11
|
-
export const templates = {
|
|
12
|
-
's159928724265eb05': `Opció hozzáadása`,
|
|
13
|
-
's1b23c41934894f30': `Magyarázat`,
|
|
14
|
-
's255857544a9d5ec0': `Reset`,
|
|
15
|
-
's4802e47fe2e95134': `Opció`,
|
|
16
|
-
's54393bfa280ea55b': `Prompt`,
|
|
17
|
-
's7254ca27b16ae2d8': `Hamis`,
|
|
18
|
-
's80dc9f56411917df': `Kiemelendő szöveg`,
|
|
19
|
-
's85ea99fb52be3385': `Igaz`,
|
|
20
|
-
'sb3d4f79d9d8b71e5': `Küldje be a`,
|
|
21
|
-
'sc56e9323f076a11e': `Hézagok hozzáadására szolgáló szöveg`,
|
|
22
|
-
'scd1dd6ff53d0d01a': `Próbálja újra`,
|
|
23
|
-
'sd26e8d4eef55e341': `Ellenőrizze válaszait`,
|
|
24
|
-
'
|
|
25
|
-
'
|
|
26
|
-
'
|
|
27
|
-
'
|
|
28
|
-
'
|
|
29
|
-
|
|
1
|
+
|
|
2
|
+
// Do not modify this file by hand!
|
|
3
|
+
// Re-generate this file by running lit-localize
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
/* eslint-disable no-irregular-whitespace */
|
|
9
|
+
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
10
|
+
|
|
11
|
+
export const templates = {
|
|
12
|
+
's159928724265eb05': `Opció hozzáadása`,
|
|
13
|
+
's1b23c41934894f30': `Magyarázat`,
|
|
14
|
+
's255857544a9d5ec0': `Reset`,
|
|
15
|
+
's4802e47fe2e95134': `Opció`,
|
|
16
|
+
's54393bfa280ea55b': `Prompt`,
|
|
17
|
+
's7254ca27b16ae2d8': `Hamis`,
|
|
18
|
+
's80dc9f56411917df': `Kiemelendő szöveg`,
|
|
19
|
+
's85ea99fb52be3385': `Igaz`,
|
|
20
|
+
'sb3d4f79d9d8b71e5': `Küldje be a`,
|
|
21
|
+
'sc56e9323f076a11e': `Hézagok hozzáadására szolgáló szöveg`,
|
|
22
|
+
'scd1dd6ff53d0d01a': `Próbálja újra`,
|
|
23
|
+
'sd26e8d4eef55e341': `Ellenőrizze válaszait`,
|
|
24
|
+
'saf8b589e65febbd2': `Save answer`,
|
|
25
|
+
'sb0aadaa04e658ad6': `Choice`,
|
|
26
|
+
's2ba5f4d8f3bd7c57': `Order`,
|
|
27
|
+
's2492f5fb1b05b45e': `Text`,
|
|
28
|
+
's49c940aecfef3ea0': `Mark`,
|
|
29
|
+
'saa3efba1f0c816b7': `Speech`,
|
|
30
|
+
};
|
|
30
31
|
|
|
@@ -1,30 +1,31 @@
|
|
|
1
|
-
|
|
2
|
-
// Do not modify this file by hand!
|
|
3
|
-
// Re-generate this file by running lit-localize
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
/* eslint-disable no-irregular-whitespace */
|
|
9
|
-
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
10
|
-
|
|
11
|
-
export const templates = {
|
|
12
|
-
's159928724265eb05': `Tambahkan Opsi`,
|
|
13
|
-
's1b23c41934894f30': `Penjelasan`,
|
|
14
|
-
's255857544a9d5ec0': `Atur ulang`,
|
|
15
|
-
's4802e47fe2e95134': `Opsi`,
|
|
16
|
-
's54393bfa280ea55b': `Cepat`,
|
|
17
|
-
's7254ca27b16ae2d8': `Salah`,
|
|
18
|
-
's80dc9f56411917df': `Teks untuk Disorot`,
|
|
19
|
-
's85ea99fb52be3385': `Benar`,
|
|
20
|
-
'sb3d4f79d9d8b71e5': `Kirim`,
|
|
21
|
-
'sc56e9323f076a11e': `Teks yang akan ditambahkan celah`,
|
|
22
|
-
'scd1dd6ff53d0d01a': `Coba lagi`,
|
|
23
|
-
'sd26e8d4eef55e341': `Periksa jawaban Anda`,
|
|
24
|
-
'
|
|
25
|
-
'
|
|
26
|
-
'
|
|
27
|
-
'
|
|
28
|
-
'
|
|
29
|
-
|
|
1
|
+
|
|
2
|
+
// Do not modify this file by hand!
|
|
3
|
+
// Re-generate this file by running lit-localize
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
/* eslint-disable no-irregular-whitespace */
|
|
9
|
+
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
10
|
+
|
|
11
|
+
export const templates = {
|
|
12
|
+
's159928724265eb05': `Tambahkan Opsi`,
|
|
13
|
+
's1b23c41934894f30': `Penjelasan`,
|
|
14
|
+
's255857544a9d5ec0': `Atur ulang`,
|
|
15
|
+
's4802e47fe2e95134': `Opsi`,
|
|
16
|
+
's54393bfa280ea55b': `Cepat`,
|
|
17
|
+
's7254ca27b16ae2d8': `Salah`,
|
|
18
|
+
's80dc9f56411917df': `Teks untuk Disorot`,
|
|
19
|
+
's85ea99fb52be3385': `Benar`,
|
|
20
|
+
'sb3d4f79d9d8b71e5': `Kirim`,
|
|
21
|
+
'sc56e9323f076a11e': `Teks yang akan ditambahkan celah`,
|
|
22
|
+
'scd1dd6ff53d0d01a': `Coba lagi`,
|
|
23
|
+
'sd26e8d4eef55e341': `Periksa jawaban Anda`,
|
|
24
|
+
'saf8b589e65febbd2': `Save answer`,
|
|
25
|
+
'sb0aadaa04e658ad6': `Choice`,
|
|
26
|
+
's2ba5f4d8f3bd7c57': `Order`,
|
|
27
|
+
's2492f5fb1b05b45e': `Text`,
|
|
28
|
+
's49c940aecfef3ea0': `Mark`,
|
|
29
|
+
'saa3efba1f0c816b7': `Speech`,
|
|
30
|
+
};
|
|
30
31
|
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import {sourceLocale, targetLocales} from './locale-codes.js';
|
|
2
|
-
import {configureLocalization} from '@lit/localize';
|
|
1
|
+
import {sourceLocale, targetLocales} from './locale-codes.js';
|
|
2
|
+
import {configureLocalization} from '@lit/localize';
|
|
3
3
|
export default configureLocalization({sourceLocale, targetLocales, loadLocale: (locale) => import(`./${locale}.ts`)});
|
|
@@ -1,30 +1,31 @@
|
|
|
1
|
-
|
|
2
|
-
// Do not modify this file by hand!
|
|
3
|
-
// Re-generate this file by running lit-localize
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
/* eslint-disable no-irregular-whitespace */
|
|
9
|
-
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
10
|
-
|
|
11
|
-
export const templates = {
|
|
12
|
-
's159928724265eb05': `Aggiungi opzione`,
|
|
13
|
-
's1b23c41934894f30': `Spiegazione`,
|
|
14
|
-
's255857544a9d5ec0': `Reset`,
|
|
15
|
-
's4802e47fe2e95134': `Opzione`,
|
|
16
|
-
's54393bfa280ea55b': `Prompt`,
|
|
17
|
-
's7254ca27b16ae2d8': `Falso`,
|
|
18
|
-
's80dc9f56411917df': `Testo da evidenziare`,
|
|
19
|
-
's85ea99fb52be3385': `Vero`,
|
|
20
|
-
'sb3d4f79d9d8b71e5': `Invia`,
|
|
21
|
-
'sc56e9323f076a11e': `Testo a cui aggiungere spazi vuoti`,
|
|
22
|
-
'scd1dd6ff53d0d01a': `Riprova`,
|
|
23
|
-
'sd26e8d4eef55e341': `Controllare le risposte`,
|
|
24
|
-
'
|
|
25
|
-
'
|
|
26
|
-
'
|
|
27
|
-
'
|
|
28
|
-
'
|
|
29
|
-
|
|
1
|
+
|
|
2
|
+
// Do not modify this file by hand!
|
|
3
|
+
// Re-generate this file by running lit-localize
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
/* eslint-disable no-irregular-whitespace */
|
|
9
|
+
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
10
|
+
|
|
11
|
+
export const templates = {
|
|
12
|
+
's159928724265eb05': `Aggiungi opzione`,
|
|
13
|
+
's1b23c41934894f30': `Spiegazione`,
|
|
14
|
+
's255857544a9d5ec0': `Reset`,
|
|
15
|
+
's4802e47fe2e95134': `Opzione`,
|
|
16
|
+
's54393bfa280ea55b': `Prompt`,
|
|
17
|
+
's7254ca27b16ae2d8': `Falso`,
|
|
18
|
+
's80dc9f56411917df': `Testo da evidenziare`,
|
|
19
|
+
's85ea99fb52be3385': `Vero`,
|
|
20
|
+
'sb3d4f79d9d8b71e5': `Invia`,
|
|
21
|
+
'sc56e9323f076a11e': `Testo a cui aggiungere spazi vuoti`,
|
|
22
|
+
'scd1dd6ff53d0d01a': `Riprova`,
|
|
23
|
+
'sd26e8d4eef55e341': `Controllare le risposte`,
|
|
24
|
+
'saf8b589e65febbd2': `Save answer`,
|
|
25
|
+
'sb0aadaa04e658ad6': `Choice`,
|
|
26
|
+
's2ba5f4d8f3bd7c57': `Order`,
|
|
27
|
+
's2492f5fb1b05b45e': `Text`,
|
|
28
|
+
's49c940aecfef3ea0': `Mark`,
|
|
29
|
+
'saa3efba1f0c816b7': `Speech`,
|
|
30
|
+
};
|
|
30
31
|
|
|
@@ -1,30 +1,31 @@
|
|
|
1
|
-
|
|
2
|
-
// Do not modify this file by hand!
|
|
3
|
-
// Re-generate this file by running lit-localize
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
/* eslint-disable no-irregular-whitespace */
|
|
9
|
-
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
10
|
-
|
|
11
|
-
export const templates = {
|
|
12
|
-
's159928724265eb05': `オプション追加`,
|
|
13
|
-
's1b23c41934894f30': `説明`,
|
|
14
|
-
's255857544a9d5ec0': `リセット`,
|
|
15
|
-
's4802e47fe2e95134': `オプション`,
|
|
16
|
-
's54393bfa280ea55b': `プロンプト`,
|
|
17
|
-
's7254ca27b16ae2d8': `偽`,
|
|
18
|
-
's80dc9f56411917df': `ハイライトするテキスト`,
|
|
19
|
-
's85ea99fb52be3385': `真`,
|
|
20
|
-
'sb3d4f79d9d8b71e5': `投稿する`,
|
|
21
|
-
'sc56e9323f076a11e': `ギャップを追加するテキスト`,
|
|
22
|
-
'scd1dd6ff53d0d01a': `再試行`,
|
|
23
|
-
'sd26e8d4eef55e341': `答えをチェックする`,
|
|
24
|
-
'
|
|
25
|
-
'
|
|
26
|
-
'
|
|
27
|
-
'
|
|
28
|
-
'
|
|
29
|
-
|
|
1
|
+
|
|
2
|
+
// Do not modify this file by hand!
|
|
3
|
+
// Re-generate this file by running lit-localize
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
/* eslint-disable no-irregular-whitespace */
|
|
9
|
+
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
10
|
+
|
|
11
|
+
export const templates = {
|
|
12
|
+
's159928724265eb05': `オプション追加`,
|
|
13
|
+
's1b23c41934894f30': `説明`,
|
|
14
|
+
's255857544a9d5ec0': `リセット`,
|
|
15
|
+
's4802e47fe2e95134': `オプション`,
|
|
16
|
+
's54393bfa280ea55b': `プロンプト`,
|
|
17
|
+
's7254ca27b16ae2d8': `偽`,
|
|
18
|
+
's80dc9f56411917df': `ハイライトするテキスト`,
|
|
19
|
+
's85ea99fb52be3385': `真`,
|
|
20
|
+
'sb3d4f79d9d8b71e5': `投稿する`,
|
|
21
|
+
'sc56e9323f076a11e': `ギャップを追加するテキスト`,
|
|
22
|
+
'scd1dd6ff53d0d01a': `再試行`,
|
|
23
|
+
'sd26e8d4eef55e341': `答えをチェックする`,
|
|
24
|
+
'saf8b589e65febbd2': `Save answer`,
|
|
25
|
+
'sb0aadaa04e658ad6': `Choice`,
|
|
26
|
+
's2ba5f4d8f3bd7c57': `Order`,
|
|
27
|
+
's2492f5fb1b05b45e': `Text`,
|
|
28
|
+
's49c940aecfef3ea0': `Mark`,
|
|
29
|
+
'saa3efba1f0c816b7': `Speech`,
|
|
30
|
+
};
|
|
30
31
|
|
|
@@ -1,30 +1,31 @@
|
|
|
1
|
-
|
|
2
|
-
// Do not modify this file by hand!
|
|
3
|
-
// Re-generate this file by running lit-localize
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
/* eslint-disable no-irregular-whitespace */
|
|
9
|
-
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
10
|
-
|
|
11
|
-
export const templates = {
|
|
12
|
-
's159928724265eb05': `옵션 추가`,
|
|
13
|
-
's1b23c41934894f30': `설명`,
|
|
14
|
-
's255857544a9d5ec0': `초기화`,
|
|
15
|
-
's4802e47fe2e95134': `옵션`,
|
|
16
|
-
's54393bfa280ea55b': `프롬프트`,
|
|
17
|
-
's7254ca27b16ae2d8': `False`,
|
|
18
|
-
's80dc9f56411917df': `강조 표시할 텍스트`,
|
|
19
|
-
's85ea99fb52be3385': `True`,
|
|
20
|
-
'sb3d4f79d9d8b71e5': `제출하기`,
|
|
21
|
-
'sc56e9323f076a11e': `공백을 추가할 텍스트`,
|
|
22
|
-
'scd1dd6ff53d0d01a': `다시 시도`,
|
|
23
|
-
'sd26e8d4eef55e341': `답변 확인`,
|
|
24
|
-
'
|
|
25
|
-
'
|
|
26
|
-
'
|
|
27
|
-
'
|
|
28
|
-
'
|
|
29
|
-
|
|
1
|
+
|
|
2
|
+
// Do not modify this file by hand!
|
|
3
|
+
// Re-generate this file by running lit-localize
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
/* eslint-disable no-irregular-whitespace */
|
|
9
|
+
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
10
|
+
|
|
11
|
+
export const templates = {
|
|
12
|
+
's159928724265eb05': `옵션 추가`,
|
|
13
|
+
's1b23c41934894f30': `설명`,
|
|
14
|
+
's255857544a9d5ec0': `초기화`,
|
|
15
|
+
's4802e47fe2e95134': `옵션`,
|
|
16
|
+
's54393bfa280ea55b': `프롬프트`,
|
|
17
|
+
's7254ca27b16ae2d8': `False`,
|
|
18
|
+
's80dc9f56411917df': `강조 표시할 텍스트`,
|
|
19
|
+
's85ea99fb52be3385': `True`,
|
|
20
|
+
'sb3d4f79d9d8b71e5': `제출하기`,
|
|
21
|
+
'sc56e9323f076a11e': `공백을 추가할 텍스트`,
|
|
22
|
+
'scd1dd6ff53d0d01a': `다시 시도`,
|
|
23
|
+
'sd26e8d4eef55e341': `답변 확인`,
|
|
24
|
+
'saf8b589e65febbd2': `Save answer`,
|
|
25
|
+
'sb0aadaa04e658ad6': `Choice`,
|
|
26
|
+
's2ba5f4d8f3bd7c57': `Order`,
|
|
27
|
+
's2492f5fb1b05b45e': `Text`,
|
|
28
|
+
's49c940aecfef3ea0': `Mark`,
|
|
29
|
+
'saa3efba1f0c816b7': `Speech`,
|
|
30
|
+
};
|
|
30
31
|
|
|
@@ -1,79 +1,79 @@
|
|
|
1
|
-
// Do not modify this file by hand!
|
|
2
|
-
// Re-generate this file by running lit-localize.
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* The locale code that templates in this source code are written in.
|
|
6
|
-
*/
|
|
7
|
-
export const sourceLocale = `en`;
|
|
8
|
-
|
|
9
|
-
/**
|
|
10
|
-
* The other locale codes that this application is localized into. Sorted
|
|
11
|
-
* lexicographically.
|
|
12
|
-
*/
|
|
13
|
-
export const targetLocales = [
|
|
14
|
-
`bg`,
|
|
15
|
-
`cs`,
|
|
16
|
-
`da`,
|
|
17
|
-
`de`,
|
|
18
|
-
`el`,
|
|
19
|
-
`es`,
|
|
20
|
-
`et`,
|
|
21
|
-
`fi`,
|
|
22
|
-
`fr`,
|
|
23
|
-
`hu`,
|
|
24
|
-
`id`,
|
|
25
|
-
`it`,
|
|
26
|
-
`ja`,
|
|
27
|
-
`ko`,
|
|
28
|
-
`lt`,
|
|
29
|
-
`lv`,
|
|
30
|
-
`nb`,
|
|
31
|
-
`nl`,
|
|
32
|
-
`pl`,
|
|
33
|
-
`pt-BR`,
|
|
34
|
-
`pt-PT`,
|
|
35
|
-
`ro`,
|
|
36
|
-
`ru`,
|
|
37
|
-
`sk`,
|
|
38
|
-
`sl`,
|
|
39
|
-
`sv`,
|
|
40
|
-
`tr`,
|
|
41
|
-
`uk`,
|
|
42
|
-
`zh-hans`,
|
|
43
|
-
];
|
|
44
|
-
|
|
45
|
-
/**
|
|
46
|
-
* All valid project locale codes. Sorted lexicographically.
|
|
47
|
-
*/
|
|
48
|
-
export const allLocales = [
|
|
49
|
-
`bg`,
|
|
50
|
-
`cs`,
|
|
51
|
-
`da`,
|
|
52
|
-
`de`,
|
|
53
|
-
`el`,
|
|
54
|
-
`en`,
|
|
55
|
-
`es`,
|
|
56
|
-
`et`,
|
|
57
|
-
`fi`,
|
|
58
|
-
`fr`,
|
|
59
|
-
`hu`,
|
|
60
|
-
`id`,
|
|
61
|
-
`it`,
|
|
62
|
-
`ja`,
|
|
63
|
-
`ko`,
|
|
64
|
-
`lt`,
|
|
65
|
-
`lv`,
|
|
66
|
-
`nb`,
|
|
67
|
-
`nl`,
|
|
68
|
-
`pl`,
|
|
69
|
-
`pt-BR`,
|
|
70
|
-
`pt-PT`,
|
|
71
|
-
`ro`,
|
|
72
|
-
`ru`,
|
|
73
|
-
`sk`,
|
|
74
|
-
`sl`,
|
|
75
|
-
`sv`,
|
|
76
|
-
`tr`,
|
|
77
|
-
`uk`,
|
|
78
|
-
`zh-hans`,
|
|
79
|
-
];
|
|
1
|
+
// Do not modify this file by hand!
|
|
2
|
+
// Re-generate this file by running lit-localize.
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* The locale code that templates in this source code are written in.
|
|
6
|
+
*/
|
|
7
|
+
export const sourceLocale = `en`;
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* The other locale codes that this application is localized into. Sorted
|
|
11
|
+
* lexicographically.
|
|
12
|
+
*/
|
|
13
|
+
export const targetLocales = [
|
|
14
|
+
`bg`,
|
|
15
|
+
`cs`,
|
|
16
|
+
`da`,
|
|
17
|
+
`de`,
|
|
18
|
+
`el`,
|
|
19
|
+
`es`,
|
|
20
|
+
`et`,
|
|
21
|
+
`fi`,
|
|
22
|
+
`fr`,
|
|
23
|
+
`hu`,
|
|
24
|
+
`id`,
|
|
25
|
+
`it`,
|
|
26
|
+
`ja`,
|
|
27
|
+
`ko`,
|
|
28
|
+
`lt`,
|
|
29
|
+
`lv`,
|
|
30
|
+
`nb`,
|
|
31
|
+
`nl`,
|
|
32
|
+
`pl`,
|
|
33
|
+
`pt-BR`,
|
|
34
|
+
`pt-PT`,
|
|
35
|
+
`ro`,
|
|
36
|
+
`ru`,
|
|
37
|
+
`sk`,
|
|
38
|
+
`sl`,
|
|
39
|
+
`sv`,
|
|
40
|
+
`tr`,
|
|
41
|
+
`uk`,
|
|
42
|
+
`zh-hans`,
|
|
43
|
+
];
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* All valid project locale codes. Sorted lexicographically.
|
|
47
|
+
*/
|
|
48
|
+
export const allLocales = [
|
|
49
|
+
`bg`,
|
|
50
|
+
`cs`,
|
|
51
|
+
`da`,
|
|
52
|
+
`de`,
|
|
53
|
+
`el`,
|
|
54
|
+
`en`,
|
|
55
|
+
`es`,
|
|
56
|
+
`et`,
|
|
57
|
+
`fi`,
|
|
58
|
+
`fr`,
|
|
59
|
+
`hu`,
|
|
60
|
+
`id`,
|
|
61
|
+
`it`,
|
|
62
|
+
`ja`,
|
|
63
|
+
`ko`,
|
|
64
|
+
`lt`,
|
|
65
|
+
`lv`,
|
|
66
|
+
`nb`,
|
|
67
|
+
`nl`,
|
|
68
|
+
`pl`,
|
|
69
|
+
`pt-BR`,
|
|
70
|
+
`pt-PT`,
|
|
71
|
+
`ro`,
|
|
72
|
+
`ru`,
|
|
73
|
+
`sk`,
|
|
74
|
+
`sl`,
|
|
75
|
+
`sv`,
|
|
76
|
+
`tr`,
|
|
77
|
+
`uk`,
|
|
78
|
+
`zh-hans`,
|
|
79
|
+
];
|
|
@@ -1,30 +1,31 @@
|
|
|
1
|
-
|
|
2
|
-
// Do not modify this file by hand!
|
|
3
|
-
// Re-generate this file by running lit-localize
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
/* eslint-disable no-irregular-whitespace */
|
|
9
|
-
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
10
|
-
|
|
11
|
-
export const templates = {
|
|
12
|
-
's159928724265eb05': `Pridėti parinktį`,
|
|
13
|
-
's1b23c41934894f30': `Paaiškinimas`,
|
|
14
|
-
's255857544a9d5ec0': `Iš naujo nustatyti`,
|
|
15
|
-
's4802e47fe2e95134': `Galimybė`,
|
|
16
|
-
's54393bfa280ea55b': `Paraginimas`,
|
|
17
|
-
's7254ca27b16ae2d8': `Klaidingas`,
|
|
18
|
-
's80dc9f56411917df': `Teksto paryškinimas`,
|
|
19
|
-
's85ea99fb52be3385': `Tiesa`,
|
|
20
|
-
'sb3d4f79d9d8b71e5': `Pateikti`,
|
|
21
|
-
'sc56e9323f076a11e': `Tekstas, prie kurio pridedami tarpai`,
|
|
22
|
-
'scd1dd6ff53d0d01a': `Pabandykite dar kartą`,
|
|
23
|
-
'sd26e8d4eef55e341': `Patikrinkite savo atsakymus`,
|
|
24
|
-
'
|
|
25
|
-
'
|
|
26
|
-
'
|
|
27
|
-
'
|
|
28
|
-
'
|
|
29
|
-
|
|
1
|
+
|
|
2
|
+
// Do not modify this file by hand!
|
|
3
|
+
// Re-generate this file by running lit-localize
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
/* eslint-disable no-irregular-whitespace */
|
|
9
|
+
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
10
|
+
|
|
11
|
+
export const templates = {
|
|
12
|
+
's159928724265eb05': `Pridėti parinktį`,
|
|
13
|
+
's1b23c41934894f30': `Paaiškinimas`,
|
|
14
|
+
's255857544a9d5ec0': `Iš naujo nustatyti`,
|
|
15
|
+
's4802e47fe2e95134': `Galimybė`,
|
|
16
|
+
's54393bfa280ea55b': `Paraginimas`,
|
|
17
|
+
's7254ca27b16ae2d8': `Klaidingas`,
|
|
18
|
+
's80dc9f56411917df': `Teksto paryškinimas`,
|
|
19
|
+
's85ea99fb52be3385': `Tiesa`,
|
|
20
|
+
'sb3d4f79d9d8b71e5': `Pateikti`,
|
|
21
|
+
'sc56e9323f076a11e': `Tekstas, prie kurio pridedami tarpai`,
|
|
22
|
+
'scd1dd6ff53d0d01a': `Pabandykite dar kartą`,
|
|
23
|
+
'sd26e8d4eef55e341': `Patikrinkite savo atsakymus`,
|
|
24
|
+
'saf8b589e65febbd2': `Save answer`,
|
|
25
|
+
'sb0aadaa04e658ad6': `Choice`,
|
|
26
|
+
's2ba5f4d8f3bd7c57': `Order`,
|
|
27
|
+
's2492f5fb1b05b45e': `Text`,
|
|
28
|
+
's49c940aecfef3ea0': `Mark`,
|
|
29
|
+
'saa3efba1f0c816b7': `Speech`,
|
|
30
|
+
};
|
|
30
31
|
|
|
@@ -1,30 +1,31 @@
|
|
|
1
|
-
|
|
2
|
-
// Do not modify this file by hand!
|
|
3
|
-
// Re-generate this file by running lit-localize
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
/* eslint-disable no-irregular-whitespace */
|
|
9
|
-
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
10
|
-
|
|
11
|
-
export const templates = {
|
|
12
|
-
's159928724265eb05': `Pievienot iespēju`,
|
|
13
|
-
's1b23c41934894f30': `Paskaidrojums`,
|
|
14
|
-
's255857544a9d5ec0': `Atiestatīt`,
|
|
15
|
-
's4802e47fe2e95134': `Iespēja`,
|
|
16
|
-
's54393bfa280ea55b': `Uzaicinājums`,
|
|
17
|
-
's7254ca27b16ae2d8': `Viltus`,
|
|
18
|
-
's80dc9f56411917df': `Teksta izcelšana`,
|
|
19
|
-
's85ea99fb52be3385': `True`,
|
|
20
|
-
'sb3d4f79d9d8b71e5': `Iesniegt`,
|
|
21
|
-
'sc56e9323f076a11e': `Teksts, kam pievienot atstarpes`,
|
|
22
|
-
'scd1dd6ff53d0d01a': `Mēģiniet vēlreiz`,
|
|
23
|
-
'sd26e8d4eef55e341': `Pārbaudiet savas atbildes`,
|
|
24
|
-
'
|
|
25
|
-
'
|
|
26
|
-
'
|
|
27
|
-
'
|
|
28
|
-
'
|
|
29
|
-
|
|
1
|
+
|
|
2
|
+
// Do not modify this file by hand!
|
|
3
|
+
// Re-generate this file by running lit-localize
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
/* eslint-disable no-irregular-whitespace */
|
|
9
|
+
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
10
|
+
|
|
11
|
+
export const templates = {
|
|
12
|
+
's159928724265eb05': `Pievienot iespēju`,
|
|
13
|
+
's1b23c41934894f30': `Paskaidrojums`,
|
|
14
|
+
's255857544a9d5ec0': `Atiestatīt`,
|
|
15
|
+
's4802e47fe2e95134': `Iespēja`,
|
|
16
|
+
's54393bfa280ea55b': `Uzaicinājums`,
|
|
17
|
+
's7254ca27b16ae2d8': `Viltus`,
|
|
18
|
+
's80dc9f56411917df': `Teksta izcelšana`,
|
|
19
|
+
's85ea99fb52be3385': `True`,
|
|
20
|
+
'sb3d4f79d9d8b71e5': `Iesniegt`,
|
|
21
|
+
'sc56e9323f076a11e': `Teksts, kam pievienot atstarpes`,
|
|
22
|
+
'scd1dd6ff53d0d01a': `Mēģiniet vēlreiz`,
|
|
23
|
+
'sd26e8d4eef55e341': `Pārbaudiet savas atbildes`,
|
|
24
|
+
'saf8b589e65febbd2': `Save answer`,
|
|
25
|
+
'sb0aadaa04e658ad6': `Choice`,
|
|
26
|
+
's2ba5f4d8f3bd7c57': `Order`,
|
|
27
|
+
's2492f5fb1b05b45e': `Text`,
|
|
28
|
+
's49c940aecfef3ea0': `Mark`,
|
|
29
|
+
'saa3efba1f0c816b7': `Speech`,
|
|
30
|
+
};
|
|
30
31
|
|