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,2426 @@
1
+ # liblouis: Danish, table for 8 dots grade 2 forward and backward translation (2022)
2
+ #
3
+ # Copyright (C) 2014, 2016-2024, 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 Braille (stor forkortelse) (2022).
24
+ # Use this table for translation and back-translation of Danish 8 dots Braille grade 2.
25
+ # See also: Den Danske Punktskrift 2022
26
+ # Det Danske Punktskriftsnævn
27
+ # https://www.blind.dk/punktskrift-2022
28
+ #
29
+ # Version: Bue Vester-Andersen, December 2022
30
+
31
+ ### Table Metadata
32
+
33
+ #-name: Dansk forkortet 8-punkt 2022
34
+ #-index-name: Danish, contracted, 8-dot, 2022
35
+ #-display-name: Danish 8-dot contracted braille (2022 standard)
36
+
37
+ #+language: da
38
+ #+type: literary
39
+ #+contraction: full
40
+ #+grade: 2
41
+ #+dots: 8
42
+ #+direction: both
43
+ #+system: ddp
44
+ #+version: 2022
45
+
46
+ #-has-nocross: yes
47
+
48
+ # Display upcodes
49
+ include da-dk-octobraille.dis
50
+
51
+ ### Character definitions ###
52
+ # Various spaces
53
+ include spaces.uti
54
+
55
+ punctuation ! 235 EXCLAMATION MARK
56
+ punctuation " 2356 QUOTATION MARK
57
+ punctuation # 34568 NUMBER SIGN
58
+ sign $ 14578 DOLLAR SIGN
59
+ math % 678 PERCENT SIGN
60
+ sign & 123468 AMPERSAND
61
+ punctuation ' 4 APOSTROPHE
62
+ punctuation ( 2368 LEFT PARENTHESIS
63
+ punctuation ) 3568 RIGHT PARENTHESIS
64
+ math + 2358 PLUS SIGN
65
+ punctuation , 2 COMMA
66
+ punctuation - 36 HYPHEN-MINUS
67
+ punctuation . 3 FULL STOP
68
+ punctuation / 348 SLASH
69
+
70
+ # Digits
71
+ include digits8Dots.uti
72
+
73
+ punctuation : 25 COLON
74
+ punctuation ; 23 SEMICOLON
75
+ math < 358 LESS-THAN SIGN
76
+ math = 23568 EQUALS SIGN
77
+ math > 267 GREATER-THAN SIGN
78
+ punctuation ? 26 QUESTION MARK
79
+ sign @ 178 COMMERCIAL AT
80
+
81
+ # Latin letters
82
+ lowercase a 1 LATIN LETTER A
83
+ lowercase b 12 LATIN LETTER B
84
+ lowercase c 14 LATIN LETTER C
85
+ lowercase d 145 LATIN LETTER D
86
+ lowercase e 15 LATIN LETTER E
87
+ lowercase f 124 LATIN LETTER F
88
+ lowercase g 1245 LATIN LETTER G
89
+ lowercase h 125 LATIN LETTER H
90
+ lowercase i 24 LATIN LETTER I
91
+ lowercase j 245 LATIN LETTER J
92
+ lowercase k 13 LATIN LETTER K
93
+ lowercase l 123 LATIN LETTER L
94
+ lowercase m 134 LATIN LETTER M
95
+ lowercase n 1345 LATIN LETTER N
96
+ lowercase o 135 LATIN LETTER O
97
+ lowercase p 1234 LATIN LETTER P
98
+ lowercase r 1235 LATIN LETTER R
99
+ lowercase s 234 LATIN LETTER S
100
+ lowercase t 2345 LATIN LETTER T
101
+ lowercase u 136 LATIN LETTER U
102
+ lowercase v 1236 LATIN LETTER V
103
+ lowercase y 13456 LATIN LETTER Y
104
+
105
+ punctuation [ 23678 LEFT SQUARE BRACKET
106
+ punctuation ] 35678 RIGHT SQUARE BRACKET
107
+ punctuation ^ 12348 CIRCUMFLEX ACCENT
108
+ punctuation _ 3678 LOW LINE
109
+ punctuation ` 5 GRAVE ACCENT
110
+ punctuation { 123678 LEFT CURLY BRACKET
111
+ punctuation | 4568 VERTICAL LINE
112
+ punctuation } 345678 RIGHT CURLY BRACKET
113
+ punctuation ~ 2378 TILDE
114
+ sign \x007f 7 DELETE
115
+ sign \x20AC 1578 #EURO SIGN (0x80)
116
+ sign \x0081 2357 <control-0081>
117
+ punctuation \x201A 457 #Low single quote (0x82)
118
+ sign \x0192 58 #Flurihn (0x83)
119
+ punctuation \x201E 467 #Low quote (0x84)
120
+ sign \x2020 45 #Dagger (0x86
121
+ sign \x2021 456 #Double dagger (0x87
122
+ sign \x02c6 5678 #Modifier letter circumflex (0x88)
123
+ math \x2030 245678 #permille sign (0x89)
124
+ punctuation \x2039 23578 #SINGLE LEFT-POINTING ANGLE QUOTATION MARK (0x8b)
125
+ sign \x008d 3567 REVERSE LINE FEED (not defined in cp1252)
126
+ sign \x008f 27 SINGLE SHIFT THREE (not defined in cp1252)
127
+ sign \x0090 357 DEVICE CONTROL STRING (not defined in cp1252)
128
+ punctuation \x2018 47 #LEFT SINGLE QUOTATION MARK (0x91)
129
+ punctuation \x2019 48 #RIGHT SINGLE QUOTATION MARK (0x92)
130
+ punctuation \x201c 237 #LEFT DOUBLE QUOTATION MARK (0x93)
131
+ punctuation \x201d 568 #RIGHT DOUBLE QUOTATION MARK (0x94)
132
+ sign \x2022 37 #Bullit (0x95)
133
+ sign \x2013 368 #EN DASH (0x96)
134
+ sign \x2014 367 #Em DASH (0x97)
135
+ sign \x02DC 23478 #small TILDE (0x98)
136
+ sign \x2122 234578 #TRADE MARK SIGN (0x99)
137
+ punctuation \x203A 4567 #SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (0x9b)
138
+ lowercase \x0153 1358 #Latin small LIGATURE OE (0x9c)
139
+ letter \x009d 2567 OPERATING SYSTEM COMMAND
140
+ punctuation \x00a1 256 INVERTED EXCLAMATION MARK )0xa1)
141
+ punctuation \x00a2 2578 CENT SIGN (0xa2)
142
+ punctuation \x00a3 12378 POUND SIGN (0xa3)
143
+ punctuation \x00a5 1345678 YEN SIGN (0xa5)
144
+ punctuation \x00a6 3478 BROKEN BAR (0xa6)
145
+ punctuation \x00a7 578 SECTION SIGN (0xa7)
146
+ punctuation \x00a8 56 DIAERESIS (0xa8)
147
+ punctuation \x00a9 1478 COPYRIGHT SIGN (0xa9)
148
+ letter \x00aa 234678 FEMININE ORDINAL INDICATOR (0xaa)
149
+ punctuation \x00ab 57 LEFT-POINTING DOUBLE ANGLE QUOTATION MARK (0xab)
150
+ letter \x00ad 378 SOFT HYPHEN (0xad)
151
+ punctuation \x00ae 123578 Registered sign (0xae)
152
+ punctuation \x00af 23567 macron (0xaf)
153
+ math \x00b1 12478 PLUS-MINUS SIGN
154
+ punctuation \x00b2 238 SUPERSCRIPT TWO
155
+ punctuation \x00b3 258 SUPERSCRIPT THREE
156
+ punctuation \x00b4 458 acute ACCENT
157
+ punctuation \x00b6 1234568 PILCROW SIGN
158
+ punctuation \x00b7 38 MIDDLE DOT
159
+ punctuation \x00b8 4678 CEDILLA
160
+ punctuation \x00b9 28 SUPERSCRIPT ONE
161
+ letter \x00ba 12345678 MASCULINE ORDINAL INDICATOR
162
+ punctuation \x00bb 567 RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK
163
+ punctuation \x00bc 1368 VULGAR FRACTION ONE QUARTER
164
+ punctuation \x00bd 468 VULGAR FRACTION ONE HALF
165
+ punctuation \x00be 13468 VULGAR FRACTION THREE QUARTERS
166
+ punctuation \x00bf 34 INVERTED QUESTION MARK
167
+ lowercase \x00e1 123568 LATIN LETTER A WITH ACUTE
168
+ lowercase \x00e2 168 LATIN LETTER A WITH CIRCUMFLEX
169
+ lowercase \x00e3 1468 LATIN LETTER A WITH TILDE
170
+ lowercase \x00e4 3458 LATIN LETTER A WITH DIAERESIS
171
+ lowercase \x00e5 16 LATIN LETTER A WITH RING ABOVE
172
+ lowercase \x00e6 345 LATIN LETTER AE
173
+ lowercase \x00ec 1568 LATIN LETTER I WITH GRAVE
174
+ lowercase \x00ed 1268 LATIN LETTER I WITH ACUTE
175
+ lowercase \x00f0 134568 LATIN LETTER ETH
176
+ lowercase \x00f1 124568 LATIN LETTER N WITH TILDE
177
+ lowercase \x00f2 12468 LATIN LETTER O WITH GRAVE
178
+ lowercase \x00f3 3468 LATIN LETTER O WITH ACUTE
179
+ lowercase \x00f5 14568 LATIN LETTER O WITH TILDE
180
+ lowercase \x00f6 2468 LATIN LETTER O WITH DIAERESIS
181
+ math \x00f7 2568 DIVISION SIGN
182
+ lowercase \x00f8 246 LATIN LETTER O WITH STROKE
183
+ lowercase \x00fa 12568 LATIN LETTER U WITH ACUTE
184
+ lowercase \x00fd 1348 LATIN LETTER Y WITH ACUTE (infinite?)
185
+ lowercase \x00fe 138 LATIN LETTER THORN
186
+ lowercase \x00df 23468 LATIN SMALL LETTER SHARP S
187
+ lowercase \x00ff 234568 LATIN SMALL LETTER Y WITH DIAERESIS
188
+
189
+ # Character used for capslettersign
190
+ # Resides in the "private use area", and shouldn't conflict with anything.
191
+ sign \xf8ff f
192
+
193
+ # Used as dash where dash should act as space.
194
+ space \xf8fe ef
195
+
196
+ # In CP-1252 the following chars are different from Unicode.
197
+ # This placement ensures that Liblouis will always return the unicode when back-translating.
198
+ noback sign \x0080 1578 #EURO SIGN (0x80)
199
+ noback punctuation \x0082 457 #Low single quote (0x82)
200
+ noback sign \x0083 58 #Flurihn (0x83)
201
+ noback punctuation \x0084 467 #Low quote (0x84)
202
+ noback letter \x0086 45 #Dagger (0x86
203
+ noback letter \x0087 456 #Double dagger (0x87
204
+ noback letter \x0088 5678 #Modifier letter circumflex (0x88)
205
+ noback math \x0089 245678 #permille sign (0x89)
206
+ noback uppercase \x008a 5-2347 #Latin letter S with caron (0x8a)
207
+ noback lowercase \x009a 5-234
208
+ noback punctuation \x008b 23578 #SINGLE LEFT-POINTING ANGLE QUOTATION MARK (0x8b)
209
+ noback uppercase \x008c 13578 #Latin LIGATURE OE (0x8c)
210
+ noback lowercase \x009c 1358
211
+ noback uppercase \x008e 3467 #Latin capital letter Z with caron (0x8e)
212
+ noback lowercase \x009e 346
213
+ noback punctuation \x0091 47 #LEFT SINGLE QUOTATION MARK (0x91)
214
+ noback punctuation \x0092 48 #RIGHT SINGLE QUOTATION MARK (0x92)
215
+ noback punctuation \x0093 237 #LEFT DOUBLE QUOTATION MARK (0x93)
216
+ noback punctuation \x0094 568 #RIGHT DOUBLE QUOTATION MARK (0x94)
217
+ noback sign \x0095 37 #Bullit (0x95)
218
+ noback sign \x0096 368 #EN DASH (0x96)
219
+ noback sign \x0097 367 #Em DASH (0x97)
220
+ noback sign \x0098 23478 #small TILDE (0x98)
221
+ noback sign \x0099 234578 #TRADE MARK SIGN (0x99)
222
+ noback punctuation \x009b 4567 #SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (0x9b)
223
+ noback uppercase \x009f 2345678 #Latin capital letter Y with DIAERESIS (0x9f)
224
+
225
+ #Unicode Braille patterns
226
+ include braille-patterns.cti
227
+
228
+ # characters that have letsign as part of their definition
229
+ # (to be removed when the alwaysletsign opcode has been implemented).
230
+ punctuation * 56-35 ASTERISK
231
+ lowercase q 56-12345 LATIN LETTER Q
232
+ lowercase w 56-2456 LATIN LETTER W
233
+ lowercase x 56-1346 LATIN LETTER X
234
+ lowercase z 56-1356 LATIN LETTER Z
235
+ punctuation \\ 56-347 REVERSE SLASH
236
+ punctuation \x2026 56-3-3-3 #Elipsis (0x85)
237
+ noback punctuation \x0085 56-3-3-3 #Elipsis (0x85)
238
+ lowercase \x017e 56-346 #LATIN LETTER Z WITH CARON (0x8e)
239
+ noback lowercase \x009e 56-346 #LATIN LETTER Z WITH CARON (0x8e)
240
+ punctuation \x00a4 56-2367 CURRENCY SIGN (0xa4)
241
+ punctuation \x00a8 56-56 DIAERESIS (0xa8)
242
+ punctuation \x00ac 56-34567 NOT SIGN (0xac)
243
+ sign \x00b0 56-356 Degree sign (0xb0)
244
+ sign \x00b5 56-236 MICRO SIGN
245
+ punctuation \x00bf 56-34 INVERTED QUESTION MARK
246
+ math \x00d7 56-3456 MULTIPLICATION SIGN
247
+ lowercase \x00e0 56-12356 LATIN LETTER A WITH GRAVE
248
+ lowercase \x00e7 56-12346 LATIN LETTER C WITH CEDILLA
249
+ lowercase \x00e8 56-2346 LATIN LETTER E WITH GRAVE
250
+ lowercase \x00e9 56-123456 LATIN LETTER E WITH ACUTE
251
+ lowercase \x00ea 56-126 LATIN LETTER E WITH CIRCUMFLEX
252
+ lowercase \x00eb 56-1246 LATIN LETTER E WITH DIAERESIS
253
+ lowercase \x00ee 56-146 LATIN LETTER I WITH CIRCUMFLEX
254
+ lowercase \x00ef 56-12456 LATIN LETTER I WITH DIAERESIS
255
+ lowercase \x00f4 56-1456 LATIN LETTER O WITH CIRCUMFLEX
256
+ lowercase \x00f9 56-23456 LATIN LETTER U WITH GRAVE
257
+ lowercase \x00fb 56-156 LATIN LETTER U WITH CIRCUMFLEX
258
+ lowercase \x00fc 56-1256 LATIN LETTER U WITH DIAERESIS
259
+
260
+ # Misc unicode characters
261
+
262
+ # Many of the characters below and in da-dk-8miscChars.cti have not
263
+ # been defined in the Danish Braille standard.
264
+ # The current implementation is purely experimental and subject to change.
265
+ # Math chars and arrows etc. are inspired by UEB.
266
+
267
+ # Latin Extended-A (\x0100-\x017f)
268
+
269
+ # For each accented letter, the first occurring instance is chosen for back-translation.
270
+ # There are no rules about this in the specs of Danish Braille,
271
+ # So the choice is arbitrary and may change over time.
272
+
273
+ lowercase \x0101 5-1 Latin letter a with macron
274
+ noback lowercase \x0103 5-1 Latin letter a with breve
275
+ noback lowercase \x0105 5-1 Latin letter a with ogonek
276
+ lowercase \x0107 5-14 Latin letter c with acute
277
+ noback lowercase \x0109 5-14 Latin letter c with circumflex
278
+ noback lowercase \x010b 5-14 Latin letter c with dot above
279
+ noback lowercase \x010d 5-14 Latin letter c with caron
280
+ lowercase \x010f 5-145 Latin letter d with caron
281
+ noback lowercase \x0111 5-145 Latin letter d with stroke
282
+ lowercase \x0113 5-15 Latin letter e with macron
283
+ noback lowercase \x0115 5-15 Latin letter e with breve
284
+ noback lowercase \x0117 5-15 Latin letter e with dot above
285
+ noback lowercase \x0119 5-15 Latin letter e with ogonek
286
+ noback lowercase \x011b 5-15 Latin letter e with caron
287
+ lowercase \x011d 5-1245 Latin letter g with circumflex
288
+ noback lowercase \x011f 5-1245 Latin letter g with breve
289
+ noback lowercase \x0121 5-1245 Latin letter g with dot above
290
+ noback lowercase \x0123 5-1245 Latin letter g with cedilla
291
+ lowercase \x0125 5-125 Latin letter h with circumflex
292
+ noback lowercase \x0127 5-125 Latin letter h with stroke
293
+ lowercase \x0129 5-24 Latin letter i with tilde
294
+ noback lowercase \x012b 5-24 Latin letter i with macron
295
+ noback lowercase \x012d 5-24 Latin letter i with breve
296
+ noback lowercase \x012f 5-24 Latin letter i with ogonek
297
+ noback lowercase \x0131 5-24 Latin small dotless i
298
+ noback lowercase \x0133 24-245 Latin ligature ij
299
+ lowercase \x0135 5-245 Latin letter j with circumflex
300
+ lowercase \x0137 5-13 Latin letter k with cedilla
301
+ lowercase \x0138 5-12345 Small latin letter kra (Greenlandic q)
302
+ lowercase \x013a 5-123 Latin letter l with acute
303
+ noback lowercase \x013c 5-123 Latin letter l with cedilla
304
+ noback lowercase \x013e 5-123 Latin letter l with caron
305
+ noback lowercase \x0140 5-123 Latin letter l with middle dot
306
+ noback lowercase \x0142 5-123 Latin letter l with stroke
307
+ lowercase \x0144 5-1345 Latin letter n with acute
308
+ noback lowercase \x0146 5-1345 Latin letter n with cedilla
309
+ noback lowercase \x0148 5-1345 Latin letter n with caron
310
+ noback lowercase \x0149 4-1345 Latin small letter n preceeded by apostrophe
311
+ noback lowercase \x014b 5-1345 Latin letter eng
312
+ lowercase \x014d 5-135 Latin letter o with macron
313
+ noback lowercase \x014f 5-135 Latin letter o with breve
314
+ noback lowercase \x0151 5-135 Latin letter o with double acute
315
+ lowercase \x0155 5-1235 Latin letter r with acute
316
+ noback lowercase \x0157 5-1235 Latin letter r with cedilla
317
+ noback lowercase \x0159 5-1235 Latin letter r with caron
318
+ noback lowercase \x015b 5-234 Latin letter s with acute
319
+ noback lowercase \x015d 5-234 Latin letter s with circumflex
320
+ noback lowercase \x015f 5-234 Latin letter s with cedilla
321
+ lowercase \x0161 5-234 #Latin lowercase Letter S with caron (0x8a/0x9a)
322
+ lowercase \x0163 5-2345 Latin letter t with cedilla
323
+ noback lowercase \x0165 5-2345 Latin letter t with caron
324
+ noback lowercase \x0167 5-2345 Latin letter t with stroke
325
+ lowercase \x0169 5-136 Latin letter u with tilde
326
+ noback lowercase \x016b 5-136 Latin letter u with macron
327
+ noback lowercase \x016d 5-136 Latin letter u with breve
328
+ noback lowercase \x016f 5-136 Latin letter u with ring above
329
+ noback lowercase \x0171 5-136 Latin letter u with double acute
330
+ noback lowercase \x0173 5-136 Latin letter u with ogonek
331
+ lowercase \x0175 5-2456 Latin letter w with circumflex
332
+ lowercase \x0177 5-13456 Latin letter y with circumflex
333
+ lowercase \x017a 5-1356 Latin letter z with acute
334
+ noback lowercase \x017c 5-1356 Latin letter z with dot above
335
+ noback lowercase \x017f 5-234 Latin small letter long s
336
+
337
+ # Greek letters (with do# Punctuation and bullits
338
+
339
+ noback punctuation \x2010 36 # Hyphen
340
+ noback punctuation \x2011 36 # Non-breaking hyphen
341
+ noback punctuation \x2012 36 # Figure dash
342
+ sign \x2016 45-4568 # Double Vertical Line
343
+ sign \x2017 45-3678 # Double low line
344
+ noback punctuation \x201b 4 # Single High-Reversed-9 Quotation Mark
345
+ noback punctuation \x201f 2356 # Double High-Reversed-9 Quotation Mark
346
+ noback sign \x2023 37 #Triangular bullit
347
+ noback punctuation \x203c 235-235 # Double Exclamation Mark
348
+ noback punctuation \x203d 26-235 # Interrobang
349
+ noback sign \x2043 37 # Hyphen bullet (0x95)
350
+ noback punctuation \x2047 26-26 # Double question mark
351
+ noback punctuation \x2048 26-235 # Question exclamation mark
352
+ noback punctuation \x2049 235-26 # Exclamation question mark
353
+ noback sign \x204c 37 # BLACK LEFTWARDS BULLET
354
+ noback sign \x204d 37 # BLACK RIGHTWARDS BULLET
355
+
356
+ # Arrows
357
+
358
+ sign \x2190 45-1256-246 Left arrow
359
+ sign \x2191 45-1256-346 Up arrow
360
+ sign \x2192 45-1256-135 Right arrow
361
+ sign \x2193 45-1256-146 Down arrow
362
+ sign \x2194 45-1256-2456-1235-135 Left-right arrow
363
+ sign \x2196 45-1256-156 Northwest arrow
364
+ sign \x2197 45-1256-234 Northeast arrow
365
+ sign \x2198 45-1256-126 Southeast arrow
366
+ sign \x2199 45-1256-345 Southwest arrow
367
+ sign \x21d4 45-1256-2456-2356-1235-135 Left-right double arrow
368
+
369
+ # Math signs (experimental)
370
+
371
+ math \x2200 45-1 # For all
372
+ math \x2208 45-15 # Element of
373
+ math \x2213 456-36 # Minus or plus
374
+ math \x221d 456-5-23568 # Proportional to
375
+ math \x2229 46-236 # Intersection
376
+ math \x222a 46-235 # Union
377
+ math \x2243 456-35 # approx. equal to
378
+ math \x2245 5-45-35 # approx. equal to
379
+ math \x2248 45-35 # approx. equal to
380
+ math \x224f 45-5-23568 # Diff between or approx. equal to
381
+ math \x2251 46-5-23568 # approx. equal to
382
+ math \x2260 5-23568-4-156 # Not equal to
383
+ math \x2261 456-123456 # Equivalent to
384
+ math \x2264 456-358 # Less than or equal to
385
+ math \x2265 456-267 # Greater than or equal to
386
+ math \x226a 46-358 # Much less than
387
+ math \x226b 46-267 # Much greater than
388
+ math \x22c5 5-256 # Multiplication dot
389
+
390
+ # Geometrical shapes
391
+
392
+ noback sign \x25e6 37 #White bullet
393
+
394
+ # Greek letters with dots 458 as prefix)
395
+ lowercase \x03AC 458-5-1 Greek letter alpha with tonos
396
+ lowercase \x03AD 458-5-15 Greek letter epsilon with tonos
397
+ lowercase \x03AE 458-5-156 Greek letter eta with tonos
398
+ lowercase \x03AF 458-5-24 Greek letter iota with sonos
399
+ lowercase \x03CC 458-5-135 Greek letter omicron with tonos
400
+ lowercase \x03CD 458-5-136 Greek letter upsilon with tonos
401
+ lowercase \x03CE 458-5-2456 Greek letter omega with tonos
402
+
403
+ lowercase \x03B1 458-1 Greek letter alpha
404
+ lowercase \x03B2 458-12 Greek letter beta
405
+ lowercase \x03B3 458-1245 Greek letter gamma
406
+ lowercase \x03B4 458-145 Greek letter delta
407
+ lowercase \x03B5 458-15 Greek letter epsilon
408
+ lowercase \x03B6 458-1356 Greek letter zeta
409
+ lowercase \x03B7 458-156 Greek letter eta
410
+ lowercase \x03B8 458-1456 Greek letter theta
411
+ lowercase \x03B9 458-24 Greek letter iota
412
+ lowercase \x03BA 458-13 Greek letter kappa
413
+ lowercase \x03BB 458-123 Greek letter lamda
414
+ lowercase \x03BC 458-134 Greek letter Mu
415
+ lowercase \x03BD 458-1345 Greek letter Nu
416
+ lowercase \x03BE 458-1346 Greek letter Xi
417
+ lowercase \x03BF 458-135 Greek letter Omicron
418
+ lowercase \x03C0 458-1234 Greek letter Pi
419
+ lowercase \x03C1 458-1235 Greek letter Rho
420
+ lowercase \x03C3 458-234 Greek letter sigma
421
+ lowercase \x03C4 458-2345 Greek letter Tau
422
+ lowercase \x03C5 458-136 Greek letter Upsilon
423
+ lowercase \x03C6 458-124 Greek letter Phi
424
+ lowercase \x03C7 458-12346 Greek letter Chi
425
+ lowercase \x03C8 458-13456 Greek letter Psi
426
+ lowercase \x03C9 458-2456 Greek letter Omega
427
+
428
+ # Uppercase letters
429
+
430
+ base uppercase A a LATIN LETTER A
431
+ base uppercase B b LATIN LETTER B
432
+ base uppercase C c LATIN LETTER C
433
+ base uppercase D d LATIN LETTER D
434
+ base uppercase E e LATIN LETTER E
435
+ base uppercase F f LATIN LETTER F
436
+ base uppercase G g LATIN LETTER G
437
+ base uppercase H h LATIN LETTER H
438
+ base uppercase I i LATIN LETTER I
439
+ base uppercase J j LATIN LETTER J
440
+ base uppercase K k LATIN LETTER K
441
+ base uppercase L l LATIN LETTER L
442
+ base uppercase M m LATIN LETTER M
443
+ base uppercase N n LATIN LETTER N
444
+ base uppercase O o LATIN LETTER O
445
+ base uppercase P p LATIN LETTER P
446
+ base uppercase Q q LATIN LETTER Q
447
+ base uppercase R r LATIN LETTER R
448
+ base uppercase S s LATIN LETTER S
449
+ base uppercase T t LATIN LETTER T
450
+ base uppercase U u LATIN LETTER U
451
+ base uppercase V v LATIN LETTER V
452
+ base uppercase W w LATIN LETTER W
453
+ base uppercase X x LATIN LETTER X
454
+ base uppercase Y y LATIN LETTER Y
455
+ base uppercase Z z LATIN LETTER Z
456
+ base uppercase \x008a \x009a LATIN LETTER S WITH CARON (0x8a)
457
+ base uppercase \x008c \x009c LATIN LIGATURE OE (0x8c)
458
+ base uppercase \x008e \x009e LATIN LETTER Z WITH CARON (0x8e)
459
+ base uppercase \x00c0 \x00e0 LATIN LETTER A WITH GRAVE
460
+ base uppercase \x00c1 \x00e1 LATIN LETTER A WITH ACUTE
461
+ base uppercase \x00c2 \x00e2 LATIN LETTER A WITH CIRCUMFLEX
462
+ base uppercase \x00c3 \x00e3 LATIN LETTER A WITH TILDE
463
+ base uppercase \x00c4 \x00e4 LATIN LETTER A WITH DIAERESIS
464
+ base uppercase \x00c5 \x00e5 LATIN LETTER A WITH RING ABOVE
465
+ base uppercase \x00c6 \x00e6 LATIN LETTER AE
466
+ base uppercase \x00c7 \x00e7 LATIN LETTER C WITH CEDILLA
467
+ base uppercase \x00c8 \x00e8 LATIN LETTER E WITH GRAVE
468
+ base uppercase \x00c9 \x00e9 LATIN LETTER E WITH ACUTE
469
+ base uppercase \x00ca \x00ea LATIN LETTER E WITH CIRCUMFLEX
470
+ base uppercase \x00cb \x00eb LATIN LETTER E WITH DIAERESIS
471
+ base uppercase \x00cc \x00ec LATIN LETTER I WITH GRAVE
472
+ base uppercase \x00cd \x00ed LATIN LETTER I WITH ACUTE
473
+ base uppercase \x00ce \x00ee LATIN LETTER I WITH CIRCUMFLEX
474
+ base uppercase \x00cf \x00ef LATIN LETTER I WITH DIAERESIS
475
+ base uppercase \x00d0 \x00f0 LATIN LETTER ETH
476
+ base uppercase \x00d1 \x00f1 LATIN LETTER N WITH TILDE
477
+ base uppercase \x00d2 \x00f2 LATIN LETTER O WITH GRAVE
478
+ base uppercase \x00d3 \x00f3 LATIN LETTER O WITH ACUTE
479
+ base uppercase \x00d4 \x00f4 LATIN LETTER O WITH CIRCUMFLEX
480
+ base uppercase \x00d5 \x00f5 LATIN LETTER O WITH TILDE
481
+ base uppercase \x00d6 \x00f6 LATIN LETTER O WITH DIAERESIS
482
+ base uppercase \x00d8 \x00f8 LATIN LETTER O WITH STROKE
483
+ base uppercase \x00d9 \x00f9 LATIN LETTER U WITH GRAVE
484
+ base uppercase \x00da \x00fa LATIN LETTER U WITH ACUTE
485
+ base uppercase \x00db \x00fb LATIN LETTER U WITH CIRCUMFLEX
486
+ base uppercase \x00dc \x00fc LATIN LETTER U WITH DIAERESIS
487
+ base uppercase \x00dd \x00fd LATIN LETTER Y WITH ACUTE (infinite?)
488
+ base uppercase \x00de \x00fe LATIN LETTER THORN
489
+ base uppercase \x0100 \x0101 Latin letter a with macron
490
+ base uppercase \x0102 \x0103 Latin letter a with breve
491
+ base uppercase \x0104 \x0105 Latin letter a with ogonek
492
+ base uppercase \x0106 \x0107 Latin letter c with acute
493
+ base uppercase \x0108 \x0109 Latin letter c with circumflex
494
+ base uppercase \x010a \x010b Latin letter c with dot above
495
+ base uppercase \x010c \x010d Latin letter c with caron
496
+ base uppercase \x010e \x010f Latin letter d with caron
497
+ base uppercase \x0110 \x0111 Latin letter d with stroke
498
+ base uppercase \x0112 \x0113 Latin letter e with macron
499
+ base uppercase \x0114 \x0115 Latin letter e with breve
500
+ base uppercase \x0116 \x0117 Latin letter e with dot above
501
+ base uppercase \x0118 \x0119 Latin letter e with ogonek
502
+ base uppercase \x011a \x011b Latin letter e with caron
503
+ base uppercase \x011c \x011d Latin letter g with circumflex
504
+ base uppercase \x011e \x011f Latin letter g with breve
505
+ base uppercase \x0120 \x0121 Latin letter g with dot above
506
+ base uppercase \x0122 \x0123 Latin letter g with cedilla
507
+ base uppercase \x0124 \x0125 Latin letter h with circumflex
508
+ base uppercase \x0126 \x0127 Latin letter h with stroke
509
+ base uppercase \x0128 \x0129 Latin letter i with tilde
510
+ base uppercase \x012a \x012b Latin letter i with macron
511
+ base uppercase \x012c \x012d Latin letter i with breve
512
+ base uppercase \x012e \x012f Latin letter i with ogonek
513
+ base uppercase \x0130 \x0131 Latin capital letter i with dot above / small dotless i
514
+ base uppercase \x0132 \x0133 Latin ligature ij
515
+ base uppercase \x0134 \x0135 Latin letter j with circumflex
516
+ base uppercase \x0136 \x0137 Latin letter k with cedilla
517
+ base uppercase \x0139 \x013a Latin letter l with acute
518
+ base uppercase \x013b \x013c Latin letter l with cedilla
519
+ base uppercase \x013d \x013e Latin letter l with caron
520
+ base uppercase \x013f \x0140 Latin letter l with middle dot
521
+ base uppercase \x0141 \x0142 Latin letter l with stroke
522
+ base uppercase \x0143 \x0144 Latin letter n with acute
523
+ base uppercase \x0145 \x0146 Latin letter n with cedilla
524
+ base uppercase \x0147 \x0148 Latin letter n with caron
525
+ base uppercase \x014a \x014b Latin letter eng
526
+ base uppercase \x014c \x014d Latin letter o with macron
527
+ base uppercase \x014e \x014f Latin letter o with breve
528
+ base uppercase \x0150 \x0151 Latin letter o with double acute
529
+ base uppercase \x0152 \x0153 LATIN LIGATURE OE (0x8c)
530
+ uppercase \x0152 13578 #Latin capital LIGATURE OE (0x8c)
531
+ base uppercase \x0154 \x0155 Latin letter r with acute
532
+ base uppercase \x0156 \x0157 Latin letter r with cedilla
533
+ base uppercase \x0158 \x0159 Latin letter r with caron
534
+ base uppercase \x015a \x015b Latin letter s with acute
535
+ base uppercase \x015c \x015d Latin letter s with circumflex
536
+ base uppercase \x015e \x015f Latin letter s with cedilla
537
+ base uppercase \x0160 \x0161 LATIN LETTER S WITH CARON (0x8a)
538
+ base uppercase \x0162 \x0163 Latin letter t with cedilla
539
+ base uppercase \x0164 \x0165 Latin letter t with caron
540
+ base uppercase \x0166 \x0167 Latin letter t with stroke
541
+ base uppercase \x0168 \x0169 Latin letter u with tilde
542
+ base uppercase \x016a \x016b Latin letter u with macron
543
+ base uppercase \x016c \x016d Latin letter u with breve
544
+ base uppercase \x016e \x016f Latin letter u with ring above
545
+ base uppercase \x0170 \x0171 Latin letter u with double acute
546
+ base uppercase \x0172 \x0173 Latin letter u with ogonek
547
+ base uppercase \x0174 \x0175 Latin letter w with circumflex
548
+ base uppercase \x0176 \x0177 Latin letter y with circumflex
549
+ base uppercase \x0178 \x00ff LATIN LETTER Y WITH DIAERESIS (0x9f)
550
+ uppercase \x0178 2345678 #Latin capital letter Y with DIAERESIS (0x9f)
551
+ base uppercase \x0179 \x017a Latin letter z with acute
552
+ base uppercase \x017b \x017c Latin letter z with dot above
553
+ base uppercase \x017d \x017e LATIN LETTER Z WITH CARON (0x8e)
554
+ base uppercase \x0386 \x03AC Greek letter alpha with tonos
555
+ base uppercase \x0388 \x03AD Greek letter epsilon with tonos
556
+ base uppercase \x0389 \x03AE Greek letter eta with tonos
557
+ base uppercase \x038A \x03AF Greek letter iota with sonos
558
+ base uppercase \x038C \x03CC Greek letter omicron with tonos
559
+ base uppercase \x038E \x03CD Greek letter upsilon with tonos
560
+ base uppercase \x038F \x03CE Greek letter omega with tonos
561
+ base uppercase \x0391 \x03B1 Greek letter alpha
562
+ base uppercase \x0392 \x03B2 Greek letter beta
563
+ base uppercase \x0393 \x03B3 Greek letter gamma
564
+ base uppercase \x0394 \x03B4 Greek letter delta
565
+ base uppercase \x0395 \x03B5 Greek letter epsilon
566
+ base uppercase \x0396 \x03B6 Greek letter zeta
567
+ base uppercase \x0397 \x03B7 Greek letter eta
568
+ base uppercase \x0398 \x03B8 Greek letter theta
569
+ base uppercase \x0399 \x03B9 Greek letter iota
570
+ base uppercase \x039A \x03BA Greek letter kappa
571
+ base uppercase \x039B \x03BB Greek letter lamda
572
+ base uppercase \x039C \x03BC Greek letter Mu
573
+ base uppercase \x039D \x03BD Greek letter Nu
574
+ base uppercase \x039E \x03BE Greek letter Xi
575
+ base uppercase \x039F \x03BF Greek letter Omicron
576
+ base uppercase \x03A0 \x03C0 Greek letter Pi
577
+ base uppercase \x03A1 \x03C1 Greek letter Rho
578
+ base uppercase \x03A3 \x03C3 Greek letter sigma
579
+ base uppercase \x03A4 \x03C4 Greek letter Tau
580
+ base uppercase \x03A5 \x03C5 Greek letter Upsilon
581
+ base uppercase \x03A6 \x03C6 Greek letter Phi
582
+ base uppercase \x03A7 \x03C7 Greek letter Chi
583
+ base uppercase \x03A8 \x03C8 Greek letter Psi
584
+ base uppercase \x03A9 \x03C9 Greek letter Omega
585
+
586
+ # Uppercase letters in computer braille mode
587
+
588
+ comp6 A 17
589
+ comp6 B 127
590
+ comp6 C 147
591
+ comp6 D 1457
592
+ comp6 E 157
593
+ comp6 F 1247
594
+ comp6 G 12457
595
+ comp6 H 1257
596
+ comp6 I 247
597
+ comp6 J 2457
598
+ comp6 K 137
599
+ comp6 L 1237
600
+ comp6 M 1347
601
+ comp6 N 13457
602
+ comp6 O 1357
603
+ comp6 P 12347
604
+ comp6 Q 6-123457
605
+ comp6 R 12357
606
+ comp6 S 2347
607
+ comp6 T 23457
608
+ comp6 U 1367
609
+ comp6 V 12367
610
+ comp6 W 6-24567
611
+ comp6 X 6-13467
612
+ comp6 Y 134567
613
+ comp6 Z 56-13567
614
+ comp6 \x008a 23478
615
+ comp6 \x008c 13578
616
+ comp6 \x008e 56-3467
617
+ comp6 \x00c0 56-123567
618
+ comp6 \x00c1 1235678
619
+ comp6 \x00c2 1678
620
+ comp6 \x00c3 14678
621
+ comp6 \x00c4 34578
622
+ comp6 \x00c5 167
623
+ comp6 \x00c6 3457
624
+ comp6 \x00c7 6-123467
625
+ comp6 \x00c8 6-23467
626
+ comp6 \x00c9 6-1234567
627
+ comp6 \x00ca 6-1267
628
+ comp6 \x00cb 6-12467
629
+ comp6 \x00cc 15678
630
+ comp6 \x00cd 12678
631
+ comp6 \x00ce 6-1467
632
+ comp6 \x00cf 6-124567
633
+ comp6 \x00d0 67
634
+ comp6 \x00d1 1245678
635
+ comp6 \x00d2 124678
636
+ comp6 \x00d3 34678
637
+ comp6 \x00d4 6-14567
638
+ comp6 \x00d5 145678
639
+ comp6 \x00d6 24678
640
+ comp6 \x00d8 2467
641
+ comp6 \x00d9 6-234567
642
+ comp6 \x00da 125678
643
+ comp6 \x00db 6-1567
644
+ comp6 \x00dc 6-12567
645
+ comp6 \x00dd 13478
646
+ comp6 \x00de 1378
647
+ comp6 \x0100 5-17
648
+ comp6 \x0102 5-17
649
+ comp6 \x0104 5-17
650
+ comp6 \x0106 5-147
651
+ comp6 \x0108 5-147
652
+ comp6 \x010a 5-147
653
+ comp6 \x010c 5-147
654
+ comp6 \x010e 5-1457
655
+ comp6 \x0110 5-1457
656
+ comp6 \x0112 5-157
657
+ comp6 \x0114 5-157
658
+ comp6 \x0116 5-157
659
+ comp6 \x0118 5-157
660
+ comp6 \x011a 5-157
661
+ comp6 \x011c 5-12457
662
+ comp6 \x011e 5-12457
663
+ comp6 \x0120 5-12457
664
+ comp6 \x0122 5-12457
665
+ comp6 \x0124 5-1257
666
+ comp6 \x0126 5-1257
667
+ comp6 \x0128 5-247
668
+ comp6 \x012a 5-247
669
+ comp6 \x012c 5-247
670
+ comp6 \x012e 5-247
671
+ comp6 \x0130 5-247
672
+ comp6 \x0132 247-245
673
+ comp6 \x0134 5-2457
674
+ comp6 \x0136 5-137
675
+ comp6 \x0139 5-1237
676
+ comp6 \x013b 5-1237
677
+ comp6 \x013d 5-1237
678
+ comp6 \x013f 5-1237
679
+ comp6 \x0141 5-1237
680
+ comp6 \x0143 5-13457
681
+ comp6 \x0145 5-13457
682
+ comp6 \x0147 5-13457
683
+ comp6 \x014a 5-13457
684
+ comp6 \x014c 5-1357
685
+ comp6 \x014e 5-1357
686
+ comp6 \x0150 5-1357
687
+ comp6 \x0152 13578
688
+ comp6 \x0154 5-12357
689
+ comp6 \x0156 5-12357
690
+ comp6 \x0158 5-12357
691
+ comp6 \x015a 5-2347
692
+ comp6 \x015c 5-2347
693
+ comp6 \x015e 5-2347
694
+ comp6 \x0160 23478
695
+ comp6 \x0162 5-23457
696
+ comp6 \x0164 5-23457
697
+ comp6 \x0166 5-23457
698
+ comp6 \x0168 5-1367
699
+ comp6 \x016a 5-1367
700
+ comp6 \x016c 5-1367
701
+ comp6 \x016e 5-1367
702
+ comp6 \x0170 5-1367
703
+ comp6 \x0172 5-1367
704
+ comp6 \x0174 5-24567
705
+ comp6 \x0176 5-134567
706
+ comp6 \x0178 2345678
707
+ comp6 \x0179 5-13567
708
+ comp6 \x017b 5-13567
709
+ comp6 \x017d 6-3467
710
+ comp6 \x0386 458-5-17
711
+ comp6 \x0388 458-5-157
712
+ comp6 \x0389 458-5-1567
713
+ comp6 \x038A 458-5-247
714
+ comp6 \x038C 458-5-1357
715
+ comp6 \x038E 458-5-1367
716
+ comp6 \x038F 458-5-24567
717
+ comp6 \x0391 458-17
718
+ comp6 \x0392 458-127
719
+ comp6 \x0393 458-12457
720
+ comp6 \x0394 458-1457
721
+ comp6 \x0395 458-157
722
+ comp6 \x0396 458-13567
723
+ comp6 \x0397 458-1567
724
+ comp6 \x0398 458-14567
725
+ comp6 \x0399 458-247
726
+ comp6 \x039A 458-137
727
+ comp6 \x039B 458-1237
728
+ comp6 \x039C 458-1347
729
+ comp6 \x039D 458-13457
730
+ comp6 \x039E 458-13467
731
+ comp6 \x039F 458-1357
732
+ comp6 \x03A0 458-12347
733
+ comp6 \x03A1 458-12357
734
+ comp6 \x03A3 458-2347
735
+ comp6 \x03A4 458-23457
736
+ comp6 \x03A5 458-1367
737
+ comp6 \x03A6 458-1247
738
+ comp6 \x03A7 458-123467
739
+ comp6 \x03A8 458-134567
740
+ comp6 \x03A9 458-24567
741
+
742
+ nofor always A 17
743
+ nofor always B 127
744
+ nofor always C 147
745
+ nofor always D 1457
746
+ nofor always E 157
747
+ nofor always F 1247
748
+ nofor always G 12457
749
+ nofor always H 1257
750
+ nofor always I 247
751
+ nofor always J 2457
752
+ nofor always K 137
753
+ nofor always L 1237
754
+ nofor always M 1347
755
+ nofor always N 13457
756
+ nofor always O 1357
757
+ nofor always P 12347
758
+ nofor always Q 56-123457
759
+ nofor always R 12357
760
+ nofor always S 2347
761
+ nofor always T 23457
762
+ nofor always U 1367
763
+ nofor always V 12367
764
+ nofor always W 56-24567
765
+ nofor always X 56-13467
766
+ nofor always Y 134567
767
+ nofor always Z 56-13567
768
+ nofor always \x00c0 56-123567
769
+ nofor always \x00c1 1235678
770
+ nofor always \x00c2 1678
771
+ nofor always \x00c3 14678
772
+ nofor always \x00c4 34578
773
+ nofor always \x00c5 167
774
+ nofor always \x00c6 3457
775
+ nofor always \x00c7 56-123467
776
+ nofor always \x00c8 56-23467
777
+ nofor always \x00c9 56-1234567
778
+ nofor always \x00ca 56-1267
779
+ nofor always \x00cb 56-12467
780
+ nofor always \x00cc 15678
781
+ nofor always \x00cd 12678
782
+ nofor always \x00ce 56-1467
783
+ nofor always \x00cf 56-124567
784
+ nofor always \x00d0 67
785
+ nofor always \x00d1 1245678
786
+ nofor always \x00d2 124678
787
+ nofor always \x00d3 34678
788
+ nofor always \x00d4 56-14567
789
+ nofor always \x00d5 145678
790
+ nofor always \x00d6 24678
791
+ nofor always \x00d8 2467
792
+ nofor always \x00d9 56-234567
793
+ nofor always \x00da 125678
794
+ nofor always \x00db 56-1567
795
+ nofor always \x00dc 56-12567
796
+ nofor always \x00dd 13478
797
+ nofor always \x00de 1378
798
+ nofor always \x0100 5-17
799
+ nofor always \x0106 5-147
800
+ nofor always \x010e 5-1457
801
+ nofor always \x0112 5-157
802
+ nofor always \x011c 5-12457
803
+ nofor always \x0124 5-1257
804
+ nofor always \x0128 5-247
805
+ nofor always \x0134 5-2457
806
+ nofor always \x0136 5-137
807
+ nofor always \x0139 5-1237
808
+ nofor always \x0143 5-13457
809
+ nofor always \x014c 5-1357
810
+ nofor always \x0152 13578
811
+ nofor always \x0154 5-12357
812
+ nofor always \x0160 5-2347
813
+ nofor always \x0162 5-23457
814
+ nofor always \x0168 5-1367
815
+ nofor always \x0174 5-24567
816
+ nofor always \x0176 5-134567
817
+ nofor always \x0178 2345678
818
+ nofor always \x0179 5-13567
819
+ nofor always \x017d 56-3467
820
+ nofor always \x0386 458-5-17
821
+ nofor always \x0388 458-5-157
822
+ nofor always \x0389 458-5-1567
823
+ nofor always \x038A 458-5-247
824
+ nofor always \x038C 458-5-1357
825
+ nofor always \x038E 458-5-1367
826
+ nofor always \x038F 458-5-24567
827
+ nofor always \x0391 458-17
828
+ nofor always \x0392 458-127
829
+ nofor always \x0393 458-12457
830
+ nofor always \x0394 458-1457
831
+ nofor always \x0395 458-157
832
+ nofor always \x0396 458-13567
833
+ nofor always \x0397 458-1567
834
+ nofor always \x0398 458-14567
835
+ nofor always \x0399 458-247
836
+ nofor always \x039A 458-137
837
+ nofor always \x039B 458-1237
838
+ nofor always \x039C 458-1347
839
+ nofor always \x039D 458-13457
840
+ nofor always \x039E 458-13467
841
+ nofor always \x039F 458-1357
842
+ nofor always \x03A0 458-12347
843
+ nofor always \x03A1 458-12357
844
+ nofor always \x03A3 458-2347
845
+ nofor always \x03A4 458-23457
846
+ nofor always \x03A5 458-1367
847
+ nofor always \x03A6 458-1247
848
+ nofor always \x03A7 458-123467
849
+ nofor always \x03A8 458-134567
850
+ nofor always \x03A9 458-24567
851
+
852
+ ### misc opcodes ###
853
+
854
+ # Emphasis opcodes
855
+ emphclass italic
856
+ emphclass underline
857
+ emphclass bold
858
+
859
+ begemphphrase italic 46
860
+ endemphphrase italic after 46
861
+
862
+ begemphphrase bold 46
863
+ endemphphrase bold after 46
864
+
865
+ begemphphrase underline 46
866
+ endemphphrase underline after 46
867
+
868
+ # special symbols
869
+ hyphen - 36
870
+ letsign 56
871
+ noletsign IQWXZiqwxz\x0149
872
+ noletsignbefore 1234567890
873
+
874
+ capsletter f
875
+ multind f-56 capsletter letsign
876
+ multind 56-f letsign capsletter
877
+ capsnocont
878
+
879
+ # The Danish use of letsign differs somewhat from the LibLouis way.
880
+ # In order to be sure that we are getting a letsign when we want one, we are sometimes getting an overlap.
881
+
882
+ # Ensure that we have letsign between a digit and "st"
883
+ # and nd after a digit is not contracted
884
+ noback context _$d["st"]!$l @56-234-2345
885
+ noback context _$d["st"]~ @56-234-2345
886
+ noback context _$d["nd"]!$l @1345-145
887
+ noback context _$d["nd"]~ @1345-145
888
+ # The following lines are to ensure that we get a letsign between a digit and a single letter.
889
+ noback context $d[]$l!$l @56
890
+ noback context $d[]$l~ @56
891
+
892
+ ### Correct - Forward translation
893
+
894
+ # Ensure that capsnocont does not stretch across dashes
895
+ noback correct $U["-"] "\xf8fe"
896
+
897
+ # Special characters that always need letsigns because they represent contractions
898
+ always \x00a1 56-256 # inverted exclamationmark
899
+
900
+ # Punctuation
901
+ # Ensure word contractions followed by ! back-translate correctly
902
+ postpunc ! 235
903
+
904
+ #Special sequences, urls emails and file names.
905
+ nocont $
906
+ nocont \\ # line cannot end with a backslash
907
+ nocont @
908
+ nocont ://
909
+ nocont www
910
+
911
+ # Remove space between § and numbers.
912
+ noback begnum § 578
913
+ begnum §\s 578
914
+ begnum §§\s 578-578
915
+ always §§ 578-578
916
+
917
+ #Words
918
+ word af 356
919
+ always 'af 4-1-124
920
+ word aldrig 1-35
921
+ word aig =
922
+ word alle 1-15
923
+ begnum ae 56-1-15
924
+ contraction ae
925
+ word allerede 1-123-1235
926
+ begnum alr 56-1-123-1235
927
+ contraction alr
928
+ word alligevel 1-123-1236
929
+ begnum alv 56-1-123-1236
930
+ contraction alv
931
+ word altid 1-2345-145
932
+ begnum atd 56-1-2345-145
933
+ contraction atd
934
+ word altså 1-16
935
+ begnum aå 56-1-16
936
+ contraction aå
937
+ word arbejde 1-12-1456
938
+ word abde =
939
+ word arbejdede 1-12-1456-1456
940
+ word abdede =
941
+ word arbejder 1-12-23456
942
+ word abder =
943
+ word arbejdet 1-12-2346
944
+ word abdet =
945
+ word at 1
946
+
947
+ word betyde 12-2345-1456
948
+ word btde =
949
+ word betyder 12-2345-23456
950
+ word btder =
951
+ word blevet 12-2345
952
+ begnum bt 56-12-2345
953
+ contraction bt
954
+ word blev 12-1236
955
+ begnum bv 56-12-1236
956
+ contraction bv
957
+ word blive 12-3456
958
+ word bve =
959
+ word bliver 12
960
+
961
+ word danmark 145-1345-13
962
+ begnum dnk 56-145-1345-13
963
+ contraction dnk
964
+ word danmarks 145-1345-13-234
965
+ begnum dnks 56-145-1345-13-234
966
+ contraction dnks
967
+ word dansk 145-123456
968
+ word dsk =
969
+ word danske 145-123456-15
970
+ word dske =
971
+ word derefter 23456-1356
972
+ word derst =
973
+ word deres 256
974
+ word derfor 23456-124
975
+ word derf =
976
+ word derigennem 23456-24-12456
977
+ word derige 1456-1235-24-12456
978
+ word dermed 23456-134
979
+ word derm =
980
+ word derned 23456-1246
981
+ word derne =
982
+ word derop 23456-135
983
+ word dero =
984
+ word derover 23456-1346
985
+ word deror =
986
+ word derpå 23456-1234
987
+ word derp =
988
+ word dersom 23456-234
989
+ word ders =
990
+ word dertil 23456-2345
991
+ word dert =
992
+ word derunder 23456-12345
993
+ word derved 23456-1236
994
+ word din 145-1345
995
+ begnum dn 56-145-1345
996
+ contraction dn
997
+ word disse 145-234
998
+ begnum ds 56-145-234
999
+ contraction ds
1000
+ word dit 145-2345
1001
+ begnum dt 56-145-2345
1002
+ contraction dt
1003
+ word du 145
1004
+
1005
+ word efter 1356
1006
+ word eftersom 1356-234
1007
+ word sts =
1008
+ word eller 15
1009
+ word endnu 15-136
1010
+ begnum eu 56-15-136
1011
+ contraction eu
1012
+
1013
+ word faktisk 124-13-2345
1014
+ begnum fkt 56-124-13-2345
1015
+ contraction fkt
1016
+ word fik 124-13
1017
+ begnum fk 56-124-13
1018
+ contraction fk
1019
+ word forbi 124-12
1020
+ begnum fb 56-124-12
1021
+ contraction fb
1022
+ word fordi 124-145
1023
+ begnum fd 56-124-145
1024
+ contraction fd
1025
+ word forskellige 124-123456-15
1026
+ word fske =
1027
+ word forskelligt 124-123456-2345
1028
+ word fskt =
1029
+ word forskellig 124-123456
1030
+ word fsk =
1031
+ word for 124
1032
+ word fortælle 124-1256
1033
+ word fte =
1034
+ word fortæller 124-2345-156
1035
+ word fter =
1036
+ word fra 235
1037
+ word første 124-1356-15
1038
+ word fste =
1039
+ word først 124-1356
1040
+ word fst =
1041
+ word før 246
1042
+
1043
+ word gang 1245-1245
1044
+ begnum gg 56-1245-1245
1045
+ contraction gg
1046
+ word gange 1245-12456
1047
+ word gge =
1048
+ word gangene 1245-1245-15-1246
1049
+ word ganske 1245-123456
1050
+ word gsk =
1051
+ word gennem 12456
1052
+ word gik 1245-13
1053
+ begnum gk 56-1245-13
1054
+ contraction gk
1055
+ word gjorde 1245-1456
1056
+ word gde =
1057
+ word gør 1245
1058
+
1059
+ word ham 236
1060
+ word hans 13456-234
1061
+ begnum ys 56-13456-234
1062
+ contraction ys
1063
+ word han 13456
1064
+ word har 125
1065
+ word havde 125-1456
1066
+ word hde =
1067
+ word have 125-3456
1068
+ word hve =
1069
+ word hele 125-123-15
1070
+ begnum hle 56-125-123-15
1071
+ contraction hle
1072
+ word heller 125-123-1235
1073
+ begnum hlr 56-125-123-1235
1074
+ contraction hlr
1075
+ word helt 125-2345
1076
+ begnum ht 6-125-2345
1077
+ contraction ht
1078
+ word hendes 125-234
1079
+ begnum hs 56-125-234
1080
+ contraction hs
1081
+ word hende 125-145
1082
+ begnum hd 56-125-145
1083
+ contraction hd
1084
+ word hjælpe 125-1234-15
1085
+ begnum hpe 56-125-1234-15
1086
+ contraction hpe
1087
+ word hjælpende 125-1234-15-1345-1456 # *** temporary patch
1088
+ word hjælpendes 125-1234-15-1345-1456-234 # *** Temporary patch
1089
+ word hjælper 125-1234-156
1090
+ word hper =
1091
+ word hun 136
1092
+ word hvad 2456
1093
+ word hvilke 2456-13-15
1094
+ word hvke =
1095
+ word hvilken 2456-13-126
1096
+ word hvken =
1097
+ word hvilket 2456-13-346
1098
+ word hvket =
1099
+ word hvis 2456-234
1100
+ word hvs =
1101
+ word hvordan 34-1
1102
+ word hvora 34-56-1
1103
+ word hvorefter 34-1356
1104
+ word hvorst 34-234-2345
1105
+ word hvorfor 34-124
1106
+ word hvorf 34-56-124
1107
+ word hvorigennem 34-24-12456
1108
+ word hvorledes 34-15
1109
+ word hvore 34-56-15
1110
+ word hvormed 34-134
1111
+ word hvorm 34-56-134
1112
+ word hvornår 34-1345
1113
+ word hvorn 34-56-1345
1114
+ word hvorover 34-1346
1115
+ word hvoror 34-135-1235
1116
+ word hvorpå 34-1234
1117
+ word hvorp 34-56-1234
1118
+ word hvortil 34-2345
1119
+ word hvort 34-56-2345
1120
+ word hvorunder 34-12345
1121
+ word hvornd 34-1345-145
1122
+ word hvorved 34-1236
1123
+ word hvorv 34-56-1236
1124
+ word hvor 34
1125
+
1126
+ word igennem 24-12456
1127
+ word ige =
1128
+ word igen 35
1129
+ word (igen) 236-24-1245-126-356
1130
+ word ikke 24-13
1131
+ begnum ik 56-24-13
1132
+ contraction ik
1133
+ word ingen 24-126
1134
+ word ien =
1135
+ word ingenting 24-24
1136
+ begnum ii 56-24-24
1137
+ contraction ii
1138
+
1139
+ word jeg 245
1140
+ word jeg) 245-56-356
1141
+
1142
+ word kan 13
1143
+ word kommer 13-156
1144
+ word ker =
1145
+ word kommet 13-346
1146
+ word ket =
1147
+ word komme 13-146
1148
+ word kme =
1149
+ word kom 13-134
1150
+ begnum km 56-13-134
1151
+ contraction km
1152
+ word kunne 13-1246
1153
+ word kne =
1154
+ word kvinde 13-1236-1456
1155
+ word kvde =
1156
+ word kvindes 13-1236-1456-234
1157
+ word kvdes =
1158
+ word kvinden 13-1236-12346
1159
+ word kvden =
1160
+ word kvindens 13-1236-12346-234
1161
+ word kvdens =
1162
+ word kvinder 13-1236-23456
1163
+ word kvder =
1164
+ word kvinders 13-1236-23456-234
1165
+ word kvders =
1166
+ word kvinderne 13-1236-23456-1246
1167
+ word kvderne =
1168
+ word kvindernes 13-1236-23456-1246-234
1169
+ word kvdernes =
1170
+
1171
+ word lang 123-1245
1172
+ begnum lg 56-123-1245
1173
+ contraction lg
1174
+ word lange 123-12456
1175
+ begnum lge 56-123-12456
1176
+ contraction lge
1177
+ word langt 123-1245-2345
1178
+ begnum lgt 56-123-1245-2345
1179
+ contraction lgt
1180
+ word lidt 123-2345
1181
+ begnum lt 56-123-2345
1182
+ contraction lt
1183
+ word ligesom 123-234
1184
+ begnum ls 56-123-234
1185
+ contraction ls
1186
+ word lige 123
1187
+ word lille 123-123
1188
+ begnum ll 56-123-123
1189
+ contraction ll
1190
+
1191
+ word mange 134-12456
1192
+ word mge =
1193
+ word med 134
1194
+ word megen 146-126
1195
+ word meen =
1196
+ word meget 146-346
1197
+ word meet =
1198
+ word mellem 146-134
1199
+ word mem =
1200
+ word men 146
1201
+ word menneske 146-123456-15
1202
+ word meske =
1203
+ word menneskes 146-123456-15-234
1204
+ word meskes =
1205
+ word menneskene 146-123456-15-1246
1206
+ word meskene =
1207
+ word menneskenes 146-123456-15-1246-234
1208
+ word meskenes =
1209
+ word mennesker 146-123456-156
1210
+ word meskr =
1211
+ word menneskers 146-123456-156-234
1212
+ word meskrs =
1213
+ word mennesket 146-123456-346
1214
+ word meskt =
1215
+ word menneskets 146-123456-346-234
1216
+ word meskts =
1217
+ word min 134-1345
1218
+ begnum mn 56-134-1345
1219
+ contraction mn
1220
+ word mit 134-2345
1221
+ begnum mt 56-134-2345
1222
+ contraction mt
1223
+ word mulighed 134-123-125
1224
+ begnum mlh 56-134-123-125
1225
+ contraction mlh
1226
+ word muligheds 134-123-125-234
1227
+ begnum mlhs 56-134-123-125-234
1228
+ contraction mlhs
1229
+ word muligheden 134-123-125-126
1230
+ begnum mlhen 56-134-123-125-15-1345
1231
+ contraction mlhen
1232
+ word mulighedens 134-123-125-126-234
1233
+ begnum mlhens 56-134-123-125-15-1345-234
1234
+ contraction mlhens
1235
+ word muligheder 134-123-125-156
1236
+ word mlhder =
1237
+ word muligheders 134-123-125-156-234
1238
+ word mlhders =
1239
+ word mulighederne 134-123-125-156-1246
1240
+ word mlhderne =
1241
+ word mulighedernes 134-123-125-156-1246-234
1242
+ word mlhdernes =
1243
+ word måske 134-123456
1244
+ word msk =
1245
+ word måtte 134-1256
1246
+ word mte =
1247
+
1248
+ word naturlig 1345-2345-123
1249
+ begnum ntl 56-1345-2345-123
1250
+ contraction ntl
1251
+ word naturligt 1345-2345-123-2345
1252
+ begnum ntlt 56-1345-2345-123-2345
1253
+ contraction ntlt
1254
+ word naturligvis 1345-2345-1236
1255
+ begnum ntv 56-1345-2345-1236
1256
+ contraction ntv
1257
+ word ned 1246
1258
+ word nogen 1345-1345
1259
+ begnum nn 56-1345-1345
1260
+ contraction nn
1261
+ word nogensinde 1345-234-1456
1262
+ word nsde =
1263
+ word noget 1345-2345
1264
+ begnum nt 56-1345-2345
1265
+ contraction nt
1266
+ word nogle 1345-123-15
1267
+ begnum nle 56-1345-123-15
1268
+ contraction nle
1269
+ word næste 1345-1256
1270
+ word nte =
1271
+ word næsten 1345-126
1272
+ word nen =
1273
+ word når 1345
1274
+
1275
+ word også 14-16
1276
+ begnum cå 56-14-16
1277
+ contraction cå
1278
+ word og 14
1279
+ word omkring 135-134-13
1280
+ begnum omk 56-135-134-13
1281
+ contraction omk
1282
+ word op 135
1283
+ word or =
1284
+ word organisation 1346-1245-234
1285
+ word orgs =
1286
+ word organisations 1346-1245-234-234
1287
+ word orgss =
1288
+ word organisationen 1346-1245-234-126
1289
+ word orgsen =
1290
+ word organisationens 1346-1245-234-126-234
1291
+ word orgsens =
1292
+ word organisationer 1346-1245-234-156
1293
+ word orgser =
1294
+ word organisationers 1346-1245-234-156-234
1295
+ word orgsers =
1296
+ word organisationerne 1346-1245-234-156-1246
1297
+ word orgserne =
1298
+ word organisationernes 1346-1245-234-156-1246-234
1299
+ word orgsernes =
1300
+ word over 1346
1301
+
1302
+ word problem 1234-12
1303
+ begnum pb 56-1234-12
1304
+ contraction pb
1305
+ word problems 1234-12-234
1306
+ begnum pbs 56-1234-12-234
1307
+ contraction pb
1308
+ word problemet 1234-12-346
1309
+ word pbet =
1310
+ word problemets 1234-12-346-234
1311
+ word pbets =
1312
+ word problemer 1234-12-156
1313
+ word pber =
1314
+ word problemers 1234-12-156-234
1315
+ word pbers =
1316
+ word problemerne 1234-12-156-1246
1317
+ word pberne =
1318
+ word problemernes 1234-12-156-1246-234
1319
+ word pbernes =
1320
+ word punktskrift 1234-1345-123456
1321
+ word pnsk =
1322
+ word på 1234
1323
+
1324
+ word ret 12356
1325
+ word rigtige 1235-12456
1326
+ word rge =
1327
+ word rigtigt 1235-2345
1328
+ begnum rt 56-1235-2345
1329
+ contraction rt
1330
+ word rigtig 1235
1331
+
1332
+ word sagde 234-1456
1333
+ word sammen 234-134
1334
+ begnum sm 56-234-134
1335
+ contraction sm
1336
+ word samme 234-146
1337
+ word sme =
1338
+ word samtidig 234-134-2345
1339
+ begnum smt 56-234-134-2345
1340
+ contraction smt
1341
+ word selvfølgelig 234-1236-124
1342
+ begnum svf 56-234-1236-124
1343
+ contraction svf
1344
+ word selv 234-1236
1345
+ begnum sv 56-234-1236
1346
+ contraction sv
1347
+ word sidste 234-1356-15
1348
+ word sste =
1349
+ word sidst 234-1356
1350
+ word sst =
1351
+ word sin 234-1345
1352
+ begnum sn 56-234-1345
1353
+ contraction sn
1354
+ word sit 234-2345
1355
+ begnum st 56-234-2345
1356
+ contraction st
1357
+ word skal 123456
1358
+ word skulle 123456-123-15
1359
+ word skle =
1360
+ word snart 234-1235
1361
+ begnum sr 56-234-1235
1362
+ contraction sr
1363
+ word som 234
1364
+ word spørgsmål 234-1234-134
1365
+ begnum spm 56-234-1234-134
1366
+ contraction spm
1367
+ word spørgsmåls 234-1234-134-234
1368
+ begnum spms 56-234-1234-134-234
1369
+ contraction spms
1370
+ word spørgsmålet 234-1234-134-346
1371
+ word spmet =
1372
+ word spørgsmålets 234-1234-134-346-234
1373
+ word spmets =
1374
+ word spørgsmålene 234-1234-134-1246
1375
+ word spmne =
1376
+ word spørgsmålenes 234-1234-134-1246-234
1377
+ word spmnes =
1378
+ word stadig 1356-1245
1379
+ word stg =
1380
+ word sådan 16-1
1381
+ begnum åa 56-16-1
1382
+ contraction åa
1383
+ word således 16-15
1384
+ begnum åe 56-16-15
1385
+ contraction åe
1386
+ word så 16
1387
+
1388
+ word tid 2345-145
1389
+ begnum td 56-2345-145
1390
+ contraction td
1391
+ word tidlig 2345-145-123
1392
+ begnum tdl 56-2345-145-123
1393
+ contraction tdl
1394
+ word tidlige 2345-145-123-12456
1395
+ word tdlge =
1396
+ word tidligere 2345-145-123-12356
1397
+ word tdlre =
1398
+ word tidligst 2345-145-123-1356
1399
+ word tdlst =
1400
+ word tilbage 2345-12
1401
+ begnum tb 56-2345-12
1402
+ contraction tb
1403
+ word tilfælde 2345-124
1404
+ begnum tf 56-2345-124
1405
+ contraction tf
1406
+ word til 2345
1407
+
1408
+ word under 12345
1409
+
1410
+ word vanskelig 1236-123456
1411
+ word vsk =
1412
+ word vanskelige 1236-123456-15
1413
+ word vske =
1414
+ word vanskeligt 1236-123456-2345
1415
+ word vskt =
1416
+ word var 3456
1417
+ word ved 1236
1418
+ word vidste 1236-1356-15
1419
+ word vste =
1420
+ word ville 1236-123-15
1421
+ begnum vle 56-1236-123-15
1422
+ contraction vle
1423
+ word vil 1236-123
1424
+ begnum vl 56-1236-123
1425
+ contraction vl
1426
+ word virkelig 1236-1235-13
1427
+ begnum vrk 56-1236-1235-13
1428
+ contraction vrk
1429
+ word været 1236-2345
1430
+ begnum vt 56-1236-2345
1431
+ contraction vt
1432
+ word være 345
1433
+
1434
+
1435
+ word øjeblik 246-245-12
1436
+ begnum øjb 56-246-245-12
1437
+ contraction øjb
1438
+
1439
+ #Part words and words
1440
+ begword dansk 145-123456
1441
+ begword dsk =
1442
+ nocross always den 12346
1443
+ nocross always der 23456
1444
+ nocross always det 2346
1445
+ nocross always de 1456
1446
+ nocross always en 126
1447
+ nocross always er 156
1448
+ nocross always et 346
1449
+ nocross begword gang 1245-1245
1450
+ begword gg 56-1245-1245
1451
+ nocross begword gange 1245-1-1345-12456 # *** temporary patch
1452
+ nocross partword ge 12456
1453
+ begword hjælpe 125-1234-15
1454
+ nocross partword hv 2456
1455
+ nocross partword hvor 34
1456
+ nocross partword ig 35
1457
+ begword kvinde 13-1236-1456
1458
+ begword kvde =
1459
+ nocross partword me 146
1460
+ begword menneske 146-123456-15
1461
+ begword meske =
1462
+ nocross partword nd 12345
1463
+ nocross partword ne 1246
1464
+ nocross partword or 1346
1465
+ begword organisation 1346-1245-234
1466
+ begword orgs =
1467
+ begword problem 1234-12
1468
+ begword pb 56-1234-12
1469
+ nocross partword re 12356
1470
+ nocross partword sk 123456
1471
+ nocross partword st 1356
1472
+ nocross always te 1256
1473
+ begword virkelig 1236-1235-13
1474
+ nocross partword ve 3456
1475
+
1476
+ nofor always www 2456-2456-2456 # does not work forward because of nocont
1477
+
1478
+ #special cases with dropped signs
1479
+ # which can be both punctuations and contractions.
1480
+
1481
+ always fra! 124-1235-1-235
1482
+ always !fra 235-124-1235-1
1483
+ always !! 235-235
1484
+ always !!! 235-235-235
1485
+ always "fra" 2356-124-1235-1-2356
1486
+ after punctuation always ! 56-235
1487
+ always 'af 4-1-124
1488
+
1489
+ always \s! 0-56-235
1490
+ prepunc ! 56-235
1491
+ nofor always ! 56-235
1492
+ noback context `["!"] @56-235
1493
+
1494
+
1495
+ # Ensure no one-letter word contraction before or after a dash
1496
+ prfword -af 36-1-124
1497
+ sufword af- 1-124-36
1498
+ prfword -at 36-1-2345
1499
+ sufword at- 1-2345-36
1500
+ prfword -deres 36-1456-12356-234
1501
+ sufword deres- 1456-12356-234-36
1502
+ prfword -du 36-145-136
1503
+ sufword du- 145-136-36
1504
+ prfword -efter 36-15-124-2345-156
1505
+ sufword efter- 15-124-2345-156-36
1506
+ prfword -for 36-124-1346
1507
+ sufword for- 124-1346-36
1508
+ prfword -fra 36-124-1235-1
1509
+ sufword fra- 124-1235-1-36
1510
+ prfword -gennem 36-1245-126-1246-134
1511
+ sufword gennem- 1245-126-1246-134-36
1512
+ prfword -ham 36-125-1-134
1513
+ sufword ham- 125-1-134-36
1514
+ prfword -han 36-125-1-1345
1515
+ sufword han- 125-1-1345-36
1516
+ prfword -har 36-125-1-1235
1517
+ sufword har- 125-1-1235-36
1518
+ prfword -hun 36-125-136-1345
1519
+ sufword hun- 125-136-1345-36
1520
+ prfword -kan 36-13-1-1345
1521
+ sufword kan- 13-1-1345-36
1522
+ prfword -lige 36-123-24-12456
1523
+ sufword lige- 123-24-12456-36
1524
+ prfword -med 36-146-145
1525
+ sufword med- 146-145-36
1526
+ prfword -men 36-134-126
1527
+ sufword men- 134-126-36
1528
+ prfword -ned 36-1246-145
1529
+ sufword ned- 1246-145-36
1530
+ prfword -når 36-1345-16-1235
1531
+ sufword når- 1345-16-1235-36
1532
+ prfword -og 36-135-1245
1533
+ sufword og- 135-1245-36
1534
+ prfword -op 36-135-1234
1535
+ sufword op- 135-1234-36
1536
+ prfword -over 36-135-1236-156
1537
+ sufword over- 135-1236-156-36
1538
+ prfword -på 36-1234-16
1539
+ sufword på- 1234-16-36
1540
+ prfword -ret 36-1235-346
1541
+ sufword ret- 1235-346-36
1542
+ prfword -rigtig 36-1235-35-2345-35
1543
+ sufword rigtig- 1235-35-2345-35-36
1544
+ prfword -skal 36-123456-1-123
1545
+ sufword skal- 123456-1-123-36
1546
+ prfword -som 36-234-135-134
1547
+ sufword som- 234-135-134-36
1548
+ prfword -så 36-234-16
1549
+ sufword så- 234-16-36
1550
+ prfword -til 36-2345-24-123
1551
+ sufword til- 2345-24-123-36
1552
+ prfword -under 36-136-1345-23456
1553
+ sufword under- 136-1345-23456-36
1554
+ prfword -ved 36-1236-15-145
1555
+ sufword ved- 1236-15-145-36
1556
+ prfword -være 36-1236-345-12356
1557
+ sufword være- 1236-345-12356-36
1558
+
1559
+ # *** patches for various Liblouis bugs
1560
+ # this file will be removed when the bugs are fixed
1561
+
1562
+ nofor always a 56-1
1563
+ nofor always b 56-12
1564
+ nofor always c 56-14
1565
+ nofor always d 56-145
1566
+ nofor always e 56-15
1567
+ nofor always f 56-124
1568
+ nofor always g 56-1245
1569
+ nofor always h 56-125
1570
+ nofor always j 56-245
1571
+ nofor always k 56-13
1572
+ nofor always l 56-123
1573
+ nofor always m 56-134
1574
+ nofor always n 56-1345
1575
+ nofor always o 56-135
1576
+ nofor always p 56-1234
1577
+ nofor always q 56-12345
1578
+ nofor always r 56-1235
1579
+ nofor always s 56-234
1580
+ nofor always t 56-2345
1581
+ nofor always u 56-136
1582
+ nofor always v 56-1236
1583
+ nofor always w 56-2456
1584
+ nofor always x 56-1346
1585
+ nofor always y 56-13456
1586
+ nofor always z 56-1356
1587
+ nofor always æ 56-345
1588
+ nofor always ø 56-246
1589
+ nofor always å 56-16
1590
+
1591
+ nofor always A 56-17
1592
+ nofor always B 56-127
1593
+ nofor always C 56-147
1594
+ nofor always D 56-1457
1595
+ nofor always E 56-157
1596
+ nofor always F 56-1247
1597
+ nofor always G 56-12457
1598
+ nofor always H 56-1257
1599
+ nofor always J 56-2457
1600
+ nofor always K 56-137
1601
+ nofor always L 56-1237
1602
+ nofor always M 56-1347
1603
+ nofor always N 56-13457
1604
+ nofor always O 56-1357
1605
+ nofor always P 56-12347
1606
+ nofor always Q 56-123457
1607
+ nofor always R 56-12357
1608
+ nofor always S 56-2347
1609
+ nofor always T 56-23457
1610
+ nofor always U 56-1367
1611
+ nofor always V 56-12367
1612
+ nofor always W 56-24567
1613
+ nofor always X 56-13467
1614
+ nofor always Y 56-134567
1615
+ nofor always Z 56-13567
1616
+ nofor always Æ 56-3457
1617
+ nofor always Ø 56-2467
1618
+ nofor always Å 56-167
1619
+
1620
+ # if a word contraction is followed by a punctuation and another word immediately after,
1621
+ # The contracted word before the punctuation will back-translate as its components
1622
+ attribute wordlimit /,!.:’()?"'\x00ab_\x201d\x0094\x2019\x0092\x00bb
1623
+ nofor before wordlimit begword af 356
1624
+ nofor before wordlimit begword aldrig 1-35
1625
+ nofor before wordlimit begword alle 1-15
1626
+ nofor before wordlimit begword allerede 1-123-1235
1627
+ nofor before wordlimit begword alligevel 1-123-1236
1628
+ nofor before wordlimit begword altid 1-2345-145
1629
+ nofor before wordlimit begword altså 1-16
1630
+ nofor before wordlimit begword arbejde 1-12-1456
1631
+ nofor before wordlimit begword arbejdede 1-12-1456-1456
1632
+ nofor before wordlimit begword arbejder 1-12-23456
1633
+ nofor before wordlimit begword arbejdet 1-12-2346
1634
+ nofor before wordlimit begword at 1
1635
+
1636
+ nofor before wordlimit begword betyde 12-2345-1456
1637
+ nofor before wordlimit begword betyder 12-2345-23456
1638
+ nofor before wordlimit begword blevet 12-2345
1639
+ nofor before wordlimit begword blev 12-1236
1640
+ nofor before wordlimit begword blive 12-3456
1641
+ nofor before wordlimit begword bve 12-1236-15
1642
+ nofor before wordlimit begword bliver 12
1643
+
1644
+ nofor before wordlimit begword danmark 145-1345-13
1645
+ nofor before wordlimit begword danmarks 145-1345-13-234
1646
+ nofor before wordlimit begword dansk 145-123456
1647
+ nofor before wordlimit begword derefter 23456-1356
1648
+ nofor before wordlimit begword derst =
1649
+ nofor before wordlimit begword deres 256
1650
+ nofor before wordlimit begword derfor 23456-124
1651
+ nofor before wordlimit begword derf =
1652
+ nofor before wordlimit begword derigennem 23456-24-12456
1653
+ nofor before wordlimit begword derige 1456-1235-24-12456
1654
+ nofor before wordlimit begword dermed 23456-134
1655
+ nofor before wordlimit begword derm =
1656
+ nofor before wordlimit begword derned 23456-1246
1657
+ nofor before wordlimit begword derne =
1658
+ nofor before wordlimit begword derop 23456-135
1659
+ nofor before wordlimit begword dero =
1660
+ nofor before wordlimit begword derover 23456-1346
1661
+ nofor before wordlimit begword deror =
1662
+ nofor before wordlimit begword derpå 23456-1234
1663
+ nofor before wordlimit begword derp =
1664
+ nofor before wordlimit begword dersom 23456-234
1665
+ nofor before wordlimit begword ders =
1666
+ nofor before wordlimit begword dertil 23456-2345
1667
+ nofor before wordlimit begword dert =
1668
+ nofor before wordlimit begword derunder 23456-12345
1669
+ nofor before wordlimit begword derved 23456-1236
1670
+ nofor before wordlimit begword din 145-1345
1671
+ nofor before wordlimit begword disse 145-234
1672
+ nofor before wordlimit begword dit 145-2345
1673
+ nofor before wordlimit begword du 145
1674
+
1675
+ nofor before wordlimit begword efter 1356
1676
+ nofor before wordlimit begword eftersom 1356-234
1677
+ nofor before wordlimit begword eller 15
1678
+ nofor before wordlimit begword endnu 15-136
1679
+
1680
+ nofor before wordlimit begword faktisk 124-13-2345
1681
+ nofor before wordlimit begword fik 124-13
1682
+ nofor before wordlimit begword forbi 124-12
1683
+ nofor before wordlimit begword fordi 124-145
1684
+ nofor before wordlimit begword forskellige 124-123456-15
1685
+ nofor before wordlimit begword fske =
1686
+ nofor before wordlimit begword forskelligt 124-123456-2345
1687
+ nofor before wordlimit begword fskt =
1688
+ nofor before wordlimit begword forskellig 124-123456
1689
+ nofor before wordlimit begword fsk =
1690
+ nofor before wordlimit begword for 124
1691
+ nofor before wordlimit begword fortælle 124-1256
1692
+ nofor before wordlimit begword fortæller 124-2345-156
1693
+ nofor before wordlimit begword fra 235
1694
+ nofor before wordlimit begword første 124-1356-15
1695
+ nofor before wordlimit begword først 124-1356
1696
+ nofor before wordlimit begword før 246
1697
+
1698
+ nofor before wordlimit begword gang 1245-1245
1699
+ nofor before wordlimit begword gange 1245-12456
1700
+ nofor before wordlimit begword ganske 1245-123456
1701
+ nofor before wordlimit begword gennem 12456
1702
+ nofor before wordlimit begword ge =
1703
+ nofor before wordlimit begword gik 1245-13
1704
+ nofor before wordlimit begword gør 1245
1705
+
1706
+ nofor before wordlimit begword ham 236
1707
+ nofor before wordlimit begword hans 13456-234
1708
+ nofor before wordlimit begword han 13456
1709
+ nofor before wordlimit begword har 125
1710
+ nofor before wordlimit begword havde 125-1456
1711
+ nofor before wordlimit begword hde =
1712
+ nofor before wordlimit begword have 125-3456
1713
+ nofor before wordlimit begword hve =
1714
+ nofor before wordlimit begword hele 125-123-15
1715
+ nofor before wordlimit begword heller 125-123-1235
1716
+ nofor before wordlimit begword helt 125-2345
1717
+ nofor before wordlimit begword hendes 125-234
1718
+ nofor before wordlimit begword hende 125-145
1719
+ nofor before wordlimit begword hjælpe 125-1234-15
1720
+ nofor before wordlimit begword hjælper 125-1234-156
1721
+ nofor before wordlimit begword hun 136
1722
+ nofor before wordlimit begword hvad 2456
1723
+ nofor before wordlimit begword hv =
1724
+ nofor before wordlimit begword hvilke 2456-13
1725
+ nofor before wordlimit begword hvilken 2456-13-126
1726
+ nofor before wordlimit begword hvilket 2456-13-346
1727
+ nofor before wordlimit begword hvis 2456-234
1728
+ nofor before wordlimit begword hvs =
1729
+ nofor before wordlimit begword hvordan 34-1
1730
+ nofor before wordlimit begword hvorefter 34-1356
1731
+ nofor before wordlimit begword hvorfor 34-124
1732
+ nofor before wordlimit begword hvorigennem 34-24-12456
1733
+ nofor before wordlimit begword hvorledes 34-15
1734
+ nofor before wordlimit begword hvormed 34-134
1735
+ nofor before wordlimit begword hvornår 34-1345
1736
+ nofor before wordlimit begword hvorover 34-1346
1737
+ nofor before wordlimit begword hvorpå 34-1234
1738
+ nofor before wordlimit begword hvortil 34-2345
1739
+ nofor before wordlimit begword hvorunder 34-12345
1740
+ nofor before wordlimit begword hvorved 34-1236
1741
+ nofor before wordlimit begword hvor 34
1742
+
1743
+ nofor before wordlimit begword igennem 24-12456
1744
+ nofor before wordlimit begword ige =
1745
+ nofor before wordlimit begword igen 35
1746
+ nofor before wordlimit begword ig =
1747
+ nofor before wordlimit begword ikke 24-13
1748
+ nofor before wordlimit begword ingen 24-126
1749
+ nofor before wordlimit begword ingenting 24-24
1750
+
1751
+ nofor before wordlimit begword jeg 245
1752
+
1753
+ nofor before wordlimit begword kan 13
1754
+ nofor before wordlimit begword kommer 13-156
1755
+ nofor before wordlimit begword ker =
1756
+ nofor before wordlimit begword kommet 13-346
1757
+ nofor before wordlimit begword ket =
1758
+ nofor before wordlimit begword komme 13-146
1759
+ nofor before wordlimit begword kme =
1760
+ nofor before wordlimit begword kom 13-134
1761
+ nofor before wordlimit begword kunne 13-1246
1762
+ nofor before wordlimit begword kne =
1763
+ nofor before wordlimit begword kvinde 13-1236-1456
1764
+ word kvindes 13-1236-1456-234
1765
+ nofor before wordlimit begword kvinden 13-1236-12346
1766
+ nofor before wordlimit begword kvindens 13-1236-12346-234
1767
+ nofor before wordlimit begword kvinder 13-1236-23456
1768
+ nofor before wordlimit begword kvinders 13-1236-23456-234
1769
+ nofor before wordlimit begword kvinderne 13-1236-23456-1246
1770
+ nofor before wordlimit begword kvindernes 13-1236-23456-1246-234
1771
+
1772
+ nofor before wordlimit begword lang 123-1245
1773
+ nofor before wordlimit begword lange 123-12456
1774
+ nofor before wordlimit begword langt 123-1245-2345
1775
+ nofor before wordlimit begword lidt 123-2345
1776
+ nofor before wordlimit begword ligesom 123-234
1777
+ nofor before wordlimit begword lige 123
1778
+ nofor before wordlimit begword lille 123-123
1779
+
1780
+ nofor before wordlimit begword mange 134-12456
1781
+ nofor before wordlimit begword mge =
1782
+ nofor before wordlimit begword med 134
1783
+ nofor before wordlimit begword megen 146-126
1784
+ nofor before wordlimit begword meen =
1785
+ nofor before wordlimit begword meget 146-346
1786
+ nofor before wordlimit begword meet =
1787
+ nofor before wordlimit begword mellem 146-134
1788
+ nofor before wordlimit begword mem =
1789
+ nofor before wordlimit begword men 146
1790
+ nofor before wordlimit begword me =
1791
+ nofor before wordlimit begword menneske 146-123456
1792
+ nofor before wordlimit begword menneskes 146-123456-234
1793
+ nofor before wordlimit begword menneskene 146-123456-15-1246
1794
+ nofor before wordlimit begword menneskenes 146-123456-15-1246-234
1795
+ nofor before wordlimit begword mennesker 146-123456-156
1796
+ nofor before wordlimit begword menneskers 146-123456-156-234
1797
+ nofor before wordlimit begword mennesket 146-123456-346
1798
+ nofor before wordlimit begword menneskets 146-123456-346-234
1799
+ nofor before wordlimit begword min 134-1345
1800
+ nofor before wordlimit begword mit 134-2345
1801
+ nofor before wordlimit begword mulighed 134-123-125
1802
+ nofor before wordlimit begword muligheds 134-123-125-234
1803
+ nofor before wordlimit begword muligheden 134-123-125-126
1804
+ nofor before wordlimit begword mulighedens 134-123-125-126-234
1805
+ nofor before wordlimit begword muligheder 134-123-125-156
1806
+ nofor before wordlimit begword muligheders 134-123-125-156-234
1807
+ nofor before wordlimit begword mulighederne 134-123-125-156-1246
1808
+ nofor before wordlimit begword mulighedernes 134-123-125-156-1246-234
1809
+ nofor before wordlimit begword måske 134-123456
1810
+ nofor before wordlimit begword msk =
1811
+ nofor before wordlimit begword måtte 134-1256
1812
+ nofor before wordlimit begword mte =
1813
+
1814
+ nofor before wordlimit begword naturlig 1345-2345-123
1815
+ nofor before wordlimit begword naturligt 1345-2345-123-2345
1816
+ nofor before wordlimit begword naturligvis 1345-2345-1236
1817
+ nofor before wordlimit begword nd =
1818
+ nofor before wordlimit begword ned 1246
1819
+ nofor before wordlimit begword ne =
1820
+ nofor before wordlimit begword nogen 1345-1345
1821
+ nofor before wordlimit begword nogensinde 1345-234-1456
1822
+ nofor before wordlimit begword noget 1345-2345
1823
+ nofor before wordlimit begword nogle 1345-123-15
1824
+ nofor before wordlimit begword næste 1345-1256
1825
+ nofor before wordlimit begword næsten 1345-126
1826
+ nofor before wordlimit begword når 1345
1827
+
1828
+ nofor before wordlimit begword også 14-16
1829
+ nofor before wordlimit begword og 14
1830
+ nofor before wordlimit begword omkring 135-134-13
1831
+ nofor before wordlimit begword op 135
1832
+ nofor before wordlimit begword or =
1833
+ nofor before wordlimit begword organisation 1346-1245-234
1834
+ nofor before wordlimit begword organisations 1346-1245-234-234
1835
+ nofor before wordlimit begword organisationen 1346-1245-234-126
1836
+ nofor before wordlimit begword organisationens 1346-1245-234-126-234
1837
+ nofor before wordlimit begword organisationer 1346-1245-234-156
1838
+ nofor before wordlimit begword organisationers 1346-1245-234-156-234
1839
+ nofor before wordlimit begword organisationerne 1346-1245-234-156-1246
1840
+ nofor before wordlimit begword organisationernes 1346-1245-234-156-1246-234
1841
+ nofor before wordlimit begword over 1346
1842
+
1843
+ nofor before wordlimit begword problem 1234-12
1844
+ nofor before wordlimit begword problems 1234-12-234
1845
+ nofor before wordlimit begword problemet 1234-12-346
1846
+ nofor before wordlimit begword problemets 1234-12-346-234
1847
+ nofor before wordlimit begword problemer 1234-12-156
1848
+ nofor before wordlimit begword problemers 1234-12-156-234
1849
+ nofor before wordlimit begword problemerne 1234-12-156-1246
1850
+ nofor before wordlimit begword problemernes 1234-12-156-1246-234
1851
+ nofor before wordlimit begword punktskrift 1234-1345-123456
1852
+ nofor before wordlimit begword på 1234
1853
+
1854
+ nofor before wordlimit begword ret 12356
1855
+ nofor before wordlimit begword re 1235-15
1856
+ nofor before wordlimit begword rigtige 1235-12456
1857
+ nofor before wordlimit begword rge =
1858
+ nofor before wordlimit begword rigtigt 1235-2345
1859
+ nofor before wordlimit begword rigtig 1235
1860
+
1861
+ nofor before wordlimit begword sagde 234-1456
1862
+ nofor before wordlimit begword sammen 234-134
1863
+ nofor before wordlimit begword samme 234-146
1864
+ nofor before wordlimit begword sme =
1865
+ nofor before wordlimit begword samtidig 234-134-2345
1866
+ nofor before wordlimit begword selvfølgelig 234-1236-124
1867
+ nofor before wordlimit begword selv 234-1236
1868
+ nofor before wordlimit begword sidste 234-1356-15
1869
+ nofor before wordlimit begword sste =
1870
+ nofor before wordlimit begword sidst 234-1356
1871
+ nofor before wordlimit begword sst =
1872
+ nofor before wordlimit begword sin 234-1345
1873
+ nofor before wordlimit begword sit 234-2345
1874
+ nofor before wordlimit begword skal 123456
1875
+ nofor before wordlimit begword sk =
1876
+ nofor before wordlimit begword skulle 123456-123-15
1877
+ nofor before wordlimit begword skle =
1878
+ nofor before wordlimit begword snart 234-1235
1879
+ nofor before wordlimit begword som 234
1880
+ nofor before wordlimit begword spørgsmål 234-1234-134
1881
+ nofor before wordlimit begword spørgsmåls 234-1234-134-234
1882
+ nofor before wordlimit begword spørgsmålet 234-1234-134-346
1883
+ nofor before wordlimit begword spørgsmålets 234-1234-134-346-234
1884
+ nofor before wordlimit begword spørgsmålene 234-1234-134-1246
1885
+ nofor before wordlimit begword spørgsmålenes 234-1234-134-1246-234
1886
+ nofor before wordlimit begword stadig 1356-1245
1887
+ nofor before wordlimit begword sådan 16-1
1888
+ nofor before wordlimit begword således 16-15
1889
+ nofor before wordlimit begword så 16
1890
+
1891
+ nofor before wordlimit begword tid 2345-145
1892
+ nofor before wordlimit begword tidlig 2345-145-123
1893
+ nofor before wordlimit begword tidlige 2345-145-123-12456
1894
+ nofor before wordlimit begword tidligere 2345-145-123-12356
1895
+ nofor before wordlimit begword tidligst 2345-145-123-1356
1896
+ nofor before wordlimit begword tilbage 2345-12
1897
+ nofor before wordlimit begword tilfælde 2345-124
1898
+ nofor before wordlimit begword til 2345
1899
+
1900
+ nofor before wordlimit begword under 12345
1901
+
1902
+ nofor before wordlimit begword vanskelig 1236-123456
1903
+ nofor before wordlimit begword vanskelige 1236-123456-15
1904
+ nofor before wordlimit begword vanskeligt 1236-123456-2345
1905
+ nofor before wordlimit begword var 3456
1906
+ nofor before wordlimit begword ved 1236
1907
+ nofor before wordlimit begword vidste 1236-1356-15
1908
+ nofor before wordlimit begword ville 1236-123-15
1909
+ nofor before wordlimit begword vil 1236-123
1910
+ nofor before wordlimit begword virkelig 1236-1235-13
1911
+ nofor before wordlimit begword været 1236-2345
1912
+ nofor before wordlimit begword være 345
1913
+
1914
+ nofor before wordlimit begword øjeblik 246-245-12
1915
+
1916
+ # Problems solved with pass 2
1917
+
1918
+ # Convert the fake "space hyphen" back to a normal hyphen.
1919
+ noback pass2 @ef @36
1920
+
1921
+ ### Multi-pass opcodes for converting the virtual capsletter sign @f into dot 7.
1922
+
1923
+ # Most of these lines are temporary.
1924
+ # They will be written with a few swap sets when the swapdd opcode has been fixed.
1925
+
1926
+
1927
+ # Generic forward convert of @f-... to @...7
1928
+ noback pass2 @f-235 @2357
1929
+ # Conversion with letsign.
1930
+ noback pass2 @f-56-235 @56-2357
1931
+ # Conversion with dot 5, which is used for accent marker in higher unicode pages.
1932
+ noback pass2 @f-5-235 @5-2357
1933
+ # Generic backward conversion.
1934
+ nofor pass2 @2357 @f-235
1935
+ # Conversion with dot 5 (letsign is handled below).
1936
+ nofor pass2 @5-2357 @f-5-235
1937
+
1938
+ # Same for the following characters.
1939
+
1940
+ noback pass2 @f-35 @357
1941
+ noback pass2 @f-56-35 @56-357
1942
+ noback pass2 @f-5-35 @5-357
1943
+ nofor pass2 @357 @f-35
1944
+ nofor pass2 @5-357 @f-5-35
1945
+
1946
+ noback pass2 @f-1 @17
1947
+ noback pass2 @f-56-1 @56-17
1948
+ noback pass2 @f-5-1 @5-17
1949
+ nofor pass2 @17 @f-1
1950
+ nofor pass2 @5-17 @f-5-1
1951
+ nofor pass2 @458-17 @f-458-1
1952
+ nofor pass2 @458-5-17 @f-458-5-1
1953
+
1954
+ noback pass2 @f-12 @127
1955
+ noback pass2 @f-56-12 @56-127
1956
+ noback pass2 @f-5-12 @5-127
1957
+ nofor pass2 @127 @f-12
1958
+ nofor pass2 @5-127 @f-5-12
1959
+ nofor pass2 @458-127 @f-458-12
1960
+
1961
+ noback pass2 @f-14 @147
1962
+ noback pass2 @f-56-14 @56-147
1963
+ noback pass2 @f-5-14 @5-147
1964
+ nofor pass2 @147 @f-14
1965
+ nofor pass2 @5-147 @f-5-14
1966
+ nofor pass2 @458-147 @f-458-14
1967
+
1968
+ noback pass2 @f-145 @1457
1969
+ noback pass2 @f-56-145 @56-1457
1970
+ noback pass2 @f-5-145 @5-1457
1971
+ nofor pass2 @1457 @f-145
1972
+ nofor pass2 @5-1457 @f-5-145
1973
+ nofor pass2 @458-1457 @f-458-145
1974
+
1975
+ noback pass2 @f-15 @157
1976
+ noback pass2 @f-56-15 @56-157
1977
+ noback pass2 @f-5-15 @5-157
1978
+ nofor pass2 @157 @f-15
1979
+ nofor pass2 @5-157 @f-5-15
1980
+ nofor pass2 @458-157 @f-458-15
1981
+ nofor pass2 @458-5-157 @f-458-5-15
1982
+
1983
+ noback pass2 @f-124 @1247
1984
+ noback pass2 @f-56-124 @56-1247
1985
+ noback pass2 @f-5-124 @5-1247
1986
+ nofor pass2 @1247 @f-124
1987
+ nofor pass2 @5-1247 @f-5-124
1988
+ nofor pass2 @458-1247 @f-458-124
1989
+
1990
+ noback pass2 @f-1245 @12457
1991
+ noback pass2 @f-56-1245 @56-12457
1992
+ noback pass2 @f-5-1245 @5-12457
1993
+ nofor pass2 @12457 @f-1245
1994
+ nofor pass2 @5-12457 @f-5-1245
1995
+ nofor pass2 @458-12457 @f-458-1245
1996
+
1997
+ noback pass2 @f-125 @1257
1998
+ noback pass2 @f-56-125 @56-1257
1999
+ noback pass2 @f-5-125 @5-1257
2000
+ nofor pass2 @1257 @f-125
2001
+ nofor pass2 @5-1257 @f-5-125
2002
+
2003
+ noback pass2 @f-24 @247
2004
+ noback pass2 @f-56-24 @56-247
2005
+ noback pass2 @f-5-24 @5-247
2006
+ nofor pass2 @247 @f-24
2007
+ nofor pass2 @5-247 @f-5-24
2008
+ nofor pass2 @458-247 @f-458-24
2009
+ nofor pass2 @458-5-247 @f-458-5-24
2010
+
2011
+ noback pass2 @f-245 @2457
2012
+ noback pass2 @f-56-245 @56-2457
2013
+ noback pass2 @f-5-245 @5-2457
2014
+ nofor pass2 @2457 @f-245
2015
+ nofor pass2 @5-2457 @f-5-245
2016
+
2017
+ noback pass2 @f-13 @137
2018
+ noback pass2 @f-56-13 @56-137
2019
+ noback pass2 @f-5-13 @5-137
2020
+ nofor pass2 @137 @f-13
2021
+ nofor pass2 @5-137 @f-5-13
2022
+ nofor pass2 @458-137 @f-458-13
2023
+
2024
+ noback pass2 @f-123 @1237
2025
+ noback pass2 @f-56-123 @56-1237
2026
+ noback pass2 @f-5-123 @5-1237
2027
+ nofor pass2 @1237 @f-123
2028
+ nofor pass2 @5-1237 @f-5-123
2029
+ nofor pass2 @458-1237 @f-458-123
2030
+
2031
+ noback pass2 @f-134 @1347
2032
+ noback pass2 @f-56-134 @56-1347
2033
+ noback pass2 @f-5-134 @5-1347
2034
+ nofor pass2 @1347 @f-134
2035
+ nofor pass2 @5-1347 @f-5-134
2036
+ nofor pass2 @458-1347 @f-458-134
2037
+
2038
+ noback pass2 @f-1345 @13457
2039
+ noback pass2 @f-56-1345 @56-13457
2040
+ noback pass2 @f-5-1345 @5-13457
2041
+ nofor pass2 @13457 @f-1345
2042
+ nofor pass2 @5-13457 @f-5-1345
2043
+ nofor pass2 @458-13457 @f-458-1345
2044
+
2045
+ noback pass2 @f-135 @1357
2046
+ noback pass2 @f-56-135 @56-1357
2047
+ noback pass2 @f-5-135 @5-1357
2048
+ nofor pass2 @1357 @f-135
2049
+ nofor pass2 @5-1357 @f-5-135
2050
+ nofor pass2 @458-1357 @f-458-135
2051
+ nofor pass2 @458-5-1357 @f-458-5-135
2052
+
2053
+ noback pass2 @f-1234 @12347
2054
+ noback pass2 @f-56-1234 @56-12347
2055
+ noback pass2 @f-5-1234 @5-12347
2056
+ nofor pass2 @12347 @f-1234
2057
+ nofor pass2 @5-12347 @f-5-1234
2058
+ nofor pass2 @458-12347 @f-458-1234
2059
+
2060
+ noback pass2 @f-12345 @123457
2061
+ noback pass2 @f-56-12345 @56-123457
2062
+ noback pass2 @f-5-12345 @5-123457
2063
+ nofor pass2 @123457 @f-12345
2064
+ nofor pass2 @5-123457 @f-5-12345
2065
+
2066
+ noback pass2 @f-1235 @12357
2067
+ noback pass2 @f-56-1235 @56-12357
2068
+ noback pass2 @f-5-1235 @5-12357
2069
+ nofor pass2 @12357 @f-1235
2070
+ nofor pass2 @5-12357 @f-5-1235
2071
+ nofor pass2 @458-12357 @f-458-1235
2072
+
2073
+ noback pass2 @f-234 @2347
2074
+ noback pass2 @f-56-234 @56-2347
2075
+ noback pass2 @f-5-234 @5-2347
2076
+ nofor pass2 @2347 @f-234
2077
+ nofor pass2 @5-2347 @f-5-234
2078
+ nofor pass2 @458-2347 @f-458-234
2079
+
2080
+ noback pass2 @f-2345 @23457
2081
+ noback pass2 @f-56-2345 @56-23457
2082
+ noback pass2 @f-5-2345 @5-23457
2083
+ nofor pass2 @23457 @f-2345
2084
+ nofor pass2 @5-23457 @f-5-2345
2085
+ nofor pass2 @458-23457 @f-458-2345
2086
+
2087
+ noback pass2 @f-136 @1367
2088
+ noback pass2 @f-56-136 @56-1367
2089
+ noback pass2 @f-5-136 @5-1367
2090
+ nofor pass2 @1367 @f-136
2091
+ nofor pass2 @5-1367 @f-5-136
2092
+ nofor pass2 @458-1367 @f-458-136
2093
+ nofor pass2 @458-5-1367 @f-458-5-136
2094
+
2095
+ noback pass2 @f-1236 @12367
2096
+ noback pass2 @f-56-1236 @56-12367
2097
+ noback pass2 @f-5-1236 @5-12367
2098
+ nofor pass2 @12367 @f-1236
2099
+ nofor pass2 @5-12367 @f-5-1236
2100
+
2101
+ noback pass2 @f-2456 @24567
2102
+ noback pass2 @f-56-2456 @56-24567
2103
+ noback pass2 @f-5-2456 @5-24567
2104
+ nofor pass2 @24567 @f-2456
2105
+ nofor pass2 @5-24567 @f-5-2456
2106
+ nofor pass2 @458-24567 @f-458-2456
2107
+ nofor pass2 @458-5-24567 @f-458-5-2456
2108
+
2109
+ noback pass2 @f-1346 @13467
2110
+ noback pass2 @f-56-1346 @56-13467
2111
+ noback pass2 @f-5-1346 @5-13467
2112
+ nofor pass2 @13467 @f-1346
2113
+ nofor pass2 @5-13467 @f-5-1346
2114
+ nofor pass2 @458-13467 @f-458-1346
2115
+
2116
+ noback pass2 @f-13456 @134567
2117
+ noback pass2 @f-56-13456 @56-134567
2118
+ noback pass2 @f-5-13456 @5-134567
2119
+ nofor pass2 @134567 @f-13456
2120
+ nofor pass2 @5-134567 @f-5-13456
2121
+ nofor pass2 @458-134567 @f-458-13456
2122
+
2123
+ noback pass2 @f-1356 @13567
2124
+ noback pass2 @f-56-1356 @56-13567
2125
+ noback pass2 @f-5-1356 @5-13567
2126
+ nofor pass2 @13567 @f-1356
2127
+ nofor pass2 @5-13567 @f-5-1356
2128
+ nofor pass2 @458-13567 @f-458-1356
2129
+
2130
+ noback pass2 @f-34 @347
2131
+ noback pass2 @f-56-34 @56-347
2132
+ noback pass2 @f-5-34 @5-347
2133
+ nofor pass2 @347 @f-34
2134
+ nofor pass2 @5-347 @f-5-34
2135
+
2136
+ noback pass2 @f-346 @3467
2137
+ noback pass2 @f-56-346 @56-3467
2138
+ noback pass2 @f-5-346 @5-3467
2139
+ nofor pass2 @3467 @f-346
2140
+ nofor pass2 @5-3467 @f-5-346
2141
+
2142
+ #noback pass2 @f-2348 @23478
2143
+ #noback pass2 @f-56-2348 @56-23478
2144
+ #noback pass2 @f-5-2348 @5-23478
2145
+ #nofor pass2 @23478 @f-2348
2146
+ #nofor pass2 @5-23478 @f-5-2348
2147
+
2148
+ noback pass2 @f-1358 @13578
2149
+ noback pass2 @f-56-1358 @56-13578
2150
+ noback pass2 @f-5-1358 @5-13578
2151
+ nofor pass2 @13578 @f-1358
2152
+ nofor pass2 @5-13578 @f-5-1358
2153
+
2154
+ noback pass2 @f-234568 @2345678
2155
+ noback pass2 @f-56-234568 @56-2345678
2156
+ noback pass2 @f-5-234568 @5-2345678
2157
+ nofor pass2 @2345678 @f-234568
2158
+ nofor pass2 @5-2345678 @f-5-234568
2159
+
2160
+ noback pass2 @f-236 @2367
2161
+ noback pass2 @f-56-236 @56-2367
2162
+ noback pass2 @f-5-236 @5-2367
2163
+ nofor pass2 @2367 @f-236
2164
+ nofor pass2 @5-2367 @f-5-236
2165
+
2166
+ noback pass2 @f-256 @2567
2167
+ noback pass2 @f-56-256 @56-2567
2168
+ noback pass2 @f-5-256 @5-2567
2169
+ nofor pass2 @2567 @f-256
2170
+ nofor pass2 @5-2567 @f-5-256
2171
+
2172
+ noback pass2 @f-356 @3567
2173
+ noback pass2 @f-56-356 @56-3567
2174
+ noback pass2 @f-5-356 @5-3567
2175
+ nofor pass2 @3567 @f-356
2176
+ nofor pass2 @5-3567 @f-5-356
2177
+
2178
+ noback pass2 @f-3456 @34567
2179
+ noback pass2 @f-56-3456 @56-34567
2180
+ noback pass2 @f-5-3456 @5-34567
2181
+ nofor pass2 @34567 @f-3456
2182
+ nofor pass2 @5-34567 @f-5-3456
2183
+
2184
+ noback pass2 @f-12356 @123567
2185
+ noback pass2 @f-56-12356 @56-123567
2186
+ noback pass2 @f-5-12356 @5-123567
2187
+ nofor pass2 @123567 @f-12356
2188
+ nofor pass2 @5-123567 @f-5-12356
2189
+
2190
+ noback pass2 @f-123568 @1235678
2191
+ noback pass2 @f-56-123568 @56-1235678
2192
+ noback pass2 @f-5-123568 @5-1235678
2193
+ nofor pass2 @1235678 @f-123568
2194
+ nofor pass2 @5-1235678 @f-5-123568
2195
+
2196
+ noback pass2 @f-168 @1678
2197
+ noback pass2 @f-56-168 @56-1678
2198
+ noback pass2 @f-5-168 @5-1678
2199
+ nofor pass2 @1678 @f-168
2200
+ nofor pass2 @5-1678 @f-5-168
2201
+
2202
+ noback pass2 @f-1468 @14678
2203
+ noback pass2 @f-56-1468 @56-14678
2204
+ noback pass2 @f-5-1468 @5-14678
2205
+ nofor pass2 @14678 @f-1468
2206
+ nofor pass2 @5-14678 @f-5-1468
2207
+
2208
+ noback pass2 @f-3458 @34578
2209
+ noback pass2 @f-56-3458 @56-34578
2210
+ noback pass2 @f-5-3458 @5-34578
2211
+ nofor pass2 @34578 @f-3458
2212
+ nofor pass2 @5-34578 @f-5-3458
2213
+
2214
+ noback pass2 @f-16 @167
2215
+ noback pass2 @f-56-16 @56-167
2216
+ noback pass2 @f-5-16 @5-167
2217
+ nofor pass2 @167 @f-16
2218
+ nofor pass2 @5-167 @f-5-16
2219
+
2220
+ noback pass2 @f-345 @3457
2221
+ noback pass2 @f-56-345 @56-3457
2222
+ noback pass2 @f-5-345 @5-3457
2223
+ nofor pass2 @3457 @f-345
2224
+ nofor pass2 @5-3457 @f-5-345
2225
+
2226
+ noback pass2 @f-12346 @123467
2227
+ noback pass2 @f-56-12346 @56-123467
2228
+ noback pass2 @f-5-12346 @5-123467
2229
+ nofor pass2 @123467 @f-12346
2230
+ nofor pass2 @5-123467 @f-5-12346
2231
+ nofor pass2 @458-123467 @f-458-12346
2232
+
2233
+ noback pass2 @f-2346 @23467
2234
+ noback pass2 @f-56-2346 @56-23467
2235
+ noback pass2 @f-5-2346 @5-23467
2236
+ nofor pass2 @23467 @f-2346
2237
+ nofor pass2 @5-23467 @f-5-2346
2238
+
2239
+ noback pass2 @f-123456 @1234567
2240
+ noback pass2 @f-56-123456 @56-1234567
2241
+ noback pass2 @f-5-123456 @5-1234567
2242
+ nofor pass2 @1234567 @f-123456
2243
+ nofor pass2 @5-1234567 @f-5-123456
2244
+
2245
+ noback pass2 @f-126 @1267
2246
+ noback pass2 @f-56-126 @56-1267
2247
+ noback pass2 @f-5-126 @5-1267
2248
+ nofor pass2 @1267 @f-126
2249
+ nofor pass2 @5-1267 @f-5-126
2250
+
2251
+ noback pass2 @f-1246 @12467
2252
+ noback pass2 @f-56-1246 @56-12467
2253
+ noback pass2 @f-5-1246 @5-12467
2254
+ nofor pass2 @12467 @f-1246
2255
+ nofor pass2 @5-12467 @f-5-1246
2256
+
2257
+ noback pass2 @f-1568 @15678
2258
+ noback pass2 @f-56-1568 @56-15678
2259
+ noback pass2 @f-5-1568 @5-15678
2260
+ nofor pass2 @15678 @f-1568
2261
+ nofor pass2 @5-15678 @f-5-1568
2262
+
2263
+ noback pass2 @f-1268 @12678
2264
+ noback pass2 @f-56-1268 @56-12678
2265
+ noback pass2 @f-5-1268 @5-12678
2266
+ nofor pass2 @12678 @f-1268
2267
+ nofor pass2 @5-12678 @f-5-1268
2268
+
2269
+ noback pass2 @f-146 @1467
2270
+ noback pass2 @f-56-146 @56-1467
2271
+ noback pass2 @f-5-146 @5-1467
2272
+ nofor pass2 @1467 @f-146
2273
+ nofor pass2 @5-1467 @f-5-146
2274
+
2275
+ noback pass2 @f-12456 @124567
2276
+ noback pass2 @f-56-12456 @56-124567
2277
+ noback pass2 @f-5-12456 @5-124567
2278
+ nofor pass2 @124567 @f-12456
2279
+ nofor pass2 @5-124567 @f-5-12456
2280
+
2281
+ # Eth (does not follow the normal rules)
2282
+ noback pass2 @f-134568 @67
2283
+ noback pass2 @f-56-134568 @56-67
2284
+ nofor pass2 @67 @f-134568
2285
+
2286
+ noback pass2 @f-124568 @1245678
2287
+ noback pass2 @f-56-124568 @56-1245678
2288
+ noback pass2 @f-5-124568 @5-1245678
2289
+ nofor pass2 @1245678 @f-124568
2290
+ nofor pass2 @5-1245678 @f-5-124568
2291
+
2292
+ noback pass2 @f-12468 @124678
2293
+ noback pass2 @f-56-12468 @56-124678
2294
+ noback pass2 @f-5-12468 @5-124678
2295
+ nofor pass2 @124678 @f-12468
2296
+ nofor pass2 @5-124678 @f-5-12468
2297
+
2298
+ noback pass2 @f-3468 @34678
2299
+ noback pass2 @f-56-3468 @56-34678
2300
+ noback pass2 @f-5-3468 @5-34678
2301
+ nofor pass2 @34678 @f-3468
2302
+ nofor pass2 @5-34678 @f-5-3468
2303
+
2304
+ noback pass2 @f-1456 @14567
2305
+ noback pass2 @f-56-1456 @56-14567
2306
+ noback pass2 @f-5-1456 @5-14567
2307
+ nofor pass2 @14567 @f-1456
2308
+ nofor pass2 @5-14567 @f-5-1456
2309
+ nofor pass2 @458-14567 @f-458-1456
2310
+
2311
+ noback pass2 @f-14568 @145678
2312
+ noback pass2 @f-56-14568 @56-145678
2313
+ noback pass2 @f-5-14568 @5-145678
2314
+ nofor pass2 @145678 @f-14568
2315
+ nofor pass2 @5-145678 @f-5-14568
2316
+
2317
+ noback pass2 @f-2468 @24678
2318
+ noback pass2 @f-56-2468 @56-24678
2319
+ noback pass2 @f-5-2468 @5-24678
2320
+ nofor pass2 @24678 @f-2468
2321
+ nofor pass2 @5-24678 @f-5-2468
2322
+
2323
+ noback pass2 @f-246 @2467
2324
+ noback pass2 @f-56-246 @56-2467
2325
+ noback pass2 @f-5-246 @5-2467
2326
+ nofor pass2 @2467 @f-246
2327
+ nofor pass2 @5-2467 @f-5-246
2328
+
2329
+ noback pass2 @f-23456 @234567
2330
+ noback pass2 @f-56-23456 @56-234567
2331
+ noback pass2 @f-5-23456 @5-234567
2332
+ nofor pass2 @234567 @f-23456
2333
+ nofor pass2 @5-234567 @f-5-23456
2334
+
2335
+ noback pass2 @f-12568 @125678
2336
+ noback pass2 @f-56-12568 @56-125678
2337
+ noback pass2 @f-5-12568 @5-125678
2338
+ nofor pass2 @125678 @f-12568
2339
+ nofor pass2 @5-125678 @f-5-12568
2340
+
2341
+ noback pass2 @f-156 @1567
2342
+ noback pass2 @f-56-156 @56-1567
2343
+ noback pass2 @f-5-156 @5-1567
2344
+ nofor pass2 @1567 @f-156
2345
+ nofor pass2 @5-1567 @f-5-156
2346
+ nofor pass2 @458-1567 @f-458-156
2347
+ nofor pass2 @458-5-1567 @f-458-5-156
2348
+
2349
+ noback pass2 @f-1256 @12567
2350
+ noback pass2 @f-56-1256 @56-12567
2351
+ noback pass2 @f-5-1256 @5-12567
2352
+ nofor pass2 @12567 @f-1256
2353
+ nofor pass2 @5-12567 @f-5-1256
2354
+
2355
+ noback pass2 @f-1348 @13478
2356
+ noback pass2 @f-56-1348 @56-13478
2357
+ noback pass2 @f-5-1348 @5-13478
2358
+ nofor pass2 @13478 @f-1348
2359
+ nofor pass2 @5-13478 @f-5-1348
2360
+
2361
+ noback pass2 @f-138 @1378
2362
+ noback pass2 @f-56-138 @56-1378
2363
+ noback pass2 @f-5-138 @5-1378
2364
+ nofor pass2 @1378 @f-138
2365
+ nofor pass2 @5-1378 @f-5-138
2366
+
2367
+ noback pass2 @f-234568 @2345678
2368
+ noback pass2 @f-56-234568 @56-2345678
2369
+ noback pass2 @f-5-234568 @5-2345678
2370
+ nofor pass2 @2345678 @f-234568
2371
+ nofor pass2 @5-2345678 @f-5-234568
2372
+
2373
+ # Tweak to keep letsign for letters that should always have letsign.
2374
+ # Letsign will be removed by the multind opcode. So we insert an extra one.
2375
+ nofor pass2 @56-123457 @f-56-56-12345
2376
+ nofor pass2 @56-24567 @f-56-56-2456
2377
+ nofor pass2 @56-13467 @f-56-56-1346
2378
+ nofor pass2 @56-13567 @f-56-56-1356
2379
+ nofor pass2 @56-123567 @f-56-56-12356
2380
+ nofor pass2 @56-123467 @f-56-56-12346
2381
+ nofor pass2 @56-23467 @f-56-56-2346
2382
+ nofor pass2 @56-1234567 @f-56-56-123456
2383
+ nofor pass2 @56-1267 @f-56-56-126
2384
+ nofor pass2 @56-12467 @f-56-56-1246
2385
+ nofor pass2 @56-1467 @f-56-56-146
2386
+ nofor pass2 @56-124567 @f-56-56-12456
2387
+ nofor pass2 @56-14567 @f-56-56-1456
2388
+ nofor pass2 @56-234567 @f-56-56-23456
2389
+ nofor pass2 @56-1567 @f-56-56-156
2390
+ nofor pass2 @56-12567 @f-56-56-1256
2391
+ nofor pass2 @56-3467 @f-56-56-346
2392
+
2393
+ # Ensure that punctuation signs etc. are not "tolowered" when they have a letsign, but only when they act as a partword contraction.
2394
+ nofor pass2 @56-347 *
2395
+ nofor pass2 @56-2357 *
2396
+ nofor pass2 @56-2567 *
2397
+ nofor pass2 @56-2367 *
2398
+ nofor pass2 @56-34567 *
2399
+ nofor pass2 @56-367 *
2400
+
2401
+ # remove any superfluous capsletter marks.
2402
+ noback pass2 @f ?
2403
+
2404
+ # Pass 3
2405
+
2406
+ # Remove any superfluous letsigns and only keep one.
2407
+ noback pass3 @56-56 @56
2408
+
2409
+ # Ensure there is only one emphasis sign
2410
+ # Danish Braille only has one emphasis sign,
2411
+ # so don't repeat if more than one emphasis type is present.
2412
+ noback pass3 @46-46 @46
2413
+ noback pass3 @46-46-46 @46
2414
+
2415
+ # Remove letsigns before letters marked with indicator for accents or greek letters.
2416
+
2417
+ noback pass3 @56-5 @5
2418
+ noback pass3 @56-458 @458
2419
+
2420
+ # Remove letsigns from www
2421
+ noback pass3 @56-2456-56-2456-56-2456 @2456-2456-2456
2422
+ noback pass3 @56-24567-56-2456-56-2456 @24567-2456-2456
2423
+ noback pass3 @56-24567-56-24567-56-24567 @24567-24567-24567
2424
+
2425
+ # Include hyphenation file as the last thing
2426
+ include da-dk-g2.dic