@polyglot-bundles/ru-lang 0.6.0 → 0.6.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.
@@ -0,0 +1,354 @@
1
+ /**
2
+ * Russian Language Foundation Data
3
+ *
4
+ * Russian uses the Cyrillic script with 33 letters
5
+ */
6
+ export declare const russianConsonants: {
7
+ readonly б: {
8
+ readonly char: "б";
9
+ readonly name: "be";
10
+ readonly pronunciation: "/b/";
11
+ };
12
+ readonly в: {
13
+ readonly char: "в";
14
+ readonly name: "ve";
15
+ readonly pronunciation: "/v/";
16
+ };
17
+ readonly г: {
18
+ readonly char: "г";
19
+ readonly name: "ge";
20
+ readonly pronunciation: "/ɡ/";
21
+ };
22
+ readonly д: {
23
+ readonly char: "д";
24
+ readonly name: "de";
25
+ readonly pronunciation: "/d/";
26
+ };
27
+ readonly ж: {
28
+ readonly char: "ж";
29
+ readonly name: "zhe";
30
+ readonly pronunciation: "/ʒ/";
31
+ };
32
+ readonly з: {
33
+ readonly char: "з";
34
+ readonly name: "ze";
35
+ readonly pronunciation: "/z/";
36
+ };
37
+ readonly й: {
38
+ readonly char: "й";
39
+ readonly name: "i short";
40
+ readonly pronunciation: "/j/";
41
+ };
42
+ readonly к: {
43
+ readonly char: "к";
44
+ readonly name: "ka";
45
+ readonly pronunciation: "/k/";
46
+ };
47
+ readonly л: {
48
+ readonly char: "л";
49
+ readonly name: "el";
50
+ readonly pronunciation: "/l/";
51
+ };
52
+ readonly м: {
53
+ readonly char: "м";
54
+ readonly name: "em";
55
+ readonly pronunciation: "/m/";
56
+ };
57
+ readonly н: {
58
+ readonly char: "н";
59
+ readonly name: "en";
60
+ readonly pronunciation: "/n/";
61
+ };
62
+ readonly п: {
63
+ readonly char: "п";
64
+ readonly name: "pe";
65
+ readonly pronunciation: "/p/";
66
+ };
67
+ readonly р: {
68
+ readonly char: "р";
69
+ readonly name: "er";
70
+ readonly pronunciation: "/r/";
71
+ };
72
+ readonly с: {
73
+ readonly char: "с";
74
+ readonly name: "es";
75
+ readonly pronunciation: "/s/";
76
+ };
77
+ readonly т: {
78
+ readonly char: "т";
79
+ readonly name: "te";
80
+ readonly pronunciation: "/t/";
81
+ };
82
+ readonly ф: {
83
+ readonly char: "ф";
84
+ readonly name: "ef";
85
+ readonly pronunciation: "/f/";
86
+ };
87
+ readonly х: {
88
+ readonly char: "х";
89
+ readonly name: "ha";
90
+ readonly pronunciation: "/x/";
91
+ };
92
+ readonly ц: {
93
+ readonly char: "ц";
94
+ readonly name: "tse";
95
+ readonly pronunciation: "/ts/";
96
+ };
97
+ readonly ч: {
98
+ readonly char: "ч";
99
+ readonly name: "che";
100
+ readonly pronunciation: "/tʃ/";
101
+ };
102
+ readonly ш: {
103
+ readonly char: "ш";
104
+ readonly name: "sha";
105
+ readonly pronunciation: "/ʃ/";
106
+ };
107
+ readonly щ: {
108
+ readonly char: "щ";
109
+ readonly name: "shta";
110
+ readonly pronunciation: "/ʃt/";
111
+ };
112
+ readonly ъ: {
113
+ readonly char: "ъ";
114
+ readonly name: "hard sign";
115
+ readonly pronunciation: "/j/";
116
+ };
117
+ readonly ь: {
118
+ readonly char: "ь";
119
+ readonly name: "soft sign";
120
+ readonly pronunciation: "/j/";
121
+ };
122
+ readonly ю: {
123
+ readonly char: "ю";
124
+ readonly name: "yu";
125
+ readonly pronunciation: "/ju/";
126
+ };
127
+ readonly я: {
128
+ readonly char: "я";
129
+ readonly name: "ya";
130
+ readonly pronunciation: "/ja/";
131
+ };
132
+ };
133
+ export declare const russianVowels: {
134
+ readonly а: {
135
+ readonly char: "а";
136
+ readonly name: "a";
137
+ readonly pronunciation: "/a/";
138
+ };
139
+ readonly э: {
140
+ readonly char: "э";
141
+ readonly name: "e";
142
+ readonly pronunciation: "/ɛ/";
143
+ };
144
+ readonly ы: {
145
+ readonly char: "ы";
146
+ readonly name: "y";
147
+ readonly pronunciation: "/ɨ/";
148
+ };
149
+ readonly у: {
150
+ readonly char: "у";
151
+ readonly name: "u";
152
+ readonly pronunciation: "/u/";
153
+ };
154
+ readonly о: {
155
+ readonly char: "о";
156
+ readonly name: "o";
157
+ readonly pronunciation: "/o/";
158
+ };
159
+ readonly е: {
160
+ readonly char: "е";
161
+ readonly name: "ye";
162
+ readonly pronunciation: "/je/";
163
+ };
164
+ readonly ё: {
165
+ readonly char: "ё";
166
+ readonly name: "yo";
167
+ readonly pronunciation: "/jo/";
168
+ };
169
+ readonly и: {
170
+ readonly char: "и";
171
+ readonly name: "i";
172
+ readonly pronunciation: "/i/";
173
+ };
174
+ };
175
+ export declare const russianAllCharacters: {
176
+ а: {
177
+ readonly char: "а";
178
+ readonly name: "a";
179
+ readonly pronunciation: "/a/";
180
+ };
181
+ э: {
182
+ readonly char: "э";
183
+ readonly name: "e";
184
+ readonly pronunciation: "/ɛ/";
185
+ };
186
+ ы: {
187
+ readonly char: "ы";
188
+ readonly name: "y";
189
+ readonly pronunciation: "/ɨ/";
190
+ };
191
+ у: {
192
+ readonly char: "у";
193
+ readonly name: "u";
194
+ readonly pronunciation: "/u/";
195
+ };
196
+ о: {
197
+ readonly char: "о";
198
+ readonly name: "o";
199
+ readonly pronunciation: "/o/";
200
+ };
201
+ е: {
202
+ readonly char: "е";
203
+ readonly name: "ye";
204
+ readonly pronunciation: "/je/";
205
+ };
206
+ ё: {
207
+ readonly char: "ё";
208
+ readonly name: "yo";
209
+ readonly pronunciation: "/jo/";
210
+ };
211
+ и: {
212
+ readonly char: "и";
213
+ readonly name: "i";
214
+ readonly pronunciation: "/i/";
215
+ };
216
+ б: {
217
+ readonly char: "б";
218
+ readonly name: "be";
219
+ readonly pronunciation: "/b/";
220
+ };
221
+ в: {
222
+ readonly char: "в";
223
+ readonly name: "ve";
224
+ readonly pronunciation: "/v/";
225
+ };
226
+ г: {
227
+ readonly char: "г";
228
+ readonly name: "ge";
229
+ readonly pronunciation: "/ɡ/";
230
+ };
231
+ д: {
232
+ readonly char: "д";
233
+ readonly name: "de";
234
+ readonly pronunciation: "/d/";
235
+ };
236
+ ж: {
237
+ readonly char: "ж";
238
+ readonly name: "zhe";
239
+ readonly pronunciation: "/ʒ/";
240
+ };
241
+ з: {
242
+ readonly char: "з";
243
+ readonly name: "ze";
244
+ readonly pronunciation: "/z/";
245
+ };
246
+ й: {
247
+ readonly char: "й";
248
+ readonly name: "i short";
249
+ readonly pronunciation: "/j/";
250
+ };
251
+ к: {
252
+ readonly char: "к";
253
+ readonly name: "ka";
254
+ readonly pronunciation: "/k/";
255
+ };
256
+ л: {
257
+ readonly char: "л";
258
+ readonly name: "el";
259
+ readonly pronunciation: "/l/";
260
+ };
261
+ м: {
262
+ readonly char: "м";
263
+ readonly name: "em";
264
+ readonly pronunciation: "/m/";
265
+ };
266
+ н: {
267
+ readonly char: "н";
268
+ readonly name: "en";
269
+ readonly pronunciation: "/n/";
270
+ };
271
+ п: {
272
+ readonly char: "п";
273
+ readonly name: "pe";
274
+ readonly pronunciation: "/p/";
275
+ };
276
+ р: {
277
+ readonly char: "р";
278
+ readonly name: "er";
279
+ readonly pronunciation: "/r/";
280
+ };
281
+ с: {
282
+ readonly char: "с";
283
+ readonly name: "es";
284
+ readonly pronunciation: "/s/";
285
+ };
286
+ т: {
287
+ readonly char: "т";
288
+ readonly name: "te";
289
+ readonly pronunciation: "/t/";
290
+ };
291
+ ф: {
292
+ readonly char: "ф";
293
+ readonly name: "ef";
294
+ readonly pronunciation: "/f/";
295
+ };
296
+ х: {
297
+ readonly char: "х";
298
+ readonly name: "ha";
299
+ readonly pronunciation: "/x/";
300
+ };
301
+ ц: {
302
+ readonly char: "ц";
303
+ readonly name: "tse";
304
+ readonly pronunciation: "/ts/";
305
+ };
306
+ ч: {
307
+ readonly char: "ч";
308
+ readonly name: "che";
309
+ readonly pronunciation: "/tʃ/";
310
+ };
311
+ ш: {
312
+ readonly char: "ш";
313
+ readonly name: "sha";
314
+ readonly pronunciation: "/ʃ/";
315
+ };
316
+ щ: {
317
+ readonly char: "щ";
318
+ readonly name: "shta";
319
+ readonly pronunciation: "/ʃt/";
320
+ };
321
+ ъ: {
322
+ readonly char: "ъ";
323
+ readonly name: "hard sign";
324
+ readonly pronunciation: "/j/";
325
+ };
326
+ ь: {
327
+ readonly char: "ь";
328
+ readonly name: "soft sign";
329
+ readonly pronunciation: "/j/";
330
+ };
331
+ ю: {
332
+ readonly char: "ю";
333
+ readonly name: "yu";
334
+ readonly pronunciation: "/ju/";
335
+ };
336
+ я: {
337
+ readonly char: "я";
338
+ readonly name: "ya";
339
+ readonly pronunciation: "/ja/";
340
+ };
341
+ };
342
+ export declare const RUSSIAN_PHONEME_INVENTORY: {
343
+ vowels: string[];
344
+ totalVowels: number;
345
+ consonants: string[];
346
+ totalPhonemes: number;
347
+ };
348
+ export type RussianConsonantKey = keyof typeof russianConsonants;
349
+ export type RussianVowelKey = keyof typeof russianVowels;
350
+ export type RussianCharacterKey = keyof typeof russianAllCharacters;
351
+ export declare const RUSSIAN_CONSONANT_IDS: RussianConsonantKey[];
352
+ export declare const RUSSIAN_VOWEL_IDS: RussianVowelKey[];
353
+ export declare const RUSSIAN_CHARACTER_IDS: RussianCharacterKey[];
354
+ //# sourceMappingURL=characters.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"characters.d.ts","sourceRoot":"","sources":["../src/characters.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0BpB,CAAC;AAEX,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAShB,CAAC;AAEX,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGhC,CAAC;AAMF,eAAO,MAAM,yBAAyB;;;;;CAQrC,CAAC;AAMF,MAAM,MAAM,mBAAmB,GAAG,MAAM,OAAO,iBAAiB,CAAC;AACjE,MAAM,MAAM,eAAe,GAAG,MAAM,OAAO,aAAa,CAAC;AACzD,MAAM,MAAM,mBAAmB,GAAG,MAAM,OAAO,oBAAoB,CAAC;AAEpE,eAAO,MAAM,qBAAqB,EAAqC,mBAAmB,EAAE,CAAC;AAC7F,eAAO,MAAM,iBAAiB,EAAiC,eAAe,EAAE,CAAC;AACjF,eAAO,MAAM,qBAAqB,EAAwC,mBAAmB,EAAE,CAAC"}
@@ -0,0 +1,211 @@
1
+ //#region src/characters.ts
2
+ var e = {
3
+ б: {
4
+ char: "б",
5
+ name: "be",
6
+ pronunciation: "/b/"
7
+ },
8
+ в: {
9
+ char: "в",
10
+ name: "ve",
11
+ pronunciation: "/v/"
12
+ },
13
+ г: {
14
+ char: "г",
15
+ name: "ge",
16
+ pronunciation: "/ɡ/"
17
+ },
18
+ д: {
19
+ char: "д",
20
+ name: "de",
21
+ pronunciation: "/d/"
22
+ },
23
+ ж: {
24
+ char: "ж",
25
+ name: "zhe",
26
+ pronunciation: "/ʒ/"
27
+ },
28
+ з: {
29
+ char: "з",
30
+ name: "ze",
31
+ pronunciation: "/z/"
32
+ },
33
+ й: {
34
+ char: "й",
35
+ name: "i short",
36
+ pronunciation: "/j/"
37
+ },
38
+ к: {
39
+ char: "к",
40
+ name: "ka",
41
+ pronunciation: "/k/"
42
+ },
43
+ л: {
44
+ char: "л",
45
+ name: "el",
46
+ pronunciation: "/l/"
47
+ },
48
+ м: {
49
+ char: "м",
50
+ name: "em",
51
+ pronunciation: "/m/"
52
+ },
53
+ н: {
54
+ char: "н",
55
+ name: "en",
56
+ pronunciation: "/n/"
57
+ },
58
+ п: {
59
+ char: "п",
60
+ name: "pe",
61
+ pronunciation: "/p/"
62
+ },
63
+ р: {
64
+ char: "р",
65
+ name: "er",
66
+ pronunciation: "/r/"
67
+ },
68
+ с: {
69
+ char: "с",
70
+ name: "es",
71
+ pronunciation: "/s/"
72
+ },
73
+ т: {
74
+ char: "т",
75
+ name: "te",
76
+ pronunciation: "/t/"
77
+ },
78
+ ф: {
79
+ char: "ф",
80
+ name: "ef",
81
+ pronunciation: "/f/"
82
+ },
83
+ х: {
84
+ char: "х",
85
+ name: "ha",
86
+ pronunciation: "/x/"
87
+ },
88
+ ц: {
89
+ char: "ц",
90
+ name: "tse",
91
+ pronunciation: "/ts/"
92
+ },
93
+ ч: {
94
+ char: "ч",
95
+ name: "che",
96
+ pronunciation: "/tʃ/"
97
+ },
98
+ ш: {
99
+ char: "ш",
100
+ name: "sha",
101
+ pronunciation: "/ʃ/"
102
+ },
103
+ щ: {
104
+ char: "щ",
105
+ name: "shta",
106
+ pronunciation: "/ʃt/"
107
+ },
108
+ ъ: {
109
+ char: "ъ",
110
+ name: "hard sign",
111
+ pronunciation: "/j/"
112
+ },
113
+ ь: {
114
+ char: "ь",
115
+ name: "soft sign",
116
+ pronunciation: "/j/"
117
+ },
118
+ ю: {
119
+ char: "ю",
120
+ name: "yu",
121
+ pronunciation: "/ju/"
122
+ },
123
+ я: {
124
+ char: "я",
125
+ name: "ya",
126
+ pronunciation: "/ja/"
127
+ }
128
+ }, t = {
129
+ а: {
130
+ char: "а",
131
+ name: "a",
132
+ pronunciation: "/a/"
133
+ },
134
+ э: {
135
+ char: "э",
136
+ name: "e",
137
+ pronunciation: "/ɛ/"
138
+ },
139
+ ы: {
140
+ char: "ы",
141
+ name: "y",
142
+ pronunciation: "/ɨ/"
143
+ },
144
+ у: {
145
+ char: "у",
146
+ name: "u",
147
+ pronunciation: "/u/"
148
+ },
149
+ о: {
150
+ char: "о",
151
+ name: "o",
152
+ pronunciation: "/o/"
153
+ },
154
+ е: {
155
+ char: "е",
156
+ name: "ye",
157
+ pronunciation: "/je/"
158
+ },
159
+ ё: {
160
+ char: "ё",
161
+ name: "yo",
162
+ pronunciation: "/jo/"
163
+ },
164
+ и: {
165
+ char: "и",
166
+ name: "i",
167
+ pronunciation: "/i/"
168
+ }
169
+ }, n = {
170
+ ...e,
171
+ ...t
172
+ }, r = {
173
+ vowels: [
174
+ "a",
175
+ "ɛ",
176
+ "ɨ",
177
+ "u",
178
+ "o",
179
+ "je",
180
+ "jo",
181
+ "i"
182
+ ],
183
+ totalVowels: 8,
184
+ consonants: [
185
+ "b",
186
+ "v",
187
+ "ɡ",
188
+ "d",
189
+ "ʒ",
190
+ "z",
191
+ "j",
192
+ "k",
193
+ "l",
194
+ "m",
195
+ "n",
196
+ "p",
197
+ "r",
198
+ "s",
199
+ "t",
200
+ "f",
201
+ "x",
202
+ "ts",
203
+ "tʃ",
204
+ "ʃ",
205
+ "ʃt",
206
+ "j"
207
+ ],
208
+ totalPhonemes: 34
209
+ }, i = Object.keys(e), a = Object.keys(t), o = Object.keys(n);
210
+ //#endregion
211
+ export { o as RUSSIAN_CHARACTER_IDS, i as RUSSIAN_CONSONANT_IDS, r as RUSSIAN_PHONEME_INVENTORY, a as RUSSIAN_VOWEL_IDS, n as russianAllCharacters, e as russianConsonants, t as russianVowels };
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Russian Language Foundation Data
3
+ *
4
+ * Russian uses the Cyrillic script with 33 letters
5
+ */
6
+ export { russianConsonants, russianVowels, russianAllCharacters, RUSSIAN_PHONEME_INVENTORY, type RussianConsonantKey, type RussianVowelKey, type RussianCharacterKey, RUSSIAN_CONSONANT_IDS, RUSSIAN_VOWEL_IDS, RUSSIAN_CHARACTER_IDS, } from './characters.js';
7
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EACL,iBAAiB,EACjB,aAAa,EACb,oBAAoB,EACpB,yBAAyB,EACzB,KAAK,mBAAmB,EACxB,KAAK,eAAe,EACpB,KAAK,mBAAmB,EACxB,qBAAqB,EACrB,iBAAiB,EACjB,qBAAqB,GACtB,MAAM,iBAAiB,CAAC"}
package/dist/index.js ADDED
@@ -0,0 +1,2 @@
1
+ import { RUSSIAN_CHARACTER_IDS as e, RUSSIAN_CONSONANT_IDS as t, RUSSIAN_PHONEME_INVENTORY as n, RUSSIAN_VOWEL_IDS as r, russianAllCharacters as i, russianConsonants as a, russianVowels as o } from "./characters.js";
2
+ export { e as RUSSIAN_CHARACTER_IDS, t as RUSSIAN_CONSONANT_IDS, n as RUSSIAN_PHONEME_INVENTORY, r as RUSSIAN_VOWEL_IDS, i as russianAllCharacters, a as russianConsonants, o as russianVowels };
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=index.test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.test.d.ts","sourceRoot":"","sources":["../src/index.test.ts"],"names":[],"mappings":""}
@@ -0,0 +1,11 @@
1
+ import { SoundCharacter, LanguageSoundsConfig } from '@polyglot-bundles/content-shared';
2
+ /**
3
+ * Russian — Wikipedia Russian_phonology.
4
+ * Hard/soft palatalization is THE defining Russian feature; soft
5
+ * consonants in own red category. 5-vowel system (Moscow school).
6
+ */
7
+ export declare const ruHardConsonants: SoundCharacter[];
8
+ export declare const ruSoftConsonants: SoundCharacter[];
9
+ export declare const ruVowels: SoundCharacter[];
10
+ export declare const russianSoundsConfig: LanguageSoundsConfig;
11
+ //# sourceMappingURL=sounds.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sounds.d.ts","sourceRoot":"","sources":["../src/sounds.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,cAAc,EAAE,KAAK,oBAAoB,EAAE,MAAM,kCAAkC,CAAC;AAElG;;;;GAIG;AAEH,eAAO,MAAM,gBAAgB,EAAE,cAAc,EAmB5C,CAAC;AAEF,eAAO,MAAM,gBAAgB,EAAE,cAAc,EAmB5C,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,cAAc,EAMpC,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,oBAMjC,CAAC"}
package/dist/sounds.js ADDED
@@ -0,0 +1,276 @@
1
+ //#region src/sounds.ts
2
+ var e = [
3
+ {
4
+ char: "м",
5
+ id: "m",
6
+ charType: "consonant",
7
+ ipa: "m"
8
+ },
9
+ {
10
+ char: "н",
11
+ id: "n",
12
+ charType: "consonant",
13
+ ipa: "n"
14
+ },
15
+ {
16
+ char: "п",
17
+ id: "p",
18
+ charType: "consonant",
19
+ ipa: "p"
20
+ },
21
+ {
22
+ char: "б",
23
+ id: "b",
24
+ charType: "consonant",
25
+ ipa: "b"
26
+ },
27
+ {
28
+ char: "т",
29
+ id: "t",
30
+ charType: "consonant",
31
+ ipa: "t"
32
+ },
33
+ {
34
+ char: "д",
35
+ id: "d",
36
+ charType: "consonant",
37
+ ipa: "d"
38
+ },
39
+ {
40
+ char: "к",
41
+ id: "k",
42
+ charType: "consonant",
43
+ ipa: "k"
44
+ },
45
+ {
46
+ char: "г",
47
+ id: "g",
48
+ charType: "consonant",
49
+ ipa: "ɡ"
50
+ },
51
+ {
52
+ char: "ц",
53
+ id: "ts",
54
+ charType: "consonant",
55
+ ipa: "ts"
56
+ },
57
+ {
58
+ char: "ф",
59
+ id: "f",
60
+ charType: "consonant",
61
+ ipa: "f"
62
+ },
63
+ {
64
+ char: "в",
65
+ id: "v",
66
+ charType: "consonant",
67
+ ipa: "v"
68
+ },
69
+ {
70
+ char: "с",
71
+ id: "s",
72
+ charType: "consonant",
73
+ ipa: "s"
74
+ },
75
+ {
76
+ char: "з",
77
+ id: "z",
78
+ charType: "consonant",
79
+ ipa: "z"
80
+ },
81
+ {
82
+ char: "ш",
83
+ id: "sh",
84
+ charType: "consonant",
85
+ ipa: "ʂ"
86
+ },
87
+ {
88
+ char: "ж",
89
+ id: "zh",
90
+ charType: "consonant",
91
+ ipa: "ʐ"
92
+ },
93
+ {
94
+ char: "х",
95
+ id: "kh",
96
+ charType: "consonant",
97
+ ipa: "x"
98
+ },
99
+ {
100
+ char: "л",
101
+ id: "l",
102
+ charType: "consonant",
103
+ ipa: "ɫ",
104
+ display: "л (hard / dark)"
105
+ },
106
+ {
107
+ char: "р",
108
+ id: "r",
109
+ charType: "consonant",
110
+ ipa: "r"
111
+ }
112
+ ], t = [
113
+ {
114
+ char: "мь",
115
+ id: "m_soft",
116
+ charType: "consonant",
117
+ ipa: "mʲ"
118
+ },
119
+ {
120
+ char: "нь",
121
+ id: "n_soft",
122
+ charType: "consonant",
123
+ ipa: "nʲ"
124
+ },
125
+ {
126
+ char: "пь",
127
+ id: "p_soft",
128
+ charType: "consonant",
129
+ ipa: "pʲ"
130
+ },
131
+ {
132
+ char: "бь",
133
+ id: "b_soft",
134
+ charType: "consonant",
135
+ ipa: "bʲ"
136
+ },
137
+ {
138
+ char: "ть",
139
+ id: "t_soft",
140
+ charType: "consonant",
141
+ ipa: "tʲ"
142
+ },
143
+ {
144
+ char: "дь",
145
+ id: "d_soft",
146
+ charType: "consonant",
147
+ ipa: "dʲ"
148
+ },
149
+ {
150
+ char: "кь",
151
+ id: "k_soft",
152
+ charType: "consonant",
153
+ ipa: "kʲ"
154
+ },
155
+ {
156
+ char: "гь",
157
+ id: "g_soft",
158
+ charType: "consonant",
159
+ ipa: "ɡʲ"
160
+ },
161
+ {
162
+ char: "фь",
163
+ id: "f_soft",
164
+ charType: "consonant",
165
+ ipa: "fʲ"
166
+ },
167
+ {
168
+ char: "вь",
169
+ id: "v_soft",
170
+ charType: "consonant",
171
+ ipa: "vʲ"
172
+ },
173
+ {
174
+ char: "сь",
175
+ id: "s_soft",
176
+ charType: "consonant",
177
+ ipa: "sʲ"
178
+ },
179
+ {
180
+ char: "зь",
181
+ id: "z_soft",
182
+ charType: "consonant",
183
+ ipa: "zʲ"
184
+ },
185
+ {
186
+ char: "ч",
187
+ id: "ch_soft",
188
+ charType: "consonant",
189
+ ipa: "tɕ"
190
+ },
191
+ {
192
+ char: "щ",
193
+ id: "sh_long_soft",
194
+ charType: "consonant",
195
+ ipa: "ɕː"
196
+ },
197
+ {
198
+ char: "хь",
199
+ id: "kh_soft",
200
+ charType: "consonant",
201
+ ipa: "xʲ"
202
+ },
203
+ {
204
+ char: "ль",
205
+ id: "l_soft",
206
+ charType: "consonant",
207
+ ipa: "lʲ"
208
+ },
209
+ {
210
+ char: "рь",
211
+ id: "r_soft",
212
+ charType: "consonant",
213
+ ipa: "rʲ"
214
+ },
215
+ {
216
+ char: "й",
217
+ id: "j",
218
+ charType: "consonant",
219
+ ipa: "j"
220
+ }
221
+ ], n = [
222
+ {
223
+ char: "и",
224
+ id: "i",
225
+ charType: "vowel",
226
+ ipa: "i"
227
+ },
228
+ {
229
+ char: "э / е",
230
+ id: "e",
231
+ charType: "vowel",
232
+ ipa: "e"
233
+ },
234
+ {
235
+ char: "а",
236
+ id: "a",
237
+ charType: "vowel",
238
+ ipa: "a"
239
+ },
240
+ {
241
+ char: "о",
242
+ id: "o",
243
+ charType: "vowel",
244
+ ipa: "o"
245
+ },
246
+ {
247
+ char: "у",
248
+ id: "u",
249
+ charType: "vowel",
250
+ ipa: "u"
251
+ }
252
+ ], r = { categories: [
253
+ {
254
+ id: "hard-consonants",
255
+ label: "Hard Consonants",
256
+ sounds: e,
257
+ charType: "consonant",
258
+ color: "blue"
259
+ },
260
+ {
261
+ id: "soft-consonants",
262
+ label: "Soft (Palatalized) Consonants",
263
+ sounds: t,
264
+ charType: "consonant",
265
+ color: "red"
266
+ },
267
+ {
268
+ id: "vowels",
269
+ label: "Vowels (5)",
270
+ sounds: n,
271
+ charType: "vowel",
272
+ color: "green"
273
+ }
274
+ ] };
275
+ //#endregion
276
+ export { e as ruHardConsonants, t as ruSoftConsonants, n as ruVowels, r as russianSoundsConfig };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@polyglot-bundles/ru-lang",
3
- "version": "0.6.0",
3
+ "version": "0.6.2",
4
4
  "description": "Russian language foundation data - characters, vowels, consonants, and pronunciation",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -32,8 +32,8 @@
32
32
  "devDependencies": {
33
33
  "vite-plugin-dts": "^4.5.4",
34
34
  "vitest": "^4.1.4",
35
- "@polyglot-bundles/lang-tooling": "0.0.0",
36
- "@polyglot-bundles/content-shared": "0.7.0"
35
+ "@polyglot-bundles/content-shared": "0.8.0",
36
+ "@polyglot-bundles/lang-tooling": "0.0.0"
37
37
  },
38
38
  "license": "MIT",
39
39
  "publishConfig": {