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,1594 @@
1
+ # liblouis: Danish, table for 8 dots grade 1.5, partial contraction (forward and backward translation) 1993
2
+ #
3
+ # Copyright (C) 2014, 2016-2021, 2023, Bue Vester-Andersen <bue@vester-andersen.dk>
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
+ #------------
22
+ #
23
+ #
24
+ # This is the Danish table for 8 dots grade 2l/1.5 limited contractions (lille forkortelse) 1993.
25
+ # Use this table for translation and back-translation of Danish 8 dots grade 2 limited.
26
+ #
27
+ # Version: Bue Vester-Andersen, December 2022
28
+
29
+ ### Table Metadata
30
+
31
+ #-name: Dansk lille forkortelse 8-punkt 1993
32
+ #-index-name: Danish, partially contracted, 8-dot, 1993
33
+ #-display-name: Danish 8-dot partially contracted braille (1993 standard)
34
+
35
+ #+language: da
36
+ #+type: literary
37
+ #+contraction: partial
38
+ #+grade: 1.5
39
+ #+dots: 8
40
+ #+direction: both
41
+ #+system: ddp
42
+ #+version: 1993
43
+
44
+
45
+ # Display opcodes
46
+ include da-dk-octobraille_1993.dis
47
+
48
+ ### Character definitions ###
49
+
50
+ sign \x0000 8 NULL
51
+ sign \x0001 178 START OF HEADING
52
+ sign \x0002 1278 START OF TEXT
53
+ sign \x0003 1478 END OF TEXT
54
+ sign \x0004 14578 END OF TRANSMISSION
55
+ sign \x0005 24568 ENQUIRY
56
+ sign \x0006 12478 ACKNOWLEDGE
57
+ sign \x0007 124578 BELL
58
+ sign \x0008 12578 BACKSPACE
59
+ space \t 2478 CHARACTER TABULATION
60
+ space \n 678 LINE FEED (LF)
61
+ space \v 1368 LINE TABULATION
62
+ space \f 12378 FORM FEED (FF)
63
+ space \r 257 CARRIAGE RETURN (CR)
64
+ sign \x000e 134578 SHIFT OUT
65
+ sign \x000f 12358 SHIFT IN
66
+ sign \x0010 123478 DATA LINK ESCAPE
67
+ sign \x0011 1234578 DEVICE CONTROL ONE
68
+ sign \x0012 13568 DEVICE CONTROL TWO
69
+ sign \x0013 4578 DEVICE CONTROL THREE
70
+ sign \x0014 268 DEVICE CONTROL FOUR
71
+ sign \x0015 13678 NEGATIVE ACKNOWLEDGE
72
+ sign \x0016 278 SYNCHRONOUS IDLE
73
+ sign \x0017 3578 END OF TRANSMISSION BLOCK
74
+ sign \x0018 78 CANCEL
75
+ sign \x0019 68 END OF MEDIUM
76
+ sign \x001a 135678 SUBSTITUTE
77
+ sign \x001b 2678 ESCAPE
78
+ sign \x001c 45678 INFORMATION SEPARATOR FOUR
79
+ sign \x001d 12368 INFORMATION SEPARATOR THREE
80
+ sign \x001e 1234678 INFORMATION SEPARATOR TWO
81
+ sign \x001f 235678 INFORMATION SEPARATOR ONE
82
+ space \s 0 SPACE
83
+ punctuation ! 235 EXCLAMATION MARK
84
+ punctuation " 2356 QUOTATION MARK
85
+ punctuation # 34568 NUMBER SIGN
86
+ sign $ 25678 DOLLAR SIGN
87
+ math % 24578 PERCENT SIGN
88
+ sign & 123468 AMPERSAND
89
+ punctuation ' 4 APOSTROPHE
90
+ punctuation ( 2368 LEFT PARENTHESIS
91
+ punctuation ) 3568 RIGHT PARENTHESIS
92
+ math + 2358 PLUS SIGN
93
+ punctuation , 2 COMMA
94
+ punctuation - 368 HYPHEN-MINUS
95
+ punctuation . 3 FULL STOP
96
+ punctuation / 348 SLASH
97
+ include digits8Dots.uti
98
+ punctuation : 25 COLON
99
+ punctuation ; 23 SEMICOLON
100
+ math < 358 LESS-THAN SIGN
101
+ math = 23568 EQUALS SIGN
102
+ math > 267 GREATER-THAN SIGN
103
+ punctuation ? 26 QUESTION MARK
104
+ sign @ 478 COMMERCIAL AT
105
+ lowercase a 1 LATIN LETTER A
106
+ lowercase b 12 LATIN LETTER B
107
+ lowercase c 14 LATIN LETTER C
108
+ lowercase d 145 LATIN LETTER D
109
+ lowercase e 15 LATIN LETTER E
110
+ lowercase f 124 LATIN LETTER F
111
+ lowercase g 1245 LATIN LETTER G
112
+ lowercase h 125 LATIN LETTER H
113
+ lowercase i 24 LATIN LETTER I
114
+ lowercase j 245 LATIN LETTER J
115
+ lowercase k 13 LATIN LETTER K
116
+ lowercase l 123 LATIN LETTER L
117
+ lowercase m 134 LATIN LETTER M
118
+ lowercase n 1345 LATIN LETTER N
119
+ lowercase o 135 LATIN LETTER O
120
+ lowercase p 1234 LATIN LETTER P
121
+ lowercase r 1235 LATIN LETTER R
122
+ lowercase s 234 LATIN LETTER S
123
+ lowercase t 2345 LATIN LETTER T
124
+ lowercase u 136 LATIN LETTER U
125
+ lowercase v 1236 LATIN LETTER V
126
+ lowercase y 13456 LATIN LETTER Y
127
+ punctuation [ 23678 LEFT SQUARE BRACKET
128
+ punctuation ] 35678 RIGHT SQUARE BRACKET
129
+ punctuation ^ 12348 CIRCUMFLEX ACCENT
130
+ punctuation _ 3678 LOW LINE
131
+ punctuation ` 5 GRAVE ACCENT
132
+ punctuation { 123678 LEFT CURLY BRACKET
133
+ punctuation | 4568 VERTICAL LINE
134
+ punctuation } 345678 RIGHT CURLY BRACKET
135
+ punctuation ~ 467 TILDE
136
+ sign \x007f 7 DELETE
137
+ sign \x20AC 1578 #EURO SIGN (0x80)
138
+ noback sign \x0080 1578 #EURO SIGN (0x80)
139
+ sign \x0081 45 <control-0081>
140
+ punctuation \x201A 457 #Low single quote (0x82)
141
+ noback punctuation \x0082 457 #Low single quote (0x82)
142
+ sign \x0192 58 #Flurihn (0x83)
143
+ noback sign \x0083 58 #Flurihn (0x83)
144
+ punctuation \x201E 2378 #Low quote (0x84)
145
+ noback punctuation \x0084 2378 #Low quote (0x84)
146
+ letter \x2020 2357 #Dagger (0x86
147
+ noback letter \x0086 2357 #Dagger (0x86
148
+ letter \x2021 23578 #Double dagger (0x87
149
+ noback letter \x0087 23578 #Double dagger (0x87
150
+ letter \x02c6 5678 #Modifier letter circumflex (0x88)
151
+ noback letter \x0088 5678 #Modifier letter circumflex (0x88)
152
+ math \x2030 245678 #permille sign (0x89)
153
+ noback math \x0089 245678 #permille sign (0x89)
154
+ lowercase \x0161 2348 #LATIN LETTER S WITH CARON (0x8a)
155
+ noback lowercase \x009a 2348 #LATIN LETTER S WITH CARON (0x8a)
156
+ punctuation \x2039 456 #SINGLE LEFT-POINTING ANGLE QUOTATION MARK (0x8b)
157
+ noback punctuation \x008b 456 #SINGLE LEFT-POINTING ANGLE QUOTATION MARK (0x8b)
158
+ lowercase \x0153 1358 #LATIN LIGATURE OE (0x8c)
159
+ noback lowercase \x009c 1358 #LATIN LIGATURE OE (0x8c)
160
+ sign \x008d 3567 REVERSE LINE FEED (not defined in cp1252)
161
+ letter \x008f 27 SINGLE SHIFT THREE (not defined in cp1252)
162
+ letter \x0090 357 DEVICE CONTROL STRING (not defined in cp1252)
163
+ punctuation \x2018 47 #LEFT SINGLE QUOTATION MARK (0x91)
164
+ noback punctuation \x0091 47 #LEFT SINGLE QUOTATION MARK (0x91)
165
+ punctuation \x2019 48 #RIGHT SINGLE QUOTATION MARK (0x92)
166
+ noback punctuation \x0092 48 #RIGHT SINGLE QUOTATION MARK (0x92)
167
+ punctuation \x201c 237 #LEFT DOUBLE QUOTATION MARK (0x93)
168
+ noback punctuation \x0093 237 #LEFT DOUBLE QUOTATION MARK (0x93)
169
+ punctuation \x201d 568 #RIGHT DOUBLE QUOTATION MARK (0x94)
170
+ noback punctuation \x0094 568 #RIGHT DOUBLE QUOTATION MARK (0x94)
171
+ sign \x2022 37 #Bullit (0x95)
172
+ noback sign \x0095 37 #Bullit (0x95)
173
+ sign \x02DC 46 #SMALL TILDE (0x98)
174
+ noback sign \x0098 46 #SMALL TILDE (0x98)
175
+ sign \x2122 234578 #TRADE MARK SIGN (0x99)
176
+ noback sign \x0099 234578 #TRADE MARK SIGN (0x99)
177
+ punctuation \x203A 4567 #SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (0x9b)
178
+ noback punctuation \x009b 4567 #SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (0x9b)
179
+ letter \x009d 2567 OPERATING SYSTEM COMMAND
180
+ lowercase \x00ff 234568 #LATIN LETTER Y WITH DIAERESIS (0x9f)
181
+ noback uppercase \x009f 2345678 #LATIN LETTER Y WITH DIAERESIS (0x9f)
182
+ punctuation \x00a0 23458 NO-BREAK SPACE (0xa0)
183
+ punctuation \x00a2 2578 CENT SIGN (0xa2)
184
+ punctuation \x00a3 1238 POUND SIGN (0xa3)
185
+ punctuation \x00a5 67 YEN SIGN (0xa5)
186
+ punctuation \x00a6 3478 BROKEN BAR (0xa6)
187
+ punctuation \x00a7 578 SECTION SIGN (0xa7)
188
+ punctuation \x00a9 134678 COPYRIGHT SIGN (0xa9)
189
+ letter \x00aa 234678 FEMININE ORDINAL INDICATOR (0xaa)
190
+ punctuation \x00ab 57 LEFT-POINTING DOUBLE ANGLE QUOTATION MARK (0xab)
191
+ letter \x00ad 378 SOFT HYPHEN (0xad)
192
+ punctuation \x00ae 123578 REGISTERED SIGN (0xae)
193
+ punctuation \x00af 23567 MACRON (0xaf)
194
+ math \x00b1 123458 PLUS-MINUS SIGN
195
+ punctuation \x00b2 238 SUPERSCRIPT TWO
196
+ punctuation \x00b3 258 SUPERSCRIPT THREE
197
+ punctuation \x00b4 468 ACUTE ACCENT
198
+ punctuation \x00b6 1234568 PILCROW SIGN
199
+ punctuation \x00b7 38 MIDDLE DOT
200
+ punctuation \x00b8 4678 CEDILLA
201
+ punctuation \x00b9 28 SUPERSCRIPT ONE
202
+ letter \x00ba 12345678 MASCULINE ORDINAL INDICATOR
203
+ punctuation \x00bb 567 RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK
204
+ punctuation \x00bc 13458 VULGAR FRACTION ONE QUARTER
205
+ punctuation \x00bd 458 VULGAR FRACTION ONE HALF
206
+ lowercase \x00e1 123568 LATIN LETTER A WITH ACUTE
207
+ lowercase \x00e2 168 LATIN LETTER A WITH CIRCUMFLEX
208
+ lowercase \x00e3 1468 LATIN LETTER A WITH TILDE
209
+ lowercase \x00e4 3458 LATIN LETTER A WITH DIAERESIS
210
+ lowercase \x00e5 16 LATIN LETTER A WITH RING ABOVE
211
+ lowercase \x00e6 345 LATIN LETTER AE
212
+ lowercase \x00ec 1568 LATIN LETTER I WITH GRAVE
213
+ lowercase \x00ed 1268 LATIN LETTER I WITH ACUTE
214
+ lowercase \x00f0 134568 LATIN LETTER ETH
215
+ lowercase \x00f1 124568 LATIN LETTER N WITH TILDE
216
+ lowercase \x00f2 12468 LATIN LETTER O WITH GRAVE
217
+ lowercase \x00f3 3468 LATIN LETTER O WITH ACUTE
218
+ lowercase \x00f5 14568 LATIN LETTER O WITH TILDE
219
+ lowercase \x00f6 2468 LATIN LETTER O WITH DIAERESIS
220
+ math \x00d7 13468 MULTIPLICATION SIGN
221
+ lowercase \x00f8 246 LATIN LETTER O WITH STROKE
222
+ lowercase \x00fa 12568 LATIN LETTER U WITH ACUTE
223
+ lowercase \x00fd 1348 LATIN LETTER Y WITH ACUTE (infinite?)
224
+ lowercase \x00fe 138 LATIN LETTER THORN
225
+ lowercase \x00df 23468 LATIN SMALL LETTER SHARP S
226
+ math \x00f7 2568 DIVISION SIGN
227
+
228
+ # Character used for capslettersign
229
+ # Resides in the "private use area", and shouldn't conflict with anything.
230
+ sign \xf8ff f
231
+
232
+ #Unicode Braille patterns
233
+ include braille-patterns.cti
234
+
235
+ # characters that have letsign as part of their definition
236
+ # (to be removed when the alwaysletsign opcode has been implemented).
237
+ punctuation * 6-35 ASTERISK
238
+ lowercase q 6-12345 LATIN LETTER Q
239
+ lowercase w 6-2456 LATIN LETTER W
240
+ lowercase x 6-1346 LATIN LETTER X
241
+ lowercase z 6-1356 LATIN LETTER Z
242
+ punctuation \\ 6-347 REVERSE SLASH
243
+ punctuation \x2026 6-3-3-3 #Elipsis (0x85)
244
+ noback punctuation \x0085 6-3-3-3 #Elipsis (0x85)
245
+ lowercase \x017e 6-346 #LATIN LETTER Z WITH CARON (0x8e)
246
+ noback lowercase \x009e 6-346 #LATIN LETTER Z WITH CARON (0x8e)
247
+ letter \x2013 6-36 #EN DASH (0x96)
248
+ noback sign \x0096 6-36 #EN DASH (0x96)
249
+ letter \x2014 6-367 #Em DASH (0x97)
250
+ noback sign \x0097 6-367 #Em DASH (0x97)
251
+ punctuation \x00a4 6-2367 CURRENCY SIGN (0xa4)
252
+ punctuation \x00a8 6-56 DIAERESIS (0xa8)
253
+ punctuation \x00ac 6-34567 NOT SIGN (0xac)
254
+ sign \x00b0 4-356 DEGREE SIGN (0xb0)
255
+ sign \x00b5 6-236 MICRO SIGN
256
+ punctuation \x00be 6-3456 VULGAR FRACTION THREE QUARTERS
257
+ punctuation \x00bf 6-34 INVERTED QUESTION MARK
258
+ lowercase \x00e0 6-12356 LATIN LETTER A WITH GRAVE
259
+ lowercase \x00e7 6-12346 LATIN LETTER C WITH CEDILLA
260
+ lowercase \x00e8 6-2346 LATIN LETTER E WITH GRAVE
261
+ lowercase \x00e9 6-123456 LATIN LETTER E WITH ACUTE
262
+ lowercase \x00ea 6-126 LATIN LETTER E WITH CIRCUMFLEX
263
+ lowercase \x00eb 6-1246 LATIN LETTER E WITH DIAERESIS
264
+ lowercase \x00ee 6-146 LATIN LETTER I WITH CIRCUMFLEX
265
+ lowercase \x00ef 6-12456 LATIN LETTER I WITH DIAERESIS
266
+ lowercase \x00f4 6-1456 LATIN LETTER O WITH CIRCUMFLEX
267
+ lowercase \x00f9 6-23456 LATIN LETTER U WITH GRAVE
268
+ lowercase \x00fb 6-156 LATIN LETTER U WITH CIRCUMFLEX
269
+ lowercase \x00fc 6-1256 LATIN LETTER U WITH DIAERESIS
270
+
271
+ # Misc unicode characters
272
+
273
+ # Many of the characters below and in da-dk-8miscChars.cti have not
274
+ # been defined in the Danish Braille standard.
275
+ # The current implementation is purely experimental and subject to change.
276
+ # Math chars and arrows etc. are inspired by UEB.
277
+
278
+ # Latin Extended-A (\x0100-\x017f)
279
+
280
+ # For each accented letter, the first occurring instance is chosen for back-translation.
281
+ # There are no rules about this in the specs of Danish Braille,
282
+ # So the choice is arbitrary and may change over time.
283
+
284
+ lowercase \x0101 5-1 Latin letter a with macron
285
+ noback lowercase \x0103 5-1 Latin letter a with breve
286
+ noback lowercase \x0105 5-1 Latin letter a with ogonek
287
+ lowercase \x0107 5-14 Latin letter c with acute
288
+ noback lowercase \x0109 5-14 Latin letter c with circumflex
289
+ noback lowercase \x010b 5-14 Latin letter c with dot above
290
+ noback lowercase \x010d 5-14 Latin letter c with caron
291
+ lowercase \x010f 5-145 Latin letter d with caron
292
+ noback lowercase \x0111 5-145 Latin letter d with stroke
293
+ lowercase \x0113 5-15 Latin letter e with macron
294
+ noback lowercase \x0115 5-15 Latin letter e with breve
295
+ noback lowercase \x0117 5-15 Latin letter e with dot above
296
+ noback lowercase \x0119 5-15 Latin letter e with ogonek
297
+ noback lowercase \x011b 5-15 Latin letter e with caron
298
+ lowercase \x011d 5-1245 Latin letter g with circumflex
299
+ noback lowercase \x011f 5-1245 Latin letter g with breve
300
+ noback lowercase \x0121 5-1245 Latin letter g with dot above
301
+ noback lowercase \x0123 5-1245 Latin letter g with cedilla
302
+ lowercase \x0125 5-125 Latin letter h with circumflex
303
+ noback lowercase \x0127 5-125 Latin letter h with stroke
304
+ lowercase \x0129 5-24 Latin letter i with tilde
305
+ noback lowercase \x012b 5-24 Latin letter i with macron
306
+ noback lowercase \x012d 5-24 Latin letter i with breve
307
+ noback lowercase \x012f 5-24 Latin letter i with ogonek
308
+ noback lowercase \x0131 5-24 Latin small dotless i
309
+ noback lowercase \x0133 24-245 Latin ligature ij
310
+ lowercase \x0135 5-245 Latin letter j with circumflex
311
+ lowercase \x0137 5-13 Latin letter k with cedilla
312
+ lowercase \x0138 5-12345 Small latin letter kra (Greenlandic q)
313
+ lowercase \x013a 5-123 Latin letter l with acute
314
+ noback lowercase \x013c 5-123 Latin letter l with cedilla
315
+ noback lowercase \x013e 5-123 Latin letter l with caron
316
+ noback lowercase \x0140 5-123 Latin letter l with middle dot
317
+ noback lowercase \x0142 5-123 Latin letter l with stroke
318
+ lowercase \x0144 5-1345 Latin letter n with acute
319
+ noback lowercase \x0146 5-1345 Latin letter n with cedilla
320
+ noback lowercase \x0148 5-1345 Latin letter n with caron
321
+ noback lowercase \x0149 4-1345 Latin small letter n preceeded by apostrophe
322
+ noback lowercase \x014b 5-1345 Latin letter eng
323
+ lowercase \x014d 5-135 Latin letter o with macron
324
+ noback lowercase \x014f 5-135 Latin letter o with breve
325
+ noback lowercase \x0151 5-135 Latin letter o with double acute
326
+ lowercase \x0155 5-1235 Latin letter r with acute
327
+ noback lowercase \x0157 5-1235 Latin letter r with cedilla
328
+ noback lowercase \x0159 5-1235 Latin letter r with caron
329
+ lowercase \x015b 5-234 Latin letter s with acute
330
+ noback lowercase \x015d 5-234 Latin letter s with circumflex
331
+ noback lowercase \x015f 5-234 Latin letter s with cedilla
332
+ lowercase \x0163 5-2345 Latin letter t with cedilla
333
+ noback lowercase \x0165 5-2345 Latin letter t with caron
334
+ noback lowercase \x0167 5-2345 Latin letter t with stroke
335
+ lowercase \x0169 5-136 Latin letter u with tilde
336
+ noback lowercase \x016b 5-136 Latin letter u with macron
337
+ noback lowercase \x016d 5-136 Latin letter u with breve
338
+ noback lowercase \x016f 5-136 Latin letter u with ring above
339
+ noback lowercase \x0171 5-136 Latin letter u with double acute
340
+ noback lowercase \x0173 5-136 Latin letter u with ogonek
341
+ lowercase \x0175 5-2456 Latin letter w with circumflex
342
+ lowercase \x0177 5-13456 Latin letter y with circumflex
343
+ lowercase \x017a 5-1356 Latin letter z with acute
344
+ noback lowercase \x017c 5-1356 Latin letter z with dot above
345
+ noback lowercase \x017f 5-234 Latin small letter long s
346
+
347
+ # Greek letters (with dots 458 as prefix)
348
+
349
+ lowercase \x03AC 458-5-1 Greek letter alpha with tonos
350
+ lowercase \x03AD 458-5-15 Greek letter epsilon with tonos
351
+ lowercase \x03AE 458-5-156 Greek letter eta with tonos
352
+ lowercase \x03AF 458-5-24 Greek letter iota with sonos
353
+ lowercase \x03CC 458-5-135 Greek letter omicron with tonos
354
+ lowercase \x03CD 458-5-136 Greek letter upsilon with tonos
355
+ lowercase \x03CE 458-5-2456 Greek letter omega with tonos
356
+
357
+ lowercase \x03B1 458-1 Greek letter alpha
358
+ lowercase \x03B2 458-12 Greek letter beta
359
+ lowercase \x03B3 458-1245 Greek letter gamma
360
+ lowercase \x03B4 458-145 Greek letter delta
361
+ lowercase \x03B5 458-15 Greek letter epsilon
362
+ lowercase \x03B6 458-1356 Greek letter zeta
363
+ lowercase \x03B7 458-156 Greek letter eta
364
+ lowercase \x03B8 458-1456 Greek letter theta
365
+ lowercase \x03B9 458-24 Greek letter iota
366
+ lowercase \x03BA 458-13 Greek letter kappa
367
+ lowercase \x03BB 458-123 Greek letter lamda
368
+ lowercase \x03BC 458-134 Greek letter Mu
369
+ lowercase \x03BD 458-1345 Greek letter Nu
370
+ lowercase \x03BE 458-1346 Greek letter Xi
371
+ lowercase \x03BF 458-135 Greek letter Omicron
372
+ lowercase \x03C0 458-1234 Greek letter Pi
373
+ lowercase \x03C1 458-1235 Greek letter Rho
374
+ lowercase \x03C3 458-234 Greek letter sigma
375
+ lowercase \x03C4 458-2345 Greek letter Tau
376
+ lowercase \x03C5 458-136 Greek letter Upsilon
377
+ lowercase \x03C6 458-124 Greek letter Phi
378
+ lowercase \x03C7 458-12346 Greek letter Chi
379
+ lowercase \x03C8 458-13456 Greek letter Psi
380
+ lowercase \x03C9 458-2456 Greek letter Omega
381
+
382
+ include da-dk-8miscChars_1993.cti
383
+
384
+ # Uppercase letters
385
+
386
+ base uppercase A a LATIN LETTER A
387
+ base uppercase B b LATIN LETTER B
388
+ base uppercase C c LATIN LETTER C
389
+ base uppercase D d LATIN LETTER D
390
+ base uppercase E e LATIN LETTER E
391
+ base uppercase F f LATIN LETTER F
392
+ base uppercase G g LATIN LETTER G
393
+ base uppercase H h LATIN LETTER H
394
+ base uppercase I i LATIN LETTER I
395
+ base uppercase J j LATIN LETTER J
396
+ base uppercase K k LATIN LETTER K
397
+ base uppercase L l LATIN LETTER L
398
+ base uppercase M m LATIN LETTER M
399
+ base uppercase N n LATIN LETTER N
400
+ base uppercase O o LATIN LETTER O
401
+ base uppercase P p LATIN CAPITAL LETTER P
402
+ base uppercase Q q LATIN LETTER Q
403
+ base uppercase R r LATIN LETTER R
404
+ base uppercase S s LATIN LETTER S
405
+ base uppercase T t LATIN LETTER T
406
+ base uppercase U u LATIN LETTER U
407
+ base uppercase V v LATIN LETTER V
408
+ base uppercase W w LATIN LETTER W
409
+ base uppercase X x LATIN LETTER X
410
+ base uppercase Y y LATIN LETTER Y
411
+ base uppercase Z z LATIN LETTER Z
412
+ base uppercase \x008a \x009a #LATIN LETTER S WITH CARON (0x8a)
413
+ base uppercase \x008c \x009c #LATIN LIGATURE OE (0x8c)
414
+ base uppercase \x008e \x009e #LATIN LETTER Z WITH CARON (0x8e)
415
+ base uppercase \x00c0 \x00e0 LATIN LETTER A WITH GRAVE
416
+ base uppercase \x00c1 \x00e1 LATIN LETTER A WITH ACUTE
417
+ base uppercase \x00c2 \x00e2 LATIN LETTER A WITH CIRCUMFLEX
418
+ base uppercase \x00c3 \x00e3 LATIN LETTER A WITH TILDE
419
+ base uppercase \x00c4 \x00e4 LATIN LETTER A WITH DIAERESIS
420
+ base uppercase \x00c5 \x00e5 LATIN LETTER A WITH RING ABOVE
421
+ base uppercase \x00c6 \x00e6 LATIN LETTER AE
422
+ base uppercase \x00c7 \x00e7 LATIN LETTER C WITH CEDILLA
423
+ base uppercase \x00c8 \x00e8 LATIN LETTER E WITH GRAVE
424
+ base uppercase \x00c9 \x00e9 LATIN LETTER E WITH ACUTE
425
+ base uppercase \x00ca \x00ea LATIN LETTER E WITH CIRCUMFLEX
426
+ base uppercase \x00cb \x00eb LATIN LETTER E WITH DIAERESIS
427
+ base uppercase \x00cc \x00ec LATIN LETTER I WITH GRAVE
428
+ base uppercase \x00cd \x00ed LATIN LETTER I WITH ACUTE
429
+ base uppercase \x00ce \x00ee LATIN LETTER I WITH CIRCUMFLEX
430
+ base uppercase \x00cf \x00ef LATIN LETTER I WITH DIAERESIS
431
+ base uppercase \x00d0 \x00f0 LATIN LETTER ETH
432
+ base uppercase \x00d1 \x00f1 LATIN LETTER N WITH TILDE
433
+ base uppercase \x00d2 \x00f2 LATIN LETTER O WITH GRAVE
434
+ base uppercase \x00d3 \x00f3 LATIN LETTER O WITH ACUTE
435
+ base uppercase \x00d4 \x00f4 LATIN LETTER O WITH CIRCUMFLEX
436
+ base uppercase \x00d5 \x00f5 LATIN LETTER O WITH TILDE
437
+ base uppercase \x00d6 \x00f6 LATIN LETTER O WITH DIAERESIS
438
+ base uppercase \x00d8 \x00f8 LATIN LETTER O WITH STROKE
439
+ base uppercase \x00d9 \x00f9 LATIN LETTER U WITH GRAVE
440
+ base uppercase \x00da \x00fa LATIN LETTER U WITH ACUTE
441
+ base uppercase \x00db \x00fb LATIN LETTER U WITH CIRCUMFLEX
442
+ base uppercase \x00dc \x00fc LATIN LETTER U WITH DIAERESIS
443
+ base uppercase \x00dd \x00fd LATIN LETTER Y WITH ACUTE (infinite?)
444
+ base uppercase \x00de \x00fe LATIN LETTER THORN
445
+ base uppercase \x0100 \x0101 Latin letter a with macron
446
+ base uppercase \x0102 \x0103 Latin letter a with breve
447
+ base uppercase \x0104 \x0105 Latin letter a with ogonek
448
+ base uppercase \x0106 \x0107 Latin letter c with acute
449
+ base uppercase \x0108 \x0109 Latin letter c with circumflex
450
+ base uppercase \x010a \x010b Latin letter c with dot above
451
+ base uppercase \x010c \x010d Latin letter c with caron
452
+ base uppercase \x010e \x010f Latin letter d with caron
453
+ base uppercase \x0110 \x0111 Latin letter d with stroke
454
+ base uppercase \x0112 \x0113 Latin letter e with macron
455
+ base uppercase \x0114 \x0115 Latin letter e with breve
456
+ base uppercase \x0116 \x0117 Latin letter e with dot above
457
+ base uppercase \x0118 \x0119 Latin letter e with ogonek
458
+ base uppercase \x011a \x011b Latin letter e with caron
459
+ base uppercase \x011c \x011d Latin letter g with circumflex
460
+ base uppercase \x011e \x011f Latin letter g with breve
461
+ base uppercase \x0120 \x0121 Latin letter g with dot above
462
+ base uppercase \x0122 \x0123 Latin letter g with cedilla
463
+ base uppercase \x0124 \x0125 Latin letter h with circumflex
464
+ base uppercase \x0126 \x0127 Latin letter h with stroke
465
+ base uppercase \x0128 \x0129 Latin letter i with tilde
466
+ base uppercase \x012a \x012b Latin letter i with macron
467
+ base uppercase \x012c \x012d Latin letter i with breve
468
+ base uppercase \x012e \x012f Latin letter i with ogonek
469
+ base uppercase \x0130 \x0131 Latin capital letter i with dot above / small dotless i
470
+ base uppercase \x0132 \x0133 Latin ligature ij
471
+ base uppercase \x0134 \x0135 Latin letter j with circumflex
472
+ base uppercase \x0136 \x0137 Latin letter k with cedilla
473
+ base uppercase \x0139 \x013a Latin letter l with acute
474
+ base uppercase \x013b \x013c Latin letter l with cedilla
475
+ base uppercase \x013d \x013e Latin letter l with caron
476
+ base uppercase \x013f \x0140 Latin letter l with middle dot
477
+ base uppercase \x0141 \x0142 Latin letter l with stroke
478
+ base uppercase \x0143 \x0144 Latin letter n with acute
479
+ base uppercase \x0145 \x0146 Latin letter n with cedilla
480
+ base uppercase \x0147 \x0148 Latin letter n with caron
481
+ base uppercase \x014a \x014b Latin letter eng
482
+ base uppercase \x014c \x014d Latin letter o with macron
483
+ base uppercase \x014e \x014f Latin letter o with breve
484
+ base uppercase \x0150 \x0151 Latin letter o with double acute
485
+ base uppercase \x0152 \x0153 #LATIN CAPITAL LIGATURE OE (0x8c)
486
+ base uppercase \x0154 \x0155 Latin letter r with acute
487
+ base uppercase \x0156 \x0157 Latin letter r with cedilla
488
+ base uppercase \x0158 \x0159 Latin letter r with caron
489
+ base uppercase \x015a \x015b Latin letter s with acute
490
+ base uppercase \x015c \x015d Latin letter s with circumflex
491
+ base uppercase \x015e \x015f Latin letter s with cedilla
492
+ base uppercase \x0160 \x0161 #LATIN CAPITAL LETTER S WITH CARON (0x8a)
493
+ base uppercase \x0162 \x0163 Latin letter t with cedilla
494
+ base uppercase \x0164 \x0165 Latin letter t with caron
495
+ base uppercase \x0166 \x0167 Latin letter t with stroke
496
+ base uppercase \x0168 \x0169 Latin letter u with tilde
497
+ base uppercase \x016a \x016b Latin letter u with macron
498
+ base uppercase \x016c \x016d Latin letter u with breve
499
+ base uppercase \x016e \x016f Latin letter u with ring above
500
+ base uppercase \x0170 \x0171 Latin letter u with double acute
501
+ base uppercase \x0172 \x0173 Latin letter u with ogonek
502
+ base uppercase \x0174 \x0175 Latin letter w with circumflex
503
+ base uppercase \x0176 \x0177 Latin letter y with circumflex
504
+ base uppercase \x0178 \x00ff #LATIN LETTER Y WITH DIAERESIS (0x9f)
505
+ base uppercase \x0179 \x017a Latin letter z with acute
506
+ base uppercase \x017b \x017c Latin letter z with dot above
507
+ base uppercase \x017d \x017e #LATIN LETTER Z WITH CARON (0x8e)
508
+ base uppercase \x0386 \x03AC Greek letter alpha with tonos
509
+ base uppercase \x0388 \x03AD Greek letter epsilon with tonos
510
+ base uppercase \x0389 \x03AE Greek letter eta with tonos
511
+ base uppercase \x038A \x03AF Greek letter iota with sonos
512
+ base uppercase \x038C \x03CC Greek letter omicron with tonos
513
+ base uppercase \x038E \x03CD Greek letter upsilon with tonos
514
+ base uppercase \x038F \x03CE Greek letter omega with tonos
515
+ base uppercase \x0391 \x03B1 Greek letter alpha
516
+ base uppercase \x0392 \x03B2 Greek letter beta
517
+ base uppercase \x0393 \x03B3 Greek letter gamma
518
+ base uppercase \x0394 \x03B4 Greek letter delta
519
+ base uppercase \x0395 \x03B5 Greek letter epsilon
520
+ base uppercase \x0396 \x03B6 Greek letter zeta
521
+ base uppercase \x0397 \x03B7 Greek letter eta
522
+ base uppercase \x0398 \x03B8 Greek letter theta
523
+ base uppercase \x0399 \x03B9 Greek letter iota
524
+ base uppercase \x039A \x03BA Greek letter kappa
525
+ base uppercase \x039B \x03BB Greek letter lamda
526
+ base uppercase \x039C \x03BC Greek letter Mu
527
+ base uppercase \x039D \x03BD Greek letter Nu
528
+ base uppercase \x039E \x03BE Greek letter Xi
529
+ base uppercase \x039F \x03BF Greek letter Omicron
530
+ base uppercase \x03A0 \x03C0 Greek letter Pi
531
+ base uppercase \x03A1 \x03C1 Greek letter Rho
532
+ base uppercase \x03A3 \x03C3 Greek letter sigma
533
+ base uppercase \x03A4 \x03C4 Greek letter Tau
534
+ base uppercase \x03A5 \x03C5 Greek letter Upsilon
535
+ base uppercase \x03A6 \x03C6 Greek letter Phi
536
+ base uppercase \x03A7 \x03C7 Greek letter Chi
537
+ base uppercase \x03A8 \x03C8 Greek letter Psi
538
+ base uppercase \x03A9 \x03C9 Greek letter Omega
539
+
540
+ # Uppercase letters in computer braille mode
541
+
542
+ comp6 A 17
543
+ comp6 B 127
544
+ comp6 C 147
545
+ comp6 D 1457
546
+ comp6 E 157
547
+ comp6 F 1247
548
+ comp6 G 12457
549
+ comp6 H 1257
550
+ comp6 I 247
551
+ comp6 J 2457
552
+ comp6 K 137
553
+ comp6 L 1237
554
+ comp6 M 1347
555
+ comp6 N 13457
556
+ comp6 O 1357
557
+ comp6 P 12347
558
+ comp6 Q 6-123457
559
+ comp6 R 12357
560
+ comp6 S 2347
561
+ comp6 T 23457
562
+ comp6 U 1367
563
+ comp6 V 12367
564
+ comp6 W 6-24567
565
+ comp6 X 6-13467
566
+ comp6 Y 134567
567
+ comp6 Z 6-13567
568
+ comp6 \x008a 23478
569
+ comp6 \x008c 13578
570
+ comp6 \x008e 6-3467
571
+ comp6 \x00c0 6-123567
572
+ comp6 \x00c1 1235678
573
+ comp6 \x00c2 1678
574
+ comp6 \x00c3 14678
575
+ comp6 \x00c4 34578
576
+ comp6 \x00c5 167
577
+ comp6 \x00c6 3457
578
+ comp6 \x00c7 6-123467
579
+ comp6 \x00c8 6-23467
580
+ comp6 \x00c9 6-1234567
581
+ comp6 \x00ca 6-1267
582
+ comp6 \x00cb 6-12467
583
+ comp6 \x00cc 15678
584
+ comp6 \x00cd 12678
585
+ comp6 \x00ce 6-1467
586
+ comp6 \x00cf 6-124567
587
+ comp6 \x00d0 1345678
588
+ comp6 \x00d1 1245678
589
+ comp6 \x00d2 124678
590
+ comp6 \x00d3 34678
591
+ comp6 \x00d4 6-14567
592
+ comp6 \x00d5 145678
593
+ comp6 \x00d6 24678
594
+ comp6 \x00d8 2467
595
+ comp6 \x00d9 6-234567
596
+ comp6 \x00da 125678
597
+ comp6 \x00db 6-1567
598
+ comp6 \x00dc 6-12567
599
+ comp6 \x00dd 13478
600
+ comp6 \x00de 1378
601
+ comp6 \x0100 5-17
602
+ comp6 \x0102 5-17
603
+ comp6 \x0104 5-17
604
+ comp6 \x0106 5-147
605
+ comp6 \x0108 5-147
606
+ comp6 \x010a 5-147
607
+ comp6 \x010c 5-147
608
+ comp6 \x010e 5-1457
609
+ comp6 \x0110 5-1457
610
+ comp6 \x0112 5-157
611
+ comp6 \x0114 5-157
612
+ comp6 \x0116 5-157
613
+ comp6 \x0118 5-157
614
+ comp6 \x011a 5-157
615
+ comp6 \x011c 5-12457
616
+ comp6 \x011e 5-12457
617
+ comp6 \x0120 5-12457
618
+ comp6 \x0122 5-12457
619
+ comp6 \x0124 5-1257
620
+ comp6 \x0126 5-1257
621
+ comp6 \x0128 5-247
622
+ comp6 \x012a 5-247
623
+ comp6 \x012c 5-247
624
+ comp6 \x012e 5-247
625
+ comp6 \x0130 5-247
626
+ comp6 \x0132 247-245
627
+ comp6 \x0134 5-2457
628
+ comp6 \x0136 5-137
629
+ comp6 \x0139 5-1237
630
+ comp6 \x013b 5-1237
631
+ comp6 \x013d 5-1237
632
+ comp6 \x013f 5-1237
633
+ comp6 \x0141 5-1237
634
+ comp6 \x0143 5-13457
635
+ comp6 \x0145 5-13457
636
+ comp6 \x0147 5-13457
637
+ comp6 \x014a 5-13457
638
+ comp6 \x014c 5-1357
639
+ comp6 \x014e 5-1357
640
+ comp6 \x0150 5-1357
641
+ comp6 \x0152 13578
642
+ comp6 \x0154 5-12357
643
+ comp6 \x0156 5-12357
644
+ comp6 \x0158 5-12357
645
+ comp6 \x015a 5-2347
646
+ comp6 \x015c 5-2347
647
+ comp6 \x015e 5-2347
648
+ comp6 \x0160 23478
649
+ comp6 \x0162 5-23457
650
+ comp6 \x0164 5-23457
651
+ comp6 \x0166 5-23457
652
+ comp6 \x0168 5-1367
653
+ comp6 \x016a 5-1367
654
+ comp6 \x016c 5-1367
655
+ comp6 \x016e 5-1367
656
+ comp6 \x0170 5-1367
657
+ comp6 \x0172 5-1367
658
+ comp6 \x0174 5-24567
659
+ comp6 \x0176 5-134567
660
+ comp6 \x0178 2345678
661
+ comp6 \x0179 5-13567
662
+ comp6 \x017b 5-13567
663
+ comp6 \x017d 6-3467
664
+ comp6 \x0386 458-5-17
665
+ comp6 \x0388 458-5-157
666
+ comp6 \x0389 458-5-1567
667
+ comp6 \x038A 458-5-247
668
+ comp6 \x038C 458-5-1357
669
+ comp6 \x038E 458-5-1367
670
+ comp6 \x038F 458-5-24567
671
+ comp6 \x0391 458-17
672
+ comp6 \x0392 458-127
673
+ comp6 \x0393 458-12457
674
+ comp6 \x0394 458-1457
675
+ comp6 \x0395 458-157
676
+ comp6 \x0396 458-13567
677
+ comp6 \x0397 458-1567
678
+ comp6 \x0398 458-14567
679
+ comp6 \x0399 458-247
680
+ comp6 \x039A 458-137
681
+ comp6 \x039B 458-1237
682
+ comp6 \x039C 458-1347
683
+ comp6 \x039D 458-13457
684
+ comp6 \x039E 458-13467
685
+ comp6 \x039F 458-1357
686
+ comp6 \x03A0 458-12347
687
+ comp6 \x03A1 458-12357
688
+ comp6 \x03A3 458-2347
689
+ comp6 \x03A4 458-23457
690
+ comp6 \x03A5 458-1367
691
+ comp6 \x03A6 458-1247
692
+ comp6 \x03A7 458-123467
693
+ comp6 \x03A8 458-134567
694
+ comp6 \x03A9 458-24567
695
+
696
+ nofor always A 17
697
+ nofor always B 127
698
+ nofor always C 147
699
+ nofor always D 1457
700
+ nofor always E 157
701
+ nofor always F 1247
702
+ nofor always G 12457
703
+ nofor always H 1257
704
+ nofor always I 247
705
+ nofor always J 2457
706
+ nofor always K 137
707
+ nofor always L 1237
708
+ nofor always M 1347
709
+ nofor always N 13457
710
+ nofor always O 1357
711
+ nofor always P 12347
712
+ nofor always Q 6-123457
713
+ nofor always R 12357
714
+ nofor always S 2347
715
+ nofor always T 23457
716
+ nofor always U 1367
717
+ nofor always V 12367
718
+ nofor always W 6-24567
719
+ nofor always X 6-13467
720
+ nofor always Y 134567
721
+ nofor always Z 6-13567
722
+ nofor always \x00c0 6-123567
723
+ nofor always \x00c1 1235678
724
+ nofor always \x00c2 1678
725
+ nofor always \x00c3 14678
726
+ nofor always \x00c4 34578
727
+ nofor always \x00c5 167
728
+ nofor always \x00c6 3457
729
+ nofor always \x00c7 6-123467
730
+ nofor always \x00c8 6-23467
731
+ nofor always \x00c9 6-1234567
732
+ nofor always \x00ca 6-1267
733
+ nofor always \x00cb 6-12467
734
+ nofor always \x00cc 15678
735
+ nofor always \x00cd 12678
736
+ nofor always \x00ce 6-1467
737
+ nofor always \x00cf 6-124567
738
+ nofor always \x00d0 1345678
739
+ nofor always \x00d1 1245678
740
+ nofor always \x00d2 124678
741
+ nofor always \x00d3 34678
742
+ nofor always \x00d4 6-14567
743
+ nofor always \x00d5 145678
744
+ nofor always \x00d6 24678
745
+ nofor always \x00d8 2467
746
+ nofor always \x00d9 6-234567
747
+ nofor always \x00da 125678
748
+ nofor always \x00db 6-1567
749
+ nofor always \x00dc 6-12567
750
+ nofor always \x00dd 13478
751
+ nofor always \x00de 1378
752
+ nofor always \x0100 5-17
753
+ nofor always \x0106 5-147
754
+ nofor always \x010e 5-1457
755
+ nofor always \x0112 5-157
756
+ nofor always \x011c 5-12457
757
+ nofor always \x0124 5-1257
758
+ nofor always \x0128 5-247
759
+ nofor always \x0134 5-2457
760
+ nofor always \x0136 5-137
761
+ nofor always \x0139 5-1237
762
+ nofor always \x0143 5-13457
763
+ nofor always \x014c 5-1357
764
+ nofor always \x0152 13578
765
+ nofor always \x0154 5-12357
766
+ nofor always \x015a 5-2347
767
+ nofor always \x0160 23478
768
+ nofor always \x0162 5-23457
769
+ nofor always \x0168 5-1367
770
+ nofor always \x0174 5-24567
771
+ nofor always \x0176 5-134567
772
+ nofor always \x0178 2345678
773
+ nofor always \x0179 5-13567
774
+ nofor always \x017d 6-3467
775
+ nofor always \x0386 458-5-17
776
+ nofor always \x0388 458-5-157
777
+ nofor always \x0389 458-5-1567
778
+ nofor always \x038A 458-5-247
779
+ nofor always \x038C 458-5-1357
780
+ nofor always \x038E 458-5-1367
781
+ nofor always \x038F 458-5-24567
782
+ nofor always \x0391 458-17
783
+ nofor always \x0392 458-127
784
+ nofor always \x0393 458-12457
785
+ nofor always \x0394 458-1457
786
+ nofor always \x0395 458-157
787
+ nofor always \x0396 458-13567
788
+ nofor always \x0397 458-1567
789
+ nofor always \x0398 458-14567
790
+ nofor always \x0399 458-247
791
+ nofor always \x039A 458-137
792
+ nofor always \x039B 458-1237
793
+ nofor always \x039C 458-1347
794
+ nofor always \x039D 458-13457
795
+ nofor always \x039E 458-13467
796
+ nofor always \x039F 458-1357
797
+ nofor always \x03A0 458-12347
798
+ nofor always \x03A1 458-12357
799
+ nofor always \x03A3 458-2347
800
+ nofor always \x03A4 458-23457
801
+ nofor always \x03A5 458-1367
802
+ nofor always \x03A6 458-1247
803
+ nofor always \x03A7 458-123467
804
+ nofor always \x03A8 458-134567
805
+ nofor always \x03A9 458-24567
806
+
807
+
808
+ ### misc opcodes ###
809
+
810
+ # Emphasis opcodes
811
+ emphclass italic
812
+ emphclass underline
813
+ emphclass bold
814
+
815
+ begemphphrase italic 56
816
+ endemphphrase italic after 56
817
+
818
+ begemphphrase bold 56
819
+ endemphphrase bold after 56
820
+
821
+ begemphphrase underline 56
822
+ endemphphrase underline after 56
823
+
824
+ # special symbols
825
+ decpoint , 2
826
+ hyphen - 368
827
+ letsign 6
828
+ noletsign Ii\x0138\x0149
829
+ noletsignbefore 1234567890
830
+
831
+ capsletter f
832
+ multind f-6 capsletter letsign
833
+ multind 6-f letsign capsletter
834
+ capsnocont
835
+
836
+ # The Danish use of letsign differs somewhat from the LibLouis way.
837
+ # In order to be sure that we are getting a letsign when we want one, we are sometimes getting an overlap.
838
+
839
+ # Ensure that we have letsign between a digit and "st"
840
+ # and nd after a digit is not contracted
841
+ noback context _$d["st"]!$l @6-234-2345
842
+ noback context _$d["st"]~ @6-234-2345
843
+ noback context _$d["nd"]!$l @1345-145
844
+ noback context _$d["nd"]~ @1345-145
845
+ # Ensure that we get a letsign between a digit and a single letter.
846
+ noback context $d[]$l!$l @6
847
+ noback context $d[]$l~ @6
848
+
849
+ #Special sequences, urls emails and file names.
850
+
851
+ nocont $
852
+ nocont \\ # line cannot end with a backslash
853
+ nocont @
854
+ nocont ://
855
+ nocont www
856
+
857
+
858
+ # Remove space between § and numbers.
859
+ noback begnum § 578
860
+ begnum §\s 578
861
+ begnum §§\s 578-578
862
+ always §§ 578-578
863
+
864
+ # Word contractions with only 1 cell
865
+ word at 1
866
+ word bliver 12
867
+ word den 12346
868
+ word der 23456
869
+ word det 2346
870
+ word de 1456
871
+ word du 145
872
+ word efter 1356
873
+ word eller 15
874
+ word en 126
875
+ word er 156
876
+ word et 346
877
+ word for 124
878
+ word før 246
879
+ word gennem 12456
880
+ word gør 1245
881
+ word han 13456
882
+ word har 125
883
+ word hun 136
884
+ word hvad 2456
885
+ word hvor 34
886
+ word jeg 245
887
+ word kan 13
888
+ word lige 123
889
+ word med 134
890
+ word men 146
891
+ word ned 1246
892
+ word når 1345
893
+ word og 14
894
+ word op 135
895
+ word over 1346
896
+ word på 1234
897
+ word ret 12356
898
+ word rigtig 1235
899
+ word skal 123456
900
+ word som 234
901
+ word så 16
902
+ word te 1256
903
+ word til 2345
904
+ word under 12345
905
+ word ved 1236
906
+ word ve 3456
907
+ word være 345
908
+
909
+ ### Exceptions ###
910
+
911
+ # Ensure no single cell word contraction before or after a dash
912
+ word -at 368-1-2345
913
+ word at- 1-2345-368
914
+ word -bliver 368-12-123-24-1236-15-1235
915
+ word bliver- 12-123-24-1236-15-1235-368
916
+ word -den 368-145-15-1345
917
+ word den- 145-15-1345-368
918
+ word -der 368-145-15-1235
919
+ word der- 145-15-1235-368
920
+ word -det 368-145-15-2345
921
+ word det- 145-15-2345-368
922
+ word -de 368-145-15
923
+ word de- 145-15-368
924
+ word -du 368-145-136
925
+ word du- 145-136-368
926
+ word -efter 368-15-124-2345-15-1235
927
+ word efter- 15-124-2345-15-1235-368
928
+ word -er 368-15-1235
929
+ word er- 15-1235-368
930
+ word -et 368-15-2345
931
+ word et- 15-2345-368
932
+ word -for 368-124-135-1235
933
+ word for- 124-135-1235-368
934
+ word -før 368-124-246-1235
935
+ word før- 124-246-1235-368
936
+ word -gennem 368-1245-15-1345-1345-15-134
937
+ word gennem- 1245-15-1345-1345-15-134-368
938
+ word -gør 368-1245-246-1235
939
+ word gør- 1245-246-1235-368
940
+ word -han 368-125-1-1345
941
+ word han- 125-1-1345-368
942
+ word -har 368-125-1-1235
943
+ word har- 125-1-1235-368
944
+ word -hun 368-125-136-1345
945
+ word hun- 125-136-1345-368
946
+ word -kan 368-13-1-1345
947
+ word kan- 13-1-1345-368
948
+ word -lige 368-123-24-12456
949
+ word lige- 123-24-12456-368
950
+ word -med 368-146-145
951
+ word med- 146-145-368
952
+ word -men 368-134-126
953
+ word men- 134-126-368
954
+ word -ned 368-1345-15-145
955
+ word ned- 1345-15-145-368
956
+ word -når 368-1345-16-1235
957
+ word når- 1345-16-1235-368
958
+ word -og 368-135-1245
959
+ word og- 135-1245-368
960
+ word -op 368-135-1234
961
+ word op- 135-1234-368
962
+ word -over 368-135-1236-15-1235
963
+ word over- 135-1236-15-1235-368
964
+ word -på 368-1234-16
965
+ word på- 1234-16-368
966
+ word -ret 368-1235-15-2345
967
+ word ret- 1235-15-2345-368
968
+ word -rigtig 368-1235-24-1245-2345-24-1245
969
+ word rigtig- 1235-24-1245-2345-24-1245-368
970
+ word -skal 368-234-13-1-123
971
+ word skal- 234-13-1-123-368
972
+ word -som 368-234-135-134
973
+ word som- 234-135-134-368
974
+ word -så 368-234-16
975
+ word så- 234-16-368
976
+ word -te 368-2345-15
977
+ word te- 2345-15-368
978
+ word -til 368-2345-24-123
979
+ word til- 2345-24-123-368
980
+ word -under 368-136-1345-145-15-1235
981
+ word under- 136-1345-145-15-1235-368
982
+ word -ved 368-1236-15-145
983
+ word ved- 1236-15-145-368
984
+ word -ve 368-1236-15
985
+ word ve- 1236-15-368
986
+ word -være 368-1236-345-1235-15
987
+ word Være- 1236-345-1235-15-368
988
+
989
+ ### Patches ###
990
+ # the following sections are to compensate for various behaviours and problems in liblouis.
991
+ # They will be removed, as the issues are resolved.
992
+
993
+ # Ensure correct back-translation of word contractions before various punctuation.
994
+
995
+ nofor always a 6-1
996
+ nofor always b 6-12
997
+ nofor always c 6-14
998
+ nofor always d 6-145
999
+ nofor always e 6-15
1000
+ nofor always f 6-124
1001
+ nofor always g 6-1245
1002
+ nofor always h 6-125
1003
+ nofor always j 6-245
1004
+ nofor always k 6-13
1005
+ nofor always l 6-123
1006
+ nofor always m 6-134
1007
+ nofor always n 6-1345
1008
+ nofor always o 6-135
1009
+ nofor always p 6-1234
1010
+ nofor always q 6-12345
1011
+ nofor always r 6-1235
1012
+ nofor always s 6-234
1013
+ nofor always t 6-2345
1014
+ nofor always u 6-136
1015
+ nofor always v 6-1236
1016
+ nofor always w 6-2456
1017
+ nofor always x 6-1346
1018
+ nofor always y 6-13456
1019
+ nofor always z 6-1356
1020
+ nofor always æ 6-345
1021
+ nofor always ø 6-246
1022
+ nofor always å 6-16
1023
+
1024
+ nofor always A 6-17
1025
+ nofor always B 6-127
1026
+ nofor always C 6-147
1027
+ nofor always D 6-1457
1028
+ nofor always E 6-157
1029
+ nofor always F 6-1247
1030
+ nofor always G 6-12457
1031
+ nofor always H 6-1257
1032
+ nofor always J 6-2457
1033
+ nofor always K 6-137
1034
+ nofor always L 6-1237
1035
+ nofor always M 6-1347
1036
+ nofor always N 6-13457
1037
+ nofor always O 6-1357
1038
+ nofor always P 6-12347
1039
+ nofor always Q 6-123457
1040
+ nofor always R 6-12357
1041
+ nofor always S 6-2347
1042
+ nofor always T 6-23457
1043
+ nofor always U 6-1367
1044
+ nofor always V 6-12367
1045
+ nofor always W 6-24567
1046
+ nofor always X 6-13467
1047
+ nofor always Y 6-134567
1048
+ nofor always Z 6-13567
1049
+ nofor always Æ 6-3457
1050
+ nofor always Ø 6-2467
1051
+ nofor always Å 6-167
1052
+
1053
+ # if a word contraction is followed by a punctuation and another word immediately after,
1054
+ # The contracted word before the punctuation will back-translate as its components
1055
+ attribute wordlimit /,!.:’()?"'\x00ab_\x201d\x0094\x2019\x0092\x00bb
1056
+
1057
+ nofor before wordlimit begword at 1
1058
+ nofor before wordlimit begword bliver 12
1059
+ nofor before wordlimit begword den 12346
1060
+ nofor before wordlimit begword der 23456
1061
+ nofor before wordlimit begword det 2346
1062
+ nofor before wordlimit begword de 1456
1063
+ nofor before wordlimit begword du 145
1064
+ nofor before wordlimit begword efter 1356
1065
+ nofor before wordlimit begword eller 15
1066
+ nofor before wordlimit begword en 126
1067
+ nofor before wordlimit begword er 156
1068
+ nofor before wordlimit begword et 346
1069
+ nofor before wordlimit begword for 124
1070
+ nofor before wordlimit begword før 246
1071
+ nofor before wordlimit begword gennem 12456
1072
+ nofor before wordlimit begword gør 1245
1073
+ nofor before wordlimit begword han 13456
1074
+ nofor before wordlimit begword har 125
1075
+ nofor before wordlimit begword hun 136
1076
+ nofor before wordlimit begword hvad 2456
1077
+ nofor before wordlimit begword hvor 34
1078
+ nofor before wordlimit begword jeg 245
1079
+ nofor before wordlimit begword kan 13
1080
+ nofor before wordlimit begword lige 123
1081
+ nofor before wordlimit begword med 134
1082
+ nofor before wordlimit begword men 146
1083
+ nofor before wordlimit begword ned 1246
1084
+ nofor before wordlimit begword når 1345
1085
+ nofor before wordlimit begword og 14
1086
+ nofor before wordlimit begword op 135
1087
+ nofor before wordlimit begword over 1346
1088
+ nofor before wordlimit begword på 1234
1089
+ nofor before wordlimit begword ret 12356
1090
+ nofor before wordlimit begword rigtig 1235
1091
+ nofor before wordlimit begword skal 123456
1092
+ nofor before wordlimit begword som 234
1093
+ nofor before wordlimit begword så 16
1094
+ nofor before wordlimit begword te 1256
1095
+ nofor before wordlimit begword til 2345
1096
+ nofor before wordlimit begword under 12345
1097
+ nofor before wordlimit begword ved 1236
1098
+ nofor before wordlimit begword være 345
1099
+
1100
+ ### Problems solved with pass 2 ###
1101
+
1102
+ # Most of these lines are temporary.
1103
+ # They will be written with a few swap sets when the swapdd opcode has been fixed.
1104
+
1105
+
1106
+ # Generic forward convert of @f-... to @...7
1107
+ noback pass2 @f-235 @2357
1108
+ # Conversion with letsign.
1109
+ noback pass2 @f-6-235 @6-2357
1110
+ # Conversion with dot 5, which is used for accent marker in higher unicode pages.
1111
+ noback pass2 @f-5-235 @5-2357
1112
+ # Generic backward conversion.
1113
+ nofor pass2 @2357 @f-235
1114
+ # Conversion with dot 5 (letsign is handled below).
1115
+ nofor pass2 @5-2357 @f-5-235
1116
+
1117
+ # Same for the following characters.
1118
+
1119
+ noback pass2 @f-35 @357
1120
+ noback pass2 @f-6-35 @6-357
1121
+ noback pass2 @f-5-35 @5-357
1122
+ nofor pass2 @357 @f-35
1123
+ nofor pass2 @5-357 @f-5-35
1124
+
1125
+ noback pass2 @f-1 @17
1126
+ noback pass2 @f-6-1 @6-17
1127
+ noback pass2 @f-5-1 @5-17
1128
+ nofor pass2 @17 @f-1
1129
+ nofor pass2 @5-17 @f-5-1
1130
+ nofor pass2 @458-17 @f-458-1
1131
+ nofor pass2 @458-5-17 @f-458-5-1
1132
+
1133
+ noback pass2 @f-12 @127
1134
+ noback pass2 @f-6-12 @6-127
1135
+ noback pass2 @f-5-12 @5-127
1136
+ nofor pass2 @127 @f-12
1137
+ nofor pass2 @5-127 @f-5-12
1138
+ nofor pass2 @458-127 @f-458-12
1139
+
1140
+ noback pass2 @f-14 @147
1141
+ noback pass2 @f-6-14 @6-147
1142
+ noback pass2 @f-5-14 @5-147
1143
+ nofor pass2 @147 @f-14
1144
+ nofor pass2 @5-147 @f-5-14
1145
+ nofor pass2 @458-147 @f-458-14
1146
+
1147
+ noback pass2 @f-145 @1457
1148
+ noback pass2 @f-6-145 @6-1457
1149
+ noback pass2 @f-5-145 @5-1457
1150
+ nofor pass2 @1457 @f-145
1151
+ nofor pass2 @5-1457 @f-5-145
1152
+ nofor pass2 @458-1457 @f-458-145
1153
+
1154
+ noback pass2 @f-15 @157
1155
+ noback pass2 @f-6-15 @6-157
1156
+ noback pass2 @f-5-15 @5-157
1157
+ nofor pass2 @157 @f-15
1158
+ nofor pass2 @5-157 @f-5-15
1159
+ nofor pass2 @458-157 @f-458-15
1160
+ nofor pass2 @458-5-157 @f-458-5-15
1161
+
1162
+ noback pass2 @f-124 @1247
1163
+ noback pass2 @f-6-124 @6-1247
1164
+ noback pass2 @f-5-124 @5-1247
1165
+ nofor pass2 @1247 @f-124
1166
+ nofor pass2 @5-1247 @f-5-124
1167
+ nofor pass2 @458-1247 @f-458-124
1168
+
1169
+ noback pass2 @f-1245 @12457
1170
+ noback pass2 @f-6-1245 @6-12457
1171
+ noback pass2 @f-5-1245 @5-12457
1172
+ nofor pass2 @12457 @f-1245
1173
+ nofor pass2 @5-12457 @f-5-1245
1174
+ nofor pass2 @458-12457 @f-458-1245
1175
+
1176
+ noback pass2 @f-125 @1257
1177
+ noback pass2 @f-6-125 @6-1257
1178
+ noback pass2 @f-5-125 @5-1257
1179
+ nofor pass2 @1257 @f-125
1180
+ nofor pass2 @5-1257 @f-5-125
1181
+
1182
+ noback pass2 @f-24 @247
1183
+ noback pass2 @f-6-24 @6-247
1184
+ noback pass2 @f-5-24 @5-247
1185
+ nofor pass2 @247 @f-24
1186
+ nofor pass2 @5-247 @f-5-24
1187
+ nofor pass2 @458-247 @f-458-24
1188
+ nofor pass2 @458-5-247 @f-458-5-24
1189
+
1190
+ noback pass2 @f-245 @2457
1191
+ noback pass2 @f-6-245 @6-2457
1192
+ noback pass2 @f-5-245 @5-2457
1193
+ nofor pass2 @2457 @f-245
1194
+ nofor pass2 @5-2457 @f-5-245
1195
+
1196
+ noback pass2 @f-13 @137
1197
+ noback pass2 @f-6-13 @6-137
1198
+ noback pass2 @f-5-13 @5-137
1199
+ nofor pass2 @137 @f-13
1200
+ nofor pass2 @5-137 @f-5-13
1201
+ nofor pass2 @458-137 @f-458-13
1202
+
1203
+ noback pass2 @f-123 @1237
1204
+ noback pass2 @f-6-123 @6-1237
1205
+ noback pass2 @f-5-123 @5-1237
1206
+ nofor pass2 @1237 @f-123
1207
+ nofor pass2 @5-1237 @f-5-123
1208
+ nofor pass2 @458-1237 @f-458-123
1209
+
1210
+ noback pass2 @f-134 @1347
1211
+ noback pass2 @f-6-134 @6-1347
1212
+ noback pass2 @f-5-134 @5-1347
1213
+ nofor pass2 @1347 @f-134
1214
+ nofor pass2 @5-1347 @f-5-134
1215
+ nofor pass2 @458-1347 @f-458-134
1216
+
1217
+ noback pass2 @f-1345 @13457
1218
+ noback pass2 @f-6-1345 @6-13457
1219
+ noback pass2 @f-5-1345 @5-13457
1220
+ nofor pass2 @13457 @f-1345
1221
+ nofor pass2 @5-13457 @f-5-1345
1222
+ nofor pass2 @458-13457 @f-458-1345
1223
+
1224
+ noback pass2 @f-135 @1357
1225
+ noback pass2 @f-6-135 @6-1357
1226
+ noback pass2 @f-5-135 @5-1357
1227
+ nofor pass2 @1357 @f-135
1228
+ nofor pass2 @5-1357 @f-5-135
1229
+ nofor pass2 @458-1357 @f-458-135
1230
+ nofor pass2 @458-5-1357 @f-458-5-135
1231
+
1232
+ noback pass2 @f-1234 @12347
1233
+ noback pass2 @f-6-1234 @6-12347
1234
+ noback pass2 @f-5-1234 @5-12347
1235
+ nofor pass2 @12347 @f-1234
1236
+ nofor pass2 @5-12347 @f-5-1234
1237
+ nofor pass2 @458-12347 @f-458-1234
1238
+
1239
+ noback pass2 @f-12345 @123457
1240
+ noback pass2 @f-6-12345 @6-123457
1241
+ noback pass2 @f-5-12345 @5-123457
1242
+ nofor pass2 @123457 @f-12345
1243
+ nofor pass2 @5-123457 @f-5-12345
1244
+
1245
+ noback pass2 @f-1235 @12357
1246
+ noback pass2 @f-6-1235 @6-12357
1247
+ noback pass2 @f-5-1235 @5-12357
1248
+ nofor pass2 @12357 @f-1235
1249
+ nofor pass2 @5-12357 @f-5-1235
1250
+ nofor pass2 @458-12357 @f-458-1235
1251
+
1252
+ noback pass2 @f-234 @2347
1253
+ noback pass2 @f-6-234 @6-2347
1254
+ noback pass2 @f-5-234 @5-2347
1255
+ nofor pass2 @2347 @f-234
1256
+ nofor pass2 @5-2347 @f-5-234
1257
+ nofor pass2 @458-2347 @f-458-234
1258
+
1259
+ noback pass2 @f-2345 @23457
1260
+ noback pass2 @f-6-2345 @6-23457
1261
+ noback pass2 @f-5-2345 @5-23457
1262
+ nofor pass2 @23457 @f-2345
1263
+ nofor pass2 @5-23457 @f-5-2345
1264
+ nofor pass2 @458-23457 @f-458-2345
1265
+
1266
+ noback pass2 @f-136 @1367
1267
+ noback pass2 @f-6-136 @6-1367
1268
+ noback pass2 @f-5-136 @5-1367
1269
+ nofor pass2 @1367 @f-136
1270
+ nofor pass2 @5-1367 @f-5-136
1271
+ nofor pass2 @458-1367 @f-458-136
1272
+ nofor pass2 @458-5-1367 @f-458-5-136
1273
+
1274
+ noback pass2 @f-1236 @12367
1275
+ noback pass2 @f-6-1236 @6-12367
1276
+ noback pass2 @f-5-1236 @5-12367
1277
+ nofor pass2 @12367 @f-1236
1278
+ nofor pass2 @5-12367 @f-5-1236
1279
+
1280
+ noback pass2 @f-2456 @24567
1281
+ noback pass2 @f-6-2456 @6-24567
1282
+ noback pass2 @f-5-2456 @5-24567
1283
+ nofor pass2 @24567 @f-2456
1284
+ nofor pass2 @5-24567 @f-5-2456
1285
+ nofor pass2 @458-24567 @f-458-2456
1286
+ nofor pass2 @458-5-24567 @f-458-5-2456
1287
+
1288
+ noback pass2 @f-1346 @13467
1289
+ noback pass2 @f-6-1346 @6-13467
1290
+ noback pass2 @f-5-1346 @5-13467
1291
+ nofor pass2 @13467 @f-1346
1292
+ nofor pass2 @5-13467 @f-5-1346
1293
+ nofor pass2 @458-13467 @f-458-1346
1294
+
1295
+ noback pass2 @f-13456 @134567
1296
+ noback pass2 @f-6-13456 @6-134567
1297
+ noback pass2 @f-5-13456 @5-134567
1298
+ nofor pass2 @134567 @f-13456
1299
+ nofor pass2 @5-134567 @f-5-13456
1300
+ nofor pass2 @458-134567 @f-458-13456
1301
+
1302
+ noback pass2 @f-1356 @13567
1303
+ noback pass2 @f-6-1356 @6-13567
1304
+ noback pass2 @f-5-1356 @5-13567
1305
+ nofor pass2 @13567 @f-1356
1306
+ nofor pass2 @5-13567 @f-5-1356
1307
+ nofor pass2 @458-13567 @f-458-1356
1308
+
1309
+ noback pass2 @f-34 @347
1310
+ noback pass2 @f-6-34 @6-347
1311
+ noback pass2 @f-5-34 @5-347
1312
+ nofor pass2 @347 @f-34
1313
+ nofor pass2 @5-347 @f-5-34
1314
+
1315
+ noback pass2 @f-346 @3467
1316
+ noback pass2 @f-6-346 @6-3467
1317
+ noback pass2 @f-5-346 @5-3467
1318
+ nofor pass2 @3467 @f-346
1319
+ nofor pass2 @5-3467 @f-5-346
1320
+
1321
+ noback pass2 @f-2348 @23478
1322
+ noback pass2 @f-6-2348 @6-23478
1323
+ noback pass2 @f-5-2348 @5-23478
1324
+ nofor pass2 @23478 @f-2348
1325
+ nofor pass2 @5-23478 @f-5-2348
1326
+
1327
+ noback pass2 @f-1358 @13578
1328
+ noback pass2 @f-6-1358 @6-13578
1329
+ noback pass2 @f-5-1358 @5-13578
1330
+ nofor pass2 @13578 @f-1358
1331
+ nofor pass2 @5-13578 @f-5-1358
1332
+
1333
+ noback pass2 @f-234568 @2345678
1334
+ noback pass2 @f-6-234568 @6-2345678
1335
+ noback pass2 @f-5-234568 @5-2345678
1336
+ nofor pass2 @2345678 @f-234568
1337
+ nofor pass2 @5-2345678 @f-5-234568
1338
+
1339
+ noback pass2 @f-236 @2367
1340
+ noback pass2 @f-6-236 @6-2367
1341
+ noback pass2 @f-5-236 @5-2367
1342
+ nofor pass2 @2367 @f-236
1343
+ nofor pass2 @5-2367 @f-5-236
1344
+
1345
+ noback pass2 @f-256 @2567
1346
+ noback pass2 @f-6-256 @6-2567
1347
+ noback pass2 @f-5-256 @5-2567
1348
+ nofor pass2 @2567 @f-256
1349
+ nofor pass2 @5-2567 @f-5-256
1350
+
1351
+ noback pass2 @f-356 @3567
1352
+ noback pass2 @f-6-356 @6-3567
1353
+ noback pass2 @f-5-356 @5-3567
1354
+ nofor pass2 @3567 @f-356
1355
+ nofor pass2 @5-3567 @f-5-356
1356
+
1357
+ noback pass2 @f-3456 @34567
1358
+ noback pass2 @f-6-3456 @6-34567
1359
+ noback pass2 @f-5-3456 @5-34567
1360
+ nofor pass2 @34567 @f-3456
1361
+ nofor pass2 @5-34567 @f-5-3456
1362
+
1363
+ noback pass2 @f-12356 @123567
1364
+ noback pass2 @f-6-12356 @6-123567
1365
+ noback pass2 @f-5-12356 @5-123567
1366
+ nofor pass2 @123567 @f-12356
1367
+ nofor pass2 @5-123567 @f-5-12356
1368
+
1369
+ noback pass2 @f-123568 @1235678
1370
+ noback pass2 @f-6-123568 @6-1235678
1371
+ noback pass2 @f-5-123568 @5-1235678
1372
+ nofor pass2 @1235678 @f-123568
1373
+ nofor pass2 @5-1235678 @f-5-123568
1374
+
1375
+ noback pass2 @f-168 @1678
1376
+ noback pass2 @f-6-168 @6-1678
1377
+ noback pass2 @f-5-168 @5-1678
1378
+ nofor pass2 @1678 @f-168
1379
+ nofor pass2 @5-1678 @f-5-168
1380
+
1381
+ noback pass2 @f-1468 @14678
1382
+ noback pass2 @f-6-1468 @6-14678
1383
+ noback pass2 @f-5-1468 @5-14678
1384
+ nofor pass2 @14678 @f-1468
1385
+ nofor pass2 @5-14678 @f-5-1468
1386
+
1387
+ noback pass2 @f-3458 @34578
1388
+ noback pass2 @f-6-3458 @6-34578
1389
+ noback pass2 @f-5-3458 @5-34578
1390
+ nofor pass2 @34578 @f-3458
1391
+ nofor pass2 @5-34578 @f-5-3458
1392
+
1393
+ noback pass2 @f-16 @167
1394
+ noback pass2 @f-6-16 @6-167
1395
+ noback pass2 @f-5-16 @5-167
1396
+ nofor pass2 @167 @f-16
1397
+ nofor pass2 @5-167 @f-5-16
1398
+
1399
+ noback pass2 @f-345 @3457
1400
+ noback pass2 @f-6-345 @6-3457
1401
+ noback pass2 @f-5-345 @5-3457
1402
+ nofor pass2 @3457 @f-345
1403
+ nofor pass2 @5-3457 @f-5-345
1404
+
1405
+ noback pass2 @f-12346 @123467
1406
+ noback pass2 @f-6-12346 @6-123467
1407
+ noback pass2 @f-5-12346 @5-123467
1408
+ nofor pass2 @123467 @f-12346
1409
+ nofor pass2 @5-123467 @f-5-12346
1410
+ nofor pass2 @458-123467 @f-458-12346
1411
+
1412
+ noback pass2 @f-2346 @23467
1413
+ noback pass2 @f-6-2346 @6-23467
1414
+ noback pass2 @f-5-2346 @5-23467
1415
+ nofor pass2 @23467 @f-2346
1416
+ nofor pass2 @5-23467 @f-5-2346
1417
+
1418
+ noback pass2 @f-123456 @1234567
1419
+ noback pass2 @f-6-123456 @6-1234567
1420
+ noback pass2 @f-5-123456 @5-1234567
1421
+ nofor pass2 @1234567 @f-123456
1422
+ nofor pass2 @5-1234567 @f-5-123456
1423
+
1424
+ noback pass2 @f-126 @1267
1425
+ noback pass2 @f-6-126 @6-1267
1426
+ noback pass2 @f-5-126 @5-1267
1427
+ nofor pass2 @1267 @f-126
1428
+ nofor pass2 @5-1267 @f-5-126
1429
+
1430
+ noback pass2 @f-1246 @12467
1431
+ noback pass2 @f-6-1246 @6-12467
1432
+ noback pass2 @f-5-1246 @5-12467
1433
+ nofor pass2 @12467 @f-1246
1434
+ nofor pass2 @5-12467 @f-5-1246
1435
+
1436
+ noback pass2 @f-1568 @15678
1437
+ noback pass2 @f-6-1568 @6-15678
1438
+ noback pass2 @f-5-1568 @5-15678
1439
+ nofor pass2 @15678 @f-1568
1440
+ nofor pass2 @5-15678 @f-5-1568
1441
+
1442
+ noback pass2 @f-1268 @12678
1443
+ noback pass2 @f-6-1268 @6-12678
1444
+ noback pass2 @f-5-1268 @5-12678
1445
+ nofor pass2 @12678 @f-1268
1446
+ nofor pass2 @5-12678 @f-5-1268
1447
+
1448
+ noback pass2 @f-146 @1467
1449
+ noback pass2 @f-6-146 @6-1467
1450
+ noback pass2 @f-5-146 @5-1467
1451
+ nofor pass2 @1467 @f-146
1452
+ nofor pass2 @5-1467 @f-5-146
1453
+
1454
+ noback pass2 @f-12456 @124567
1455
+ noback pass2 @f-6-12456 @6-124567
1456
+ noback pass2 @f-5-12456 @5-124567
1457
+ nofor pass2 @124567 @f-12456
1458
+ nofor pass2 @5-124567 @f-5-12456
1459
+
1460
+ noback pass2 @f-134568 @1345678
1461
+ noback pass2 @f-6-134568 @6-1345678
1462
+ noback pass2 @f-5-134568 @5-1345678
1463
+ nofor pass2 @1345678 @f-134568
1464
+ nofor pass2 @5-1345678 @f-5-134568
1465
+
1466
+ noback pass2 @f-124568 @1245678
1467
+ noback pass2 @f-6-124568 @6-1245678
1468
+ noback pass2 @f-5-124568 @5-1245678
1469
+ nofor pass2 @1245678 @f-124568
1470
+ nofor pass2 @5-1245678 @f-5-124568
1471
+
1472
+ noback pass2 @f-12468 @124678
1473
+ noback pass2 @f-6-12468 @6-124678
1474
+ noback pass2 @f-5-12468 @5-124678
1475
+ nofor pass2 @124678 @f-12468
1476
+ nofor pass2 @5-124678 @f-5-12468
1477
+
1478
+ noback pass2 @f-3468 @34678
1479
+ noback pass2 @f-6-3468 @6-34678
1480
+ noback pass2 @f-5-3468 @5-34678
1481
+ nofor pass2 @34678 @f-3468
1482
+ nofor pass2 @5-34678 @f-5-3468
1483
+
1484
+ noback pass2 @f-1456 @14567
1485
+ noback pass2 @f-6-1456 @6-14567
1486
+ noback pass2 @f-5-1456 @5-14567
1487
+ nofor pass2 @14567 @f-1456
1488
+ nofor pass2 @5-14567 @f-5-1456
1489
+ nofor pass2 @458-14567 @f-458-1456
1490
+
1491
+ noback pass2 @f-14568 @145678
1492
+ noback pass2 @f-6-14568 @6-145678
1493
+ noback pass2 @f-5-14568 @5-145678
1494
+ nofor pass2 @145678 @f-14568
1495
+ nofor pass2 @5-145678 @f-5-14568
1496
+
1497
+ noback pass2 @f-2468 @24678
1498
+ noback pass2 @f-6-2468 @6-24678
1499
+ noback pass2 @f-5-2468 @5-24678
1500
+ nofor pass2 @24678 @f-2468
1501
+ nofor pass2 @5-24678 @f-5-2468
1502
+
1503
+ noback pass2 @f-246 @2467
1504
+ noback pass2 @f-6-246 @6-2467
1505
+ noback pass2 @f-5-246 @5-2467
1506
+ nofor pass2 @2467 @f-246
1507
+ nofor pass2 @5-2467 @f-5-246
1508
+
1509
+ noback pass2 @f-23456 @234567
1510
+ noback pass2 @f-6-23456 @6-234567
1511
+ noback pass2 @f-5-23456 @5-234567
1512
+ nofor pass2 @234567 @f-23456
1513
+ nofor pass2 @5-234567 @f-5-23456
1514
+
1515
+ noback pass2 @f-12568 @125678
1516
+ noback pass2 @f-6-12568 @6-125678
1517
+ noback pass2 @f-5-12568 @5-125678
1518
+ nofor pass2 @125678 @f-12568
1519
+ nofor pass2 @5-125678 @f-5-12568
1520
+
1521
+ noback pass2 @f-156 @1567
1522
+ noback pass2 @f-6-156 @6-1567
1523
+ noback pass2 @f-5-156 @5-1567
1524
+ nofor pass2 @1567 @f-156
1525
+ nofor pass2 @5-1567 @f-5-156
1526
+ nofor pass2 @458-1567 @f-458-156
1527
+ nofor pass2 @458-5-1567 @f-458-5-156
1528
+
1529
+ noback pass2 @f-1256 @12567
1530
+ noback pass2 @f-6-1256 @6-12567
1531
+ noback pass2 @f-5-1256 @5-12567
1532
+ nofor pass2 @12567 @f-1256
1533
+ nofor pass2 @5-12567 @f-5-1256
1534
+
1535
+ noback pass2 @f-1348 @13478
1536
+ noback pass2 @f-6-1348 @6-13478
1537
+ noback pass2 @f-5-1348 @5-13478
1538
+ nofor pass2 @13478 @f-1348
1539
+ nofor pass2 @5-13478 @f-5-1348
1540
+
1541
+ noback pass2 @f-138 @1378
1542
+ noback pass2 @f-6-138 @6-1378
1543
+ noback pass2 @f-5-138 @5-1378
1544
+ nofor pass2 @1378 @f-138
1545
+ nofor pass2 @5-1378 @f-5-138
1546
+
1547
+ noback pass2 @f-234568 @2345678
1548
+ noback pass2 @f-6-234568 @6-2345678
1549
+ noback pass2 @f-5-234568 @5-2345678
1550
+ nofor pass2 @2345678 @f-234568
1551
+ nofor pass2 @5-2345678 @f-5-234568
1552
+
1553
+ # Tweak to keep letsign for letters that should always have letsign.
1554
+ # Letsign will be removed by the multind opcode. So we insert an extra one.
1555
+ nofor pass2 @6-123457 @f-6-6-12345
1556
+ nofor pass2 @6-24567 @f-6-6-2456
1557
+ nofor pass2 @6-13467 @f-6-6-1346
1558
+ nofor pass2 @6-134567 @f-6-6-13456
1559
+ nofor pass2 @6-13567 @f-6-6-1356
1560
+ nofor pass2 @6-123567 @f-6-6-12356
1561
+ nofor pass2 @6-123467 @f-6-6-12346
1562
+ nofor pass2 @6-23467 @f-6-6-2346
1563
+ nofor pass2 @6-1234567 @f-6-6-123456
1564
+ nofor pass2 @6-1267 @f-6-6-126
1565
+ nofor pass2 @6-12467 @f-6-6-1246
1566
+ nofor pass2 @6-1467 @f-6-6-146
1567
+ nofor pass2 @6-124567 @f-6-6-12456
1568
+ nofor pass2 @6-14567 @f-6-6-1456
1569
+ nofor pass2 @6-234567 @f-6-6-23456
1570
+ nofor pass2 @6-1567 @f-6-6-156
1571
+ nofor pass2 @6-12567 @f-6-6-1256
1572
+
1573
+ # Ensure that punctuation signs etc. are not "tolowered" when they have a letsign, but only when they act as a partword contraction.
1574
+ nofor pass2 @6-347 *
1575
+ nofor pass2 @6-2357 *
1576
+ nofor pass2 @6-3467 *
1577
+ nofor pass2 @6-2567 *
1578
+ nofor pass2 @6-2367 *
1579
+ nofor pass2 @6-34567 *
1580
+
1581
+ # remove any superfluous capsletter marks.
1582
+ noback pass2 @f ?
1583
+
1584
+ # Remove any superfluous letsigns and only keep one.
1585
+ noback pass3 @6-6 @6
1586
+
1587
+ # Remove letsigns before letters marked with indicator for accents or greek letters.
1588
+
1589
+ noback pass3 @6-5 @5
1590
+ noback pass3 @6-458 @458
1591
+
1592
+ # Ensure there is only one emphasis sign
1593
+ noback pass3 @56-56 @56
1594
+ noback pass3 @56-56-56 @56