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,2063 @@
1
+ # liblouis: Danish, table for 8 dots grade 2 (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
+ # This is the Danish table for 8 dots grade 2 (stor forkortelse) 1993.
24
+ # Use this table for translation and back-translation of Danish 8 dots grade 2.
25
+ #
26
+ # Version: Bue Vester-Andersen, December 2022
27
+
28
+ ### Table Metadata
29
+
30
+ #-name: Dansk forkortet 8-punkt 1993
31
+ #-index-name: Danish, contracted, 8-dot, 1993
32
+ #-display-name: Danish 8-dot contracted braille (1993 standard)
33
+
34
+ #+language: da
35
+ #+type: literary
36
+ #+contraction: full
37
+ #+grade: 2
38
+ #+dots: 8
39
+ #+direction: both
40
+ #+system: ddp
41
+ #+version: 1993
42
+
43
+ #-has-nocross: yes
44
+
45
+ # Display upcodes
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 \x00a1 256 INVERTED EXCLAMATION MARK )0xa1)
184
+ punctuation \x00a2 2578 CENT SIGN (0xa2)
185
+ punctuation \x00a3 1238 POUND SIGN (0xa3)
186
+ punctuation \x00a5 67 YEN SIGN (0xa5)
187
+ punctuation \x00a6 3478 BROKEN BAR (0xa6)
188
+ punctuation \x00a7 578 SECTION SIGN (0xa7)
189
+ punctuation \x00a9 134678 COPYRIGHT SIGN (0xa9)
190
+ letter \x00aa 234678 FEMININE ORDINAL INDICATOR (0xaa)
191
+ punctuation \x00ab 57 LEFT-POINTING DOUBLE ANGLE QUOTATION MARK (0xab)
192
+ letter \x00ad 378 SOFT HYPHEN (0xad)
193
+ punctuation \x00ae 123578 REGISTERED SIGN (0xae)
194
+ punctuation \x00af 23567 MACRON (0xaf)
195
+ math \x00b1 123458 PLUS-MINUS SIGN
196
+ punctuation \x00b2 238 SUPERSCRIPT TWO
197
+ punctuation \x00b3 258 SUPERSCRIPT THREE
198
+ punctuation \x00b4 468 ACUTE ACCENT
199
+ punctuation \x00b6 1234568 PILCROW SIGN
200
+ punctuation \x00b7 38 MIDDLE DOT
201
+ punctuation \x00b8 4678 CEDILLA
202
+ punctuation \x00b9 28 SUPERSCRIPT ONE
203
+ letter \x00ba 12345678 MASCULINE ORDINAL INDICATOR
204
+ punctuation \x00bb 567 RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK
205
+ punctuation \x00bc 13458 VULGAR FRACTION ONE QUARTER
206
+ punctuation \x00bd 458 VULGAR FRACTION ONE HALF
207
+ lowercase \x00e1 123568 LATIN LETTER A WITH ACUTE
208
+ lowercase \x00e2 168 LATIN LETTER A WITH CIRCUMFLEX
209
+ lowercase \x00e3 1468 LATIN LETTER A WITH TILDE
210
+ lowercase \x00e4 3458 LATIN LETTER A WITH DIAERESIS
211
+ lowercase \x00e5 16 LATIN LETTER A WITH RING ABOVE
212
+ lowercase \x00e6 345 LATIN LETTER AE
213
+ lowercase \x00ec 1568 LATIN LETTER I WITH GRAVE
214
+ lowercase \x00ed 1268 LATIN LETTER I WITH ACUTE
215
+ lowercase \x00f0 134568 LATIN LETTER ETH
216
+ lowercase \x00f1 124568 LATIN LETTER N WITH TILDE
217
+ lowercase \x00f2 12468 LATIN LETTER O WITH GRAVE
218
+ lowercase \x00f3 3468 LATIN LETTER O WITH ACUTE
219
+ lowercase \x00f5 14568 LATIN LETTER O WITH TILDE
220
+ lowercase \x00f6 2468 LATIN LETTER O WITH DIAERESIS
221
+ math \x00d7 13468 MULTIPLICATION SIGN
222
+ lowercase \x00f8 246 LATIN LETTER O WITH STROKE
223
+ lowercase \x00fa 12568 LATIN LETTER U WITH ACUTE
224
+ lowercase \x00fd 1348 LATIN LETTER Y WITH ACUTE (infinite?)
225
+ lowercase \x00fe 138 LATIN LETTER THORN
226
+ lowercase \x00df 23468 LATIN SMALL LETTER SHARP S
227
+ math \x00f7 2568 DIVISION SIGN
228
+
229
+ # Character used for capslettersign
230
+ # Resides in the "private use area", and shouldn't conflict with anything.
231
+ sign \xf8ff f
232
+
233
+ # Used as dash where dash should act as space.
234
+ space \xf8fe ef
235
+
236
+ #Unicode Braille patterns
237
+ include braille-patterns.cti
238
+
239
+ # characters that have letsign as part of their definition
240
+ # (to be removed when the alwaysletsign opcode has been implemented).
241
+ punctuation * 6-35 ASTERISK
242
+ lowercase q 6-12345 LATIN LETTER Q
243
+ lowercase w 6-2456 LATIN LETTER W
244
+ lowercase x 6-1346 LATIN LETTER X
245
+ lowercase z 6-1356 LATIN LETTER Z
246
+ punctuation \\ 6-347 REVERSE SLASH
247
+ punctuation \x2026 6-3-3-3 #Elipsis (0x85)
248
+ noback punctuation \x0085 6-3-3-3 #Elipsis (0x85)
249
+ lowercase \x017e 6-346 #LATIN LETTER Z WITH CARON (0x8e)
250
+ noback lowercase \x009e 6-346 #LATIN LETTER Z WITH CARON (0x8e)
251
+ letter \x2013 6-36 #EN DASH (0x96)
252
+ noback sign \x0096 6-36 #EN DASH (0x96)
253
+ letter \x2014 6-367 #Em DASH (0x97)
254
+ noback sign \x0097 6-367 #Em DASH (0x97)
255
+ punctuation \x00a4 6-2367 CURRENCY SIGN (0xa4)
256
+ punctuation \x00a8 6-56 DIAERESIS (0xa8)
257
+ punctuation \x00ac 6-34567 NOT SIGN (0xac)
258
+ sign \x00b0 4-356 DEGREE SIGN (0xb0)
259
+ sign \x00b5 6-236 MICRO SIGN
260
+ punctuation \x00be 6-3456 VULGAR FRACTION THREE QUARTERS
261
+ punctuation \x00bf 6-34 INVERTED QUESTION MARK
262
+ lowercase \x00e0 6-12356 LATIN LETTER A WITH GRAVE
263
+ lowercase \x00e7 6-12346 LATIN LETTER C WITH CEDILLA
264
+ lowercase \x00e8 6-2346 LATIN LETTER E WITH GRAVE
265
+ lowercase \x00e9 6-123456 LATIN LETTER E WITH ACUTE
266
+ lowercase \x00ea 6-126 LATIN LETTER E WITH CIRCUMFLEX
267
+ lowercase \x00eb 6-1246 LATIN LETTER E WITH DIAERESIS
268
+ lowercase \x00ee 6-146 LATIN LETTER I WITH CIRCUMFLEX
269
+ lowercase \x00ef 6-12456 LATIN LETTER I WITH DIAERESIS
270
+ lowercase \x00f4 6-1456 LATIN LETTER O WITH CIRCUMFLEX
271
+ lowercase \x00f9 6-23456 LATIN LETTER U WITH GRAVE
272
+ lowercase \x00fb 6-156 LATIN LETTER U WITH CIRCUMFLEX
273
+ lowercase \x00fc 6-1256 LATIN LETTER U WITH DIAERESIS
274
+
275
+ # Misc unicode characters
276
+
277
+ # Many of the characters below and in da-dk-8miscChars.cti have not
278
+ # been defined in the Danish Braille standard.
279
+ # The current implementation is purely experimental and subject to change.
280
+ # Math chars and arrows etc. are inspired by UEB.
281
+
282
+ # Latin Extended-A (\x0100-\x017f)
283
+
284
+ # For each accented letter, the first occurring instance is chosen for back-translation.
285
+ # There are no rules about this in the specs of Danish Braille,
286
+ # So the choice is arbitrary and may change over time.
287
+
288
+ lowercase \x0101 5-1 Latin letter a with macron
289
+ noback lowercase \x0103 5-1 Latin letter a with breve
290
+ noback lowercase \x0105 5-1 Latin letter a with ogonek
291
+ lowercase \x0107 5-14 Latin letter c with acute
292
+ noback lowercase \x0109 5-14 Latin letter c with circumflex
293
+ noback lowercase \x010b 5-14 Latin letter c with dot above
294
+ noback lowercase \x010d 5-14 Latin letter c with caron
295
+ lowercase \x010f 5-145 Latin letter d with caron
296
+ noback lowercase \x0111 5-145 Latin letter d with stroke
297
+ lowercase \x0113 5-15 Latin letter e with macron
298
+ noback lowercase \x0115 5-15 Latin letter e with breve
299
+ noback lowercase \x0117 5-15 Latin letter e with dot above
300
+ noback lowercase \x0119 5-15 Latin letter e with ogonek
301
+ noback lowercase \x011b 5-15 Latin letter e with caron
302
+ lowercase \x011d 5-1245 Latin letter g with circumflex
303
+ noback lowercase \x011f 5-1245 Latin letter g with breve
304
+ noback lowercase \x0121 5-1245 Latin letter g with dot above
305
+ noback lowercase \x0123 5-1245 Latin letter g with cedilla
306
+ lowercase \x0125 5-125 Latin letter h with circumflex
307
+ noback lowercase \x0127 5-125 Latin letter h with stroke
308
+ lowercase \x0129 5-24 Latin letter i with tilde
309
+ noback lowercase \x012b 5-24 Latin letter i with macron
310
+ noback lowercase \x012d 5-24 Latin letter i with breve
311
+ noback lowercase \x012f 5-24 Latin letter i with ogonek
312
+ noback lowercase \x0131 5-24 Latin small dotless i
313
+ noback lowercase \x0133 24-245 Latin ligature ij
314
+ lowercase \x0135 5-245 Latin letter j with circumflex
315
+ lowercase \x0137 5-13 Latin letter k with cedilla
316
+ lowercase \x0138 5-12345 Small latin letter kra (Greenlandic q)
317
+ lowercase \x013a 5-123 Latin letter l with acute
318
+ noback lowercase \x013c 5-123 Latin letter l with cedilla
319
+ noback lowercase \x013e 5-123 Latin letter l with caron
320
+ noback lowercase \x0140 5-123 Latin letter l with middle dot
321
+ noback lowercase \x0142 5-123 Latin letter l with stroke
322
+ lowercase \x0144 5-1345 Latin letter n with acute
323
+ noback lowercase \x0146 5-1345 Latin letter n with cedilla
324
+ noback lowercase \x0148 5-1345 Latin letter n with caron
325
+ noback lowercase \x0149 4-1345 Latin small letter n preceeded by apostrophe
326
+ noback lowercase \x014b 5-1345 Latin letter eng
327
+ lowercase \x014d 5-135 Latin letter o with macron
328
+ noback lowercase \x014f 5-135 Latin letter o with breve
329
+ noback lowercase \x0151 5-135 Latin letter o with double acute
330
+ lowercase \x0155 5-1235 Latin letter r with acute
331
+ noback lowercase \x0157 5-1235 Latin letter r with cedilla
332
+ noback lowercase \x0159 5-1235 Latin letter r with caron
333
+ lowercase \x015b 5-234 Latin letter s with acute
334
+ noback lowercase \x015d 5-234 Latin letter s with circumflex
335
+ noback lowercase \x015f 5-234 Latin letter s with cedilla
336
+ lowercase \x0163 5-2345 Latin letter t with cedilla
337
+ noback lowercase \x0165 5-2345 Latin letter t with caron
338
+ noback lowercase \x0167 5-2345 Latin letter t with stroke
339
+ lowercase \x0169 5-136 Latin letter u with tilde
340
+ noback lowercase \x016b 5-136 Latin letter u with macron
341
+ noback lowercase \x016d 5-136 Latin letter u with breve
342
+ noback lowercase \x016f 5-136 Latin letter u with ring above
343
+ noback lowercase \x0171 5-136 Latin letter u with double acute
344
+ noback lowercase \x0173 5-136 Latin letter u with ogonek
345
+ lowercase \x0175 5-2456 Latin letter w with circumflex
346
+ lowercase \x0177 5-13456 Latin letter y with circumflex
347
+ lowercase \x017a 5-1356 Latin letter z with acute
348
+ noback lowercase \x017c 5-1356 Latin letter z with dot above
349
+ noback lowercase \x017f 5-234 Latin small letter long s
350
+
351
+ # Greek letters (with dots 458 as prefix)
352
+
353
+ lowercase \x03AC 458-5-1 Greek letter alpha with tonos
354
+ lowercase \x03AD 458-5-15 Greek letter epsilon with tonos
355
+ lowercase \x03AE 458-5-156 Greek letter eta with tonos
356
+ lowercase \x03AF 458-5-24 Greek letter iota with sonos
357
+ lowercase \x03CC 458-5-135 Greek letter omicron with tonos
358
+ lowercase \x03CD 458-5-136 Greek letter upsilon with tonos
359
+ lowercase \x03CE 458-5-2456 Greek letter omega with tonos
360
+
361
+ lowercase \x03B1 458-1 Greek letter alpha
362
+ lowercase \x03B2 458-12 Greek letter beta
363
+ lowercase \x03B3 458-1245 Greek letter gamma
364
+ lowercase \x03B4 458-145 Greek letter delta
365
+ lowercase \x03B5 458-15 Greek letter epsilon
366
+ lowercase \x03B6 458-1356 Greek letter zeta
367
+ lowercase \x03B7 458-156 Greek letter eta
368
+ lowercase \x03B8 458-1456 Greek letter theta
369
+ lowercase \x03B9 458-24 Greek letter iota
370
+ lowercase \x03BA 458-13 Greek letter kappa
371
+ lowercase \x03BB 458-123 Greek letter lamda
372
+ lowercase \x03BC 458-134 Greek letter Mu
373
+ lowercase \x03BD 458-1345 Greek letter Nu
374
+ lowercase \x03BE 458-1346 Greek letter Xi
375
+ lowercase \x03BF 458-135 Greek letter Omicron
376
+ lowercase \x03C0 458-1234 Greek letter Pi
377
+ lowercase \x03C1 458-1235 Greek letter Rho
378
+ lowercase \x03C3 458-234 Greek letter sigma
379
+ lowercase \x03C4 458-2345 Greek letter Tau
380
+ lowercase \x03C5 458-136 Greek letter Upsilon
381
+ lowercase \x03C6 458-124 Greek letter Phi
382
+ lowercase \x03C7 458-12346 Greek letter Chi
383
+ lowercase \x03C8 458-13456 Greek letter Psi
384
+ lowercase \x03C9 458-2456 Greek letter Omega
385
+
386
+ include da-dk-8miscChars_1993.cti
387
+
388
+ # Uppercase letters
389
+
390
+ base uppercase A a LATIN LETTER A
391
+ base uppercase B b LATIN LETTER B
392
+ base uppercase C c LATIN LETTER C
393
+ base uppercase D d LATIN LETTER D
394
+ base uppercase E e LATIN LETTER E
395
+ base uppercase F f LATIN LETTER F
396
+ base uppercase G g LATIN LETTER G
397
+ base uppercase H h LATIN LETTER H
398
+ base uppercase I i LATIN LETTER I
399
+ base uppercase J j LATIN LETTER J
400
+ base uppercase K k LATIN LETTER K
401
+ base uppercase L l LATIN LETTER L
402
+ base uppercase M m LATIN LETTER M
403
+ base uppercase N n LATIN LETTER N
404
+ base uppercase O o LATIN LETTER O
405
+ base uppercase P p LATIN LETTER P
406
+ base uppercase Q q LATIN LETTER Q
407
+ base uppercase R r LATIN LETTER R
408
+ base uppercase S s LATIN LETTER S
409
+ base uppercase T t LATIN LETTER T
410
+ base uppercase U u LATIN LETTER U
411
+ base uppercase V v LATIN LETTER V
412
+ base uppercase W w LATIN LETTER W
413
+ base uppercase X x LATIN LETTER X
414
+ base uppercase Y y LATIN LETTER Y
415
+ base uppercase Z z LATIN LETTER Z
416
+ base uppercase \x008a \x009a LATIN LETTER S WITH CARON (0x8a)
417
+ base uppercase \x008c \x009c LATIN LIGATURE OE (0x8c)
418
+ base uppercase \x008e \x009e LATIN LETTER Z WITH CARON (0x8e)
419
+ base uppercase \x00c0 \x00e0 LATIN LETTER A WITH GRAVE
420
+ base uppercase \x00c1 \x00e1 LATIN LETTER A WITH ACUTE
421
+ base uppercase \x00c2 \x00e2 LATIN LETTER A WITH CIRCUMFLEX
422
+ base uppercase \x00c3 \x00e3 LATIN LETTER A WITH TILDE
423
+ base uppercase \x00c4 \x00e4 LATIN LETTER A WITH DIAERESIS
424
+ base uppercase \x00c5 \x00e5 LATIN LETTER A WITH RING ABOVE
425
+ base uppercase \x00c6 \x00e6 LATIN LETTER AE
426
+ base uppercase \x00c7 \x00e7 LATIN LETTER C WITH CEDILLA
427
+ base uppercase \x00c8 \x00e8 LATIN LETTER E WITH GRAVE
428
+ base uppercase \x00c9 \x00e9 LATIN LETTER E WITH ACUTE
429
+ base uppercase \x00ca \x00ea LATIN LETTER E WITH CIRCUMFLEX
430
+ base uppercase \x00cb \x00eb LATIN LETTER E WITH DIAERESIS
431
+ base uppercase \x00cc \x00ec LATIN LETTER I WITH GRAVE
432
+ base uppercase \x00cd \x00ed LATIN LETTER I WITH ACUTE
433
+ base uppercase \x00ce \x00ee LATIN LETTER I WITH CIRCUMFLEX
434
+ base uppercase \x00cf \x00ef LATIN LETTER I WITH DIAERESIS
435
+ base uppercase \x00d0 \x00f0 LATIN LETTER ETH
436
+ base uppercase \x00d1 \x00f1 LATIN LETTER N WITH TILDE
437
+ base uppercase \x00d2 \x00f2 LATIN LETTER O WITH GRAVE
438
+ base uppercase \x00d3 \x00f3 LATIN LETTER O WITH ACUTE
439
+ base uppercase \x00d4 \x00f4 LATIN LETTER O WITH CIRCUMFLEX
440
+ base uppercase \x00d5 \x00f5 LATIN LETTER O WITH TILDE
441
+ base uppercase \x00d6 \x00f6 LATIN LETTER O WITH DIAERESIS
442
+ base uppercase \x00d8 \x00f8 LATIN LETTER O WITH STROKE
443
+ base uppercase \x00d9 \x00f9 LATIN LETTER U WITH GRAVE
444
+ base uppercase \x00da \x00fa LATIN LETTER U WITH ACUTE
445
+ base uppercase \x00db \x00fb LATIN LETTER U WITH CIRCUMFLEX
446
+ base uppercase \x00dc \x00fc LATIN LETTER U WITH DIAERESIS
447
+ base uppercase \x00dd \x00fd LATIN LETTER Y WITH ACUTE (infinite?)
448
+ base uppercase \x00de \x00fe LATIN LETTER THORN
449
+ base uppercase \x0100 \x0101 Latin letter a with macron
450
+ base uppercase \x0102 \x0103 Latin letter a with breve
451
+ base uppercase \x0104 \x0105 Latin letter a with ogonek
452
+ base uppercase \x0106 \x0107 Latin letter c with acute
453
+ base uppercase \x0108 \x0109 Latin letter c with circumflex
454
+ base uppercase \x010a \x010b Latin letter c with dot above
455
+ base uppercase \x010c \x010d Latin letter c with caron
456
+ base uppercase \x010e \x010f Latin letter d with caron
457
+ base uppercase \x0110 \x0111 Latin letter d with stroke
458
+ base uppercase \x0112 \x0113 Latin letter e with macron
459
+ base uppercase \x0114 \x0115 Latin letter e with breve
460
+ base uppercase \x0116 \x0117 Latin letter e with dot above
461
+ base uppercase \x0118 \x0119 Latin letter e with ogonek
462
+ base uppercase \x011a \x011b Latin letter e with caron
463
+ base uppercase \x011c \x011d Latin letter g with circumflex
464
+ base uppercase \x011e \x011f Latin letter g with breve
465
+ base uppercase \x0120 \x0121 Latin letter g with dot above
466
+ base uppercase \x0122 \x0123 Latin letter g with cedilla
467
+ base uppercase \x0124 \x0125 Latin letter h with circumflex
468
+ base uppercase \x0126 \x0127 Latin letter h with stroke
469
+ base uppercase \x0128 \x0129 Latin letter i with tilde
470
+ base uppercase \x012a \x012b Latin letter i with macron
471
+ base uppercase \x012c \x012d Latin letter i with breve
472
+ base uppercase \x012e \x012f Latin letter i with ogonek
473
+ base uppercase \x0130 \x0131 Latin capital letter i with dot above / small dotless i
474
+ base uppercase \x0132 \x0133 Latin ligature ij
475
+ base uppercase \x0134 \x0135 Latin letter j with circumflex
476
+ base uppercase \x0136 \x0137 Latin letter k with cedilla
477
+ base uppercase \x0139 \x013a Latin letter l with acute
478
+ base uppercase \x013b \x013c Latin letter l with cedilla
479
+ base uppercase \x013d \x013e Latin letter l with caron
480
+ base uppercase \x013f \x0140 Latin letter l with middle dot
481
+ base uppercase \x0141 \x0142 Latin letter l with stroke
482
+ base uppercase \x0143 \x0144 Latin letter n with acute
483
+ base uppercase \x0145 \x0146 Latin letter n with cedilla
484
+ base uppercase \x0147 \x0148 Latin letter n with caron
485
+ base uppercase \x014a \x014b Latin letter eng
486
+ base uppercase \x014c \x014d Latin letter o with macron
487
+ base uppercase \x014e \x014f Latin letter o with breve
488
+ base uppercase \x0150 \x0151 Latin letter o with double acute
489
+ base uppercase \x0152 \x0153 LATIN LIGATURE OE (0x8c)
490
+ base uppercase \x0154 \x0155 Latin letter r with acute
491
+ base uppercase \x0156 \x0157 Latin letter r with cedilla
492
+ base uppercase \x0158 \x0159 Latin letter r with caron
493
+ base uppercase \x015a \x015b Latin letter s with acute
494
+ base uppercase \x015c \x015d Latin letter s with circumflex
495
+ base uppercase \x015e \x015f Latin letter s with cedilla
496
+ base uppercase \x0160 \x0161 LATIN LETTER S WITH CARON (0x8a)
497
+ base uppercase \x0162 \x0163 Latin letter t with cedilla
498
+ base uppercase \x0164 \x0165 Latin letter t with caron
499
+ base uppercase \x0166 \x0167 Latin letter t with stroke
500
+ base uppercase \x0168 \x0169 Latin letter u with tilde
501
+ base uppercase \x016a \x016b Latin letter u with macron
502
+ base uppercase \x016c \x016d Latin letter u with breve
503
+ base uppercase \x016e \x016f Latin letter u with ring above
504
+ base uppercase \x0170 \x0171 Latin letter u with double acute
505
+ base uppercase \x0172 \x0173 Latin letter u with ogonek
506
+ base uppercase \x0174 \x0175 Latin letter w with circumflex
507
+ base uppercase \x0176 \x0177 Latin letter y with circumflex
508
+ base uppercase \x0178 \x00ff LATIN LETTER Y WITH DIAERESIS (0x9f)
509
+ base uppercase \x0179 \x017a Latin letter z with acute
510
+ base uppercase \x017b \x017c Latin letter z with dot above
511
+ base uppercase \x017d \x017e LATIN LETTER Z WITH CARON (0x8e)
512
+ base uppercase \x0386 \x03AC Greek letter alpha with tonos
513
+ base uppercase \x0388 \x03AD Greek letter epsilon with tonos
514
+ base uppercase \x0389 \x03AE Greek letter eta with tonos
515
+ base uppercase \x038A \x03AF Greek letter iota with sonos
516
+ base uppercase \x038C \x03CC Greek letter omicron with tonos
517
+ base uppercase \x038E \x03CD Greek letter upsilon with tonos
518
+ base uppercase \x038F \x03CE Greek letter omega with tonos
519
+ base uppercase \x0391 \x03B1 Greek letter alpha
520
+ base uppercase \x0392 \x03B2 Greek letter beta
521
+ base uppercase \x0393 \x03B3 Greek letter gamma
522
+ base uppercase \x0394 \x03B4 Greek letter delta
523
+ base uppercase \x0395 \x03B5 Greek letter epsilon
524
+ base uppercase \x0396 \x03B6 Greek letter zeta
525
+ base uppercase \x0397 \x03B7 Greek letter eta
526
+ base uppercase \x0398 \x03B8 Greek letter theta
527
+ base uppercase \x0399 \x03B9 Greek letter iota
528
+ base uppercase \x039A \x03BA Greek letter kappa
529
+ base uppercase \x039B \x03BB Greek letter lamda
530
+ base uppercase \x039C \x03BC Greek letter Mu
531
+ base uppercase \x039D \x03BD Greek letter Nu
532
+ base uppercase \x039E \x03BE Greek letter Xi
533
+ base uppercase \x039F \x03BF Greek letter Omicron
534
+ base uppercase \x03A0 \x03C0 Greek letter Pi
535
+ base uppercase \x03A1 \x03C1 Greek letter Rho
536
+ base uppercase \x03A3 \x03C3 Greek letter sigma
537
+ base uppercase \x03A4 \x03C4 Greek letter Tau
538
+ base uppercase \x03A5 \x03C5 Greek letter Upsilon
539
+ base uppercase \x03A6 \x03C6 Greek letter Phi
540
+ base uppercase \x03A7 \x03C7 Greek letter Chi
541
+ base uppercase \x03A8 \x03C8 Greek letter Psi
542
+ base uppercase \x03A9 \x03C9 Greek letter Omega
543
+
544
+ # Uppercase letters in computer braille mode
545
+
546
+ comp6 A 17
547
+ comp6 B 127
548
+ comp6 C 147
549
+ comp6 D 1457
550
+ comp6 E 157
551
+ comp6 F 1247
552
+ comp6 G 12457
553
+ comp6 H 1257
554
+ comp6 I 247
555
+ comp6 J 2457
556
+ comp6 K 137
557
+ comp6 L 1237
558
+ comp6 M 1347
559
+ comp6 N 13457
560
+ comp6 O 1357
561
+ comp6 P 12347
562
+ comp6 Q 6-123457
563
+ comp6 R 12357
564
+ comp6 S 2347
565
+ comp6 T 23457
566
+ comp6 U 1367
567
+ comp6 V 12367
568
+ comp6 W 6-24567
569
+ comp6 X 6-13467
570
+ comp6 Y 134567
571
+ comp6 Z 6-13567
572
+ comp6 \x008a 23478
573
+ comp6 \x008c 13578
574
+ comp6 \x008e 6-3467
575
+ comp6 \x00c0 6-123567
576
+ comp6 \x00c1 1235678
577
+ comp6 \x00c2 1678
578
+ comp6 \x00c3 14678
579
+ comp6 \x00c4 34578
580
+ comp6 \x00c5 167
581
+ comp6 \x00c6 3457
582
+ comp6 \x00c7 6-123467
583
+ comp6 \x00c8 6-23467
584
+ comp6 \x00c9 6-1234567
585
+ comp6 \x00ca 6-1267
586
+ comp6 \x00cb 6-12467
587
+ comp6 \x00cc 15678
588
+ comp6 \x00cd 12678
589
+ comp6 \x00ce 6-1467
590
+ comp6 \x00cf 6-124567
591
+ comp6 \x00d0 1345678
592
+ comp6 \x00d1 1245678
593
+ comp6 \x00d2 124678
594
+ comp6 \x00d3 34678
595
+ comp6 \x00d4 6-14567
596
+ comp6 \x00d5 145678
597
+ comp6 \x00d6 24678
598
+ comp6 \x00d8 2467
599
+ comp6 \x00d9 6-234567
600
+ comp6 \x00da 125678
601
+ comp6 \x00db 6-1567
602
+ comp6 \x00dc 6-12567
603
+ comp6 \x00dd 13478
604
+ comp6 \x00de 1378
605
+ comp6 \x0100 5-17
606
+ comp6 \x0102 5-17
607
+ comp6 \x0104 5-17
608
+ comp6 \x0106 5-147
609
+ comp6 \x0108 5-147
610
+ comp6 \x010a 5-147
611
+ comp6 \x010c 5-147
612
+ comp6 \x010e 5-1457
613
+ comp6 \x0110 5-1457
614
+ comp6 \x0112 5-157
615
+ comp6 \x0114 5-157
616
+ comp6 \x0116 5-157
617
+ comp6 \x0118 5-157
618
+ comp6 \x011a 5-157
619
+ comp6 \x011c 5-12457
620
+ comp6 \x011e 5-12457
621
+ comp6 \x0120 5-12457
622
+ comp6 \x0122 5-12457
623
+ comp6 \x0124 5-1257
624
+ comp6 \x0126 5-1257
625
+ comp6 \x0128 5-247
626
+ comp6 \x012a 5-247
627
+ comp6 \x012c 5-247
628
+ comp6 \x012e 5-247
629
+ comp6 \x0130 5-247
630
+ comp6 \x0132 247-245
631
+ comp6 \x0134 5-2457
632
+ comp6 \x0136 5-137
633
+ comp6 \x0139 5-1237
634
+ comp6 \x013b 5-1237
635
+ comp6 \x013d 5-1237
636
+ comp6 \x013f 5-1237
637
+ comp6 \x0141 5-1237
638
+ comp6 \x0143 5-13457
639
+ comp6 \x0145 5-13457
640
+ comp6 \x0147 5-13457
641
+ comp6 \x014a 5-13457
642
+ comp6 \x014c 5-1357
643
+ comp6 \x014e 5-1357
644
+ comp6 \x0150 5-1357
645
+ comp6 \x0152 13578
646
+ comp6 \x0154 5-12357
647
+ comp6 \x0156 5-12357
648
+ comp6 \x0158 5-12357
649
+ comp6 \x015a 5-2347
650
+ comp6 \x015c 5-2347
651
+ comp6 \x015e 5-2347
652
+ comp6 \x0160 23478
653
+ comp6 \x0162 5-23457
654
+ comp6 \x0164 5-23457
655
+ comp6 \x0166 5-23457
656
+ comp6 \x0168 5-1367
657
+ comp6 \x016a 5-1367
658
+ comp6 \x016c 5-1367
659
+ comp6 \x016e 5-1367
660
+ comp6 \x0170 5-1367
661
+ comp6 \x0172 5-1367
662
+ comp6 \x0174 5-24567
663
+ comp6 \x0176 5-134567
664
+ comp6 \x0178 2345678
665
+ comp6 \x0179 5-13567
666
+ comp6 \x017b 5-13567
667
+ comp6 \x017d 6-3467
668
+ comp6 \x0386 458-5-17
669
+ comp6 \x0388 458-5-157
670
+ comp6 \x0389 458-5-1567
671
+ comp6 \x038A 458-5-247
672
+ comp6 \x038C 458-5-1357
673
+ comp6 \x038E 458-5-1367
674
+ comp6 \x038F 458-5-24567
675
+ comp6 \x0391 458-17
676
+ comp6 \x0392 458-127
677
+ comp6 \x0393 458-12457
678
+ comp6 \x0394 458-1457
679
+ comp6 \x0395 458-157
680
+ comp6 \x0396 458-13567
681
+ comp6 \x0397 458-1567
682
+ comp6 \x0398 458-14567
683
+ comp6 \x0399 458-247
684
+ comp6 \x039A 458-137
685
+ comp6 \x039B 458-1237
686
+ comp6 \x039C 458-1347
687
+ comp6 \x039D 458-13457
688
+ comp6 \x039E 458-13467
689
+ comp6 \x039F 458-1357
690
+ comp6 \x03A0 458-12347
691
+ comp6 \x03A1 458-12357
692
+ comp6 \x03A3 458-2347
693
+ comp6 \x03A4 458-23457
694
+ comp6 \x03A5 458-1367
695
+ comp6 \x03A6 458-1247
696
+ comp6 \x03A7 458-123467
697
+ comp6 \x03A8 458-134567
698
+ comp6 \x03A9 458-24567
699
+
700
+ nofor always A 17
701
+ nofor always B 127
702
+ nofor always C 147
703
+ nofor always D 1457
704
+ nofor always E 157
705
+ nofor always F 1247
706
+ nofor always G 12457
707
+ nofor always H 1257
708
+ nofor always I 247
709
+ nofor always J 2457
710
+ nofor always K 137
711
+ nofor always L 1237
712
+ nofor always M 1347
713
+ nofor always N 13457
714
+ nofor always O 1357
715
+ nofor always P 12347
716
+ nofor always Q 6-123457
717
+ nofor always R 12357
718
+ nofor always S 2347
719
+ nofor always T 23457
720
+ nofor always U 1367
721
+ nofor always V 12367
722
+ nofor always W 6-24567
723
+ nofor always X 6-13467
724
+ nofor always Y 134567
725
+ nofor always Z 6-13567
726
+ nofor always \x00c0 6-123567
727
+ nofor always \x00c1 1235678
728
+ nofor always \x00c2 1678
729
+ nofor always \x00c3 14678
730
+ nofor always \x00c4 34578
731
+ nofor always \x00c5 167
732
+ nofor always \x00c6 3457
733
+ nofor always \x00c7 6-123467
734
+ nofor always \x00c8 6-23467
735
+ nofor always \x00c9 6-1234567
736
+ nofor always \x00ca 6-1267
737
+ nofor always \x00cb 6-12467
738
+ nofor always \x00cc 15678
739
+ nofor always \x00cd 12678
740
+ nofor always \x00ce 6-1467
741
+ nofor always \x00cf 6-124567
742
+ nofor always \x00d0 1345678
743
+ nofor always \x00d1 1245678
744
+ nofor always \x00d2 124678
745
+ nofor always \x00d3 34678
746
+ nofor always \x00d4 6-14567
747
+ nofor always \x00d5 145678
748
+ nofor always \x00d6 24678
749
+ nofor always \x00d8 2467
750
+ nofor always \x00d9 6-234567
751
+ nofor always \x00da 125678
752
+ nofor always \x00db 6-1567
753
+ nofor always \x00dc 6-12567
754
+ nofor always \x00dd 13478
755
+ nofor always \x00de 1378
756
+ nofor always \x0100 5-17
757
+ nofor always \x0106 5-147
758
+ nofor always \x010e 5-1457
759
+ nofor always \x0112 5-157
760
+ nofor always \x011c 5-12457
761
+ nofor always \x0124 5-1257
762
+ nofor always \x0128 5-247
763
+ nofor always \x0134 5-2457
764
+ nofor always \x0136 5-137
765
+ nofor always \x0139 5-1237
766
+ nofor always \x0143 5-13457
767
+ nofor always \x014c 5-1357
768
+ nofor always \x0152 13578
769
+ nofor always \x0154 5-12357
770
+ nofor always \x015a 5-2347
771
+ nofor always \x0160 23478
772
+ nofor always \x0162 5-23457
773
+ nofor always \x0168 5-1367
774
+ nofor always \x0174 5-24567
775
+ nofor always \x0176 5-134567
776
+ nofor always \x0178 2345678
777
+ nofor always \x0179 5-13567
778
+ nofor always \x017d 6-3467
779
+ nofor always \x0386 458-5-17
780
+ nofor always \x0388 458-5-157
781
+ nofor always \x0389 458-5-1567
782
+ nofor always \x038A 458-5-247
783
+ nofor always \x038C 458-5-1357
784
+ nofor always \x038E 458-5-1367
785
+ nofor always \x038F 458-5-24567
786
+ nofor always \x0391 458-17
787
+ nofor always \x0392 458-127
788
+ nofor always \x0393 458-12457
789
+ nofor always \x0394 458-1457
790
+ nofor always \x0395 458-157
791
+ nofor always \x0396 458-13567
792
+ nofor always \x0397 458-1567
793
+ nofor always \x0398 458-14567
794
+ nofor always \x0399 458-247
795
+ nofor always \x039A 458-137
796
+ nofor always \x039B 458-1237
797
+ nofor always \x039C 458-1347
798
+ nofor always \x039D 458-13457
799
+ nofor always \x039E 458-13467
800
+ nofor always \x039F 458-1357
801
+ nofor always \x03A0 458-12347
802
+ nofor always \x03A1 458-12357
803
+ nofor always \x03A3 458-2347
804
+ nofor always \x03A4 458-23457
805
+ nofor always \x03A5 458-1367
806
+ nofor always \x03A6 458-1247
807
+ nofor always \x03A7 458-123467
808
+ nofor always \x03A8 458-134567
809
+ nofor always \x03A9 458-24567
810
+
811
+ ### misc opcodes ###
812
+
813
+ # Emphasis opcodes
814
+ # Emphasis opcodes
815
+ emphclass italic
816
+ emphclass underline
817
+ emphclass bold
818
+
819
+ begemphphrase italic 56
820
+ endemphphrase italic after 56
821
+
822
+ begemphphrase bold 56
823
+ endemphphrase bold after 56
824
+
825
+ begemphphrase underline 56
826
+ endemphphrase underline after 56
827
+
828
+ # special symbols
829
+ decpoint , 2
830
+ hyphen - 368
831
+ letsign 6
832
+ noletsign IQWXZiqwxz\x0149
833
+ noletsignbefore 1234567890
834
+
835
+ capsletter f
836
+ multind f-6 capsletter letsign
837
+ multind 6-f letsign capsletter
838
+ capsnocont
839
+
840
+ # The Danish use of letsign differs somewhat from the LibLouis way.
841
+ # In order to be sure that we are getting a letsign when we want one, we are sometimes getting an overlap.
842
+
843
+ # Ensure that we have letsign between a digit and "st"
844
+ # and nd after a digit is not contracted
845
+ noback context _$d["st"]!$l @6-234-2345
846
+ noback context _$d["st"]~ @6-234-2345
847
+ noback context _$d["nd"]!$l @1345-145
848
+ noback context _$d["nd"]~ @1345-145
849
+ # The following lines are to ensure that we get a letsign between a digit and a single letter.
850
+ noback context $d[]$l!$l @6
851
+ noback context $d[]$l~ @6
852
+
853
+ ### Correct - Forward translation
854
+
855
+ # Ensure that capsnocont does not stretch across dashes
856
+ noback correct $U["-"] "\xf8fe"
857
+
858
+ # Special characters that always need letsigns because they represent contractions
859
+ always \x00a1 6-256 # inverted exclamationmark
860
+
861
+ # Punctuation
862
+ # Ensure word contractions followed by ! back-translate correctly
863
+ postpunc ! 235
864
+
865
+ #Special sequences, urls emails and file names.
866
+ nocont $
867
+ nocont \\ # line cannot end with a backslash
868
+ nocont @
869
+ nocont ://
870
+ nocont www
871
+
872
+ # Remove space between § and numbers.
873
+ noback begnum § 578
874
+ begnum §\s 578
875
+ begnum §§\s 578-578
876
+ always §§ 578-578
877
+
878
+ #Words
879
+ word af 356
880
+ word aldrig 1-35
881
+ word aig =
882
+ word alle 1-15
883
+ begnum ae 6-1-15
884
+ contraction ae
885
+ word allerede 1-123-1235
886
+ begnum alr 6-1-123-1235
887
+ contraction alr
888
+ word alligevel 1-123-1236
889
+ begnum alv 6-1-123-1236
890
+ contraction alv
891
+ word altid 1-2345-145
892
+ begnum atd 6-1-2345-145
893
+ contraction atd
894
+ word altså 1-16
895
+ begnum aå 6-1-16
896
+ contraction aå
897
+ word at 1
898
+
899
+ word blevet 12-2345
900
+ begnum bt 6-12-2345
901
+ contraction bt
902
+ word blev 12-1236
903
+ begnum bv 6-12-1236
904
+ contraction bv
905
+ word blive 12-3456
906
+ word bve 12-1236-15
907
+ word bliver 12
908
+
909
+ word derefter 23456-1356
910
+ word derst =
911
+ word deres 256
912
+ word derfor 23456-124
913
+ word derf =
914
+ word derigennem 23456-24-12456
915
+ word derige 1456-1235-24-12456
916
+ word dermed 23456-134
917
+ word derm =
918
+ word derned 23456-1246
919
+ word derne =
920
+ word derop 23456-135
921
+ word dero =
922
+ word derover 23456-1346
923
+ word deror =
924
+ word derpå 23456-1234
925
+ word derp =
926
+ word dersom 23456-234
927
+ word ders =
928
+ word dertil 23456-2345
929
+ word dert =
930
+ word derunder 23456-12345
931
+ word derved 23456-1236
932
+ word din 145-1345
933
+ begnum dn 6-145-1345
934
+ contraction dn
935
+ word disse 145-234
936
+ begnum ds 6-145-234
937
+ contraction ds
938
+ word dit 145-2345
939
+ begnum dt 6-145-2345
940
+ contraction dt
941
+ word du 145
942
+
943
+ word efter 1356
944
+ word eller 15
945
+ word endnu 15-136
946
+ begnum eu 6-15-136
947
+ contraction eu
948
+
949
+ word fik 124-13
950
+ begnum fk 6-124-13
951
+ contraction fk
952
+ word fordi 124-145
953
+ begnum fd 6-124-145
954
+ contraction fd
955
+ word forskellige 124-123456-15
956
+ word fske =
957
+ word forskelligt 124-123456-2345
958
+ word fskt =
959
+ word forskellig 124-123456
960
+ word fsk =
961
+ word for 124
962
+ word fra 235
963
+ word første 124-1356-15
964
+ word først 124-1356
965
+ word før 246
966
+
967
+ word ganske 1245-123456
968
+ word gennem 12456
969
+ word ge =
970
+ word gik 1245-13
971
+ begnum gk 6-1245-13
972
+ contraction gk
973
+ word gør 1245
974
+
975
+ word ham 236
976
+ word hans 13456-234
977
+ begnum ys 6-13456-234
978
+ contraction ys
979
+ word han 13456
980
+ word har 125
981
+ word havde 125-1456
982
+ word hde =
983
+ word have 125-3456
984
+ word hve =
985
+ word helt 125-2345
986
+ begnum ht 6-125-2345
987
+ contraction ht
988
+ word hendes 125-234
989
+ begnum hs 6-125-234
990
+ contraction hs
991
+ word hende 125-145
992
+ begnum hd 6-125-145
993
+ contraction hd
994
+ word hun 136
995
+ word hvad 2456
996
+ word hv =
997
+ word hvis 2456-234
998
+ word hvs =
999
+ word hvordan 34-1
1000
+ word hvora 34-6-1
1001
+ word hvorefter 34-1356
1002
+ word hvorst 34-234-2345
1003
+ word hvorfor 34-124
1004
+ word hvorf 34-6-124
1005
+ word hvorigennem 34-24-12456
1006
+ word hvorledes 34-15
1007
+ word hvore 34-6-15
1008
+ word hvormed 34-134
1009
+ word hvorm 34-6-134
1010
+ word hvornår 34-1345
1011
+ word hvorn 34-6-1345
1012
+ word hvorover 34-1346
1013
+ word hvoror 34-135-1235
1014
+ word hvorpå 34-1234
1015
+ word hvorp 34-6-1234
1016
+ word hvortil 34-2345
1017
+ word hvort 34-6-2345
1018
+ word hvorunder 34-12345
1019
+ word hvornd 34-1345-145
1020
+ word hvorved 34-1236
1021
+ word hvorv 34-6-1236
1022
+ word hvor 34
1023
+
1024
+ word igennem 24-12456
1025
+ word ige =
1026
+ word igen 35
1027
+ word ig =
1028
+ word ikke 24-13
1029
+ begnum ik 6-24-13
1030
+ contraction ik
1031
+ word imidlertid 24-24
1032
+ begnum ii 6-24-24
1033
+ contraction ii
1034
+
1035
+ word jeg 245
1036
+
1037
+ word kan 13
1038
+ word kommer 13-156
1039
+ word ker =
1040
+ word kommet 13-346
1041
+ word ket =
1042
+ word komme 13-146
1043
+ word kme =
1044
+ word kom 13-134
1045
+ begnum km 6-13-134
1046
+ contraction km
1047
+ word kunne 13-1246
1048
+ word kne =
1049
+
1050
+ word ligesom 123-234
1051
+ begnum ls 6-123-234
1052
+ contraction ls
1053
+ word lige 123
1054
+ word lille 123-123
1055
+ begnum ll 6-123-123
1056
+ contraction ll
1057
+
1058
+ word mange 134-12456
1059
+ word mge =
1060
+ word med 134
1061
+ word megen 146-126
1062
+ word meen =
1063
+ word meget 146-346
1064
+ word meet =
1065
+ word mellem 146-134
1066
+ word mem =
1067
+ word men 146
1068
+ word me =
1069
+ word min 134-1345
1070
+ begnum mn 6-134-1345
1071
+ contraction mn
1072
+ word mit 134-2345
1073
+ begnum mt 6-134-2345
1074
+ contraction mt
1075
+ word måske 134-123456
1076
+ word msk =
1077
+ word måtte 134-1256
1078
+ word mte =
1079
+
1080
+ word naturligvis 1345-2345-1236
1081
+ begnum ntv 6-1345-2345-1236
1082
+ contraction ntv
1083
+ word nd =
1084
+ word ned 1246
1085
+ word ne =
1086
+ word nogen 1345-1345
1087
+ begnum nn 6-1345-1345
1088
+ contraction nn
1089
+ word noget 1345-2345
1090
+ begnum nt 6-1345-2345
1091
+ contraction nt
1092
+ word nogle 1345-123-15
1093
+ begnum nle 6-1345-123-15
1094
+ contraction nle
1095
+ word når 1345
1096
+
1097
+ word også 14-16
1098
+ begnum cå 6-14-16
1099
+ contraction cå
1100
+ word og 14
1101
+ word omkring 135-134-13
1102
+ begnum omk 6-135-134-13
1103
+ contraction omk
1104
+ word op 135
1105
+ word or =
1106
+ word over 1346
1107
+
1108
+ word på 1234
1109
+
1110
+ word ret 12356
1111
+ word re 1235-15
1112
+ word rigtige 1235-12456
1113
+ word rge =
1114
+ word rigtigt 1235-2345
1115
+ begnum rt 6-1235-2345
1116
+ contraction rt
1117
+ word rigtig 1235
1118
+
1119
+ word sagde 234-1456
1120
+ word sammen 234-134
1121
+ begnum sm 6-234-134
1122
+ contraction sm
1123
+ word samme 234-146
1124
+ word sme =
1125
+ word selvfølgelig 234-1236-124
1126
+ begnum svf 6-234-1236-124
1127
+ contraction svf
1128
+ word selv 234-1236
1129
+ begnum sv 6-234-1236
1130
+ contraction sv
1131
+ word sidste 234-1356-15
1132
+ word sste =
1133
+ word sidst 234-1356
1134
+ word sst =
1135
+ word sin 234-1345
1136
+ begnum sn 6-234-1345
1137
+ contraction sn
1138
+ word sit 234-2345
1139
+ begnum st 6-234-2345
1140
+ contraction st
1141
+ word skal 123456
1142
+ word sk =
1143
+ word skulle 123456-123-15
1144
+ word skle =
1145
+ word snart 234-1235
1146
+ begnum sr 6-234-1235
1147
+ contraction sr
1148
+ word som 234
1149
+ word sådan 16-1
1150
+ begnum åa 6-16-1
1151
+ contraction åa
1152
+ word således 16-15
1153
+ begnum åe 6-16-15
1154
+ contraction åe
1155
+ word så 16
1156
+
1157
+ word te 1256
1158
+ word tid 2345-145
1159
+ begnum td 6-2345-145
1160
+ contraction td
1161
+ word tilbage 2345-12
1162
+ begnum tb 6-2345-12
1163
+ contraction tb
1164
+ word til 2345
1165
+
1166
+ word under 12345
1167
+
1168
+ word var- =
1169
+ word var. =
1170
+ word var 36
1171
+ word ve 3456
1172
+ word ved 1236
1173
+ word ville 1236-123-15
1174
+ begnum vle 6-1236-123-15
1175
+ contraction vle
1176
+ word vil 1236-123
1177
+ begnum vl 6-1236-123
1178
+ contraction vl
1179
+ word været 1236-2345
1180
+ begnum vt 6-1236-2345
1181
+ contraction vt
1182
+ word være 345
1183
+
1184
+ #Part words
1185
+ nocross always den 12346
1186
+ nocross always der 23456
1187
+ nocross always det 2346
1188
+ nocross always de 1456
1189
+ nocross always en 126
1190
+ nocross always er 156
1191
+ nocross always et 346
1192
+ nocross always ge 12456
1193
+ nocross always hvor 34
1194
+ nocross always hv 2456
1195
+ nocross always ig 35
1196
+ nocross always me 146
1197
+ nocross always nd 12345
1198
+ nocross always ne 1246
1199
+ nocross always or 1346
1200
+ nocross always re 12356
1201
+ nocross always sk 123456
1202
+ nocross always st 1356
1203
+ nocross always te 1256
1204
+ nocross always ve 3456
1205
+
1206
+ #special cases with dropped signs
1207
+ # which can be both punctuations and contractions.
1208
+
1209
+ always fra! 124-1235-1-235
1210
+ always !fra 235-124-1235-1
1211
+ always !! 235-235
1212
+ always !!! 235-235-235
1213
+ always "fra" 2356-124-1235-1-2356
1214
+ after punctuation always ! 6-235
1215
+ always 'af 4-1-124
1216
+
1217
+ always \s! 0-6-235
1218
+ prepunc ! 6-235
1219
+ nofor always ! 6-235
1220
+ noback context `["!"] @6-235
1221
+
1222
+
1223
+ # Ensure no one-letter word contraction before or after a dash
1224
+
1225
+ prfword -af 368-1-124
1226
+ sufword af- 1-124-368
1227
+ prfword -at 368-1-2345
1228
+ sufword at- 1-2345-368
1229
+ prfword -deres 368-1456-12356-234
1230
+ sufword deres- 1456-12356-234-368
1231
+ prfword -du 368-145-136
1232
+ sufword du- 145-136-368
1233
+ prfword -efter 368-15-124-2345-156
1234
+ sufword efter- 15-124-2345-156-368
1235
+ prfword -for 368-124-1346
1236
+ sufword for- 124-1346-368
1237
+ prfword -fra 368-124-1235-1
1238
+ sufword fra- 124-1235-1-368
1239
+ prfword -gennem 368-1245-126-1246-134
1240
+ sufword gennem- 1245-126-1246-134-368
1241
+ prfword -ham 368-125-1-134
1242
+ sufword ham- 125-1-134-368
1243
+ prfword -han 368-125-1-1345
1244
+ sufword han- 125-1-1345-368
1245
+ prfword -har 368-125-1-1235
1246
+ sufword har- 125-1-1235-368
1247
+ prfword -hun 368-125-136-1345
1248
+ sufword hun- 125-136-1345-368
1249
+ prfword -kan 368-13-1-1345
1250
+ sufword kan- 13-1-1345-368
1251
+ prfword -lige 368-123-24-12456
1252
+ sufword lige- 123-24-12456-368
1253
+ prfword -med 368-146-145
1254
+ sufword med- 146-145-368
1255
+ prfword -men 368-134-126
1256
+ sufword men- 134-126-368
1257
+ prfword -ned 368-1246-145
1258
+ sufword ned- 1246-145-368
1259
+ prfword -når 368-1345-16-1235
1260
+ sufword når- 1345-16-1235-368
1261
+ prfword -og 368-135-1245
1262
+ sufword og- 135-1245-368
1263
+ prfword -op 368-135-1234
1264
+ sufword op- 135-1234-368
1265
+ prfword -over 368-135-1236-156
1266
+ sufword over- 135-1236-156-368
1267
+ prfword -på 368-1234-16
1268
+ sufword på- 1234-16-368
1269
+ prfword -ret 368-1235-346
1270
+ sufword ret- 1235-346-368
1271
+ prfword -rigtig 368-1235-35-2345-35
1272
+ sufword rigtig- 1235-35-2345-35-368
1273
+ prfword -skal 368-123456-1-123
1274
+ sufword skal- 123456-1-123-368
1275
+ prfword -som 368-234-135-134
1276
+ sufword som- 234-135-134-368
1277
+ prfword -så 368-234-16
1278
+ sufword så- 234-16-368
1279
+ prfword -til 368-2345-24-123
1280
+ sufword til- 2345-24-123-368
1281
+ prfword -under 368-136-1345-23456
1282
+ sufword under- 136-1345-23456-368
1283
+ prfword -ved 368-1236-15-145
1284
+ sufword ved- 1236-15-145-368
1285
+ prfword -være 368-1236-345-12356
1286
+ sufword være- 1236-345-12356-368
1287
+
1288
+ # *** patches for various Liblouis bugs
1289
+ # this file will be removed when the bugs are fixed
1290
+
1291
+ nofor always a 6-1
1292
+ nofor always b 6-12
1293
+ nofor always c 6-14
1294
+ nofor always d 6-145
1295
+ nofor always e 6-15
1296
+ nofor always f 6-124
1297
+ nofor always g 6-1245
1298
+ nofor always h 6-125
1299
+ nofor always j 6-245
1300
+ nofor always k 6-13
1301
+ nofor always l 6-123
1302
+ nofor always m 6-134
1303
+ nofor always n 6-1345
1304
+ nofor always o 6-135
1305
+ nofor always p 6-1234
1306
+ nofor always q 6-12345
1307
+ nofor always r 6-1235
1308
+ nofor always s 6-234
1309
+ nofor always t 6-2345
1310
+ nofor always u 6-136
1311
+ nofor always v 6-1236
1312
+ nofor always w 6-2456
1313
+ nofor always x 6-1346
1314
+ nofor always y 6-13456
1315
+ nofor always z 6-1356
1316
+ nofor always æ 6-345
1317
+ nofor always ø 6-246
1318
+ nofor always å 6-16
1319
+
1320
+ nofor always A 6-17
1321
+ nofor always B 6-127
1322
+ nofor always C 6-147
1323
+ nofor always D 6-1457
1324
+ nofor always E 6-157
1325
+ nofor always F 6-1247
1326
+ nofor always G 6-12457
1327
+ nofor always H 6-1257
1328
+ nofor always J 6-2457
1329
+ nofor always K 6-137
1330
+ nofor always L 6-1237
1331
+ nofor always M 6-1347
1332
+ nofor always N 6-13457
1333
+ nofor always O 6-1357
1334
+ nofor always P 6-12347
1335
+ nofor always Q 6-123457
1336
+ nofor always R 6-12357
1337
+ nofor always S 6-2347
1338
+ nofor always T 6-23457
1339
+ nofor always U 6-1367
1340
+ nofor always V 6-12367
1341
+ nofor always W 6-24567
1342
+ nofor always X 6-13467
1343
+ nofor always Y 6-134567
1344
+ nofor always Z 6-13567
1345
+ nofor always Æ 6-3457
1346
+ nofor always Ø 6-2467
1347
+ nofor always Å 6-167
1348
+
1349
+ # if a word contraction is followed by a punctuation and another word immediately after,
1350
+ # The contracted word before the punctuation will back-translate as its components
1351
+ attribute wordlimit /,!.:’()?"'\x00ab_\x201d\x0094\x2019\x0092\x00bb
1352
+ nofor before wordlimit begword af 356
1353
+ nofor before wordlimit begword aldrig 1-35
1354
+ nofor before wordlimit begword aig =
1355
+ nofor before wordlimit begword alle 1-15
1356
+ nofor before wordlimit begword allerede 1-123-1235
1357
+ nofor before wordlimit begword alligevel 1-123-1236
1358
+ nofor before wordlimit begword altid 1-2345-145
1359
+ nofor before wordlimit begword altså 1-16
1360
+ nofor before wordlimit begword at 1
1361
+
1362
+ nofor before wordlimit begword blevet 12-2345
1363
+ nofor before wordlimit begword blev 12-1236
1364
+ nofor before wordlimit begword blive 12-3456
1365
+ nofor before wordlimit begword bve 12-1236-15
1366
+ nofor before wordlimit begword bliver 12
1367
+
1368
+ nofor before wordlimit begword derefter 23456-1356
1369
+ nofor before wordlimit begword derst =
1370
+ nofor before wordlimit begword deres 256
1371
+ nofor before wordlimit begword derfor 23456-124
1372
+ nofor before wordlimit begword derf =
1373
+ nofor before wordlimit begword derigennem 23456-24-12456
1374
+ nofor before wordlimit begword derige 1456-1235-24-12456
1375
+ nofor before wordlimit begword dermed 23456-134
1376
+ nofor before wordlimit begword derm =
1377
+ nofor before wordlimit begword derned 23456-1246
1378
+ nofor before wordlimit begword derne =
1379
+ nofor before wordlimit begword derop 23456-135
1380
+ nofor before wordlimit begword dero =
1381
+ nofor before wordlimit begword derover 23456-1346
1382
+ nofor before wordlimit begword deror =
1383
+ nofor before wordlimit begword derpå 23456-1234
1384
+ nofor before wordlimit begword derp =
1385
+ nofor before wordlimit begword dersom 23456-234
1386
+ nofor before wordlimit begword ders =
1387
+ nofor before wordlimit begword dertil 23456-2345
1388
+ nofor before wordlimit begword dert =
1389
+ nofor before wordlimit begword derunder 23456-12345
1390
+ nofor before wordlimit begword derved 23456-1236
1391
+ nofor before wordlimit begword din 145-1345
1392
+ nofor before wordlimit begword disse 145-234
1393
+ nofor before wordlimit begword dit 145-2345
1394
+ nofor before wordlimit begword du 145
1395
+
1396
+ nofor before wordlimit begword efter 1356
1397
+ nofor before wordlimit begword eller 15
1398
+ nofor before wordlimit begword endnu 15-136
1399
+
1400
+ nofor before wordlimit begword fik 124-13
1401
+ nofor before wordlimit begword fordi 124-145
1402
+ nofor before wordlimit begword forskellige 124-123456-15
1403
+ nofor before wordlimit begword fske =
1404
+ nofor before wordlimit begword forskelligt 124-123456-2345
1405
+ nofor before wordlimit begword fskt =
1406
+ nofor before wordlimit begword forskellig 124-123456
1407
+ nofor before wordlimit begword fsk =
1408
+ nofor before wordlimit begword for 124
1409
+ nofor before wordlimit begword fra 235
1410
+ nofor before wordlimit begword første 124-1356-15
1411
+ nofor before wordlimit begword først 124-1356
1412
+ nofor before wordlimit begword før 246
1413
+
1414
+ nofor before wordlimit begword ganske 1245-123456
1415
+ nofor before wordlimit begword gennem 12456
1416
+ nofor before wordlimit begword ge =
1417
+ nofor before wordlimit begword gik 1245-13
1418
+ nofor before wordlimit begword gør 1245
1419
+
1420
+ nofor before wordlimit begword ham 236
1421
+ nofor before wordlimit begword hans 13456-234
1422
+ nofor before wordlimit begword han 13456
1423
+ nofor before wordlimit begword har 125
1424
+ nofor before wordlimit begword havde 125-1456
1425
+ nofor before wordlimit begword hde =
1426
+ nofor before wordlimit begword have 125-3456
1427
+ nofor before wordlimit begword hve =
1428
+ nofor before wordlimit begword helt 125-2345
1429
+ nofor before wordlimit begword hendes 125-234
1430
+ nofor before wordlimit begword hende 125-145
1431
+ nofor before wordlimit begword hun 136
1432
+ nofor before wordlimit begword hvad 2456
1433
+ nofor before wordlimit begword hv =
1434
+ nofor before wordlimit begword hvis 2456-234
1435
+ nofor before wordlimit begword hvs =
1436
+ nofor before wordlimit begword hvordan 34-1
1437
+ nofor before wordlimit begword hvorefter 34-1356
1438
+ nofor before wordlimit begword hvorfor 34-124
1439
+ nofor before wordlimit begword hvorigennem 34-24-12456
1440
+ nofor before wordlimit begword hvorledes 34-15
1441
+ nofor before wordlimit begword hvormed 34-134
1442
+ nofor before wordlimit begword hvornår 34-1345
1443
+ nofor before wordlimit begword hvorover 34-1346
1444
+ nofor before wordlimit begword hvorpå 34-1234
1445
+ nofor before wordlimit begword hvortil 34-2345
1446
+ nofor before wordlimit begword hvorunder 34-12345
1447
+ nofor before wordlimit begword hvorved 34-1236
1448
+ nofor before wordlimit begword hvor 34
1449
+
1450
+ nofor before wordlimit begword igennem 24-12456
1451
+ nofor before wordlimit begword ige =
1452
+ nofor before wordlimit begword igen 35
1453
+ nofor before wordlimit begword ig =
1454
+ nofor before wordlimit begword ikke 24-13
1455
+ nofor before wordlimit begword imidlertid 24-24
1456
+
1457
+ nofor before wordlimit begword jeg 245
1458
+
1459
+ nofor before wordlimit begword kan 13
1460
+ nofor before wordlimit begword kommer 13-156
1461
+ nofor before wordlimit begword ker =
1462
+ nofor before wordlimit begword kommet 13-346
1463
+ nofor before wordlimit begword ket =
1464
+ nofor before wordlimit begword komme 13-146
1465
+ nofor before wordlimit begword kme =
1466
+ nofor before wordlimit begword kom 13-134
1467
+ nofor before wordlimit begword kunne 13-1246
1468
+ nofor before wordlimit begword kne =
1469
+
1470
+ nofor before wordlimit begword ligesom 123-234
1471
+ nofor before wordlimit begword lige 123
1472
+ nofor before wordlimit begword lille 123-123
1473
+
1474
+ nofor before wordlimit begword mange 134-12456
1475
+ nofor before wordlimit begword mge =
1476
+ nofor before wordlimit begword med 134
1477
+ nofor before wordlimit begword megen 146-126
1478
+ nofor before wordlimit begword meen =
1479
+ nofor before wordlimit begword meget 146-346
1480
+ nofor before wordlimit begword meet =
1481
+ nofor before wordlimit begword mellem 146-134
1482
+ nofor before wordlimit begword mem =
1483
+ nofor before wordlimit begword men 146
1484
+ nofor before wordlimit begword me =
1485
+ nofor before wordlimit begword min 134-1345
1486
+ nofor before wordlimit begword mit 134-2345
1487
+ nofor before wordlimit begword måske 134-123456
1488
+ nofor before wordlimit begword msk =
1489
+ nofor before wordlimit begword måtte 134-1256
1490
+ nofor before wordlimit begword mte =
1491
+
1492
+ nofor before wordlimit begword naturligvis 1345-2345-1236
1493
+ nofor before wordlimit begword nd =
1494
+ nofor before wordlimit begword ned 1246
1495
+ nofor before wordlimit begword ne =
1496
+ nofor before wordlimit begword nogen 1345-1345
1497
+ nofor before wordlimit begword noget 1345-2345
1498
+ nofor before wordlimit begword nogle 1345-123-15
1499
+ nofor before wordlimit begword når 1345
1500
+
1501
+ nofor before wordlimit begword også 14-16
1502
+ nofor before wordlimit begword og 14
1503
+ nofor before wordlimit begword omkring 135-134-13
1504
+ nofor before wordlimit begword op 135
1505
+ nofor before wordlimit begword or =
1506
+ nofor before wordlimit begword over 1346
1507
+
1508
+ nofor before wordlimit begword på 1234
1509
+
1510
+ nofor before wordlimit begword ret 12356
1511
+ nofor before wordlimit begword re 1235-15
1512
+ nofor before wordlimit begword rigtige 1235-12456
1513
+ nofor before wordlimit begword rge =
1514
+ nofor before wordlimit begword rigtigt 1235-2345
1515
+ nofor before wordlimit begword rigtig 1235
1516
+
1517
+ nofor before wordlimit begword sagde 234-1456
1518
+ nofor before wordlimit begword sammen 234-134
1519
+ nofor before wordlimit begword samme 234-146
1520
+ nofor before wordlimit begword sme =
1521
+ nofor before wordlimit begword selvfølgelig 234-1236-124
1522
+ nofor before wordlimit begword selv 234-1236
1523
+ nofor before wordlimit begword sidste 234-1356-15
1524
+ nofor before wordlimit begword sste =
1525
+ nofor before wordlimit begword sidst 234-1356
1526
+ nofor before wordlimit begword sst =
1527
+ nofor before wordlimit begword sin 234-1345
1528
+ nofor before wordlimit begword sit 234-2345
1529
+ nofor before wordlimit begword skal 123456
1530
+ nofor before wordlimit begword sk =
1531
+ nofor before wordlimit begword skulle 123456-123-15
1532
+ nofor before wordlimit begword skle =
1533
+ nofor before wordlimit begword snart 234-1235
1534
+ nofor before wordlimit begword som 234
1535
+ nofor before wordlimit begword sådan 16-1
1536
+ nofor before wordlimit begword således 16-15
1537
+ nofor before wordlimit begword så 16
1538
+
1539
+ nofor before wordlimit begword tid 2345-145
1540
+ nofor before wordlimit begword tilbage 2345-12
1541
+ nofor before wordlimit begword til 2345
1542
+
1543
+ nofor before wordlimit begword under 12345
1544
+
1545
+ nofor before wordlimit begword var- =
1546
+ nofor before wordlimit begword var 36
1547
+ nofor before wordlimit begword ved 1236
1548
+ nofor before wordlimit begword ville 1236-123-15
1549
+ nofor before wordlimit begword vil 1236-123
1550
+ nofor before wordlimit begword været 1236-2345
1551
+ nofor before wordlimit begword være 345
1552
+
1553
+ # Problems solved with pass 2
1554
+
1555
+ # Convert the fake "space hyphen" back to a normal hyphen.
1556
+ noback pass2 @ef @368
1557
+
1558
+ ### Multi-pass opcodes for converting the virtual capsletter sign @f into dot 7.
1559
+
1560
+ # Most of these lines are temporary.
1561
+ # They will be written with a few swap sets when the swapdd opcode has been fixed.
1562
+
1563
+
1564
+ # Generic forward convert of @f-... to @...7
1565
+ noback pass2 @f-235 @2357
1566
+ # Conversion with letsign.
1567
+ noback pass2 @f-6-235 @6-2357
1568
+ # Conversion with dot 5, which is used for accent marker in higher unicode pages.
1569
+ noback pass2 @f-5-235 @5-2357
1570
+ # Generic backward conversion.
1571
+ nofor pass2 @2357 @f-235
1572
+ # Conversion with dot 5 (letsign is handled below).
1573
+ nofor pass2 @5-2357 @f-5-235
1574
+
1575
+ # Same for the following characters.
1576
+
1577
+ noback pass2 @f-35 @357
1578
+ noback pass2 @f-6-35 @6-357
1579
+ noback pass2 @f-5-35 @5-357
1580
+ nofor pass2 @357 @f-35
1581
+ nofor pass2 @5-357 @f-5-35
1582
+
1583
+ noback pass2 @f-36 @367
1584
+ noback pass2 @f-6-36 @6-367
1585
+ noback pass2 @f-5-36 @5-367
1586
+ nofor pass2 @367 @f-36
1587
+ nofor pass2 @5-367 @f-5-36
1588
+
1589
+ noback pass2 @f-1 @17
1590
+ noback pass2 @f-6-1 @6-17
1591
+ noback pass2 @f-5-1 @5-17
1592
+ nofor pass2 @17 @f-1
1593
+ nofor pass2 @5-17 @f-5-1
1594
+ nofor pass2 @458-17 @f-458-1
1595
+ nofor pass2 @458-5-17 @f-458-5-1
1596
+
1597
+ noback pass2 @f-12 @127
1598
+ noback pass2 @f-6-12 @6-127
1599
+ noback pass2 @f-5-12 @5-127
1600
+ nofor pass2 @127 @f-12
1601
+ nofor pass2 @5-127 @f-5-12
1602
+ nofor pass2 @458-127 @f-458-12
1603
+
1604
+ noback pass2 @f-14 @147
1605
+ noback pass2 @f-6-14 @6-147
1606
+ noback pass2 @f-5-14 @5-147
1607
+ nofor pass2 @147 @f-14
1608
+ nofor pass2 @5-147 @f-5-14
1609
+ nofor pass2 @458-147 @f-458-14
1610
+
1611
+ noback pass2 @f-145 @1457
1612
+ noback pass2 @f-6-145 @6-1457
1613
+ noback pass2 @f-5-145 @5-1457
1614
+ nofor pass2 @1457 @f-145
1615
+ nofor pass2 @5-1457 @f-5-145
1616
+ nofor pass2 @458-1457 @f-458-145
1617
+
1618
+ noback pass2 @f-15 @157
1619
+ noback pass2 @f-6-15 @6-157
1620
+ noback pass2 @f-5-15 @5-157
1621
+ nofor pass2 @157 @f-15
1622
+ nofor pass2 @5-157 @f-5-15
1623
+ nofor pass2 @458-157 @f-458-15
1624
+ nofor pass2 @458-5-157 @f-458-5-15
1625
+
1626
+ noback pass2 @f-124 @1247
1627
+ noback pass2 @f-6-124 @6-1247
1628
+ noback pass2 @f-5-124 @5-1247
1629
+ nofor pass2 @1247 @f-124
1630
+ nofor pass2 @5-1247 @f-5-124
1631
+ nofor pass2 @458-1247 @f-458-124
1632
+
1633
+ noback pass2 @f-1245 @12457
1634
+ noback pass2 @f-6-1245 @6-12457
1635
+ noback pass2 @f-5-1245 @5-12457
1636
+ nofor pass2 @12457 @f-1245
1637
+ nofor pass2 @5-12457 @f-5-1245
1638
+ nofor pass2 @458-12457 @f-458-1245
1639
+
1640
+ noback pass2 @f-125 @1257
1641
+ noback pass2 @f-6-125 @6-1257
1642
+ noback pass2 @f-5-125 @5-1257
1643
+ nofor pass2 @1257 @f-125
1644
+ nofor pass2 @5-1257 @f-5-125
1645
+
1646
+ noback pass2 @f-24 @247
1647
+ noback pass2 @f-6-24 @6-247
1648
+ noback pass2 @f-5-24 @5-247
1649
+ nofor pass2 @247 @f-24
1650
+ nofor pass2 @5-247 @f-5-24
1651
+ nofor pass2 @458-247 @f-458-24
1652
+ nofor pass2 @458-5-247 @f-458-5-24
1653
+
1654
+ noback pass2 @f-245 @2457
1655
+ noback pass2 @f-6-245 @6-2457
1656
+ noback pass2 @f-5-245 @5-2457
1657
+ nofor pass2 @2457 @f-245
1658
+ nofor pass2 @5-2457 @f-5-245
1659
+
1660
+ noback pass2 @f-13 @137
1661
+ noback pass2 @f-6-13 @6-137
1662
+ noback pass2 @f-5-13 @5-137
1663
+ nofor pass2 @137 @f-13
1664
+ nofor pass2 @5-137 @f-5-13
1665
+ nofor pass2 @458-137 @f-458-13
1666
+
1667
+ noback pass2 @f-123 @1237
1668
+ noback pass2 @f-6-123 @6-1237
1669
+ noback pass2 @f-5-123 @5-1237
1670
+ nofor pass2 @1237 @f-123
1671
+ nofor pass2 @5-1237 @f-5-123
1672
+ nofor pass2 @458-1237 @f-458-123
1673
+
1674
+ noback pass2 @f-134 @1347
1675
+ noback pass2 @f-6-134 @6-1347
1676
+ noback pass2 @f-5-134 @5-1347
1677
+ nofor pass2 @1347 @f-134
1678
+ nofor pass2 @5-1347 @f-5-134
1679
+ nofor pass2 @458-1347 @f-458-134
1680
+
1681
+ noback pass2 @f-1345 @13457
1682
+ noback pass2 @f-6-1345 @6-13457
1683
+ noback pass2 @f-5-1345 @5-13457
1684
+ nofor pass2 @13457 @f-1345
1685
+ nofor pass2 @5-13457 @f-5-1345
1686
+ nofor pass2 @458-13457 @f-458-1345
1687
+
1688
+ noback pass2 @f-135 @1357
1689
+ noback pass2 @f-6-135 @6-1357
1690
+ noback pass2 @f-5-135 @5-1357
1691
+ nofor pass2 @1357 @f-135
1692
+ nofor pass2 @5-1357 @f-5-135
1693
+ nofor pass2 @458-1357 @f-458-135
1694
+ nofor pass2 @458-5-1357 @f-458-5-135
1695
+
1696
+ noback pass2 @f-1234 @12347
1697
+ noback pass2 @f-6-1234 @6-12347
1698
+ noback pass2 @f-5-1234 @5-12347
1699
+ nofor pass2 @12347 @f-1234
1700
+ nofor pass2 @5-12347 @f-5-1234
1701
+ nofor pass2 @458-12347 @f-458-1234
1702
+
1703
+ noback pass2 @f-12345 @123457
1704
+ noback pass2 @f-6-12345 @6-123457
1705
+ noback pass2 @f-5-12345 @5-123457
1706
+ nofor pass2 @123457 @f-12345
1707
+ nofor pass2 @5-123457 @f-5-12345
1708
+
1709
+ noback pass2 @f-1235 @12357
1710
+ noback pass2 @f-6-1235 @6-12357
1711
+ noback pass2 @f-5-1235 @5-12357
1712
+ nofor pass2 @12357 @f-1235
1713
+ nofor pass2 @5-12357 @f-5-1235
1714
+ nofor pass2 @458-12357 @f-458-1235
1715
+
1716
+ noback pass2 @f-234 @2347
1717
+ noback pass2 @f-6-234 @6-2347
1718
+ noback pass2 @f-5-234 @5-2347
1719
+ nofor pass2 @2347 @f-234
1720
+ nofor pass2 @5-2347 @f-5-234
1721
+ nofor pass2 @458-2347 @f-458-234
1722
+
1723
+ noback pass2 @f-2345 @23457
1724
+ noback pass2 @f-6-2345 @6-23457
1725
+ noback pass2 @f-5-2345 @5-23457
1726
+ nofor pass2 @23457 @f-2345
1727
+ nofor pass2 @5-23457 @f-5-2345
1728
+ nofor pass2 @458-23457 @f-458-2345
1729
+
1730
+ noback pass2 @f-136 @1367
1731
+ noback pass2 @f-6-136 @6-1367
1732
+ noback pass2 @f-5-136 @5-1367
1733
+ nofor pass2 @1367 @f-136
1734
+ nofor pass2 @5-1367 @f-5-136
1735
+ nofor pass2 @458-1367 @f-458-136
1736
+ nofor pass2 @458-5-1367 @f-458-5-136
1737
+
1738
+ noback pass2 @f-1236 @12367
1739
+ noback pass2 @f-6-1236 @6-12367
1740
+ noback pass2 @f-5-1236 @5-12367
1741
+ nofor pass2 @12367 @f-1236
1742
+ nofor pass2 @5-12367 @f-5-1236
1743
+
1744
+ noback pass2 @f-2456 @24567
1745
+ noback pass2 @f-6-2456 @6-24567
1746
+ noback pass2 @f-5-2456 @5-24567
1747
+ nofor pass2 @24567 @f-2456
1748
+ nofor pass2 @5-24567 @f-5-2456
1749
+ nofor pass2 @458-24567 @f-458-2456
1750
+ nofor pass2 @458-5-24567 @f-458-5-2456
1751
+
1752
+ noback pass2 @f-1346 @13467
1753
+ noback pass2 @f-6-1346 @6-13467
1754
+ noback pass2 @f-5-1346 @5-13467
1755
+ nofor pass2 @13467 @f-1346
1756
+ nofor pass2 @5-13467 @f-5-1346
1757
+ nofor pass2 @458-13467 @f-458-1346
1758
+
1759
+ noback pass2 @f-13456 @134567
1760
+ noback pass2 @f-6-13456 @6-134567
1761
+ noback pass2 @f-5-13456 @5-134567
1762
+ nofor pass2 @134567 @f-13456
1763
+ nofor pass2 @5-134567 @f-5-13456
1764
+ nofor pass2 @458-134567 @f-458-13456
1765
+
1766
+ noback pass2 @f-1356 @13567
1767
+ noback pass2 @f-6-1356 @6-13567
1768
+ noback pass2 @f-5-1356 @5-13567
1769
+ nofor pass2 @13567 @f-1356
1770
+ nofor pass2 @5-13567 @f-5-1356
1771
+ nofor pass2 @458-13567 @f-458-1356
1772
+
1773
+ noback pass2 @f-34 @347
1774
+ noback pass2 @f-6-34 @6-347
1775
+ noback pass2 @f-5-34 @5-347
1776
+ nofor pass2 @347 @f-34
1777
+ nofor pass2 @5-347 @f-5-34
1778
+
1779
+ noback pass2 @f-346 @3467
1780
+ noback pass2 @f-6-346 @6-3467
1781
+ noback pass2 @f-5-346 @5-3467
1782
+ nofor pass2 @3467 @f-346
1783
+ nofor pass2 @5-3467 @f-5-346
1784
+
1785
+ noback pass2 @f-2348 @23478
1786
+ noback pass2 @f-6-2348 @6-23478
1787
+ noback pass2 @f-5-2348 @5-23478
1788
+ nofor pass2 @23478 @f-2348
1789
+ nofor pass2 @5-23478 @f-5-2348
1790
+
1791
+ noback pass2 @f-1358 @13578
1792
+ noback pass2 @f-6-1358 @6-13578
1793
+ noback pass2 @f-5-1358 @5-13578
1794
+ nofor pass2 @13578 @f-1358
1795
+ nofor pass2 @5-13578 @f-5-1358
1796
+
1797
+ noback pass2 @f-234568 @2345678
1798
+ noback pass2 @f-6-234568 @6-2345678
1799
+ noback pass2 @f-5-234568 @5-2345678
1800
+ nofor pass2 @2345678 @f-234568
1801
+ nofor pass2 @5-2345678 @f-5-234568
1802
+
1803
+ noback pass2 @f-236 @2367
1804
+ noback pass2 @f-6-236 @6-2367
1805
+ noback pass2 @f-5-236 @5-2367
1806
+ nofor pass2 @2367 @f-236
1807
+ nofor pass2 @5-2367 @f-5-236
1808
+
1809
+ noback pass2 @f-256 @2567
1810
+ noback pass2 @f-6-256 @6-2567
1811
+ noback pass2 @f-5-256 @5-2567
1812
+ nofor pass2 @2567 @f-256
1813
+ nofor pass2 @5-2567 @f-5-256
1814
+
1815
+ noback pass2 @f-356 @3567
1816
+ noback pass2 @f-6-356 @6-3567
1817
+ noback pass2 @f-5-356 @5-3567
1818
+ nofor pass2 @3567 @f-356
1819
+ nofor pass2 @5-3567 @f-5-356
1820
+
1821
+ noback pass2 @f-3456 @34567
1822
+ noback pass2 @f-6-3456 @6-34567
1823
+ noback pass2 @f-5-3456 @5-34567
1824
+ nofor pass2 @34567 @f-3456
1825
+ nofor pass2 @5-34567 @f-5-3456
1826
+
1827
+ noback pass2 @f-12356 @123567
1828
+ noback pass2 @f-6-12356 @6-123567
1829
+ noback pass2 @f-5-12356 @5-123567
1830
+ nofor pass2 @123567 @f-12356
1831
+ nofor pass2 @5-123567 @f-5-12356
1832
+
1833
+ noback pass2 @f-123568 @1235678
1834
+ noback pass2 @f-6-123568 @6-1235678
1835
+ noback pass2 @f-5-123568 @5-1235678
1836
+ nofor pass2 @1235678 @f-123568
1837
+ nofor pass2 @5-1235678 @f-5-123568
1838
+
1839
+ noback pass2 @f-168 @1678
1840
+ noback pass2 @f-6-168 @6-1678
1841
+ noback pass2 @f-5-168 @5-1678
1842
+ nofor pass2 @1678 @f-168
1843
+ nofor pass2 @5-1678 @f-5-168
1844
+
1845
+ noback pass2 @f-1468 @14678
1846
+ noback pass2 @f-6-1468 @6-14678
1847
+ noback pass2 @f-5-1468 @5-14678
1848
+ nofor pass2 @14678 @f-1468
1849
+ nofor pass2 @5-14678 @f-5-1468
1850
+
1851
+ noback pass2 @f-3458 @34578
1852
+ noback pass2 @f-6-3458 @6-34578
1853
+ noback pass2 @f-5-3458 @5-34578
1854
+ nofor pass2 @34578 @f-3458
1855
+ nofor pass2 @5-34578 @f-5-3458
1856
+
1857
+ noback pass2 @f-16 @167
1858
+ noback pass2 @f-6-16 @6-167
1859
+ noback pass2 @f-5-16 @5-167
1860
+ nofor pass2 @167 @f-16
1861
+ nofor pass2 @5-167 @f-5-16
1862
+
1863
+ noback pass2 @f-345 @3457
1864
+ noback pass2 @f-6-345 @6-3457
1865
+ noback pass2 @f-5-345 @5-3457
1866
+ nofor pass2 @3457 @f-345
1867
+ nofor pass2 @5-3457 @f-5-345
1868
+
1869
+ noback pass2 @f-12346 @123467
1870
+ noback pass2 @f-6-12346 @6-123467
1871
+ noback pass2 @f-5-12346 @5-123467
1872
+ nofor pass2 @123467 @f-12346
1873
+ nofor pass2 @5-123467 @f-5-12346
1874
+ nofor pass2 @458-123467 @f-458-12346
1875
+
1876
+ noback pass2 @f-2346 @23467
1877
+ noback pass2 @f-6-2346 @6-23467
1878
+ noback pass2 @f-5-2346 @5-23467
1879
+ nofor pass2 @23467 @f-2346
1880
+ nofor pass2 @5-23467 @f-5-2346
1881
+
1882
+ noback pass2 @f-123456 @1234567
1883
+ noback pass2 @f-6-123456 @6-1234567
1884
+ noback pass2 @f-5-123456 @5-1234567
1885
+ nofor pass2 @1234567 @f-123456
1886
+ nofor pass2 @5-1234567 @f-5-123456
1887
+
1888
+ noback pass2 @f-126 @1267
1889
+ noback pass2 @f-6-126 @6-1267
1890
+ noback pass2 @f-5-126 @5-1267
1891
+ nofor pass2 @1267 @f-126
1892
+ nofor pass2 @5-1267 @f-5-126
1893
+
1894
+ noback pass2 @f-1246 @12467
1895
+ noback pass2 @f-6-1246 @6-12467
1896
+ noback pass2 @f-5-1246 @5-12467
1897
+ nofor pass2 @12467 @f-1246
1898
+ nofor pass2 @5-12467 @f-5-1246
1899
+
1900
+ noback pass2 @f-1568 @15678
1901
+ noback pass2 @f-6-1568 @6-15678
1902
+ noback pass2 @f-5-1568 @5-15678
1903
+ nofor pass2 @15678 @f-1568
1904
+ nofor pass2 @5-15678 @f-5-1568
1905
+
1906
+ noback pass2 @f-1268 @12678
1907
+ noback pass2 @f-6-1268 @6-12678
1908
+ noback pass2 @f-5-1268 @5-12678
1909
+ nofor pass2 @12678 @f-1268
1910
+ nofor pass2 @5-12678 @f-5-1268
1911
+
1912
+ noback pass2 @f-146 @1467
1913
+ noback pass2 @f-6-146 @6-1467
1914
+ noback pass2 @f-5-146 @5-1467
1915
+ nofor pass2 @1467 @f-146
1916
+ nofor pass2 @5-1467 @f-5-146
1917
+
1918
+ noback pass2 @f-12456 @124567
1919
+ noback pass2 @f-6-12456 @6-124567
1920
+ noback pass2 @f-5-12456 @5-124567
1921
+ nofor pass2 @124567 @f-12456
1922
+ nofor pass2 @5-124567 @f-5-12456
1923
+
1924
+ noback pass2 @f-134568 @1345678
1925
+ noback pass2 @f-6-134568 @6-1345678
1926
+ noback pass2 @f-5-134568 @5-1345678
1927
+ nofor pass2 @1345678 @f-134568
1928
+ nofor pass2 @5-1345678 @f-5-134568
1929
+
1930
+ noback pass2 @f-124568 @1245678
1931
+ noback pass2 @f-6-124568 @6-1245678
1932
+ noback pass2 @f-5-124568 @5-1245678
1933
+ nofor pass2 @1245678 @f-124568
1934
+ nofor pass2 @5-1245678 @f-5-124568
1935
+
1936
+ noback pass2 @f-12468 @124678
1937
+ noback pass2 @f-6-12468 @6-124678
1938
+ noback pass2 @f-5-12468 @5-124678
1939
+ nofor pass2 @124678 @f-12468
1940
+ nofor pass2 @5-124678 @f-5-12468
1941
+
1942
+ noback pass2 @f-3468 @34678
1943
+ noback pass2 @f-6-3468 @6-34678
1944
+ noback pass2 @f-5-3468 @5-34678
1945
+ nofor pass2 @34678 @f-3468
1946
+ nofor pass2 @5-34678 @f-5-3468
1947
+
1948
+ noback pass2 @f-1456 @14567
1949
+ noback pass2 @f-6-1456 @6-14567
1950
+ noback pass2 @f-5-1456 @5-14567
1951
+ nofor pass2 @14567 @f-1456
1952
+ nofor pass2 @5-14567 @f-5-1456
1953
+ nofor pass2 @458-14567 @f-458-1456
1954
+
1955
+ noback pass2 @f-14568 @145678
1956
+ noback pass2 @f-6-14568 @6-145678
1957
+ noback pass2 @f-5-14568 @5-145678
1958
+ nofor pass2 @145678 @f-14568
1959
+ nofor pass2 @5-145678 @f-5-14568
1960
+
1961
+ noback pass2 @f-2468 @24678
1962
+ noback pass2 @f-6-2468 @6-24678
1963
+ noback pass2 @f-5-2468 @5-24678
1964
+ nofor pass2 @24678 @f-2468
1965
+ nofor pass2 @5-24678 @f-5-2468
1966
+
1967
+ noback pass2 @f-246 @2467
1968
+ noback pass2 @f-6-246 @6-2467
1969
+ noback pass2 @f-5-246 @5-2467
1970
+ nofor pass2 @2467 @f-246
1971
+ nofor pass2 @5-2467 @f-5-246
1972
+
1973
+ noback pass2 @f-23456 @234567
1974
+ noback pass2 @f-6-23456 @6-234567
1975
+ noback pass2 @f-5-23456 @5-234567
1976
+ nofor pass2 @234567 @f-23456
1977
+ nofor pass2 @5-234567 @f-5-23456
1978
+
1979
+ noback pass2 @f-12568 @125678
1980
+ noback pass2 @f-6-12568 @6-125678
1981
+ noback pass2 @f-5-12568 @5-125678
1982
+ nofor pass2 @125678 @f-12568
1983
+ nofor pass2 @5-125678 @f-5-12568
1984
+
1985
+ noback pass2 @f-156 @1567
1986
+ noback pass2 @f-6-156 @6-1567
1987
+ noback pass2 @f-5-156 @5-1567
1988
+ nofor pass2 @1567 @f-156
1989
+ nofor pass2 @5-1567 @f-5-156
1990
+ nofor pass2 @458-1567 @f-458-156
1991
+ nofor pass2 @458-5-1567 @f-458-5-156
1992
+
1993
+ noback pass2 @f-1256 @12567
1994
+ noback pass2 @f-6-1256 @6-12567
1995
+ noback pass2 @f-5-1256 @5-12567
1996
+ nofor pass2 @12567 @f-1256
1997
+ nofor pass2 @5-12567 @f-5-1256
1998
+
1999
+ noback pass2 @f-1348 @13478
2000
+ noback pass2 @f-6-1348 @6-13478
2001
+ noback pass2 @f-5-1348 @5-13478
2002
+ nofor pass2 @13478 @f-1348
2003
+ nofor pass2 @5-13478 @f-5-1348
2004
+
2005
+ noback pass2 @f-138 @1378
2006
+ noback pass2 @f-6-138 @6-1378
2007
+ noback pass2 @f-5-138 @5-1378
2008
+ nofor pass2 @1378 @f-138
2009
+ nofor pass2 @5-1378 @f-5-138
2010
+
2011
+ noback pass2 @f-234568 @2345678
2012
+ noback pass2 @f-6-234568 @6-2345678
2013
+ noback pass2 @f-5-234568 @5-2345678
2014
+ nofor pass2 @2345678 @f-234568
2015
+ nofor pass2 @5-2345678 @f-5-234568
2016
+
2017
+ # Tweak to keep letsign for letters that should always have letsign.
2018
+ # Letsign will be removed by the multind opcode. So we insert an extra one.
2019
+ nofor pass2 @6-123457 @f-6-6-12345
2020
+ nofor pass2 @6-24567 @f-6-6-2456
2021
+ nofor pass2 @6-13467 @f-6-6-1346
2022
+ nofor pass2 @6-134567 @f-6-6-13456
2023
+ nofor pass2 @6-13567 @f-6-6-1356
2024
+ nofor pass2 @6-123567 @f-6-6-12356
2025
+ nofor pass2 @6-123467 @f-6-6-12346
2026
+ nofor pass2 @6-23467 @f-6-6-2346
2027
+ nofor pass2 @6-1234567 @f-6-6-123456
2028
+ nofor pass2 @6-1267 @f-6-6-126
2029
+ nofor pass2 @6-12467 @f-6-6-1246
2030
+ nofor pass2 @6-1467 @f-6-6-146
2031
+ nofor pass2 @6-124567 @f-6-6-12456
2032
+ nofor pass2 @6-14567 @f-6-6-1456
2033
+ nofor pass2 @6-234567 @f-6-6-23456
2034
+ nofor pass2 @6-1567 @f-6-6-156
2035
+ nofor pass2 @6-12567 @f-6-6-1256
2036
+
2037
+ # Ensure that punctuation signs etc. are not "tolowered" when they have a letsign, but only when they act as a partword contraction.
2038
+ nofor pass2 @6-347 *
2039
+ nofor pass2 @6-2357 *
2040
+ nofor pass2 @6-3467 *
2041
+ nofor pass2 @6-2567 *
2042
+ nofor pass2 @6-2367 *
2043
+ nofor pass2 @6-34567 *
2044
+ nofor pass2 @6-367 *
2045
+
2046
+ # remove any superfluous capsletter marks.
2047
+ noback pass2 @f ?
2048
+
2049
+ # Pass 3
2050
+
2051
+ # Remove any superfluous letsigns and only keep one.
2052
+ noback pass3 @6-6 @6
2053
+
2054
+ # Remove letsigns before letters marked with indicator for accents or greek letters.
2055
+
2056
+ noback pass3 @6-5 @5
2057
+ noback pass3 @6-458 @458
2058
+ # Ensure there is only one emphasis sign
2059
+ noback pass3 @56-56 @56
2060
+ noback pass3 @56-56-56 @56
2061
+
2062
+ # Include hyphenation file as the last thing
2063
+ include da-dk-g2.dic