@laeng/th 0.1.0

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,1085 @@
1
+ const a = [
2
+ {
3
+ char: "ก",
4
+ id: "chicken",
5
+ charType: "consonant",
6
+ meaning: "Chicken",
7
+ thaiName: "ก ไก่",
8
+ romanName: "gaaw gài",
9
+ class: "middle",
10
+ initialPronunciation: "g-",
11
+ finalPronunciation: "-k",
12
+ audio: "ก ไก่"
13
+ },
14
+ {
15
+ char: "ข",
16
+ id: "egg",
17
+ charType: "consonant",
18
+ meaning: "Egg",
19
+ thaiName: "ข ไข่",
20
+ romanName: "khǎaw khài",
21
+ class: "high",
22
+ initialPronunciation: "kh-",
23
+ finalPronunciation: "-k",
24
+ audio: "ข ไข่"
25
+ },
26
+ {
27
+ char: "ฃ",
28
+ id: "bottle",
29
+ charType: "consonant",
30
+ meaning: "Bottle",
31
+ thaiName: "ฃ ขวด",
32
+ romanName: "khǎaw khùuat",
33
+ class: "high",
34
+ initialPronunciation: "kh-",
35
+ finalPronunciation: "-k",
36
+ audio: "ฃ ขวด",
37
+ notes: "Obsolete"
38
+ },
39
+ {
40
+ char: "ค",
41
+ id: "buffalo",
42
+ charType: "consonant",
43
+ meaning: "Water Buffalo",
44
+ thaiName: "ค ควาย",
45
+ romanName: "khaaw khwaai",
46
+ class: "low",
47
+ initialPronunciation: "kh-",
48
+ finalPronunciation: "-k",
49
+ audio: "ค ควาย"
50
+ },
51
+ {
52
+ char: "ฅ",
53
+ id: "person",
54
+ charType: "consonant",
55
+ meaning: "Person",
56
+ thaiName: "ฅ คน",
57
+ romanName: "khaaw khon",
58
+ class: "low",
59
+ initialPronunciation: "kh-",
60
+ finalPronunciation: "-k",
61
+ audio: "ฅ คน",
62
+ notes: "Obsolete"
63
+ },
64
+ {
65
+ char: "ฆ",
66
+ id: "bell",
67
+ charType: "consonant",
68
+ meaning: "Temple Bell",
69
+ thaiName: "ฆ ระฆัง",
70
+ romanName: "khaaw rá-khang",
71
+ class: "low",
72
+ initialPronunciation: "kh-",
73
+ finalPronunciation: "-k",
74
+ audio: "ฆ ระฆัง"
75
+ },
76
+ {
77
+ char: "ง",
78
+ id: "snake",
79
+ charType: "consonant",
80
+ meaning: "Snake",
81
+ thaiName: "ง งู",
82
+ romanName: "ngaaw ngu",
83
+ class: "low",
84
+ initialPronunciation: "ng-",
85
+ finalPronunciation: "-ng",
86
+ audio: "ง งู"
87
+ },
88
+ {
89
+ char: "จ",
90
+ id: "plate",
91
+ charType: "consonant",
92
+ meaning: "Plate",
93
+ thaiName: "จ จาน",
94
+ romanName: "jaaw jàan",
95
+ class: "middle",
96
+ initialPronunciation: "j-",
97
+ finalPronunciation: "-t",
98
+ audio: "จ จาน"
99
+ },
100
+ {
101
+ char: "ฉ",
102
+ id: "smallcymbals",
103
+ charType: "consonant",
104
+ meaning: "Small Cymbal",
105
+ thaiName: "ฉ ฉิ่ง",
106
+ romanName: "chǎaw chìng",
107
+ class: "high",
108
+ initialPronunciation: "ch-",
109
+ finalPronunciation: "n/a",
110
+ audio: "ฉ ฉิ่ง"
111
+ },
112
+ {
113
+ char: "ช",
114
+ id: "elephant",
115
+ charType: "consonant",
116
+ meaning: "Elephant",
117
+ thaiName: "ช ช้าง",
118
+ romanName: "chaaw cháang",
119
+ class: "low",
120
+ initialPronunciation: "ch-",
121
+ finalPronunciation: "-t",
122
+ audio: "ช ช้าง"
123
+ },
124
+ {
125
+ char: "ซ",
126
+ id: "chain",
127
+ charType: "consonant",
128
+ meaning: "Chain for Animals",
129
+ thaiName: "ซ โซ่",
130
+ romanName: "saaw sôo",
131
+ class: "low",
132
+ initialPronunciation: "s-",
133
+ finalPronunciation: "-s",
134
+ audio: "ซ โซ่",
135
+ notes: "Final -s only used in foreign loanwords"
136
+ },
137
+ {
138
+ char: "ฌ",
139
+ id: "tree",
140
+ charType: "consonant",
141
+ meaning: "Small Tree",
142
+ thaiName: "ฌ เฌอ",
143
+ romanName: "chaaw chuuhr",
144
+ class: "low",
145
+ initialPronunciation: "ch-",
146
+ finalPronunciation: "-t",
147
+ audio: "ฌ เฌอ"
148
+ },
149
+ {
150
+ char: "ญ",
151
+ id: "woman",
152
+ charType: "consonant",
153
+ meaning: "Woman",
154
+ thaiName: "ญ หญิง",
155
+ romanName: "yaaw yǐng",
156
+ class: "low",
157
+ initialPronunciation: "y-",
158
+ finalPronunciation: "-n",
159
+ audio: "ญ หญิง"
160
+ },
161
+ {
162
+ char: "ฎ",
163
+ id: "headdress",
164
+ charType: "consonant",
165
+ meaning: "Dance Hat",
166
+ thaiName: "ฎ ชฎา",
167
+ romanName: "daaw chá-daa",
168
+ class: "middle",
169
+ initialPronunciation: "d-",
170
+ finalPronunciation: "-t",
171
+ audio: "ฎ ชฎา"
172
+ },
173
+ {
174
+ char: "ฏ",
175
+ id: "goad",
176
+ charType: "consonant",
177
+ meaning: "Harpoon",
178
+ thaiName: "ฏ ปฏัก",
179
+ romanName: "dtaaw bpà-dtàk",
180
+ class: "middle",
181
+ initialPronunciation: "dt-",
182
+ finalPronunciation: "-t",
183
+ audio: "ฏ ปฏัก"
184
+ },
185
+ {
186
+ char: "ฐ",
187
+ id: "pedestal",
188
+ charType: "consonant",
189
+ meaning: "Pedestal",
190
+ thaiName: "ฐ ฐาน",
191
+ romanName: "thǎaw thǎan",
192
+ class: "high",
193
+ initialPronunciation: "th-",
194
+ finalPronunciation: "-t",
195
+ audio: "ฐ ฐาน"
196
+ },
197
+ {
198
+ char: "ฑ",
199
+ id: "montho",
200
+ charType: "consonant",
201
+ meaning: "Ramayana Character",
202
+ thaiName: "ฑ มณโฑ",
203
+ romanName: "thaaw mohn-thoo",
204
+ class: "low",
205
+ initialPronunciation: "th-",
206
+ finalPronunciation: "-t",
207
+ audio: "ฑ มณโฑ"
208
+ },
209
+ {
210
+ char: "ฒ",
211
+ id: "elder",
212
+ charType: "consonant",
213
+ meaning: "Old Man",
214
+ thaiName: "ฒ ผู้เฒ่า",
215
+ romanName: "thaaw phûu-thâo",
216
+ class: "low",
217
+ initialPronunciation: "th-",
218
+ finalPronunciation: "-t",
219
+ audio: "ฒ ผู้เฒ่า"
220
+ },
221
+ {
222
+ char: "ณ",
223
+ id: "monk",
224
+ charType: "consonant",
225
+ meaning: "Buddhist Monk",
226
+ thaiName: "ณ เณร",
227
+ romanName: "naaw nēn",
228
+ class: "low",
229
+ initialPronunciation: "n-",
230
+ finalPronunciation: "-n",
231
+ audio: "ณ เณร"
232
+ },
233
+ {
234
+ char: "ด",
235
+ id: "child",
236
+ charType: "consonant",
237
+ meaning: "Child",
238
+ thaiName: "ด เด็ก",
239
+ romanName: "daaw dèk",
240
+ class: "middle",
241
+ initialPronunciation: "d-",
242
+ finalPronunciation: "-t",
243
+ audio: "ด เด็ก"
244
+ },
245
+ {
246
+ char: "ต",
247
+ id: "turtle",
248
+ charType: "consonant",
249
+ meaning: "Turtle",
250
+ thaiName: "ต เต่า",
251
+ romanName: "dtaaw dtà-o",
252
+ class: "middle",
253
+ initialPronunciation: "dt-",
254
+ finalPronunciation: "-t",
255
+ audio: "ต เต่า"
256
+ },
257
+ {
258
+ char: "ถ",
259
+ id: "bag",
260
+ charType: "consonant",
261
+ meaning: "Shopping Bag",
262
+ thaiName: "ถ ถุง",
263
+ romanName: "thǎaw thǔng",
264
+ class: "high",
265
+ initialPronunciation: "th-",
266
+ finalPronunciation: "-t",
267
+ audio: "ถ ถุง"
268
+ },
269
+ {
270
+ char: "ท",
271
+ id: "soldier",
272
+ charType: "consonant",
273
+ meaning: "Soldier",
274
+ thaiName: "ท ทหาร",
275
+ romanName: "thaaw thá-hǎan",
276
+ class: "low",
277
+ initialPronunciation: "th-",
278
+ finalPronunciation: "-t",
279
+ audio: "ท ทหาร"
280
+ },
281
+ {
282
+ char: "ธ",
283
+ id: "flag",
284
+ charType: "consonant",
285
+ meaning: "Flag",
286
+ thaiName: "ธ ธง",
287
+ romanName: "thaaw thǒng",
288
+ class: "low",
289
+ initialPronunciation: "th-",
290
+ finalPronunciation: "-t",
291
+ audio: "ธ ธง"
292
+ },
293
+ {
294
+ char: "น",
295
+ id: "mouse",
296
+ charType: "consonant",
297
+ meaning: "Mouse",
298
+ thaiName: "น หนู",
299
+ romanName: "naaw nǔu",
300
+ class: "low",
301
+ initialPronunciation: "n-",
302
+ finalPronunciation: "-n",
303
+ audio: "น หนู"
304
+ },
305
+ {
306
+ char: "บ",
307
+ id: "leaf",
308
+ charType: "consonant",
309
+ meaning: "Leaf",
310
+ thaiName: "บ ใบไม้",
311
+ romanName: "baaw bai-máai",
312
+ class: "middle",
313
+ initialPronunciation: "b-",
314
+ finalPronunciation: "-p",
315
+ audio: "บ ใบไม้"
316
+ },
317
+ {
318
+ char: "ป",
319
+ id: "fish",
320
+ charType: "consonant",
321
+ meaning: "Fish",
322
+ thaiName: "ป ปลา",
323
+ romanName: "bpaaw bplaa",
324
+ class: "middle",
325
+ initialPronunciation: "bp-",
326
+ finalPronunciation: "-p",
327
+ audio: "ป ปลา"
328
+ },
329
+ {
330
+ char: "ผ",
331
+ id: "bee",
332
+ charType: "consonant",
333
+ meaning: "Bee",
334
+ thaiName: "ผ ผึ้ง",
335
+ romanName: "phǎaw phûe-ng",
336
+ class: "high",
337
+ initialPronunciation: "ph-",
338
+ finalPronunciation: "n/a",
339
+ audio: "ผ ผึ้ง"
340
+ },
341
+ {
342
+ char: "ฝ",
343
+ id: "lid",
344
+ charType: "consonant",
345
+ meaning: "Lid",
346
+ thaiName: "ฝ ฝา",
347
+ romanName: "fǎaw fǎa",
348
+ class: "high",
349
+ initialPronunciation: "f-",
350
+ finalPronunciation: "n/a",
351
+ audio: "ฝ ฝา"
352
+ },
353
+ {
354
+ char: "พ",
355
+ id: "tray",
356
+ charType: "consonant",
357
+ meaning: "Offering Tray",
358
+ thaiName: "พ พาน",
359
+ romanName: "phaaw phaan",
360
+ class: "low",
361
+ initialPronunciation: "ph-",
362
+ finalPronunciation: "-p",
363
+ audio: "พ พาน"
364
+ },
365
+ {
366
+ char: "ฟ",
367
+ id: "tooth",
368
+ charType: "consonant",
369
+ meaning: "Tooth",
370
+ thaiName: "ฟ ฟัน",
371
+ romanName: "faaw fán",
372
+ class: "low",
373
+ initialPronunciation: "f-",
374
+ finalPronunciation: "-p",
375
+ audio: "ฟ ฟัน"
376
+ },
377
+ {
378
+ char: "ภ",
379
+ id: "ship",
380
+ charType: "consonant",
381
+ meaning: "Ship",
382
+ thaiName: "ภ สำเภา",
383
+ romanName: "phaaw sǎm-phao",
384
+ class: "low",
385
+ initialPronunciation: "ph-",
386
+ finalPronunciation: "-p",
387
+ audio: "ภ สำเภา"
388
+ },
389
+ {
390
+ char: "ม",
391
+ id: "horse",
392
+ charType: "consonant",
393
+ meaning: "Horse",
394
+ thaiName: "ม ม้า",
395
+ romanName: "maaw máa",
396
+ class: "low",
397
+ initialPronunciation: "m-",
398
+ finalPronunciation: "-m",
399
+ audio: "ม ม้า"
400
+ },
401
+ {
402
+ char: "ย",
403
+ id: "ogre",
404
+ charType: "consonant",
405
+ meaning: "Ogre",
406
+ thaiName: "ย ยักษ์",
407
+ romanName: "yaaw yák",
408
+ class: "low",
409
+ initialPronunciation: "y-",
410
+ finalPronunciation: "[vowel]",
411
+ audio: "ย ยักษ์"
412
+ },
413
+ {
414
+ char: "ร",
415
+ id: "boat",
416
+ charType: "consonant",
417
+ meaning: "Boat",
418
+ thaiName: "ร เรือ",
419
+ romanName: "raaw ruuea",
420
+ class: "low",
421
+ initialPronunciation: "r-",
422
+ finalPronunciation: "-n",
423
+ audio: "ร เรือ"
424
+ },
425
+ {
426
+ char: "ล",
427
+ id: "monkey",
428
+ charType: "consonant",
429
+ meaning: "Monkey",
430
+ thaiName: "ล ลิง",
431
+ romanName: "laaw ling",
432
+ class: "low",
433
+ initialPronunciation: "l-",
434
+ finalPronunciation: "-n",
435
+ audio: "ล ลิง"
436
+ },
437
+ {
438
+ char: "ว",
439
+ id: "ring",
440
+ charType: "consonant",
441
+ meaning: "Ring",
442
+ thaiName: "ว แหวน",
443
+ romanName: "waaw wǎaen",
444
+ class: "low",
445
+ initialPronunciation: "w-",
446
+ finalPronunciation: "[vowel]",
447
+ audio: "ว แหวน"
448
+ },
449
+ {
450
+ char: "ศ",
451
+ id: "pavilion",
452
+ charType: "consonant",
453
+ meaning: "Pavilion",
454
+ thaiName: "ศ ศาลา",
455
+ romanName: "sǎaw sǎa-laa",
456
+ class: "high",
457
+ initialPronunciation: "s-",
458
+ finalPronunciation: "-t",
459
+ audio: "ศ ศาลา"
460
+ },
461
+ {
462
+ char: "ษ",
463
+ id: "hermit",
464
+ charType: "consonant",
465
+ meaning: "Hermit",
466
+ thaiName: "ษ ฤๅษี",
467
+ romanName: "sǎaw ruue-sǐi",
468
+ class: "high",
469
+ initialPronunciation: "s-",
470
+ finalPronunciation: "-t",
471
+ audio: "ษ ฤๅษี"
472
+ },
473
+ {
474
+ char: "ส",
475
+ id: "tiger",
476
+ charType: "consonant",
477
+ meaning: "Tiger",
478
+ thaiName: "ส เสือ",
479
+ romanName: "sǎaw sǔuea",
480
+ class: "high",
481
+ initialPronunciation: "s-",
482
+ finalPronunciation: "-t",
483
+ audio: "ส เสือ"
484
+ },
485
+ {
486
+ char: "ห",
487
+ id: "box",
488
+ charType: "consonant",
489
+ meaning: "Box / Trunk",
490
+ thaiName: "ห หีบ",
491
+ romanName: "hǎaw hìip",
492
+ class: "high",
493
+ initialPronunciation: "h-",
494
+ finalPronunciation: "n/a",
495
+ audio: "ห หีบ"
496
+ },
497
+ {
498
+ char: "ฬ",
499
+ id: "kite",
500
+ charType: "consonant",
501
+ meaning: "Kite",
502
+ thaiName: "ฬ จุฬา",
503
+ romanName: "laaw jù-láa",
504
+ class: "low",
505
+ initialPronunciation: "l-",
506
+ finalPronunciation: "-n",
507
+ audio: "ฬ จุฬา"
508
+ },
509
+ {
510
+ char: "อ",
511
+ id: "bowl",
512
+ charType: "consonant",
513
+ meaning: "Bowl",
514
+ thaiName: "อ อ่าง",
515
+ romanName: "aaw àang",
516
+ class: "middle",
517
+ initialPronunciation: "-",
518
+ finalPronunciation: "[vowel]",
519
+ audio: "อ อ่าง",
520
+ notes: "Can be used as both a vowel and a consonant. As a consonant it is pronounced as a glottal stop, used for words that start with a vowel sound."
521
+ },
522
+ {
523
+ char: "ฮ",
524
+ id: "owl",
525
+ charType: "consonant",
526
+ meaning: "Owl",
527
+ thaiName: "ฮ นกฮูก",
528
+ romanName: "haaw nók-hûuk",
529
+ class: "low",
530
+ initialPronunciation: "h-",
531
+ finalPronunciation: "n/a",
532
+ audio: "ฮ นกฮูก"
533
+ }
534
+ ], n = [
535
+ {
536
+ char: "า",
537
+ id: "aa",
538
+ charType: "vowel",
539
+ thaiName: "สระอา",
540
+ romanName: "sà-rà aa",
541
+ pronunciation: "aa",
542
+ length: "long",
543
+ display: "◌า",
544
+ audio: "สระอา"
545
+ },
546
+ {
547
+ char: "อ",
548
+ id: "ɔɔ",
549
+ charType: "vowel",
550
+ thaiName: "สระออ",
551
+ romanName: "sà-rà ɔɔ",
552
+ pronunciation: "ɔɔ",
553
+ length: "long",
554
+ display: "◌อ",
555
+ audio: "สระออ",
556
+ notes: "Can be used as both a vowel and a consonant."
557
+ },
558
+ {
559
+ char: "ิ",
560
+ id: "i",
561
+ charType: "vowel",
562
+ thaiName: "สระอิ",
563
+ romanName: "sà-rà i",
564
+ pronunciation: "i",
565
+ length: "short",
566
+ display: "◌ิ",
567
+ audio: "สระอิ"
568
+ },
569
+ {
570
+ char: "ี",
571
+ id: "ii",
572
+ charType: "vowel",
573
+ thaiName: "สระอี",
574
+ romanName: "sà-rà ii",
575
+ pronunciation: "ii",
576
+ length: "long",
577
+ display: "◌ี",
578
+ audio: "สระอี"
579
+ },
580
+ {
581
+ char: "ะ",
582
+ id: "dead",
583
+ charType: "vowel",
584
+ thaiName: "สระอะ",
585
+ romanName: "sà-rà aʔ",
586
+ pronunciation: "aʔ",
587
+ length: "short",
588
+ display: "◌ะ",
589
+ audio: "สระอะ",
590
+ notes: "Pronounced as [a] with glottal stop."
591
+ },
592
+ {
593
+ char: "เ",
594
+ id: "ee",
595
+ charType: "vowel",
596
+ thaiName: "สระเอ",
597
+ romanName: "sà-rà ee",
598
+ pronunciation: "ee",
599
+ length: "long",
600
+ display: "เ◌",
601
+ audio: "สระเอ"
602
+ },
603
+ {
604
+ char: "แ",
605
+ id: "aae",
606
+ charType: "vowel",
607
+ thaiName: "สระแอ",
608
+ romanName: "sà-rà aae",
609
+ pronunciation: "aae",
610
+ length: "long",
611
+ display: "แ◌",
612
+ audio: "สระแอ"
613
+ },
614
+ {
615
+ char: "ู",
616
+ id: "uu",
617
+ charType: "vowel",
618
+ thaiName: "สระอู",
619
+ romanName: "sà-rà uu",
620
+ pronunciation: "uu",
621
+ length: "long",
622
+ display: "◌ู",
623
+ audio: "สระอู"
624
+ },
625
+ {
626
+ char: "ุ",
627
+ id: "u",
628
+ charType: "vowel",
629
+ thaiName: "สระอุ",
630
+ romanName: "sà-rà u",
631
+ pronunciation: "u",
632
+ length: "short",
633
+ display: "◌ุ",
634
+ audio: "สระอุ"
635
+ },
636
+ {
637
+ char: "ื",
638
+ id: "ʉʉ",
639
+ charType: "vowel",
640
+ thaiName: "สระอื",
641
+ romanName: "sà-rà ʉʉ",
642
+ pronunciation: "ʉʉ",
643
+ length: "long",
644
+ display: "◌ื",
645
+ audio: "สระอื"
646
+ },
647
+ {
648
+ char: "ึ",
649
+ id: "ʉ",
650
+ charType: "vowel",
651
+ thaiName: "สระอึ",
652
+ romanName: "sà-rà ʉ",
653
+ pronunciation: "ʉ",
654
+ length: "short",
655
+ display: "◌ึ",
656
+ audio: "สระอึ"
657
+ },
658
+ {
659
+ char: "โ",
660
+ id: "oo",
661
+ charType: "vowel",
662
+ thaiName: "สระโอ",
663
+ romanName: "sà-rà oo",
664
+ pronunciation: "oo",
665
+ length: "long",
666
+ display: "โ◌",
667
+ audio: "สระโอ"
668
+ },
669
+ {
670
+ char: "ไ",
671
+ id: "aimaimalaai",
672
+ charType: "vowel",
673
+ thaiName: "สระไอไม้มลาย",
674
+ romanName: "sà-rà ai mái-má-laai",
675
+ pronunciation: "ai",
676
+ type: "diphthong",
677
+ display: "ไ◌",
678
+ audio: "สระไอไม้มลาย"
679
+ },
680
+ {
681
+ char: "ใ",
682
+ id: "aimaimuuan",
683
+ charType: "vowel",
684
+ thaiName: "สระใอไม้ม้วน",
685
+ romanName: "sà-rà ai mái-múuan",
686
+ pronunciation: "ai",
687
+ type: "diphthong",
688
+ display: "ใ◌",
689
+ audio: "สระใอไม้ม้วน"
690
+ },
691
+ {
692
+ char: "เา",
693
+ id: "ao",
694
+ charType: "vowel",
695
+ thaiName: "สระเอา",
696
+ romanName: "sà-rà ao",
697
+ pronunciation: "ao",
698
+ type: "diphthong",
699
+ display: "เ◌า",
700
+ audio: "สระเอา"
701
+ },
702
+ {
703
+ char: "เีย",
704
+ id: "i_a",
705
+ charType: "vowel",
706
+ thaiName: "สระเอีย",
707
+ romanName: "sà-rà i:a",
708
+ pronunciation: "i:a",
709
+ length: "long",
710
+ type: "diphthong",
711
+ display: "เ◌ีย",
712
+ audio: "สระเอีย"
713
+ },
714
+ {
715
+ char: "เือ",
716
+ id: "ʉa",
717
+ charType: "vowel",
718
+ thaiName: "สระเอือ",
719
+ romanName: "sà-rà ʉa",
720
+ pronunciation: "ʉa",
721
+ length: "long",
722
+ type: "diphthong",
723
+ display: "เ◌ือ",
724
+ audio: "สระเอือ"
725
+ },
726
+ {
727
+ char: "ำ",
728
+ id: "am",
729
+ charType: "vowel",
730
+ thaiName: "สระอำ",
731
+ romanName: "sà-rà am",
732
+ pronunciation: "am",
733
+ display: "◌ำ",
734
+ audio: "สระอำ"
735
+ },
736
+ {
737
+ char: "เะ",
738
+ id: "e",
739
+ charType: "vowel",
740
+ thaiName: "สระเอะ",
741
+ romanName: "sà-rà e",
742
+ pronunciation: "e",
743
+ length: "short",
744
+ display: "เ◌ะ",
745
+ audio: "สระเอะ"
746
+ },
747
+ {
748
+ char: "แะ",
749
+ id: "ɛ",
750
+ charType: "vowel",
751
+ thaiName: "สระแอะ",
752
+ romanName: "sà-rà ɛ",
753
+ pronunciation: "ɛ",
754
+ length: "short",
755
+ display: "แ◌ะ",
756
+ audio: "สระแอะ"
757
+ },
758
+ {
759
+ char: "โะ",
760
+ id: "o",
761
+ charType: "vowel",
762
+ thaiName: "สระโอะ",
763
+ romanName: "sà-rà o",
764
+ pronunciation: "o",
765
+ length: "short",
766
+ display: "โ◌ะ",
767
+ audio: "สระโอะ"
768
+ },
769
+ {
770
+ char: "เาะ",
771
+ id: "ɔ",
772
+ charType: "vowel",
773
+ thaiName: "สระเอาะ",
774
+ romanName: "sà-rà ɔ",
775
+ pronunciation: "ɔ",
776
+ length: "short",
777
+ display: "เ◌าะ",
778
+ audio: "สระเอาะ"
779
+ },
780
+ {
781
+ char: "เอะ",
782
+ id: "ə",
783
+ charType: "vowel",
784
+ thaiName: "สระเออะ",
785
+ romanName: "sà-rà ə",
786
+ pronunciation: "ə",
787
+ length: "short",
788
+ display: "เ◌อะ",
789
+ audio: "สระเออะ"
790
+ },
791
+ {
792
+ char: "เอ",
793
+ id: "ə_",
794
+ charType: "vowel",
795
+ thaiName: "สระเออ",
796
+ romanName: "sà-rà ə:",
797
+ pronunciation: "ə:",
798
+ length: "long",
799
+ display: "เ◌อ",
800
+ audio: "สระเออ"
801
+ },
802
+ {
803
+ char: "ัวะ",
804
+ id: "ua",
805
+ charType: "vowel",
806
+ thaiName: "สระอัวะ",
807
+ romanName: "sà-rà ua",
808
+ pronunciation: "ua",
809
+ length: "short",
810
+ type: "diphthong",
811
+ display: "◌ัวะ",
812
+ audio: "สระอัวะ"
813
+ },
814
+ {
815
+ char: "ัว",
816
+ id: "u_a",
817
+ charType: "vowel",
818
+ thaiName: "สระอัว",
819
+ romanName: "sà-rà u:a",
820
+ pronunciation: "u:a",
821
+ length: "long",
822
+ type: "diphthong",
823
+ display: "◌ัว",
824
+ audio: "สระอัว"
825
+ },
826
+ {
827
+ char: "เียะ",
828
+ id: "ia",
829
+ charType: "vowel",
830
+ thaiName: "สระเอียะ",
831
+ romanName: "sà-rà ia",
832
+ pronunciation: "ia",
833
+ length: "short",
834
+ type: "diphthong",
835
+ display: "เ◌ียะ",
836
+ audio: "สระเอียะ"
837
+ },
838
+ {
839
+ char: "เือะ",
840
+ id: "ɯa",
841
+ charType: "vowel",
842
+ thaiName: "สระเอือะ",
843
+ romanName: "sà-rà ɯa",
844
+ pronunciation: "ɯa",
845
+ length: "short",
846
+ type: "diphthong",
847
+ display: "เ◌ือะ",
848
+ audio: "สระเอือะ"
849
+ },
850
+ {
851
+ char: "ฤ",
852
+ id: "ri",
853
+ charType: "vowel",
854
+ thaiName: "ตัว รึ",
855
+ romanName: "dtuua rʉ",
856
+ pronunciation: "ri / rʉ / rəə",
857
+ length: "short",
858
+ audio: "ตัว ฤ"
859
+ },
860
+ {
861
+ char: "ฤๅ",
862
+ id: "ruue",
863
+ charType: "vowel",
864
+ thaiName: "ตัว รือ",
865
+ romanName: "dtuua ruue",
866
+ pronunciation: "ruue",
867
+ length: "long",
868
+ audio: "ตัว ฤๅ"
869
+ },
870
+ {
871
+ char: "ฦ",
872
+ id: "lʉ",
873
+ charType: "vowel",
874
+ thaiName: "ตัว ลึ",
875
+ romanName: "dtuua lúe",
876
+ pronunciation: "lúe",
877
+ length: "short",
878
+ audio: "ตัว ฦ",
879
+ notes: "Obsolete"
880
+ },
881
+ {
882
+ char: "ฦๅ",
883
+ id: "luue",
884
+ charType: "vowel",
885
+ thaiName: "ตัว ลือ",
886
+ romanName: "dtuua luue",
887
+ pronunciation: "luue",
888
+ length: "long",
889
+ audio: "ตัว ฦๅ",
890
+ notes: "Obsolete"
891
+ }
892
+ ], i = [
893
+ {
894
+ char: "่",
895
+ id: "tone1",
896
+ charType: "tone",
897
+ thaiName: "ไม้เอก",
898
+ romanName: "mái-èek",
899
+ meaning: "Low or Falling tone",
900
+ display: "◌่",
901
+ audio: "ไม้เอก",
902
+ notes: "Low for Middle and High class consonants, Falling for Low class consonants."
903
+ },
904
+ {
905
+ char: "้",
906
+ id: "tone2",
907
+ charType: "tone",
908
+ thaiName: "ไม้โท",
909
+ romanName: "mái-thoo",
910
+ meaning: "Falling or High tone",
911
+ display: "◌้",
912
+ audio: "ไม้โท",
913
+ notes: "Falling for Middle and High class consonants, High for Low class consonants."
914
+ },
915
+ {
916
+ char: "๊",
917
+ id: "tone3",
918
+ charType: "tone",
919
+ thaiName: "ไม้ตรี",
920
+ romanName: "mái-dtrii",
921
+ meaning: "High tone",
922
+ display: "◌๊",
923
+ audio: "ไม้ตรี",
924
+ notes: "Only applies to Middle class consonants."
925
+ },
926
+ {
927
+ char: "๋",
928
+ id: "tone4",
929
+ charType: "tone",
930
+ thaiName: "ไม้จัตวา",
931
+ romanName: "mái-jàt-dtà-waa",
932
+ meaning: "Rising tone",
933
+ display: "◌๋",
934
+ audio: "ไม้จัตวา",
935
+ notes: "Only applies to Middle class consonants."
936
+ }
937
+ ], o = [
938
+ {
939
+ char: "รร",
940
+ id: "an",
941
+ charType: "symbol",
942
+ thaiName: "ร หัน",
943
+ romanName: "rɔɔ hǎn",
944
+ meaning: "Represents the /a/ vowel in certain Sanskrit loanwords",
945
+ pronunciation: "a / an",
946
+ display: "◌รร◌",
947
+ audio: "ร หัน",
948
+ notes: "Not usually considered a vowel. Pronounced as /an/ when there is no final consonant."
949
+ },
950
+ {
951
+ char: "์",
952
+ id: "silencer",
953
+ charType: "symbol",
954
+ thaiName: "ทัณฑฆาต",
955
+ romanName: "tan-tá-kâat",
956
+ meaning: "Silencer",
957
+ display: "◌์",
958
+ audio: "ทัณฑฆาต"
959
+ },
960
+ {
961
+ char: "็",
962
+ id: "shortener",
963
+ charType: "symbol",
964
+ thaiName: "ไม้ไต่คู้",
965
+ romanName: "mái dtàai kóo",
966
+ meaning: "Shortens vowel",
967
+ display: "◌็",
968
+ audio: "ไม้ไต่คู้"
969
+ },
970
+ {
971
+ char: "ๆ",
972
+ id: "mok",
973
+ charType: "symbol",
974
+ thaiName: "ไม้ยมก",
975
+ romanName: "mái yá-mók",
976
+ meaning: "Repeat the previous word or phrase",
977
+ audio: "ไม้ยมก"
978
+ },
979
+ {
980
+ char: "ฯ",
981
+ id: "noy",
982
+ charType: "symbol",
983
+ thaiName: "ไปยาลน้อย",
984
+ romanName: "bpai yaan nói",
985
+ meaning: "Marks that a word or phrases is abbreviated",
986
+ audio: "ไปยาลน้อย"
987
+ },
988
+ {
989
+ char: "ฺ",
990
+ id: "phinthu",
991
+ charType: "symbol",
992
+ thaiName: "พินทุ",
993
+ romanName: "phin-tú",
994
+ meaning: "Indicates the initial consonant of a consonant cluster (in dictionaries)",
995
+ display: "◌ฺ",
996
+ audio: "พินทุ"
997
+ },
998
+ {
999
+ char: "ฯลฯ",
1000
+ id: "etc",
1001
+ charType: "symbol",
1002
+ thaiName: "ไปยาลใหญ่",
1003
+ romanName: "bpai yaan yài",
1004
+ meaning: "Et cetera (etc.)",
1005
+ audio: "ไปยาล ใหญ่"
1006
+ }
1007
+ ], e = [
1008
+ {
1009
+ char: "๐",
1010
+ id: "zero",
1011
+ charType: "number",
1012
+ meaning: "Zero",
1013
+ pronunciation: "sǒon"
1014
+ },
1015
+ {
1016
+ char: "๑",
1017
+ id: "one",
1018
+ charType: "number",
1019
+ meaning: "One",
1020
+ pronunciation: "nʉng"
1021
+ },
1022
+ {
1023
+ char: "๒",
1024
+ id: "two",
1025
+ charType: "number",
1026
+ meaning: "Two",
1027
+ pronunciation: "sǒng"
1028
+ },
1029
+ {
1030
+ char: "๓",
1031
+ id: "three",
1032
+ charType: "number",
1033
+ meaning: "Three",
1034
+ pronunciation: "sǎam"
1035
+ },
1036
+ {
1037
+ char: "๔",
1038
+ id: "four",
1039
+ charType: "number",
1040
+ meaning: "Four",
1041
+ pronunciation: "sìi"
1042
+ },
1043
+ {
1044
+ char: "๕",
1045
+ id: "five",
1046
+ charType: "number",
1047
+ meaning: "Five",
1048
+ pronunciation: "hâa"
1049
+ },
1050
+ {
1051
+ char: "๖",
1052
+ id: "six",
1053
+ charType: "number",
1054
+ meaning: "Six",
1055
+ pronunciation: "hòk"
1056
+ },
1057
+ {
1058
+ char: "๗",
1059
+ id: "seven",
1060
+ charType: "number",
1061
+ meaning: "Seven",
1062
+ pronunciation: "jèt"
1063
+ },
1064
+ {
1065
+ char: "๘",
1066
+ id: "eight",
1067
+ charType: "number",
1068
+ meaning: "Eight",
1069
+ pronunciation: "bpàet"
1070
+ },
1071
+ {
1072
+ char: "๙",
1073
+ id: "nine",
1074
+ charType: "number",
1075
+ meaning: "Nine",
1076
+ pronunciation: "kâo"
1077
+ }
1078
+ ];
1079
+ export {
1080
+ a as thaiConsonants,
1081
+ e as thaiNumbers,
1082
+ o as thaiSymbols,
1083
+ i as thaiTones,
1084
+ n as thaiVowels
1085
+ };