@polyglot-bundles/sk-minimal-pairs 0.2.2
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/dist/data/level-0.d.ts +4 -0
- package/dist/data/level-0.d.ts.map +1 -0
- package/dist/data/level-0.js +60 -0
- package/dist/data/level-1.d.ts +4 -0
- package/dist/data/level-1.d.ts.map +1 -0
- package/dist/data/level-1.js +56 -0
- package/dist/data/level-2.d.ts +4 -0
- package/dist/data/level-2.d.ts.map +1 -0
- package/dist/data/level-2.js +56 -0
- package/dist/data/level-3.d.ts +4 -0
- package/dist/data/level-3.d.ts.map +1 -0
- package/dist/data/level-3.js +56 -0
- package/dist/data/level-4.d.ts +4 -0
- package/dist/data/level-4.d.ts.map +1 -0
- package/dist/data/level-4.js +56 -0
- package/dist/data/level-5.d.ts +4 -0
- package/dist/data/level-5.d.ts.map +1 -0
- package/dist/data/level-5.js +46 -0
- package/dist/data.d.ts +4 -0
- package/dist/data.d.ts.map +1 -0
- package/dist/data.js +24 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +20 -0
- package/dist/levels.d.ts +4 -0
- package/dist/levels.d.ts.map +1 -0
- package/dist/levels.js +12 -0
- package/dist/pronunciationTips.d.ts +4 -0
- package/dist/pronunciationTips.d.ts.map +1 -0
- package/dist/pronunciationTips.js +11 -0
- package/package.json +74 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"level-0.d.ts","sourceRoot":"","sources":["../../src/data/level-0.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,kCAAkC,CAAC;AAEhF,eAAO,MAAM,WAAW,EAAE,uBAAuB,EAuDhD,CAAC;AAEF,eAAe,WAAW,CAAC"}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
const i = [
|
|
2
|
+
{
|
|
3
|
+
pairId: "sk_l0_001",
|
|
4
|
+
level: 0,
|
|
5
|
+
tags: ["level_0"],
|
|
6
|
+
contrastFeature: "consonant",
|
|
7
|
+
contrastDescription: "/b/ vs /p/",
|
|
8
|
+
word1: { script: "bača", definition: "shepherd", audioFile: null },
|
|
9
|
+
word2: { script: "pača", definition: "pača (dialectal)", audioFile: null }
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
pairId: "sk_l0_002",
|
|
13
|
+
level: 0,
|
|
14
|
+
tags: ["level_0"],
|
|
15
|
+
contrastFeature: "consonant",
|
|
16
|
+
contrastDescription: "/d/ vs /t/",
|
|
17
|
+
word1: { script: "den", definition: "day", audioFile: null },
|
|
18
|
+
word2: { script: "ten", definition: "ten", audioFile: null }
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
pairId: "sk_l0_003",
|
|
22
|
+
level: 0,
|
|
23
|
+
tags: ["level_0"],
|
|
24
|
+
contrastFeature: "consonant",
|
|
25
|
+
contrastDescription: "/g/ vs /k/",
|
|
26
|
+
word1: { script: "gaj", definition: "gaj (grove)", audioFile: null },
|
|
27
|
+
word2: { script: "kaj", definition: "kaj (dialectal)", audioFile: null }
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
pairId: "sk_l0_004",
|
|
31
|
+
level: 0,
|
|
32
|
+
tags: ["level_0"],
|
|
33
|
+
contrastFeature: "consonant",
|
|
34
|
+
contrastDescription: "/z/ vs /s/",
|
|
35
|
+
word1: { script: "zub", definition: "tooth", audioFile: null },
|
|
36
|
+
word2: { script: "súb", definition: "súb (dialectal)", audioFile: null }
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
pairId: "sk_l0_005",
|
|
40
|
+
level: 0,
|
|
41
|
+
tags: ["level_0"],
|
|
42
|
+
contrastFeature: "consonant",
|
|
43
|
+
contrastDescription: "/v/ vs /f/",
|
|
44
|
+
word1: { script: "voda", definition: "water", audioFile: null },
|
|
45
|
+
word2: { script: "foda", definition: "foda (dialectal)", audioFile: null }
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
pairId: "sk_l0_006",
|
|
49
|
+
level: 0,
|
|
50
|
+
tags: ["level_0"],
|
|
51
|
+
contrastFeature: "consonant",
|
|
52
|
+
contrastDescription: "/r/ vs /l/",
|
|
53
|
+
word1: { script: "ryba", definition: "fish", audioFile: null },
|
|
54
|
+
word2: { script: "lyba", definition: "lyba (dialectal)", audioFile: null }
|
|
55
|
+
}
|
|
56
|
+
];
|
|
57
|
+
export {
|
|
58
|
+
i as default,
|
|
59
|
+
i as level0Pairs
|
|
60
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"level-1.d.ts","sourceRoot":"","sources":["../../src/data/level-1.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,kCAAkC,CAAC;AAEhF,eAAO,MAAM,WAAW,EAAE,uBAAuB,EAmDhD,CAAC;AAEF,eAAe,WAAW,CAAC"}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
const l = [
|
|
2
|
+
{
|
|
3
|
+
pairId: "sk_l1_001",
|
|
4
|
+
level: 1,
|
|
5
|
+
tags: ["level_1", "nasal"],
|
|
6
|
+
contrastFeature: "vowel",
|
|
7
|
+
contrastDescription: "Nasal vs oral /a/",
|
|
8
|
+
pronunciationTipId: "vowel_nasal_oral",
|
|
9
|
+
word1: { script: "dan", definition: "tax", audioFile: null },
|
|
10
|
+
word2: { script: "dán", definition: "dán (dialectal)", audioFile: null }
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
pairId: "sk_l1_002",
|
|
14
|
+
level: 1,
|
|
15
|
+
tags: ["level_1", "nasal"],
|
|
16
|
+
contrastFeature: "vowel",
|
|
17
|
+
contrastDescription: "Nasal vs oral /e/",
|
|
18
|
+
pronunciationTipId: "vowel_nasal_oral",
|
|
19
|
+
word1: { script: "dve", definition: "two", audioFile: null },
|
|
20
|
+
word2: { script: "dvé", definition: "dvé (dialectal)", audioFile: null }
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
pairId: "sk_l1_003",
|
|
24
|
+
level: 1,
|
|
25
|
+
tags: ["level_1", "nasal"],
|
|
26
|
+
contrastFeature: "vowel",
|
|
27
|
+
contrastDescription: "Nasal vs oral /o/",
|
|
28
|
+
pronunciationTipId: "vowel_nasal_oral",
|
|
29
|
+
word1: { script: "dol", definition: "dol (valley)", audioFile: null },
|
|
30
|
+
word2: { script: "dól", definition: "dól (dialectal)", audioFile: null }
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
pairId: "sk_l1_004",
|
|
34
|
+
level: 1,
|
|
35
|
+
tags: ["level_1", "nasal"],
|
|
36
|
+
contrastFeature: "vowel",
|
|
37
|
+
contrastDescription: "Nasal vs oral /u/",
|
|
38
|
+
pronunciationTipId: "vowel_nasal_oral",
|
|
39
|
+
word1: { script: "dun", definition: "dun (dialectal)", audioFile: null },
|
|
40
|
+
word2: { script: "dún", definition: "dún (dialectal)", audioFile: null }
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
pairId: "sk_l1_005",
|
|
44
|
+
level: 1,
|
|
45
|
+
tags: ["level_1", "nasal"],
|
|
46
|
+
contrastFeature: "vowel",
|
|
47
|
+
contrastDescription: "Nasal vs oral /i/",
|
|
48
|
+
pronunciationTipId: "vowel_nasal_oral",
|
|
49
|
+
word1: { script: "dín", definition: "dín (dialectal)", audioFile: null },
|
|
50
|
+
word2: { script: "dinn", definition: "dinn (dialectal)", audioFile: null }
|
|
51
|
+
}
|
|
52
|
+
];
|
|
53
|
+
export {
|
|
54
|
+
l as default,
|
|
55
|
+
l as level1Pairs
|
|
56
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"level-2.d.ts","sourceRoot":"","sources":["../../src/data/level-2.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,kCAAkC,CAAC;AAEhF,eAAO,MAAM,WAAW,EAAE,uBAAuB,EAmDhD,CAAC;AAEF,eAAe,WAAW,CAAC"}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
const i = [
|
|
2
|
+
{
|
|
3
|
+
pairId: "sk_l2_001",
|
|
4
|
+
level: 2,
|
|
5
|
+
tags: ["level_2", "consonant"],
|
|
6
|
+
contrastFeature: "consonant",
|
|
7
|
+
contrastDescription: "Trilled r vs l",
|
|
8
|
+
pronunciationTipId: "consonant_r_trill",
|
|
9
|
+
word1: { script: "ryba", definition: "fish", audioFile: null },
|
|
10
|
+
word2: { script: "lyba", definition: "lyba (dialectal)", audioFile: null }
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
pairId: "sk_l2_002",
|
|
14
|
+
level: 2,
|
|
15
|
+
tags: ["level_2", "consonant"],
|
|
16
|
+
contrastFeature: "consonant",
|
|
17
|
+
contrastDescription: "Trilled r vs l",
|
|
18
|
+
pronunciationTipId: "consonant_r_trill",
|
|
19
|
+
word1: { script: "krava", definition: "cow", audioFile: null },
|
|
20
|
+
word2: { script: "klava", definition: "klava (dialectal)", audioFile: null }
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
pairId: "sk_l2_003",
|
|
24
|
+
level: 2,
|
|
25
|
+
tags: ["level_2", "consonant"],
|
|
26
|
+
contrastFeature: "consonant",
|
|
27
|
+
contrastDescription: "Trilled r vs l",
|
|
28
|
+
pronunciationTipId: "consonant_r_trill",
|
|
29
|
+
word1: { script: "hrad", definition: "castle", audioFile: null },
|
|
30
|
+
word2: { script: "hlad", definition: "hunger", audioFile: null }
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
pairId: "sk_l2_004",
|
|
34
|
+
level: 2,
|
|
35
|
+
tags: ["level_2", "consonant"],
|
|
36
|
+
contrastFeature: "consonant",
|
|
37
|
+
contrastDescription: "Trilled r vs l",
|
|
38
|
+
pronunciationTipId: "consonant_r_trill",
|
|
39
|
+
word1: { script: "prava", definition: "prava (right)", audioFile: null },
|
|
40
|
+
word2: { script: "plava", definition: "plava (dialectal)", audioFile: null }
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
pairId: "sk_l2_005",
|
|
44
|
+
level: 2,
|
|
45
|
+
tags: ["level_2", "consonant"],
|
|
46
|
+
contrastFeature: "consonant",
|
|
47
|
+
contrastDescription: "Trilled r vs l",
|
|
48
|
+
pronunciationTipId: "consonant_r_trill",
|
|
49
|
+
word1: { script: "sraka", definition: "sraka (dialectal)", audioFile: null },
|
|
50
|
+
word2: { script: "slaka", definition: "slaka (dialectal)", audioFile: null }
|
|
51
|
+
}
|
|
52
|
+
];
|
|
53
|
+
export {
|
|
54
|
+
i as default,
|
|
55
|
+
i as level2Pairs
|
|
56
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"level-3.d.ts","sourceRoot":"","sources":["../../src/data/level-3.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,kCAAkC,CAAC;AAEhF,eAAO,MAAM,WAAW,EAAE,uBAAuB,EAmDhD,CAAC;AAEF,eAAe,WAAW,CAAC"}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
const i = [
|
|
2
|
+
{
|
|
3
|
+
pairId: "sk_l3_001",
|
|
4
|
+
level: 3,
|
|
5
|
+
tags: ["level_3"],
|
|
6
|
+
contrastFeature: "consonant",
|
|
7
|
+
contrastDescription: "Soft ď vs hard d",
|
|
8
|
+
pronunciationTipId: "consonant_soft_hard",
|
|
9
|
+
word1: { script: "ďať", definition: "child", audioFile: null },
|
|
10
|
+
word2: { script: "dáť", definition: "to give", audioFile: null }
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
pairId: "sk_l3_002",
|
|
14
|
+
level: 3,
|
|
15
|
+
tags: ["level_3"],
|
|
16
|
+
contrastFeature: "consonant",
|
|
17
|
+
contrastDescription: "Soft ť vs hard t",
|
|
18
|
+
pronunciationTipId: "consonant_soft_hard",
|
|
19
|
+
word1: { script: "ťažký", definition: "heavy", audioFile: null },
|
|
20
|
+
word2: { script: "tážky", definition: "tážky (dialectal)", audioFile: null }
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
pairId: "sk_l3_003",
|
|
24
|
+
level: 3,
|
|
25
|
+
tags: ["level_3"],
|
|
26
|
+
contrastFeature: "consonant",
|
|
27
|
+
contrastDescription: "Soft ň vs hard n",
|
|
28
|
+
pronunciationTipId: "consonant_soft_hard",
|
|
29
|
+
word1: { script: "ňať", definition: "nať (dialectal)", audioFile: null },
|
|
30
|
+
word2: { script: "náť", definition: "náť (dialectal)", audioFile: null }
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
pairId: "sk_l3_004",
|
|
34
|
+
level: 3,
|
|
35
|
+
tags: ["level_3"],
|
|
36
|
+
contrastFeature: "consonant",
|
|
37
|
+
contrastDescription: "Soft ľ vs hard l",
|
|
38
|
+
pronunciationTipId: "consonant_soft_hard",
|
|
39
|
+
word1: { script: "ľaď", definition: "ľaď (dialectal)", audioFile: null },
|
|
40
|
+
word2: { script: "láď", definition: "láď (dialectal)", audioFile: null }
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
pairId: "sk_l3_005",
|
|
44
|
+
level: 3,
|
|
45
|
+
tags: ["level_3"],
|
|
46
|
+
contrastFeature: "consonant",
|
|
47
|
+
contrastDescription: "Palatalized consonants",
|
|
48
|
+
pronunciationTipId: "consonant_soft_hard",
|
|
49
|
+
word1: { script: "päť", definition: "five", audioFile: null },
|
|
50
|
+
word2: { script: "pát", definition: "pát (dialectal)", audioFile: null }
|
|
51
|
+
}
|
|
52
|
+
];
|
|
53
|
+
export {
|
|
54
|
+
i as default,
|
|
55
|
+
i as level3Pairs
|
|
56
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"level-4.d.ts","sourceRoot":"","sources":["../../src/data/level-4.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,kCAAkC,CAAC;AAEhF,eAAO,MAAM,WAAW,EAAE,uBAAuB,EAmDhD,CAAC;AAEF,eAAe,WAAW,CAAC"}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
const o = [
|
|
2
|
+
{
|
|
3
|
+
pairId: "sk_l4_001",
|
|
4
|
+
level: 4,
|
|
5
|
+
tags: ["level_4", "vowel"],
|
|
6
|
+
contrastFeature: "vowel",
|
|
7
|
+
contrastDescription: "Short vs long /a/",
|
|
8
|
+
pronunciationTipId: "vowel_short_long",
|
|
9
|
+
word1: { script: "ban", definition: "ban (short)", audioFile: null },
|
|
10
|
+
word2: { script: "bán", definition: "bán (long)", audioFile: null }
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
pairId: "sk_l4_002",
|
|
14
|
+
level: 4,
|
|
15
|
+
tags: ["level_4", "vowel"],
|
|
16
|
+
contrastFeature: "vowel",
|
|
17
|
+
contrastDescription: "Short vs long /e/",
|
|
18
|
+
pronunciationTipId: "vowel_short_long",
|
|
19
|
+
word1: { script: "ben", definition: "ben (short)", audioFile: null },
|
|
20
|
+
word2: { script: "bén", definition: "bén (long)", audioFile: null }
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
pairId: "sk_l4_003",
|
|
24
|
+
level: 4,
|
|
25
|
+
tags: ["level_4", "vowel"],
|
|
26
|
+
contrastFeature: "vowel",
|
|
27
|
+
contrastDescription: "Short vs long /i/",
|
|
28
|
+
pronunciationTipId: "vowel_short_long",
|
|
29
|
+
word1: { script: "bin", definition: "bin (short)", audioFile: null },
|
|
30
|
+
word2: { script: "bín", definition: "bín (long)", audioFile: null }
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
pairId: "sk_l4_004",
|
|
34
|
+
level: 4,
|
|
35
|
+
tags: ["level_4", "vowel"],
|
|
36
|
+
contrastFeature: "vowel",
|
|
37
|
+
contrastDescription: "Short vs long /o/",
|
|
38
|
+
pronunciationTipId: "vowel_short_long",
|
|
39
|
+
word1: { script: "bon", definition: "bon (short)", audioFile: null },
|
|
40
|
+
word2: { script: "bón", definition: "bón (long)", audioFile: null }
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
pairId: "sk_l4_005",
|
|
44
|
+
level: 4,
|
|
45
|
+
tags: ["level_4", "vowel"],
|
|
46
|
+
contrastFeature: "vowel",
|
|
47
|
+
contrastDescription: "Short vs long /u/",
|
|
48
|
+
pronunciationTipId: "vowel_short_long",
|
|
49
|
+
word1: { script: "bun", definition: "bun (short)", audioFile: null },
|
|
50
|
+
word2: { script: "bún", definition: "bún (long)", audioFile: null }
|
|
51
|
+
}
|
|
52
|
+
];
|
|
53
|
+
export {
|
|
54
|
+
o as default,
|
|
55
|
+
o as level4Pairs
|
|
56
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"level-5.d.ts","sourceRoot":"","sources":["../../src/data/level-5.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,kCAAkC,CAAC;AAEhF,eAAO,MAAM,WAAW,EAAE,uBAAuB,EAyChD,CAAC;AAEF,eAAe,WAAW,CAAC"}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
const i = [
|
|
2
|
+
{
|
|
3
|
+
pairId: "sk_l5_001",
|
|
4
|
+
level: 5,
|
|
5
|
+
tags: ["level_5", "consonant"],
|
|
6
|
+
contrastFeature: "consonant",
|
|
7
|
+
contrastDescription: "Subtle trill quality",
|
|
8
|
+
pronunciationTipId: "consonant_r_trill",
|
|
9
|
+
word1: { script: "krava", definition: "cow", audioFile: null },
|
|
10
|
+
word2: { script: "kráva", definition: "kráva (long)", audioFile: null }
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
pairId: "sk_l5_002",
|
|
14
|
+
level: 5,
|
|
15
|
+
tags: ["level_5", "consonant"],
|
|
16
|
+
contrastFeature: "consonant",
|
|
17
|
+
contrastDescription: "Subtle soft/hard distinction",
|
|
18
|
+
pronunciationTipId: "consonant_soft_hard",
|
|
19
|
+
word1: { script: "veľa", definition: "many", audioFile: null },
|
|
20
|
+
word2: { script: "vela", definition: "vela (dialectal)", audioFile: null }
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
pairId: "sk_l5_003",
|
|
24
|
+
level: 5,
|
|
25
|
+
tags: ["level_5", "nasal"],
|
|
26
|
+
contrastFeature: "vowel",
|
|
27
|
+
contrastDescription: "Nasal vowel in clusters",
|
|
28
|
+
pronunciationTipId: "vowel_nasal_oral",
|
|
29
|
+
word1: { script: "pán", definition: "man/lord", audioFile: null },
|
|
30
|
+
word2: { script: "pan", definition: "pan (dialectal)", audioFile: null }
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
pairId: "sk_l5_004",
|
|
34
|
+
level: 5,
|
|
35
|
+
tags: ["level_5"],
|
|
36
|
+
contrastFeature: "consonant",
|
|
37
|
+
contrastDescription: "Complex trill in clusters",
|
|
38
|
+
pronunciationTipId: "consonant_r_trill",
|
|
39
|
+
word1: { script: "sráčka", definition: "sráčka (dialectal)", audioFile: null },
|
|
40
|
+
word2: { script: "sláčka", definition: "sláčka (dialectal)", audioFile: null }
|
|
41
|
+
}
|
|
42
|
+
];
|
|
43
|
+
export {
|
|
44
|
+
i as default,
|
|
45
|
+
i as level5Pairs
|
|
46
|
+
};
|
package/dist/data.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"data.d.ts","sourceRoot":"","sources":["../src/data.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,kCAAkC,CAAC;AAoBjF,eAAO,MAAM,gBAAgB,EAAE,wBAI9B,CAAC;AAEF,eAAe,gBAAgB,CAAC"}
|
package/dist/data.js
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import r from "./data/level-0.js";
|
|
2
|
+
import i from "./data/level-1.js";
|
|
3
|
+
import o from "./data/level-2.js";
|
|
4
|
+
import m from "./data/level-3.js";
|
|
5
|
+
import l from "./data/level-4.js";
|
|
6
|
+
import e from "./data/level-5.js";
|
|
7
|
+
import a from "./levels.js";
|
|
8
|
+
import t from "./pronunciationTips.js";
|
|
9
|
+
const s = [
|
|
10
|
+
...r,
|
|
11
|
+
...i,
|
|
12
|
+
...o,
|
|
13
|
+
...m,
|
|
14
|
+
...l,
|
|
15
|
+
...e
|
|
16
|
+
], x = {
|
|
17
|
+
levels: a,
|
|
18
|
+
minimalPairs: s,
|
|
19
|
+
pronunciationTips: t
|
|
20
|
+
};
|
|
21
|
+
export {
|
|
22
|
+
x as default,
|
|
23
|
+
x as minimalPairsData
|
|
24
|
+
};
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export { minimalPairsData as default } from './data';
|
|
2
|
+
export type { MinimalPairsLanguageData, MinimalPairsLevelInfo, MinimalPairsMinimalPair, MinimalPairsPronunciationTipsMap, MinimalPairsRubySegment, MinimalPairsWordInfo, } from '@polyglot-bundles/content-shared';
|
|
3
|
+
export { level0Pairs as level0 } from './data/level-0';
|
|
4
|
+
export { level1Pairs as level1 } from './data/level-1';
|
|
5
|
+
export { level2Pairs as level2 } from './data/level-2';
|
|
6
|
+
export { level3Pairs as level3 } from './data/level-3';
|
|
7
|
+
export { level4Pairs as level4 } from './data/level-4';
|
|
8
|
+
export { level5Pairs as level5 } from './data/level-5';
|
|
9
|
+
export { levels } from './levels';
|
|
10
|
+
export { pronunciationTips } from './pronunciationTips';
|
|
11
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,IAAI,OAAO,EAAE,MAAM,QAAQ,CAAC;AAGrD,YAAY,EACV,wBAAwB,EACxB,qBAAqB,EACrB,uBAAuB,EACvB,gCAAgC,EAChC,uBAAuB,EACvB,oBAAoB,GACrB,MAAM,kCAAkC,CAAC;AAG1C,OAAO,EAAE,WAAW,IAAI,MAAM,EAAE,MAAM,gBAAgB,CAAC;AACvD,OAAO,EAAE,WAAW,IAAI,MAAM,EAAE,MAAM,gBAAgB,CAAC;AACvD,OAAO,EAAE,WAAW,IAAI,MAAM,EAAE,MAAM,gBAAgB,CAAC;AACvD,OAAO,EAAE,WAAW,IAAI,MAAM,EAAE,MAAM,gBAAgB,CAAC;AACvD,OAAO,EAAE,WAAW,IAAI,MAAM,EAAE,MAAM,gBAAgB,CAAC;AACvD,OAAO,EAAE,WAAW,IAAI,MAAM,EAAE,MAAM,gBAAgB,CAAC;AAGvD,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { default as o } from "./data.js";
|
|
2
|
+
import { default as t } from "./data/level-0.js";
|
|
3
|
+
import { default as f } from "./data/level-1.js";
|
|
4
|
+
import { default as s } from "./data/level-2.js";
|
|
5
|
+
import { default as d } from "./data/level-3.js";
|
|
6
|
+
import { default as x } from "./data/level-4.js";
|
|
7
|
+
import { default as i } from "./data/level-5.js";
|
|
8
|
+
import { default as c } from "./levels.js";
|
|
9
|
+
import { default as b } from "./pronunciationTips.js";
|
|
10
|
+
export {
|
|
11
|
+
o as default,
|
|
12
|
+
t as level0,
|
|
13
|
+
f as level1,
|
|
14
|
+
s as level2,
|
|
15
|
+
d as level3,
|
|
16
|
+
x as level4,
|
|
17
|
+
i as level5,
|
|
18
|
+
c as levels,
|
|
19
|
+
b as pronunciationTips
|
|
20
|
+
};
|
package/dist/levels.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"levels.d.ts","sourceRoot":"","sources":["../src/levels.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,kCAAkC,CAAC;AAE9E,eAAO,MAAM,MAAM,EAAE,qBAAqB,EAOzC,CAAC;AAEF,eAAe,MAAM,CAAC"}
|
package/dist/levels.js
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
const t = [
|
|
2
|
+
{ level: 0, title: "Getting Started", description: "Practice with clearly different sounds" },
|
|
3
|
+
{ level: 1, title: "Nasal vs Oral", description: "Nasal vs oral vowel pairs" },
|
|
4
|
+
{ level: 2, title: "R/L Contrast", description: "R/l contrast and trilling" },
|
|
5
|
+
{ level: 3, title: "Soft/Hard", description: "Soft vs hard consonants" },
|
|
6
|
+
{ level: 4, title: "Vowel Quality", description: "Vowel quality in different positions" },
|
|
7
|
+
{ level: 5, title: "Expert Level", description: "The most subtle distinctions" }
|
|
8
|
+
];
|
|
9
|
+
export {
|
|
10
|
+
t as default,
|
|
11
|
+
t as levels
|
|
12
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pronunciationTips.d.ts","sourceRoot":"","sources":["../src/pronunciationTips.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gCAAgC,EAAE,MAAM,kCAAkC,CAAC;AAEzF,eAAO,MAAM,iBAAiB,EAAE,gCAW/B,CAAC;AAEF,eAAe,iBAAiB,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
const a = {
|
|
2
|
+
vowel_nasal_oral: "Slovak has nasal vowels (án, én, ín, ón, ún) and oral vowels. Nasal vowels are pronounced with air flowing through the nose.",
|
|
3
|
+
consonant_r_trill: "Slovak /r/ is a trill - tap the tip of your tongue rapidly. Start with /d/ and add vibration.",
|
|
4
|
+
consonant_r_l: "/r/ is a trill. /l/ is a lateral - air flows around the sides of the tongue.",
|
|
5
|
+
consonant_soft_hard: "Soft consonants (ď, ť, ň) are palatalized - tongue raised toward hard palate. Hard consonants (d, t, n) are dental.",
|
|
6
|
+
vowel_short_long: "Short vowels are quick. Long vowels are held twice as long."
|
|
7
|
+
};
|
|
8
|
+
export {
|
|
9
|
+
a as default,
|
|
10
|
+
a as pronunciationTips
|
|
11
|
+
};
|
package/package.json
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@polyglot-bundles/sk-minimal-pairs",
|
|
3
|
+
"version": "0.2.2",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"types": "./dist/index.d.ts",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"import": "./dist/index.js"
|
|
11
|
+
},
|
|
12
|
+
"./data": {
|
|
13
|
+
"types": "./dist/data.d.ts",
|
|
14
|
+
"import": "./dist/data.js"
|
|
15
|
+
},
|
|
16
|
+
"./levels": {
|
|
17
|
+
"types": "./dist/levels.d.ts",
|
|
18
|
+
"import": "./dist/levels.js"
|
|
19
|
+
},
|
|
20
|
+
"./pronunciationTips": {
|
|
21
|
+
"types": "./dist/pronunciationTips.d.ts",
|
|
22
|
+
"import": "./dist/pronunciationTips.js"
|
|
23
|
+
},
|
|
24
|
+
"./data/level-0": {
|
|
25
|
+
"types": "./dist/data/level-0.d.ts",
|
|
26
|
+
"import": "./dist/data/level-0.js"
|
|
27
|
+
},
|
|
28
|
+
"./data/level-1": {
|
|
29
|
+
"types": "./dist/data/level-1.d.ts",
|
|
30
|
+
"import": "./dist/data/level-1.js"
|
|
31
|
+
},
|
|
32
|
+
"./data/level-2": {
|
|
33
|
+
"types": "./dist/data/level-2.d.ts",
|
|
34
|
+
"import": "./dist/data/level-2.js"
|
|
35
|
+
},
|
|
36
|
+
"./data/level-3": {
|
|
37
|
+
"types": "./dist/data/level-3.d.ts",
|
|
38
|
+
"import": "./dist/data/level-3.js"
|
|
39
|
+
},
|
|
40
|
+
"./data/level-4": {
|
|
41
|
+
"types": "./dist/data/level-4.d.ts",
|
|
42
|
+
"import": "./dist/data/level-4.js"
|
|
43
|
+
},
|
|
44
|
+
"./data/level-5": {
|
|
45
|
+
"types": "./dist/data/level-5.d.ts",
|
|
46
|
+
"import": "./dist/data/level-5.js"
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"files": [
|
|
50
|
+
"dist"
|
|
51
|
+
],
|
|
52
|
+
"dependencies": {
|
|
53
|
+
"@polyglot-bundles/sk-lang": "0.1.3",
|
|
54
|
+
"@polyglot-bundles/content-shared": "0.4.1"
|
|
55
|
+
},
|
|
56
|
+
"devDependencies": {
|
|
57
|
+
"vite": "^5.4.0",
|
|
58
|
+
"vite-plugin-dts": "^4.0.0",
|
|
59
|
+
"@polyglot-bundles/lang-tooling": "0.0.0"
|
|
60
|
+
},
|
|
61
|
+
"publishConfig": {
|
|
62
|
+
"access": "public"
|
|
63
|
+
},
|
|
64
|
+
"repository": {
|
|
65
|
+
"type": "git",
|
|
66
|
+
"url": "https://github.com/fustilio/polyglot-bundles",
|
|
67
|
+
"directory": "packages/sk/minimal-pairs"
|
|
68
|
+
},
|
|
69
|
+
"scripts": {
|
|
70
|
+
"typecheck": "tsc --noEmit",
|
|
71
|
+
"build": "vite build",
|
|
72
|
+
"clean": "rm -rf dist"
|
|
73
|
+
}
|
|
74
|
+
}
|