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,775 @@
1
+ # LibLouis table for both modern and ancient Greek braille
2
+ # ελληνικό σύστημα μπράιγ [Greek Braille System]
3
+ # κέντρο εκπαίδευσης και αποκατάστασης τυφλών [Center for Education and Rehabilitation for the Blind]
4
+ #
5
+ # -----------
6
+ #-name: ελληνικό σύστημα μπράιγ
7
+ #-index-name: Greek
8
+ #-display-name: Greek braille
9
+ #
10
+ #+language: el
11
+ #+type: literary
12
+ #+dots: 6
13
+ #+contraction: full
14
+ # Marked as "direction:both" by Bue Vester-Andersen
15
+ # as tests run both forward and backward
16
+ #+direction:both
17
+ #
18
+ #-copyright: 2017, Dave Mielke
19
+ #-license: LGPLv2.1
20
+ #
21
+ #-author: Dave Mielke <dave@mielke.cc>
22
+ # -----------
23
+ #
24
+ # Copyright (C) 2017 Dave Mielke: <dave@mielke.cc>, [http://mielke.cc/]
25
+
26
+ # This file is part of liblouis.
27
+ #
28
+ # liblouis is free software: you can redistribute it and/or modify it
29
+ # under the terms of the GNU Lesser General Public License as
30
+ # published by the Free Software Foundation, either version 2.1 of
31
+ # the License, or (at your option) any later version.
32
+ #
33
+ # liblouis is distributed in the hope that it will be useful, but
34
+ # WITHOUT ANY WARRANTY; without even the implied warranty of
35
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
36
+ # Lesser General Public License for more details.
37
+ #
38
+ # You should have received a copy of the GNU Lesser General Public
39
+ # License along with liblouis. If not, see
40
+ # <http://www.gnu.org/licenses/>.
41
+ #
42
+ # Created and maintained by Dave Mielke: <dave@mielke.cc>, [http://mielke.cc/]
43
+
44
+ ##########
45
+ # Spaces #
46
+ ##########
47
+
48
+ space \x00a0 a
49
+ include spaces.uti
50
+
51
+ ##################
52
+ # Greek Alphabet #
53
+ ##################
54
+
55
+ lowercase \x03B1 1 # α Alpha
56
+ lowercase \x03B2 12 # β Beta
57
+ lowercase \x03B3 1245 # γ Gamma
58
+ lowercase \x03B4 145 # δ Delta
59
+ lowercase \x03B5 15 # ε Epsilon
60
+ lowercase \x03B6 1356 # ζ Zeta
61
+ lowercase \x03B7 345 # η Eta
62
+ lowercase \x03B8 1456 # θ Theta
63
+ lowercase \x03B9 24 # ι Iota
64
+ lowercase \x03BA 13 # κ Kappa
65
+ lowercase \x03BB 123 # λ Lambda
66
+ lowercase \x03BC 134 # μ Mu
67
+ lowercase \x03BD 1345 # ν Nu
68
+ lowercase \x03BE 1346 # ξ Xi
69
+ lowercase \x03BF 135 # ο Omicron
70
+ lowercase \x03C0 1234 # π Pi
71
+ lowercase \x03C1 1235 # ρ Rho
72
+ lowercase \x03C3 234 # σ Sigma
73
+ lowercase \x03C4 2345 # τ Tau
74
+ lowercase \x03C5 13456 # υ Upsilon
75
+ lowercase \x03C6 124 # φ Phi
76
+ lowercase \x03C7 125 # χ Chi
77
+ lowercase \x03C8 12346 # ψ Psi
78
+ lowercase \x03C9 245 # ω Omega
79
+
80
+ base uppercase \x0391 \x03B1 # Αα Alpha
81
+ base uppercase \x0392 \x03B2 # Ββ Beta
82
+ base uppercase \x0393 \x03B3 # Γγ Gamma
83
+ base uppercase \x0394 \x03B4 # Δδ Delta
84
+ base uppercase \x0395 \x03B5 # Εε Epsilon
85
+ base uppercase \x0396 \x03B6 # Ζζ Zeta
86
+ base uppercase \x0397 \x03B7 # Ηη Eta
87
+ base uppercase \x0398 \x03B8 # Θθ Theta
88
+ base uppercase \x0399 \x03B9 # Ιι Iota
89
+ base uppercase \x039A \x03BA # Κκ Kappa
90
+ base uppercase \x039B \x03BB # Λλ Lambda
91
+ base uppercase \x039C \x03BC # Μμ Mu
92
+ base uppercase \x039D \x03BD # Νν Nu
93
+ base uppercase \x039E \x03BE # Ξξ Xi
94
+ base uppercase \x039F \x03BF # Οο Omicron
95
+ base uppercase \x03A0 \x03C0 # Ππ Pi
96
+ base uppercase \x03A1 \x03C1 # Ρρ Rho
97
+ base uppercase \x03A3 \x03C3 # Σσ Sigma
98
+ base uppercase \x03A4 \x03C4 # Ττ Tau
99
+ base uppercase \x03A5 \x03C5 # Υυ Upsilon
100
+ base uppercase \x03A6 \x03C6 # Φφ Phi
101
+ base uppercase \x03A7 \x03C7 # Χχ Chi
102
+ base uppercase \x03A8 \x03C8 # Ψψ Psi
103
+ base uppercase \x03A9 \x03C9 # Ωω Omega
104
+
105
+ # ς Final Sigma
106
+ lowercase \x03C2 234
107
+ endword \x03C2 234
108
+
109
+ #################
110
+ # Greek Accents #
111
+ #################
112
+
113
+ sign \x1FEF 4 # ` Varia Accent (Grave)
114
+ sign \x0384 5 # ΄ Tonos Accent (Acute)
115
+ sign \x1FFD 5 # ´ Oxia Accent (Acute)
116
+ sign \x1FC0 6 # ῀ Perispomeni Accent (Circumflex)
117
+
118
+ sign \x1FCD 23456 # ῍ Psili and Varia Accents (Smooth Breathing and Grave)
119
+ sign \x1FCE 356 # ῎ Psili and Oxia Accents (Smooth Breathing and Acute)
120
+ sign \x1FCF 256 # ῏ Psili and Perispomeni Accents (Smooth Breathing and Circumflex)
121
+
122
+ sign \x1FFE 1236 # ῾ Dasia Accent (Rough Breathing)
123
+ sign \x1FDD 12356 # ῝ Dasia and Varia Accents (Rough Breathing and Grave)
124
+ sign \x1FDE 26 # ῞ Dasia and Oxia Accents (Rough Breathing and Acute)
125
+ sign \x1FDF 235 # ῟ Dasia and Perispomeni Accents (Rough Breathing and Circumflex)
126
+
127
+ # ⠈ v ⠐ o ⠠ p ⠾ p+v ⠴ p+o ⠲ p+p ⠧ d ⠷ d+v ⠢ d+o ⠖ d+p
128
+ attribute accent \x1FEF\x0384\x1FC0\x1FCD\x1FCE\x1FCF\x1FFE\x1FDD\x1FDE\x1FDF
129
+
130
+ ##########################
131
+ # Greek Accented Letters #
132
+ ##########################
133
+
134
+ lowercase \x03AC 5-1 # ά Alpha with Tonos
135
+ lowercase \x1F71 5-1 # ά Alpha with Oxia
136
+ lowercase \x1F70 4-1 # ὰ Alpha with Varia
137
+ lowercase \x1FB1 1 # ᾱ Alpha with Macron
138
+ lowercase \x1FB0 1 # ᾰ Alpha with Vrachy
139
+ lowercase \x1F00 1 # ἀ Alpha with Psili
140
+ lowercase \x1F04 356-1 # ἄ Alpha with Psili and Oxia
141
+ lowercase \x1F02 23456-1 # ἂ Alpha with Psili and Varia
142
+ lowercase \x1F06 256-1 # ἆ Alpha with Psili and Perispomeni
143
+ lowercase \x1F01 1236-1 # ἁ Alpha with Dasia
144
+ lowercase \x1F05 26-1 # ἅ Alpha with Dasia and Oxia
145
+ lowercase \x1F03 12356-1 # ἃ Alpha with Dasia and Varia
146
+ lowercase \x1F07 235-1 # ἇ Alpha with Dasia and Perispomeni
147
+ lowercase \x03AD 5-15 # έ Epsilon with Tonos
148
+ lowercase \x1F73 5-15 # έ Epsilon with Oxia
149
+ lowercase \x1F72 4-15 # ὲ Epsilon with Varia
150
+ lowercase \x1F10 15 # ἐ Epsilon with Psili
151
+ lowercase \x1F14 356-15 # ἔ Epsilon with Psili and Oxia
152
+ lowercase \x1F12 23456-15 # ἒ Epsilon with Psili and Varia
153
+ lowercase \x1F11 1236-15 # ἑ Epsilon with Dasia
154
+ lowercase \x1F15 26-15 # ἕ Epsilon with Dasia and Oxia
155
+ lowercase \x1F13 12356-15 # ἓ Epsilon with Dasia and Varia
156
+ lowercase \x03AE 5-345 # ή Eta with Tonos
157
+ lowercase \x1F75 5-345 # ή Eta with Oxia
158
+ lowercase \x1F74 4-345 # ὴ Eta with Varia
159
+ lowercase \x1F20 345 # ἠ Eta with Psili
160
+ lowercase \x1F24 356-345 # ἤ Eta with Psili and Oxia
161
+ lowercase \x1F22 23456-345 # ἢ Eta with Psili and Varia
162
+ lowercase \x1F26 256-345 # ἦ Eta with Psili and Perispomeni
163
+ lowercase \x1F21 1236-345 # ἡ Eta with Dasia
164
+ lowercase \x1F25 26-345 # ἥ Eta with Dasia and Oxia
165
+ lowercase \x1F23 12356-345 # ἣ Eta with Dasia and Varia
166
+ lowercase \x1F27 235-345 # ἧ Eta with Dasia and Perispomeni
167
+ lowercase \x03CA 24 # ϊ Iota with Dialytika
168
+ lowercase \x03AF 5-24 # ί Iota with Tonos
169
+ lowercase \x1F77 5-24 # ί Iota with Oxia
170
+ lowercase \x1F76 4-24 # ὶ Iota with Varia
171
+ lowercase \x1FD1 24 # ῑ Iota with Macron
172
+ lowercase \x1FD0 24 # ῐ Iota with Vrachy
173
+ lowercase \x1F30 24 # ἰ Iota with Psili
174
+ lowercase \x1F34 356-24 # ἴ Iota with Psili and Oxia
175
+ lowercase \x1F32 23456-24 # ἲ Iota with Psili and Varia
176
+ lowercase \x1F36 256-24 # ἶ Iota with Psili and Perispomeni
177
+ lowercase \x1F31 1236-24 # ἱ Iota with Dasia
178
+ lowercase \x1F35 26-24 # ἵ Iota with Dasia and Oxia
179
+ lowercase \x1F33 12356-24 # ἳ Iota with Dasia and Varia
180
+ lowercase \x1F37 235-24 # ἷ Iota with Dasia and Perispomeni
181
+ lowercase \x03CC 5-135 # ό Omicron with Tonos
182
+ lowercase \x1F79 5-135 # ό Omicron with Oxia
183
+ lowercase \x1F78 4-135 # ὸ Omicron with Varia
184
+ lowercase \x1F40 135 # ὀ Omicron with Psili
185
+ lowercase \x1F44 356-135 # ὄ Omicron with Psili and Oxia
186
+ lowercase \x1F42 23456-135 # ὂ Omicron with Psili and Varia
187
+ lowercase \x1F41 1236-135 # ὁ Omicron with Dasia
188
+ lowercase \x1F45 26-135 # ὅ Omicron with Dasia and Oxia
189
+ lowercase \x1F43 12356-135 # ὃ Omicron with Dasia and Varia
190
+ lowercase \x1FE5 1236-1235 # ῥ Rho with Dasia
191
+ lowercase \x03CB 13456 # ϋ Upsilon with Dialytika
192
+ lowercase \x03CD 5-13456 # ύ Upsilon with Tonos
193
+ lowercase \x1F7B 5-13456 # ύ Upsilon with Oxia
194
+ lowercase \x1F7A 4-13456 # ὺ Upsilon with Varia
195
+ lowercase \x1FE1 13456 # ῡ Upsilon with Macron
196
+ lowercase \x1FE0 13456 # ῠ Upsilon with Vrachy
197
+ lowercase \x1F51 1236-13456 # ὑ Upsilon with Dasia
198
+ lowercase \x1F55 26-13456 # ὕ Upsilon with Dasia and Oxia
199
+ lowercase \x1F53 12356-13456 # ὓ Upsilon with Dasia and Varia
200
+ lowercase \x1F57 235-13456 # ὗ Upsilon with Dasia and Perispomeni
201
+ lowercase \x03CE 5-245 # ώ Omega with Tonos
202
+ lowercase \x1F7D 5-245 # ώ Omega with Oxia
203
+ lowercase \x1F7C 4-245 # ὼ Omega with Varia
204
+ lowercase \x1F60 245 # ὠ Omega with Psili
205
+ lowercase \x1F64 356-245 # ὤ Omega with Psili and Oxia
206
+ lowercase \x1F62 23456-245 # ὢ Omega with Psili and Varia
207
+ lowercase \x1F66 256-245 # ὦ Omega with Psili and Perispomeni
208
+ lowercase \x1F61 1236-245 # ὡ Omega with Dasia
209
+ lowercase \x1F65 26-245 # ὥ Omega with Dasia and Oxia
210
+ lowercase \x1F63 12356-245 # ὣ Omega with Dasia and Varia
211
+ lowercase \x1F67 235-245 # ὧ Omega with Dasia and Perispomeni
212
+
213
+ base uppercase \x0386 \x03AC # Άά Alpha with Tonos
214
+ base uppercase \x1FBB \x1F71 # Άά Alpha with Oxia
215
+ base uppercase \x1FBA \x1F70 # Ὰὰ Alpha with Varia
216
+ base uppercase \x1FB9 \x1FB1 # Ᾱᾱ Alpha with Macron
217
+ base uppercase \x1FB8 \x1FB0 # Ᾰᾰ Alpha with Vrachy
218
+ base uppercase \x1F08 \x1F00 # Ἀἀ Alpha with Psili
219
+ base uppercase \x1F0C \x1F04 # Ἄἄ Alpha with Psili and Oxia
220
+ base uppercase \x1F0A \x1F02 # Ἂἂ Alpha with Psili and Varia
221
+ base uppercase \x1F0E \x1F06 # Ἆἆ Alpha with Psili and Perispomeni
222
+ base uppercase \x1F09 \x1F01 # Ἁἁ Alpha with Dasia
223
+ base uppercase \x1F0D \x1F05 # Ἅἅ Alpha with Dasia and Oxia
224
+ base uppercase \x1F0B \x1F03 # Ἃἃ Alpha with Dasia and Varia
225
+ base uppercase \x1F0F \x1F07 # Ἇἇ Alpha with Dasia and Perispomeni
226
+ base uppercase \x0388 \x03AD # Έέ Epsilon with Tonos
227
+ base uppercase \x1FC9 \x1F73 # Έέ Epsilon with Oxia
228
+ base uppercase \x1FC8 \x1F72 # Ὲὲ Epsilon with Varia
229
+ base uppercase \x1F18 \x1F10 # Ἐἐ Epsilon with Psili
230
+ base uppercase \x1F1C \x1F14 # Ἔἔ Epsilon with Psili and Oxia
231
+ base uppercase \x1F1A \x1F12 # Ἒἒ Epsilon with Psili and Varia
232
+ base uppercase \x1F19 \x1F11 # Ἑἑ Epsilon with Dasia
233
+ base uppercase \x1F1D \x1F15 # Ἕἕ Epsilon with Dasia and Oxia
234
+ base uppercase \x1F1B \x1F13 # Ἓἓ Epsilon with Dasia and Varia
235
+ base uppercase \x0389 \x03AE # Ήή Eta with Tonos
236
+ base uppercase \x1FCB \x1F75 # Ήή Eta with Oxia
237
+ base uppercase \x1FCA \x1F74 # Ὴὴ Eta with Varia
238
+ base uppercase \x1F28 \x1F20 # Ἠἠ Eta with Psili
239
+ base uppercase \x1F2C \x1F24 # Ἤἤ Eta with Psili and Oxia
240
+ base uppercase \x1F2A \x1F22 # Ἢἢ Eta with Psili and Varia
241
+ base uppercase \x1F2E \x1F26 # Ἦἦ Eta with Psili and Perispomeni
242
+ base uppercase \x1F29 \x1F21 # Ἡἡ Eta with Dasia
243
+ base uppercase \x1F2D \x1F25 # Ἥἥ Eta with Dasia and Oxia
244
+ base uppercase \x1F2B \x1F23 # Ἣἣ Eta with Dasia and Varia
245
+ base uppercase \x1F2F \x1F27 # Ἧἧ Eta with Dasia and Perispomeni
246
+ base uppercase \x03AA \x03CA # Ϊϊ Iota with Dialytika
247
+ base uppercase \x038A \x03AF # Ίί Iota with Tonos
248
+ base uppercase \x1FDB \x1F77 # Ίί Iota with Oxia
249
+ base uppercase \x1FDA \x1F76 # Ὶὶ Iota with Varia
250
+ base uppercase \x1FD9 \x1FD1 # Ῑῑ Iota with Macron
251
+ base uppercase \x1FD8 \x1FD0 # Ῐῐ Iota with Vrachy
252
+ base uppercase \x1F38 \x1F30 # Ἰἰ Iota with Psili
253
+ base uppercase \x1F3C \x1F34 # Ἴἴ Iota with Psili and Oxia
254
+ base uppercase \x1F3A \x1F32 # Ἲἲ Iota with Psili and Varia
255
+ base uppercase \x1F3E \x1F36 # Ἶἶ Iota with Psili and Perispomeni
256
+ base uppercase \x1F39 \x1F31 # Ἱἱ Iota with Dasia
257
+ base uppercase \x1F3D \x1F35 # Ἵἵ Iota with Dasia and Oxia
258
+ base uppercase \x1F3B \x1F33 # Ἳἳ Iota with Dasia and Varia
259
+ base uppercase \x1F3F \x1F37 # Ἷἷ Iota with Dasia and Perispomeni
260
+ base uppercase \x038C \x03CC # Όό Omicron with Tonos
261
+ base uppercase \x1FF9 \x1F79 # Όό Omicron with Oxia
262
+ base uppercase \x1FF8 \x1F78 # Ὸὸ Omicron with Varia
263
+ base uppercase \x1F48 \x1F40 # Ὀὀ Omicron with Psili
264
+ base uppercase \x1F4C \x1F44 # Ὄὄ Omicron with Psili and Oxia
265
+ base uppercase \x1F4A \x1F42 # Ὂὂ Omicron with Psili and Varia
266
+ base uppercase \x1F49 \x1F41 # Ὁὁ Omicron with Dasia
267
+ base uppercase \x1F4D \x1F45 # Ὅὅ Omicron with Dasia and Oxia
268
+ base uppercase \x1F4B \x1F43 # Ὃὃ Omicron with Dasia and Varia
269
+ base uppercase \x1FEC \x1FE5 # Ῥῥ Rho with Dasia
270
+ base uppercase \x03AB \x03CB # Ϋϋ Upsilon with Dialytika
271
+ base uppercase \x038E \x03CD # Ύύ Upsilon with Tonos
272
+ base uppercase \x1FEB \x1F7B # Ύύ Upsilon with Oxia
273
+ base uppercase \x1FEA \x1F7A # Ὺὺ Upsilon with Varia
274
+ base uppercase \x1FE9 \x1FE1 # Ῡῡ Upsilon with Macron
275
+ base uppercase \x1FE8 \x1FE0 # Ῠῠ Upsilon with Vrachy
276
+ base uppercase \x1F59 \x1F51 # Ὑὑ Upsilon with Dasia
277
+ base uppercase \x1F5D \x1F55 # Ὕὕ Upsilon with Dasia and Oxia
278
+ base uppercase \x1F5B \x1F53 # Ὓὓ Upsilon with Dasia and Varia
279
+ base uppercase \x1F5F \x1F57 # Ὗὗ Upsilon with Dasia and Perispomeni
280
+ base uppercase \x038F \x03CE # Ώώ Omega with Tonos
281
+ base uppercase \x1FFB \x1F7D # Ώώ Omega with Oxia
282
+ base uppercase \x1FFA \x1F7C # Ὼὼ Omega with Varia
283
+ base uppercase \x1F68 \x1F60 # Ὠὠ Omega with Psili
284
+ base uppercase \x1F6C \x1F64 # Ὤὤ Omega with Psili and Oxia
285
+ base uppercase \x1F6A \x1F62 # Ὢὢ Omega with Psili and Varia
286
+ base uppercase \x1F6E \x1F66 # Ὦὦ Omega with Psili and Perispomeni
287
+ base uppercase \x1F69 \x1F61 # Ὡὡ Omega with Dasia
288
+ base uppercase \x1F6D \x1F65 # Ὥὥ Omega with Dasia and Oxia
289
+ base uppercase \x1F6B \x1F63 # Ὣὣ Omega with Dasia and Varia
290
+ base uppercase \x1F6F \x1F67 # Ὧὧ Omega with Dasia and Perispomeni
291
+
292
+ uppercase \x1FBC 1-35 # ᾼ Capital Alpha with Prosgegrammeni
293
+ uppercase \x1F88 1-35 # ᾈ Capital Alpha with Psili and Prosgegrammeni
294
+ uppercase \x1F8C 356-1-35 # ᾌ Capital Alpha with Psili and Oxia and Prosgegrammeni
295
+ uppercase \x1F8A 23456-1-35 # ᾊ Capital Alpha with Psili and Varia and Prosgegrammeni
296
+ uppercase \x1F8E 256-1-35 # ᾎ Capital Alpha with Psili and Perispomeni and Prosgegrammeni
297
+ uppercase \x1F89 1236-1-35 # ᾉ Capital Alpha with Dasia and Prosgegrammeni
298
+ uppercase \x1F8D 26-1-35 # ᾍ Capital Alpha with Dasia and Oxia and Prosgegrammeni
299
+ uppercase \x1F8B 12356-1-35 # ᾋ Capital Alpha with Dasia and Varia and Prosgegrammeni
300
+ uppercase \x1F8F 235-1-35 # ᾏ Capital Alpha with Dasia and Perispomeni and Prosgegrammeni
301
+ uppercase \x1FCC 3456 # ῌ Capital Eta with Prosgegrammeni
302
+ uppercase \x1F98 3456 # ᾘ Capital Eta with Psili and Prosgegrammeni
303
+ uppercase \x1F9C 356-3456 # ᾜ Capital Eta with Psili and Oxia and Prosgegrammeni
304
+ uppercase \x1F9A 23456-3456 # ᾚ Capital Eta with Psili and Varia and Prosgegrammeni
305
+ uppercase \x1F9E 256-3456 # ᾞ Capital Eta with Psili and Perispomeni and Prosgegrammeni
306
+ uppercase \x1F99 1236-3456 # ᾙ Capital Eta with Dasia and Prosgegrammeni
307
+ uppercase \x1F9D 26-3456 # ᾝ Capital Eta with Dasia and Oxia and Prosgegrammeni
308
+ uppercase \x1F9B 12356-3456 # ᾛ Capital Eta with Dasia and Varia and Prosgegrammeni
309
+ uppercase \x1F9F 235-3456 # ᾟ Capital Eta with Dasia and Perispomeni and Prosgegrammeni
310
+ uppercase \x1FFC 2456 # ῼ Capital Omega with Prosgegrammeni
311
+ uppercase \x1FA8 2456 # ᾨ Capital Omega with Psili and Prosgegrammeni
312
+ uppercase \x1FAC 356-2456 # ᾬ Capital Omega with Psili and Oxia and Prosgegrammeni
313
+ uppercase \x1FAA 23456-2456 # ᾪ Capital Omega with Psili and Varia and Prosgegrammeni
314
+ uppercase \x1FAE 256-2456 # ᾮ Capital Omega with Psili and Perispomeni and Prosgegrammeni
315
+ uppercase \x1FA9 1236-2456 # ᾩ Capital Omega with Dasia and Prosgegrammeni
316
+ uppercase \x1FAD 26-2456 # ᾭ Capital Omega with Dasia and Oxia and Prosgegrammeni
317
+ uppercase \x1FAB 12356-2456 # ᾫ Capital Omega with Dasia and Varia and Prosgegrammeni
318
+ uppercase \x1FAF 235-2456 # ᾯ Capital Omega with Dasia and Perispomeni and Prosgegrammeni
319
+
320
+ lowercase \x1FB6 6-1 # ᾶ Small Alpha with Perispomeni
321
+ lowercase \x1FB3 1-35 # ᾳ Small Alpha with Ypogegrammeni
322
+ lowercase \x1FB4 5-1-35 # ᾴ Small Alpha with Oxia and Ypogegrammeni
323
+ lowercase \x1FB2 4-1-35 # ᾲ Small Alpha with Varia and Ypogegrammeni
324
+ lowercase \x1FB7 6-1-35 # ᾷ Small Alpha with Perispomeni and Ypogegrammeni
325
+ lowercase \x1F80 1-35 # ᾀ Small Alpha with Psili and Ypogegrammeni
326
+ lowercase \x1F84 356-1-35 # ᾄ Small Alpha with Psili and Oxia and Ypogegrammeni
327
+ lowercase \x1F82 23456-1-35 # ᾂ Small Alpha with Psili and Varia and Ypogegrammeni
328
+ lowercase \x1F86 256-1-35 # ᾆ Small Alpha with Psili and Perispomeni and Ypogegrammeni
329
+ lowercase \x1F81 1236-1-35 # ᾁ Small Alpha with Dasia and Ypogegrammeni
330
+ lowercase \x1F85 26-1-35 # ᾅ Small Alpha with Dasia and Oxia and Ypogegrammeni
331
+ lowercase \x1F83 12356-1-35 # ᾃ Small Alpha with Dasia and Varia and Ypogegrammeni
332
+ lowercase \x1F87 235-1-35 # ᾇ Small Alpha with Dasia and Perispomeni and Ypogegrammeni
333
+ lowercase \x1FC6 6-345 # ῆ Small Eta with Perispomeni
334
+ lowercase \x1FC3 3456 # ῃ Small Eta with Ypogegrammeni
335
+ lowercase \x1FC4 5-3456 # ῄ Small Eta with Oxia and Ypogegrammeni
336
+ lowercase \x1FC2 4-3456 # ῂ Small Eta with Varia and Ypogegrammeni
337
+ lowercase \x1FC7 6-3456 # ῇ Small Eta with Perispomeni and Ypogegrammeni
338
+ lowercase \x1F90 3456 # ᾐ Small Eta with Psili and Ypogegrammeni
339
+ lowercase \x1F94 356-3456 # ᾔ Small Eta with Psili and Oxia and Ypogegrammeni
340
+ lowercase \x1F92 23456-3456 # ᾒ Small Eta with Psili and Varia and Ypogegrammeni
341
+ lowercase \x1F96 256-3456 # ᾖ Small Eta with Psili and Perispomeni and Ypogegrammeni
342
+ lowercase \x1F91 1236-3456 # ᾑ Small Eta with Dasia and Ypogegrammeni
343
+ lowercase \x1F95 26-3456 # ᾕ Small Eta with Dasia and Oxia and Ypogegrammeni
344
+ lowercase \x1F93 12356-3456 # ᾓ Small Eta with Dasia and Varia and Ypogegrammeni
345
+ lowercase \x1F97 235-3456 # ᾗ Small Eta with Dasia and Perispomeni and Ypogegrammeni
346
+ lowercase \x0390 5-24 # ΐ Small Iota with Dialytika and Tonos
347
+ lowercase \x1FD3 5-24 # ΐ Small Iota with Dialytika and Oxia
348
+ lowercase \x1FD2 4-24 # ῒ Small Iota with Dialytika and Varia
349
+ lowercase \x1FD6 6-24 # ῖ Small Iota with Perispomeni
350
+ lowercase \x1FD7 6-24 # ῗ Small Iota with Dialytika and Perispomeni
351
+ lowercase \x1FE4 1235 # ῤ Small Rho with Psili
352
+ lowercase \x03B0 5-13456 # ΰ Small Upsilon with Dialytika and Tonos
353
+ lowercase \x1FE3 5-13456 # ΰ Small Upsilon with Dialytika and Oxia
354
+ lowercase \x1FE2 4-13456 # ῢ Small Upsilon with Dialytika and Varia
355
+ lowercase \x1FE6 6-13456 # ῦ Small Upsilon with Perispomeni
356
+ lowercase \x1FE7 6-13456 # ῧ Small Upsilon with Dialytika and Perispomeni
357
+ lowercase \x1F50 13456 # ὐ Small Upsilon with Psili
358
+ lowercase \x1F54 356-13456 # ὔ Small Upsilon with Psili and Oxia
359
+ lowercase \x1F52 23456-13456 # ὒ Small Upsilon with Psili and Varia
360
+ lowercase \x1F56 256-13456 # ὖ Small Upsilon with Psili and Perispomeni
361
+ lowercase \x1FF6 6-245 # ῶ Small Omega with Perispomeni
362
+ lowercase \x1FF3 2456 # ῳ Small Omega with Ypogegrammeni
363
+ lowercase \x1FF4 5-2456 # ῴ Small Omega with Oxia and Ypogegrammeni
364
+ lowercase \x1FF2 4-2456 # ῲ Small Omega with Varia and Ypogegrammeni
365
+ lowercase \x1FF7 6-2456 # ῷ Small Omega with Perispomeni and Ypogegrammeni
366
+ lowercase \x1FA0 2456 # ᾠ Small Omega with Psili and Ypogegrammeni
367
+ lowercase \x1FA4 356-2456 # ᾤ Small Omega with Psili and Oxia and Ypogegrammeni
368
+ lowercase \x1FA2 23456-2456 # ᾢ Small Omega with Psili and Varia and Ypogegrammeni
369
+ lowercase \x1FA6 256-2456 # ᾦ Small Omega with Psili and Perispomeni and Ypogegrammeni
370
+ lowercase \x1FA1 1236-2456 # ᾡ Small Omega with Dasia and Ypogegrammeni
371
+ lowercase \x1FA5 26-2456 # ᾥ Small Omega with Dasia and Oxia and Ypogegrammeni
372
+ lowercase \x1FA3 12356-2456 # ᾣ Small Omega with Dasia and Varia and Ypogegrammeni
373
+ lowercase \x1FA7 235-2456 # ᾧ Small Omega with Dasia and Perispomeni and Ypogegrammeni
374
+
375
+ #######################
376
+ # General Punctuation #
377
+ #######################
378
+
379
+ # Hyphen
380
+ sign - 36
381
+ hyphen - 36
382
+
383
+ punctuation ' 3 # ’ Apostrophe
384
+ always '\x03C2 3-234
385
+ always \x03C3' 234-3
386
+
387
+ punctuation , 2 # , Comma
388
+ midnum , 2 # Decimal Point
389
+
390
+ punctuation : 25 # : Colon
391
+
392
+ punctuation \x0387 23 # · Ano Teleia (Semicolon)
393
+ punctuation \x1FBD 3 # ᾽ Koronis (Apostrophe)
394
+ punctuation \x2015 6-36 # ― Dialog (Horizontal) Bar
395
+ punctuation \x2018 3 # ‘ Left Single Quote
396
+ punctuation \x2019 3 # ’ Right Single Quote
397
+ punctuation \x2026 3-3-3 # … Horizontal Ellipsis
398
+
399
+ #########
400
+ # Signs #
401
+ #########
402
+
403
+ sign * 35-35 # Asterisk
404
+ sign / 34 # Slash
405
+ sign _ 456 # Underline
406
+ sign @ 4-1 # At Sign
407
+ sign % 4-356 # Percent Sign
408
+ sign € 4-15 # Euro Sign
409
+ sign $ 4-234 # Dollar Sign
410
+
411
+ ################
412
+ # Math Symbols #
413
+ ################
414
+
415
+ math + 346 # Addition
416
+
417
+ math \x2212 36 # Subtraction
418
+ endnum - 36 # Subtraction
419
+
420
+ math \x00D7 46-16 # Multiplication
421
+ endnum * 46-16 # Multiplication
422
+
423
+ math \x00F7 46-34 # Division
424
+ endnum / 46-34 # Division
425
+
426
+ math = 46-13 # Equals
427
+ math < 5-13 # Less Than
428
+ math > 46-2 # Greater Than
429
+
430
+ #################
431
+ # Braille Cells #
432
+ #################
433
+
434
+ include braille-patterns.cti
435
+
436
+ ##########################
437
+ # Positional Punctuation #
438
+ ##########################
439
+
440
+ # . Period
441
+ punctuation . 256
442
+ midnum . 46 # Digit Grouping
443
+ postpunc . 256
444
+
445
+ # « Greek Opening Quotation Mark (Left-Pointing Double Angle Quotation Mark)
446
+ punctuation \x00AB 23678
447
+ prepunc \x00AB 236
448
+
449
+ # » Greek Closing Quotation Mark (Right-Pointing Double Angle Quotation Mark)
450
+ punctuation \x00BB 35678
451
+ postpunc \x00BB 356
452
+
453
+ # "" English Quotation Marks
454
+ punctuation " 235678
455
+ prepunc " 6-236
456
+ postpunc " 356-3
457
+
458
+ # ( Opening Parenthesis
459
+ punctuation ( 23678
460
+ prepunc ( 2356
461
+
462
+ # ) Closing Parenthesis
463
+ punctuation ) 35678
464
+ postpunc ) 2356
465
+
466
+ # [ Opening Bracket
467
+ punctuation [ 1235678
468
+ prepunc [ 12356
469
+
470
+ # ] Closing Bracket
471
+ punctuation ] 2345678
472
+ postpunc ] 23456
473
+
474
+ # { Opening Brace
475
+ punctuation { 1234678
476
+ prepunc { 12346
477
+
478
+ # } Closing Brace
479
+ punctuation } 1345678
480
+ postpunc } 13456
481
+
482
+ # ? English Question Mark
483
+ punctuation ? 236
484
+ postpunc ? 236
485
+
486
+ # ! Exclamation Mark
487
+ punctuation ! 235
488
+ postpunc ! 235
489
+
490
+ # ; Greek Question Mark
491
+ punctuation \x037E 26
492
+ postpunc \x037E 26
493
+
494
+ ###########
495
+ # Numbers #
496
+ ###########
497
+
498
+ include digits6Dots.uti
499
+
500
+ numsign 3456
501
+ include litdigits6Dots.uti
502
+
503
+ ####################
504
+ # Greek Diphthongs #
505
+ ####################
506
+
507
+ # For the diphthong contractions to be mroe easily coded,
508
+ # we first remove accents that don't generate any braille.
509
+
510
+ # The Dialytika isn't rendered in braille.
511
+ noback correct "\x03AA" "\x0399" # ΪΙ Capital Iota with Dialytika
512
+ noback correct "\x03CA" "\x03B9" # ϊι Small Iota with Dialytika
513
+ noback correct "\x0390" "\x03AF" # ΐί Small Iota with Dialytika and Tonos
514
+ noback correct "\x1FD3" "\x1F77" # ΐί Small Iota with Dialytika and Oxia
515
+ noback correct "\x1FD2" "\x1F76" # ῒὶ Small Iota with Dialytika and Varia
516
+ noback correct "\x1FD7" "\x1FD6" # ῗῖ Small Iota with Dialytika and Perispomeni
517
+ noback correct "\x03AB" "\x03A5" # ΫΥ Capital Upsilon with Dialytika
518
+ noback correct "\x03CB" "\x03C5" # ϋυ Small Upsilon with Dialytika
519
+ noback correct "\x03B0" "\x03CD" # ΰύ Small Upsilon with Dialytika and Tonos
520
+ noback correct "\x1FE3" "\x1F7B" # ΰύ Small Upsilon with Dialytika and Oxia
521
+ noback correct "\x1FE2" "\x1F7A" # ῢὺ Small Upsilon with Dialytika and Varia
522
+ noback correct "\x1FE7" "\x1FE6" # ῧῦ Small Upsilon with Dialytika and Perispomeni
523
+
524
+ # The Psili when not used with any other accent isn't rendered in braille.
525
+ noback correct "\x1F08" "\x0391" # ἈΑ Capital Alpha with Psili
526
+ noback correct "\x1F18" "\x0395" # ἘΕ Capital Epsilon with Psili
527
+ noback correct "\x1F28" "\x0397" # ἨΗ Capital Eta with Psili
528
+ noback correct "\x1F38" "\x0399" # ἸΙ Capital Iota with Psili
529
+ noback correct "\x1F48" "\x039F" # ὈΟ Capital Omicron with Psili
530
+ noback correct "\x1F68" "\x03A9" # ὨΩ Capital Omega with Psili
531
+ noback correct "\x1F00" "\x03B1" # ἀα Small Alpha with Psili
532
+ noback correct "\x1F10" "\x03B5" # ἐε Small Epsilon with Psili
533
+ noback correct "\x1F20" "\x03B7" # ἠη Small Eta with Psili
534
+ noback correct "\x1F30" "\x03B9" # ἰι Small Iota with Psili
535
+ noback correct "\x1F40" "\x03BF" # ὀο Small Omicron with Psili
536
+ noback correct "\x1FE4" "\x03C1" # ῤρ Small Rho with Psili
537
+ noback correct "\x1F50" "\x03C5" # ὐυ Small Upsilon with Psili
538
+ noback correct "\x1F60" "\x03C9" # ὠω Small Omega with Psili
539
+
540
+ # These are the diphthong contractions.
541
+ always \x03B1\x03B9 126 # αι Alpha Iota
542
+ always \x03B1\x03C5 16 # αυ Alpha Upsilon
543
+ always \x03B5\x03B9 146 # ει Epsilon Iota
544
+ always \x03B5\x03C5 156 # ευ Epsilon Upsilon
545
+ always \x03B7\x03C5 1256 # ηυ Eta Upsilon
546
+ always \x03BF\x03B9 246 # οι Omicron Iota
547
+ always \x03BF\x03C5 136 # ου Omicron Upsilon
548
+ always \x03C5\x03B9 12456 # υι Upsilon Iota
549
+
550
+ # Accents are always applied to the second vowel of a diphthong.
551
+
552
+ # For forward translation, move the accents to before the contraction.
553
+ noback pass2 @1[%accent]@24 *@126 # αι Alpha Iota
554
+ noback pass2 @1[%accent]@13456 *@16 # αυ Alpha Upsilon
555
+ noback pass2 @15[%accent]@24 *@146 # ει Epsilon Iota
556
+ noback pass2 @15[%accent]@13456 *@156 # ευ Epsilon Upsilon
557
+ noback pass2 @345[%accent]@13456 *@1256 # ηυ Eta Upsilon
558
+ noback pass2 @135[%accent]@24 *@246 # οι Omicron Iota
559
+ noback pass2 @135[%accent]@13456 *@136 # ου Omicron Upsilon
560
+ noback pass2 @13456[%accent]@24 *@12456 # υι Upsilon Iota
561
+
562
+ # For back translation, move the accents to before the second vowel.
563
+ nofor pass2 [%accent]@126 @1*@24 # αι Alpha Iota
564
+ nofor pass2 [%accent]@16 @1*@13456 # αυ Alpha Upsilon
565
+ nofor pass2 [%accent]@146 @15*@24 # ει Epsilon Iota
566
+ nofor pass2 [%accent]@156 @15*@13456 # ευ Epsilon Upsilon
567
+ nofor pass2 [%accent]@1256 @345*@13456 # ηυ Eta Upsilon
568
+ nofor pass2 [%accent]@246 @135*@24 # οι Omicron Iota
569
+ nofor pass2 [%accent]@136 @135*@13456 # ου Omicron Upsilon
570
+ nofor pass2 [%accent]@12456 @13456*@24 # υι Upsilon Iota
571
+
572
+ ##############
573
+ # Indicators #
574
+ ##############
575
+
576
+ capsletter 46
577
+ begcapsword 46-46
578
+
579
+ ####################
580
+ # English Alphabet #
581
+ ####################
582
+
583
+ # Define all of them as just letters in order to avoid Greek capital signs.
584
+ # Add virtual dot E to the uppercase letters, and virtual dot F to the
585
+ # lowercase letters, so that they have unique braille representations that
586
+ # don't overlap with those used for Greek characters.
587
+
588
+ # The uppercase English letters.
589
+ letter A 1e
590
+ letter B 12e
591
+ letter C 14e
592
+ letter D 145e
593
+ letter E 15e
594
+ letter F 124e
595
+ letter G 1245e
596
+ letter H 125e
597
+ letter I 24e
598
+ letter J 245e
599
+ letter K 13e
600
+ letter L 123e
601
+ letter M 134e
602
+ letter N 1345e
603
+ letter O 135e
604
+ letter P 1234e
605
+ letter Q 12345e
606
+ letter R 1235e
607
+ letter S 234e
608
+ letter T 2345e
609
+ letter U 136e
610
+ letter V 1236e
611
+ letter W 2456e
612
+ letter X 1346e
613
+ letter Y 13456e
614
+ letter Z 1356e
615
+
616
+ # The lowercase English letters.
617
+ letter a 1f
618
+ letter b 12f
619
+ letter c 14f
620
+ letter d 145f
621
+ letter e 15f
622
+ letter f 124f
623
+ letter g 1245f
624
+ letter h 125f
625
+ letter i 24f
626
+ letter j 245f
627
+ letter k 13f
628
+ letter l 123f
629
+ letter m 134f
630
+ letter n 1345f
631
+ letter o 135f
632
+ letter p 1234f
633
+ letter q 12345f
634
+ letter r 1235f
635
+ letter s 234f
636
+ letter t 2345f
637
+ letter u 136f
638
+ letter v 1236f
639
+ letter w 2456f
640
+ letter x 1346f
641
+ letter y 13456f
642
+ letter z 1356f
643
+
644
+ ##########################################
645
+ # Forward Translation of English Letters #
646
+ ##########################################
647
+
648
+ # Prepend the English letter sign to each block of English letters.
649
+ attribute englishLetter abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
650
+ noback pass2 %englishLetter. @56*
651
+
652
+ # Prepend the English capital sign to each uppercase English letter.
653
+ attribute englishUpper ABCDEFGHIJKLMNOPQRSTUVWXYZ
654
+ noback pass3 %englishUpper @6*
655
+
656
+ # Remove virtual dot F from the lowercase English letters.
657
+ noback pass4 [@1f] @1 # a
658
+ noback pass4 [@12f] @12 # b
659
+ noback pass4 [@14f] @14 # c
660
+ noback pass4 [@145f] @145 # d
661
+ noback pass4 [@15f] @15 # e
662
+ noback pass4 [@124f] @124 # f
663
+ noback pass4 [@1245f] @1245 # g
664
+ noback pass4 [@125f] @125 # h
665
+ noback pass4 [@24f] @24 # i
666
+ noback pass4 [@245f] @245 # j
667
+ noback pass4 [@13f] @13 # k
668
+ noback pass4 [@123f] @123 # l
669
+ noback pass4 [@134f] @134 # m
670
+ noback pass4 [@1345f] @1345 # n
671
+ noback pass4 [@135f] @135 # o
672
+ noback pass4 [@1234f] @1234 # p
673
+ noback pass4 [@12345f] @12345 # q
674
+ noback pass4 [@1235f] @1235 # r
675
+ noback pass4 [@234f] @234 # s
676
+ noback pass4 [@2345f] @2345 # t
677
+ noback pass4 [@136f] @136 # u
678
+ noback pass4 [@1236f] @1236 # v
679
+ noback pass4 [@2456f] @2456 # w
680
+ noback pass4 [@1346f] @1346 # x
681
+ noback pass4 [@13456f] @13456 # y
682
+ noback pass4 [@1356f] @1356 # z
683
+
684
+ # Remove virtual dot E from the uppercase English letters.
685
+ noback pass4 [@1e] @1 # A
686
+ noback pass4 [@12e] @12 # B
687
+ noback pass4 [@14e] @14 # C
688
+ noback pass4 [@145e] @145 # D
689
+ noback pass4 [@15e] @15 # E
690
+ noback pass4 [@124e] @124 # F
691
+ noback pass4 [@1245e] @1245 # G
692
+ noback pass4 [@125e] @125 # H
693
+ noback pass4 [@24e] @24 # I
694
+ noback pass4 [@245e] @245 # J
695
+ noback pass4 [@13e] @13 # K
696
+ noback pass4 [@123e] @123 # L
697
+ noback pass4 [@134e] @134 # M
698
+ noback pass4 [@1345e] @1345 # N
699
+ noback pass4 [@135e] @135 # O
700
+ noback pass4 [@1234e] @1234 # P
701
+ noback pass4 [@12345e] @12345 # Q
702
+ noback pass4 [@1235e] @1235 # R
703
+ noback pass4 [@234e] @234 # S
704
+ noback pass4 [@2345e] @2345 # T
705
+ noback pass4 [@136e] @136 # U
706
+ noback pass4 [@1236e] @1236 # V
707
+ noback pass4 [@2456e] @2456 # W
708
+ noback pass4 [@1346e] @1346 # X
709
+ noback pass4 [@13456e] @13456 # Y
710
+ noback pass4 [@1356e] @1356 # Z
711
+
712
+ ###########################################
713
+ # Backward Translation of English Letters #
714
+ ###########################################
715
+
716
+ nofor pass2 @56 ?#1=1
717
+ nofor pass2 #1=1@6 ?#1=2
718
+ nofor pass2 [$a] *#1=0
719
+
720
+ # Add virtual dot F to indicate a lowercase English letter.
721
+ nofor pass2 #1=1@1 @1f # a
722
+ nofor pass2 #1=1@12 @12f # b
723
+ nofor pass2 #1=1@14 @14f # c
724
+ nofor pass2 #1=1@145 @145f # d
725
+ nofor pass2 #1=1@15 @15f # e
726
+ nofor pass2 #1=1@124 @124f # f
727
+ nofor pass2 #1=1@1245 @1245f # g
728
+ nofor pass2 #1=1@125 @125f # h
729
+ nofor pass2 #1=1@24 @24f # i
730
+ nofor pass2 #1=1@245 @245f # j
731
+ nofor pass2 #1=1@13 @13f # k
732
+ nofor pass2 #1=1@123 @123f # l
733
+ nofor pass2 #1=1@134 @134f # m
734
+ nofor pass2 #1=1@1345 @1345f # n
735
+ nofor pass2 #1=1@135 @135f # o
736
+ nofor pass2 #1=1@1234 @1234f # p
737
+ nofor pass2 #1=1@12345 @12345f # q
738
+ nofor pass2 #1=1@1235 @1235f # r
739
+ nofor pass2 #1=1@234 @234f # s
740
+ nofor pass2 #1=1@2345 @2345f # t
741
+ nofor pass2 #1=1@136 @136f # u
742
+ nofor pass2 #1=1@1236 @1236f # v
743
+ nofor pass2 #1=1@2456 @2456f # w
744
+ nofor pass2 #1=1@1346 @1346f # x
745
+ nofor pass2 #1=1@13456 @13456f # y
746
+ nofor pass2 #1=1@1356 @1356f # z
747
+
748
+ # Add virtual dot E to indicate an uppercase English letter.
749
+ nofor pass2 #1=2@1 @1e#1=1 # A
750
+ nofor pass2 #1=2@12 @12e#1=1 # B
751
+ nofor pass2 #1=2@14 @14e#1=1 # C
752
+ nofor pass2 #1=2@145 @145e#1=1 # D
753
+ nofor pass2 #1=2@15 @15e#1=1 # E
754
+ nofor pass2 #1=2@124 @124e#1=1 # F
755
+ nofor pass2 #1=2@1245 @1245e#1=1 # G
756
+ nofor pass2 #1=2@125 @125e#1=1 # H
757
+ nofor pass2 #1=2@24 @24e#1=1 # I
758
+ nofor pass2 #1=2@245 @245e#1=1 # J
759
+ nofor pass2 #1=2@13 @13e#1=1 # K
760
+ nofor pass2 #1=2@123 @123e#1=1 # L
761
+ nofor pass2 #1=2@134 @134e#1=1 # M
762
+ nofor pass2 #1=2@1345 @1345e#1=1 # N
763
+ nofor pass2 #1=2@135 @135e#1=1 # O
764
+ nofor pass2 #1=2@1234 @1234e#1=1 # P
765
+ nofor pass2 #1=2@12345 @12345e#1=1 # Q
766
+ nofor pass2 #1=2@1235 @1235e#1=1 # R
767
+ nofor pass2 #1=2@234 @234e#1=1 # S
768
+ nofor pass2 #1=2@2345 @2345e#1=1 # T
769
+ nofor pass2 #1=2@136 @136e#1=1 # U
770
+ nofor pass2 #1=2@1236 @1236e#1=1 # V
771
+ nofor pass2 #1=2@2456 @2456e#1=1 # W
772
+ nofor pass2 #1=2@1346 @1346e#1=1 # X
773
+ nofor pass2 #1=2@13456 @13456e#1=1 # Y
774
+ nofor pass2 #1=2@1356 @1356e#1=1 # Z
775
+