liblouis-rb 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (517) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +520 -0
  3. data/README.md +100 -0
  4. data/Rakefile +80 -0
  5. data/ext/liblouis/braille_character.c +200 -0
  6. data/ext/liblouis/braille_table.c +198 -0
  7. data/ext/liblouis/braille_text.c +223 -0
  8. data/ext/liblouis/extconf.rb +73 -0
  9. data/ext/liblouis/liblouis.c +168 -0
  10. data/ext/liblouis/liblouis_ext.h +49 -0
  11. data/ext/liblouis/table_source.c +161 -0
  12. data/ext/liblouis/translation.c +443 -0
  13. data/liblouis-rb.gemspec +49 -0
  14. data/spec/liblouis_spec.rb +62 -0
  15. data/test/integration/packaging_test.rb +82 -0
  16. data/test/table_source_cases.rb +9 -0
  17. data/test/test_braille_character.rb +62 -0
  18. data/test/test_braille_table.rb +379 -0
  19. data/test/test_braille_text.rb +30 -0
  20. data/test/test_helper.rb +7 -0
  21. data/test/translation_cases.rb +33 -0
  22. data/vendor/liblouis/COPYING +674 -0
  23. data/vendor/liblouis/COPYING.LESSER +502 -0
  24. data/vendor/liblouis/configure.ac +290 -0
  25. data/vendor/liblouis/liblouis/commonTranslationFunctions.c +95 -0
  26. data/vendor/liblouis/liblouis/compileTranslationTable.c +5515 -0
  27. data/vendor/liblouis/liblouis/internal.h +781 -0
  28. data/vendor/liblouis/liblouis/liblouis.h.in +514 -0
  29. data/vendor/liblouis/liblouis/logging.c +233 -0
  30. data/vendor/liblouis/liblouis/lou_backTranslateString.c +1855 -0
  31. data/vendor/liblouis/liblouis/lou_translateString.c +4177 -0
  32. data/vendor/liblouis/liblouis/maketable.c +463 -0
  33. data/vendor/liblouis/liblouis/metadata.c +1258 -0
  34. data/vendor/liblouis/liblouis/pattern.c +1632 -0
  35. data/vendor/liblouis/liblouis/utils.c +448 -0
  36. data/vendor/liblouis/tables/Es-Es-G0.utb +248 -0
  37. data/vendor/liblouis/tables/IPA-unicode-range.uti +200 -0
  38. data/vendor/liblouis/tables/IPA.utb +164 -0
  39. data/vendor/liblouis/tables/Lv-Lv-g1.utb +509 -0
  40. data/vendor/liblouis/tables/Makefile.am +503 -0
  41. data/vendor/liblouis/tables/Pl-Pl-g1.utb +312 -0
  42. data/vendor/liblouis/tables/README +6 -0
  43. data/vendor/liblouis/tables/afr-za-g1.ctb +63 -0
  44. data/vendor/liblouis/tables/afr-za-g2.ctb +1050 -0
  45. data/vendor/liblouis/tables/akk-borger.utb +997 -0
  46. data/vendor/liblouis/tables/akk.utb +1002 -0
  47. data/vendor/liblouis/tables/ancient-languages-borger.utb +114 -0
  48. data/vendor/liblouis/tables/ancient-languages-us.utb +114 -0
  49. data/vendor/liblouis/tables/ar-ar-comp8.utb +293 -0
  50. data/vendor/liblouis/tables/ar-ar-g1-core.uti +291 -0
  51. data/vendor/liblouis/tables/ar-ar-g1.utb +26 -0
  52. data/vendor/liblouis/tables/ar-ar-g2.ctb +447 -0
  53. data/vendor/liblouis/tables/ar-ar-math.uti +501 -0
  54. data/vendor/liblouis/tables/ar.tbl +17 -0
  55. data/vendor/liblouis/tables/as-in-g1.utb +27 -0
  56. data/vendor/liblouis/tables/as.tbl +18 -0
  57. data/vendor/liblouis/tables/aw-in-g1.utb +27 -0
  58. data/vendor/liblouis/tables/awa.tbl +18 -0
  59. data/vendor/liblouis/tables/ba.utb +64 -0
  60. data/vendor/liblouis/tables/be-in-g1.utb +27 -0
  61. data/vendor/liblouis/tables/bel-comp.utb +42 -0
  62. data/vendor/liblouis/tables/bel-detailed.utb +32 -0
  63. data/vendor/liblouis/tables/bel.utb +61 -0
  64. data/vendor/liblouis/tables/bengali.cti +238 -0
  65. data/vendor/liblouis/tables/bg.ctb +215 -0
  66. data/vendor/liblouis/tables/bg.dis +84 -0
  67. data/vendor/liblouis/tables/bg.tbl +21 -0
  68. data/vendor/liblouis/tables/bg.utb +454 -0
  69. data/vendor/liblouis/tables/bh.ctb +24 -0
  70. data/vendor/liblouis/tables/bh.tbl +17 -0
  71. data/vendor/liblouis/tables/bn.tbl +18 -0
  72. data/vendor/liblouis/tables/bo.ctb +184 -0
  73. data/vendor/liblouis/tables/bo.tbl +21 -0
  74. data/vendor/liblouis/tables/boxes.ctb +162 -0
  75. data/vendor/liblouis/tables/br-in-g1.utb +27 -0
  76. data/vendor/liblouis/tables/bra.tbl +18 -0
  77. data/vendor/liblouis/tables/braille-patterns.cti +287 -0
  78. data/vendor/liblouis/tables/ca-chardefs.cti +225 -0
  79. data/vendor/liblouis/tables/ca-g1.ctb +46 -0
  80. data/vendor/liblouis/tables/ca.tbl +18 -0
  81. data/vendor/liblouis/tables/chr-us-g1.ctb +180 -0
  82. data/vendor/liblouis/tables/ckb-chardefs.cti +219 -0
  83. data/vendor/liblouis/tables/ckb-g1.ctb +31 -0
  84. data/vendor/liblouis/tables/ckb-translation.cti +131 -0
  85. data/vendor/liblouis/tables/ckb.tbl +18 -0
  86. data/vendor/liblouis/tables/compress.cti +44 -0
  87. data/vendor/liblouis/tables/controlchars.cti +27 -0
  88. data/vendor/liblouis/tables/cop-eg-comp8.utb +255 -0
  89. data/vendor/liblouis/tables/cop.utb +231 -0
  90. data/vendor/liblouis/tables/corrections.cti +47 -0
  91. data/vendor/liblouis/tables/countries.cti +263 -0
  92. data/vendor/liblouis/tables/critical-apparatus.uti +54 -0
  93. data/vendor/liblouis/tables/cs-chardefs.cti +385 -0
  94. data/vendor/liblouis/tables/cs-comp8.utb +405 -0
  95. data/vendor/liblouis/tables/cs-g1.ctb +37 -0
  96. data/vendor/liblouis/tables/cs-translation.cti +63 -0
  97. data/vendor/liblouis/tables/cs.tbl +20 -0
  98. data/vendor/liblouis/tables/cuneiform-transliterated-compact.utb +432 -0
  99. data/vendor/liblouis/tables/cuneiform-transliterated.utb +160 -0
  100. data/vendor/liblouis/tables/cy-cy-g1.utb +487 -0
  101. data/vendor/liblouis/tables/cy-cy-g2.ctb +199 -0
  102. data/vendor/liblouis/tables/cy.tbl +19 -0
  103. data/vendor/liblouis/tables/da-dk-6miscChars.cti +385 -0
  104. data/vendor/liblouis/tables/da-dk-6miscChars_1993.cti +412 -0
  105. data/vendor/liblouis/tables/da-dk-8miscChars.cti +90 -0
  106. data/vendor/liblouis/tables/da-dk-8miscChars_1993.cti +102 -0
  107. data/vendor/liblouis/tables/da-dk-g08.ctb +290 -0
  108. data/vendor/liblouis/tables/da-dk-g08_1993.ctb +331 -0
  109. data/vendor/liblouis/tables/da-dk-g16-lit_1993.ctb +294 -0
  110. data/vendor/liblouis/tables/da-dk-g16.ctb +289 -0
  111. data/vendor/liblouis/tables/da-dk-g16_1993.ctb +305 -0
  112. data/vendor/liblouis/tables/da-dk-g18.ctb +545 -0
  113. data/vendor/liblouis/tables/da-dk-g18_1993.ctb +563 -0
  114. data/vendor/liblouis/tables/da-dk-g2.dic +7439 -0
  115. data/vendor/liblouis/tables/da-dk-g26-lit_1993.ctb +898 -0
  116. data/vendor/liblouis/tables/da-dk-g26.ctb +1345 -0
  117. data/vendor/liblouis/tables/da-dk-g26_1993.ctb +1127 -0
  118. data/vendor/liblouis/tables/da-dk-g26l-lit_1993.ctb +588 -0
  119. data/vendor/liblouis/tables/da-dk-g26l_1993.ctb +604 -0
  120. data/vendor/liblouis/tables/da-dk-g28.ctb +2426 -0
  121. data/vendor/liblouis/tables/da-dk-g28_1993.ctb +2063 -0
  122. data/vendor/liblouis/tables/da-dk-g28l_1993.ctb +1594 -0
  123. data/vendor/liblouis/tables/da-dk-octobraille.dis +316 -0
  124. data/vendor/liblouis/tables/da-dk-octobraille_1993.dis +313 -0
  125. data/vendor/liblouis/tables/de-accents-detailed.cti +214 -0
  126. data/vendor/liblouis/tables/de-accents.cti +214 -0
  127. data/vendor/liblouis/tables/de-chardefs6.cti +289 -0
  128. data/vendor/liblouis/tables/de-chardefs8.cti +278 -0
  129. data/vendor/liblouis/tables/de-chess.ctb +37 -0
  130. data/vendor/liblouis/tables/de-comp6.utb +226 -0
  131. data/vendor/liblouis/tables/de-de-comp8.ctb +492 -0
  132. data/vendor/liblouis/tables/de-de.dis +331 -0
  133. data/vendor/liblouis/tables/de-eurobrl6.dis +101 -0
  134. data/vendor/liblouis/tables/de-eurobrl6u.dis +96 -0
  135. data/vendor/liblouis/tables/de-g0-core.uti +732 -0
  136. data/vendor/liblouis/tables/de-g0-detailed.utb +84 -0
  137. data/vendor/liblouis/tables/de-g0.utb +57 -0
  138. data/vendor/liblouis/tables/de-g1-core-patterns.dic +4863 -0
  139. data/vendor/liblouis/tables/de-g1-core.cti +67 -0
  140. data/vendor/liblouis/tables/de-g1-detailed.ctb +79 -0
  141. data/vendor/liblouis/tables/de-g1.ctb +54 -0
  142. data/vendor/liblouis/tables/de-g2-core-patterns.dic +26711 -0
  143. data/vendor/liblouis/tables/de-g2-core.cti +607 -0
  144. data/vendor/liblouis/tables/de-g2-detailed.ctb +60 -0
  145. data/vendor/liblouis/tables/de-g2.ctb +57 -0
  146. data/vendor/liblouis/tables/devanagari.cti +325 -0
  147. data/vendor/liblouis/tables/digits6Dots.uti +30 -0
  148. data/vendor/liblouis/tables/digits6DotsPlusDot6.uti +30 -0
  149. data/vendor/liblouis/tables/digits8Dots.uti +30 -0
  150. data/vendor/liblouis/tables/dra.ctb +23 -0
  151. data/vendor/liblouis/tables/dra.tbl +21 -0
  152. data/vendor/liblouis/tables/el.ctb +775 -0
  153. data/vendor/liblouis/tables/en-GB-g2.ctb +829 -0
  154. data/vendor/liblouis/tables/en-chardefs.cti +193 -0
  155. data/vendor/liblouis/tables/en-chess.ctb +37 -0
  156. data/vendor/liblouis/tables/en-g3-patterns.dic +11194 -0
  157. data/vendor/liblouis/tables/en-g3.ctb +2261 -0
  158. data/vendor/liblouis/tables/en-gb-comp8.ctb +282 -0
  159. data/vendor/liblouis/tables/en-gb-g1.utb +527 -0
  160. data/vendor/liblouis/tables/en-in-g1.ctb +162 -0
  161. data/vendor/liblouis/tables/en-nabcc.utb +166 -0
  162. data/vendor/liblouis/tables/en-nz-g1.utb +65 -0
  163. data/vendor/liblouis/tables/en-nz-g2.ctb +46 -0
  164. data/vendor/liblouis/tables/en-ueb-chardefs.uti +938 -0
  165. data/vendor/liblouis/tables/en-ueb-g1.ctb +167 -0
  166. data/vendor/liblouis/tables/en-ueb-g2.ctb +3925 -0
  167. data/vendor/liblouis/tables/en-ueb-math.ctb +71 -0
  168. data/vendor/liblouis/tables/en-us-brf.dis +102 -0
  169. data/vendor/liblouis/tables/en-us-comp6.ctb +149 -0
  170. data/vendor/liblouis/tables/en-us-comp8-ext.utb +626 -0
  171. data/vendor/liblouis/tables/en-us-comp8.ctb +62 -0
  172. data/vendor/liblouis/tables/en-us-compbrl.uti +69 -0
  173. data/vendor/liblouis/tables/en-us-emphasis.uti +45 -0
  174. data/vendor/liblouis/tables/en-us-g1.ctb +199 -0
  175. data/vendor/liblouis/tables/en-us-g2.ctb +1081 -0
  176. data/vendor/liblouis/tables/en-us-interline.ctb +1126 -0
  177. data/vendor/liblouis/tables/en-us-mathtext.ctb +880 -0
  178. data/vendor/liblouis/tables/en_CA.ctb +195 -0
  179. data/vendor/liblouis/tables/en_CA.tbl +21 -0
  180. data/vendor/liblouis/tables/en_GB.tbl +26 -0
  181. data/vendor/liblouis/tables/en_US-comp8-ext.tbl +15 -0
  182. data/vendor/liblouis/tables/en_US.tbl +26 -0
  183. data/vendor/liblouis/tables/eo-g1-x-system.ctb +85 -0
  184. data/vendor/liblouis/tables/eo-g1.ctb +165 -0
  185. data/vendor/liblouis/tables/eo.tbl +14 -0
  186. data/vendor/liblouis/tables/es-chardefs.cti +206 -0
  187. data/vendor/liblouis/tables/es-g1.ctb +36 -0
  188. data/vendor/liblouis/tables/es-g2.ctb +955 -0
  189. data/vendor/liblouis/tables/es-new.dis +284 -0
  190. data/vendor/liblouis/tables/es-no.utb +79 -0
  191. data/vendor/liblouis/tables/es-old.dis +284 -0
  192. data/vendor/liblouis/tables/es.tbl +19 -0
  193. data/vendor/liblouis/tables/et-6dot.utb +269 -0
  194. data/vendor/liblouis/tables/et-g0.utb +139 -0
  195. data/vendor/liblouis/tables/ethio-g1.ctb +335 -0
  196. data/vendor/liblouis/tables/eurodefs.cti +107 -0
  197. data/vendor/liblouis/tables/fa-ir-comp8.ctb +250 -0
  198. data/vendor/liblouis/tables/fa-ir-g1.utb +311 -0
  199. data/vendor/liblouis/tables/fi-fi-8dot.ctb +278 -0
  200. data/vendor/liblouis/tables/fi.utb +354 -0
  201. data/vendor/liblouis/tables/fil-g2.ctb +491 -0
  202. data/vendor/liblouis/tables/fr-bfu-comp6-puncs-math.uti +351 -0
  203. data/vendor/liblouis/tables/fr-bfu-comp6.utb +238 -0
  204. data/vendor/liblouis/tables/fr-bfu-comp68.cti +251 -0
  205. data/vendor/liblouis/tables/fr-bfu-comp8.utb +323 -0
  206. data/vendor/liblouis/tables/fr-bfu-g2.ctb +4644 -0
  207. data/vendor/liblouis/tables/ga-g1.utb +95 -0
  208. data/vendor/liblouis/tables/ga-g2.ctb +231 -0
  209. data/vendor/liblouis/tables/gd.ctb +123 -0
  210. data/vendor/liblouis/tables/gd.tbl +21 -0
  211. data/vendor/liblouis/tables/gez.tbl +21 -0
  212. data/vendor/liblouis/tables/gon.ctb +25 -0
  213. data/vendor/liblouis/tables/gon.tbl +17 -0
  214. data/vendor/liblouis/tables/gr-pl-comp8.uti +256 -0
  215. data/vendor/liblouis/tables/grc-international-common.uti +104 -0
  216. data/vendor/liblouis/tables/grc-international-composed.uti +268 -0
  217. data/vendor/liblouis/tables/grc-international-decomposed.uti +268 -0
  218. data/vendor/liblouis/tables/grc-international-en-composed.utb +54 -0
  219. data/vendor/liblouis/tables/grc-international-en.utb +206 -0
  220. data/vendor/liblouis/tables/grc-international-es.utb +228 -0
  221. data/vendor/liblouis/tables/gu-in-g1.utb +27 -0
  222. data/vendor/liblouis/tables/gu.tbl +18 -0
  223. data/vendor/liblouis/tables/gujarati.cti +221 -0
  224. data/vendor/liblouis/tables/gurumuki.cti +393 -0
  225. data/vendor/liblouis/tables/haw-us-g1.ctb +54 -0
  226. data/vendor/liblouis/tables/hbo-cantillated-rules.uti +71 -0
  227. data/vendor/liblouis/tables/hbo-cantillated.utb +109 -0
  228. data/vendor/liblouis/tables/hbo-common-rules.uti +152 -0
  229. data/vendor/liblouis/tables/hbo-ihbc-rules.uti +58 -0
  230. data/vendor/liblouis/tables/hbo-slim-rules.uti +68 -0
  231. data/vendor/liblouis/tables/hbo-slim.utb +100 -0
  232. data/vendor/liblouis/tables/hbo.utb +107 -0
  233. data/vendor/liblouis/tables/he-IL-comp8.utb +464 -0
  234. data/vendor/liblouis/tables/he-IL.utb +406 -0
  235. data/vendor/liblouis/tables/he-common-consonants.uti +102 -0
  236. data/vendor/liblouis/tables/he-common-vowels-ihbc.uti +161 -0
  237. data/vendor/liblouis/tables/hi-in-g1.utb +27 -0
  238. data/vendor/liblouis/tables/hi.tbl +18 -0
  239. data/vendor/liblouis/tables/hr-chardefs.cti +278 -0
  240. data/vendor/liblouis/tables/hr-comp8.tbl +21 -0
  241. data/vendor/liblouis/tables/hr-comp8.utb +239 -0
  242. data/vendor/liblouis/tables/hr-digits.uti +40 -0
  243. data/vendor/liblouis/tables/hr-g1.ctb +36 -0
  244. data/vendor/liblouis/tables/hr-g1.tbl +9 -0
  245. data/vendor/liblouis/tables/hr-translation.cti +364 -0
  246. data/vendor/liblouis/tables/ht-frenchcompatibility.uti +61 -0
  247. data/vendor/liblouis/tables/ht-g1.utb +114 -0
  248. data/vendor/liblouis/tables/hu-backtranslate-correction.dis +38 -0
  249. data/vendor/liblouis/tables/hu-backtranslate-word-corrections.cti +4293 -0
  250. data/vendor/liblouis/tables/hu-chardefs.cti +298 -0
  251. data/vendor/liblouis/tables/hu-exceptionwords.cti +3204 -0
  252. data/vendor/liblouis/tables/hu-hu-comp8.ctb +183 -0
  253. data/vendor/liblouis/tables/hu-hu-g1.ctb +129 -0
  254. data/vendor/liblouis/tables/hu-hu-g1_braille_input.cti +486 -0
  255. data/vendor/liblouis/tables/hu-hu-g2.ctb +270 -0
  256. data/vendor/liblouis/tables/hu-hu-g2_exceptions.cti +1164 -0
  257. data/vendor/liblouis/tables/hy.ctb +121 -0
  258. data/vendor/liblouis/tables/hy.tbl +21 -0
  259. data/vendor/liblouis/tables/hyph_cs_CZ.dic +3637 -0
  260. data/vendor/liblouis/tables/hyph_da_DK.dic +8896 -0
  261. data/vendor/liblouis/tables/hyph_de_DE.dic +5799 -0
  262. data/vendor/liblouis/tables/hyph_en_US.dic +5537 -0
  263. data/vendor/liblouis/tables/hyph_eo.dic +1024 -0
  264. data/vendor/liblouis/tables/hyph_es_ES.dic +877 -0
  265. data/vendor/liblouis/tables/hyph_fr_FR.dic +1067 -0
  266. data/vendor/liblouis/tables/hyph_hu_HU.dic +98519 -0
  267. data/vendor/liblouis/tables/hyph_it_IT.dic +410 -0
  268. data/vendor/liblouis/tables/hyph_nb_NO.dic +27142 -0
  269. data/vendor/liblouis/tables/hyph_nl_NL.dic +12725 -0
  270. data/vendor/liblouis/tables/hyph_nn_NO.dic +27142 -0
  271. data/vendor/liblouis/tables/hyph_pl_PL.dic +4074 -0
  272. data/vendor/liblouis/tables/hyph_pt_PT.dic +308 -0
  273. data/vendor/liblouis/tables/hyph_ru.dic +6480 -0
  274. data/vendor/liblouis/tables/hyph_sv_SE.dic +4697 -0
  275. data/vendor/liblouis/tables/is-chardefs6.cti +170 -0
  276. data/vendor/liblouis/tables/is-chardefs8.cti +293 -0
  277. data/vendor/liblouis/tables/is.ctb +157 -0
  278. data/vendor/liblouis/tables/is.tbl +18 -0
  279. data/vendor/liblouis/tables/it-it-comp6.utb +404 -0
  280. data/vendor/liblouis/tables/it-it-comp8.utb +663 -0
  281. data/vendor/liblouis/tables/iu-ca-g1.ctb +236 -0
  282. data/vendor/liblouis/tables/ja-kantenji-ucs2.utb +11448 -0
  283. data/vendor/liblouis/tables/ja-kantenji.utb +53 -0
  284. data/vendor/liblouis/tables/ja-rokutenkanji.utb +8710 -0
  285. data/vendor/liblouis/tables/ka-in-g1.utb +27 -0
  286. data/vendor/liblouis/tables/ka.utb +128 -0
  287. data/vendor/liblouis/tables/kannada.cti +282 -0
  288. data/vendor/liblouis/tables/kh-in-g1.utb +26 -0
  289. data/vendor/liblouis/tables/kha.tbl +18 -0
  290. data/vendor/liblouis/tables/kk.utb +77 -0
  291. data/vendor/liblouis/tables/km-g1.utb +412 -0
  292. data/vendor/liblouis/tables/kmr.tbl +108 -0
  293. data/vendor/liblouis/tables/kn.tbl +18 -0
  294. data/vendor/liblouis/tables/ko-2006-g1.ctb +49 -0
  295. data/vendor/liblouis/tables/ko-2006-g2.ctb +53 -0
  296. data/vendor/liblouis/tables/ko-2006.cti +190 -0
  297. data/vendor/liblouis/tables/ko-chars.cti +15140 -0
  298. data/vendor/liblouis/tables/ko-g1-rules.cti +634 -0
  299. data/vendor/liblouis/tables/ko-g1.ctb +48 -0
  300. data/vendor/liblouis/tables/ko-g2-rules.cti +9263 -0
  301. data/vendor/liblouis/tables/ko-g2.ctb +52 -0
  302. data/vendor/liblouis/tables/ko.cti +223 -0
  303. data/vendor/liblouis/tables/kok.ctb +24 -0
  304. data/vendor/liblouis/tables/kok.tbl +17 -0
  305. data/vendor/liblouis/tables/kru.ctb +24 -0
  306. data/vendor/liblouis/tables/kru.tbl +17 -0
  307. data/vendor/liblouis/tables/ks-in-g1.utb +27 -0
  308. data/vendor/liblouis/tables/latinLetterDef6Dots.uti +78 -0
  309. data/vendor/liblouis/tables/latinLetterDef8Dots.uti +75 -0
  310. data/vendor/liblouis/tables/latinLowercase.uti +389 -0
  311. data/vendor/liblouis/tables/latinUppercaseComp6.uti +78 -0
  312. data/vendor/liblouis/tables/lg-ug-g1.utb +60 -0
  313. data/vendor/liblouis/tables/litdigits6Dots.uti +30 -0
  314. data/vendor/liblouis/tables/litdigits6DotsPlusDot6.uti +30 -0
  315. data/vendor/liblouis/tables/lo-g1.utb +3127 -0
  316. data/vendor/liblouis/tables/loweredDigits6Dots.uti +30 -0
  317. data/vendor/liblouis/tables/loweredDigits8Dots.uti +30 -0
  318. data/vendor/liblouis/tables/lt-6dot.utb +308 -0
  319. data/vendor/liblouis/tables/lt-8dot.utb +281 -0
  320. data/vendor/liblouis/tables/lt.ctb +313 -0
  321. data/vendor/liblouis/tables/lv.tbl +22 -0
  322. data/vendor/liblouis/tables/maketablelist.sh +52 -0
  323. data/vendor/liblouis/tables/malayalam.cti +674 -0
  324. data/vendor/liblouis/tables/mao-nz-g1.ctb +65 -0
  325. data/vendor/liblouis/tables/marburg_single_cell_defs.cti +66 -0
  326. data/vendor/liblouis/tables/marburg_unicode_defs.cti +297 -0
  327. data/vendor/liblouis/tables/mk-g1.utb +240 -0
  328. data/vendor/liblouis/tables/ml-in-g1.utb +27 -0
  329. data/vendor/liblouis/tables/ml.tbl +21 -0
  330. data/vendor/liblouis/tables/mn-MN-common.cti +110 -0
  331. data/vendor/liblouis/tables/mn-MN-g1.utb +52 -0
  332. data/vendor/liblouis/tables/mn-MN-g2.ctb +50 -0
  333. data/vendor/liblouis/tables/mn-in-g1.utb +27 -0
  334. data/vendor/liblouis/tables/mni.tbl +18 -0
  335. data/vendor/liblouis/tables/mr-in-g1.utb +27 -0
  336. data/vendor/liblouis/tables/mr.tbl +18 -0
  337. data/vendor/liblouis/tables/ms-my-g2.ctb +4897 -0
  338. data/vendor/liblouis/tables/mt.ctb +114 -0
  339. data/vendor/liblouis/tables/mt.tbl +21 -0
  340. data/vendor/liblouis/tables/mun.ctb +24 -0
  341. data/vendor/liblouis/tables/mun.tbl +17 -0
  342. data/vendor/liblouis/tables/mwr.ctb +24 -0
  343. data/vendor/liblouis/tables/mwr.tbl +17 -0
  344. data/vendor/liblouis/tables/my-g1.utb +771 -0
  345. data/vendor/liblouis/tables/my-g2.ctb +3805 -0
  346. data/vendor/liblouis/tables/ne.ctb +22 -0
  347. data/vendor/liblouis/tables/ne.tbl +18 -0
  348. data/vendor/liblouis/tables/nemethdefs.cti +382 -0
  349. data/vendor/liblouis/tables/nl-BE.dis +532 -0
  350. data/vendor/liblouis/tables/nl-NL-g0.utb.in +646 -0
  351. data/vendor/liblouis/tables/nl-chardefs.uti.in +455 -0
  352. data/vendor/liblouis/tables/nl-comp8.utb +411 -0
  353. data/vendor/liblouis/tables/nl-print.dis +551 -0
  354. data/vendor/liblouis/tables/nl-unicode.dis +540 -0
  355. data/vendor/liblouis/tables/no-no-8dot-fallback-6dot-g0.utb +59 -0
  356. data/vendor/liblouis/tables/no-no-8dot.utb +629 -0
  357. data/vendor/liblouis/tables/no-no-braillo-047-01.dis +247 -0
  358. data/vendor/liblouis/tables/no-no-chardefs6.uti +305 -0
  359. data/vendor/liblouis/tables/no-no-comp8.ctb +323 -0
  360. data/vendor/liblouis/tables/no-no-cyrillic6dot.uti +95 -0
  361. data/vendor/liblouis/tables/no-no-g0.utb +320 -0
  362. data/vendor/liblouis/tables/no-no-g1.ctb +272 -0
  363. data/vendor/liblouis/tables/no-no-g2.ctb +737 -0
  364. data/vendor/liblouis/tables/no-no-g3.ctb +3597 -0
  365. data/vendor/liblouis/tables/no-no-generic.ctb +295 -0
  366. data/vendor/liblouis/tables/no-no-generic.dis +295 -0
  367. data/vendor/liblouis/tables/no-no-latinLetterDef6Dots_diacritics.uti +852 -0
  368. data/vendor/liblouis/tables/no-no.dis +291 -0
  369. data/vendor/liblouis/tables/np-in-g1.utb +27 -0
  370. data/vendor/liblouis/tables/nso-za-g1.utb +38 -0
  371. data/vendor/liblouis/tables/nso-za-g2.ctb +38 -0
  372. data/vendor/liblouis/tables/ny-mw.utb +70 -0
  373. data/vendor/liblouis/tables/or-in-g1.utb +27 -0
  374. data/vendor/liblouis/tables/or.tbl +18 -0
  375. data/vendor/liblouis/tables/oriya.cti +238 -0
  376. data/vendor/liblouis/tables/ovd-6g0.utb +64 -0
  377. data/vendor/liblouis/tables/ovd-8g0.utb +81 -0
  378. data/vendor/liblouis/tables/pa.tbl +18 -0
  379. data/vendor/liblouis/tables/pi.ctb +24 -0
  380. data/vendor/liblouis/tables/pi.tbl +17 -0
  381. data/vendor/liblouis/tables/pl-pl-comp8.ctb +658 -0
  382. data/vendor/liblouis/tables/pl.tbl +12 -0
  383. data/vendor/liblouis/tables/printables.cti +70 -0
  384. data/vendor/liblouis/tables/pt-comp6.utb +299 -0
  385. data/vendor/liblouis/tables/pt-pt-comp8.ctb +395 -0
  386. data/vendor/liblouis/tables/pt-pt-g1.utb +1312 -0
  387. data/vendor/liblouis/tables/pt-pt-g2.ctb +874 -0
  388. data/vendor/liblouis/tables/pt.tbl +20 -0
  389. data/vendor/liblouis/tables/pu-in-g1.utb +42 -0
  390. data/vendor/liblouis/tables/quotation-marks.uti +30 -0
  391. data/vendor/liblouis/tables/ro-g0.utb +85 -0
  392. data/vendor/liblouis/tables/ro.ctb +126 -0
  393. data/vendor/liblouis/tables/ro.tbl +21 -0
  394. data/vendor/liblouis/tables/ru-brf.dis +116 -0
  395. data/vendor/liblouis/tables/ru-comp6.utb +258 -0
  396. data/vendor/liblouis/tables/ru-comp8.utb +740 -0
  397. data/vendor/liblouis/tables/ru-letters.dis +145 -0
  398. data/vendor/liblouis/tables/ru-litbrl-detailed.utb +77 -0
  399. data/vendor/liblouis/tables/ru-litbrl.ctb +857 -0
  400. data/vendor/liblouis/tables/ru-math.uti +395 -0
  401. data/vendor/liblouis/tables/ru-ru-g1.ctb +804 -0
  402. data/vendor/liblouis/tables/ru-unicode.dis +121 -0
  403. data/vendor/liblouis/tables/rw-rw-g1.utb +133 -0
  404. data/vendor/liblouis/tables/sa-in-g1.utb +27 -0
  405. data/vendor/liblouis/tables/sa.tbl +18 -0
  406. data/vendor/liblouis/tables/sah.utb +72 -0
  407. data/vendor/liblouis/tables/sd.tbl +18 -0
  408. data/vendor/liblouis/tables/se-se.ctb +246 -0
  409. data/vendor/liblouis/tables/se-se.dis +334 -0
  410. data/vendor/liblouis/tables/si-in-g1.utb +27 -0
  411. data/vendor/liblouis/tables/sin.cti +213 -0
  412. data/vendor/liblouis/tables/sin.utb +35 -0
  413. data/vendor/liblouis/tables/sk-g1.ctb +1019 -0
  414. data/vendor/liblouis/tables/sk-sk-g1.utb +206 -0
  415. data/vendor/liblouis/tables/sk-sk.utb +112 -0
  416. data/vendor/liblouis/tables/sl-si-comp8.ctb +204 -0
  417. data/vendor/liblouis/tables/sl-si-g1.utb +471 -0
  418. data/vendor/liblouis/tables/sl.tbl +20 -0
  419. data/vendor/liblouis/tables/smi-6g0.utb +64 -0
  420. data/vendor/liblouis/tables/smi-8g0.utb +61 -0
  421. data/vendor/liblouis/tables/sot-za-g1.ctb +72 -0
  422. data/vendor/liblouis/tables/sot-za-g2.ctb +244 -0
  423. data/vendor/liblouis/tables/spaces.uti +62 -0
  424. data/vendor/liblouis/tables/sr-Cyrl.ctb +59 -0
  425. data/vendor/liblouis/tables/sr-common.cti +161 -0
  426. data/vendor/liblouis/tables/sr-cyrletters.cti +92 -0
  427. data/vendor/liblouis/tables/sr-g1.ctb +57 -0
  428. data/vendor/liblouis/tables/sr-latletters.cti +45 -0
  429. data/vendor/liblouis/tables/sv-1989.ctb +241 -0
  430. data/vendor/liblouis/tables/sv-1996.ctb +180 -0
  431. data/vendor/liblouis/tables/sv-6common.uti +1199 -0
  432. data/vendor/liblouis/tables/sv-6g0d.utb +508 -0
  433. data/vendor/liblouis/tables/sv-6g0p.utb +61 -0
  434. data/vendor/liblouis/tables/sv-6g1.uti +106 -0
  435. data/vendor/liblouis/tables/sv-6g1d.ctb +57 -0
  436. data/vendor/liblouis/tables/sv-6g2.uti +254 -0
  437. data/vendor/liblouis/tables/sv-6g2d.ctb +57 -0
  438. data/vendor/liblouis/tables/sv-8g0d.utb +495 -0
  439. data/vendor/liblouis/tables/sv-8g0n.utb +1236 -0
  440. data/vendor/liblouis/tables/sv-8g1.uti +199 -0
  441. data/vendor/liblouis/tables/sv-8g1d.ctb +73 -0
  442. data/vendor/liblouis/tables/sv-8g1n.ctb +73 -0
  443. data/vendor/liblouis/tables/sv-8g2.uti +486 -0
  444. data/vendor/liblouis/tables/sv-8g2d.ctb +73 -0
  445. data/vendor/liblouis/tables/sv-8g2n.ctb +73 -0
  446. data/vendor/liblouis/tables/sv-g0.utb +65 -0
  447. data/vendor/liblouis/tables/sv-g1.ctb +57 -0
  448. data/vendor/liblouis/tables/sv-g2.ctb +57 -0
  449. data/vendor/liblouis/tables/sv-phon.uti +241 -0
  450. data/vendor/liblouis/tables/sw-ke-g1-2.ctb +90 -0
  451. data/vendor/liblouis/tables/sw-ke-g1-3.ctb +109 -0
  452. data/vendor/liblouis/tables/sw-ke-g1-4.ctb +107 -0
  453. data/vendor/liblouis/tables/sw-ke-g1-5.ctb +73 -0
  454. data/vendor/liblouis/tables/sw-ke-g1.utb +278 -0
  455. data/vendor/liblouis/tables/sw-ke-g2.ctb +276 -0
  456. data/vendor/liblouis/tables/syc.utb +195 -0
  457. data/vendor/liblouis/tables/ta-ta-g1.ctb +167 -0
  458. data/vendor/liblouis/tables/ta.ctb +24 -0
  459. data/vendor/liblouis/tables/ta.tbl +21 -0
  460. data/vendor/liblouis/tables/tamil.cti +86 -0
  461. data/vendor/liblouis/tables/te-in-g1.utb +27 -0
  462. data/vendor/liblouis/tables/te.tbl +18 -0
  463. data/vendor/liblouis/tables/telugu.cti +239 -0
  464. data/vendor/liblouis/tables/text_nabcc.dis +426 -0
  465. data/vendor/liblouis/tables/th-comp8-backward.utb +226 -0
  466. data/vendor/liblouis/tables/th-g0.utb +177 -0
  467. data/vendor/liblouis/tables/th-g1.utb +89 -0
  468. data/vendor/liblouis/tables/th-g1.uti +315 -0
  469. data/vendor/liblouis/tables/th-g2.ctb +616 -0
  470. data/vendor/liblouis/tables/tr-g1.ctb +254 -0
  471. data/vendor/liblouis/tables/tr-g2.ctb +863 -0
  472. data/vendor/liblouis/tables/tr-g2.tbl +20 -0
  473. data/vendor/liblouis/tables/tr.ctb +324 -0
  474. data/vendor/liblouis/tables/tr.tbl +21 -0
  475. data/vendor/liblouis/tables/tsn-za-g1.ctb +33 -0
  476. data/vendor/liblouis/tables/tsn-za-g2.ctb +33 -0
  477. data/vendor/liblouis/tables/tt.utb +74 -0
  478. data/vendor/liblouis/tables/uga.utb +86 -0
  479. data/vendor/liblouis/tables/uk-comp.utb +53 -0
  480. data/vendor/liblouis/tables/uk-detailed.utb +32 -0
  481. data/vendor/liblouis/tables/uk.utb +101 -0
  482. data/vendor/liblouis/tables/ukchardefs.cti +106 -0
  483. data/vendor/liblouis/tables/ukmaths_single_cell_defs.cti +65 -0
  484. data/vendor/liblouis/tables/ukmaths_unicode_defs.cti +298 -0
  485. data/vendor/liblouis/tables/uni-text.dis +330 -0
  486. data/vendor/liblouis/tables/unicode-braille.utb +291 -0
  487. data/vendor/liblouis/tables/unicode-without-blank.dis +24 -0
  488. data/vendor/liblouis/tables/unicode.dis +278 -0
  489. data/vendor/liblouis/tables/ur-pk-g1.utb +248 -0
  490. data/vendor/liblouis/tables/ur-pk-g2.ctb +641 -0
  491. data/vendor/liblouis/tables/us-table.dis +67 -0
  492. data/vendor/liblouis/tables/uz-g1.utb +117 -0
  493. data/vendor/liblouis/tables/ve-za-g1.utb +69 -0
  494. data/vendor/liblouis/tables/ve-za-g2.ctb +208 -0
  495. data/vendor/liblouis/tables/vi-cb8.utb +49 -0
  496. data/vendor/liblouis/tables/vi-charsdef.uti +36 -0
  497. data/vendor/liblouis/tables/vi-lettersdef.uti +401 -0
  498. data/vendor/liblouis/tables/vi-puncsdef.uti +446 -0
  499. data/vendor/liblouis/tables/vi-saigon-g1.ctb +530 -0
  500. data/vendor/liblouis/tables/vi-vn-g0.utb +135 -0
  501. data/vendor/liblouis/tables/vi-vn-g1.ctb +574 -0
  502. data/vendor/liblouis/tables/vi-vn-g2.ctb +743 -0
  503. data/vendor/liblouis/tables/wiskunde-chardefs.cti +261 -0
  504. data/vendor/liblouis/tables/wordcx.dis +91 -0
  505. data/vendor/liblouis/tables/xh-za-g1.utb +61 -0
  506. data/vendor/liblouis/tables/xh-za-g2.ctb +386 -0
  507. data/vendor/liblouis/tables/yi.utb +236 -0
  508. data/vendor/liblouis/tables/zh-chn.ctb +45011 -0
  509. data/vendor/liblouis/tables/zh-hk.ctb +10461 -0
  510. data/vendor/liblouis/tables/zh-tw.ctb +53810 -0
  511. data/vendor/liblouis/tables/zh_CHN.tbl +23 -0
  512. data/vendor/liblouis/tables/zhcn-cbs.ctb +31523 -0
  513. data/vendor/liblouis/tables/zhcn-g1.ctb +26523 -0
  514. data/vendor/liblouis/tables/zhcn-g2.ctb +26519 -0
  515. data/vendor/liblouis/tables/zu-za-g1.utb +33 -0
  516. data/vendor/liblouis/tables/zu-za-g2.ctb +33 -0
  517. metadata +558 -0
