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 70KB

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