eSpeak NG is an open source speech synthesizer that supports more than hundred languages and accents.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

phonemes 19KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189
  1. // This is the master phoneme file.
  2. //*******************************************************************
  3. // Stress Phonemes
  4. //*******************************************************************
  5. phoneme % // Unstressed
  6. stress
  7. stress_type 1
  8. endphoneme
  9. phoneme %% // Diminished stress
  10. stress
  11. stress_type 0
  12. endphoneme
  13. phoneme \, // [,] Secondary stress
  14. stress
  15. stress_type 2
  16. endphoneme
  17. phoneme \,\, // [,,] Secondary stress
  18. stress
  19. stress_type 3
  20. endphoneme
  21. phoneme ' // Primary stress
  22. stress
  23. stress_type 4
  24. endphoneme
  25. phoneme '' // Primary stress (priority)
  26. stress
  27. stress_type 5
  28. endphoneme
  29. phoneme '! // Primary stress (emphasized)
  30. stress
  31. stress_type 6
  32. endphoneme
  33. phoneme = // Place stress on previous vowel
  34. stress
  35. stress_type 2
  36. endphoneme
  37. //*******************************************************************
  38. // IPA Phonemes
  39. //*******************************************************************
  40. phonemetable ipa base
  41. include ph_ipa
  42. phonemetable base1 base
  43. // The base phoneme table contains the utility phonemes, the consonants,
  44. // and a schwa. The vowels are defined in the language specific phoneme
  45. // tables, which can also redefine consonants if they wish.
  46. //*******************************************************************
  47. // UTILITY PHONEMES
  48. //*******************************************************************
  49. phoneme || // End Word
  50. pause
  51. lengthmod 9 // no effect
  52. endphoneme
  53. phoneme _ // Short pause
  54. pause
  55. starttype _ endtype _
  56. lengthmod 1
  57. length 25
  58. endphoneme
  59. phoneme _! // Short pause, don't replace by linking
  60. pause
  61. starttype _ endtype _
  62. lengthmod 1
  63. nolink
  64. length 35
  65. endphoneme
  66. phoneme _| // Very short pause
  67. pause
  68. starttype _ endtype _
  69. lengthmod 5
  70. length 1
  71. endphoneme
  72. phoneme _: // Standard pause
  73. pause
  74. starttype _ endtype _
  75. lengthmod 1
  76. length 75
  77. endphoneme
  78. phoneme _:: // Long pause
  79. pause
  80. starttype _ endtype _
  81. lengthmod 1
  82. length 150
  83. endphoneme
  84. phoneme _;_ // clause pause
  85. pause
  86. starttype _ endtype _
  87. lengthmod 1
  88. length 200
  89. endphoneme
  90. phoneme _^_ // Change dictionary (followed by language-code in ascii
  91. pause
  92. starttype _ endtype _
  93. lengthmod 1
  94. length 10
  95. endphoneme
  96. phoneme _X1 // a language specific action
  97. pause
  98. starttype _ endtype _
  99. lengthmod 1
  100. length 10
  101. endphoneme
  102. phoneme ? // glottal stp
  103. vls glt stp
  104. lengthmod 3 // ??
  105. nolink
  106. Vowelin glstop
  107. Vowelout glstop
  108. WAV(ustop/null)
  109. endphoneme
  110. phoneme : // lengthen previous vowel by "length"
  111. virtual
  112. length 70
  113. endphoneme
  114. phoneme - // Indicates the previous phoneme is a syllabic consonant
  115. virtual
  116. endphoneme
  117. // Some default vowel definitions
  118. phoneme @ // Schwa, e.g. alph**a**
  119. vwl starttype #@ endtype #@
  120. unstressed
  121. length 140
  122. FMT(vowel/@)
  123. endphoneme
  124. phoneme @- // very short schwa
  125. vwl starttype #@ endtype #@
  126. unstressed nsy
  127. ipa ə
  128. IF nextPhW(*) OR nextPhW(r) THEN
  129. ipa NULL // @-* is used to make 'r'
  130. ENDIF
  131. length 50
  132. FMT(vowel/@-)
  133. endphoneme
  134. phoneme a // tr**a**p
  135. vwl starttype #a endtype #a
  136. length 180
  137. FMT(vowel/a)
  138. endphoneme
  139. phoneme e // German **eh**, French **é**
  140. vwl starttype #e endtype #e
  141. length 170
  142. FMT(vowel/e)
  143. endphoneme
  144. phoneme i
  145. vwl starttype #i endtype #i
  146. length 170
  147. IfNextVowelAppend(;)
  148. FMT(vowel/i)
  149. endphoneme
  150. phoneme o // German **oo**, French **o**
  151. vwl starttype #o endtype #o
  152. length 170
  153. FMT(vowel/oo)
  154. endphoneme
  155. phoneme u
  156. vwl starttype #u endtype #u
  157. length 170
  158. FMT(vowel/u)
  159. endphoneme
  160. // Syllablic consonants
  161. //=====================
  162. phoneme m-
  163. vwl starttype #@ endtype #@
  164. ipa mU+0329
  165. lengthmod 4
  166. length 170
  167. IF thisPh(isWordStart) THEN
  168. length 190
  169. ENDIF
  170. IF KlattSynth THEN
  171. FMT(klatt/m-syl)
  172. ENDIF
  173. FMT(m/m-syl)
  174. endphoneme
  175. phoneme n-
  176. vwl starttype #@ endtype #@
  177. ipa nU+0329
  178. lengthmod 4
  179. length 170
  180. IF thisPh(isWordStart) THEN
  181. length 190
  182. ENDIF
  183. IF KlattSynth THEN
  184. FMT(klatt/n-syl)
  185. ENDIF
  186. FMT(n/n-syl)
  187. endphoneme
  188. phoneme N-
  189. vwl starttype #e endtype #e
  190. ipa ŋU+0329
  191. lengthmod 4
  192. length 190
  193. FMT(nn/nn-syl)
  194. endphoneme
  195. //*******************************************************************
  196. // Other sounds
  197. //*******************************************************************
  198. phoneme #X1 // click, use for indicating capital letters
  199. vls alv frc sib
  200. lengthmod 3
  201. WAV(ustop/percus10, 60)
  202. endphoneme
  203. //*******************************************************************
  204. // VIRTUAL - referred to in vowels' vwl starttype and endtype
  205. // These each apply to a class of vowels
  206. //*******************************************************************
  207. phoneme #@ virtual
  208. endphoneme
  209. phoneme #a virtual
  210. endphoneme
  211. phoneme #e virtual
  212. endphoneme
  213. phoneme #i virtual
  214. endphoneme
  215. phoneme #o virtual
  216. endphoneme
  217. phoneme #u virtual
  218. endphoneme
  219. //*******************************************************************
  220. // SONORANTS
  221. //*******************************************************************
  222. phoneme r- // syllabic r
  223. vwl starttype #@ endtype #@
  224. ipa rU+0329
  225. unstressed
  226. length 220
  227. FMT(vowelr/r-voc)
  228. endphoneme
  229. phoneme l- // syllabic l
  230. vwl starttype #@ endtype #@
  231. ipa lU+0329
  232. unstressed
  233. length 200
  234. FMT(vwl_hi/l-voc)
  235. endphoneme
  236. phoneme r // **r**ed (Omitted if not immediately followed by a vowel)
  237. import_phoneme ipa/r\\
  238. endphoneme
  239. phoneme r/ // used for [r] when not preceding a vowel
  240. import_phoneme ipa/r\\
  241. endphoneme
  242. phoneme R
  243. liquid trl
  244. lengthmod 6
  245. ipa r
  246. IF nextPhW(R2) THEN
  247. ipa NULL
  248. ENDIF
  249. Vowelin f1=0 f2=1600 -300 300 f3=-200 80
  250. Vowelout f1=2 f2=1600 -300 300 f3=-200 80 brk
  251. FMT(r3/r_trill2) addWav(r3/r_trill2.wav, 65)
  252. endphoneme
  253. phoneme R2 // this is [R] from Slovak/Czech
  254. liquid trl
  255. lengthmod 6
  256. ipa r
  257. Vowelin f1=0 f2=1700 -300 300 f3=-300 80
  258. Vowelout f1=2 f2=1700 -300 300 f3=-300 80 brk
  259. FMT(r3/r_trill) addWav(r3/r_trill.wav, 50)
  260. endphoneme
  261. phoneme R3 // Afrikaans
  262. liquid trl
  263. lengthmod 6
  264. length 60
  265. ipa r
  266. Vowelin f1=2 f2=2700 -300 -200 f3=-1300 80
  267. Vowelout f1=2 f2=1700 -300 -200 f3=-1300 80
  268. // vowel modifier is the same as for [r]
  269. NextVowelStarts
  270. VowelStart(r/r@, -15)
  271. VowelStart(r/ra, -15)
  272. VowelStart(r/re, -15)
  273. VowelStart(r/ri, -15)
  274. VowelStart(r/ro, -15)
  275. VowelStart(r/ru, -15)
  276. EndSwitch
  277. IF prevPh(isVowel) THEN
  278. VowelEnding(r/xr, -50)
  279. ENDIF
  280. FMT(r3/r_trill) addWav(r3/r_trill3.wav)
  281. endphoneme
  282. phoneme r" // uvular trill
  283. vcd uvl frc
  284. ipa ʀ
  285. lengthmod 6
  286. IF nextPh(isNotVowel) THEN
  287. FMT(r3/r_uvl) addWav(r3/r_uvl.wav, 50)
  288. ENDIF
  289. FMT(r3/r_uvl) addWav(r3/r_uvl.wav, 75)
  290. endphoneme
  291. procedure vowelstart_l
  292. NextVowelStarts
  293. VowelStart(l/l@)
  294. VowelStart(l/la)
  295. VowelStart(l/le)
  296. VowelStart(l/li, -10)
  297. VowelStart(l/lo)
  298. VowelStart(l/lu)
  299. EndSwitch
  300. endprocedure
  301. phoneme l
  302. liquid
  303. lengthmod 7
  304. IF nextPh(isNotVowel) THEN
  305. ChangePhoneme(l/)
  306. ENDIF
  307. IF nextPh(isNotVowel) THEN
  308. // in case the next phoneme is no longer a vowel, in pass=2
  309. PrevVowelEndings
  310. VowelEnding(l/L1_@L, -60)
  311. VowelEnding(l/L1_aL, -40)
  312. VowelEnding(l/L1_eL, -30)
  313. VowelEnding(l/L1_iL, -30)
  314. VowelEnding(l/L1_oL, -40)
  315. VowelEnding(l/L1_uL, -40)
  316. EndSwitch
  317. FMT(l/l_)
  318. RETURN
  319. ENDIF
  320. CALL vowelstart_l
  321. IF prevPh(#@) THEN
  322. VowelEnding(l/xl, -50)
  323. ELIF prevPh(isVowel) THEN
  324. VowelEnding(l/xl, -40)
  325. ENDIF
  326. IF prevPh(isPause) THEN
  327. FMT(l/_l)
  328. ENDIF
  329. IF prevPh(t) THEN
  330. FMT(l/tl)
  331. ENDIF
  332. IF prevPh(l/) THEN
  333. FMT(l/l_long) // double l, make it longer
  334. ENDIF
  335. FMT(l/l)
  336. endphoneme
  337. phoneme l/ // used for [l] when not before a vowel
  338. liquid
  339. lengthmod 7
  340. IF nextPh(isVowel) THEN
  341. ChangePhoneme(l)
  342. ENDIF
  343. PrevVowelEndings
  344. VowelEnding(l/L1_@L, -60)
  345. VowelEnding(l/L1_aL, -40)
  346. VowelEnding(l/L1_eL, -30)
  347. VowelEnding(l/L1_iL, -30)
  348. VowelEnding(l/L1_oL, -40)
  349. VowelEnding(l/L1_uL, -40)
  350. EndSwitch
  351. // we need to replace these with new FMT sequeces for jl and wl
  352. IF prevPhW(j) THEN
  353. FMT(l/L1_eL)
  354. ENDIF
  355. IF prevPhW(w) THEN
  356. FMT(l/L1_eL)
  357. ENDIF
  358. FMT(l/l_)
  359. endphoneme
  360. phoneme l/2 // 'dark' [l] after a vowel
  361. liquid
  362. lengthmod 7
  363. IF nextPh(isVowel) THEN
  364. ChangePhoneme(l)
  365. ENDIF
  366. CALL vowelstart_l
  367. IF prevPhW(j) THEN
  368. FMT(l/L2_eL)
  369. ENDIF
  370. IF prevPhW(w) THEN
  371. FMT(l/L2_uL)
  372. ENDIF
  373. PrevVowelEndings
  374. VowelEnding(l/L2_@L, -60)
  375. VowelEnding(l/L2_aL, -50)
  376. VowelEnding(l/L2_eL, -40)
  377. VowelEnding(l/L2_iL, -30)
  378. VowelEnding(l/L2_oL, -50)
  379. VowelEnding(l/L2_uL, -40)
  380. EndSwitch
  381. endphoneme
  382. phoneme l/3 // Replacement for [l/]
  383. liquid
  384. lengthmod 7
  385. IF nextPh(isVowel) THEN
  386. ChangePhoneme(l)
  387. ENDIF
  388. PrevVowelEndings
  389. VowelEnding(l/l_@)
  390. VowelEnding(l/l_a)
  391. VowelEnding(l/l_e)
  392. VowelEnding(l/l_i)
  393. VowelEnding(l/l_o)
  394. VowelEnding(l/l_u, -20)
  395. EndSwitch
  396. // IF nextPh(isLiquid) THEN
  397. // FMT(l/_l)
  398. // ENDIF
  399. FMT(l/l_)
  400. endphoneme
  401. phoneme l^ // palatal l, e.g. Italian **g**li
  402. import_phoneme ipa/L
  403. endphoneme
  404. phoneme l.
  405. import_phoneme ipa/l`
  406. endphoneme
  407. phoneme L/
  408. import_phoneme base1/l/2
  409. endphoneme
  410. phoneme L // velar L
  411. import_phoneme ipa/L\\
  412. endphoneme
  413. phoneme w
  414. import_phoneme ipa/w
  415. endphoneme
  416. phoneme j // **y**es
  417. import_phoneme ipa/j
  418. endphoneme
  419. phoneme ; // linking j, used between (i) vowels and a following vowel
  420. // also to palatalize consonants
  421. liquid pzd
  422. lengthmod 0
  423. IF prevPh(#i) THEN
  424. ipa NULL // linking after i vowel, don't show in ipa
  425. ENDIF
  426. IF nextPh(isNotVowel) THEN
  427. ChangePhoneme(NULL) // this is to ignore this phoneme if not before a vowel
  428. ENDIF
  429. NextVowelStarts
  430. VowelStart(j2/j2@)
  431. VowelStart(j2/j2a)
  432. VowelStart(j2/j2e)
  433. VowelStart(j2/j2i)
  434. VowelStart(j2/j2o)
  435. VowelStart(j2/j2u)
  436. EndSwitch
  437. IF prevPh(#i) THEN
  438. VowelEnding(j2/xj2, -40)
  439. ENDIF
  440. IF prevPh(isPause) THEN
  441. FMT(j2/_j2)
  442. ENDIF
  443. endphoneme
  444. //*******************************************************************
  445. // NASAL CONSONANTS
  446. //*******************************************************************
  447. phoneme m
  448. import_phoneme ipa/m
  449. endphoneme
  450. phoneme n
  451. import_phoneme ipa/n
  452. endphoneme
  453. phoneme n.
  454. import_phoneme ipa/n`
  455. endphoneme
  456. phoneme n^ // Spanish **ñ**
  457. import_phoneme ipa/J
  458. endphoneme
  459. phoneme N // si**ng**
  460. import_phoneme ipa/N
  461. endphoneme
  462. phoneme ** // TEST flap
  463. liquid alv rhotic
  464. ipa ɾ
  465. lengthmod 3
  466. Vowelout f1=3 f2=1600 -300 300 f3=-300 80 rms=35 len=15
  467. Vowelin f1=2 f2=1600 -300 300 f3=-100 80 len=20
  468. IF prevPh(#i) OR prevPh(#e) THEN
  469. FMT(r3/@tap2)
  470. ENDIF
  471. FMT(r3/@tap)
  472. endphoneme
  473. phoneme * // flap
  474. vcd alv flp rhotic
  475. brkafter
  476. ipa ɾ
  477. lengthmod 3
  478. IF prevPhW(@-) THEN
  479. ipa r // @-* sequence for [r]
  480. ENDIF
  481. IF nextPh(#e) OR nextPh(#i) THEN
  482. Vowelin f1=0 f2=1500 -300 300 f3=-200 80
  483. FMT(d/tap1) addWav(r3/rx, 150)
  484. FMT(d/tap1) addWav(r3/rx, 150)
  485. ENDIF
  486. Vowelin f1=2 f2=1500 -300 300 f3=-200 80
  487. IF nextPh(#a) THEN
  488. FMT(d/tap3) addWav(r3/rx, 200)
  489. ENDIF
  490. IF nextPh(r) THEN
  491. FMT(d/dr)
  492. ENDIF
  493. Vowelout f1=3 f2=1500 -400 300 f3=-200 80 rms=35 len=50
  494. Vowelin f1=0 f2=1500 -300 300 f3=-200 80
  495. FMT(d/tap3) addWav(r3/rx, 200)
  496. endphoneme
  497. phoneme r. // retroflex
  498. liquid rfx
  499. lengthmod 3
  500. Vowelout f1=3 f2=1400 -400 300 f3=-400 80 rms=35 len=15 colr=2
  501. Vowelin f1=2 f2=1400 -400 300 f3=-400 80 len=20
  502. IF nextPh(isNotVowel) THEN
  503. FMT(r3/@tap_rfx_)
  504. ENDIF
  505. FMT(r3/@tap_rfx)
  506. endphoneme
  507. //*******************************************************************
  508. // VOICED STOPS
  509. //*******************************************************************
  510. phoneme b
  511. import_phoneme ipa/b
  512. voicingswitch p
  513. endphoneme
  514. phoneme d
  515. import_phoneme ipa/d
  516. voicingswitch t
  517. endphoneme
  518. phoneme d[
  519. import_phoneme ipa/d_d
  520. voicingswitch t[
  521. endphoneme
  522. phoneme dZ // **j**udge
  523. import_phoneme ipa/dZ\)
  524. voicingswitch tS
  525. endphoneme
  526. phoneme dZ;
  527. import_phoneme ipa/dz\\\)
  528. voicingswitch tS;
  529. endphoneme
  530. phoneme J
  531. import_phoneme ipa/J\\
  532. voicingswitch c
  533. endphoneme
  534. phoneme g
  535. import_phoneme ipa/g
  536. voicingswitch k
  537. endphoneme
  538. //*******************************************************************
  539. // VOICED fricatives
  540. //*******************************************************************
  541. phoneme B
  542. import_phoneme ipa/B
  543. voicingswitch f
  544. endphoneme
  545. phoneme v
  546. import_phoneme ipa/v
  547. voicingswitch f
  548. endphoneme
  549. phoneme v#
  550. import_phoneme ipa/P
  551. voicingswitch f
  552. endphoneme
  553. phoneme D // **th**is
  554. import_phoneme ipa/D
  555. voicingswitch T
  556. endphoneme
  557. phoneme z
  558. import_phoneme ipa/z
  559. voicingswitch s
  560. endphoneme
  561. phoneme Z // plea**s**ure
  562. import_phoneme ipa/Z
  563. voicingswitch S
  564. endphoneme
  565. phoneme z.
  566. import_phoneme ipa/z`
  567. voicingswitch s.
  568. endphoneme
  569. phoneme z;
  570. import_phoneme ipa/z_j
  571. voicingswitch s;
  572. endphoneme
  573. phoneme Z;
  574. import_phoneme ipa/z\\
  575. voicingswitch S;
  576. endphoneme
  577. phoneme J^ // palatal fricative (Kirshenbaum C<vcd>)
  578. import_phoneme ipa/j\\
  579. ipa ʝ
  580. endphoneme
  581. phoneme Q
  582. import_phoneme ipa/G
  583. voicingswitch x
  584. endphoneme
  585. phoneme Q"
  586. import_phoneme ipa/R
  587. endphoneme
  588. //*******************************************************************
  589. // UNVOICED STOPS
  590. //*******************************************************************
  591. phoneme p
  592. import_phoneme ipa/p
  593. voicingswitch b
  594. endphoneme
  595. phoneme t
  596. import_phoneme ipa/t
  597. voicingswitch d
  598. endphoneme
  599. phoneme t[ // dental variant of /t/
  600. import_phoneme ipa/t_d
  601. voicingswitch d[
  602. endphoneme
  603. phoneme tS // **ch**urch
  604. import_phoneme ipa/tS\)
  605. voicingswitch dZ
  606. endphoneme
  607. phoneme tS;
  608. import_phoneme ipa/ts\\\)
  609. voicingswitch dZ;
  610. endphoneme
  611. phoneme c
  612. import_phoneme ipa/c
  613. voicingswitch J
  614. endphoneme
  615. phoneme k
  616. import_phoneme ipa/k
  617. voicingswitch g
  618. endphoneme
  619. phoneme q
  620. import_phoneme ipa/q
  621. endphoneme
  622. //*******************************************************************
  623. // UNVOICED fricatives
  624. //*******************************************************************
  625. phoneme f
  626. import_phoneme ipa/f
  627. voicingswitch v
  628. endphoneme
  629. phoneme T // **th**in
  630. import_phoneme ipa/T
  631. voicingswitch D
  632. endphoneme
  633. phoneme s
  634. import_phoneme ipa/s
  635. voicingswitch z
  636. endphoneme
  637. phoneme S // **sh**op
  638. import_phoneme ipa/S
  639. voicingswitch Z
  640. endphoneme
  641. phoneme s.
  642. import_phoneme ipa/s`
  643. voicingswitch z.
  644. endphoneme
  645. phoneme s;
  646. import_phoneme ipa/s_j
  647. voicingswitch z;
  648. endphoneme
  649. phoneme S;
  650. import_phoneme ipa/s\\
  651. voicingswitch Z;
  652. endphoneme
  653. phoneme l# // Lateral fricative (eg. Welsh "ll")
  654. import_phoneme ipa/K
  655. endphoneme
  656. phoneme C // German i**ch**
  657. import_phoneme ipa/C
  658. endphoneme
  659. phoneme x // German bu**ch**
  660. import_phoneme ipa/x
  661. voicingswitch Q
  662. endphoneme
  663. phoneme X
  664. import_phoneme ipa/X
  665. voicingswitch Q"
  666. endphoneme
  667. phoneme h
  668. import_phoneme ipa/h
  669. endphoneme
  670. //*******************************************************************
  671. // ADDITIONAL PHONEME TABLES
  672. //*******************************************************************
  673. phonemetable jp base1
  674. include ph_japanese
  675. phonemetable consonants base1
  676. include ph_consonants
  677. phonemetable base2 base1
  678. include ph_base2
  679. phonemetable en base1
  680. include ph_english
  681. phonemetable en-n en
  682. include ph_english_n
  683. phonemetable en-us en
  684. include ph_english_us
  685. phonemetable en-sc en
  686. include ph_english_sc
  687. phonemetable en-rp en
  688. include ph_english_rp
  689. phonemetable en-wm en
  690. include ph_english_wm
  691. phonemetable en-wi en
  692. include ph_english_wi
  693. phonemetable af base1
  694. include ph_afrikaans
  695. phonemetable cy base1
  696. include ph_welsh
  697. phonemetable ga base1
  698. include ph_irish
  699. phonemetable de base1
  700. include ph_german
  701. phonemetable eo base1
  702. include ph_esperanto
  703. phonemetable ia eo
  704. include ph_interlingua
  705. phonemetable jbo eo
  706. include ph_lojban
  707. phonemetable nci base2
  708. include ph_nahuatl
  709. phonemetable fi base1
  710. include ph_finnish
  711. phonemetable et base1
  712. include ph_estonian
  713. phonemetable fr base1
  714. include ph_french
  715. phonemetable fr-ca fr
  716. include ph_french_ca
  717. phonemetable nl base1
  718. include ph_dutch
  719. phonemetable hi_base base1
  720. include ph_hindi_base
  721. phonemetable hi hi_base
  722. include ph_hindi
  723. phonemetable bn hi_base
  724. include ph_bengali
  725. phonemetable ne hi_base
  726. include ph_nepali
  727. phonemetable ur hi_base
  728. include ph_urdu
  729. phonemetable pa hi_base
  730. include ph_punjabi
  731. phonemetable ta hi_base
  732. include ph_tamil
  733. phonemetable kn hi_base
  734. include ph_kannada
  735. phonemetable ml hi_base
  736. include ph_malayalam
  737. phonemetable gu hi_base
  738. include ph_gujarati
  739. phonemetable mr hi_base
  740. include ph_marathi
  741. phonemetable kok hi_base
  742. include ph_konkani
  743. phonemetable hu base1
  744. include ph_hungarian
  745. phonemetable lt base1
  746. include ph_lithuanian
  747. phonemetable lv base1
  748. include ph_latvian
  749. phonemetable pl base1
  750. include ph_polish
  751. phonemetable sk pl
  752. include ph_slovak
  753. phonemetable cs sk
  754. include ph_czech
  755. phonemetable hr sk
  756. include ph_croatian
  757. phonemetable mk hr
  758. include ph_macedonian
  759. phonemetable sr hr
  760. include ph_serbian
  761. phonemetable ru base1
  762. include ph_russian
  763. phonemetable bg pl
  764. include ph_bulgarian
  765. phonemetable it base2
  766. include ph_italian
  767. phonemetable la base1
  768. include ph_latin
  769. phonemetable es base2
  770. include ph_spanish
  771. phonemetable es-la es
  772. include ph_spanish_la
  773. phonemetable ca es
  774. include ph_catalan
  775. phonemetable an es
  776. include ph_aragon
  777. phonemetable eu base2
  778. include ph_basque
  779. phonemetable pt base2
  780. include ph_pt_brazil
  781. phonemetable pt-pt pt
  782. include ph_portugal
  783. phonemetable ro base2
  784. include ph_romanian
  785. phonemetable el base2
  786. include ph_greek
  787. phonemetable grc base2
  788. include ph_greek_ancient
  789. phonemetable sv base1
  790. include ph_swedish
  791. phonemetable no base1
  792. include ph_norwegian
  793. phonemetable is base1
  794. include ph_icelandic
  795. phonemetable vi base1
  796. include ph_vietnam
  797. phonemetable vi-hue vi
  798. include ph_vietnam_hue
  799. phonemetable vi-sgn vi
  800. include ph_vietnam_sgn
  801. phonemetable zhy base1
  802. include ph_zh_yue
  803. phonemetable zh base1
  804. include ph_zh
  805. phonemetable sw base1
  806. include ph_swahili
  807. phonemetable tr base2
  808. include ph_turkish
  809. phonemetable ku base2
  810. include ph_kurdish
  811. phonemetable id base2
  812. include ph_indonesian
  813. phonemetable sq base1
  814. include ph_albanian
  815. phonemetable hy base1
  816. include ph_armenian
  817. phonemetable da base1
  818. include ph_danish
  819. phonemetable ka base1
  820. include ph_georgian
  821. phonemetable fa base1
  822. include ph_farsi
  823. phonemetable ar base1
  824. include ph_arabic
  825. phonemetable rw base2
  826. include ph_kinyarwanda
  827. phonemetable prs base1
  828. include ph_dari
  829. phonemetable sl pl
  830. include ph_slovenian
  831. phonemetable gd base1
  832. include ph_s_gaelic
  833. phonemetable nso base1
  834. include ph_northern-sotho
  835. phonemetable ht fr
  836. include ph_haitian
  837. phonemetable az tr
  838. include ph_azerbaijani
  839. phonemetable ak base1
  840. include ph_akan
  841. phonemetable am base1
  842. include ph_amhari
  843. phonemetable wo base1
  844. include ph_wolof
  845. phonemetable dv hi_base
  846. include ph_divehi
  847. phonemetable te hi_base
  848. include ph_telugu
  849. phonemetable si hi_base
  850. include ph_sinhala
  851. phonemetable as bn
  852. include ph_assamese
  853. phonemetable or bn
  854. include ph_oriya
  855. phonemetable bpy bn
  856. include ph_manipuri
  857. phonemetable sd ur
  858. include ph_sindhi
  859. phonemetable tn base1
  860. include ph_setswana
  861. phonemetable mt base1
  862. include ph_maltese
  863. phonemetable bo hi
  864. include ph_tibetan
  865. phonemetable kk base1
  866. include ph_kazakh
  867. phonemetable tt base1
  868. include ph_tatar
  869. phonemetable ko base1
  870. include ph_korean
  871. phonemetable kl base1
  872. include ph_greenlandic
  873. phonemetable om base1
  874. include ph_oromo
  875. phonemetable my base1
  876. include ph_burmese
  877. phonemetable gn base1
  878. include ph_guarani
  879. phonemetable ky base1
  880. include ph_kyrgyz
  881. phonemetable mi base1
  882. include ph_maori