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.

tr_languages.cpp 58KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508
  1. /***************************************************************************
  2. * Copyright (C) 2005 to 2011 by Jonathan Duddington *
  3. * email: [email protected] *
  4. * *
  5. * This program is free software; you can redistribute it and/or modify *
  6. * it under the terms of the GNU General Public License as published by *
  7. * the Free Software Foundation; either version 3 of the License, or *
  8. * (at your option) any later version. *
  9. * *
  10. * This program is distributed in the hope that it will be useful, *
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of *
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
  13. * GNU General Public License for more details. *
  14. * *
  15. * You should have received a copy of the GNU General Public License *
  16. * along with this program; if not, see: *
  17. * <http://www.gnu.org/licenses/>. *
  18. ***************************************************************************/
  19. #include "StdAfx.h"
  20. #include <stdio.h>
  21. #include <ctype.h>
  22. #include <wctype.h>
  23. #include <stdlib.h>
  24. #include <string.h>
  25. #include <locale.h>
  26. #include <wctype.h>
  27. #include "speak_lib.h"
  28. #include "speech.h"
  29. #include "phoneme.h"
  30. #include "synthesize.h"
  31. #include "translate.h"
  32. #define L_qa 0x716100
  33. #define L_grc 0x677263 // grc Ancient Greek
  34. #define L_jbo 0x6a626f // jbo Lojban
  35. #define L_pap 0x706170 // pap Papiamento]
  36. #define L_qvi 0x717669 // qvi Kichwa
  37. #define L_shs 0x736873 // shs Shuswap / Secwepemctsin
  38. #define L_zhy 0x7a6879 // zhy
  39. // start of unicode pages for character sets
  40. #define OFFSET_GREEK 0x380
  41. #define OFFSET_CYRILLIC 0x420
  42. #define OFFSET_ARMENIAN 0x530
  43. #define OFFSET_ARABIC 0x600
  44. #define OFFSET_THAANA 0x780 // Divehi/Maldives
  45. #define OFFSET_DEVANAGARI 0x900
  46. #define OFFSET_BENGALI 0x980
  47. #define OFFSET_GURMUKHI 0xa00
  48. #define OFFSET_GUJARATI 0xa80
  49. #define OFFSET_ORIYA 0xb00
  50. #define OFFSET_TAMIL 0xb80
  51. #define OFFSET_TELUGU 0xc00
  52. #define OFFSET_KANNADA 0xc80
  53. #define OFFSET_MALAYALAM 0xd00
  54. #define OFFSET_SINHALA 0x0d80
  55. #define OFFSET_GEORGIAN 0x1080
  56. #define OFFSET_KOREAN 0x1100
  57. static void Translator_Russian(Translator *tr);
  58. static void SetLetterVowel(Translator *tr, int c)
  59. {//==============================================
  60. tr->letter_bits[c] = (tr->letter_bits[c] & 0x40) | 0x81; // keep value for group 6 (front vowels e,i,y)
  61. }
  62. static void ResetLetterBits(Translator *tr, int groups)
  63. {//====================================================
  64. // Clear all the specified groups
  65. unsigned int ix;
  66. unsigned int mask;
  67. mask = ~groups;
  68. for(ix=0; ix<sizeof(tr->letter_bits); ix++)
  69. {
  70. tr->letter_bits[ix] &= mask;
  71. }
  72. }
  73. static void SetLetterBits(Translator *tr, int group, const char *string)
  74. {//=====================================================================
  75. int bits;
  76. unsigned char c;
  77. bits = (1L << group);
  78. while((c = *string++) != 0)
  79. tr->letter_bits[c] |= bits;
  80. }
  81. static void SetLetterBitsRange(Translator *tr, int group, int first, int last)
  82. {//===========================================================================
  83. int bits;
  84. int ix;
  85. bits = (1L << group);
  86. for(ix=first; ix<=last; ix++)
  87. {
  88. tr->letter_bits[ix] |= bits;
  89. }
  90. }
  91. static Translator* NewTranslator(void)
  92. {//===================================
  93. Translator *tr;
  94. int ix;
  95. static const unsigned char stress_amps2[] = {18,18, 20,20, 20,22, 22,20 };
  96. static const short stress_lengths2[8] = {182,140, 220,220, 220,240, 260,280};
  97. static const wchar_t empty_wstring[1] = {0};
  98. static const wchar_t punct_in_word[2] = {'\'', 0}; // allow hyphen within words
  99. static const unsigned char default_tunes[6] = {0, 1, 2, 3, 0, 0};
  100. tr = (Translator *)Alloc(sizeof(Translator));
  101. if(tr == NULL)
  102. return(NULL);
  103. tr->charset_a0 = charsets[1]; // ISO-8859-1, this is for when the input is not utf8
  104. dictionary_name[0] = 0;
  105. tr->dict_condition=0;
  106. tr->data_dictrules = NULL; // language_1 translation rules file
  107. tr->data_dictlist = NULL; // language_2 dictionary lookup file
  108. tr->transpose_min = 'a';
  109. tr->transpose_max = 'z';
  110. tr->frequent_pairs = NULL;
  111. // only need lower case
  112. tr->letter_bits_offset = 0;
  113. memset(tr->letter_bits,0,sizeof(tr->letter_bits));
  114. memset(tr->letter_groups,0,sizeof(tr->letter_groups));
  115. // 0-5 sets of characters matched by A B C H F G Y in pronunciation rules
  116. // these may be set differently for different languages
  117. SetLetterBits(tr,0,"aeiou"); // A vowels, except y
  118. SetLetterBits(tr,1,"bcdfgjklmnpqstvxz"); // B hard consonants, excluding h,r,w
  119. SetLetterBits(tr,2,"bcdfghjklmnpqrstvwxz"); // C all consonants
  120. SetLetterBits(tr,3,"hlmnr"); // H 'soft' consonants
  121. SetLetterBits(tr,4,"cfhkpqstx"); // F voiceless consonants
  122. SetLetterBits(tr,5,"bdgjlmnrvwyz"); // G voiced
  123. SetLetterBits(tr,6,"eiy"); // Letter group Y, front vowels
  124. SetLetterBits(tr,7,"aeiouy"); // vowels, including y
  125. tr->char_plus_apostrophe = empty_wstring;
  126. tr->punct_within_word = punct_in_word;
  127. for(ix=0; ix<8; ix++)
  128. {
  129. tr->stress_amps[ix] = stress_amps2[ix];
  130. tr->stress_amps_r[ix] = stress_amps2[ix] - 1;
  131. tr->stress_lengths[ix] = stress_lengths2[ix];
  132. }
  133. memset(&(tr->langopts),0,sizeof(tr->langopts));
  134. tr->langopts.max_lengthmod = 500;
  135. tr->langopts.stress_rule = STRESSPOSN_2R;
  136. tr->langopts.unstressed_wd1 = 1;
  137. tr->langopts.unstressed_wd2 = 3;
  138. tr->langopts.param[LOPT_SONORANT_MIN] = 95;
  139. tr->langopts.param[LOPT_LONG_VOWEL_THRESHOLD] = 190/2;
  140. tr->langopts.param[LOPT_MAXAMP_EOC] = 19;
  141. tr->langopts.param[LOPT_UNPRONOUNCABLE] = 's'; // don't count this character at start of word
  142. tr->langopts.param[LOPT_BRACKET_PAUSE] = 4; // pause at bracket
  143. tr->langopts.param2[LOPT_BRACKET_PAUSE] = 2; // pauses when announcing bracket names
  144. tr->langopts.max_initial_consonants = 3;
  145. tr->langopts.replace_chars = NULL;
  146. tr->langopts.ascii_language = ""; // Non-Latin alphabet languages, use this language to speak Latin words, default is English
  147. SetLengthMods(tr,201);
  148. // tr->langopts.length_mods = length_mods_en;
  149. // tr->langopts.length_mods0 = length_mods_en0;
  150. tr->langopts.long_stop = 100;
  151. tr->langopts.max_roman = 49;
  152. tr->langopts.min_roman = 2;
  153. tr->langopts.thousands_sep = ',';
  154. tr->langopts.decimal_sep = '.';
  155. tr->langopts.break_numbers = BREAK_THOUSANDS; // 1000, 1000,000 1,000,000 etc
  156. tr->langopts.max_digits = 14;
  157. memcpy(tr->punct_to_tone, punctuation_to_tone, sizeof(tr->punct_to_tone));
  158. memcpy(tr->langopts.tunes, default_tunes, sizeof(tr->langopts.tunes));
  159. return(tr);
  160. }
  161. // common letter pairs, encode these as a single byte
  162. // 2 bytes, using the transposed character codes
  163. static const short pairs_ru[] = {
  164. 0x010c, // ла 21052 0x23
  165. 0x010e, // на 18400
  166. 0x0113, // та 14254
  167. 0x0301, // ав 31083
  168. 0x030f, // ов 13420
  169. 0x060e, // не 21798
  170. 0x0611, // ре 19458
  171. 0x0903, // ви 16226
  172. 0x0b01, // ак 14456
  173. 0x0b0f, // ок 17836
  174. 0x0c01, // ал 13324
  175. 0x0c09, // ил 16877
  176. 0x0e01, // ан 15359
  177. 0x0e06, // ен 13543 0x30
  178. 0x0e09, // ин 17168
  179. 0x0e0e, // нн 15973
  180. 0x0e0f, // он 22373
  181. 0x0e1c, // ын 15052
  182. 0x0f03, // во 24947
  183. 0x0f11, // ро 13552
  184. 0x0f12, // со 16368
  185. 0x100f, // оп 19054
  186. 0x1011, // рп 17067
  187. 0x1101, // ар 23967
  188. 0x1106, // ер 18795
  189. 0x1109, // ир 13797
  190. 0x110f, // ор 21737
  191. 0x1213, // тс 25076
  192. 0x1220, // яс 14310
  193. 0x7fff};
  194. //0x040f ог 12976
  195. //0x1306 ет 12826
  196. //0x0f0d мо 12688
  197. static const unsigned int replace_cyrillic_latin[] =
  198. {0x430,'a',
  199. 0x431,'b',
  200. 0x446,'c',
  201. 0x45b,0x107,
  202. 0x447,0x10d,
  203. 0x45f,'d'+(0x17e<<16),
  204. 0x455,'d'+('z'<<16),
  205. 0x434,'d',
  206. 0x452,0x111,
  207. 0x435,'e',
  208. 0x444,'f',
  209. 0x433,'g',
  210. 0x445,'h',
  211. 0x438,'i',
  212. 0x458,'j',
  213. 0x43a,'k',
  214. 0x459,'l'+('j'<<16),
  215. 0x43b,'l',
  216. 0x43c,'m',
  217. 0x45a,'n'+('j'<<16),
  218. 0x43d,'n',
  219. 0x43e,'o',
  220. 0x43f,'p',
  221. 0x440,'r',
  222. 0x441,'s',
  223. 0x448,0x161,
  224. 0x442,'t',
  225. 0x443,'u',
  226. 0x432,'v',
  227. 0x437,'z',
  228. 0x436,0x17e,
  229. 0x453,0x111,
  230. 0x45c,0x107,
  231. 0}; // ѓ ѕ ќ
  232. static void SetCyrillicLetters(Translator *tr)
  233. {//===========================================
  234. // character codes offset by 0x420
  235. static const char ru_vowels[] = {0x10,0x15,0x31,0x18,0x1e,0x23,0x2b,0x2d,0x2e,0x2f,0};
  236. static const char ru_consonants[] = {0x11,0x12,0x13,0x14,0x16,0x17,0x19,0x1a,0x1b,0x1c,0x1d,0x1f,0x20,0x21,0x22,0x24,0x25,0x26,0x27,0x28,0x29,0x2a,0x2c,0};
  237. static const char ru_soft[] = {0x2c,0x19,0x27,0x29,0}; // letter group B [k ts; s;]
  238. static const char ru_hard[] = {0x2a,0x16,0x26,0x28,0}; // letter group H [S Z ts]
  239. static const char ru_nothard[] = {0x11,0x12,0x13,0x14,0x17,0x19,0x1a,0x1b,0x1c,0x1d,0x1f,0x20,0x21,0x22,0x24,0x25,0x27,0x29,0x2c,0};
  240. static const char ru_voiced[] = {0x11,0x12,0x13,0x14,0x16,0x17,0}; // letter group G (voiced obstruents)
  241. static const char ru_ivowels[] = {0x2c,0x2e,0x2f,0x31,0}; // letter group Y (iotated vowels & soft-sign)
  242. tr->charset_a0 = charsets[18]; // KOI8-R
  243. tr->transpose_min = 0x430; // convert cyrillic from unicode into range 0x01 to 0x22
  244. tr->transpose_max = 0x451;
  245. tr->frequent_pairs = pairs_ru;
  246. tr->letter_bits_offset = OFFSET_CYRILLIC;
  247. memset(tr->letter_bits,0,sizeof(tr->letter_bits));
  248. SetLetterBits(tr,LETTERGP_A,ru_vowels);
  249. SetLetterBits(tr,1,ru_soft);
  250. SetLetterBits(tr,2,ru_consonants);
  251. SetLetterBits(tr,3,ru_hard);
  252. SetLetterBits(tr,4,ru_nothard);
  253. SetLetterBits(tr,5,ru_voiced);
  254. SetLetterBits(tr,6,ru_ivowels);
  255. SetLetterBits(tr,LETTERGP_VOWEL2,ru_vowels);
  256. } // end of SetCyrillicLetters
  257. void SetIndicLetters(Translator *tr)
  258. {//=================================
  259. // Set letter types for Indic scripts, Devanagari, Tamill, etc
  260. static const char dev_consonants2[] = {0x02,0x03,0x58,0x59,0x5a,0x5b,0x5c,0x5d,0x5e,0x5f};
  261. memset(tr->letter_bits,0,sizeof(tr->letter_bits));
  262. SetLetterBitsRange(tr,LETTERGP_A,0x04,0x14); // vowel letters
  263. SetLetterBitsRange(tr,LETTERGP_A,0x3e,0x4d); // + vowel signs, and virama
  264. SetLetterBitsRange(tr,LETTERGP_A,0x55,0x57); // + vowel signs
  265. SetLetterBitsRange(tr,LETTERGP_B,0x3e,0x4d); // vowel signs, and virama
  266. SetLetterBitsRange(tr,LETTERGP_B,0x55,0x57); // + vowel signs
  267. SetLetterBitsRange(tr,LETTERGP_C,0x15,0x39); // the main consonant range
  268. SetLetterBits(tr,LETTERGP_C,dev_consonants2); // + additional consonants
  269. SetLetterBitsRange(tr,LETTERGP_Y,0x04,0x14); // vowel letters
  270. SetLetterBitsRange(tr,LETTERGP_Y,0x3e,0x4c); // + vowel signs
  271. SetLetterBitsRange(tr,LETTERGP_Y,0x55,0x57); // + vowel signs
  272. tr->langopts.param[LOPT_UNPRONOUNCABLE] = 1; // disable check for unpronouncable words
  273. tr->langopts.suffix_add_e = tr->letter_bits_offset + 0x4d; //virama
  274. }
  275. void SetupTranslator(Translator *tr, const short *lengths, const unsigned char *amps)
  276. {//==================================================================================
  277. if(lengths != NULL)
  278. memcpy(tr->stress_lengths,lengths,sizeof(tr->stress_lengths));
  279. if(amps != NULL)
  280. memcpy(tr->stress_amps,amps,sizeof(tr->stress_amps));
  281. }
  282. Translator *SelectTranslator(const char *name)
  283. {//===========================================
  284. int name2 = 0;
  285. Translator *tr;
  286. static const short stress_lengths_fr[8] = {190, 170, 190, 200, 0, 0, 190, 240};
  287. static const unsigned char stress_amps_fr[8] = {18,16, 18,18, 18,18, 18,18 };
  288. static const unsigned char stress_amps_sk[8] = {17,16, 20,20, 20,22, 22,21 };
  289. static const short stress_lengths_sk[8] = {190,190, 210,210, 0,0, 210,210};
  290. static const short stress_lengths_ta[8] = {200, 200, 210, 210, 0, 0, 230, 230};
  291. static const unsigned char stress_amps_ta[8] = {18,18, 18,18, 20,20, 22,22 };
  292. // convert name string into a word of up to 4 characters, for the switch()
  293. while(*name != 0)
  294. name2 = (name2 << 8) + *name++;
  295. tr = NewTranslator();
  296. switch(name2)
  297. {
  298. case L('a','f'):
  299. {
  300. static const short stress_lengths_af[8] = {170,140, 220,220, 0, 0, 250,270};
  301. SetupTranslator(tr,stress_lengths_af,NULL);
  302. tr->langopts.stress_rule = STRESSPOSN_1L;
  303. tr->langopts.vowel_pause = 0x30;
  304. tr->langopts.param[LOPT_DIERESES] = 1;
  305. tr->langopts.param[LOPT_PREFIXES] = 1;
  306. SetLetterVowel(tr,'y'); // add 'y' to vowels
  307. tr->langopts.numbers = NUM_SWAP_TENS | NUM_HUNDRED_AND | NUM_SINGLE_AND | NUM_ROMAN | NUM_1900;
  308. tr->langopts.accents = 1;
  309. }
  310. break;
  311. case L('a','m'): // Amharic, Ethiopia
  312. {
  313. SetupTranslator(tr,stress_lengths_fr,stress_amps_fr);
  314. tr->langopts.stress_rule = STRESSPOSN_1L;
  315. tr->langopts.stress_flags = 0x0024; // don't use secondary stress
  316. tr->langopts.length_mods0 = tr->langopts.length_mods; // don't lengthen vowels in the last syllable
  317. tr->langopts.param[LOPT_UNPRONOUNCABLE] = 1; // disable check for unpronouncable words
  318. tr->langopts.numbers = NUM_OMIT_1_HUNDRED;
  319. }
  320. break;
  321. case L('a','r'): // Arabic
  322. tr->letter_bits_offset = OFFSET_ARABIC;
  323. tr->langopts.numbers = NUM_SWAP_TENS | NUM_AND_UNITS | NUM_HUNDRED_AND | NUM_OMIT_1_HUNDRED | NUM_AND_HUNDRED | NUM_THOUSAND_AND | NUM_OMIT_1_THOUSAND;
  324. tr->langopts.param[LOPT_UNPRONOUNCABLE] = 1; // disable check for unpronouncable words
  325. break;
  326. case L('b','g'): //Bulgarian
  327. {
  328. SetCyrillicLetters(tr);
  329. SetLetterVowel(tr,0x2a);
  330. tr->langopts.param[LOPT_UNPRONOUNCABLE] = 0x432; // [v] don't count this character at start of word
  331. tr->langopts.param[LOPT_REGRESSIVE_VOICING] = 0x107; // devoice at end of word, and change voicing to match a following consonant (except v)
  332. tr->langopts.param[LOPT_REDUCE] = 2;
  333. tr->langopts.stress_rule = STRESSPOSN_2R;
  334. tr->langopts.numbers = NUM_DECIMAL_COMMA | NUM_ALLOW_SPACE | NUM_OMIT_1_HUNDRED | NUM_HUNDRED_AND | NUM_AND_UNITS | NUM_SINGLE_AND | NUM_ROMAN | NUM_ROMAN_ORDINAL | NUM_ROMAN_CAPITALS ;
  335. tr->langopts.thousands_sep = ' '; // don't allow dot as thousands separator
  336. }
  337. break;
  338. case L('b','n'): // Bengali
  339. {
  340. static const short stress_lengths_bn[8] = {180, 180, 210, 210, 0, 0, 230, 240};
  341. static const unsigned char stress_amps_bn[8] = {18,18, 18,18, 20,20, 22,22 };
  342. SetupTranslator(tr,stress_lengths_bn,stress_amps_bn);
  343. tr->langopts.length_mods0 = tr->langopts.length_mods; // don't lengthen vowels in the last syllable
  344. tr->langopts.stress_rule = STRESSPOSN_1L;
  345. tr->langopts.stress_flags = 0x10004; // use 'diminished' for unstressed final syllable
  346. tr->letter_bits_offset = OFFSET_BENGALI;
  347. SetIndicLetters(tr); // call this after setting OFFSET_BENGALI
  348. SetLetterBitsRange(tr,LETTERGP_F,0x3e,0x4c); // vowel signs, but not virama
  349. tr->langopts.numbers = 0x1;
  350. tr->langopts.break_numbers = 0x24924aa8; // for languages which have numbers for 100,000 and 100,00,000, eg Hindi
  351. }
  352. break;
  353. case L('c','y'): // Welsh
  354. {
  355. static const short stress_lengths_cy[8] = {170,220, 180,180, 0, 0, 250,270};
  356. static const unsigned char stress_amps_cy[8] = {17,15, 18,18, 0,0, 22,20 }; // 'diminished' is used to mark a quieter, final unstressed syllable
  357. SetupTranslator(tr,stress_lengths_cy,stress_amps_cy);
  358. tr->charset_a0 = charsets[14]; // ISO-8859-14
  359. // tr->langopts.length_mods0 = tr->langopts.length_mods; // don't lengthen vowels in the last syllable
  360. tr->langopts.stress_rule = STRESSPOSN_2R;
  361. // tr->langopts.intonation_group = 4;
  362. // 'diminished' is an unstressed final syllable
  363. tr->langopts.stress_flags = 0x6 | 0x10;
  364. tr->langopts.unstressed_wd1 = 0;
  365. tr->langopts.unstressed_wd2 = 2;
  366. tr->langopts.param[LOPT_SONORANT_MIN] = 120; // limit the shortening of sonorants before short vowels
  367. tr->langopts.numbers = NUM_OMIT_1_HUNDRED;
  368. SetLetterVowel(tr,'w'); // add letter to vowels and remove from consonants
  369. SetLetterVowel(tr,'y');
  370. }
  371. break;
  372. case L('d','a'): // Danish
  373. {
  374. static const short stress_lengths_da[8] = {160,140, 200,200, 0,0, 220,230};
  375. SetupTranslator(tr,stress_lengths_da,NULL);
  376. tr->langopts.stress_rule = STRESSPOSN_1L;
  377. tr->langopts.param[LOPT_PREFIXES] = 1;
  378. SetLetterVowel(tr,'y');
  379. tr->langopts.numbers = NUM_DECIMAL_COMMA | NUM_SWAP_TENS | NUM_HUNDRED_AND | NUM_OMIT_1_HUNDRED | NUM_ORDINAL_DOT | NUM_1900 | NUM_ROMAN | NUM_ROMAN_CAPITALS | NUM_ROMAN_ORDINAL;
  380. }
  381. break;
  382. case L('d','e'):
  383. {
  384. static const short stress_lengths_de[8] = {150,130, 200,200, 0, 0, 270,270};
  385. static const unsigned char stress_amps_de[] = {20,20, 20,20, 20,22, 22,20 };
  386. SetupTranslator(tr, stress_lengths_de, stress_amps_de);
  387. tr->langopts.stress_rule = STRESSPOSN_1L;
  388. tr->langopts.word_gap = 0x8; // don't use linking phonemes
  389. tr->langopts.vowel_pause = 0x30;
  390. tr->langopts.param[LOPT_PREFIXES] = 1;
  391. tr->langopts.param[LOPT_REGRESSIVE_VOICING] = 0x100; // devoice at end of word
  392. tr->langopts.param[LOPT_LONG_VOWEL_THRESHOLD] = 175/2;
  393. tr->langopts.numbers = NUM_DECIMAL_COMMA | NUM_SWAP_TENS | NUM_ALLOW_SPACE | NUM_ORDINAL_DOT | NUM_ROMAN;
  394. // tr->langopts.numbers = NUM_DECIMAL_COMMA | NUM_SWAP_TENS | NUM_OMIT_1_HUNDRED | NUM_OMIT_1_THOUSAND | NUM_ALLOW_SPACE | NUM_ORDINAL_DOT | NUM_ROMAN;
  395. SetLetterVowel(tr,'y');
  396. tr->langopts.param[LOPT_UNPRONOUNCABLE] = 2; // use de_rules for unpronouncable rules
  397. }
  398. break;
  399. case L('d','v'): // Divehi (Maldives)
  400. {
  401. SetupTranslator(tr,stress_lengths_ta,stress_amps_ta);
  402. tr->langopts.param[LOPT_UNPRONOUNCABLE] = 1; // disable check for unpronouncable words
  403. tr->langopts.length_mods0 = tr->langopts.length_mods; // don't lengthen vowels in the last syllable
  404. tr->letter_bits_offset = OFFSET_THAANA;
  405. tr->langopts.stress_rule = STRESSPOSN_1L;
  406. tr->langopts.stress_flags = 0x10004; // use 'diminished' for unstressed final syllable
  407. SetLetterBitsRange(tr,LETTERGP_B,0x26,0x30); // vowel signs, and virama
  408. tr->langopts.break_numbers = 0x14a8; // 1000, 100,000 10,000,000
  409. tr->langopts.numbers = 1;
  410. }
  411. break;
  412. case L('e','n'):
  413. {
  414. static const short stress_lengths_en[8] = {182,140, 220,220, 0,0, 248,275};
  415. SetupTranslator(tr,stress_lengths_en,NULL);
  416. tr->langopts.stress_rule = STRESSPOSN_1L;
  417. tr->langopts.stress_flags = 0x08;
  418. tr->langopts.numbers = NUM_HUNDRED_AND | NUM_ROMAN | NUM_1900;
  419. tr->langopts.param[LOPT_COMBINE_WORDS] = 2; // allow "mc" to cmbine with the following word
  420. tr->langopts.suffix_add_e = 'e';
  421. tr->langopts.param[LOPT_UNPRONOUNCABLE] = 2; // use en_rules for unpronouncable rules
  422. SetLetterBits(tr,6,"aeiouy"); // Group Y: vowels, including y
  423. }
  424. break;
  425. case L('e','l'): // Greek
  426. case L_grc: // Ancient Greek
  427. {
  428. static const short stress_lengths_el[8] = {155, 180, 210, 210, 0, 0, 270, 300};
  429. static const unsigned char stress_amps_el[8] = {15,12, 20,20, 20,22, 22,21 }; // 'diminished' is used to mark a quieter, final unstressed syllable
  430. // character codes offset by 0x380
  431. static const char el_vowels[] = {0x10,0x2c,0x2d,0x2e,0x2f,0x30,0x31,0x35,0x37,0x39,0x3f,0x45,0x49,0x4a,0x4b,0x4c,0x4d,0x4e,0x4f,0};
  432. static const char el_fvowels[] = {0x2d,0x2e,0x2f,0x35,0x37,0x39,0x45,0x4d,0}; // ε η ι υ έ ή ί ύ
  433. static const char el_voiceless[]= {0x38,0x3a,0x3e,0x40,0x42,0x43,0x44,0x46,0x47,0}; // θ κ ξ π ς σ τ φ χ
  434. static const char el_consonants[]={0x32,0x33,0x34,0x36,0x38,0x3a,0x3b,0x3c,0x3d,0x3e,0x40,0x41,0x42,0x43,0x44,0x46,0x47,0x48,0};
  435. static const wchar_t el_char_apostrophe[] = {0x3c3,0}; // σ
  436. SetupTranslator(tr,stress_lengths_el,stress_amps_el);
  437. tr->charset_a0 = charsets[7]; // ISO-8859-7
  438. tr->char_plus_apostrophe = el_char_apostrophe;
  439. tr->letter_bits_offset = OFFSET_GREEK;
  440. memset(tr->letter_bits,0,sizeof(tr->letter_bits));
  441. SetLetterBits(tr,LETTERGP_A,el_vowels);
  442. SetLetterBits(tr,LETTERGP_VOWEL2,el_vowels);
  443. SetLetterBits(tr,LETTERGP_B,el_voiceless);
  444. SetLetterBits(tr,LETTERGP_C,el_consonants);
  445. SetLetterBits(tr,LETTERGP_Y,el_fvowels); // front vowels: ε η ι υ
  446. tr->langopts.length_mods0 = tr->langopts.length_mods; // don't lengthen vowels in the last syllable
  447. tr->langopts.stress_rule = STRESSPOSN_2R;
  448. tr->langopts.stress_flags = 0x6; // mark unstressed final syllables as diminished
  449. tr->langopts.unstressed_wd1 = 0;
  450. tr->langopts.unstressed_wd2 = 2;
  451. tr->langopts.param[LOPT_SONORANT_MIN] = 130; // limit the shortening of sonorants before short vowels
  452. tr->langopts.numbers = NUM_SINGLE_STRESS | NUM_DECIMAL_COMMA;
  453. tr->langopts.numbers2 = 0x2 | NUM2_MULTIPLE_ORDINAL; // variant form of numbers before thousands
  454. if(name2 == L_grc)
  455. {
  456. // ancient greek
  457. tr->langopts.param[LOPT_UNPRONOUNCABLE] = 1;
  458. }
  459. }
  460. break;
  461. case L('e','o'):
  462. {
  463. static const short stress_lengths_eo[8] = {150, 150, 230, 180, 0, 0, 300, 320};
  464. static const unsigned char stress_amps_eo[] = {16,14, 20,20, 20,22, 22,21 };
  465. static const wchar_t eo_char_apostrophe[2] = {'l',0};
  466. SetupTranslator(tr,stress_lengths_eo,stress_amps_eo);
  467. tr->charset_a0 = charsets[3]; // ISO-8859-3
  468. tr->char_plus_apostrophe = eo_char_apostrophe;
  469. // tr->langopts.word_gap = 1;
  470. tr->langopts.vowel_pause = 2;
  471. tr->langopts.stress_rule = STRESSPOSN_2R;
  472. tr->langopts.stress_flags = 0x6 | 0x10;
  473. // tr->langopts.unstressed_wd1 = 3;
  474. tr->langopts.unstressed_wd2 = 2;
  475. tr->langopts.numbers = NUM_DECIMAL_COMMA | NUM_OMIT_1_HUNDRED | NUM_ALLOW_SPACE | NUM_ROMAN;
  476. }
  477. break;
  478. case L('e','s'): // Spanish
  479. case L('c','a'): // Catalan
  480. case L_pap: // Papiamento
  481. {
  482. static const short stress_lengths_es[8] = {180, 210, 190, 190, 0, 0, 230, 260};
  483. // static const short stress_lengths_es[8] = {170, 200, 180, 180, 0, 0, 220, 250};
  484. static const unsigned char stress_amps_es[8] = {16,12, 18,18, 20,20, 20,20 }; // 'diminished' is used to mark a quieter, final unstressed syllable
  485. static const wchar_t ca_punct_within_word[] = {'\'',0xb7,0}; // ca: allow middle-dot within word
  486. SetupTranslator(tr,stress_lengths_es,stress_amps_es);
  487. tr->langopts.length_mods0 = tr->langopts.length_mods; // don't lengthen vowels in the last syllable
  488. tr->langopts.stress_rule = STRESSPOSN_2R;
  489. // stress last syllable if it doesn't end in vowel or "s" or "n"
  490. // 'diminished' is an unstressed final syllable
  491. tr->langopts.stress_flags = 0x200 | 0x6 | 0x10;
  492. tr->langopts.unstressed_wd1 = 0;
  493. tr->langopts.unstressed_wd2 = 2;
  494. tr->langopts.param[LOPT_SONORANT_MIN] = 120; // limit the shortening of sonorants before short vowels
  495. tr->langopts.numbers = NUM_SINGLE_STRESS | NUM_DECIMAL_COMMA | NUM_AND_UNITS | NUM_OMIT_1_HUNDRED | NUM_OMIT_1_THOUSAND | NUM_ROMAN | NUM_ROMAN_AFTER;
  496. tr->langopts.numbers2 = NUM2_MULTIPLE_ORDINAL;
  497. if(name2 == L('c','a'))
  498. {
  499. tr->punct_within_word = ca_punct_within_word;
  500. tr->langopts.stress_flags = 0x200 | 0x6 | 0x30; // stress last syllable unless word ends with a vowel
  501. }
  502. else
  503. if(name2 == L_pap)
  504. {
  505. tr->langopts.stress_flags = 0x100 | 0x6 | 0x30; // stress last syllable unless word ends with a vowel
  506. }
  507. else
  508. {
  509. tr->langopts.param[LOPT_UNPRONOUNCABLE] = 2; // use es_rules for unpronouncable rules
  510. }
  511. }
  512. break;
  513. case L('e','u'): // basque
  514. {
  515. static const short stress_lengths_eu[8] = {200, 200, 200, 200, 0, 0, 210, 230}; // very weak stress
  516. static const unsigned char stress_amps_eu[8] = {16,16, 18,18, 18,18, 18,18 };
  517. SetupTranslator(tr,stress_lengths_eu,stress_amps_eu);
  518. tr->langopts.stress_rule = STRESSPOSN_2L; // ?? second syllable ??
  519. tr->langopts.numbers = NUM_SINGLE_STRESS | NUM_DECIMAL_COMMA | NUM_AND_UNITS | NUM_HUNDRED_AND | NUM_OMIT_1_HUNDRED | NUM_VIGESIMAL;
  520. }
  521. break;
  522. case L('f','a'): // Farsi
  523. {
  524. tr->letter_bits_offset = OFFSET_ARABIC;
  525. tr->langopts.numbers = NUM_AND_UNITS | NUM_HUNDRED_AND;
  526. tr->langopts.param[LOPT_UNPRONOUNCABLE] = 1; // disable check for unpronouncable words
  527. }
  528. break;
  529. case L('e','t'): // Estonian
  530. tr->charset_a0 = charsets[4]; // ISO-8859-4
  531. // drop through to Finnish
  532. case L('f','i'): // Finnish
  533. {
  534. static const unsigned char stress_amps_fi[8] = {18,16, 22,22, 20,22, 22,22 };
  535. static const short stress_lengths_fi[8] = {150,180, 200,200, 0,0, 210,250};
  536. SetupTranslator(tr,stress_lengths_fi,stress_amps_fi);
  537. tr->langopts.stress_rule = STRESSPOSN_1L;
  538. tr->langopts.stress_flags = 0x56; // move secondary stress from light to a following heavy syllable
  539. tr->langopts.param[LOPT_IT_DOUBLING] = 1;
  540. tr->langopts.long_stop = 130;
  541. tr->langopts.numbers = NUM_DECIMAL_COMMA + NUM_ALLOW_SPACE;
  542. SetLetterVowel(tr,'y');
  543. // tr->langopts.max_initial_consonants = 2; // BUT foreign words may have 3
  544. tr->langopts.spelling_stress = 1;
  545. tr->langopts.intonation_group = 3; // less intonation, don't raise pitch at comma
  546. }
  547. break;
  548. case L('f','r'): // french
  549. {
  550. SetupTranslator(tr,stress_lengths_fr,stress_amps_fr);
  551. tr->langopts.stress_rule = STRESSPOSN_1R; // stress on final syllable
  552. tr->langopts.stress_flags = 0x0024; // don't use secondary stress
  553. tr->langopts.param[LOPT_IT_LENGTHEN] = 1; // remove lengthen indicator from unstressed syllables
  554. tr->langopts.length_mods0 = tr->langopts.length_mods; // don't lengthen vowels in the last syllable
  555. tr->langopts.accents = 2; // Say "Capital" after the letter.
  556. tr->langopts.numbers = NUM_SINGLE_STRESS | NUM_DECIMAL_COMMA | NUM_ALLOW_SPACE | NUM_OMIT_1_HUNDRED | NUM_NOPAUSE | NUM_ROMAN | NUM_ROMAN_CAPITALS | NUM_ROMAN_AFTER | NUM_VIGESIMAL | NUM_DFRACTION_4;
  557. SetLetterVowel(tr,'y');
  558. }
  559. break;
  560. case L('h','i'): // Hindi
  561. case L('n','e'): // Nepali
  562. case L('p','a'): // Punjabi
  563. {
  564. static const short stress_lengths_hi[8] = {190, 190, 210, 210, 0, 0, 230, 250};
  565. static const unsigned char stress_amps_hi[8] = {17,14, 20,19, 20,22, 22,21 };
  566. SetupTranslator(tr,stress_lengths_hi,stress_amps_hi);
  567. tr->charset_a0 = charsets[19]; // ISCII
  568. tr->langopts.length_mods0 = tr->langopts.length_mods; // don't lengthen vowels in the last syllable
  569. tr->langopts.stress_rule = 6; // stress on last heaviest syllable, excluding final syllable
  570. tr->langopts.stress_flags = 0x10004; // use 'diminished' for unstressed final syllable
  571. tr->langopts.numbers = NUM_SWAP_TENS;
  572. tr->langopts.break_numbers = 0x14aa8; // for languages which have numbers for 100,000 and 100,00,000, eg Hindi
  573. tr->letter_bits_offset = OFFSET_DEVANAGARI;
  574. if(name2 == L('p','a'))
  575. {
  576. tr->letter_bits_offset = OFFSET_GURMUKHI;
  577. }
  578. SetIndicLetters(tr);
  579. }
  580. break;
  581. case L('h','r'): // Croatian
  582. case L('b','s'): // Bosnian
  583. case L('s','r'): // Serbian
  584. {
  585. static const unsigned char stress_amps_hr[8] = {17,17, 20,20, 20,22, 22,21 };
  586. static const short stress_lengths_hr[8] = {180,160, 200,200, 0,0, 220,230};
  587. static const short stress_lengths_sr[8] = {160,150, 200,200, 0,0, 250,260};
  588. if(name2 == L('s','r'))
  589. SetupTranslator(tr,stress_lengths_sr,stress_amps_hr);
  590. else
  591. SetupTranslator(tr,stress_lengths_hr,stress_amps_hr);
  592. tr->charset_a0 = charsets[2]; // ISO-8859-2
  593. tr->langopts.stress_rule = STRESSPOSN_1L;
  594. tr->langopts.stress_flags = 0x10;
  595. tr->langopts.param[LOPT_REGRESSIVE_VOICING] = 0x3;
  596. tr->langopts.max_initial_consonants = 5;
  597. tr->langopts.spelling_stress = 1;
  598. tr->langopts.accents = 1;
  599. tr->langopts.numbers = NUM_SINGLE_STRESS | NUM_HUNDRED_AND | NUM_OMIT_1_HUNDRED | NUM_DECIMAL_COMMA | NUM_THOUS_SPACE | NUM_DFRACTION_2 | NUM_ROMAN_CAPITALS;
  600. tr->langopts.numbers2 = 0x4a; // variant numbers before thousands,milliards
  601. tr->langopts.replace_chars = replace_cyrillic_latin;
  602. SetLetterVowel(tr,'y');
  603. SetLetterVowel(tr,'r');
  604. }
  605. break;
  606. case L('h','t'): // Haitian Creole
  607. // memcpy(tr->stress_lengths,stress_lengths_fr,sizeof(tr->stress_lengths));
  608. tr->langopts.stress_rule = STRESSPOSN_1R; // stress on final syllable
  609. tr->langopts.stress_flags = 0x0024; // don't use secondary stress
  610. tr->langopts.numbers = NUM_SINGLE_STRESS | NUM_OMIT_1_HUNDRED | NUM_NOPAUSE | NUM_ROMAN | NUM_VIGESIMAL | NUM_DFRACTION_4;
  611. break;
  612. case L('h','u'): // Hungarian
  613. {
  614. static const unsigned char stress_amps_hu[8] = {17,17, 19,19, 20,22, 22,21 };
  615. static const short stress_lengths_hu[8] = {185,195, 195,190, 0,0, 210,220};
  616. SetupTranslator(tr,stress_lengths_hu,stress_amps_hu);
  617. tr->charset_a0 = charsets[2]; // ISO-8859-2
  618. tr->langopts.vowel_pause = 0x20;
  619. tr->langopts.stress_rule = STRESSPOSN_1L;
  620. tr->langopts.stress_flags = 0x8036 | S_HYPEN_UNSTRESS;
  621. tr->langopts.unstressed_wd1 = 2;
  622. tr->langopts.param[LOPT_IT_DOUBLING] = 1;
  623. tr->langopts.param[LOPT_ANNOUNCE_PUNCT] = 2; // don't break clause before announcing . ? !
  624. tr->langopts.numbers = NUM_DFRACTION_5 | NUM_ALLOW_SPACE | NUM_ROMAN | NUM_ROMAN_ORDINAL | NUM_ROMAN_CAPITALS | NUM_ORDINAL_DOT | NUM_OMIT_1_HUNDRED | NUM_OMIT_1_THOUSAND;
  625. tr->langopts.thousands_sep = ' '; // don't allow dot as thousands separator
  626. tr->langopts.decimal_sep = ',';
  627. tr->langopts.max_roman = 899;
  628. tr->langopts.min_roman = 1;
  629. SetLetterVowel(tr,'y');
  630. tr->langopts.spelling_stress = 1;
  631. SetLengthMods(tr,3); // all equal
  632. }
  633. break;
  634. case L('h','y'): // Armenian
  635. {
  636. static const short stress_lengths_hy[8] = {250, 200, 250, 250, 0, 0, 250, 250};
  637. static const char hy_vowels[] = {0x31, 0x35, 0x37, 0x38, 0x3b, 0x48, 0x55, 0};
  638. static const char hy_consonants[] = {0x32,0x33,0x34,0x36,0x39,0x3a,0x3c,0x3d,0x3e,0x3f,
  639. 0x40,0x41,0x42,0x43,0x44,0x45,0x46,0x47,0x49,0x4a,0x4b,0x4c,0x4d,0x4e,0x4f,0x50,0x51,0x52,0x53,0x54,0x56,0};
  640. SetupTranslator(tr,stress_lengths_hy,NULL);
  641. tr->langopts.stress_rule = STRESSPOSN_1R; // default stress on final syllable
  642. tr->letter_bits_offset = OFFSET_ARMENIAN;
  643. memset(tr->letter_bits,0,sizeof(tr->letter_bits));
  644. SetLetterBits(tr,LETTERGP_A,hy_vowels);
  645. SetLetterBits(tr,LETTERGP_VOWEL2,hy_vowels);
  646. SetLetterBits(tr,LETTERGP_C,hy_consonants);
  647. tr->langopts.max_initial_consonants = 6;
  648. tr->langopts.numbers = NUM_DECIMAL_COMMA | NUM_OMIT_1_HUNDRED;
  649. // tr->langopts.param[LOPT_UNPRONOUNCABLE] = 1; // disable check for unpronouncable words
  650. }
  651. break;
  652. case L('i','d'): // Indonesian
  653. {
  654. static const short stress_lengths_id[8] = {160, 200, 180, 180, 0, 0, 220, 240};
  655. static const unsigned char stress_amps_id[8] = {16,18, 18,18, 20,22, 22,21 };
  656. SetupTranslator(tr,stress_lengths_id,stress_amps_id);
  657. tr->langopts.stress_rule = STRESSPOSN_2R;
  658. tr->langopts.numbers = NUM_DECIMAL_COMMA | NUM_ALLOW_SPACE | NUM_ROMAN;
  659. tr->langopts.stress_flags = 0x6 | 0x10;
  660. tr->langopts.accents = 2; // "capital" after letter name
  661. }
  662. break;
  663. case L('i','s'): // Icelandic
  664. {
  665. static const short stress_lengths_is[8] = {180,160, 200,200, 0,0, 240,250};
  666. static const wchar_t is_lettergroup_B[] = {'c','f','h','k','p','t','x',0xfe,0}; // voiceless conants, including 'þ' ?? 's'
  667. SetupTranslator(tr,stress_lengths_is,NULL);
  668. tr->langopts.stress_rule = STRESSPOSN_1L;
  669. tr->langopts.stress_flags = 0x10;
  670. tr->langopts.param[LOPT_IT_LENGTHEN] = 0x11; // remove lengthen indicator from unstressed vowels
  671. tr->langopts.param[LOPT_REDUCE] = 2;
  672. ResetLetterBits(tr,0x18);
  673. SetLetterBits(tr,4,"kpst"); // Letter group F
  674. SetLetterBits(tr,3,"jvr"); // Letter group H
  675. tr->letter_groups[1] = is_lettergroup_B;
  676. SetLetterVowel(tr,'y');
  677. tr->langopts.numbers = NUM_DECIMAL_COMMA | NUM_SINGLE_AND | NUM_HUNDRED_AND | NUM_AND_UNITS | NUM_1900;
  678. tr->langopts.numbers2 = 0x2;
  679. }
  680. break;
  681. case L('i','t'): // Italian
  682. {
  683. static const short stress_lengths_it[8] = {150, 140, 170, 170, 0, 0, 300, 330};
  684. static const unsigned char stress_amps_it[8] = {15,14, 19,19, 20,22, 22,20 };
  685. SetupTranslator(tr,stress_lengths_it,stress_amps_it);
  686. tr->langopts.length_mods0 = tr->langopts.length_mods; // don't lengthen vowels in the last syllable
  687. tr->langopts.stress_rule = STRESSPOSN_2R;
  688. tr->langopts.stress_flags = 0x10 | 0x20000;
  689. tr->langopts.vowel_pause = 1;
  690. tr->langopts.unstressed_wd1 = 2;
  691. tr->langopts.unstressed_wd2 = 2;
  692. tr->langopts.param[LOPT_IT_LENGTHEN] = 2; // remove lengthen indicator from unstressed or non-penultimate syllables
  693. tr->langopts.param[LOPT_IT_DOUBLING] = 2; // double the first consonant if the previous word ends in a stressed vowel
  694. tr->langopts.param[LOPT_SONORANT_MIN] = 130; // limit the shortening of sonorants before short vowels
  695. tr->langopts.param[LOPT_REDUCE] = 1; // reduce vowels even if phonemes are specified in it_list
  696. tr->langopts.param[LOPT_ALT] = 2; // call ApplySpecialAttributes2() if a word has $alt or $alt2
  697. tr->langopts.numbers = NUM_SINGLE_VOWEL | NUM_OMIT_1_HUNDRED |NUM_DECIMAL_COMMA | NUM_ROMAN | NUM_DFRACTION_1;
  698. tr->langopts.accents = 2; // Say "Capital" after the letter.
  699. SetLetterVowel(tr,'y');
  700. }
  701. break;
  702. case L_jbo: // Lojban
  703. {
  704. static const short stress_lengths_jbo[8] = {145,145, 170,160, 0,0, 330,350};
  705. static const wchar_t jbo_punct_within_word[] = {'.',',','\'',0x2c8,0}; // allow period and comma within a word, also stress marker (from LOPT_CAPS_IN_WORD)
  706. SetupTranslator(tr,stress_lengths_jbo,NULL);
  707. tr->langopts.stress_rule = STRESSPOSN_2R;
  708. tr->langopts.vowel_pause = 0x20c; // pause before a word which starts with a vowel, or after a word which ends in a consonant
  709. // tr->langopts.word_gap = 1;
  710. tr->punct_within_word = jbo_punct_within_word;
  711. tr->langopts.param[LOPT_CAPS_IN_WORD] = 2; // capitals indicate stressed syllables
  712. SetLetterVowel(tr,'y');
  713. tr->langopts.max_lengthmod = 368;
  714. }
  715. break;
  716. case L('k','a'): // Georgian
  717. {
  718. // character codes offset by 0x1080
  719. static const char ka_vowels[] = {0x50,0x54,0x58,0x5d,0x63,0x75,0x77,0};
  720. static const char ka_consonants[] = {0x51,0x52,0x53,0x55,0x56,0x57,0x59,0x5a,0x5b,0x5c,0x5e,0x5f,0x60,0x61,0x62,0x64,0x65,0x66,0x67,0x68,0x69,0x6a,0x6b,0x6c,0x6d,0x6e,0x6f,0x70,0x71,0x72,0x73,0x74,0x76,0};
  721. SetupTranslator(tr,stress_lengths_ta,stress_amps_ta);
  722. memset(tr->letter_bits,0,sizeof(tr->letter_bits));
  723. SetLetterBits(tr,LETTERGP_A,ka_vowels);
  724. SetLetterBits(tr,LETTERGP_C,ka_consonants);
  725. SetLetterBits(tr,LETTERGP_VOWEL2,ka_vowels);
  726. tr->langopts.stress_rule = STRESSPOSN_1L;
  727. tr->langopts.stress_flags = S_FINAL_NO_2;
  728. tr->letter_bits_offset = OFFSET_GEORGIAN;
  729. // tr->langopts.param[LOPT_UNPRONOUNCABLE] = 1; // disable check for unpronouncable words
  730. tr->langopts.max_initial_consonants = 7;
  731. tr->langopts.numbers = NUM_VIGESIMAL | NUM_AND_UNITS | NUM_OMIT_1_HUNDRED |NUM_OMIT_1_THOUSAND | NUM_DFRACTION_5;
  732. }
  733. break;
  734. case L('k','o'): // Korean, TEST
  735. {
  736. static const char ko_ivowels[] = {0x63,0x64,0x67,0x68,0x6d,0x72,0x74,0x75,0}; // y and i vowels
  737. static const unsigned char ko_voiced[] = {0x02,0x05,0x06,0xab,0xaf,0xb7,0xbc,0}; // voiced consonants, l,m,n,N
  738. tr->letter_bits_offset = OFFSET_KOREAN;
  739. memset(tr->letter_bits,0,sizeof(tr->letter_bits));
  740. SetLetterBitsRange(tr,LETTERGP_A,0x61,0x75);
  741. SetLetterBits(tr,LETTERGP_Y,ko_ivowels);
  742. SetLetterBits(tr,LETTERGP_G,(const char *)ko_voiced);
  743. tr->langopts.stress_rule = 8; // ?? 1st syllable if it is heavy, else 2nd syllable
  744. tr->langopts.param[LOPT_UNPRONOUNCABLE] = 1; // disable check for unpronouncable words
  745. tr->langopts.numbers = NUM_OMIT_1_HUNDRED;
  746. }
  747. break;
  748. case L('k','u'): // Kurdish
  749. {
  750. static const unsigned char stress_amps_ku[8] = {18,18, 20,20, 20,22, 22,21 };
  751. static const short stress_lengths_ku[8] = {180,180, 190,180, 0,0, 230,240};
  752. SetupTranslator(tr,stress_lengths_ku,stress_amps_ku);
  753. tr->charset_a0 = charsets[9]; // ISO-8859-9 - Latin5
  754. tr->langopts.stress_rule = 7; // stress on the last syllable, before any explicitly unstressed syllable
  755. tr->langopts.numbers = NUM_HUNDRED_AND | NUM_AND_UNITS | NUM_OMIT_1_HUNDRED | NUM_AND_HUNDRED;
  756. tr->langopts.max_initial_consonants = 2;
  757. }
  758. break;
  759. case L('l','a'): //Latin
  760. {
  761. tr->charset_a0 = charsets[4]; // ISO-8859-4, includes a,e,i,o,u-macron
  762. tr->langopts.stress_rule = STRESSPOSN_2R;
  763. tr->langopts.stress_flags = 0x20;
  764. tr->langopts.unstressed_wd1 = 0;
  765. tr->langopts.unstressed_wd2 = 2;
  766. tr->langopts.param[LOPT_DIERESES] = 1;
  767. tr->langopts.numbers = NUM_ROMAN;
  768. tr->langopts.max_roman = 5000;
  769. }
  770. break;
  771. case L('l','v'): // latvian
  772. {
  773. static const unsigned char stress_amps_lv[8] = {17,13, 20,20, 20,22, 22,21 };
  774. static const short stress_lengths_lv[8] = {180,130, 210,210, 0,0, 210,210};
  775. SetupTranslator(tr,stress_lengths_lv,stress_amps_lv);
  776. tr->langopts.stress_rule = STRESSPOSN_1L;
  777. tr->langopts.spelling_stress = 1;
  778. tr->charset_a0 = charsets[4]; // ISO-8859-4
  779. tr->langopts.numbers = NUM_DECIMAL_COMMA | NUM_OMIT_1_HUNDRED | NUM_DFRACTION_4 | NUM_ORDINAL_DOT;
  780. tr->langopts.stress_flags = 0x16 + 0x40000;
  781. }
  782. break;
  783. case L('m','k'): // Macedonian
  784. {
  785. static wchar_t vowels_cyrillic[] = {0x440, // also include 'р' [R]
  786. 0x430,0x435,0x438,0x439,0x43e,0x443,0x44b,0x44d,0x44e,0x44f,0x450,0x451,0x456,0x457,0x45d,0x45e,0};
  787. static const unsigned char stress_amps_mk[8] = {17,17, 20,20, 20,22, 22,21 };
  788. static const short stress_lengths_mk[8] = {180,160, 200,200, 0,0, 220,230};
  789. SetupTranslator(tr,stress_lengths_mk,stress_amps_mk);
  790. tr->charset_a0 = charsets[5]; // ISO-8859-5
  791. tr->letter_groups[0] = tr->letter_groups[7] = vowels_cyrillic;
  792. tr->langopts.stress_rule = STRESSPOSN_3R; // antipenultimate
  793. tr->langopts.numbers = NUM_DECIMAL_COMMA | NUM_AND_UNITS | NUM_OMIT_1_HUNDRED | NUM_OMIT_1_THOUSAND | NUM_DFRACTION_2;
  794. tr->langopts.numbers2 = 0x8a; // variant numbers before thousands,milliards
  795. }
  796. break;
  797. case L('m','t'): // Maltese
  798. {
  799. tr->charset_a0 = charsets[3]; // ISO-8859-3
  800. tr->langopts.param[LOPT_REGRESSIVE_VOICING] = 0x100; // devoice at end of word
  801. tr->langopts.stress_rule = STRESSPOSN_2R; // penultimate
  802. tr->langopts.numbers = 1;
  803. }
  804. break;
  805. case L('n','l'): // Dutch
  806. {
  807. static const short stress_lengths_nl[8] = {160,135, 210,210, 0, 0, 260,280};
  808. tr->langopts.stress_rule = STRESSPOSN_1L;
  809. tr->langopts.vowel_pause = 0x30; // ??
  810. tr->langopts.param[LOPT_DIERESES] = 1;
  811. tr->langopts.param[LOPT_PREFIXES] = 1;
  812. tr->langopts.param[LOPT_REGRESSIVE_VOICING] = 0x100; // devoice at end of word
  813. SetLetterVowel(tr,'y');
  814. tr->langopts.numbers = NUM_DECIMAL_COMMA | NUM_SWAP_TENS | NUM_OMIT_1_HUNDRED | NUM_OMIT_1_THOUSAND | NUM_ALLOW_SPACE | NUM_1900 | NUM_ORDINAL_DOT;
  815. tr->langopts.ordinal_indicator = "e";
  816. tr->langopts.stress_flags = S_FIRST_PRIMARY;
  817. memcpy(tr->stress_lengths,stress_lengths_nl,sizeof(tr->stress_lengths));
  818. }
  819. break;
  820. case L('n','o'): // Norwegian
  821. {
  822. static const short stress_lengths_no[8] = {160,140, 200,200, 0,0, 220,230};
  823. SetupTranslator(tr,stress_lengths_no,NULL);
  824. tr->langopts.stress_rule = STRESSPOSN_1L;
  825. SetLetterVowel(tr,'y');
  826. tr->langopts.numbers = NUM_DECIMAL_COMMA | NUM_HUNDRED_AND | NUM_ALLOW_SPACE | NUM_1900 | NUM_ORDINAL_DOT;
  827. }
  828. break;
  829. case L('o','m'):
  830. {
  831. static const unsigned char stress_amps_om[] = {18,15, 20,20, 20,22, 22,22 };
  832. static const short stress_lengths_om[8] = {200,200, 200,200, 0,0, 200,200};
  833. SetupTranslator(tr,stress_lengths_om,stress_amps_om);
  834. tr->langopts.stress_rule = STRESSPOSN_2R;
  835. tr->langopts.stress_flags = 0x16 + 0x80000;
  836. }
  837. break;
  838. case L('p','l'): // Polish
  839. {
  840. static const short stress_lengths_pl[8] = {160, 190, 175, 175, 0, 0, 200, 210};
  841. static const unsigned char stress_amps_pl[8] = {17,13, 19,19, 20,22, 22,21 }; // 'diminished' is used to mark a quieter, final unstressed syllable
  842. SetupTranslator(tr,stress_lengths_pl,stress_amps_pl);
  843. tr->charset_a0 = charsets[2]; // ISO-8859-2
  844. tr->langopts.stress_rule = STRESSPOSN_2R;
  845. tr->langopts.stress_flags = 0x6; // mark unstressed final syllables as diminished
  846. tr->langopts.param[LOPT_REGRESSIVE_VOICING] = 0x9;
  847. tr->langopts.max_initial_consonants = 7; // for example: wchrzczony :)
  848. tr->langopts.numbers = NUM_DECIMAL_COMMA | NUM_ALLOW_SPACE | NUM_DFRACTION_2;
  849. tr->langopts.numbers2 = 0x40;
  850. tr->langopts.param[LOPT_COMBINE_WORDS] = 4 + 0x100; // combine 'nie' (marked with $alt2) with some 1-syllable (and 2-syllable) words (marked with $alt)
  851. SetLetterVowel(tr,'y');
  852. }
  853. break;
  854. case L('p','t'): // Portuguese
  855. {
  856. static const short stress_lengths_pt[8] = {170, 115, 210, 240, 0, 0, 260, 280};
  857. static const unsigned char stress_amps_pt[8] = {16,11, 19,21, 20,22, 22,21 }; // 'diminished' is used to mark a quieter, final unstressed syllable
  858. SetupTranslator(tr,stress_lengths_pt,stress_amps_pt);
  859. tr->langopts.length_mods0 = tr->langopts.length_mods; // don't lengthen vowels in the last syllable
  860. tr->langopts.stress_rule = STRESSPOSN_1R; // stress on final syllable
  861. tr->langopts.stress_flags = 0x6 | 0x10 | 0x2000 | 0x20000;
  862. tr->langopts.numbers = NUM_DECIMAL_COMMA | NUM_DFRACTION_2 | NUM_HUNDRED_AND | NUM_AND_UNITS | NUM_ROMAN;
  863. SetLetterVowel(tr,'y');
  864. ResetLetterBits(tr,0x2);
  865. SetLetterBits(tr,1,"bcdfgjkmnpqstvxz"); // B hard consonants, excluding h,l,r,w,y
  866. tr->langopts.param[LOPT_ALT] = 2; // call ApplySpecialAttributes2() if a word has $alt or $alt2
  867. }
  868. break;
  869. case L('r','o'): // Romanian
  870. {
  871. static const short stress_lengths_ro[8] = {170, 170, 180, 180, 0, 0, 240, 260};
  872. static const unsigned char stress_amps_ro[8] = {15,13, 18,18, 20,22, 22,21 };
  873. SetupTranslator(tr,stress_lengths_ro,stress_amps_ro);
  874. tr->langopts.stress_rule = STRESSPOSN_2R;
  875. tr->langopts.stress_flags = 0x100 + 0x6;
  876. tr->charset_a0 = charsets[2]; // ISO-8859-2
  877. tr->langopts.numbers = NUM_DECIMAL_COMMA | NUM_ALLOW_SPACE | NUM_DFRACTION_3 | NUM_AND_UNITS | NUM_ROMAN;
  878. tr->langopts.numbers2 = 0x1e; // variant numbers before all thousandplex
  879. }
  880. break;
  881. case L('r','u'): // Russian
  882. Translator_Russian(tr);
  883. break;
  884. case L('r','w'): // Kiryarwanda
  885. {
  886. tr->langopts.stress_rule = STRESSPOSN_2R;
  887. tr->langopts.stress_flags = 0x16;
  888. tr->langopts.length_mods0 = tr->langopts.length_mods; // don't lengthen vowels in the last syllable
  889. tr->langopts.numbers = NUM_HUNDRED_AND | NUM_AND_UNITS | NUM_DFRACTION_2 | NUM_AND_HUNDRED;
  890. tr->langopts.numbers2 = 0x200; // say "thousands" before its number
  891. }
  892. break;
  893. case L('s','k'): // Slovak
  894. case L('c','s'): // Czech
  895. {
  896. static const char *sk_voiced = "bdgjlmnrvwzaeiouy";
  897. SetupTranslator(tr,stress_lengths_sk,stress_amps_sk);
  898. tr->charset_a0 = charsets[2]; // ISO-8859-2
  899. tr->langopts.stress_rule = STRESSPOSN_1L;
  900. tr->langopts.stress_flags = 0x16;
  901. tr->langopts.param[LOPT_REGRESSIVE_VOICING] = 0x3;
  902. tr->langopts.max_initial_consonants = 5;
  903. tr->langopts.spelling_stress = 1;
  904. tr->langopts.param[LOPT_COMBINE_WORDS] = 4; // combine some prepositions with the following word
  905. tr->langopts.numbers = NUM_OMIT_1_HUNDRED | NUM_DFRACTION_2 | NUM_ROMAN;
  906. tr->langopts.numbers2 = 0x100;
  907. tr->langopts.thousands_sep = STRESSPOSN_1L; //no thousands separator
  908. tr->langopts.decimal_sep = ',';
  909. if(name2 == L('c','s'))
  910. {
  911. tr->langopts.numbers2 = 0x108; // variant numbers before milliards
  912. }
  913. SetLetterVowel(tr,'y');
  914. SetLetterVowel(tr,'r');
  915. ResetLetterBits(tr,0x20);
  916. SetLetterBits(tr,5,sk_voiced);
  917. }
  918. break;
  919. case L('s','i'): // Sinhala
  920. {
  921. SetupTranslator(tr,stress_lengths_ta,stress_amps_ta);
  922. tr->langopts.length_mods0 = tr->langopts.length_mods; // don't lengthen vowels in the last syllable
  923. tr->langopts.stress_rule = STRESSPOSN_1L;
  924. tr->langopts.stress_flags = S_FINAL_DIM | S_NO_AUTO_DIM | S_FINAL_NO_2;
  925. tr->langopts.spelling_stress = 1;
  926. tr->letter_bits_offset = OFFSET_SINHALA;
  927. memset(tr->letter_bits,0,sizeof(tr->letter_bits));
  928. SetLetterBitsRange(tr,LETTERGP_A,0x05,0x16); // vowel letters
  929. SetLetterBitsRange(tr,LETTERGP_A,0x4a,0x73); // + vowel signs, and virama
  930. SetLetterBitsRange(tr,LETTERGP_B,0x4a,0x73); // vowel signs, and virama
  931. SetLetterBitsRange(tr,LETTERGP_C,0x1a,0x46); // the main consonant range
  932. tr->langopts.param[LOPT_UNPRONOUNCABLE] = 1; // disable check for unpronouncable words
  933. tr->langopts.suffix_add_e = tr->letter_bits_offset + 0x4a; //virama
  934. tr->langopts.numbers = NUM_OMIT_1_THOUSAND ;
  935. }
  936. break;
  937. case L('s','l'): // Slovenian
  938. tr->charset_a0 = charsets[2]; // ISO-8859-2
  939. tr->langopts.stress_rule = STRESSPOSN_2R; // Temporary
  940. tr->langopts.stress_flags = 0x20;
  941. tr->langopts.param[LOPT_REGRESSIVE_VOICING] = 0x103;
  942. tr->langopts.numbers = NUM_DECIMAL_COMMA | NUM_ALLOW_SPACE | NUM_SWAP_TENS | NUM_OMIT_1_HUNDRED | NUM_DFRACTION_2 | NUM_ORDINAL_DOT | NUM_ROMAN;
  943. tr->langopts.numbers2 = 0x100; // plural forms of millions etc
  944. tr->langopts.thousands_sep = ' '; // don't allow dot as thousands separator
  945. SetLetterVowel(tr,'r');
  946. break;
  947. case L('s','q'): // Albanian
  948. {
  949. static const short stress_lengths_sq[8] = {150, 150, 180, 180, 0, 0, 300, 300};
  950. static const unsigned char stress_amps_sq[8] = {16,12, 16,16, 20,20, 21,19 };
  951. SetupTranslator(tr,stress_lengths_sq,stress_amps_sq);
  952. tr->langopts.stress_rule = STRESSPOSN_2R;
  953. tr->langopts.stress_flags = 0x16 + 0x100;
  954. SetLetterVowel(tr,'y');
  955. tr->langopts.numbers = NUM_DECIMAL_COMMA | NUM_HUNDRED_AND | NUM_AND_UNITS | NUM_DFRACTION_4;
  956. tr->langopts.accents = 2; // "capital" after letter name
  957. }
  958. break;
  959. case L('s','v'): // Swedish
  960. {
  961. static const unsigned char stress_amps_sv[] = {16,16, 20,20, 20,22, 22,21 };
  962. static const short stress_lengths_sv[8] = {160,135, 220,220, 0,0, 250,280};
  963. SetupTranslator(tr,stress_lengths_sv,stress_amps_sv);
  964. tr->langopts.stress_rule = STRESSPOSN_1L;
  965. SetLetterVowel(tr,'y');
  966. tr->langopts.numbers = NUM_SINGLE_STRESS | NUM_DECIMAL_COMMA | NUM_ALLOW_SPACE | NUM_1900;
  967. tr->langopts.accents = 1;
  968. }
  969. break;
  970. case L('s','w'): // Swahili
  971. case L('t','n'): // Setswana
  972. {
  973. static const short stress_lengths_sw[8] = {160, 170, 200, 200, 0, 0, 320, 340};
  974. static const unsigned char stress_amps_sw[] = {16,12, 19,19, 20,22, 22,21 };
  975. SetupTranslator(tr,stress_lengths_sw,stress_amps_sw);
  976. tr->langopts.length_mods0 = tr->langopts.length_mods; // don't lengthen vowels in the last syllable
  977. tr->langopts.vowel_pause = 1;
  978. tr->langopts.stress_rule = STRESSPOSN_2R;
  979. tr->langopts.stress_flags = 0x6 | 0x10;
  980. tr->langopts.numbers = NUM_AND_UNITS | NUM_HUNDRED_AND | NUM_SINGLE_AND | NUM_OMIT_1_HUNDRED;
  981. tr->langopts.break_numbers = 0x49249268; // for languages which have numbers for 100,000 and 1,000,000
  982. }
  983. break;
  984. case L('t','a'): // Tamil
  985. case L('m','l'): // Malayalam
  986. case L('k','n'): // Kannada
  987. case L('m','r'): // Marathi
  988. case L('t','e'): // Telugu
  989. {
  990. SetupTranslator(tr,stress_lengths_ta,stress_amps_ta);
  991. tr->langopts.length_mods0 = tr->langopts.length_mods; // don't lengthen vowels in the last syllable
  992. tr->langopts.stress_rule = STRESSPOSN_1L;
  993. tr->langopts.stress_flags = 0x10004; // use 'diminished' for unstressed final syllable
  994. tr->langopts.spelling_stress = 1;
  995. tr->langopts.break_numbers = 0x14a8; // 1000, 100,000 10,000,000
  996. if(name2 == L('t','a'))
  997. {
  998. tr->letter_bits_offset = OFFSET_TAMIL;
  999. tr->langopts.numbers = NUM_OMIT_1_THOUSAND ;
  1000. }
  1001. if(name2 == L('m','r'))
  1002. {
  1003. tr->letter_bits_offset = OFFSET_DEVANAGARI;
  1004. }
  1005. else
  1006. if(name2 == L('m','l'))
  1007. {
  1008. tr->letter_bits_offset = OFFSET_MALAYALAM;
  1009. tr->langopts.numbers = NUM_OMIT_1_THOUSAND;
  1010. }
  1011. else
  1012. if(name2 == L('k','n'))
  1013. {
  1014. tr->letter_bits_offset = OFFSET_KANNADA;
  1015. tr->langopts.numbers = 0x1;
  1016. }
  1017. else
  1018. if(name2 == L('t','e'))
  1019. {
  1020. tr->letter_bits_offset = OFFSET_TELUGU;
  1021. tr->langopts.numbers = 0x1;
  1022. }
  1023. tr->langopts.param[LOPT_WORD_MERGE] = 1; // don't break vowels betwen words
  1024. SetIndicLetters(tr); // call this after setting OFFSET_
  1025. SetLetterBitsRange(tr,LETTERGP_B,0x4e,0x4e); // chillu-virama (unofficial)
  1026. }
  1027. break;
  1028. #ifdef deleted
  1029. case L('t','h'): // Thai
  1030. {
  1031. static const short stress_lengths_th[8] = {230,150, 230,230, 230,0, 230,250};
  1032. static const unsigned char stress_amps_th[] = {22,16, 22,22, 22,22, 22,22 };
  1033. SetupTranslator(tr,stress_lengths_th,stress_amps_th);
  1034. tr->langopts.stress_rule = 0; // stress on final syllable of a "word"
  1035. tr->langopts.stress_flags = 2; // don't automatically set diminished stress (may be set in the intonation module)
  1036. tr->langopts.tone_language = 1; // Tone language, use CalcPitches_Tone() rather than CalcPitches()
  1037. tr->langopts.length_mods0 = tr->langopts.length_mods; // don't lengthen vowels in the last syllable
  1038. // tr->langopts.tone_numbers = 1; // a number after letters indicates a tone number (eg. pinyin or jyutping)
  1039. tr->langopts.word_gap = 0x21; // length of a final vowel is less dependent on the next consonant, don't merge consonant with next word
  1040. }
  1041. break;
  1042. #endif
  1043. case L('t','r'): // Turkish
  1044. case L('a','z'): // Azerbaijan
  1045. {
  1046. static const unsigned char stress_amps_tr[8] = {18,16, 20,21, 20,21, 21,20 };
  1047. static const short stress_lengths_tr[8] = {190,180, 200,230, 0,0, 240,250};
  1048. SetupTranslator(tr,stress_lengths_tr,stress_amps_tr);
  1049. tr->charset_a0 = charsets[9]; // ISO-8859-9 - Latin5
  1050. tr->langopts.stress_rule = 7; // stress on the last syllable, before any explicitly unstressed syllable
  1051. tr->langopts.stress_flags = 0x20; //no automatic secondary stress
  1052. tr->langopts.param[LOPT_SUFFIX] = 1;
  1053. if(name2 == L('a','z'))
  1054. {
  1055. tr->langopts.numbers = NUM_SINGLE_STRESS | NUM_DECIMAL_COMMA | NUM_ALLOW_SPACE | NUM_OMIT_1_HUNDRED | NUM_OMIT_1_THOUSAND | NUM_DFRACTION_2;
  1056. }
  1057. else
  1058. {
  1059. tr->langopts.numbers = NUM_SINGLE_STRESS | NUM_DECIMAL_COMMA | NUM_OMIT_1_HUNDRED | NUM_OMIT_1_THOUSAND | NUM_DFRACTION_2;
  1060. }
  1061. tr->langopts.max_initial_consonants = 2;
  1062. }
  1063. break;
  1064. case L('u','r'): // Urdu
  1065. tr->letter_bits_offset = OFFSET_ARABIC;
  1066. tr->langopts.param[LOPT_UNPRONOUNCABLE] = 1; // disable check for unpronouncable words
  1067. tr->langopts.numbers = NUM_SWAP_TENS;
  1068. tr->langopts.break_numbers = 0x52a8; // for languages which have numbers for 100,000 and 100,00,000, eg Hindi
  1069. break;
  1070. case L('v','i'): // Vietnamese
  1071. {
  1072. static const short stress_lengths_vi[8] = {150, 150, 180, 180, 210, 230, 230, 240};
  1073. static const unsigned char stress_amps_vi[] = {16,16, 16,16, 22,22, 22,22 };
  1074. static wchar_t vowels_vi[] = {
  1075. 0x61, 0xe0, 0xe1, 0x1ea3, 0xe3, 0x1ea1, // a
  1076. 0x103, 0x1eb1, 0x1eaf, 0x1eb3, 0x1eb5, 0x1eb7, // ă
  1077. 0xe2, 0x1ea7, 0x1ea5, 0x1ea9, 0x1eab, 0x1ead, // â
  1078. 0x65, 0xe8, 0xe9, 0x1ebb, 0x1ebd, 0x1eb9, // e
  1079. 0xea, 0x1ec1, 0x1ebf, 0x1ec3, 0x1ec5, 0x1ec7, // i
  1080. 0x69, 0xec, 0xed, 0x1ec9, 0x129, 0x1ecb, // i
  1081. 0x6f, 0xf2, 0xf3, 0x1ecf, 0xf5, 0x1ecd, // o
  1082. 0xf4, 0x1ed3, 0x1ed1, 0x1ed5, 0x1ed7, 0x1ed9, // ô
  1083. 0x1a1, 0x1edd, 0x1edb, 0x1edf, 0x1ee1, 0x1ee3, // ơ
  1084. 0x75, 0xf9, 0xfa, 0x1ee7, 0x169, 0x1ee5, // u
  1085. 0x1b0, 0x1eeb, 0x1ee9, 0x1eed, 0x1eef, 0x1ef1, // ư
  1086. 0x79, 0x1ef3, 0xfd, 0x1ef7, 0x1ef9, 0x1e, 0 }; // y
  1087. SetupTranslator(tr,stress_lengths_vi,stress_amps_vi);
  1088. tr->langopts.length_mods0 = tr->langopts.length_mods; // don't lengthen vowels in the last syllable
  1089. tr->langopts.stress_rule = STRESSPOSN_1L;
  1090. tr->langopts.word_gap = 0x21; // length of a final vowel is less dependent on the next consonant, don't merge consonant with next word
  1091. // tr->langopts.vowel_pause = 4;
  1092. tr->letter_groups[0] = tr->letter_groups[7] = vowels_vi;
  1093. tr->langopts.tone_language = 1; // Tone language, use CalcPitches_Tone() rather than CalcPitches()
  1094. tr->langopts.unstressed_wd1 = 2;
  1095. tr->langopts.numbers = NUM_DECIMAL_COMMA | NUM_HUNDRED_AND_DIGIT | NUM_DFRACTION_4 | NUM_ZERO_HUNDRED;
  1096. }
  1097. break;
  1098. case L('w','o'):
  1099. tr->langopts.stress_rule = STRESSPOSN_1L;
  1100. tr->langopts.numbers = NUM_AND_UNITS | NUM_HUNDRED_AND | NUM_OMIT_1_HUNDRED | NUM_OMIT_1_THOUSAND | NUM_SINGLE_STRESS;
  1101. break;
  1102. case L('z','h'):
  1103. case L_zhy:
  1104. {
  1105. static const short stress_lengths_zh[8] = {230,150, 230,230, 230,0, 240,250}; // 1=tone5. end-of-sentence, 6=tone 1&4, 7=tone 2&3
  1106. static const unsigned char stress_amps_zh[] = {22,16, 22,22, 22,22, 22,22 };
  1107. SetupTranslator(tr,stress_lengths_zh,stress_amps_zh);
  1108. tr->langopts.stress_rule = STRESSPOSN_1R; // stress on final syllable of a "word"
  1109. tr->langopts.stress_flags = 2; // don't automatically set diminished stress (may be set in the intonation module)
  1110. tr->langopts.vowel_pause = 0;
  1111. tr->langopts.tone_language = 1; // Tone language, use CalcPitches_Tone() rather than CalcPitches()
  1112. tr->langopts.length_mods0 = tr->langopts.length_mods; // don't lengthen vowels in the last syllable
  1113. tr->langopts.tone_numbers = 1; // a number after letters indicates a tone number (eg. pinyin or jyutping)
  1114. tr->langopts.ideographs = 1;
  1115. tr->langopts.word_gap = 0x21; // length of a final vowel is less dependent on the next consonant, don't merge consonant with next word
  1116. if(name2 == L('z','h'))
  1117. {
  1118. tr->langopts.textmode = 1;
  1119. tr->langopts.listx = 1; // compile zh_listx after zh_list
  1120. }
  1121. }
  1122. break;
  1123. default:
  1124. tr->langopts.param[LOPT_UNPRONOUNCABLE] = 1; // disable check for unpronouncable words
  1125. break;
  1126. }
  1127. tr->translator_name = name2;
  1128. if(tr->langopts.numbers & NUM_DECIMAL_COMMA)
  1129. {
  1130. // use . and ; for thousands and decimal separators
  1131. tr->langopts.thousands_sep = '.';
  1132. tr->langopts.decimal_sep = ',';
  1133. }
  1134. if(tr->langopts.numbers & NUM_THOUS_SPACE)
  1135. {
  1136. tr->langopts.thousands_sep = 0; // don't allow thousands separator, except space
  1137. }
  1138. return(tr);
  1139. } // end of SelectTranslator
  1140. //**********************************************************************************************************
  1141. static void Translator_Russian(Translator *tr)
  1142. {//===========================================
  1143. static const unsigned char stress_amps_ru[] = {16,16, 18,18, 20,24, 24,22 };
  1144. static const short stress_lengths_ru[8] = {150,140, 220,220, 0,0, 260,280};
  1145. static const char ru_ivowels2[] = {0x2c,0x15,0x18,0x2e,0x2f,0}; // add more vowels to letter group Y (iotated vowels & soft-sign)
  1146. SetupTranslator(tr,stress_lengths_ru,stress_amps_ru);
  1147. SetCyrillicLetters(tr);
  1148. SetLetterBits(tr,6,ru_ivowels2);
  1149. tr->langopts.param[LOPT_UNPRONOUNCABLE] = 0x432; // [v] don't count this character at start of word
  1150. tr->langopts.param[LOPT_REGRESSIVE_VOICING] = 1;
  1151. tr->langopts.param[LOPT_REDUCE] = 2;
  1152. tr->langopts.stress_rule = 5;
  1153. tr->langopts.stress_flags = 0x0020; // waas 0x1010
  1154. tr->langopts.numbers = NUM_DECIMAL_COMMA | NUM_OMIT_1_HUNDRED;
  1155. tr->langopts.numbers2 = 0xc2; // variant numbers before thousands
  1156. tr->langopts.phoneme_change = 1;
  1157. tr->langopts.testing = 2;
  1158. } // end of Translator_Russian
  1159. /*
  1160. typedef struct {
  1161. int flags;
  1162. unsigned char stress; // stress level of this vowel
  1163. unsigned char stress_highest; // the highest stress level of a vowel in this word
  1164. unsigned char n_vowels; // number of vowels in the word
  1165. unsigned char vowel_this; // syllable number of this vowel (counting from 1)
  1166. unsigned char vowel_stressed; // syllable number of the highest stressed vowel
  1167. } CHANGEPH;
  1168. */
  1169. #ifdef RUSSIAN2
  1170. // This is now done in the phoneme data, ph_russian
  1171. int ChangePhonemes_ru(Translator *tr, PHONEME_LIST2 *phlist, int n_ph, int index, PHONEME_TAB *ph, CHANGEPH *ch)
  1172. {//=============================================================================================================
  1173. // Called for each phoneme in the phoneme list, to allow a language to make changes
  1174. // ph The current phoneme
  1175. int variant;
  1176. int vowelix;
  1177. PHONEME_TAB *prev, *next;
  1178. if(ch->flags & 8)
  1179. return(0); // full phoneme translation has already been given
  1180. // Russian vowel softening and reduction rules
  1181. if(ph->type == phVOWEL)
  1182. {
  1183. int prestressed = ch->vowel_stressed==ch->vowel_this+1; // the next vowel after this has the main stress
  1184. #define N_VOWELS_RU 11
  1185. static unsigned int vowels_ru[N_VOWELS_RU] = {'a','V','O','I',PH('I','#'),PH('E','#'),PH('E','2'),
  1186. PH('V','#'),PH('I','3'),PH('I','2'),PH('E','3')};
  1187. static unsigned int vowel_replace[N_VOWELS_RU][6] = {
  1188. // stressed, soft, soft-stressed, j+stressed, j+soft, j+soft-stressed
  1189. /*0*/ {'A', 'I', PH('j','a'), 'a', 'a', 'a'}, // a Uses 3,4,5 columns.
  1190. /*1*/ {'A', 'V', PH('j','a'), 'a', 'V', 'a'}, // V Uses 3,4,5 columns.
  1191. /*2*/ {'o', '8', '8', 'o', '8', '8'}, // O
  1192. /*3*/ {'i', 'I', 'i', 'a', 'I', 'a'}, // I Uses 3,4,5 columns.
  1193. /*4*/ {'i', PH('I','#'), 'i', 'i', PH('I','#'), 'i'}, // I#
  1194. /*5*/ {'E', PH('E','#'), 'E', 'e', PH('E','#'), 'e'}, // E#
  1195. /*6*/ {'E', PH('E','2'), 'E', 'e', PH('E','2'), 'e'}, // E2 Uses 3,4,5 columns.
  1196. /*7*/ {PH('j','a'), 'V', PH('j','a'), 'A', 'V', 'A'}, // V#
  1197. /*8*/ {PH('j','a'), 'I', PH('j','a'), 'e', 'I', 'e'}, // I3 Uses 3,4,5 columns.
  1198. /*9*/ {'e', 'I', 'e', 'e', 'I', 'e'}, // I2
  1199. /*10*/ {'e', PH('E', '2'), 'e', 'e', PH('E','2'), 'e'} // E3
  1200. };
  1201. prev = phoneme_tab[phlist[index-1].phcode];
  1202. next = phoneme_tab[phlist[index+1].phcode];
  1203. // lookup the vowel name to get an index into the vowel_replace[] table
  1204. for(vowelix=0; vowelix<N_VOWELS_RU; vowelix++)
  1205. {
  1206. if(vowels_ru[vowelix] == ph->mnemonic)
  1207. break;
  1208. }
  1209. if(vowelix == N_VOWELS_RU)
  1210. return(0);
  1211. if(prestressed)
  1212. {
  1213. if((vowelix==6)&&(prev->mnemonic=='j'))
  1214. vowelix=8;
  1215. if(vowelix==1)
  1216. vowelix=0;
  1217. if(vowelix==4)
  1218. vowelix=3;
  1219. if(vowelix==6)
  1220. vowelix=5;
  1221. if(vowelix==7)
  1222. vowelix=8;
  1223. if(vowelix==10)
  1224. vowelix=9;
  1225. }
  1226. // do we need a variant of this vowel, depending on the stress and adjacent phonemes ?
  1227. variant = -1;
  1228. int stressed = ch->flags & 2;
  1229. int soft=prev->phflags & phPALATAL;
  1230. if (soft && stressed)
  1231. variant = 2; else
  1232. if (stressed)
  1233. variant = 0; else
  1234. if (soft)
  1235. variant = 1;
  1236. if(variant >= 0)
  1237. {
  1238. if(prev->mnemonic == 'j')
  1239. variant += 3;
  1240. phlist[index].phcode = PhonemeCode(vowel_replace[vowelix][variant]);
  1241. }
  1242. else
  1243. {
  1244. phlist[index].phcode = PhonemeCode(vowels_ru[vowelix]);
  1245. }
  1246. }
  1247. return(0);
  1248. }
  1249. #endif