@@ -0,0 +1,804 @@
1
+ # liblouis: Russian literary (grade 1) text translation table
2
+ #
3
+ #-index-name: Russian, contracted
4
+ #-display-name: Russian contracted braille
5
+ #
6
+ #+language: ru
7
+ #+type: literary
8
+ #+dots: 6
9
+ #+contraction: partial
10
+ #+grade:1
11
+ #+direction: forward
12
+ #
13
+ # Copyright (C) 2021 Ekaterina Anisimova <musicate@yandex.ru>
14
+ # Copyright (C) 2021-2022 Andrey Yakuboy <braille@yakuboy.ru>
15
+ # Copyright (C) 2025-2026 Dmitriy Lazarev <dmitriy.braille.numeric674@aleeas.com>
16
+ #
17
+ # This file is part of liblouis.
18
+ #
19
+ # liblouis is free software: you can redistribute it and/or modify it
20
+ # under the terms of the GNU Lesser General Public License as
21
+ # published by the Free Software Foundation, either version 2.1 of the
22
+ # License, or (at your option) any later version.
23
+ #
24
+ # liblouis is distributed in the hope that it will be useful, but
25
+ # WITHOUT ANY WARRANTY; without even the implied warranty of
26
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
27
+ # Lesser General Public License for more details.
28
+ #
29
+ # You should have received a copy of the GNU Lesser General Public
30
+ # License along with liblouis. If not, see
31
+ # <http://www.gnu.org/licenses/>.
32
+ #
33
+ #Based on Zubkov M. - "Contracted braille. Grade 1" (Moscow, 1974)
34
+
35
+ # Contracted braille isn't used in Russia oficially, and not many people know it.
36
+ # This table was created to make contracted braille more popular.
37
+ # It may be not perfect because there're no data to test it.
38
+
39
+ attribute consonant бвгджзйклмнпрстфхцчшщъь
40
+ attribute vowel аеёиоуыэюя
41
+ attribute muffled кпстфхцчшщ
42
+ attribute voiced бвгджзлмнр
43
+ attribute sch бвгджзйклмнопрстфхцчшщъыьэюя
44
+
45
+ punctuation ( 6-126
46
+ punctuation ) 6-345
47
+ punctuation " 6-236
48
+ prepunc " 6-236
49
+ postpunc " 6-356
50
+ punctuation \x00ab 6-236
51
+ punctuation \x00bb 6-356
52
+ punctuation \x2018 6-236 # 8216 smart single left quotation mark
53
+ punctuation \x2019 6-356 # 8217 smart single right quotation mark
54
+ punctuation \x201c 6-236 # 8220 smart opening double quote
55
+ punctuation \x201d 6-356 # 8221 smart closing double quote
56
+ punctuation \x201e 6-236 # 8222 smart double low quotation mark
57
+ punctuation \x201f 6-356 # 8223 smart double high reverse quotation mark
58
+ punctuation \x2039 6-236 # 8249 single Left-Pointing Angle Quotation Mark
59
+ punctuation \x203a 6-356 # 8250 single Right-Pointing Angle Quotation Mark
60
+ punctuation \x203c 6-235-235 # 8252 double exclamation mark
61
+
62
+ # These rules override some rules coming from ru-litbrl.ctb.
63
+ # They aren't actual for the Russian contracted braille.
64
+
65
+ attribute dropspaceafter ,;\x00a7
66
+
67
+ noback correct $D[","$s] "\x2820,\s" # \x2820 is the braille dot 6
68
+ noback correct $d[","$s] "\x2820,\s"
69
+ noback correct $D[";"$s] "\x2820;\s"
70
+ noback correct $d[";"$s] "\x2820;\s"
71
+ noback correct [%dropspaceafter$s] *
72
+
73
+ # Table I
74
+
75
+ match (!(%[_>~]))+[вёзйклмнопрстучшщъыьэюя]+!(%_)+ ва - 3456
76
+ match - ва (!(%[_>~]))*[вёзйклмнопрстучшщъыьэюя]+ 3456
77
+ endword ва 3456
78
+ nofor partword ва 3456
79
+ begmidword ве 23456
80
+ begmidword вё 23456
81
+ always во 1236
82
+ sufword вы 3
83
+ partword го 12456
84
+ before sch partword де 1346
85
+ before sch partword дё 1346
86
+ before sch begmidword щ 6-1346
87
+ endword щ 6-1346
88
+ always до 256
89
+ always за 356
90
+ partword ка 346
91
+ midendword ки 246
92
+ midendword э 6-246
93
+ midendword Э 6-246
94
+ always ко 1456
95
+ partword ла 4
96
+ partword ле 26
97
+ partword лё 26
98
+ always ли 35
99
+ partword ло 456
100
+ always ль 2356
101
+ midword льн 2356
102
+ midword льне 2356-16
103
+ endword льно 2356-126
104
+ endword льна 2356-345
105
+ partword ме 146
106
+ partword мё 146
107
+ midendword ми 124
108
+ midendword ф 6-124
109
+ midendword Ф 6-124
110
+ always на 345
111
+ always не 16
112
+ partword нё 16
113
+ word ё 6-16
114
+ word Ё 6-16
115
+ always ни 34
116
+ always но 126
117
+ endword ны 46
118
+ always по 235
119
+ sufword при 12346
120
+ begword непри 16-12346
121
+ word й 6-12346
122
+ word Й 6-12346
123
+ after consonant midendword при 12346
124
+ sufword про 12356
125
+ word ъ 6-12356
126
+ word Ъ 6-12356
127
+ begword непро 16-12356
128
+ midendword ро 12356
129
+ partword ра 45
130
+ partword ре 2
131
+ partword рё 2
132
+ partword ри 5
133
+ sufword со 2346
134
+ word ы 6-2346
135
+ word Ы 6-2346
136
+ after vowel midendword со 2346
137
+ partword ст 25
138
+ before consonant match - ста ![р%_] 25
139
+ always та 123456
140
+ always те 23
141
+ partword ти 56
142
+ always то 13456
143
+ partword че 236
144
+ midword ъ 3
145
+ midword ь 3
146
+
147
+ # Table II
148
+
149
+ word без 12-1356
150
+ before voiced before vowel begword без 12-1356
151
+ begmidword безъ 12-1356-3
152
+ before voiced before vowel begword небез 16-12-1356
153
+ before voiced before vowel begword безыз 12-1356-36
154
+ begmidword безызъ 12-1356-36-3
155
+ before voiced before vowel begword небезыз 16-12-1356-36
156
+ word бз 6-12-1356
157
+ before muffled begword бес 12-234
158
+ before muffled begword небес 16-12-234
159
+ word в\sзаключение 2456-0-356-15
160
+ word вместо 2456-13456
161
+ sufword внутри 2456-1235
162
+ word вр 6-2456-1235
163
+ word вопреки 1236-246
164
+ word в\sпродолжение 2456-0-12356-15
165
+ word вследствие 2456-26-15
166
+ word в\sтечение 2456-0-23-15
167
+ word для 145
168
+ word д 6-145
169
+ word Д 6-145
170
+ word из 36
171
+ before voiced before vowel begword из 36
172
+ begmidword изъ 36-3
173
+ before voiced before vowel begword неиз 16-36
174
+ word кроме 13-146
175
+ sufword между 6-146
176
+ word около 135-135
177
+ word оо 6-135-135
178
+ sufword от 1256
179
+ begword неот 16-1256
180
+ begword безот 12-1356-1256
181
+ begword небезот 16-12-1356-1256
182
+ begword оте 135-23
183
+ begword ото 135-13456
184
+ sufword ю 6-1256
185
+ sufword Ю 6-1256
186
+ begword пере 46-1234
187
+ begword непере 16-46-1234
188
+ begword переиз 46-1234-36
189
+ begword непереиз 16-46-1234-36
190
+ begword переот 46-1234-1256
191
+ sufword пред 1234-145
192
+ begword непред 16-1234-145
193
+ begword предот 1234-145-1256
194
+ begword непредот 16-1234-145-1256
195
+ word пд 6-1234-145
196
+ before voiced before vowel begword предыз 1234-145-36
197
+ word предо 1234-256
198
+ word п. 6-1234-256
199
+ sufword прежде 1234-245
200
+ word пж 6-1234-245
201
+ word против 12356-2456
202
+ sufword напротив 345-12356-2456
203
+ sufword через 12345-1356
204
+ sufword чрез 12345-1356
205
+ word чз 6-12345-1356
206
+ begword черес 12345-234
207
+ word чс 6-12345-234
208
+
209
+ # Table III
210
+
211
+ endword ам 134
212
+ endword амся 134-234
213
+ endword стамся 25-1-134-234
214
+ endword лам 123-134
215
+ endword рам 1235-134
216
+ endword ям 134
217
+ endword ямся 134-234
218
+ endword ым 134
219
+ endword ымся 134-234
220
+ endword им 134
221
+ endword имся 134-234
222
+ endword ами 124
223
+ endword лами 123-124
224
+ endword рами 1235-124
225
+ endword амись 124-234
226
+ endword ями 124
227
+ endword ямись 124-234
228
+ endword ими 124
229
+ endword имись 124-234
230
+ endword имися 124-234
231
+ endword ыми 124
232
+ endword ымись 124-234
233
+ endword ымися 124-234
234
+ endword ат 6
235
+ endword атся 6-234
236
+ endword статся 25-1-6-234
237
+ endword ят 6
238
+ endword ятся 6-234
239
+ endword ах 125
240
+ endword ахся 125-234
241
+ endword ях 125
242
+ endword яхся 125-234
243
+ endword их 125
244
+ endword ихся 125-234
245
+ endword ых 125
246
+ endword ыхся 125-234
247
+ midword ающ 36-1346
248
+ midword лающ 123-36-1346
249
+ midword рающ 1235-36-1346
250
+ midword яющ 36-1346
251
+ endword ая 1356
252
+ endword лая 123-1356
253
+ endword рая 1235-1356
254
+ endword аясь 1356-234
255
+ endword лаясь 123-1356-234
256
+ endword раясь 1235-1356-234
257
+ endword яя 1356
258
+ endword яясь 1356-234
259
+ endword ев 2456
260
+ endword ов 2456
261
+ midendword ева 3456
262
+ midendword ова 3456
263
+ midendword ива 3456
264
+ midendword ыва 3456
265
+ endword его 12456
266
+ endword ого 12456
267
+ endword ее 156
268
+ endword ееся 156-234
269
+ endword её 156
270
+ endword ое 156
271
+ endword ей 13456
272
+ endword ейся 13456-234
273
+ endword ёй 13456
274
+ endword ёйся 13456-234
275
+ endword ой 13456
276
+ endword ойся 13456-234
277
+ endword ойсь 13456-234
278
+ endword ем 235
279
+ endword емся 235-234
280
+ endword ём 235
281
+ endword ёмся 235-234
282
+ endword стаёмся 25-1-235-234
283
+ endword аем 235
284
+ endword лаем 123-235
285
+ endword раем 1235-235
286
+ endword аемся 235-234
287
+ endword лаемся 123-235-234
288
+ endword раемся 1235-235-234
289
+ endword стаемся 25-1-235-234
290
+ endword яем 235
291
+ endword яемся 235-234
292
+ endword оем 235
293
+ endword оемся 235-234
294
+ endword ему 146
295
+ endword емуся 146-234
296
+ endword ому 146
297
+ midword ени 34
298
+ midword дени 145-34
299
+ midword рени 1235-34
300
+ endword ет 14
301
+ endword ется 14-234
302
+ endword ёт 14
303
+ endword ётся 14-234
304
+ word вает 2456-1-14
305
+ endword ешь 36-156
306
+ endword ешься 36-156-234
307
+ endword ёшь 36-156
308
+ endword ёшься 36-156-234
309
+ midword жайш 6-245
310
+ midword ижайш 6-245
311
+ endword ие 14
312
+ endword иеся 14-234
313
+ endword ые 14
314
+ midword изаци 6-14
315
+ midword лизаци 123-6-14
316
+ midword мизаци 134-6-14
317
+ midword низаци 1345-6-14
318
+ midword ризаци 1235-6-14
319
+ midword тизаци 2345-6-14
320
+ midendword изм 134
321
+ midendword лизм 123-134
322
+ midendword мизм 134-134
323
+ midendword низм 1345-134
324
+ midendword ризм 1235-134
325
+ midendword тизм 2345-134
326
+ endword ий 12346
327
+ endword ийся 12346-234
328
+ endword ый 12346
329
+ endword ыйся 12346-234
330
+ midword ирова 6-3456
331
+ midword лирова 123-6-3456
332
+ midword мирова 134-6-3456
333
+ midword нирова 1345-6-3456
334
+ midword рирова 1235-6-3456
335
+ midword тирова 2345-6-3456
336
+ midword ированн 6-3456-1345
337
+ midword лированн 123-6-3456-1345
338
+ midword мированн 134-6-3456-1345
339
+ midword нированн 1345-6-3456-1345
340
+ midword рированн 1235-6-3456-1345
341
+ midword тированн 2345-6-3456-1345
342
+ endword ирован 6-3456-1345
343
+ endword лирован 123-6-3456-1345
344
+ endword мирован 134-6-3456-1345
345
+ endword нирован 1345-6-3456-1345
346
+ endword рирован 1235-6-3456-1345
347
+ endword тирован 2345-6-3456-1345
348
+ midendword ист 2345
349
+ midendword лист 123-2345
350
+ midendword мист 134-2345
351
+ midendword нист 1345-2345
352
+ midendword рист 1235-2345
353
+ midendword тист 2345-2345
354
+ midword истическ 6-13
355
+ midword листическ 123-6-13
356
+ midword мистическ 134-6-13
357
+ midword нистическ 1345-6-13
358
+ midword ристическ 1235-6-13
359
+ midword тистическ 2345-6-13
360
+ midword ическ 6-13
361
+ midword лическ 123-6-13
362
+ midword мическ 134-6-13
363
+ midword ническ 1345-6-13
364
+ midword рическ 1235-6-13
365
+ midword тическ 2345-6-13
366
+ midword ческ 6-13
367
+ endword ит 45
368
+ endword ится 45-234
369
+ midendword ител 2356
370
+ midendword лител 123-2356
371
+ midendword мител 134-2356
372
+ midendword нител 1345-2356
373
+ midendword рител 1235-2356
374
+ midendword тител 2345-2356
375
+ midendword итель 2356
376
+ midendword литель 123-2356
377
+ midendword митель 134-2356
378
+ midendword нитель 1345-2356
379
+ midendword ритель 1235-2356
380
+ midendword титель 2345-2356
381
+ midendword ительн 2356
382
+ midendword лительн 123-2356
383
+ midendword мительн 134-2356
384
+ midendword нительн 1345-2356
385
+ midendword рительн 1235-2356
386
+ midendword тительн 2345-2356
387
+ midendword ренительн 1235-15-34-2356
388
+ midword ительност 2356-25
389
+ midword лительност 123-2356-25
390
+ midword мительност 134-2356-25
391
+ midword нительност 1345-2356-25
392
+ midword рительност 1235-2356-25
393
+ midword тительност 2345-2356-25
394
+ midword ренительност 1235-15-34-2356-25
395
+ midendword ительств 2356-2456
396
+ midendword лительств 123-2356-2456
397
+ midendword мительств 134-2356-2456
398
+ midendword нительств 1345-2356-2456
399
+ midendword рительств 1235-2356-2456
400
+ midendword тительств 2345-2356-2456
401
+ midendword ренительств 1235-15-34-2356-2456
402
+ midword ительственн 2356-2456-1345
403
+ midword лительственн 123-2356-2456-1345
404
+ midword мительственн 134-2356-2456-1345
405
+ midword нительственн 1345-2356-2456-1345
406
+ midword рительственн 1235-2356-2456-1345
407
+ midword тительственн 2345-2356-2456-1345
408
+ midword ренительственн 1235-15-34-2356-2456-1345
409
+ endword ишь 6-156
410
+ endword ишься 6-156-234
411
+ midword ост 25
412
+ midword ност 25
413
+ midword ственн 25-1345
414
+ endword ствен 25-1345
415
+ midword ственност 25-25
416
+ endword сь 234
417
+ endword ся 234
418
+ endword ться 23456-234
419
+ endword ть 23456
420
+ endword ут 46
421
+ endword утся 46-234
422
+ endword ют 46
423
+ endword ются 46-234
424
+ endword ую 12356
425
+ endword уюсь 12356-234
426
+ endword уюся 12356-234
427
+ endword юю 12356
428
+ endword ююсь 12356-234
429
+ endword ююся 12356-234
430
+ midword ующ 6-1346
431
+ midword юющ 6-1346
432
+ midword чайш 6-12345
433
+ midword ичайш 6-12345
434
+ prfword стал 25-1-123
435
+ endword стался 25-1-123-234
436
+ prfword стала 25-1-4
437
+ endword сталась 25-1-4-234
438
+ prfword стало 25-1-456
439
+ endword стало 25-1-456-234
440
+ prfword стали 25-1-35
441
+ endword стались 25-1-35-234
442
+
443
+ # Table IV
444
+
445
+ word вас 3456
446
+ word вами 2456-124
447
+ word весь 23456
448
+ word ь 6-23456
449
+ word Ь 6-23456
450
+ always все 156
451
+ always всё 156
452
+ word ш 6-156
453
+ word Ш 6-156
454
+ word всю 156-1256
455
+ word вся 156-1246
456
+ word всяк 2456-13
457
+ begmidword всяк 2456-13
458
+ word вк 6-2456-13
459
+ word его 12456
460
+ word ее 26
461
+ word её 26
462
+ word ей 25
463
+ word ему 146
464
+ word ими 124
465
+ word ф 6-124
466
+ word Ф 6-124
467
+ word их 125
468
+ word х 6-125
469
+ word Х 6-125
470
+ begword кажд 13-145
471
+ begword как 346
472
+ begmidword котор 13
473
+ word мы 134
474
+ word м 6-134
475
+ word М 6-134
476
+ word несколько 16-234-1456
477
+ word нисколько 34-234-1456
478
+ word он 1345
479
+ word н 6-1345
480
+ word Н 6-1345
481
+ sufword сам 14
482
+ sufword ц 6-14
483
+ sufword Ц 6-14
484
+ begword себ 234
485
+ word сколько 234-1456
486
+ word столько 25-1456
487
+ word ты 236
488
+ sufword это 246
489
+ word э 6-246
490
+ word Э 6-246
491
+ begword эт 246
492
+
493
+ # Table V
494
+
495
+ word будто 12-13456
496
+ word впрочем 2456-134
497
+ word если 15
498
+ word е 6-15
499
+ word Е 6-15
500
+ word ибо 24-23
501
+ word как 346
502
+ word однако 135-1456
503
+ word потому\sчто 1234-3-12345
504
+ word также 123456-245
505
+ word так\sкак 2345-3-13
506
+ word тоже 13456-245
507
+ word что 12345
508
+ word ч 6-12345
509
+ word Ч 6-12345
510
+ word чтоб 12345-12
511
+ word чтобы 12345-23
512
+
513
+ # Table VI
514
+
515
+ prfword бы 23
516
+ word всё-таки 156-36-246
517
+ word все-таки 156-36-246
518
+ word даже 145-245
519
+ word дж 6-145-245
520
+ word именно 24-126
521
+ word ли 35
522
+ match (%a)+(%~)* либо ^|!%a 35
523
+ word лишь 123
524
+ word л 6-123
525
+ word Л 6-123
526
+ word ль 2356
527
+ word неужели 16-35
528
+ match (%a)+(%~)* нибудь ^|!%a 34
529
+ word разве 1235-23456
530
+ word спасибо 234-12
531
+ word сб 6-234-12
532
+ word только 2356
533
+ word уже 245
534
+ word ж 6-245
535
+ word Ж 6-245
536
+
537
+ # Table VII (A)
538
+
539
+ begmidword буд 12
540
+ begword будущ 12-1346
541
+ always был 12
542
+ word б 6-12
543
+ word Б 6-12
544
+ begmidword бывш 12
545
+ word быть 12-23456
546
+ always мог 134
547
+ begmidword мож 134
548
+ begword могущ 134-1346
549
+ word может\sбыть 134-3-12
550
+ begmidword хоч 125
551
+ begmidword хоте 125
552
+ begmidword хоти 125
553
+ begmidword хотя 125
554
+ word хоть 125-23456
555
+ prfword хотя 125-1246
556
+ word нехотя 16-125-1246
557
+ word предъявить 1234-3-1246-23456
558
+ always явить 1246-23456
559
+ partword яв 1246
560
+ partword яви 1246
561
+ begmidword явлени 1246-34
562
+ always явит 1246-2345
563
+ always явят 1246-2345
564
+ word является 1246-234
565
+ word являются 1246-234
566
+
567
+ # Table VII (B)
568
+
569
+ word везде 2456-1356
570
+ word вместе 2456-146
571
+ word вновь 2456-23456
572
+ word вообще 1236-1346
573
+ word впоследствии 2456-235-24
574
+ word всегда 2456-1245
575
+ word вг 6-2456-1245
576
+ word всюду 2456-145
577
+ word вд 6-2456-145
578
+ word где 1245
579
+ word негде 16-1245
580
+ word нигде 34-1245
581
+ word г 6-1245
582
+ word Г 6-1245
583
+ word еще 1346
584
+ word ещё 1346
585
+ word щ 6-1346
586
+ word Щ 6-1346
587
+ word здесь 1356
588
+ word з 6-1356
589
+ word З 6-1356
590
+ word иногда 24-1
591
+ word иа 6-24-1
592
+ word когда 1456-1245
593
+ word некогда 16-1456-1245
594
+ word никогда 34-1456-1245
595
+ word куда 13-145
596
+ word некуда 16-13-145
597
+ word никуда 34-13-145
598
+ word однажды 135-2346
599
+ word опять 135-23456
600
+ word откуда 1256-13
601
+ word неоткуда 16-1256-13
602
+ word ниоткуда 34-1256-13
603
+ word отсюда 1256-234
604
+ word оттуда 1256-2345
605
+ word очень 135-236
606
+ word потому 1234
607
+ word п 6-1234
608
+ word П 6-1234
609
+ word почему 1234-236
610
+ word поэтому 235-246
611
+ word разумеется 1235-234
612
+ word сегодня 234-1245
613
+ word сейчас 234-234
614
+ word сс 6-234-234
615
+ word сразу 234-136
616
+ word су 6-234-136
617
+ word сюда 234-145
618
+ word сд 6-234-145
619
+ word теперь 2345
620
+ word т 6-2345
621
+ word Т 6-2345
622
+ word тогда 13456-1245
623
+
624
+ # Table VII (C)
625
+
626
+ word более 26-15
627
+ word наиболее 345-26-15
628
+ word больше 12-156
629
+ begword больш 12-156
630
+ word быстро 12-12356
631
+ word вначале 2456-345-26
632
+ word вскоре 2456-1456
633
+ word вскорости 2456-1456-25-24
634
+ word главным\sобразом 1245-3-135
635
+ word далеко 145-1456
636
+ word далее 145-26
637
+ word лучше 123-156
638
+ begword лучш 123-156
639
+ word менее 146-15
640
+ word меньше 146-156
641
+ begword меньш 146-156
642
+ word наверно 345-126
643
+ word наверное 345-126-15
644
+ word наверняка 345-346
645
+ word наконец 1345-14
646
+ word наоборот 345-135-2345
647
+ word например 345-1234
648
+ word раньше 1235-156
649
+ word слишком 234-35-134
650
+ word так\sдалее 2345-3-145
651
+ word так\sназываемый 2345-3-1345
652
+ word таким\sобразом 2345-3-135
653
+ word тому\sподобное 2345-3-1234
654
+
655
+ # Table VII (D)
656
+
657
+ word абсолютно 1-12-2345-126
658
+ word активно 1-2456-126
659
+ word актуально 1-13-2356-126
660
+ word вероятно 23456-12356-126
661
+ word возможно 1236-1356-134-126
662
+ word невозможно 16-1236-1356-134-126
663
+ word давно 145-126
664
+ word недавно 16-145-126
665
+ word достаточно 256-25-126
666
+ word недостаточно 16-256-25-126
667
+ word ежегодно 15-12456-126
668
+ word ежедневно 15-145-126
669
+ word ежемесячно 15-146-126
670
+ word конечно 1456-126
671
+ word можно 134-126
672
+ word особенно 135-2346-126
673
+ word очевидно 135-236-126
674
+ word посредственно 235-234-126
675
+ word непосредственно 16-235-234-126
676
+ word принципиально 12346-1234-2356-126
677
+ word беспринципно 12-12346-1234-126
678
+ word своевременно 234-1236-3-126
679
+ word следовательно 234-26-126
680
+ word случайно 234-12346-126
681
+ word совершенно 2346-23456-126
682
+ word совсем 2346-156-134
683
+ word типично 56-1234-126
684
+ word формально 124-134-2356-126
685
+ word частично 12345-126
686
+ word чрезвычайно 12345-1356-126
687
+ word характерно 125-1235-126
688
+
689
+ #Table VIII
690
+
691
+ before muffled begword ис 36
692
+ begword предб 1234-12
693
+ begword предбуд 1234-12
694
+ begword предбывш 1234-12
695
+ begword предв 1234-2456
696
+ begword предво 1234-1236
697
+ begword предвсе 1234-156
698
+ begword предва 1234-3456
699
+ begword предве 1234-23456
700
+ begword предг 1234-1245
701
+ begword предго 1234-12456
702
+ begword предм 1234-134
703
+ begword предмог 1234-134
704
+ begword предме 1234-146
705
+ begword предмож 1234-134
706
+ begword предми 1234-124
707
+ begword предн 1234-1345
708
+ begword предна 1234-345
709
+ begword предне 1234-16
710
+ begword предни 1234-34
711
+ begword предно 1234-126
712
+ begword предност 1234-25
713
+ begword предп 1234-1234
714
+ begword предпо 1234-235
715
+ begword предст 1234-25
716
+ begword предста 1234-25
717
+ begword разб 1235-12
718
+ begword разбуд 1235-12
719
+ begword разг 1235-1245
720
+ begword разго 1235-12456
721
+ begword разе 1235-15
722
+ begword разева 1235-3456
723
+ begword разени 1235-34
724
+ begword разз 1235-1356
725
+ begword раза 1235-356
726
+ begword разл 1235-123
727
+ begword разли 1235-35
728
+ begword разль 1235-2356
729
+ begword разла 1235-4
730
+ begword разле 1235-26
731
+ begword разло 1235-456
732
+ begword разм 1235-134
733
+ begword размог 1235-134
734
+ begword разме 1235-146
735
+ begword размож 1235-134
736
+ begword разми 1235-124
737
+ begword разн 1235-1345
738
+ begword разна 1235-345
739
+ begword разне 1235-16
740
+ begword разни 1235-34
741
+ begword разно 1235-126
742
+ begword разност 1235-25
743
+ begword разр 1235-1235
744
+ begword разра 1235-45
745
+ begword разре 1235-2
746
+ begword разри 1235-5
747
+ begword разро 1235-12356
748
+ begword разя 1235-1246
749
+ begword разявить 1235-1246-23456
750
+ begword разяв 1235-1246
751
+ begword разяви 1235-1246
752
+ begword разявит 1235-1246-2345
753
+ begword разявят 1235-1246-2345
754
+ begword раск 1235-13
755
+ begword раско 1235-1456
756
+ begword раска 1235-346
757
+ begword раскотор 1235-13
758
+ begword раски 1235-246
759
+ begword расп 1235-1234
760
+ begword распо 1235-235
761
+ begword расс 1235-234
762
+ begword расст 1235-25
763
+ begword расста 1235-25
764
+ begword расственн 1235-25-1345
765
+ begword расственност 1235-25-25
766
+ begword расска 1235-346
767
+ begword расски 1235-246
768
+ begword расско 1235-1456
769
+ begword расф 1235-124
770
+ begword расх 1235-125
771
+ begword расхоч 1235-125
772
+ begword расхоте 1235-125
773
+ begword расхоти 1235-125
774
+ begword расхотя 1235-125
775
+ begword расц 1235-14
776
+ begword расч 1235-12345
777
+ begword расче 1235-236
778
+ begword расческ 1235-6-13
779
+ begword расчайш 1235-6-12345
780
+ begword расш 1235-156
781
+ begword расщ 1235-1346
782
+ midword ска 346
783
+ midendword ски 246
784
+ midword ско 1456
785
+
786
+ # Abbreviations that shouldn't be contracted
787
+
788
+ word вос 2456-135-234
789
+ word нис 1345-24-234
790
+
791
+ # Include ru-litbrl.ctb
792
+
793
+ include ru-litbrl.ctb
794
+
795
+ # Workaround for not showing capitals
796
+ capsletter 9
797
+ begcapsword 9-9
798
+ endcapsword 9-9
799
+ noback pass2 @9 ?
800
+
801
+ # Need to come after ru-litbrl.ctb to avoid "Sequence delimiter character undefined" error
802
+ seqdelimiter -–—―−‐
803
+ seqbeforechars ([{"“'‘«
804
+ seqafterchars )]}"”'’».,;:!?…