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,1345 @@
1
+ # Liblouis: Danish table for 6 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
+ # This is the Danish table for 6 dots grade 1 Braille (fuldskrift) DDP2022.
22
+ # Use this table for translation and back-translation of Danish 6 dots grade 1 Braille.
23
+ # See also: Den Danske Punktskrift 2022
24
+ # Det Danske Punktskriftsnævn
25
+ # https://www.blind.dk/punktskrift-2022
26
+ #
27
+ # Version: Bue Vester-Andersen, December 2022
28
+
29
+ ### Table Metadata
30
+
31
+ #-name: Dansk forkortet 6-punkt 2022
32
+ #-index-name: Danish, contracted, 6-dot, 2022
33
+ #-display-name: Danish 6-dot contracted braille (2022 standard)
34
+
35
+ #+language: da
36
+ #+type: literary
37
+ #+contraction: full
38
+ #+grade: 2
39
+ #+dots: 6
40
+ #+direction: both
41
+ #+system: ddp
42
+ #+version: 2022
43
+
44
+ #-has-nocross: yes
45
+
46
+ # Display opcodes
47
+ include da-dk-octobraille.dis
48
+
49
+ ### Spaces
50
+ include spaces.uti
51
+
52
+ ### Character definitions
53
+
54
+ # Definition of dot cells
55
+ punctuation ! 235 EXCLAMATION MARK
56
+ punctuation " 2356 QUOTATION MARK
57
+ punctuation ' 4 APOSTROPHE
58
+ punctuation ( 236 LEFT PARENTHESIS
59
+ punctuation ) 356 RIGHT PARENTHESIS
60
+ punctuation , 2 COMMA
61
+ punctuation - 36 HYPHEN-MINUS
62
+ punctuation . 3 FULL STOP
63
+ punctuation / 34 SLASH
64
+ punctuation : 25 COLON
65
+ punctuation ; 23 SEMICOLON
66
+ punctuation ? 26 QUESTION MARK
67
+ lowercase a 1
68
+ lowercase b 12
69
+ lowercase c 14
70
+ lowercase d 145
71
+ lowercase e 15
72
+ lowercase f 124
73
+ lowercase g 1245
74
+ lowercase h 125
75
+ lowercase i 24
76
+ lowercase j 245
77
+ lowercase k 13
78
+ lowercase l 123
79
+ lowercase m 134
80
+ lowercase n 1345
81
+ lowercase o 135
82
+ lowercase p 1234
83
+ lowercase r 1235
84
+ lowercase s 234
85
+ lowercase t 2345
86
+ lowercase u 136
87
+ lowercase v 1236
88
+ lowercase y 13456
89
+
90
+ #use 8 dots for the following chars to avoid conflict with indicators
91
+ lowercase q 123457
92
+ lowercase w 24567
93
+ lowercase x 13467
94
+ lowercase z 13567
95
+ punctuation | 4568 VERTICAL LINE
96
+ punctuation ~ 467 TILDE (changed by pass 2 to not conflict with indicators
97
+ lowercase \x00e0 123567 LATIN LETTER A WITH GRAVE
98
+ lowercase \x00e8 23467 LATIN LETTER E WITH GRAVE
99
+ lowercase \x00e9 1234567 LATIN LETTER E WITH ACUTE
100
+ lowercase \x00fc 12567
101
+
102
+ include digits6Dots.uti
103
+
104
+ punctuation \x00a7 346 SECTION SIGN (0xa7)
105
+
106
+ lowercase \x00e5 16 LATIN LETTER A WITH RING ABOVE
107
+ lowercase \x00e6 345 LATIN LETTER AE
108
+ lowercase \x00f8 246 LATIN LETTER O WITH STROKE
109
+
110
+ # Uppercase letters
111
+ base uppercase A a
112
+ base uppercase B b
113
+ base uppercase C c
114
+ base uppercase D d
115
+ base uppercase E e
116
+ base uppercase F f
117
+ base uppercase G g
118
+ base uppercase H h
119
+ base uppercase I i
120
+ base uppercase J j
121
+ base uppercase K k
122
+ base uppercase L l
123
+ base uppercase M m
124
+ base uppercase N n
125
+ base uppercase O o
126
+ base uppercase P p
127
+ base uppercase R r
128
+ base uppercase S s
129
+ base uppercase T t
130
+ base uppercase U u
131
+ base uppercase V v
132
+ base uppercase Y y
133
+ base uppercase Q q
134
+ base uppercase W w
135
+ base uppercase X x
136
+ base uppercase Z z
137
+ base uppercase \x00c0 \x00e0 LATIN LETTER A WITH GRAVE
138
+ base uppercase \x00c8 \x00e8 LATIN LETTER E WITH GRAVE
139
+ base uppercase \x00c9 \x00e9 LATIN LETTER E WITH ACUTE
140
+ base uppercase \x00dc \x00fc
141
+ base uppercase \x00c5 \x00e5 LATIN LETTER A WITH RING ABOVE
142
+ base uppercase \x00c6 \x00e6 LATIN LETTER AE
143
+ base uppercase \x00d8 \x00f8 LATIN LETTER O WITH STROKE
144
+
145
+ # cover all other Braille patterns
146
+ include braille-patterns.cti
147
+
148
+ # Characters with two or more cells
149
+
150
+ punctuation # 45-3456 NUMBER SIGN
151
+ sign $ 45-145 DOLLAR SIGN
152
+ math % 245-356 PERCENT SIGN
153
+ sign & 56-12346 AMPERSAND
154
+ punctuation * 56-35 ASTERISK
155
+ math + 45-235 PLUS SIGN
156
+ math < 45-134 LESS-THAN SIGN
157
+ math = 45-2356 EQUALS SIGN
158
+ math > 45-234 GREATER-THAN SIGN
159
+ sign @ 45-1 COMMERCIAL AT
160
+ punctuation [ 5-236 LEFT SQUARE BRACKET
161
+ punctuation \\ 45-16 REVERSE SLASH
162
+ punctuation ] 5-356 RIGHT SQUARE BRACKET
163
+ punctuation ^ 45-346 CIRCUMFLEX ACCENT
164
+ punctuation _ 45-36 LOW LINE
165
+ punctuation ` 4 GRAVE ACCENT
166
+ punctuation { 45-246 LEFT CURLY BRACKET
167
+ punctuation | 45-1236 VERTICAL LINE
168
+ punctuation } 45-135 RIGHT CURLY BRACKET
169
+ punctuation ~ 45-23 TILDE
170
+ math \x00f7 45-256 DIVISION SIGN
171
+
172
+ # Misc unicode characters
173
+ include da-dk-6miscChars.cti
174
+
175
+ # Extra chars for private use:
176
+ space \xf800 234f # Used to force a hidden word boundary
177
+ letter \xf801 123f # Used to prevent word contractions in certain cases
178
+
179
+ # Litdigits
180
+ include litdigits6Dots.uti
181
+ midendnumericmodechars /,.:^
182
+
183
+ undefined 26
184
+
185
+ ### Braille indicators and special characters
186
+
187
+ # the hyphen opcode apparently breaks double dash rules
188
+ # hyphen - 36
189
+
190
+ letsign 56
191
+
192
+ noletsign Ii\x00df\x0149\x0152\x0153
193
+
194
+ # Emphasis opcodes
195
+ emphclass italic
196
+ emphclass underline
197
+ emphclass bold
198
+
199
+ begemphphrase italic 46
200
+ endemphphrase italic after 46
201
+
202
+ begemphphrase bold 46
203
+ endemphphrase bold after 46
204
+
205
+ begemphphrase underline 46
206
+ endemphphrase underline after 46
207
+
208
+ capsletter 6
209
+ begcapsword 456
210
+ endcapsword 56
211
+ multind 56-6 letsign capsletter
212
+ multind 6-56 capsletter letsign
213
+ multind 56-456 letsign begcapsword
214
+
215
+ numsign 3456
216
+ multind 56-3456 letsign numsign
217
+
218
+ #class of none-space characters that demand double dashes
219
+ # Used in context lines later.
220
+ #must be the first class defined.
221
+ attribute charsWDoubleDash .,?!/:"'() # class w
222
+
223
+ ### Correct - forward translation
224
+
225
+ # Chars that don't require a space before percent and permille:
226
+ attribute charsBeforePercent "(\x201e\x0084\x201c\x0093\x201d\x0094\x00ab\x00bb #class x
227
+ noback correct `["%"] *
228
+ noback correct !$sx["%"] "\s%"
229
+ noback correct `["\x2030"] *
230
+ noback correct !$sx["\x2030"] "\s\x2030"
231
+ noback correct `["\x0089"] *
232
+ noback correct !$sx["\x0089"] "\s\x2030"
233
+
234
+ # Chars to be treated like digits when switching back to letter mode
235
+ attribute extraDigits \x00bc\x00bd\x00be
236
+
237
+ #Use the "correct" opcode to convert chars that can't be back-translated
238
+ # and make the table more simple.
239
+
240
+ # Dashes
241
+ attribute dashes \x2013\x2014\x0096\x0097\x00ad
242
+ noback correct %dashes "-"
243
+
244
+ attribute quotes \x201e\x0084\x201c\x0093\x201d\x0094\x00ab\x00bb
245
+ noback correct %quotes "\""
246
+
247
+ attribute apostrophes `\x201a\x0082\x2039\x008b\x2018\x0091\x2019\x0092\x203a\x009b\x00b4
248
+ noback correct %apostrophes "'"
249
+
250
+ ### Correct - backward translation
251
+
252
+ # characters that may get mangled by the insertion of extra letsigns
253
+ nofor correct "\x2818" "~"
254
+ #nofor correct "\x282f" "&"
255
+ #nofor correct "\x2814" "*"
256
+
257
+ nofor correct "\x28a0" ? # Extraneous endcaps signs
258
+ #nofor correct "\x2820" ?
259
+ nofor correct "~\\456/" "|"
260
+
261
+ #ensure \xf800\xf801 between a digit and a letter
262
+ noback correct $dy[]$l "\xf800\xf801"
263
+ noback correct $dy$Spm.[]$l "\xf800\xf801"
264
+
265
+ ### Pass 1 - Forward and backward
266
+
267
+ # Remove space between § and numbers.
268
+ noback begnum § 346
269
+ noback begnum §\s 346
270
+ nofor begnum §\s 346-3456
271
+ noback begnum §§\s 346-346
272
+ nofor begnum §§\s 346-346-3456
273
+ always §§ 346-346
274
+
275
+ # Punctuations, math and numbers
276
+ #midnum , 2
277
+ #midnum . 3
278
+ #midnum - 36
279
+ endnum - 36
280
+ #midnum / 34
281
+ #midnum : 25
282
+ nofor midnum ^ 346
283
+ nofor midnum ^ 45-346
284
+
285
+ midnum ^ 45-346
286
+ midnum \x00d7 45-35
287
+
288
+ # various back rules for math signs etc.
289
+ nofor midnum % 0-245-356-0-3456
290
+ nofor endnum % 0-245-356
291
+ nofor endnum \x2030 0-245-356-356
292
+ nofor midnum \x00d7 45-35
293
+
294
+ # Punctuation
295
+ postpunc ! 235
296
+ prepunc " 2356
297
+ postpunc " 2356
298
+ always /\s 56-34-0
299
+ always \s/ 0-56-34
300
+ nofor always / 56-34
301
+ prepunc - 36
302
+ postpunc - 36
303
+ nofor always \s-\s 0-36-36-0
304
+ always :- 25-36
305
+ always ;- 23-36
306
+ always --- 36-36-36
307
+ always ---- 36-36-36-36
308
+ always ----- 36-36-36-36-36
309
+ # Star enclosed by parentheses
310
+ always (*) 236-35-356
311
+
312
+ before punctuation before sign always ( 56-236
313
+
314
+ # these characters must be separated from ")" by a letsign.
315
+ attribute SepToRightpar Jj%'\x2030\x0089\x201a\x0082\x2039\x009b\x2018\x0091\x2019\x0092\x203a\x009b
316
+ after SepToRightpar always ) 56-356
317
+ after punctuation after sign always ) 56-356
318
+
319
+ prepunc ( 236
320
+ postpunc ) 356
321
+ always .) 3-356
322
+ always ( 56-236
323
+ always ) 56-356
324
+
325
+ # extra back rules for ")"
326
+ nofor after punctuation always ) 356
327
+ nofor always \x00b0 45-356
328
+ nofor always ') 4-56-356
329
+ nofor always ") 2356-356
330
+ nofor endword j) 245-356
331
+ nofor always ) 56-356
332
+
333
+ always ... 3-3-3
334
+
335
+ # Exclamation and "fra"
336
+ always fra! 124-1235-1-235
337
+ always !fra 235-124-1235-1
338
+ always ?! 26-56-235
339
+ always )! 356-56-235
340
+ always (!) 236-56-235-356
341
+ always "fra" 2356-124-1235-1-2356
342
+ always "!" 2356-56-235-2356
343
+ always !! 235-235
344
+ always !!! 235-235-235
345
+ always !!!! 235-235-235-235
346
+ always !!!!! 235-235-235-235-235
347
+ always '! 4-56-235
348
+ always \s! 0-56-235
349
+ prepunc ! 56-235
350
+ always \x00a1 56-256
351
+
352
+ ### Contractions ###
353
+
354
+ #Special sequences, urls emails and file names.
355
+
356
+ nocont $
357
+ nocont \x005c
358
+ nocont @
359
+ nocont ://
360
+ nocont www
361
+
362
+ # Ensure no contractions in English ordinal numbers
363
+ endnum nd 6-1345-145
364
+ endnum st 6-234-2345
365
+ endnum ve 6-1236-15
366
+
367
+ #Words
368
+ word af 356
369
+ always 'af 4-1-124
370
+ word aldrig 1-35
371
+ word aig =
372
+ word alle 1-15
373
+ begnum ae 56-1-15
374
+ contraction ae
375
+ word allerede 1-123-1235
376
+ begnum alr 56-1-123-1235
377
+ contraction alr
378
+ word alligevel 1-123-1236
379
+ begnum alv 56-1-123-1236
380
+ contraction alv
381
+ word altid 1-2345-145
382
+ begnum atd 56-1-2345-145
383
+ contraction atd
384
+ word altså 1-16
385
+ begnum aå 56-1-16
386
+ contraction aå
387
+ word arbejde 1-12-1456
388
+ word abde =
389
+ word arbejdede 1-12-1456-1456
390
+ word abdede =
391
+ word arbejder 1-12-23456
392
+ word abder =
393
+ word arbejdet 1-12-2346
394
+ word abdet =
395
+ word at 1
396
+
397
+ word betyde 12-2345-1456
398
+ word btde =
399
+ word betyder 12-2345-23456
400
+ word btder =
401
+ word blevet 12-2345
402
+ begnum bt 56-12-2345
403
+ contraction bt
404
+ word blev 12-1236
405
+ begnum bv 56-12-1236
406
+ contraction bv
407
+ word blive 12-3456
408
+ word bve =
409
+ word bliver 12
410
+
411
+ word danmark 145-1345-13
412
+ begnum dnk 56-145-1345-13
413
+ contraction dnk
414
+ word danmarks 145-1345-13-234
415
+ begnum dnks 56-145-1345-13-234
416
+ contraction dnks
417
+ word dansk 145-123456
418
+ word dsk =
419
+ word danske 145-123456-15
420
+ word dske =
421
+ word derefter 23456-1356
422
+ word derst =
423
+ word deres 256
424
+ word derfor 23456-124
425
+ word derf =
426
+ word derigennem 23456-24-12456
427
+ word derige 1456-1235-24-12456
428
+ word dermed 23456-134
429
+ word derm =
430
+ word derned 23456-1246
431
+ word derne =
432
+ word derop 23456-135
433
+ word dero =
434
+ word derover 23456-1346
435
+ word deror =
436
+ word derpå 23456-1234
437
+ word derp =
438
+ word dersom 23456-234
439
+ word ders =
440
+ word dertil 23456-2345
441
+ word dert =
442
+ word derunder 23456-12345
443
+ word derved 23456-1236
444
+ word din 145-1345
445
+ begnum dn 56-145-1345
446
+ contraction dn
447
+ word disse 145-234
448
+ begnum ds 56-145-234
449
+ contraction ds
450
+ word dit 145-2345
451
+ begnum dt 56-145-2345
452
+ contraction dt
453
+ word du 145
454
+
455
+ word efter 1356
456
+ word eftersom 1356-234
457
+ word sts =
458
+ word eller 15
459
+ word endnu 15-136
460
+ begnum eu 56-15-136
461
+ contraction eu
462
+
463
+ word faktisk 124-13-2345
464
+ begnum fkt 56-124-13-2345
465
+ contraction fkt
466
+ word fik 124-13
467
+ begnum fk 56-124-13
468
+ contraction fk
469
+ word forbi 124-12
470
+ begnum fb 56-124-12
471
+ contraction fb
472
+ word fordi 124-145
473
+ begnum fd 56-124-145
474
+ contraction fd
475
+ word forskellige 124-123456-15
476
+ word fske =
477
+ word forskelligt 124-123456-2345
478
+ word fskt =
479
+ word forskellig 124-123456
480
+ word fsk =
481
+ word for 124
482
+ word fortælle 124-1256
483
+ word fte =
484
+ word fortæller 124-2345-156
485
+ word fter =
486
+ word fra 235
487
+ word første 124-1356-15
488
+ word fste =
489
+ word først 124-1356
490
+ word fst =
491
+ word før 246
492
+
493
+ word gang 1245-1245
494
+ begnum gg 56-1245-1245
495
+ contraction gg
496
+ word gange 1245-12456
497
+ word gge =
498
+ word ganske 1245-123456
499
+ word gsk =
500
+ word gennem 12456
501
+ word gik 1245-13
502
+ begnum gk 56-1245-13
503
+ contraction gk
504
+ word gjorde 1245-1456
505
+ word gde =
506
+ word gør 1245
507
+
508
+ word ham 236
509
+ word hans 13456-234
510
+ begnum ys 56-13456-234
511
+ contraction ys
512
+ word han 13456
513
+ word har 125
514
+ word havde 125-1456
515
+ word hde =
516
+ word have 125-3456
517
+ word hve =
518
+ word hele 125-123-15
519
+ begnum hle 56-125-123-15
520
+ contraction hle
521
+ word heller 125-123-1235
522
+ begnum hlr 56-125-123-1235
523
+ contraction hlr
524
+ word helt 125-2345
525
+ begnum ht 56-125-2345
526
+ contraction ht
527
+ word hendes 125-234
528
+ begnum hs 56-125-234
529
+ contraction hs
530
+ word hende 125-145
531
+ begnum hd 56-125-145
532
+ contraction hd
533
+ word hjælpe 125-1234-15
534
+ begnum hpe 56-125-1234-15
535
+ contraction hpe
536
+ word hjælpende 125-1234-15-1345-1456 # *** temporary patch
537
+ word hjælpendes 125-1234-15-1345-1456-234 # *** temporary patch
538
+ word hjælper 125-1234-156
539
+ word hper =
540
+ word hun 136
541
+ word hvad 2456
542
+ word hvilke 2456-13-15
543
+ word hvke =
544
+ word hvilken 2456-13-126
545
+ word hvken =
546
+ word hvilket 2456-13-346
547
+ word hvket =
548
+ word hvis 2456-234
549
+ word hvs =
550
+ word hvordan 34-1
551
+ word hvora 34-56-1
552
+ word hvorefter 34-1356
553
+ word hvorst 34-234-2345
554
+ word hvorfor 34-124
555
+ word hvorf 34-56-124
556
+ word hvorigennem 34-24-12456
557
+ word hvorledes 34-15
558
+ word hvore 34-56-15
559
+ word hvormed 34-134
560
+ word hvorm 34-56-134
561
+ word hvornår 34-1345
562
+ word hvorn 34-56-1345
563
+ word hvorover 34-1346
564
+ word hvoror 34-135-1235
565
+ word hvorpå 34-1234
566
+ word hvorp 34-56-1234
567
+ word hvortil 34-2345
568
+ word hvort 34-56-2345
569
+ word hvorunder 34-12345
570
+ word hvornd 34-1345-145
571
+ word hvorved 34-1236
572
+ word hvorv 34-56-1236
573
+ word hvor 34
574
+
575
+ word igennem 24-12456
576
+ word ige =
577
+ word igen 35
578
+ word (igen) 236-24-1245-126-356
579
+ word ikke 24-13
580
+ begnum ik 56-24-13
581
+ contraction ik
582
+ word ingen 24-126
583
+ word ien =
584
+ word ingenting 24-24
585
+ begnum ii 56-24-24
586
+ contraction ii
587
+
588
+ word jeg 245
589
+ word jeg) 245-56-356
590
+
591
+ word kan 13
592
+ word kommer 13-156
593
+ word ker =
594
+ word kommet 13-346
595
+ word ket =
596
+ word komme 13-146
597
+ word kme =
598
+ word kom 13-134
599
+ begnum km 56-13-134
600
+ contraction km
601
+ word kunne 13-1246
602
+ word kne =
603
+ word kvinde 13-1236-1456
604
+ word kvde =
605
+ word kvindes 13-1236-1456-234
606
+ word kvdes =
607
+ word kvinden 13-1236-12346
608
+ word kvden =
609
+ word kvindens 13-1236-12346-234
610
+ word kvdens =
611
+ word kvinder 13-1236-23456
612
+ word kvder =
613
+ word kvinders 13-1236-23456-234
614
+ word kvders =
615
+ word kvinderne 13-1236-23456-1246
616
+ word kvderne =
617
+ word kvindernes 13-1236-23456-1246-234
618
+ word kvdernes =
619
+
620
+ word lang 123-1245
621
+ begnum lg 56-123-1245
622
+ contraction lg
623
+ word lange 123-12456
624
+ begnum lge 56-123-12456
625
+ contraction lge
626
+ word langt 123-1245-2345
627
+ begnum lgt 56-123-1245-2345
628
+ contraction lgt
629
+ word lidt 123-2345
630
+ begnum lt 56-123-2345
631
+ contraction lt
632
+ word ligesom 123-234
633
+ begnum ls 56-123-234
634
+ contraction ls
635
+ word lige 123
636
+ word lille 123-123
637
+ begnum ll 56-123-123
638
+ contraction ll
639
+
640
+ word mange 134-12456
641
+ word mge =
642
+ word med 134
643
+ word megen 146-126
644
+ word meen =
645
+ word meget 146-346
646
+ word meet =
647
+ word mellem 146-134
648
+ word mem =
649
+ word men 146
650
+ word menneske 146-123456-15
651
+ word meske =
652
+ word menneskes 146-123456-15-234
653
+ word meskes =
654
+ word menneskene 146-123456-15-1246
655
+ word meskene =
656
+ word menneskenes 146-123456-15-1246-234
657
+ word meskenes =
658
+ word mennesker 146-123456-156
659
+ word meskr =
660
+ word menneskers 146-123456-156-234
661
+ word meskrs =
662
+ word mennesket 146-123456-346
663
+ word meskt =
664
+ word menneskets 146-123456-346-234
665
+ word meskts =
666
+ word min 134-1345
667
+ begnum mn 56-134-1345
668
+ contraction mn
669
+ word mit 134-2345
670
+ begnum mt 56-134-2345
671
+ contraction mt
672
+ word mulighed 134-123-125
673
+ begnum mlh 56-134-123-125
674
+ contraction mlh
675
+ word muligheds 134-123-125-234
676
+ begnum mlhs 56-134-123-125-234
677
+ contraction mlhs
678
+ word muligheden 134-123-125-126
679
+ begnum mlhen 56-134-123-125-15-1345
680
+ contraction mlhen
681
+ word mulighedens 134-123-125-126-234
682
+ begnum mlhens 56-134-123-125-15-1345-234
683
+ contraction mlhens
684
+ word muligheder 134-123-125-156
685
+ word mlhder =
686
+ word muligheders 134-123-125-156-234
687
+ word mlhders =
688
+ word mulighederne 134-123-125-156-1246
689
+ word mlhderne =
690
+ word mulighedernes 134-123-125-156-1246-234
691
+ word mlhdernes =
692
+ word måske 134-123456
693
+ word msk =
694
+ word måtte 134-1256
695
+ word mte =
696
+
697
+ word naturlig 1345-2345-123
698
+ begnum ntl 56-1345-2345-123
699
+ contraction ntl
700
+ word naturligt 1345-2345-123-2345
701
+ begnum ntlt 56-1345-2345-123-2345
702
+ contraction ntlt
703
+ word naturligvis 1345-2345-1236
704
+ begnum ntv 56-1345-2345-1236
705
+ contraction ntv
706
+ word ned 1246
707
+ word nogen 1345-1345
708
+ begnum nn 56-1345-1345
709
+ contraction nn
710
+ word nogensinde 1345-234-1456
711
+ word nsde =
712
+ word noget 1345-2345
713
+ begnum nt 56-1345-2345
714
+ contraction nt
715
+ word nogle 1345-123-15
716
+ begnum nle 56-1345-123-15
717
+ contraction nle
718
+ word næste 1345-1256
719
+ word nte =
720
+ word næsten 1345-126
721
+ word nen =
722
+ word når 1345
723
+
724
+ word også 14-16
725
+ begnum cå 56-14-16
726
+ contraction cå
727
+ word og 14
728
+ word omkring 135-134-13
729
+ begnum omk 56-135-134-13
730
+ contraction omk
731
+ word op 135
732
+ word or =
733
+ word organisation 1346-1245-234
734
+ word orgs =
735
+ word organisations 1346-1245-234-234
736
+ word orgss =
737
+ word organisationen 1346-1245-234-126
738
+ word orgsen =
739
+ word organisationens 1346-1245-234-126-234
740
+ word orgsens =
741
+ word organisationer 1346-1245-234-156
742
+ word orgser =
743
+ word organisationers 1346-1245-234-156-234
744
+ word orgsers =
745
+ word organisationerne 1346-1245-234-156-1246
746
+ word orgserne =
747
+ word organisationernes 1346-1245-234-156-1246-234
748
+ word orgsernes =
749
+ word over 1346
750
+
751
+ word problem 1234-12
752
+ begnum pb 56-1234-12
753
+ contraction pb
754
+ word problems 1234-12-234
755
+ begnum pbs 56-1234-12-234
756
+ contraction pb
757
+ word problemet 1234-12-346
758
+ word pbet =
759
+ word problemets 1234-12-346-234
760
+ word pbets =
761
+ word problemer 1234-12-156
762
+ word pber =
763
+ word problemers 1234-12-156-234
764
+ word pbers =
765
+ word problemerne 1234-12-156-1246
766
+ word pberne =
767
+ word problemernes 1234-12-156-1246-234
768
+ word pbernes =
769
+ word punktskrift 1234-1345-123456
770
+ word pnsk =
771
+ word på 1234
772
+
773
+ word ret 12356
774
+ word rigtige 1235-12456
775
+ word rge =
776
+ word rigtigt 1235-2345
777
+ begnum rt 56-1235-2345
778
+ contraction rt
779
+ word rigtig 1235
780
+
781
+ word sagde 234-1456
782
+ word sammen 234-134
783
+ begnum sm 56-234-134
784
+ contraction sm
785
+ word samme 234-146
786
+ word sme =
787
+ word samtidig 234-134-2345
788
+ begnum smt 56-234-134-2345
789
+ contraction smt
790
+ word selvfølgelig 234-1236-124
791
+ begnum svf 56-234-1236-124
792
+ contraction svf
793
+ word selv 234-1236
794
+ begnum sv 56-234-1236
795
+ contraction sv
796
+ word sidste 234-1356-15
797
+ word sste =
798
+ word sidst 234-1356
799
+ word sst =
800
+ word sin 234-1345
801
+ begnum sn 56-234-1345
802
+ contraction sn
803
+ word sit 234-2345
804
+ begnum st 56-234-2345
805
+ contraction st
806
+ word skal 123456
807
+ word skulle 123456-123-15
808
+ word skle =
809
+ word snart 234-1235
810
+ begnum sr 56-234-1235
811
+ contraction sr
812
+ word som 234
813
+ word spørgsmål 234-1234-134
814
+ begnum spm 56-234-1234-134
815
+ contraction spm
816
+ word spørgsmåls 234-1234-134-234
817
+ begnum spms 56-234-1234-134-234
818
+ contraction spms
819
+ word spørgsmålet 234-1234-134-346
820
+ word spmet =
821
+ word spørgsmålets 234-1234-134-346-234
822
+ word spmets =
823
+ word spørgsmålene 234-1234-134-1246
824
+ word spmne =
825
+ word spørgsmålenes 234-1234-134-1246-234
826
+ word spmnes =
827
+ word stadig 1356-1245
828
+ word stg =
829
+ word sådan 16-1
830
+ begnum åa 56-16-1
831
+ contraction åa
832
+ word således 16-15
833
+ begnum åe 56-16-15
834
+ contraction åe
835
+ word så 16
836
+
837
+ word tid 2345-145
838
+ begnum td 56-2345-145
839
+ contraction td
840
+ word tidlig 2345-145-123
841
+ begnum tdl 56-2345-145-123
842
+ contraction tdl
843
+ word tidlige 2345-145-123-12456
844
+ word tdlge =
845
+ word tidligere 2345-145-123-12356
846
+ word tdlre =
847
+ word tidligst 2345-145-123-1356
848
+ word tdlst =
849
+ word tilbage 2345-12
850
+ begnum tb 56-2345-12
851
+ contraction tb
852
+ word tilfælde 2345-124
853
+ begnum tf 56-2345-124
854
+ contraction tf
855
+ word til 2345
856
+
857
+ word under 12345
858
+
859
+ word vanskelig 1236-123456
860
+ word vsk =
861
+ word vanskelige 1236-123456-15
862
+ word vske =
863
+ word vanskeligt 1236-123456-2345
864
+ word vskt =
865
+ word var 3456
866
+ word ved 1236
867
+ word vidste 1236-1356-15
868
+ word vste =
869
+ word ville 1236-123-15
870
+ begnum vle 56-1236-123-15
871
+ contraction vle
872
+ word vil 1236-123
873
+ begnum vl 56-1236-123
874
+ contraction vl
875
+ word virkelig 1236-1235-13
876
+ begnum vrk 56-1236-1235-13
877
+ contraction vrk
878
+ word været 1236-2345
879
+ begnum vt 56-1236-2345
880
+ contraction vt
881
+ word være 345
882
+
883
+
884
+ word øjeblik 246-245-12
885
+ begnum øjb 56-246-245-12
886
+ contraction øjb
887
+
888
+ #Part words and words
889
+ begword dansk 145-123456
890
+ begword dsk =
891
+ nocross always den 12346
892
+ nocross always der 23456
893
+ nocross always det 2346
894
+ nocross always de 1456
895
+ nocross always en 126
896
+ nocross always er 156
897
+ nocross always et 346
898
+ nocross begword gang 1245-1245
899
+ begword gg 56-1245-1245
900
+ nocross begword gange 1245-1-1345-12456 # *** temporary patch
901
+ nocross partword ge 12456
902
+ begword hjælpe 125-1234-15
903
+ nocross partword hv 2456
904
+ nocross partword ig 35
905
+ begword kvinde 13-1236-1456
906
+ begword kvde =
907
+ nocross partword me 146
908
+ begword menneske 146-123456-15
909
+ begword meske =
910
+ nocross partword nd 12345
911
+ nocross partword ne 1246
912
+ nocross partword or 1346
913
+ begword organisation 1346-1245-234
914
+ begword orgs =
915
+ begword problem 1234-12
916
+ nocross partword re 12356
917
+ nocross partword sk 123456
918
+ nocross partword st 1356
919
+ nocross always te 1256
920
+ begword virkelig 1236-1235-13
921
+ always www 2456-2456-2456
922
+
923
+ # Numsign/"ve", special case when back-translating
924
+ noback nocross partword ve 3456
925
+
926
+ # Additional words containing "hvor"
927
+ # these are made explicit in 6-dots to handle / better
928
+
929
+ word hvoraf 34-1-124
930
+ word hvorfra 34-124-1235-1
931
+ word hvorhen 34-125-126
932
+ word hvorhenne 34-125-126-1246
933
+ word hvori 34-24
934
+ word hvoriblandt 34-24-12-123-1-12345-2345
935
+ word hvorimellem 34-24-146-123-123-15-134
936
+ word hvorimod 34-24-134-135-145
937
+ word hvorlænge 34-123-345-1345-12456
938
+ word hvormange 34-134-1-1345-12456
939
+ word hvorom 34-135-134
940
+ word hvormeget 34-146-1245-346
941
+ word hvorudfra 34-136-145-124-1235-1
942
+ word hvorvidt 34-1236-24-145-2345
943
+ word ihvorvel 24-34-3456-123
944
+
945
+ # Rules and corrections for back-translation
946
+
947
+ #ve special case
948
+ nofor midendword ve 3456
949
+
950
+ # nondigletters covers small letters from k + various part word contractions with dots 5 or 6. Necesary to ensure correct back-translation.
951
+ attribute nondigletter klmnopqrstuvwxyzæøå\x017e\x00e0\x00e7\x00e8\x00e9\x00ea\x00eb\x00ee\x00ef\x00f4\x00f9\x00fb\x00fc\x283f\x2829\x282b\x2837
952
+ nofor before nondigletter begword ve 3456
953
+ nofor before nondigletter begword vea 3456-1
954
+ nofor sufword veade 3456-1-1456
955
+ nofor sufword veader 3456-1-23456
956
+ nofor sufword veage 3456-1-12456
957
+ nofor before nondigletter begword veag 3456-1-1245
958
+
959
+ # veb
960
+ nofor before nondigletter begword veb 3456-12
961
+ nofor before nondigletter begword veba 3456-12-1
962
+ nofor before nondigletter begword vebb 3456-12-12
963
+ nofor sufword vebbest 3456-12-12-15-1356
964
+ nofor before nondigletter begword vebe 3456-12-15
965
+ nofor before nondigletter begword vebi 3456-12-24
966
+
967
+ # vec
968
+ nofor before nondigletter begword vec 3456-14
969
+ nofor before nondigletter begword vecchi 3456-14-14-125-24
970
+
971
+ # ved
972
+ nofor before nondigletter begword ved 3456-145
973
+ nofor before nondigletter begword veda 3456-145-1
974
+ nofor sufword vedaer 3456-145-1-156
975
+ nofor before nondigletter begword vedb 3456-145-12
976
+ nofor sufword vedben 3456-145-12-126
977
+ nofor sufword vedbend 3456-145-12-15-12345
978
+ nofor sufword vedbenden 3456-145-12-126-12346
979
+ nofor before nondigletter begword vedc 3456-145-14
980
+ nofor before nondigletter begword vedd 3456-145-145
981
+ nofor before nondigletter begword vedda 3456-145-145-1
982
+ nofor sufword vedde 3456-145-1456
983
+ nofor sufword veddet 3456-145-2346
984
+ nofor sufword vede 3456-1456
985
+ nofor sufword veden 3456-12346
986
+ nofor sufword veder 3456-23456
987
+ nofor sufword vedet 3456-2346
988
+ nofor before nondigletter begword vedf 3456-145-124
989
+ nofor before nondigletter begword vedfa 3456-145-124-1
990
+ nofor before nondigletter begword vedfe 3456-145-124-15
991
+ nofor before nondigletter begword vedfi 3456-145-124-24
992
+ nofor before nondigletter begword vedg 3456-145-1245
993
+ nofor before nondigletter begword vedga 3456-145-1245-1
994
+ nofor sufword vedge 3456-145-12456
995
+ nofor before nondigletter begword vedgi 3456-145-1245-24
996
+ nofor before nondigletter begword vedh 3456-145-125
997
+ nofor before nondigletter begword vedha 3456-145-125-1
998
+ nofor before nondigletter begword vedhe 3456-145-125-15
999
+ nofor before nondigletter begword vedhef 3456-145-125-15-124
1000
+ nofor sufword vedhefte 3456-145-125-15-124-1256
1001
+ nofor before nondigletter begword vedhi 3456-145-125-24
1002
+ nofor before nondigletter begword vedi 3456-145-24
1003
+ nofor before nondigletter begword vedj 3456-145-245
1004
+ nofor sufword vedst 3456-145-1356
1005
+ nofor sufword vedte 3456-145-1256
1006
+
1007
+ # vee
1008
+ nofor before nondigletter begword vee 3456-15
1009
+ nofor before nondigletter begword veeb 3456-15-12
1010
+ nofor sufword veen 3456-126
1011
+ nofor sufword veer 3456-156
1012
+ nofor sufword veet 3456-346
1013
+
1014
+ # vef
1015
+ nofor before nondigletter begword vef 3456-124
1016
+ nofor before nondigletter begword vefa 3456-124-1
1017
+ nofor before nondigletter begword vefe 3456-124-15
1018
+ nofor before nondigletter begword vefi 3456-124-24
1019
+
1020
+ # veg
1021
+ nofor before nondigletter begword veg 3456-1245
1022
+ nofor before nondigletter begword vega 3456-1245-1
1023
+ nofor sufword vege 3456-12456
1024
+ nofor sufword vegen 3456-1245-126
1025
+ nofor word veget 3456-1245-346
1026
+ nofor sufword vegger 3456-1245-1245-156
1027
+ nofor before nondigletter begword vegi 3456-1245-24
1028
+ nofor sufword vegst 3456-1245-1356
1029
+
1030
+ # veh
1031
+ nofor before nondigletter begword veh 3456-125
1032
+ nofor before nondigletter begword veha 3456-125-1
1033
+ nofor sufword vehand 3456-125-1-12345
1034
+ nofor sufword vehage 3456-125-1-23456
1035
+ nofor before nondigletter begword vehe 3456-125-15
1036
+ nofor before nondigletter begword vehi 3456-125-24
1037
+
1038
+ # vei
1039
+ nofor before nondigletter begword vei 3456-24
1040
+ nofor before nondigletter begword veibe 3456-24-12-15
1041
+ nofor sufword veide 3456-24-1456
1042
+ nofor sufword veien 3456-24-126
1043
+ nofor sufword veige 3456-24-12456
1044
+ nofor before nondigletter begword veij 3456-24-245
1045
+ nofor sufword veind 3456-24-12345
1046
+
1047
+ # vej
1048
+ nofor before nondigletter begword vej 3456-245
1049
+ nofor before nondigletter begword veja 3456-245-1
1050
+ nofor before nondigletter begword vejadga 3456-245-1-145-1245-1
1051
+ nofor before nondigletter begword vejaf 3456-245-1-124
1052
+ nofor sufword vejafde 3456-245-1-124-1456
1053
+ nofor before nondigletter begword vejafgif 3456-245-1-124-1245-24-124
1054
+ nofor before nondigletter begword vejb 3456-245-12
1055
+ nofor before nondigletter begword vejba 3456-245-12-1
1056
+ nofor before nondigletter begword vejbe 3456-245-12-15
1057
+ nofor before nondigletter begword vejbi 3456-245-12-24
1058
+ nofor before nondigletter begword vejbid 3456-245-12-24-145
1059
+ nofor before nondigletter begword vejc 3456-245-14
1060
+ nofor before nondigletter begword vejd 3456-245-145
1061
+ nofor before nondigletter begword vejda 3456-245-145-1
1062
+ nofor sufword vejde 3456-245-1456
1063
+ nofor before nondigletter begword vejdi 3456-245-145-24
1064
+ nofor before nondigletter begword veje 3456-245-15
1065
+ nofor before nondigletter begword vejea 3456-245-15-1
1066
+ nofor before nondigletter begword vejeb 3456-245-15-12
1067
+ nofor before nondigletter begword vejed 3456-245-15-145
1068
+ nofor before nondigletter begword vejeda 3456-245-15-145-1
1069
+ nofor sufword vejede 3456-245-15-1456
1070
+ nofor before nondigletter begword vejef 3456-245-15-124
1071
+ nofor before nondigletter begword vejeg 3456-245-15-1245
1072
+ nofor sufword vejege 3456-245-15-12456
1073
+ nofor sufword vejen 3456-245-126
1074
+ nofor sufword vejene 3456-245-15-1246
1075
+ nofor sufword vejer 3456-245-156
1076
+ nofor word vejet 3456-245-346
1077
+ nofor before nondigletter begword vejf 3456-245-124
1078
+ nofor before nondigletter begword vejfa 3456-245-124-1
1079
+ nofor before nondigletter begword vejfe 3456-245-124-15
1080
+ nofor sufword vejfest 3456-245-124-15-1356
1081
+ nofor before nondigletter begword vejfi 3456-245-124-24
1082
+ nofor begword vejfor 3456-245-124-1346
1083
+ nofor before nondigletter begword vejg 3456-245-1245
1084
+ nofor before nondigletter begword vejga 3456-245-1245-1
1085
+ nofor before nondigletter begword vejgaa 3456-245-1245-1-1
1086
+ nofor sufword vejge 3456-245-12456
1087
+ nofor before nondigletter begword vejgi 3456-245-1245-24
1088
+ nofor before nondigletter begword vejh 3456-245-125
1089
+ nofor before nondigletter begword vejha 3456-245-125-1
1090
+ nofor before nondigletter begword vejhe 3456-245-125-15
1091
+ nofor before nondigletter begword vejhi 3456-245-125-24
1092
+ nofor sufword vejhist 3456-245-125-24-1356
1093
+ nofor before nondigletter begword vejhj 3456-245-125-245
1094
+ nofor before nondigletter begword veji 3456-245-24
1095
+ nofor before nondigletter begword vejid 3456-245-24-145
1096
+ nofor before nondigletter begword vejj 3456-245-245
1097
+ nofor before nondigletter begword vejja 3456-245-245-1
1098
+ nofor before nondigletter begword vejje 3456-245-245-15
1099
+ nofor before nondigletter begword vejji 3456-245-245-24
1100
+ nofor sufword vejor 3456-245-1346
1101
+ nofor begword vejst 3456-245-1356
1102
+
1103
+ nofor always vend 3456-12345
1104
+ nofor always veor 3456-1346
1105
+ nofor always vest 3456-1356
1106
+ nofor always vete 3456-1256
1107
+
1108
+ # Corrections of letters with accents
1109
+ nofor sufword aïda 1-5-24-145-1
1110
+ nofor sufword anaïs 1-1345-1-5-24-234
1111
+ nofor sufword antonín 1-1345-2345-135-1345-5-24-1345
1112
+ nofor sufword château 14-125-5-1-1256-1-136
1113
+ nofor sufword citroën 14-24-2345-1235-135-5-15-1345
1114
+ nofor sufword dvořák 145-1236-135-5-1235-5-1-13
1115
+ nofor sufword márquez 134-5-1-1235-56-12345-136-15-56-1356
1116
+ nofor sufword miró 134-24-1235-5-135
1117
+ nofor sufword tórshavn 2345-5-135-1235-234-125-1-1236-1345
1118
+ nofor sufword václav 1236-5-1-14-123-1-1236
1119
+
1120
+ # Common combinations of one word contractions with slash
1121
+ word af/på 356-34-1234
1122
+ word du/i 145-34-24
1123
+ word eller/og 15-34-14
1124
+ word fra/til 235-34-2345
1125
+ word han/hun 13456-34-136
1126
+ word hun/han 136-34-13456
1127
+ word i/du 24-34-145
1128
+ word og/eller 14-34-15
1129
+ word over/under 1346-34-12345
1130
+ word på/af 1234-34-356
1131
+ word til/fra 2345-34-235
1132
+ word under/over 12345-34-1346
1133
+
1134
+ # no backtrans of ^1 and `2. use contractions
1135
+ nofor always eta 346-1
1136
+ nofor always etb 346-12
1137
+ always etc 346-14
1138
+
1139
+ # Ensure no one-letter word contraction before or after a dash
1140
+ prfword -af 36-1-124
1141
+ sufword af- 1-124-36
1142
+ prfword -altid 36-1-2345-145
1143
+ sufword altid- 1-2345-145-36
1144
+ prfword -at 36-1-2345
1145
+ prfword -a 36-56-1
1146
+ sufword at- 1-2345-36
1147
+ prfword -og 36-135-1245
1148
+ prfword -c 36-56-14
1149
+ sufword og- 135-1245-36
1150
+ prfword -du 36-145-136
1151
+ prfword -d 36-56-145
1152
+ sufword du- 145-136-36
1153
+ prfword -efter 36-15-124-2345-156
1154
+ prfword -z 36-56-1356
1155
+ sufword efter- 15-124-2345-156-36
1156
+ midword -efter- 36-1356-36
1157
+ prfword -e 36-56-15
1158
+ prfword -for 36-124-1346
1159
+ prfword -f 36-56-124
1160
+ sufword for- 124-1346-36
1161
+ prfword -fra 36-124-1235-1
1162
+ sufword fra- 124-1235-1-36
1163
+ prfword -g 36-56-1245
1164
+ prfword -gennem 36-1245-126-1246-134
1165
+ sufword gennem- 1245-126-1246-134-36
1166
+ prfword -ham 36-125-1-134
1167
+ sufword ham- 125-1-134-36
1168
+ prfword -han 36-125-1-1345
1169
+ prfword -y 36-56-13456
1170
+ sufword han- 125-1-1345-36
1171
+ prfword -har 36-125-1-1235
1172
+ prfword -h 36-56-125
1173
+ sufword har- 125-1-1235-36
1174
+ prfword -hun 36-125-136-1345
1175
+ prfword -u 36-56-136
1176
+ sufword hun- 125-136-1345-36
1177
+ prfword -j 36-56-245
1178
+ prfword -kan 36-13-1-1345
1179
+ prfword -k 36-56-13
1180
+ sufword kan- 13-1-1345-36
1181
+ prfword -lige 36-123-24-12456
1182
+ prfword -l 36-56-123
1183
+ sufword lige- 123-24-12456-36
1184
+ prfword -med 36-146-145
1185
+ prfword -m 36-56-134
1186
+ sufword med- 146-145-36
1187
+ prfword -men 36-134-126
1188
+ sufword men- 134-126-36
1189
+ prfword -ned 36-1246-145
1190
+ sufword ned- 1246-145-36
1191
+ prfword -når 36-1345-16-1235
1192
+ prfword -n 36-56-1345
1193
+ sufword når- 1345-16-1235-36
1194
+ prfword -op 36-135-1234
1195
+ prfword -o 36-56-135
1196
+ sufword op- 135-1234-36
1197
+ prfword -over 36-135-1236-156
1198
+ prfword -x 36-56-1346
1199
+ sufword over- 135-1236-156-36
1200
+ prfword -på 36-1234-16
1201
+ prfword -p 36-56-1234
1202
+ sufword på- 1234-16-36
1203
+ midword -på- 36-1234-36
1204
+ prfword -ret 36-1235-346
1205
+ sufword ret- 1235-346-36
1206
+ midword -ret- 36-12356-36
1207
+ prfword -à 36-56-12356
1208
+ prfword -rigtig 36-1235-35-2345-35
1209
+ prfword -r 36-56-1235
1210
+ sufword rigtig- 1235-35-2345-35-36
1211
+ midword -rigtig- 36-1235-36
1212
+ prfword -skal 36-123456-1-123
1213
+ sufword skal- 123456-1-123-36
1214
+ midword -skal- 36-123456-36
1215
+ prfword -é 36-56-123456
1216
+ prfword -som 36-234-135-134
1217
+ prfword -s 36-56-234
1218
+ sufword som- 234-135-134-36
1219
+ midword -som- 36-234-36
1220
+ prfword -så 36-234-16
1221
+ prfword -å 36-56-16
1222
+ sufword så- 234-16-36
1223
+ prfword -til 36-2345-24-123
1224
+ prfword -t 36-56-2345
1225
+ sufword til- 2345-24-123-36
1226
+ midword -til- 36-2345-36
1227
+ prfword -under 36-136-1345-23456
1228
+ sufword under- 136-1345-23456-36
1229
+ midword -under- 36-12345-36
1230
+ prfword -var 36-1236-1-1235
1231
+ sufword var- 1236-1-1235-36
1232
+ midword -var- 36-3456-36
1233
+ prfword -ved 36-1236-15-145
1234
+ prfword -v 36-56-1236
1235
+ sufword ved- 1236-15-145-36
1236
+ midword -ved- 36-1236-36
1237
+
1238
+
1239
+ ### Context rules - forward translation
1240
+
1241
+ # Exclamation at beginning of string
1242
+ noback context `["!"] @56-235
1243
+
1244
+ # Ensure two dashes where appropriate.
1245
+ noback context $w["-"]$w @36
1246
+ noback context $sw["-"]"\xf800\xf801" @36
1247
+ noback context $sw["-"]$sw @36-36
1248
+ noback context `["-"]$sw @36-36
1249
+ noback context $sw["-"]~ @36-36
1250
+ noback context !$sw["-"]~ @36
1251
+ noback context `["-"]~ @36-36
1252
+
1253
+ # Ensure letsign between letter and numsign
1254
+ noback context $l[]$D @56
1255
+
1256
+
1257
+ ### context - backward translation
1258
+
1259
+ # Ensure the correct number of dashes
1260
+ nofor context @36[@36-36] "--"
1261
+ nofor context [@36-36]@36 "--"
1262
+ nofor context $w[@36-36]$w "--"
1263
+ nofor context $sw[@36-36]$sw "-"
1264
+ nofor context `[@36-36]$sw "-"
1265
+ nofor context $sw[@36-36]~ "-"
1266
+ nofor context `@36-36~ "-"
1267
+
1268
+
1269
+ ### Pass 2 - forward translation
1270
+
1271
+ # No "nd", "hv", "or", or "st" after a digit and a letsign
1272
+ noback pass2 @234f-123f-2456 @56-125-1236
1273
+ noback pass2 @234f-123f-12345 @56-1345-145
1274
+ noback pass2 @234f-123f-1346 @56-135-1235
1275
+ noback pass2 @234f-123f-1356 @56-234-2345
1276
+ noback pass2 @234f-123f-1256 @56-2345-15
1277
+ # extra lines to correct hyphenation errors caused by \xf801
1278
+ noback pass2 @234f-123f-135-3456-1235 @56-135-1236-156
1279
+ noback pass2 @234f-123f-3456 @56-1236-15
1280
+
1281
+ noback pass2 @234f-123f @56
1282
+
1283
+ # Correct chars defined as 8 dots because they include letsign
1284
+ noback pass2 @467 @45-23
1285
+ noback pass2 @4568 @45-456
1286
+ noback pass2 @123457 @56-12345
1287
+ noback pass2 @24567 @56-2456
1288
+ noback pass2 @13467 @56-1346
1289
+ noback pass2 @13567 @56-1356
1290
+ noback pass2 @123567 @56-12356
1291
+ noback pass2 @23467 @56-2346
1292
+ noback pass2 @1234567 @56-123456
1293
+ noback pass2 @12567 @56-1256
1294
+
1295
+ #special case for www
1296
+ noback pass2 @24567-24567-24567 @2456-2456-2456
1297
+
1298
+ noback pass2 @56-5 @5 # no letsign before letters with accent
1299
+ noback pass2 @56-6-5 @6-5 # no letsign before cap letters with accent
1300
+ noback pass2 @234f-123f-6-5 @6-5 # no letsign before cap letters with accent
1301
+ noback pass2 _$D[@56-6-56] *
1302
+ noback pass2 _$D[@56-6] *
1303
+
1304
+ ### Pass 2 - backward
1305
+
1306
+ #special case for www
1307
+ nofor pass2 @2456-2456-2456 @24567-24567-24567
1308
+
1309
+ ### Pass 3 - forward translation
1310
+ noback pass3 @56-6-56 @56-6 # Ensure correct order and no double letsign
1311
+ noback pass3 @6-56 @56-6 # Ensure correct order
1312
+
1313
+ # Ensure there is only one letsign
1314
+ noback pass3 @56-56 @56
1315
+
1316
+ # Ensure there is only one emphasis sign
1317
+ noback pass3 @46-46 @46
1318
+ noback pass3 @46-46-46 @46
1319
+
1320
+ ### Pass 3 - backward translation
1321
+
1322
+ # Save letters that have been defined with letsign as part of their definitions
1323
+ nofor pass3 @56-6-12345 @6-123457
1324
+ nofor pass3 @56-12345 @123457
1325
+ nofor pass3 @56-6-2456 @6-24567
1326
+ nofor pass3 @56-2456 @24567
1327
+ nofor pass3 @56-6-1346 @6-13467
1328
+ nofor pass3 @56-1346 @13467
1329
+ nofor pass3 @56-6-1356 @6-13567
1330
+ nofor pass3 @56-1356 @13567
1331
+ nofor pass3 @56-6-12356 @6-123567
1332
+ nofor pass3 @56-12356 @123567
1333
+ nofor pass3 @56-6-2346 @6-23467
1334
+ nofor pass3 @56-2346 @23467
1335
+ nofor pass3 @56-6-123456 @6-1234567
1336
+ nofor pass3 @56-123456 @1234567
1337
+ nofor pass3 @56-6-1256 @6-12567
1338
+ nofor pass3 @56-1256 @12567
1339
+
1340
+ # save ~ and | before inserting extra letsigns and endcapsword in pass 2.
1341
+ nofor pass3 @45-23 @467 # Create alternative representation of "~"
1342
+ nofor pass3 @45-456 @4568
1343
+
1344
+ # Include hyphenation file as the last thing
1345
+ include da-dk-g2.dic