Advertisement
Guest User

Untitled

a guest
Mar 20th, 2016
295
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.02 KB | None | 0 0
  1. # (c) Apple Inc. 2014
  2.  
  3. # Sample plug-in input source rule file.
  4.  
  5. # The # character is used to indicate comments.
  6.  
  7. # The file format must be plain text. The file encoding must be Unicode (UTF-16) with or without an initial BOM (Byte Order Mark).
  8.  
  9. # The file consists of a number of tags, in uppercase ending with a colon, followed by the content of the tag.
  10.  
  11. #
  12.  
  13. # METHOD: This is the first entry in the file, defining the method used to implement the plug-in.
  14.  
  15. # The only method currently supported is “TABLE”.
  16.  
  17. #
  18.  
  19. METHOD: TABLE
  20.  
  21. #
  22.  
  23. # ENCODE: This indicates whether the target is Traditional Chinese (“TC”), Simplified Chinese (“SC”), or Unicode (“Unicode”). All plug-in input sources appear as Unicode input sources in the Input Sources pane of Keyboard preferences.
  24.  
  25. #
  26.  
  27. ENCODE: Unicode
  28.  
  29. #
  30.  
  31. # PROMPT: This is the name of the plugin, shown in the Input Sources pane of Keyboard preferences and the Input menu.
  32.  
  33. #
  34.  
  35. PROMPT: Inkling
  36.  
  37. #
  38.  
  39. # DELIMITER: This defines the delimiter for characters or phrases with same input code.
  40.  
  41. # In this case, we are using the comma character.
  42.  
  43. #
  44.  
  45. DELIMITER: ,
  46.  
  47. #
  48.  
  49. # VERSION: This is used to indicate the version number of your plug-in.
  50.  
  51. #
  52.  
  53. VERSION: 1.0
  54.  
  55. #
  56.  
  57. # MAXINPUTCODE: The limit of the number of characters that can be input for a single conversion.
  58.  
  59. # There is no limit unless you specify one.
  60.  
  61. #
  62.  
  63. MAXINPUTCODE: 8
  64.  
  65. #
  66.  
  67. # VALIDINPUTKEY: The set of characters that can be used for input strings. These are case-insensitive but must be entered as one complete set.
  68.  
  69. #
  70.  
  71. VALIDINPUTKEY: 0123456789-ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
  72.  
  73. #
  74.  
  75. # BEGINCHARACTER: This tag begins the definitions for the mappings and is required.
  76.  
  77. # The format for each mapping is:
  78.  
  79. # ...
  80.  
  81. # Blank lines and characters are ignored.
  82.  
  83. # The delimiter between output strings is that defined above by the DELIMITER tag.
  84.  
  85. # Indicate that the mapping definitions have ended with the ENDCHARACTER tag.
  86.  
  87. #
  88.  
  89. BEGINCHARACTER
  90.  
  91. i ĭ
  92. e Į
  93. a į
  94. u İ
  95. oi ¦
  96. ba §
  97. o ¤
  98. be ¨
  99. bi ª
  100. bo «
  101. bu IJ
  102. bie ¯
  103. boi °
  104. da ´
  105. de µ
  106. bai æ
  107. di ¶
  108. do ·
  109. du ¸
  110. fa »
  111. fe ¿
  112. fu À
  113. fi Á
  114. ga Â
  115. ge Ã
  116. gi Ä
  117. go Å
  118. gu Æ
  119. gai Ç
  120. ha È
  121. he É
  122. ho Ê
  123. hu ı
  124. ja Ë
  125. je Ì
  126. ji Í
  127. jie Î
  128. jo Ï
  129. ju Ð
  130. ka Ñ
  131. ke Ò
  132. ki Ó
  133. ko Ô
  134. ku Õ
  135. kai Ö
  136. koi ×
  137. ma Ø
  138. me Ù
  139. mi Ú
  140. mo Û
  141. mu Ü
  142. mai Ý
  143. na Þ
  144. ne ß
  145. ni à
  146. no á
  147. nu â
  148. nai ã
  149. noi ä
  150. pa å
  151. pe ç
  152. pi è
  153. po é
  154. pu ê
  155. pai ë
  156. pie ì
  157. ra í
  158. rai î
  159. re ï
  160. ri ð
  161. ro ñ
  162. ru ò
  163. rie ó
  164. sa ô
  165. se õ
  166. su ö
  167. si ø
  168. so ù
  169. sai ú
  170. sha û
  171. she ü
  172. sho ý
  173. shu þ
  174. shi ÿ
  175. shai Ā
  176. ta ā
  177. te Ă
  178. ti ă
  179. to Ą
  180. tu ą
  181. tai Ć
  182. tsa ć
  183. tsu Ĉ
  184. cha ĉ
  185. chi Ċ
  186. wa ċ
  187. wu Ď
  188. we ď
  189. wai Đ
  190. za đ
  191. ze Ē
  192. zi ē
  193. zo Ĕ
  194. zu ĕ
  195. zai Ė
  196. zoi ė
  197. zie Ę
  198. eyo ę
  199. eya Ě
  200. eyu ě
  201. uye Ĝ
  202. uya ĝ
  203. uyo Ğ
  204. ayo ğ
  205. ayu Ġ
  206. oye ġ
  207. iyo Ģ
  208. oya ģ
  209. iya Ĥ
  210. oyu ĥ
  211. iyu Ħ
  212. uno ħ
  213. ise Ĩ
  214. ena ĩ
  215. ati Ī
  216. ane ī
  217. ota Ĭ
  218.  
  219. #
  220.  
  221. # ENDCHARACTER: This terminates the mapping definitions and is the last character in the file.
  222.  
  223. #
  224.  
  225. ENDCHARACTER
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement