keymap_canadian_multilingual.h 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433
  1. /* Copyright 2020
  2. *
  3. * This program is free software: you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License as published by
  5. * the Free Software Foundation, either version 2 of the License, or
  6. * (at your option) any later version.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #pragma once
  17. #include "keymap.h"
  18. // clang-format off
  19. /*
  20. * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐
  21. * │ / │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ - │ = │ │
  22. * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤
  23. * │ │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ ^ │ Ç │ │
  24. * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐ │
  25. * │ │ A │ S │ D │ F │ G │ H │ J │ K │ L │ ; │ È │ À │ │
  26. * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤
  27. * │ │ Ù │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ É │ │
  28. * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤
  29. * │ │ │ │ │ │ │ │ │
  30. * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘
  31. */
  32. // Row 1
  33. #define CA_SLSH KC_GRV // /
  34. #define CA_1 KC_1 // 1
  35. #define CA_2 KC_2 // 2
  36. #define CA_3 KC_3 // 3
  37. #define CA_4 KC_4 // 4
  38. #define CA_5 KC_5 // 5
  39. #define CA_6 KC_6 // 6
  40. #define CA_7 KC_7 // 7
  41. #define CA_8 KC_8 // 8
  42. #define CA_9 KC_9 // 9
  43. #define CA_0 KC_0 // 0
  44. #define CA_MINS KC_MINS // -
  45. #define CA_EQL KC_EQL // =
  46. // Row 2
  47. #define CA_Q KC_Q // Q
  48. #define CA_W KC_W // W
  49. #define CA_E KC_E // E
  50. #define CA_R KC_R // R
  51. #define CA_T KC_T // T
  52. #define CA_Y KC_Y // Y
  53. #define CA_U KC_U // U
  54. #define CA_I KC_I // I
  55. #define CA_O KC_O // O
  56. #define CA_P KC_P // P
  57. #define CA_CIRC KC_LBRC // ^ (dead)
  58. #define CA_CCED KC_RBRC // Ç
  59. // Row 3
  60. #define CA_A KC_A // A
  61. #define CA_S KC_S // S
  62. #define CA_D KC_D // D
  63. #define CA_F KC_F // F
  64. #define CA_G KC_G // G
  65. #define CA_H KC_H // H
  66. #define CA_J KC_J // J
  67. #define CA_K KC_K // K
  68. #define CA_L KC_L // L
  69. #define CA_SCLN KC_SCLN // ;
  70. #define CA_EGRV KC_QUOT // É
  71. #define CA_AGRV KC_NUHS // À
  72. // Row 4
  73. #define CA_UGRV KC_NUBS // Ù
  74. #define CA_Z KC_Z // Z
  75. #define CA_X KC_X // X
  76. #define CA_C KC_C // C
  77. #define CA_V KC_V // V
  78. #define CA_B KC_B // B
  79. #define CA_N KC_N // N
  80. #define CA_M KC_M // M
  81. #define CA_COMM KC_COMM // ,
  82. #define CA_DOT KC_DOT // .
  83. #define CA_EACU KC_SLSH // É
  84. /* Shifted symbols
  85. * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐
  86. * │ \ │ ! │ @ │ # │ $ │ % │ ? │ & │ * │ ( │ ) │ _ │ + │ │
  87. * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤
  88. * │ │ │ │ │ │ │ │ │ │ │ │ ¨ │ │ │
  89. * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐ │
  90. * │ │ │ │ │ │ │ │ │ │ │ : │ │ │ │
  91. * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤
  92. * │ │ │ │ │ │ │ │ │ │ ' │ " │ │ │
  93. * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤
  94. * │ │ │ │ │ │ │ │ │
  95. * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘
  96. */
  97. // Row 1
  98. #define CA_BSLS S(CA_SLSH) // (backslash)
  99. #define CA_EXLM S(CA_1) // !
  100. #define CA_AT S(CA_2) // @
  101. #define CA_HASH S(CA_3) // #
  102. #define CA_DLR S(CA_4) // $
  103. #define CA_PERC S(CA_5) // %
  104. #define CA_QUES S(CA_6) // ?
  105. #define CA_AMPR S(CA_7) // &
  106. #define CA_ASTR S(CA_8) // *
  107. #define CA_LPRN S(CA_9) // (
  108. #define CA_RPRN S(CA_0) // )
  109. #define CA_UNDS S(CA_MINS) // _
  110. #define CA_PLUS S(CA_EQL) // +
  111. // Row 2
  112. #define CA_DIAE S(CA_CIRC) // ¨ (dead)
  113. // Row 3
  114. #define CA_COLN S(CA_SCLN) // :
  115. // Row 4
  116. #define CA_QUOT S(CA_COMM) // '
  117. #define CA_DQUO S(CA_DOT) // "
  118. /* AltGr symbols
  119. * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐
  120. * │ | │ │ │ │ ¤ │ │ │ { │ } │ [ │ ] │ │ ¬ │ │
  121. * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤
  122. * │ │ │ │ € │ │ │ │ │ │ │ │ ` │ ~ │ │
  123. * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐ │
  124. * │ │ │ │ │ │ │ │ │ │ │ ° │ │ │ │
  125. * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤
  126. * │ │ │ « │ » │ │ │ │ │ │ < │ > │ │ │
  127. * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤
  128. * │ │ │ │ │ │ │ │ │
  129. * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘
  130. */
  131. // Row 1
  132. #define CA_PIPE ALGR(CA_SLSH) // |
  133. #define CA_CURR ALGR(CA_4) // ¤
  134. #define CA_LCBR ALGR(CA_7) // {
  135. #define CA_RCBR ALGR(CA_8) // }
  136. #define CA_LBRC ALGR(CA_9) // [
  137. #define CA_RBRC ALGR(CA_0) // ]
  138. #define CA_NOT ALGR(CA_EQL) // ¬
  139. // Row 2
  140. #define CA_EURO ALGR(CA_E) // €
  141. #define CA_GRV ALGR(CA_CIRC) // ` (dead)
  142. #define CA_DTIL ALGR(CA_CCED) // ~ (dead)
  143. // Row 3
  144. #define CA_DEG ALGR(CA_SCLN) // °
  145. // Row 4
  146. #define CA_LDAQ ALGR(CA_Z) // «
  147. #define CA_RDAQ ALGR(CA_X) // »
  148. #define CA_LABK ALGR(CA_COMM) // <
  149. #define CA_RABK ALGR(CA_DOT) // >
  150. /* Right Ctrl symbols
  151. * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐
  152. * │ │ ¹ │ ² │ ³ │ ¼ │ ½ │ ¾ │ │ │ │ │ │ ¸ │ │
  153. * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤
  154. * │ │ Ω │ Ł │ Œ │ ¶ │ Ŧ │ ← │ ↓ │ → │ Ø │ Þ │ │ ~ │ │
  155. * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐ │
  156. * │ │ Æ │ ß │ Ð │ │ Ŋ │ Ħ │ IJ │ ĸ │ Ŀ │ ´ │ │ │ │
  157. * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤
  158. * │ │ │ │ │ ¢ │ “ │ ” │ ʼn │ μ │ ― │ ˙ │ │ │
  159. * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤
  160. * │ │ │ │ │ │ │ │ │
  161. * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘
  162. */
  163. // Row 1
  164. #define CA_SUP1 RCTL(CA_1) // ¹
  165. #define CA_SUP2 RCTL(CA_2) // ²
  166. #define CA_SUP3 RCTL(CA_3) // ³
  167. #define CA_QRTR RCTL(CA_4) // ¼
  168. #define CA_HALF RCTL(CA_5) // ½
  169. #define CA_TQTR RCTL(CA_6) // ¾
  170. #define CA_CEDL RCTL(CA_EQL) // ¸ (dead)
  171. // Row 2
  172. #define CA_OMEG RCTL(CA_Q) // Ω
  173. #define CA_LSTR RCTL(CA_W) // Ł
  174. #define CA_OE RCTL(CA_E) // Œ
  175. #define CA_PARA RCTL(CA_R) // ¶
  176. #define CA_TSTR RCTL(CA_T) // Ŧ
  177. #define CA_LARR RCTL(CA_Y) // ←
  178. #define CA_DARR RCTL(CA_U) // ↓
  179. #define CA_RARR RCTL(CA_I) // →
  180. #define CA_OSTR RCTL(CA_O) // Ø
  181. #define CA_THRN RCTL(CA_P) // Þ
  182. #define CA_TILD RCTL(CA_CCED) // ~
  183. // Row 3
  184. #define CA_AE RCTL(CA_A) // Æ
  185. #define CA_SS RCTL(CA_S) // ß
  186. #define CA_ETH RCTL(CA_D) // Ð
  187. #define CA_ENG RCTL(CA_G) // Ŋ
  188. #define CA_HSTR RCTL(CA_H) // Ħ
  189. #define CA_IJ RCTL(CA_J) // IJ
  190. #define CA_KRA RCTL(CA_K) // ĸ
  191. #define CA_LMDT RCTL(CA_L) // Ŀ
  192. #define CA_ACUT RCTL(CA_SCLN) // ´ (dead)
  193. // Row 4
  194. #define CA_CENT RCTL(CA_C) // ¢
  195. #define CA_LDQU RCTL(CA_V) // “
  196. #define CA_RDQU RCTL(CA_B) // ”
  197. #define CA_APSN RCTL(CA_N) // ʼn
  198. #define CA_MICR RCTL(CA_M) // μ
  199. #define CA_HRZB RCTL(CA_COMM) // ―
  200. #define CA_DOTA RCTL(CA_DOT) // ˙ (dead)
  201. /* Shift+Right Ctrl symbols
  202. * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐
  203. * │ - │ ¡ │ │ £ │ │ ⅜ │ ⅝ │ ⅞ │ ™ │ ± │ │ ¿ │ ˛ │ │
  204. * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤
  205. * │ │ │ │ │ ® │ │ ¥ │ ↑ │ ı │ │ │ ° │ ¯ │ │
  206. * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐ │
  207. * │ │ │ § │ │ ª │ │ │ │ │ │ ˝ │ ˇ │ ˘ │ │
  208. * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤
  209. * │ │ ¦ │ │ │ © │ ‘ │ ’ │ ♪ │ º │ × │ ÷ │ │ │
  210. * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤
  211. * │ │ │ │ │ │ │ │ │
  212. * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘
  213. */
  214. // Row 1
  215. #define CA_SHYP RCTL(S(CA_SLSH)) // ­ (soft hyphen)
  216. #define CA_IEXL RCTL(S(CA_1)) // ¡
  217. #define CA_PND RCTL(S(CA_3)) // £
  218. #define CA_TEIG RCTL(S(CA_5)) // ⅜
  219. #define CA_FEIG RCTL(S(CA_6)) // ⅝
  220. #define CA_SEIG RCTL(S(CA_7)) // ⅞
  221. #define CA_TM RCTL(S(CA_8)) // ™
  222. #define CA_PLMN RCTL(S(CA_9)) // ±
  223. #define CA_IQUE RCTL(S(CA_MINS)) // ¿
  224. #define CA_OGON RCTL(S(CA_EQL)) // ˛ (dead)
  225. // Row 2
  226. #define CA_REGD RCTL(S(CA_R)) // ®
  227. #define CA_YEN RCTL(S(CA_Y)) // ¥
  228. #define CA_UARR RCTL(S(CA_U)) // ↑
  229. #define CA_DLSI RCTL(S(CA_I)) // ı
  230. #define CA_RNGA RCTL(S(CA_CIRC)) // ° (dead)
  231. #define CA_MACR RCTL(S(CA_CCED)) // ¯ (dead)
  232. // Row 3
  233. #define CA_SECT RCTL(S(CA_S)) // §
  234. #define CA_FORD RCTL(S(CA_F)) // ª
  235. #define CA_DACU RCTL(S(CA_SCLN)) // ˝ (dead)
  236. #define CA_CARN RCTL(S(CA_EGRV)) // ˇ (dead)
  237. #define CA_BREV RCTL(S(CA_AGRV)) // ˘ (dead)
  238. // Row 4
  239. #define CA_BRKP RCTL(S(CA_UGRV)) // ¦
  240. #define CA_COPY RCTL(S(CA_C)) // ©
  241. #define CA_LSQU RCTL(S(CA_V)) // ‘
  242. #define CA_RSQU RCTL(S(CA_B)) // ’
  243. #define CA_ENOT RCTL(S(CA_N)) // ♪
  244. #define CA_MORD RCTL(S(CA_M)) // º
  245. #define CA_MUL RCTL(S(CA_COMM)) // ×
  246. #define CA_DIV RCTL(S(CA_DOT)) // ÷
  247. // DEPRECATED
  248. #define GR2A(kc) RCTL(kc)
  249. #define CSA_SLASH CA_SLSH
  250. #define CSA_SLSH CA_SLSH
  251. #define CSA_DEAD_CIRCUMFLEX CA_CIRC
  252. #define CSA_DCRC CA_CIRC
  253. #define CSA_C_CEDILLA CA_CCED
  254. #define CSA_CCED CA_CCED
  255. #define CSA_E_GRAVE CA_EGRV
  256. #define CSA_EGRV CA_EGRV
  257. #define CSA_A_GRAVE CA_AGRV
  258. #define CSA_AGRV CA_AGRV
  259. #define CSA_U_GRAVE CA_UGRV
  260. #define CSA_UGRV CA_UGRV
  261. #define CSA_E_ACUTE CA_EACU
  262. #define CSA_ECUT CA_EACU
  263. #define CSA_BACKSLASH CA_BSLS
  264. #define CSA_BSLS CA_BSLS
  265. #define CSA_QUESTION CA_QUES
  266. #define CSA_QEST CA_QUES
  267. #define CSA_DEAD_TREMA CA_DIAE
  268. #define CSA_DTRM CA_DIAE
  269. #define CSA_APOSTROPHE CA_QUOT
  270. #define CSA_APOS CA_QUOT
  271. #define CSA_DOUBLE_QUOTE CA_DQUO
  272. #define CSA_DQOT CA_DQUO
  273. #define CSA_PIPE CA_PIPE
  274. #define CSA_CURRENCY CA_CURR
  275. #define CSA_CURR CA_CURR
  276. #define CSA_LEFT_CURLY_BRACE CA_LCBR
  277. #define CSA_LCBR CA_LCBR
  278. #define CSA_RIGHT_CURLY_BRACE CA_RCBR
  279. #define CSA_RCBR CA_RCBR
  280. #define CSA_LBRACKET CA_LBRC
  281. #define CSA_LBRC CA_LBRC
  282. #define CSA_RBRACKET CA_RBRC
  283. #define CSA_RBRC CA_RBRC
  284. #define CSA_NEGATION CA_NOT
  285. #define CSA_NEGT CA_NOT
  286. #define CSA_EURO CA_EURO
  287. #define CSA_DEAD_GRAVE CA_GRV
  288. #define CSA_DGRV CA_GRV
  289. #define CSA_DEAD_TILDE CA_DTIL
  290. #define CSA_DTLD CA_DTIL
  291. #define CSA_DEGREE CA_DEG
  292. #define CSA_DEGR CA_DEG
  293. #define CSA_LEFT_GUILLEMET CA_LDAQ
  294. #define CSA_LGIL CA_LDAQ
  295. #define CSA_RIGHT_GUILLEMET CA_RDAQ
  296. #define CSA_RGIL CA_RDAQ
  297. #define CSA_LESS CA_LABK
  298. #define CSA_GREATER CA_RABK
  299. #define CSA_GRTR CA_RABK
  300. #define CSA_NON_BREAKING_SPACE ALGR(KC_SPC)
  301. #define CSA_NBSP ALGR(KC_SPC)
  302. #define CSA_SUPERSCRIPT_ONE CA_SUP1
  303. #define CSA_SUP1 CA_SUP1
  304. #define CSA_SUPERSCRIPT_TWO CA_SUP2
  305. #define CSA_SUP2 CA_SUP2
  306. #define CSA_SUPERSCRIPT_THREE CA_SUP3
  307. #define CSA_SUP3 CA_SUP3
  308. #define CSA_ONE_QUARTER CA_QRTR
  309. #define CSA_1QRT CA_QRTR
  310. #define CSA_ONE_HALF CA_HALF
  311. #define CSA_1HLF CA_HALF
  312. #define CSA_THREE_QUARTERS CA_TQTR
  313. #define CSA_3QRT CA_TQTR
  314. #define CSA_DEAD_CEDILLA CA_CEDL
  315. #define CSA_DCED CA_CEDL
  316. #define CSA_OMEGA CA_OMEG
  317. #define CSA_OMEG CA_OMEG
  318. #define CSA_L_STROKE CA_LSTR
  319. #define CSA_LSTK CA_LSTR
  320. #define CSA_OE_LIGATURE CA_OE
  321. #define CSA_OE CA_OE
  322. #define CSA_PARAGRAPH CA_PARA
  323. #define CSA_PARG CA_PARA
  324. #define CSA_T_STROKE CA_TSTR
  325. #define CSA_LEFT_ARROW CA_LARR
  326. #define CSA_LARW CA_LARR
  327. #define CSA_DOWN_ARROW CA_DARR
  328. #define CSA_DARW CA_DARR
  329. #define CSA_RIGHT_ARROW CA_RARR
  330. #define CSA_RARW CA_RARR
  331. #define CSA_O_STROKE CA_OSTR
  332. #define CSA_OSTK CA_OSTR
  333. #define CSA_THORN CA_THRN
  334. #define CSA_THRN CA_THRN
  335. #define CSA_TILDE CA_TILD
  336. #define CSA_TILD CA_TILD
  337. #define CSA_AE_LIGATURE CA_AE
  338. #define CSA_AE CA_AE
  339. #define CSA_SHARP_S CA_SS
  340. #define CSA_SRPS CA_SS
  341. #define CSA_ETH CA_ETH
  342. #define CSA_ENG CA_ENG
  343. #define CSA_H_SRTOKE CA_HSTR
  344. #define CSA_HSTK CA_HSTR
  345. #define CSA_IJ_LIGATURE CA_IJ
  346. #define CSA_IJ CA_IJ
  347. #define CSA_KRA CA_KRA
  348. #define CSA_L_FLOWN_DOT CA_LMDT
  349. #define CSA_LFLD CA_LMDT
  350. #define CSA_DEAD_ACUTE CA_ACUT
  351. #define CSA_DACT CA_ACUT
  352. #define CSA_CENT CA_CENT
  353. #define CSA_LEFT_DOUBLE_QUOTE CA_LDQU
  354. #define CSA_LDQT CA_LDQU
  355. #define CSA_RIGHT_DOUBLE_QUOTE CA_RDQU
  356. #define CSA_RDQT CA_RDQU
  357. #define CSA_N_APOSTROPHE CA_APSN
  358. #define CSA_NAPO CA_APSN
  359. #define CSA_MU CA_MICR
  360. #define CSA_HORIZONTAL_BAR CA_HRZB
  361. #define CSA_HZBR CA_HRZB
  362. #define CSA_DEAD_DOT_ABOVE CA_DOTA
  363. #define CSA_DDTA CA_DOTA
  364. #define CSA_SOFT_HYPHEN CA_SHYP
  365. #define CSA_SHYP CA_SHYP
  366. #define CSA_INVERTED_EXCLAIM CA_IEXL
  367. #define CSA_IXLM CA_IEXL
  368. #define CSA_POUND CA_PND
  369. #define CSA_GBP CA_PND
  370. #define CSA_EURO_BIS CA_EURO
  371. #define CSA_EURB CA_EURO
  372. #define CSA_THREE_EIGHTHS CA_TEIG
  373. #define CSA_3ON8 CA_TEIG
  374. #define CSA_FIVE_EIGHTHS CA_FEIG
  375. #define CSA_5ON8 CA_FEIG
  376. #define CSA_SEVEN_EIGHTHS CA_SEIG
  377. #define CSA_7ON8 CA_SEIG
  378. #define CSA_TRADEMARK CA_TM
  379. #define CSA_TM CA_TM
  380. #define CSA_PLUS_MINUS CA_PLMN
  381. #define CSA_PSMS CA_PLMN
  382. #define CSA_INVERTED_QUESTION CA_IQUE
  383. #define CSA_IQST CA_IQUE
  384. #define CSA_DEAD_OGONEK CA_OGON
  385. #define CSA_DOGO CA_OGON
  386. #define CSA_REGISTERED_TRADEMARK CA_REGD
  387. #define CSA_RTM CA_REGD
  388. #define CSA_YEN CA_YEN
  389. #define CSA_YUAN CA_YEN
  390. #define CSA_UP_ARROW CA_UARR
  391. #define CSA_DOTLESS_I CA_DLSI
  392. #define CSA_DLSI CA_DLSI
  393. #define CSA_DEAD_RING CA_RNGA
  394. #define CSA_DRNG CA_RNGA
  395. #define CSA_DEAD_MACRON CA_MACR
  396. #define CSA_DMCR CA_MACR
  397. #define CSA_SECTION CA_SECT
  398. #define CSA_SECT CA_SECT
  399. #define CSA_ORDINAL_INDICATOR_A CA_FORD
  400. #define CSA_ORDA CA_FORD
  401. #define CSA_DEAD_DOUBLE_ACUTE CA_DACU
  402. #define CSA_DDCT CA_DACU
  403. #define CSA_DEAD_CARON CA_CARN
  404. #define CSA_DCAR CA_CARN
  405. #define CSA_DEAD_BREVE CA_BREV
  406. #define CSA_DBRV CA_BREV
  407. #define CSA_BROKEN_PIPE CA_BRKP
  408. #define CSA_BPIP CA_BRKP
  409. #define CSA_COPYRIGHT CA_COPY
  410. #define CSA_CPRT CA_COPY
  411. #define CSA_LEFT_QUOTE CA_LSQU
  412. #define CSA_LQOT CA_LSQU
  413. #define CSA_RIGHT_QUOTE CA_RSQU
  414. #define CSA_RQOT CA_RSQU
  415. #define CSA_EIGHTH_NOTE CA_ENOT
  416. #define CSA_8NOT CA_ENOT
  417. #define CSA_ORDINAL_INDICATOR_O CA_MORD
  418. #define CSA_ORDO CA_MORD
  419. #define CSA_TIMES CA_MUL
  420. #define CSA_TIMS CA_MUL
  421. #define CSA_OBELUS CA_DIV
  422. #define CSA_OBEL CA_DIV
  423. #define CSA_DIVISION_SIGN CA_DIV
  424. #define CSA_DVSN CA_DIV