forked from kripken/speak.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhu_rules
1580 lines (1498 loc) · 44.6 KB
/
hu_rules
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Hungarian translation rules
// This file is UTF-8 encoded
// ?1 change pronmunciation of foreign names, some users don't want these rules
.replace
// allow o,u-circumflex for o,u-double-acute
ô ő
û ű
// these consonants following a double letter change it to single
.L01 b c d f g h j k l m n p s t r v w z
.group a
a A
_) a (_ %A
D00_-) al (_ zAl // double z for 100-al
000_-) al (_ Al // ... but not 1000-al
ahhoz Ahoz
.group á
á a:
@) ában (_S4q a:bAn
@) ának (_S4q a:nAk
@) ától (_S4q a:to:l
@) áig (_S3q a:ig
@) ára (_S3q a:R2A
.group b
b b
bb b:
@) ban (_S3q bAn
@) ben (_S3 bEn
biz (A biz, // bizalmas etc.
?1 biedermeier bi:dER2ma:jER2
_) batthiány bAc:a:n^i
b (-b b: // use long [b:], not two [b]
b-) b // silent after 'bb-'
bb (-b b:
bb-) b //silent after bb- part
bb (-L01 b // only speak one b if followed by a consonant after the - character
bb (L01 b // only speak one b if followed by a consonant
bbr bR2 //special exception with always need executing
.group c
c ts
cc ts:
cs tS
ccs tS:
!) cz ts // in names which start with a capital letter
csz ts|s
papu) cs tS
ar) c (cson ts
mala) c (sá ts
pá) c (só ts
pol) c (so ts
por) c (sé ts
por) c (sz ts
?1 _sto) ck (holm k
har) c (csoport ts
lán) c (cs ts
kudar) c (sorozat ts
gerin) c ts
tán) c (cs ts
tán) c (s ts
kilen) c (csatorn ts
ner) c (stóla ts
kavi) cs (zátony tS
har) c (cselek ts
külön) c (sé ts
mala) c (sül ts
gyümöl) cs (zs tS
fil) c (csiz ts
szo) c (segély ts
_kó) c (csomó ts
árbó) c (csúcs ts
árbo) c (csúcs ts
fegyen) c (csoport ts
ccs (L01 tS // only speak one cs if followed by a consonant
cc (L01 ts // only speak one c if followed by a consonant
ccsr tSR2 //special exception with need always execute
ccr tsR2 //special exception
c (-cs tstS //if have end of first word c and after the - character a cs letter pair, need spokening single ts and TS phoneme
c-) cs //not need spokening second cs phoneme
cs (-ccs tS: //this situation need spokening one TS: phoneme
cs-) ccs //not need spokening second tS: phoneme after - character
c (-c ts: // use long [ts:], not two [ts]
c-) c // silent after 'cc-'
ccs (-ccs tS:
ccs-) ccs
ccs (-cs tS: //need spokening one longer TS: phoneme
ccs-) cs //not need spokening second tS phoneme
cc (-cs ts //if this situation happening, need spokening one ts phoneme
cc-) cs tS //need spokening the TS phoneme after the - character
cc (-ccs ts //need spokening one ts phoneme before the - character
cc-) ccs tS //need spokening shorter tS phoneme after the - character
cc (-c ts: // use long [ts:], not two [ts] if after the - character have only cc letter pair
cc-) c //second ts phoneme not need spokening after the - character
cc (-L01 ts // only speak one c if followed by a consonant after the - character
cs (-cs tS: // use long [tS:], not two [tS]
cs-) cs // second tS phoneme not need spokening after - character
ccs (-L01 tS // only speak one ts if followed by a consonant after the - character
cs (-sz tS|s //need spokening single ts and single s phoneme
ccs (-sz tS|s //need spokening single ts and single s phoneme
licen) c (sértés ts
.group ch
anar) ch (i h
balda) ch (in h
hierar) ch (i h
me) ch (a h
te) ch h
pszi) ch h
pszy) ch h
mün) ch (en C
maso) ch (istA h
monar) ch (i h
_pe) ch h:
szé) ch tS
_zi) ch (y tS
_szé) che (ny tSe:
_szé) ché (ny tSe:
ja) ch (t h
ce) ch (et h:
or) ch (ídea h
stri) ch (el h:
ar) ch (ív h
ar) ch (ivál h
ar) ch (itektúr h
ma) ch (iná h
oligar) ch h
legpe) ch (es h:
mazo) ch (izm h
mazo) ch (is h
ar) ch (aikus h
.group d
d d
dd d:
dts tS:
dt t:
dtszé t:se:
ddzs (L01 dZ
ddz (L01 dz
dd (L01 d
ddb db //general exception with alwais need executing
ddr dR2 //special exception with always need executing
d (-d d: //if have d after the - character, need spokening longer d: phoneme, not two single d phoneme
d-) d //but the second d phoneme after the - character not need spokening
ddzs (-L01 dZ //need spokening one dZ phoneme if have after the - character a consonant
dd (-d d: //if have two d the first word and a d with second word beginning, need spokening a longer d: phoneme, not a longer d: and a single d phoneme
dd-) d //the second d phoneme not need pronouncing
dd (-L01 d //if have a consonant after the - character, need spokening one d letter, not often happening this but not matter if handled
apró) d (sz d
dsz (_S3 ts:
beszé) d (szin d
beszé) d (sebesség d
cselé) d d
dobermann dob:ER2mAn
föl) d (sánc d
ha) dd (_S2 d
ha) d (járat d
ha) d (sor d
hor) d (szék d
máso) d (sor d
pa) d (sor d
ren) d (sza d
va) d (sző d
C) ds tS
ds (C tS
A) ds (A tS:
dsz ts
dsz (C ts
dsz (a ds
dsz (á ds
a) dsz (A ts:
e) dsz (A ts:
o) dsz (A ts:
a) dsz (í ds
é) dsz ds
ó) dsz ts:
C) dj J
A) dj (A J:
dj J:
min) dny n^
ná) d d
ná) dd d:
?1 diesel di:zEl
hí) d (szerkezet d
dühvel dyvEl
epizó) d (szerep d
negye) d (száz d
dühbe dybE
fülle) dtt (é t:
föl) d (sáv d
dühtől dytY:l
rövi) d (zárlat d
ren) dsz (erint d|s
szaba) d (szájú d
menetren) dsz (erű d|s
hazár) d (játék d
főha) d (segéd d
csalá) d (szerető d
föl) d (szoros d
min) d (jobban d
bri) ddzs (el dZ:
rekor) d (sebesség
hol) d (sü d
árpá) d (sáv d
ötö) dsz (ör ts:
ezre) d (szin d
ha) d (szin d
hor) d (szí d
ezre) d (szá d
kó) d (sor d
máso) d (szin d
ha) d (segéd d
föl) d (szerzé d
twee) dz (ak d|z
twee) dsz (ok d|s
dtt t: //this letters need spokening longer t phoneme
kar) d (su d
zöl) d (sapk d
hí) d (szer d
szaba) d (szoft d
rövi) d (zár d
ren) d (zavar d
ügyvé) d (jel d
kez) dt t
ná) d (szék d
rövi) d (soroz d
pa) d (szerű d
ná) d (suhog d
kató) d (sugár d
kalan) d (játék d
ezre) d (szem d
vé) d (jegy d
honvé) d (sereg d
va) d (szeder d
twee) d (sapk d
ezre) d (segé d
erő) d (szerű d
csalá) d (szociol d
száza) d (szemle d
zöl) d (szem d
utó) d (jelöl d
cselé) ds (ég tS:
föl) d (szegély d
stran) d (szezon d
_hol) d (sarló d
mó) d (sor d
csalá) d (segít d
standar) d (jegy d
csen) d (sértés d
szaba) d (strand d
zöl) d (sáv d
csalá) d (jog d
szaba) d (szállás d
szaba) d (szombat d
ren) dsz (erintegráció ts
máso) d (szülött d
va) d (szój d
ebé) d (jeg d
szaba) d (jeg d //szabadjegy, szabadjeggyel words need spokening single d phoneme
tize) d (száz d //for example tizedszázalék word need single d and s phoneme
föl) d (szerű d //this word need spokening single d before s phoneme
va) d (sztrájk d //this word need spokening single d before s phoneme
kar) d (szerű d //this word need spokening single d before s phoneme
kö) d (szirén d //this word need spokening single d before s phoneme
rekor) d (szerkez d //this word need spokening single d before s phoneme
kö) d (szitálás d
mó) d (javaslat d
rekor) d (szint d
kambo) dzs dZ:
föl) d (szerke d //földszerkezet word for example need spokening single d before sz letter
harma) d (szint d
kó) d (jel d
.group dz
fogó) dz (kod ts
fogó) dz (ó z
fenyegető) dz z
akaró) dz z
hallgató) dz z
húzó) dz ts
harapó) dz z
himbáló) dz z
lopó) dz z
szedelő) dz z
tapogató) dz z
ó) dz (kod ts
villó) dz z
e) dz (ő dz:
e) dz (és dz:
kére) dz ts
mentegető) dz z
dz dz:
A) dz (A dz:
dzs dZ
dzs (C dZ
a) dzs (A dZ
mene) dzs (A dZ:
mahara) dzs (A dZ:
bri) dzs (A dZ:
?1 kambo) dzs (A dZ: //a town name with need spokening dZ: phoneme
_do) dzs (A dZ: //for example dodzsemautó need spokening dZ: phoneme
dz dz:
C) dzs dZ
borsó) dz z
beszé) dz (avar d|z
dobáló) dz z
kérő) dz z
követelő) dz z
rángató) dz z
titkoló) dz z
ringató) dz z
mére) dz (k ts
ezre) dz (ene d|z
száza) dz (ene d|z
honvé) dz (ászló d|z
smarag) dz (öld d|z
kapáló) dz z
_ó) dz (ko ts
gyűrű) dz (ik z
.group e
e E
000_-) el (_ REl // double R for 1000-el
000000_-) el (_ El // ... but not 1000000-el
_) ehhez EhEz
_) egyezség EJ:ESSe:g
_) egyezségg EJ:ESSe:g:
.group é
é e:
éi (é e::i:
@) ében (_S4q e:bEn
@) ének (_S4q e:nEk
@) étől (_S4q e:tY:l
@) ére (_S3q e:R2E
@) éig (_S3q e:ig
éhség e:Se:g
éhségg e:Se:g:
.group ë
ë Y
.group f
f f
?1 führer fy:R2ER2
e) ff (ajt f
e) ff (él f
a) ff (él f
ff (L01 f // only speak one b if followed by a consonant
ffb fb //general rule, always need one f before the remaining b beginning word, for example be end of words
ffr fR2 //general rule, always need one f before the remaining b beginning word, for example be end of words
ff (-L01 f
.group g
g g
gg g:
ggy J:
gg (L01 g
ggb gb //special exception with always need executing
ggr gR2 //special exception with always need executing
?1 _) goeth gY:tE
me) g (gy g
ggy (L01 J
ggyb Jb //special exception with always need executing
ggyr JR2 //special exception with always need executing
me) ggy (L01 J //special exception with not good spokening single g and one gy letter, for example meggyfolt not spokening meg and gy folt with single words
me) ggyb Jb //special exception with not good spokening single g and one gy letter, for example meggyben not spokening meg and gy folt with single words
me) ggyr JR2 //special exception with not good spokening single g and one gy letter, for example meggyre not spokening meg and gy folt with single words
gy (-gy J: //need spokening longer J: phoneme with this situation
gy-) gy //but not need spokening the second J: phoneme
ggy (-L01 J //if have consonant after the - character, need spokening one J phoneme
me) ggy (-L01 J //special exception with not good spokening single g and one gy letter, for example meggyfolt not spokening meg and gy folt with single
//words
me) ggy (-gy J: //this is a special exception if have after a - character with gy consonant
g (-gy gJ //special rule
g-) gy //not need spokening second J phoneme
g (-g g: //if the first word end of g and second word beginning with g letter, need spokening one longer g: phoneme
g-) g //not need spokening second g phoneme
gg (-gy gJ //special rule
gg-) gy //not need spokening second J phoneme
gg (-L01 g //if have consonant after the - character, need spokening one g character
me) ggy (es J:
me) ggy (et J:
me) ggy (el J:
me) ggy (_S3 J:
le) g (gy g
orszá) g (gyűlés g
fo) g (gyűrű g
fo) g (gyö g
kuplun) g (gyár g
bélye) g (gyűjt g
jo) g (gyakor g
dö) g (gyapjú g
fo) g (gyalu g
hadianya) g (gyár g
ide) g (gy g
lé) g (gyök g
műjé) g (gyár g
régisé) g (gyűjt g
ritkasá) g (gyűjt g
üve) g (gy g
vilá) g (gyűlöl g
gk k:
é) gh (ajla kh
pro) g (gyak g
arcüre) g (gyulladás g
bete) g (gyógyász g
szöve) g (gyűjt g
ta) g (gyűl g
gu) gg (ol g
.group gy
gy J
gys tS
A) gys (A tS:
gysz Js
A) gysz (A Js
C) gyj J
A) gyj (A J:
ha) gyj J:
e) gy (jelentésű J
_e) gy (es J:
_e) gy (et_ J:
_e) gy (etlen J:
_e) gy (ik J:
_e) gy (üt J:
e) gyj (elentésű Jj
lá) gy (sá J
gyön) gy (sor J
_minde) gy (ik J
na) gysz (a Js
na) gy (sokára J
na) gy (siet J
ú) gys (e J|S
seho) gy (se J
ho) gy (se J
na) gy (ság J
he) gy (ség J
e) gys (ég J|S
e) gy (sarkú J
e) gy (sejtű J
e) gy (sínű J
e) gy (sor J
né) gy (sor J
e) gy (es-egyedül J //need one J phoneme with this word, not J: phoneme
ú) gy (sem J
né) gy (sarok J
na) gy (stíl J
fa) gy (sérül J
_e) gy (ezmény J:
_mege) gy (ez J:
e) gy (-egy J:
na) gy (stratégia J
e) gy (értelmű J:
e) gy (ezked J:
e) gy (eztet J:
e) gy (etért J:
e) gy (irányú J:
kie) gy (ez J:
belee) gy (ez J:
_e) gy (ez J:
e) gy (általán J:
e) gy (ensúly J:
tizene) gy (edszer J:
tizene) gy (es J:
ú) gy (sincs J
e) gy (ért J:
a) gy (sérül J
á) gy (sor J
né) gy (sáv J
tizene) gy (edik J:
e) gy (aránt J:
e) gy (enrang J:
e) gy (előre J:
e) gy (enként J:
félmege) gy (ez J:
_e) gy (el J:
tizene) gy (et J:
tizene) gy (en J:
e) gy (esület J:
a) gy (sej J
e) gy (úttal J:
épülete) gy (ütt J:
na) gy (salló J
_e) gy (ágy J:
nem-e) gy (ez J: // if have a "nem" word (with $combine attribute), need [J:] not [J]
e) gy (idejű J:
_e) gy (idő J:
nem-e) gy (ütt J: // if have a "nem" word (with $combine attribute), need [J:] not [J]
na) gy (sarló J
e) gy (azon J:
_e) gy (oldal J:
_e) gy (év J:
_e) gy (órá J:
_e) gy (se J
je) gy (ezte J
na) gy (sebes J
_í) gys (e J|S
na) gy (siker J
huszone) gy (edik J:
je) gy (ért J
harmince) gy (edik J:
étvá) gy (javít J
e) gy (ember J:
né) gy (jegy J
a) gy (sebész J
tár) gy (sorozat J
e) gy (jegyű J
tár) gy (jutal J
e) gys (áv J|S //egysáv beginning words for example need spokening single J and S phoneme.
_e) gy (ablak J:
összee) gy (esít J:
nem-e) gy (ik J:
e) gy (összeg J:
e) gys (ík J|S //for example egysíkú word need spokening single J and S phoneme
.group h
h h
hertz hER2ts
hh (-L01 h
minde) hh (ez h
.group i
i i
@) i (_S1 i
@) ig (_S2 ig
@) ihoz (_S4q ihoz
.group í
í i:
íts i:tS:
ítsd i:tSd
t) í (zen i
t) í (zet i
v) í (zen i
sz) í (vatás i
v) í (zére i
sz) í (ve i
t) í (zes i
sz) í (vel i:
_t) í (zük i
_sz) í (vattak i
_sz) í (vattákk i
_sz) í (vató i
.group j
j j
@) jában (_S5q ja:bAn
@) jának (_S5q ja:nAk
@) jától (_S5q ja:to:l
@) jáig (_S4q ja:ig
@) jára (_S4q ja:R2A
@) jával (_S5q ja:vAl
@) jének (_S5 je:nEk
@) jére (_S4 je:R2E
@) jétől (_S5 je:tY:l
@) jéig (_S4 je:ig
@) jével (_S5 je:vEl
_) javíts jAvi:tS:
_) javítsd jAvi:tSd
jj (L01 j //if have a consonants after two j letter, need spokening one j letter
jjb jb //need always executing this exception
jjr jR2 //need always executing this exception
jj (-L01 j
.group k
k k
kk k:
kk (C k:
kk (-L01 k //if next word starts with a consonant (except k, see next rule), need one k letter
kk (-k k: // but except for k beginning second words, this situation need spokening longer k: phoneme
kk-) k // silent after 'kk-' spokened phoneme
_) köztársaság k'Ysta:R2SASa:g
_) köztársaságg k'Ysta:R2SASa:g:
központ kYspont
központt kYspont:
központj kYsponc
_) köz kYz
község kYSSe:g
készség ke:SSe:g
kossuth koSu:t
kossutht koSu:t:
kossuthj koSu:c:
készségg ke:SSe:g:
kkb kb //need keep this exception because have some words ben or ban suffixes
kk (L01 k
kkj kj //need keep this exception because have some words jének or jának suffixes
kkr kR2 //special exception with always need executing
_) közt kYst
k (-k k: //for example marok-körző word need cut one k letter and need spokening k: phoneme only
k-) k //silent with second k phoneme
.group l
l l
fe) l (ju l
fe) l (jö l
fe) l (jegy l
fe) l (jelen l
fe) l (jár l
lj l^j
cé) l (já jj
ly j
lly jj
A) lj (A l^j
e) l (jut l
e) l (jus l
_e) lj (ö lj
á) ll (j j
beszé) lj jj
bére) lj jj
fáj) l l
fájla) l (j jj
gondo) lj jjj
ke) lj jj
sajná) lj jjj
llj jjj
C) ly (_ li
_kéth) ly li
szamue) lly lli
szamue) ly lli
mi) ll (i l
szé) l (jár l
szé) l (jegy l
keresztü) l (j l
_) tú) l (j l:
e) l (játsz l
fe) l (javít l
fe) l (jogosít l
ökö) l (jog l:
inte) ll (ige l
e) ll (ipsz l
_) e) lj (ár lj
_ta) lj (án lj
_fé) l (jobb l
ll (L01 l // only speak one 1 if followed by a consonant
llb lb //special exception with always need executing
llr lR2 //special exception with always need executing
lly (-L01 j //if have consonants after - character, need spokening one j letter with first part
ll (-L01 l
bagate) ll (iz l
.group m
m m
ko) mm (uni m
mm (-L01 m //if have a consonant after - character, need spokening one m letter
mm (L01 m //if have a consonant after two m letter, need spokening one m letter
.group n
n n
n (g n
n (k n
n (p m
ny n^
nny n^n^
nj n^n^
nny (cs n^ //special exception
nny (L01 n^ // only speak one ny if followed by a consonant
nnyb n^b //special exception with always need executing
nnyr n^R2 //special exception with always need executing
nn (L01 n // only speak one n if followed by a consonant
nnb nb //special exception with always need executing
nnr nR2 //special exception with always need executing
szí) n (ját n
szí) n (józan n
nyj n^n^
_) nem (- nEm // has $combine attribute in hu_list, combine with the next word
me) nny (ország n^
pihe) nj (_S2 n^
főbe) n (jár n
ingye) n n
?1 _) nylon nEjlon
ajá) nlj j:
i) nny (ekció n^
bű) n (jel n
negyve) n (yard n
ötve) n (yard n
benzi) n (jegy n
elle) n (javaslat n
késő) n (jövő n
közbe) n (jár n
magá) n (jog n
óceá) n (jár n
pero) n (jegy n
ö) n (járó n
tulajdo) n (jog n
ko) nn (ektor n //"connector" word, we one n letter, not two n
éle) n (jár n
magá) n (jelleg n
elle) n (játék n
elle) n (javallt n
fé) ny (jel n^
i) nj (ekció n^
elle) n (jegy n
egye) n (jogú n
beto) n (járda n
verse) ny (jog n^
irá) ny (jel n^
ö) n (jelöl n
teljesítmé) ny (javu n^
törvé) ny (java n^
ajá) nl l:
_feddhetetle) n (jelle n
állomá) ny (jel n^
ingatla) n (jog n
nyeremé) ny (játék n^
botrá) ny (játék n^
magá) nny (ugdíj nn^ //the nny here is n+ny not the double n^ phoneme
alkotmá) ny (j n^ //for example alkotmányjog, alkotmányjavaslat words need spokening n^ phoneme
nny (-L01 n^ //if have a consonant after - character, need spokening one n^ phoneme
nn (-L01 n //if have a consonant after - phoneme, need spokening one n phoneme
eredmé) ny (j n^ //for example eredményjelző word need spokening n^ phoneme
hiá) ny (j n^ //for example hiányjel word need spokening n^ phoneme
mező) ny (j n^ //for example mezőnyjátékos word need spokening n^ phoneme
esemé) ny (jel n^
helybe) n (jár n
polle) n (jelen n
idé) ny (jel n^
vagyo) n (nyilatkozat n //for example vagyonnyilatkozat word need spokening single n phoneme before n^ phoneme, not two n^n^ phoneme.
szí) n (jelzés n
.group o
o o
.group ó
ó o:
.group ö
ö Y
.group ő
ő Y:
.group p
p p
p (-p p: //need spokening p: phoneme, not pp phoneme
p-) p //the second p phoneme don't need spokening after - character
pp p:
pp-) p // silent after 'pp-'
pp (C p:
p (v p_
pp (L01 p
ppb pb //special exception with always need executing
ppr pR2 //special exception with always need executing
?1 _) potsdam potsda:m
pp (-L01 p //if have consonant after - character, need spokening one p letter
.group q
q kv
qu kv
.group r
@) ra (_S2 R2A
@) re (_S2 RE
r R2
rm R2_m
r) r R2
r (r R
r (cc R
?1 _) richa (rd R2iCa:
_) richá (rd R2iCa:
i) rr (itá R2
ko) rr (epetá R2
a) rr (ogáns R2
rr (L01 R2
rrb R2b //special exception with always need executing
rrr R2R2 //not need spokening three R2 phoneme
te) rr (ier R2
te) rr (ori R2
rr (-L01 R2
konku) rr (en R2
_a) rr (oganci R2
.group s
s S
s (-sz s: //if have the - character the next word part beginning with sz, always need spokening s: phoneme
s-) sz //but not need spokening second sz phoneme
föld) s (ánc S
?1 hel) s (inki z
ki) s (ebb SS
_munká) s S
_nyílá) s S
?1 _o) slo slo:
?1 _o) sló slo:
tojá) s S
_) semmelweiss sEmmElvEjs
_) semmelweis sEmmElvEjs
_) semmelweiß sEmmElvEjs
engel) s s
?1 _) saar sa:R2
?1 _wa) sh (ing S
pénze) s S
robbaná) s S
?1 danubiu) s s //a radio station name
?1 juventu) s s //a radio station name
va) s (s S
óriá) s S
látá) s (zavar S
hallá) s (zavar S
gyalogo) s (zászló S
ki) s (zsidó S
szennye) s (zsá S
alvá) s (zavar S
magatartá) s (zavar S
erőforrá) s (zabál S
működé) s (zava S
viselkedé) s (zava S
alkalmazá) s (szerver S
fá) s (szárú S
.group ss
ssz ss2
ssz (ínű Ss
mu) ss (olin ss2
_má) ssz (ó Ss
mennydörgé) ssz (erű Ss
robbaná) ss S:
robbaná) ssz (er Ss
danubiu) ss s: //a radio station name
danubiu) ssz s: //a radio station name
juventu) ss s:
juventu) ssz s: //a radio station name
ejtőernyő) ssz S|s
farka) ssz (em Ss
villamo) ssz (ék Ss
titko) ssz (olgál Ss
karo) ssz (ék Ss
hú) ssz (elet Ss
vörö) ssz (em Ss
dőlé) ssz (ög Ss
vonó) ssz (erenád Ss
maro) ssz Ss
szepe) ssz (ombat Ss
ko) ssz (arv Ss
kaka) ssz (ék Ss
vérte) ssz (őlő Ss
leve) ssz (ed Ss
adá) ssz (ünet Ss
adó) ssz (ámla Ss
állá) ssz (ög Ss
almá) ssz (ürke Ss
ugatá) ssz (erű Ss
autó) ssz (emüveg Ss
zuhaná) ssz (erű Ss
bélé) ssz (öv Ss
karo) ssz (éria Ss
bor) ssz (em Ss
bor) ssz (ór Ss
kéke) ssz (ürke Ss
éde) ssz (áj Ss
égé) ssz (abály Ss
egyene) ssz Ss
má) ssz (or Ss
éke) ssz (ól Ss
éle) ssz (em Ss
ellenállá) ssz (ekrény Ss
előírá) ssz (er Ss
löké) ssz (ám Ss
érzékelé) ssz (int Ss
esé) ssz (ög Ss
fagyo) ssz (ent Ss
farka) ssz (erű Ss
farka) ssz (őlő Ss
fedele) ssz (árny Ss
hajlá) ssz (ög Ss
féti) ssz (erű Ss
hő) ssz (erel Ss
fióko) ssz (ekr Ss
rendelkezé) ssz (er Ss
foga) ssz (eg Ss
foglalkozá) ssz (erű Ss
maga) ssz (árú Ss
gondviselé) ssz (er Ss
gyújtá) ssz (abály Ss
hárma) ssz (ab Ss
hárma) ssz (ö Ss
ver) ssz (ak Ss
hártyá) ssz (árny Ss
hegye) ssz (ög Ss
hirdeté) ssz (öveg Ss
hivatá) ssz (erű Ss
pulzu) ssz (ám Ss
hú) ssz (ekrény Ss
írá) ssz (akér Ss
jelené) ssz (erű Ss
kampó) ssz Ss
ka) ssz (ék Ss
katalógu) ssz (ám Ss
kattogá) ssz Ss
ki) ssz (ám Ss
ki) ssz (erű Ss
ki) ssz (ob Ss
ki) ssz (ék Ss
ki) ssz (ótár Ss
könyve) ssz (ek Ss
köté) ssz Ss
laká) ssz (en Ss
lapo) ssz (ár Ss
látomá) ssz (erű Ss
lejté) ssz (ög Ss
lengé) ssz (abály Ss
lépé) ssz (ám Ss
nyomá) ssz (erű Ss
löké) ssz (erű Ss
luxu) ssz Ss
mágne) ssz (alag Ss
megállapodá) ssz (erű Ss
meglepeté) ssz (erű Ss
motoro) ssz (án Ss
ülé) ssz (ak Ss
tölté) ssz (abályoz Sss
orvo) ssz (övetség Ss
orvo) ssz (akértő Ss
orvo) ssz (emély Ss
orvo) ssz (er Ss
ökrö) ssz (ekér Ss
ő) ssz (üle Ss
padlá) ssz (ob Ss
pikkelye) ssz (árny Ss
piro) ssz (em Ss
plü) ssz (erű Ss
pré) ssz (er Ss
púpo) ssz (únyog Ss
rajtaüté) ssz (er Ss
karo) ssz (ériájú Ss
ruhá) ssz (ekrény Ss
sárgá) ssz Ss
sa) ssz (em Ss
serté) ssz Ss
sonká) ssz Ss
sor) ssz (erű Ss
töré) ssz (ög Ss
uta) ssz (ál Ss
szerzete) ssz (er Ss
szerződé) ssz (e Ss
tudá) ssz (int Ss
szoká) ssz (er Ss
szólá) ssz (abad Ss
születé) ssz (ab Ss
tágulá) ssz (abály Ss
tár) ssz (ekér Ss
tár) ssz (er Ss
tava) ssz (a s:
váro) ssz (iluett Ss
tejfele) ssz (áj Ss
tejfölö) ssz (áj Ss
többe) ssz (ám Ss
tölté) ssz (ám Ss
tövi) ssz (úr Ss
tudá) ssz (omj Ss
szúrá) ssz (erű Ss
ugrá) ssz (erű Ss
vallá) ssz (ab Ss
vöröse) ssz (őke Ss
zökkené) ssz (erű Ss
zölde) ssz (ürke Ss
zsíro) ssz (én Ss
köhögé) ssz (erű Ss
üté) ssz (erű Ss
olva) ssz s:
felelő) ss (ég S
égzengé) ssz (erű Ss
világo) ssz (ürke Ss
motoro) ssz (emüveg Ss
bőgé) ssz (erű Ss
kavará) ssz (erű Ss
_sa) ssz (eg Ss
ké) ssz (úrás Ss
gyalogo) ssz Ss
puská) ssz Ss
mozgá) ssz Ss
_ke) ss (elring s:
rádió) ssz (ob Ss