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,65 @@
1
+ # liblouis: Unified English Braille Code New Zealand Māori (Grade 1)
2
+ #
3
+ #-index-name: Māori
4
+ #-display-name: Māori braille
5
+ #+language:mi
6
+ #+type:literary
7
+ #+contraction:no
8
+ #+grade:1
9
+ #+system:ubc-nz
10
+ #
11
+ # This table implements the policy of the Braille Authority of New
12
+ # Zealand Aotearoa Trust relating to translating words in the Māori
13
+ # language into braille, (see
14
+ # https://www.banzat.org.nz/documents/BANZATPolicy8TranscribingMaoriTextInBraille.docx
15
+ # ). This table is for converting Māori text into grade 1 braille,
16
+ # noting that Māori is the indigenous language of New Zealand and
17
+ # currently has no grade 2 braille code.
18
+ #
19
+ # This file is part of liblouis.
20
+ #
21
+ # liblouis is free software: you can redistribute it and/or modify it
22
+ # under the terms of the GNU Lesser General Public License as
23
+ # published by the Free Software Foundation, either version 2.1 of the
24
+ # License, or (at your option) any later version.
25
+ #
26
+ # liblouis is distributed in the hope that it will be useful, but
27
+ # WITHOUT ANY WARRANTY; without even the implied warranty of
28
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
29
+ # Lesser General Public License for more details.
30
+ #
31
+ # You should have received a copy of the GNU Lesser General Public
32
+ # License along with liblouis. If not, see
33
+ # <http://www.gnu.org/licenses/>.
34
+ #
35
+ #-maintainer: James Bowden <james.bowden@rnib.org.uk>
36
+ #-author: Clive Lansink <clive@aicomms.co.nz>
37
+
38
+ include text_nabcc.dis
39
+
40
+ # Here I implement symbol 456 as the macron prefix indicating vowel macrons.
41
+ lowercase \x0101 456-1 ā
42
+ lowercase \x0113 456-15 ē
43
+ lowercase \x012b 456-24 ī
44
+ lowercase \x014d 456-135 ō
45
+ lowercase \x016b 456-136 ū
46
+
47
+ # The uppercase mappings are included as standard
48
+
49
+ # The following implements the combining macron character, Unicode
50
+ # 0x0304, which adds a macron to the character it follows. For capital
51
+ # letters with macrons, UEB requires the capitalisation indicator to
52
+ # come before the macron prefix. But I understand that when processing
53
+ # macrons indicated by this combining macron character, Lib Louis has
54
+ # a known limitation in that it applies the capitalisation indicator
55
+ # after the macron prefix. Also Lib Louis seems to incorrectly treat
56
+ # the combining macron character as terminating any existing
57
+ # capitalisation.
58
+ sign \x0304 456 ̄
59
+
60
+ # Implement translation of wh. This is regarded as a single letter in
61
+ # the Māori language so this translation applies even in grade 1.
62
+ always wh 156
63
+
64
+ # For everything else, fall back to normal UEB grade 1 translation.
65
+ include en-ueb-g1.ctb
@@ -0,0 +1,66 @@
1
+ # Define all single-cell characters needed.
2
+ #
3
+ # Copyright (C) 2008 JJB Software, Inc. www.jjb-software.com
4
+ #
5
+ # This file is part of liblouis.
6
+ #
7
+ # liblouis is free software: you can redistribute it and/or modify it
8
+ # under the terms of the GNU Lesser General Public License as
9
+ # published by the Free Software Foundation, either version 2.1 of the
10
+ # License, or (at your option) any later version.
11
+ #
12
+ # liblouis is distributed in the hope that it will be useful, but
13
+ # WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15
+ # Lesser General Public License for more details.
16
+ #
17
+ # You should have received a copy of the GNU Lesser General Public
18
+ # License along with liblouis. If not, see
19
+ # <http://www.gnu.org/licenses/>.
20
+
21
+ space \s 0
22
+ space \x000a 0
23
+ space \x000c 0
24
+ space \x000d 0
25
+ space \x001b 1b
26
+ space \x00a0 a
27
+ space \t 9
28
+ punctuation ! 5
29
+ punctuation " 4
30
+ sign # 3456
31
+ sign $ 46
32
+ sign % 123456
33
+ punctuation & 12346
34
+ punctuation ' 6
35
+ punctuation ( 236
36
+ punctuation ) 356
37
+ sign * 35
38
+ math + 235
39
+ punctuation , 2
40
+ punctuation - 36
41
+ punctuation . 3
42
+ math / 256
43
+ include digits6DotsPlusDot6.uti
44
+ punctuation : 25
45
+ punctuation ; 23
46
+ math < 56
47
+ math = 2356
48
+ math > 45
49
+ punctuation ? 26
50
+ punctuation @ 3457
51
+
52
+ include latinLetterDef8Dots.uti
53
+
54
+ punctuation [ 123567
55
+ punctuation \\ 347
56
+ punctuation ] 234567
57
+ math ^ 23467
58
+ punctuation _ 4567
59
+ sign ` 345
60
+ punctuation { 12356
61
+ sign | 34
62
+ punctuation } 23456
63
+ math ~ 2346
64
+ sign \x007f 456
65
+
66
+ noback sign \x25CF 35 # 9679 black circle
@@ -0,0 +1,297 @@
1
+ # Unicode character definitions, usually multi-cell
2
+ #
3
+ # Copyright (C) 2008 JJB Software, Inc. www.jjb-software.com
4
+ #
5
+ # This file is part of liblouis.
6
+ #
7
+ # liblouis is free software: you can redistribute it and/or modify it
8
+ # under the terms of the GNU Lesser General Public License as
9
+ # published by the Free Software Foundation, either version 2.1 of the
10
+ # License, or (at your option) any later version.
11
+ #
12
+ # liblouis is distributed in the hope that it will be useful, but
13
+ # WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15
+ # Lesser General Public License for more details.
16
+ #
17
+ # You should have received a copy of the GNU Lesser General Public
18
+ # License along with liblouis. If not, see
19
+ # <http://www.gnu.org/licenses/>.
20
+
21
+ lowercase \x2113 4-123 SCRIPT SMALL 006C
22
+ sign \x00B0 356 Degree
23
+ math \x00B1 a-56-235-36 PLUS-MINUS SIGN PLUS-OR-MINUS SIGN
24
+ math \x0391 456-1 GREEK CAPITAL LETTER ALPHA 03B1
25
+ math \x0392 456-12 GREEK CAPITAL LETTER BETA 03B2
26
+ math \x0393 456-1245 GREEK CAPITAL LETTER GAMMA 03B3
27
+ math \x0394 456-145 GREEK CAPITAL LETTER DELTA 03B4
28
+ math \x0395 456-15 GREEK CAPITAL LETTER EPSILON 03B5
29
+ math \x0396 456-156 GREEK CAPITAL LETTER ZETA 03B6
30
+ math \x0397 456-126 GREEK CAPITAL LETTER ETA 03B7
31
+ math \x0398 456-1456 GREEK CAPITAL LETTER THETA 03B8
32
+ math \x0399 456-24 GREEK CAPITAL LETTER IOTA 03B9
33
+ math \x039A 456-13 GREEK CAPITAL LETTER KAPPA 03BA
34
+ math \x039B 456-123 GREEK CAPITAL LETTER LAMDA
35
+ math \x039C 456-134 GREEK CAPITAL LETTER MU 03BC
36
+ math \x039D 456-1345 GREEK CAPITAL LETTER NU 03BD
37
+ math \x039E 456-1346 GREEK CAPITAL LETTER XI 03BE
38
+ math \x039F 456-135 GREEK CAPITAL LETTER OMICRON 03BF
39
+ math \x03A0 456-1234 GREEK CAPITAL LETTER PI 03C0
40
+ math \x03A1 456-1235 GREEK CAPITAL LETTER RHO 03C1
41
+ math \x03A3 456-234 GREEK CAPITAL LETTER SIGMA 03C3
42
+ math \x03A4 456-136 GREEK CAPITAL LETTER TAU 03C4
43
+ math \x03A5 456-136 GREEK CAPITAL LETTER UPSILON 03C5
44
+ math \x03A6 456-124 GREEK CAPITAL LETTER PHI 03C6
45
+ math \x03A7 456-12346 GREEK CAPITAL LETTER CHI 03C7
46
+ math \x03A8 456-1246 GREEK CAPITAL LETTER PSI 03C8
47
+ math \x03A9 456-2456 GREEK CAPITAL LETTER OMEGA 03C9
48
+ math \x03B1 46-1 GREEK SMALL LETTER ALPHA 0391 0391
49
+ math \x03B2 46-12 GREEK SMALL LETTER BETA 0392 0392
50
+ math \x03B3 46-1245 GREEK SMALL LETTER GAMMA 0393 0393
51
+ math \x03B4 46-145 GREEK SMALL LETTER DELTA 0394 0394
52
+ math \x03B5 46-15 GREEK SMALL LETTER EPSILON 0395 0395
53
+ math \x03B6 46-156 GREEK SMALL LETTER ZETA 0396 0396
54
+ math \x03B7 46-236 GREEK SMALL LETTER ETA 0397 0397
55
+ math \x03B8 46-1456 GREEK SMALL LETTER THETA 0398 0398
56
+ math \x03B9 46-24 GREEK SMALL LETTER IOTA 0399 0399
57
+ math \x03BA 46-13 GREEK SMALL LETTER KAPPA 039A 039A
58
+ math \x03BB 46-123 GREEK SMALL LETTER LAMDA GREEK
59
+ math \x03BC 46-134 GREEK SMALL LETTER MU 039C 039C
60
+ math \x03BD 46-1345 GREEK SMALL LETTER NU 039D 039D
61
+ math \x03BE 46-1346 GREEK SMALL LETTER XI 039E 039E
62
+ math \x03BF 46-135 GREEK SMALL LETTER OMICRON 039F 039F
63
+ math \x03C0 46-1234 GREEK SMALL LETTER PI 03A0 03A0
64
+ math \x03C1 46-1235 GREEK SMALL LETTER RHO 03A1 03A1
65
+ math \x03C2 46-25 GREEK SMALL LETTER FINAL SIGMA 03A3 03A3
66
+ math \x03C3 46-234 GREEK SMALL LETTER SIGMA 03A3 03A3
67
+ math \x03C4 46-2345 GREEK SMALL LETTER TAU 03A4 03A4
68
+ math \x03C5 46-136 GREEK SMALL LETTER UPSILON 03A5 03A5
69
+ math \x03C6 46-124 GREEK SMALL LETTER PHI 03A6 03A6
70
+ math \x03C7 46-12346 GREEK SMALL LETTER CHI 03A7 03A7
71
+ math \x03C8 46-125 GREEK SMALL LETTER PSI 03A8 03A8
72
+ math \x03C9 46-135 GREEK SMALL LETTER OMEGA 03A9 03A9
73
+ math \x03D5 46-124 GREEK PHI SYMBOL 03C6 GREEK SMALL LETTER SCRIPT PHI
74
+ math \x2026 a-3-3-3 HORIZONTAL ELLIPSIS 002E 002E 002E
75
+ math \x2032 4-35 PRIME
76
+ math \x2033 3-3 DOUBLE PRIME 2032 2032
77
+ math \x2114 1256 B BAR SYMBOL
78
+ math \x211D 4-6-1235 DOUBLE-STRUCK CAPITAL 0052 DOUBLE-STRUCK
79
+ math \x212B 45-1 ANGSTROM SIGN
80
+ math \x2190 a246-25 LEFTWARDS ARROW
81
+ math \x2191 a-25-24 UPWARDS ARROW
82
+ math \x2192 a-25-135 RIGHTWARDS ARROW
83
+ math \x2193 a-25-36 DOWNWARDS ARROW
84
+ math \x2194 a-246-25-135 LEFT RIGHT ARROW
85
+ math \x2195 a-1246-126-146-246-25-25-135 UP DOWN ARROW
86
+ math \x2196 a-1246-45-246-25-25 NORTH WEST ARROW
87
+ math \x2197 a-1246-45-25-25-135 NORTH EAST ARROW
88
+ math \x2198 a-1246-56-25-25-135 SOUTH EAST ARROW
89
+ math \x2199 a-1246-56-246-25-25 SOUTH WEST ARROW
90
+ math \x219A a-1256-4-1246-246-25-25-12456 LEFTWARDS ARROW WITH STROKE
91
+ math \x219B a-1256-4-1246-25-25-135-12456 RIGHTWARDS ARROW WITH STROKE
92
+ math \x219C a-1246-246-35-25-26 LEFTWARDS WAVE ARROW
93
+ math \x219D a-1246-35-25-26-135 RIGHTWARDS WAVE ARROW
94
+ math \x219E a-1246-246-246-25-25 LEFTWARDS TWO HEADED ARROW
95
+ math \x219F a-1246-126-25-25-135-135 UPWARDS TWO HEADED ARROW
96
+ math \x21A0 a-1246-25-25-135-135 RIGHTWARDS TWO HEADED ARROW
97
+ math \x21A1 a-1246-146-25-25-135-135 DOWNWARDS TWO HEADED ARROW
98
+ math \x21A2 a-1246-246-25-25-6-13456 LEFTWARDS ARROW WITH TAIL
99
+ math \x21A3 a-12456-12346-25-25-135 RIGHTWARDS ARROW WITH TAIL
100
+ math \x21A4 a-1246-246-25-25-1256 LEFTWARDS ARROW FROM BAR
101
+ math \x21A5 a-1246-126-1256-25-25-135 UPWARDS ARROW FROM BAR
102
+ math \x21A6 a-1246-1256-25-25-135 RIGHTWARDS ARROW FROM BAR
103
+ math \x21A7 a-1246-146-1256-25-25-135 DOWNWARDS ARROW FROM BAR
104
+ math \x21A8 a-1246-246-25-1256-25-135 UP DOWN ARROW WITH BASE
105
+ math \x21A9 a-1246-246-25-25-6-135 LEFTWARDS ARROW WITH HOOK
106
+ math \x21AA a-12456-246-25-25-135 RIGHTWARDS ARROW WITH HOOK
107
+ math \x21AB a-1246-246-25-25-46-16 LEFTWARDS ARROW WITH LOOP
108
+ math \x21AC a-1246-46-16-25-25-135 RIGHTWARDS ARROW WITH LOOP
109
+ math \x21AD a-1246-246-35-25-26-135 LEFT RIGHT WAVE ARROW
110
+ math \x21AE a-1256-4-1246-246-25-25-135 LEFT RIGHT ARROW WITH STROKE
111
+ math \x21AF a-1246-146-35-26-35-1359 DOWNWARDS ZIGZAG ARROW
112
+ math \x21B4 a-12456-1256-25-25-135 RIGHTWARDS ARROW WITH CORNER DOWNWARDS
113
+ math \x21B5 a-1246-1456-1256-25-25-135 DOWNWARDS ARROW WITH CORNER LEFTWARDS
114
+ math \x21B6 a-1246-26-35-135 ANTICLOCKWISE TOP SEMICIRCLE ARROW
115
+ math \x21B7 a-1246-246-26-35 CLOCKWISE TOP SEMICIRCLE ARROW
116
+ math \x21BA a-1246-26-35-135 ANTICLOCKWISE OPEN CIRCLE ARROW
117
+ math \x21BB a-1246-246-26-35 CLOCKWISE OPEN CIRCLE ARROW
118
+ math \x21BC a-1246-4-246-25-25 LEFTWARDS HARPOON WITH BARB UPWARDS
119
+ math \x21BD a-12456-246-25-25 LEFTWARDS HARPOON WITH BARB DOWNWARDS
120
+ math \x21BE a-1246-126-25-25-6-135 UPWARDS HARPOON WITH BARB RIGHTWARDS
121
+ math \x21BF a-1246-126-25-25-4-135 UPWARDS HARPOON WITH BARB LEFTWARDS
122
+ math \x21C0 a-1246-25-25-4-135 RIGHTWARDS HARPOON WITH BARB UPWARDS
123
+ math \x21C1 a-1246-25-25-6-135 RIGHTWARDS HARPOON WITH BARB DOWNWARS
124
+ math \x21C2 a-1246-246-25-25-4-135 DOWNWARDS HARPOON WITH BARB RIGHTWARDS
125
+ math \x21C3 a-1246-146-25-25-6-135 DOWNWARDS HARPOON WITH BARB LEFTWARDS
126
+ math \x21C4 1246-25-25-135-1246-246-25-25 RIGHTWARDS ARROW OVER LEFTWARDS ARROW
127
+ math \x21C5 1246-126-25-25-135-5-1246-146-25-25-135 UPWARDS ARROW LEFTWARDS OF DOWNWARDS ARROW
128
+ math \x21C6 1246-246-25-25-1246-25-25-135 LEFTWARDS ARROW OVER RIGHTWARDS ARROW
129
+ math \x21C7 1246-245-25-25-1246-245-25-25 LEFTWARDS PAIRED ARROWS
130
+ math \x21C8 1246-126-25-25-135-5-1246-126-25-25-135 UPWARDS PAIRED ARROWS
131
+ math \x21C9 1246-25-25-135-1246-25-25-135 RIGHTWARDS PAIRED ARROWS
132
+ math \x21CA 1246-146-25-25-135-5-1246-146-25-25-135 DOWNWARDS PAIRED ARROWS
133
+ math \x21CB 1246-4-246-25-25-1246-25-25-4-135 LEFTWARDS HARPOON OVER RIGHTWARDS HARPOON
134
+ math \x21CC 1246-25-25-4-135-1246-4-246-25-25 RIGHTWARDS HARPOON OVER LEFTWARDS HARPOON
135
+ math \x21CD a-1256-4-1246-246-246-25-25 LEFTWARDS DOUBLE ARROW WITH STROKE
136
+ math \x21CE a-1256-4-1246-246-246-25-25-135-135 LEFT RIGHT DOUBLE ARROW WITH STROKE
137
+ math \x21CF a-1256-4-1246-25-25-135-135 RIGHTWARDS DOUBLE ARROW WITH STROKE
138
+ math \x21D0 a-246-246-25 LEFTWARDS DOUBLE ARROW
139
+ math \x21D1 a-1246-126-25-25-135-135 UPWARDS DOUBLE ARROW
140
+ math \x21D2 a-25-135-135 RIGHTWARDS DOUBLE ARROW
141
+ math \x21D3 a-1246-126-25-25-135-135 DOWNWARDS DOUBLE ARROW
142
+ math \x21D4 a-1246-246-246-25-25-135-135 LEFT RIGHT DOUBLE ARROW
143
+ math \x21D5 a-1246-126-246-246-25-25-135-135 UP DOWN DOUBLE ARROW
144
+ math \x21D6 a-1246-45-246-246-25-25 NORTH WEST DOUBLE ARROW
145
+ math \x21D7 a-1246-45-25-25-135-135 NORTH EAST DOUBLE ARROW
146
+ math \x21D8 a-1246-56-25-25-135-135 SOUTH EAST DOUBLE ARROW
147
+ math \x21D9 a-1246-56-246-246-25-25 SOUTH WEST DOUBLE ARROW
148
+ math \x21DA a-1246-246-246-246-25-25 LEFTWARDS TRIPLE ARROW
149
+ math \x21DB a-1246-25-25-135-135-135 RIGHTWARDS TRIPLE ARROW
150
+ math \x21DC a-1246-246-26-36-35-25-26 LEFTWARDS SQUIGGLE ARROW
151
+ math \x21DD a-1246-26-36-35-25-26-135 RIGHTWARDS SQUIGGLE ARROW
152
+ math \x21DE a-1256-1256-4-1246-126-25-25-135-12456 UPWARDS ARROW WITH DOUBLE STROKE
153
+ math \x21DF a-1256-1256-4-1246-146-25-25-135-12456 DOWNWARDS ARROW WITH DOUBLE STROKE
154
+ math \x21E0 a-1246-246-25-25 LEFTWARDS DASHED ARROW
155
+ math \x21E1 a-1246-126-25-25-135 UPWARDS DASHED ARROW
156
+ math \x21E2 a-1246-25-25-135 RIGHTWARDS DASHED ARROW
157
+ math \x21E3 a-1246-146-25-25-135 DOWNWARDS DASHED ARROW
158
+ math \x21E4 a-1246-1256-246-25-25 LEFTWARDS ARROW TO BAR
159
+ math \x21E5 a-1246-25-25-135-1256 RIGHTWARDS ARROW TO BAR
160
+ math \x21E6 a-1246-456-246-25-25 LEFTWARDS WHITE ARROW
161
+ math \x21E7 a-1246-126-456-25-25-135 UPWARDS WHITE ARROW
162
+ math \x21E8 a-1246-456-25-25-135 RIGHTWARDS WHITE ARROW
163
+ math \x21E9 a-1246-146-456-25-25-135 DOWNWARDS WHITE ARROW
164
+ math \x21F3 a-1246-126-456-246-25-25-135 UP DOWN WHITE ARROW
165
+ math \x21F4 a-1246-25-25-135-46-16 RIGHT ARROW WITH SMALL CIRCLE
166
+ math \x21F5 a-1246-146-25-25-135-5-1246-126-25-25-135 DOWNWARDS ARROW LEFTWARDS OF UPWARDS ARROW
167
+ math \x21F6 a-1246-25-25-135-1246-25-25-135-1246-25-25-135 THREE RIGHTWARDS ARROWS
168
+ math \x21F7 a-1256-4-1246-246-25-25-12456 LEFTWARDS ARROW WITH VERTICAL STROKE
169
+ math \x21F8 a-1256-4-1246-25-25-135-12456 RIGHTWARDS ARROW WITH VERTICAL STROKE
170
+ math \x21F9 a-1256-4-1246-246-25-25-135 LEFT RIGHT ARROW WITH VERTICAL STROKE
171
+ math \x21FA a-1256-1256-4-1246-246-25-25-12456 LEFTWARDS ARROW WITH DOUBLE VERTICAL STROKE
172
+ math \x21FB a-1256-1256-4-1246-25-25-135-12456 RIGHTWARDS ARROW WITH DOUBLE VERTICAL STROKE
173
+ math \x21FC a-1256-1256-4-1246-246-25-25-135 LEFT RIGHT ARROW WITH DOUBLE VERTICAL STROKE
174
+ math \x21FD a-1246-1256-25-25 LEFTWARDS OPEN-HEADED ARROW
175
+ math \x21FE a-1246-25-25-1256 RIGHTWARDS OPEN-HEADED ARROW
176
+ math \x21FF a-1246-1256-25-25-1256 LEFT RIGHT OPEN-HEADED ARROW
177
+ math \x2200 1256-2 FOR ALL
178
+ math \x2202 4-145 PARTIAL DIFFERENTIAL
179
+ math \x2203 1256-26 THERE EXISTS
180
+ math \x2204 34-4-123456 THERE DOES NOT EXIST
181
+ math \x2205 1256-356 EMPTY SET
182
+ math \x2207 456-356 NABLA
183
+ math \x2208 1256-35 ELEMENT OF
184
+ math \x2209 34-4-15 NOT AN ELEMENT OF
185
+ math \x220B 1256-135 CONTAINS AS MEMBER
186
+ math \x220C 35-1256-135 DOES NOT CONTAIN AS MEMBER
187
+ math \x220D 4-26 SMALL CONTAINS AS MEMBER
188
+ math \x220E a-123456-123456 END OF PROOF
189
+ math \x2211 456-234 NRY SUMMATION
190
+ math \x2212 a-56-36 MINUS SIGN
191
+ math \x2217 4-3456 ASTERISK OPERATOR
192
+ math \x2218 356 degrees sign
193
+ math \x221D a-25-2356 PROPORTIONAL TO
194
+ math \x221E 123456 INFINITY
195
+ math \x221F 1246-246-46-1235-12456 RIGHT ANGLE
196
+ math \x2220 1456-246 ANGLE
197
+ math \x2221 1246-246-456-1246-1246-1-12456 MEASURED ANGLE
198
+ math \x2222 1246-246-456-1246-1246-1-12456 Spherical ANGLE
199
+ math \x2223 1256 DIVIDES
200
+ math \x2224 34-1256 DOES NOT DIVIDE
201
+ math \x2225 a-1246-123 PARALLEL TO
202
+ math \x2226 a-34-1246-123 NOT PARALLEL TO
203
+ math \x2229 1256-2356 INTERSECTION
204
+ math \x222A 1256-235 UNION
205
+ math \x222B 2346 INTEGRAL
206
+ math \x222C 2346-2346 DOUBLE INTEGRAL
207
+ math \x222D 2346-2346-2346 TRIPLE INTEGRAL
208
+ math \x222E 2346-4-1246-14-12456 CONTOUR INTEGRAL
209
+ math \x2232 2346-4-1246-246-26-35-12456 CLOCKWISE CONTOUR INTEGRAL
210
+ math \x2233 2346-4-1246-26-35-135-12456 ANTICLOCKWISE CONTOUR INTEGRAL
211
+ math \x2234 a-6-16 THEREFORE
212
+ math \x2235 a-4-34 BECAUSE
213
+ math \x2236 a-5-2 RATIO
214
+ math \x2245 a-456-2356 APPROXIMATELY EQUAL TO
215
+ math \x224D a-2356-2356 EQUIVALENT TO
216
+ math \x2260 a-35-2356 NOT EQUAL TO
217
+ math \x2261 a-456-123 IDENTICAL TO
218
+ math \x2264 a-246-2356 LESS-THAN OR EQUAL TO
219
+ math \x2265 a-135-2356 GREATER-THAN OR EQUAL TO GREATER THAN OR EQUAL TO
220
+ math \x2266 a-246-456-2356 LESS-THAN OVER EQUAL TO
221
+ math \x2267 a-46-2-46-13 GREATER-THAN OVER EQUAL TO
222
+ math \x2268 a-246-35-2356 LESS-THAN BUT NOT EQUAL TO
223
+ math \x2269 a-135-35-2356 GREATER-THAN BUT NOT EQUAL TO
224
+ math \x226A a-246-246 MUCH LESS-THAN
225
+ math \x226B a-135-135 MUCH GREATER-THAN
226
+ math \x226D a-35-2356-2356 NOT EQUIVALENT TO
227
+ math \x226E a-35-246 NOT LESS-THAN
228
+ math \x226F a-35-135 NOT GREATER-THAN
229
+ math \x2270 a-34-5-13-156 NEITHER LESS-THAN NOR EQUAL TO
230
+ math \x2271 a-34-46-2-156 NEITHER GREATER-THAN NOR EQUAL TO
231
+ math \x2272 a-246-2356-2356 LESS-THAN OR EQUIVALENT TO
232
+ math \x2273 a-135-2356-2356 GREATER-THAN OR EQUIVALENT TO
233
+ math \x2274 a-34-5-13-456-123 NEITHER LESS-THAN NOR EQUIVALENT TO
234
+ math \x2275 a-34-46-2-456-123 NEITHER GREATER-THAN NOR EQUIVALENT TO
235
+ math \x2276 a-5-13-46-2 LESS-THAN OR GREATER-THAN
236
+ math \x2277 a-46-2-5-13 GREATER-THAN OR LESS-THAN
237
+ math \x2278 a-34-5-13-46-2 NEITHER LESS-THAN NOR GREATER-THAN
238
+ math \x2279 a-34-46-2-5-13 NEITHER GREATER-THAN NOR LESS-THAN
239
+ math \x2282 456-5-13 SUBSET OF
240
+ math \x2283 456-46-2 SUPERSET OF
241
+ math \x2284 34-456-5-13 NOT A SUBSET OF
242
+ math \x2285 34-456-46-2 NOT A SUPERSET OF
243
+ math \x2286 456-5-13-156 SUBSET OF OR EQUAL TO
244
+ math \x2287 46-2-156 SUPERSET OF OR EQUAL TO
245
+ math \x2288 34-5-13-156 NEITHER A SUBSET OF NOR EQUAL TO
246
+ math \x2289 34-46-2-156 NEITHER A SUPERSET OF NOR EQUAL TO
247
+ math \x228A 456-5-13-34-46-13 SUBSET OF WITH NOT EQUAL TO
248
+ math \x228B 456-46-2-34-46-13 SUPERSET OF WITH NOT EQUAL TO
249
+ math \x2295 1246-14-456-1246-346-12456 CIRCLED PLUS
250
+ math \x2296 1246-14-456-1246-36-12456 CIRCLED MINUS
251
+ math \x2297 1246-14-456-1246-4-16-12456 CIRCLED TIMES
252
+ math \x2298 1246-14-456-1246-456-34-12456 CIRCLED DIVISION SLASH
253
+ math \x2299 1246-14-456-1246-16-12456 CIRCLED DOT OPERATOR
254
+ math \x229B 1246-14-456-1246-4-3456-12456 CIRCLED ASTERISK OPERATOR
255
+ math \x229C 1246-14-456-1246-46-13-12456 CIRCLED EQUALS
256
+ math \x229D 1246-14-456-1246-36-36-12456 CIRCLED DASH
257
+ math \x229E 1246-256-456-1246-346-12456 SQUARED PLUS
258
+ math \x229F 1246-256-456-1246-36-12456 SQUARED MINUS
259
+ math \x22A0 1246-256-456-1246-4-16-12456 SQUARED TIMES
260
+ math \x22A1 1246-256-456-1246-16-12456 SQUARED DOT OPERATOR
261
+ math \x22A5 a-3456-3 Perpendicular TO
262
+ math \x22A5 a-34-1246-1234 not Perpendicular TO
263
+ math \x22C5 56-3 dot operator
264
+ math \x22DC a-2356-246 EQUAL TO OR LESS-THAN
265
+ math \x22DD a-2356-135 EQUAL TO OR GREATER-THAN
266
+ math \x22EE 126-3-3-3 VERTICAL ELLIPSIS
267
+ math \x22EF 3-3-3 MIDLINE HORIZONTAL ELLIPSIS
268
+ math \x22F0 45-3-3-3 UP RIGHT DIAGONAL ELLIPSIS
269
+ math \x22F1 56-3-3-3 DOWN RIGHT DIAGONAL ELLIPSIS
270
+ math \x2322 a-1246-1 arc
271
+ math \x25A0 1246-456-12345 filled Square
272
+ math \x25A1 1246-12345 Square
273
+ math \x25AB 1246-456-1235 filled Rectangle
274
+ math \x25AC 1246-1235 Rectangle
275
+ math \x25B0 1246-456-1245 filled PARALLELOGRAM
276
+ math \x25B1 1246-1245 PARALLELOGRAM
277
+ math \x25B2 1246-456-145 Filled Triangle
278
+ math \x25B3 1246-145 Triangle
279
+ math \x25BC 456-46-1246 BLACK DOWN-POINTING TRIANGLE
280
+ math \x25BD 46-1246 WHITE DOWN-POINTING TRIANGLE
281
+ math \x25CF 1246-456-14 Filled Circle
282
+ math \x25CB 1246-25 Circle
283
+ math \xf577 1246-135 contracted right arrow
284
+ sign * 4-3456 ASTERISK OPERATOR
285
+ sign \x009A a SINGLE CHARACTER INTRODUCER
286
+ sign \x00A2 4-14 CENT SIGN
287
+ sign \x00A7 4-6-234 SECTION SIGN
288
+ sign \x00A9 12356-6-14-23456 COPYRIGHT SIGN
289
+ sign \x00B7 16 MIDDLE DOT
290
+ sign \x00D7 a-56-236 MULTIPLICATION SIGN
291
+ sign \x00F7 a-56-256 DIVISION SIGN
292
+ sign \x2022 35-35 BULLET
293
+ sign \x2215 456-34 DIVISION slash
294
+ sign \x2715 a-56-236 MULTIPLICATION SIGN
295
+ space \x2009 0 THIN SPACE 0020
296
+ space \x2061 0 FUNCTION APPLICATION
297
+
@@ -0,0 +1,240 @@
1
+ # liblouis: Macedonian Grade 1 Braille Table
2
+ #
3
+ # Copyright (C) 2025 Kristijan Lazarev
4
+ # Maintainers: Kristijan Lazarev, Blazhe Zafirov
5
+ # Contact: lazarev@nssrm.org.mk
6
+ #
7
+ # This file is part of liblouis.
8
+ #
9
+ # liblouis is free software: you can redistribute it and/or modify it
10
+ # under the terms of the GNU Lesser General Public License as published by
11
+ # the Free Software Foundation, either version 2.1 of the License, or
12
+ # (at your option) any later version.
13
+ #
14
+ # liblouis is distributed in the hope that it will be useful,
15
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
16
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17
+ # Lesser General Public License for more details.
18
+ #
19
+ # You should have received a copy of the GNU Lesser General Public License
20
+ # along with liblouis. If not, see http://www.gnu.org/licenses/.
21
+ #
22
+ #-author: Kristijan Lazarev <lazarev@nssrm.org.mk>
23
+ #-maintainer: Kristijan Lazarev <lazarev@nssrm.org.mk>
24
+ #-maintainer: Blazhe Zafirov
25
+ #-license: LGPLv2.1
26
+ #-copyright: 2025, Kristijan Lazarev <lazarev@nssrm.org.mk>
27
+ #
28
+ # Motivation and background
29
+ # Macedonia, officially Republic of North Macedonia, currently has no officially published,
30
+ # unified Braille standard. What is used in practice is a consistent tradition
31
+ # maintained by the State School for the Blind Dimitar Vlahov in Skopje for more than seven decades, and
32
+ # by the National Union of the Blind of the Republic of North Macedonia.
33
+ # This first version preserves the defacto letter assignments used in education,
34
+ # removes a few ambiguous patterns, and aims to make Macedonian available in
35
+ # open-source screen readers via Liblouis.
36
+ #
37
+ # Author and authority
38
+ # Kristijan Lazarev — teacher of Macedonian language and literature at the State
39
+ # School for the Blind “Dimitar Vlahov” (Skopje) and Braille user, with knowledge
40
+ # and support from the National Union of the Blind of the Republic of North Macedonia.
41
+ #
42
+ #-index-name: Macedonian
43
+ #-display-name: Macedonian braille
44
+ #
45
+ # Table type: literary, both directions
46
+ # Language: Macedonian
47
+ # Version: 1.0 (initial submission)
48
+ #
49
+ #+language: mk
50
+ #+type: literary
51
+ #+dots: 6
52
+ #+direction: both
53
+ #+contraction: no
54
+
55
+ include spaces.uti
56
+
57
+ #capsletter 46
58
+ capsletter 46 #single capital letter
59
+ begcapsword 246 #whole word in caps
60
+
61
+ # digits after numsign
62
+
63
+ numsign 3456
64
+
65
+ litdigit 1 1
66
+ litdigit 2 12
67
+ litdigit 3 14
68
+ litdigit 4 145
69
+ litdigit 5 15
70
+ litdigit 6 124
71
+ litdigit 7 1245
72
+ litdigit 8 125
73
+ litdigit 9 24
74
+ litdigit 0 245
75
+
76
+ # punctuation
77
+
78
+ # punctuation (456-* style where possible)
79
+ punctuation . 256
80
+ punctuation , 2
81
+ punctuation ? 26
82
+ punctuation ! 235
83
+ punctuation - 36
84
+ punctuation : 25
85
+ punctuation ; 23
86
+ punctuation \x2026 256-256-256 # …
87
+
88
+ punctuation \x201E 236 # „
89
+ punctuation \x201C 356 # “
90
+
91
+ punctuation ( 12356
92
+ punctuation ) 23456
93
+ punctuation [ 6-12346
94
+ punctuation ] 6-13456
95
+ punctuation { 6-126
96
+ punctuation } 6-345
97
+
98
+ sign \x00D7 6-3 # ×
99
+ sign \x00F7 6-23 # ÷
100
+
101
+ sign \x2122 456-2345-134 # ™
102
+ sign \x00A9 456-1-1234 # ©
103
+ sign \x00AE 456-1235-15-1245 # ®
104
+ sign \x2022 6-12 # •
105
+ punctuation / 456-34
106
+ punctuation \\ 456-16
107
+
108
+ sign < 6-246
109
+ sign > 6-135
110
+ sign = 6-2356
111
+ sign + 6-235
112
+ sign @ 456-134
113
+ sign # 456-3456
114
+ sign $ 456-145
115
+ sign % 456-1234
116
+ sign ^ 456-13
117
+ sign & 456-24
118
+ sign \x002a 456-1256
119
+ sign | 456-456
120
+ sign _ 456-36
121
+ sign \x20AC 456-15 # €
122
+ sign \x00B0 456-234 # °
123
+
124
+ punctuation \x2014 6-36 # —
125
+ punctuation \x2013 6-36 # –
126
+ punctuation ' 3
127
+ punctuation \x2019 6-356 # ’
128
+ punctuation \x2018 6-236 # ‘
129
+ punctuation ` 45
130
+
131
+ # letters (same dot patterns as output)
132
+ letter \x0430 1
133
+ base uppercase \x0410 \x0430
134
+
135
+ letter \x0431 12
136
+ base uppercase \x0411 \x0431
137
+
138
+ letter \x0432 1236
139
+ base uppercase \x0412 \x0432
140
+
141
+ letter \x0433 1245
142
+ base uppercase \x0413 \x0433
143
+
144
+ letter \x0434 145
145
+ base uppercase \x0414 \x0434
146
+
147
+ letter \x0435 15
148
+ base uppercase \x0415 \x0435
149
+
150
+ letter \x0436 2346
151
+ base uppercase \x0416 \x0436
152
+
153
+ letter \x0437 1356
154
+ base uppercase \x0417 \x0437
155
+
156
+ letter \x0438 24
157
+ base uppercase \x0418 \x0438
158
+
159
+ letter \x0458 245
160
+ base uppercase \x0408 \x0458
161
+
162
+ letter \x043A 13
163
+ base uppercase \x041A \x043A
164
+
165
+ letter \x043B 123
166
+ base uppercase \x041B \x043B
167
+
168
+ letter \x0459 126
169
+ base uppercase \x0409 \x0459
170
+
171
+ letter \x043C 134
172
+ base uppercase \x041C \x043C
173
+
174
+ letter \x043D 1345
175
+ base uppercase \x041D \x043D
176
+
177
+ letter \x045A 1246
178
+ base uppercase \x040A \x045A
179
+
180
+ letter \x043E 135
181
+ base uppercase \x041E \x043E
182
+
183
+ letter \x043F 1234
184
+ base uppercase \x041F \x043F
185
+
186
+ letter \x0440 1235
187
+ base uppercase \x0420 \x0440
188
+
189
+ letter \x0441 234
190
+ base uppercase \x0421 \x0441
191
+
192
+ letter \x0442 2345
193
+ base uppercase \x0422 \x0442
194
+
195
+ letter \x045C 34
196
+ base uppercase \x040C \x045C
197
+
198
+ letter \x0443 136
199
+ base uppercase \x0423 \x0443
200
+
201
+ letter \x0444 124
202
+ base uppercase \x0424 \x0444
203
+
204
+ letter \x0445 125
205
+ base uppercase \x0425 \x0445
206
+
207
+ letter \x0446 14
208
+ base uppercase \x0426 \x0446
209
+
210
+ letter \x0447 16
211
+ base uppercase \x0427 \x0447
212
+
213
+ letter \x045F 12456
214
+ base uppercase \x040F \x045F
215
+
216
+ letter \x0448 156
217
+ base uppercase \x0428 \x0448
218
+
219
+ letter \x0453 345
220
+ base uppercase \x0403 \x0453
221
+
222
+ letter \x0455 1256
223
+ base uppercase \x0405 \x0455
224
+
225
+ letter \x0450 4-15
226
+ base uppercase \x0400 \x0450
227
+
228
+ letter \x045D 4-24
229
+ base uppercase \x040D \x045D
230
+
231
+ # e and i with accent
232
+ sign \x0450 4-15 # Cyrillic ѐ
233
+ sign \x00E8 4-15 # Latin è
234
+ sign \x00EC 4-24 # Latin ì
235
+
236
+ # Latin alphabet for output only
237
+ include latinLetterDef6Dots.uti
238
+
239
+ # Digits to display
240
+ include digits6Dots.uti
@@ -0,0 +1,27 @@
1
+ # This table contains braille codes and rules for Malayalam Grade 1 and includes English grade 1
2
+ #
3
+ # Copyright (C) 2014 National Institute for Visually Handicapped, 116, Rajpur Road, Dehradun, Uttrakhand, India
4
+ #
5
+ # This file is part of liblouis.
6
+ #
7
+ # liblouis is free software: you can redistribute it and/or modify it
8
+ # under the terms of the GNU Lesser General Public License as
9
+ # published by the Free Software Foundation, either version 2.1 of the
10
+ # License, or (at your option) any later version.
11
+ #
12
+ # liblouis is distributed in the hope that it will be useful, but
13
+ # WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15
+ # Lesser General Public License for more details.
16
+ #
17
+ # You should have received a copy of the GNU Lesser General Public
18
+ # License along with liblouis. If not, see
19
+ # <http://www.gnu.org/licenses/>.
20
+
21
+ # This table is built and maintained under an activity of Braille Council of India
22
+ # Contributors: Dipendra Manocha, Sreeja, Dinesh Kaushal, Mesar Hameed
23
+ # Last updated on May 5, 2014
24
+ # To report any bugs or any suggestion, please write to d@saksham.org and sreeja.param@gmail.com
25
+
26
+ include malayalam.cti
27
+ include en-in-g1.ctb