fullstack-ckeditor 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (256) hide show
  1. data/Gemfile +8 -0
  2. data/Gemfile.lock +94 -0
  3. data/README.md +28 -0
  4. data/Rakefile +53 -0
  5. data/VERSION +1 -0
  6. data/app/assets/javascripts/fullstack/ckeditor.js.coffee +6 -0
  7. data/app/assets/javascripts/fullstack/ckeditor/ckeditor.js +873 -0
  8. data/app/inputs/markup_input.rb +12 -0
  9. data/app/models/ckeditor/asset.rb +4 -0
  10. data/app/models/ckeditor/attachment_file.rb +10 -0
  11. data/app/models/ckeditor/picture.rb +10 -0
  12. data/fullstack-ckeditor.gemspec +299 -0
  13. data/lib/fullstack-ckeditor.rb +23 -0
  14. data/lib/fullstack/ckeditor.rb +5 -0
  15. data/lib/fullstack/ckeditor/engine.rb +9 -0
  16. data/lib/generators/fullstack/ckeditor/install_generator.rb +12 -0
  17. data/lib/generators/fullstack/ckeditor/templates/ckeditor/config.js +10 -0
  18. data/lib/generators/fullstack/ckeditor/templates/ckeditor/contents.css +99 -0
  19. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/af.js +5 -0
  20. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/ar.js +5 -0
  21. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/bg.js +5 -0
  22. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/bn.js +5 -0
  23. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/bs.js +5 -0
  24. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/ca.js +5 -0
  25. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/cs.js +5 -0
  26. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/cy.js +5 -0
  27. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/da.js +5 -0
  28. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/de.js +5 -0
  29. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/el.js +5 -0
  30. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/en-au.js +5 -0
  31. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/en-ca.js +5 -0
  32. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/en-gb.js +5 -0
  33. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/en.js +5 -0
  34. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/eo.js +5 -0
  35. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/es.js +5 -0
  36. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/et.js +5 -0
  37. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/eu.js +5 -0
  38. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/fa.js +5 -0
  39. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/fi.js +5 -0
  40. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/fo.js +5 -0
  41. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/fr-ca.js +5 -0
  42. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/fr.js +5 -0
  43. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/gl.js +5 -0
  44. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/gu.js +5 -0
  45. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/he.js +5 -0
  46. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/hi.js +5 -0
  47. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/hr.js +5 -0
  48. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/hu.js +5 -0
  49. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/is.js +5 -0
  50. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/it.js +5 -0
  51. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/ja.js +5 -0
  52. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/ka.js +5 -0
  53. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/km.js +5 -0
  54. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/ko.js +5 -0
  55. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/ku.js +5 -0
  56. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/lt.js +5 -0
  57. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/lv.js +5 -0
  58. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/mk.js +5 -0
  59. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/mn.js +5 -0
  60. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/ms.js +5 -0
  61. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/nb.js +5 -0
  62. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/nl.js +5 -0
  63. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/no.js +5 -0
  64. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/pl.js +5 -0
  65. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/pt-br.js +5 -0
  66. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/pt.js +5 -0
  67. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/ro.js +5 -0
  68. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/ru.js +5 -0
  69. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/sk.js +5 -0
  70. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/sl.js +5 -0
  71. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/sr-latn.js +5 -0
  72. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/sr.js +5 -0
  73. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/sv.js +5 -0
  74. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/th.js +5 -0
  75. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/tr.js +5 -0
  76. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/ug.js +5 -0
  77. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/uk.js +5 -0
  78. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/vi.js +5 -0
  79. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/zh-cn.js +5 -0
  80. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/zh.js +5 -0
  81. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js +10 -0
  82. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt +25 -0
  83. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js +9 -0
  84. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js +9 -0
  85. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js +9 -0
  86. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js +10 -0
  87. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js +9 -0
  88. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/da.js +9 -0
  89. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/de.js +10 -0
  90. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/el.js +10 -0
  91. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/en.js +9 -0
  92. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js +10 -0
  93. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/es.js +10 -0
  94. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/et.js +9 -0
  95. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js +9 -0
  96. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js +10 -0
  97. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js +10 -0
  98. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js +9 -0
  99. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/he.js +9 -0
  100. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js +9 -0
  101. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js +9 -0
  102. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js +9 -0
  103. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/it.js +10 -0
  104. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/ja.js +9 -0
  105. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js +10 -0
  106. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js +9 -0
  107. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js +10 -0
  108. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js +9 -0
  109. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js +9 -0
  110. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js +9 -0
  111. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js +10 -0
  112. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/no.js +9 -0
  113. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js +9 -0
  114. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js +9 -0
  115. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js +9 -0
  116. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js +9 -0
  117. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js +9 -0
  118. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js +10 -0
  119. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js +9 -0
  120. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/sv.js +10 -0
  121. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js +10 -0
  122. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js +9 -0
  123. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js +9 -0
  124. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js +9 -0
  125. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js +7 -0
  126. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/about/dialogs/about.js +6 -0
  127. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/about/dialogs/logo_ckeditor.png +0 -0
  128. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/clipboard/dialogs/paste.js +11 -0
  129. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/colordialog/dialogs/colordialog.js +13 -0
  130. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/dialog/dialogDefinition.js +4 -0
  131. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/div/dialogs/div.js +9 -0
  132. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/fakeobjects/images/spacer.gif +0 -0
  133. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/find/dialogs/find.js +24 -0
  134. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/flash/dialogs/flash.js +23 -0
  135. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/flash/images/placeholder.png +0 -0
  136. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/forms/dialogs/button.js +8 -0
  137. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/forms/dialogs/checkbox.js +8 -0
  138. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/forms/dialogs/form.js +8 -0
  139. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/forms/dialogs/hiddenfield.js +8 -0
  140. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/forms/dialogs/radio.js +8 -0
  141. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/forms/dialogs/select.js +20 -0
  142. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/forms/dialogs/textarea.js +8 -0
  143. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/forms/dialogs/textfield.js +10 -0
  144. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/forms/images/hiddenfield.gif +0 -0
  145. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/icons.png +0 -0
  146. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/iframe/dialogs/iframe.js +10 -0
  147. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/iframe/images/placeholder.png +0 -0
  148. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/image/dialogs/image.js +41 -0
  149. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/image/images/noimage.png +0 -0
  150. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/link/dialogs/anchor.js +8 -0
  151. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/link/dialogs/link.js +36 -0
  152. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/link/images/anchor.png +0 -0
  153. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/liststyle/dialogs/liststyle.js +10 -0
  154. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/magicline/images/icon.png +0 -0
  155. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/pagebreak/images/pagebreak.gif +0 -0
  156. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/pastefromword/filter/default.js +31 -0
  157. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/preview/preview.html +10 -0
  158. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/scayt/LICENSE.md +28 -0
  159. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/scayt/README.md +25 -0
  160. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/scayt/dialogs/options.js +19 -0
  161. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/scayt/dialogs/toolbar.css +71 -0
  162. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/showblocks/images/block_address.png +0 -0
  163. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/showblocks/images/block_blockquote.png +0 -0
  164. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/showblocks/images/block_div.png +0 -0
  165. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/showblocks/images/block_h1.png +0 -0
  166. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/showblocks/images/block_h2.png +0 -0
  167. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/showblocks/images/block_h3.png +0 -0
  168. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/showblocks/images/block_h4.png +0 -0
  169. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/showblocks/images/block_h5.png +0 -0
  170. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/showblocks/images/block_h6.png +0 -0
  171. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/showblocks/images/block_p.png +0 -0
  172. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/showblocks/images/block_pre.png +0 -0
  173. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/dialogs/smiley.js +10 -0
  174. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/angel_smile.gif +0 -0
  175. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/angry_smile.gif +0 -0
  176. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/broken_heart.gif +0 -0
  177. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/confused_smile.gif +0 -0
  178. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/cry_smile.gif +0 -0
  179. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/devil_smile.gif +0 -0
  180. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/embaressed_smile.gif +0 -0
  181. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/embarrassed_smile.gif +0 -0
  182. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/envelope.gif +0 -0
  183. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/heart.gif +0 -0
  184. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/kiss.gif +0 -0
  185. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/lightbulb.gif +0 -0
  186. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/omg_smile.gif +0 -0
  187. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/regular_smile.gif +0 -0
  188. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/sad_smile.gif +0 -0
  189. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/shades_smile.gif +0 -0
  190. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/teeth_smile.gif +0 -0
  191. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/thumbs_down.gif +0 -0
  192. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/thumbs_up.gif +0 -0
  193. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/tongue_smile.gif +0 -0
  194. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/tounge_smile.gif +0 -0
  195. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif +0 -0
  196. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/wink_smile.gif +0 -0
  197. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt +20 -0
  198. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/ca.js +13 -0
  199. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/cs.js +13 -0
  200. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/cy.js +14 -0
  201. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/de.js +13 -0
  202. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/el.js +13 -0
  203. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/en.js +13 -0
  204. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/eo.js +12 -0
  205. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/et.js +13 -0
  206. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/fa.js +13 -0
  207. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/fi.js +13 -0
  208. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/fr.js +11 -0
  209. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/he.js +13 -0
  210. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/hr.js +13 -0
  211. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/it.js +14 -0
  212. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/ku.js +14 -0
  213. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/lv.js +13 -0
  214. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/nb.js +11 -0
  215. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/nl.js +13 -0
  216. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/no.js +11 -0
  217. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/pt-br.js +11 -0
  218. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/sk.js +13 -0
  219. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/sv.js +11 -0
  220. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/tr.js +12 -0
  221. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/ug.js +13 -0
  222. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/zh-cn.js +9 -0
  223. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/specialchar.js +14 -0
  224. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/table/dialogs/table.js +20 -0
  225. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/tabletools/dialogs/tableCell.js +16 -0
  226. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/templates/dialogs/templates.css +84 -0
  227. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/templates/dialogs/templates.js +10 -0
  228. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/templates/templates/default.js +6 -0
  229. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/templates/templates/images/template1.gif +0 -0
  230. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/templates/templates/images/template2.gif +0 -0
  231. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/templates/templates/images/template3.gif +0 -0
  232. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/wsc/LICENSE.md +28 -0
  233. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/wsc/README.md +25 -0
  234. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/wsc/dialogs/ciframe.html +49 -0
  235. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/wsc/dialogs/tmpFrameset.html +52 -0
  236. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/wsc/dialogs/wsc.css +82 -0
  237. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/wsc/dialogs/wsc.js +11 -0
  238. data/lib/generators/fullstack/ckeditor/templates/ckeditor/skins/moono/dialog.css +5 -0
  239. data/lib/generators/fullstack/ckeditor/templates/ckeditor/skins/moono/dialog_ie.css +5 -0
  240. data/lib/generators/fullstack/ckeditor/templates/ckeditor/skins/moono/dialog_ie7.css +5 -0
  241. data/lib/generators/fullstack/ckeditor/templates/ckeditor/skins/moono/dialog_ie8.css +5 -0
  242. data/lib/generators/fullstack/ckeditor/templates/ckeditor/skins/moono/dialog_iequirks.css +5 -0
  243. data/lib/generators/fullstack/ckeditor/templates/ckeditor/skins/moono/dialog_opera.css +5 -0
  244. data/lib/generators/fullstack/ckeditor/templates/ckeditor/skins/moono/editor.css +5 -0
  245. data/lib/generators/fullstack/ckeditor/templates/ckeditor/skins/moono/editor_gecko.css +5 -0
  246. data/lib/generators/fullstack/ckeditor/templates/ckeditor/skins/moono/editor_ie.css +5 -0
  247. data/lib/generators/fullstack/ckeditor/templates/ckeditor/skins/moono/editor_ie7.css +5 -0
  248. data/lib/generators/fullstack/ckeditor/templates/ckeditor/skins/moono/editor_ie8.css +5 -0
  249. data/lib/generators/fullstack/ckeditor/templates/ckeditor/skins/moono/editor_iequirks.css +5 -0
  250. data/lib/generators/fullstack/ckeditor/templates/ckeditor/skins/moono/icons.png +0 -0
  251. data/lib/generators/fullstack/ckeditor/templates/ckeditor/skins/moono/images/arrow.png +0 -0
  252. data/lib/generators/fullstack/ckeditor/templates/ckeditor/skins/moono/images/close.png +0 -0
  253. data/lib/generators/fullstack/ckeditor/templates/ckeditor/skins/moono/images/mini.png +0 -0
  254. data/lib/generators/fullstack/ckeditor/templates/ckeditor/skins/moono/readme.md +51 -0
  255. data/lib/generators/fullstack/ckeditor/templates/ckeditor/styles.js +112 -0
  256. metadata +352 -0
@@ -0,0 +1,10 @@
1
+ <script>
2
+
3
+ var doc = document;
4
+ doc.open();
5
+ doc.write( window.opener._cke_htmlToLoad );
6
+ doc.close();
7
+
8
+ delete window.opener._cke_htmlToLoad;
9
+
10
+ </script>
@@ -0,0 +1,28 @@
1
+ Software License Agreement
2
+ ==========================
3
+
4
+ **CKEditor SCAYT Plugin**
5
+ Copyright &copy; 2012, [CKSource](http://cksource.com) - Frederico Knabben. All rights reserved.
6
+
7
+ Licensed under the terms of any of the following licenses at your choice:
8
+
9
+ * GNU General Public License Version 2 or later (the "GPL"):
10
+ http://www.gnu.org/licenses/gpl.html
11
+
12
+ * GNU Lesser General Public License Version 2.1 or later (the "LGPL"):
13
+ http://www.gnu.org/licenses/lgpl.html
14
+
15
+ * Mozilla Public License Version 1.1 or later (the "MPL"):
16
+ http://www.mozilla.org/MPL/MPL-1.1.html
17
+
18
+ You are not required to, but if you want to explicitly declare the license you have chosen to be bound to when using, reproducing, modifying and distributing this software, just include a text file titled "legal.txt" in your version of this software, indicating your license choice.
19
+
20
+ Sources of Intellectual Property Included in this plugin
21
+ --------------------------------------------------------
22
+
23
+ Where not otherwise indicated, all plugin content is authored by CKSource engineers and consists of CKSource-owned intellectual property. In some specific instances, the plugin will incorporate work done by developers outside of CKSource with their express permission.
24
+
25
+ Trademarks
26
+ ----------
27
+
28
+ CKEditor is a trademark of CKSource - Frederico Knabben. All other brand and product names are trademarks, registered trademarks or service marks of their respective holders.
@@ -0,0 +1,25 @@
1
+ CKEditor SCAYT Plugin
2
+ =====================
3
+
4
+ This plugin brings Spell Check As You Type (SCAYT) into CKEditor.
5
+
6
+ SCAYT is a "installation-less", using the web-services of [WebSpellChecker.net](http://www.webspellchecker.net/). It's an out of the box solution.
7
+
8
+ Installation
9
+ ------------
10
+
11
+ 1. Clone/copy this repository contents in a new "plugins/scayt" folder in your CKEditor installation.
12
+ 2. Enable the "scayt" plugin in the CKEditor configuration file (config.js):
13
+
14
+ config.extraPlugins = 'scayt';
15
+
16
+ That's all. SCAYT will appear on the editor toolbar and will be ready to use.
17
+
18
+ License
19
+ -------
20
+
21
+ Licensed under the terms of any of the following licenses at your choice: [GPL](http://www.gnu.org/licenses/gpl.html), [LGPL](http://www.gnu.org/licenses/lgpl.html) and [MPL](http://www.mozilla.org/MPL/MPL-1.1.html).
22
+
23
+ See LICENSE.md for more information.
24
+
25
+ Developed in cooperation with [WebSpellChecker.net](http://www.webspellchecker.net/).
@@ -0,0 +1,19 @@
1
+ /*
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+ CKEDITOR.dialog.add("scaytcheck",function(j){function w(){return"undefined"!=typeof document.forms["optionsbar_"+a]?document.forms["optionsbar_"+a].options:[]}function x(b,a){if(b){var e=b.length;if(void 0==e)b.checked=b.value==a.toString();else for(var d=0;d<e;d++)b[d].checked=!1,b[d].value==a.toString()&&(b[d].checked=!0)}}function n(b){f.getById("dic_message_"+a).setHtml('<span style="color:red;">'+b+"</span>")}function o(b){f.getById("dic_message_"+a).setHtml('<span style="color:blue;">'+b+"</span>")}
6
+ function p(b){for(var b=(""+b).split(","),a=0,e=b.length;a<e;a+=1)f.getById(b[a]).$.style.display="inline"}function q(b){for(var b=(""+b).split(","),a=0,e=b.length;a<e;a+=1)f.getById(b[a]).$.style.display="none"}function r(b){f.getById("dic_name_"+a).$.value=b}var s=!0,h,f=CKEDITOR.document,a=j.name,l=CKEDITOR.plugins.scayt.getUiTabs(j),g,t=[],u=0,m=["dic_create_"+a+",dic_restore_"+a,"dic_rename_"+a+",dic_delete_"+a],v=["mixedCase","mixedWithDigits","allCaps","ignoreDomainNames"];g=j.lang.scayt;var z=
7
+ [{id:"options",label:g.optionsTab,elements:[{type:"html",id:"options",html:'<form name="optionsbar_'+a+'"><div class="inner_options">\t<div class="messagebox"></div>\t<div style="display:none;">\t\t<input type="checkbox" name="options" id="allCaps_'+a+'" />\t\t<label for="allCaps" id="label_allCaps_'+a+'"></label>\t</div>\t<div style="display:none;">\t\t<input name="options" type="checkbox" id="ignoreDomainNames_'+a+'" />\t\t<label for="ignoreDomainNames" id="label_ignoreDomainNames_'+a+'"></label>\t</div>\t<div style="display:none;">\t<input name="options" type="checkbox" id="mixedCase_'+
8
+ a+'" />\t\t<label for="mixedCase" id="label_mixedCase_'+a+'"></label>\t</div>\t<div style="display:none;">\t\t<input name="options" type="checkbox" id="mixedWithDigits_'+a+'" />\t\t<label for="mixedWithDigits" id="label_mixedWithDigits_'+a+'"></label>\t</div></div></form>'}]},{id:"langs",label:g.languagesTab,elements:[{type:"html",id:"langs",html:'<form name="languagesbar_'+a+'"><div class="inner_langs">\t<div class="messagebox"></div>\t <div style="float:left;width:45%;margin-left:5px;" id="scayt_lcol_'+
9
+ a+'" ></div> <div style="float:left;width:45%;margin-left:15px;" id="scayt_rcol_'+a+'"></div></div></form>'}]},{id:"dictionaries",label:g.dictionariesTab,elements:[{type:"html",style:"",id:"dictionaries",html:'<form name="dictionarybar_'+a+'"><div class="inner_dictionary" style="text-align:left; white-space:normal; width:320px; overflow: hidden;">\t<div style="margin:5px auto; width:80%;white-space:normal; overflow:hidden;" id="dic_message_'+a+'"> </div>\t<div style="margin:5px auto; width:80%;white-space:normal;"> <span class="cke_dialog_ui_labeled_label" >Dictionary name</span><br>\t\t<span class="cke_dialog_ui_labeled_content" >\t\t\t<div class="cke_dialog_ui_input_text">\t\t\t\t<input id="dic_name_'+
10
+ a+'" type="text" class="cke_dialog_ui_input_text"/>\t\t</div></span></div>\t\t<div style="margin:5px auto; width:80%;white-space:normal;">\t\t\t<a style="display:none;" class="cke_dialog_ui_button" href="javascript:void(0)" id="dic_create_'+a+'">\t\t\t\t</a>\t\t\t<a style="display:none;" class="cke_dialog_ui_button" href="javascript:void(0)" id="dic_delete_'+a+'">\t\t\t\t</a>\t\t\t<a style="display:none;" class="cke_dialog_ui_button" href="javascript:void(0)" id="dic_rename_'+a+'">\t\t\t\t</a>\t\t\t<a style="display:none;" class="cke_dialog_ui_button" href="javascript:void(0)" id="dic_restore_'+
11
+ a+'">\t\t\t\t</a>\t\t</div>\t<div style="margin:5px auto; width:95%;white-space:normal;" id="dic_info_'+a+'"></div></div></form>'}]},{id:"about",label:g.aboutTab,elements:[{type:"html",id:"about",style:"margin: 5px 5px;",html:'<div id="scayt_about_'+a+'"></div>'}]}],B={title:g.title,minWidth:360,minHeight:220,onShow:function(){var b=this;b.data=j.fire("scaytDialog",{});b.options=b.data.scayt_control.option();b.chosed_lang=b.sLang=b.data.scayt_control.sLang;if(!b.data||!b.data.scayt||!b.data.scayt_control)alert("Error loading application service"),
12
+ b.hide();else{var a=0;s?b.data.scayt.getCaption(j.langCode||"en",function(e){0<a++||(h=e,A.apply(b),y.apply(b),s=!1)}):y.apply(b);b.selectPage(b.data.tab)}},onOk:function(){var a=this.data.scayt_control;a.option(this.options);a.setLang(this.chosed_lang);a.refresh()},onCancel:function(){var b=w(),f;for(f in b)b[f].checked=!1;b="undefined"!=typeof document.forms["languagesbar_"+a]?document.forms["languagesbar_"+a].scayt_lang:[];x(b,"")},contents:t};CKEDITOR.plugins.scayt.getScayt(j);for(g=0;g<l.length;g++)1==
13
+ l[g]&&(t[t.length]=z[g]);1==l[2]&&(u=1);var A=function(){function b(b){var c=f.getById("dic_name_"+a).getValue();if(!c)return n(" Dictionary name should not be empty. "),!1;try{var d=b.data.getTarget().getParent(),e=/(dic_\w+)_[\w\d]+/.exec(d.getId())[1];j[e].apply(null,[d,c,m])}catch(C){n(" Dictionary error. ")}return!0}var k=this,e=k.data.scayt.getLangList(),d=["dic_create","dic_delete","dic_rename","dic_restore"],g=[],i=[],c;if(u){for(c=0;c<d.length;c++)g[c]=d[c]+"_"+a,f.getById(g[c]).setHtml('<span class="cke_dialog_ui_button">'+
14
+ h["button_"+d[c]]+"</span>");f.getById("dic_info_"+a).setHtml(h.dic_info)}if(1==l[0])for(c in v)d="label_"+v[c],g=f.getById(d+"_"+a),"undefined"!=typeof g&&("undefined"!=typeof h[d]&&"undefined"!=typeof k.options[v[c]])&&(g.setHtml(h[d]),g.getParent().$.style.display="block");d='<p><img src="'+window.scayt.getAboutInfo().logoURL+'" /></p><p>'+h.version+window.scayt.getAboutInfo().version.toString()+"</p><p>"+h.about_throwt_copy+"</p>";f.getById("scayt_about_"+a).setHtml(d);d=function(a,b){var c=f.createElement("label");
15
+ c.setAttribute("for","cke_option"+a);c.setHtml(b[a]);k.sLang==a&&(k.chosed_lang=a);var d=f.createElement("div"),e=CKEDITOR.dom.element.createFromHtml('<input id="cke_option'+a+'" type="radio" '+(k.sLang==a?'checked="checked"':"")+' value="'+a+'" name="scayt_lang" />');e.on("click",function(){this.$.checked=true;k.chosed_lang=a});d.append(e);d.append(c);return{lang:b[a],code:a,radio:d}};if(1==l[1]){for(c in e.rtl)i[i.length]=d(c,e.ltr);for(c in e.ltr)i[i.length]=d(c,e.ltr);i.sort(function(a,b){return b.lang>
16
+ a.lang?-1:1});e=f.getById("scayt_lcol_"+a);d=f.getById("scayt_rcol_"+a);for(c=0;c<i.length;c++)(c<i.length/2?e:d).append(i[c].radio)}var j={dic_create:function(a,b,c){var d=c[0]+","+c[1],e=h.err_dic_create,f=h.succ_dic_create;window.scayt.createUserDictionary(b,function(a){q(d);p(c[1]);f=f.replace("%s",a.dname);o(f)},function(a){e=e.replace("%s",a.dname);n(e+"( "+(a.message||"")+")")})},dic_rename:function(a,b){var c=h.err_dic_rename||"",d=h.succ_dic_rename||"";window.scayt.renameUserDictionary(b,
17
+ function(a){d=d.replace("%s",a.dname);r(b);o(d)},function(a){c=c.replace("%s",a.dname);r(b);n(c+"( "+(a.message||"")+" )")})},dic_delete:function(a,b,c){var d=c[0]+","+c[1],e=h.err_dic_delete,f=h.succ_dic_delete;window.scayt.deleteUserDictionary(function(a){f=f.replace("%s",a.dname);q(d);p(c[0]);r("");o(f)},function(a){e=e.replace("%s",a.dname);n(e)})}};j.dic_restore=k.dic_restore||function(a,b,c){var d=c[0]+","+c[1],e=h.err_dic_restore,f=h.succ_dic_restore;window.scayt.restoreUserDictionary(b,function(a){f=
18
+ f.replace("%s",a.dname);q(d);p(c[1]);o(f)},function(a){e=e.replace("%s",a.dname);n(e)})};i=(m[0]+","+m[1]).split(",");c=0;for(e=i.length;c<e;c+=1)if(d=f.getById(i[c]))d.on("click",b,this)},y=function(){var b=this;if(1==l[0])for(var g=w(),e=0,d=g.length;e<d;e++){var h=g[e].id,i=f.getById(h);if(i&&(g[e].checked=!1,1==b.options[h.split("_")[0]]&&(g[e].checked=!0),s))i.on("click",function(){b.options[this.getId().split("_")[0]]=this.$.checked?1:0})}1==l[1]&&(g=f.getById("cke_option"+b.sLang),x(g.$,b.sLang));
19
+ u&&(window.scayt.getNameUserDictionary(function(b){b=b.dname;q(m[0]+","+m[1]);if(b){f.getById("dic_name_"+a).setValue(b);p(m[1])}else p(m[0])},function(){f.getById("dic_name_"+a).setValue("")}),o(""))};return B});
@@ -0,0 +1,71 @@
1
+ a
2
+ {
3
+ text-decoration:none;
4
+ padding: 2px 4px 4px 6px;
5
+ display : block;
6
+ border-width: 1px;
7
+ border-style: solid;
8
+ margin : 0px;
9
+ }
10
+
11
+ a.cke_scayt_toogle:hover,
12
+ a.cke_scayt_toogle:focus,
13
+ a.cke_scayt_toogle:active
14
+ {
15
+ border-color: #316ac5;
16
+ background-color: #dff1ff;
17
+ color : #000;
18
+ cursor: pointer;
19
+ margin : 0px;
20
+ }
21
+ a.cke_scayt_toogle {
22
+ color : #316ac5;
23
+ border-color: #fff;
24
+ }
25
+ .scayt_enabled a.cke_scayt_item {
26
+ color : #316ac5;
27
+ border-color: #fff;
28
+ margin : 0px;
29
+ }
30
+ .scayt_disabled a.cke_scayt_item {
31
+ color : gray;
32
+ border-color : #fff;
33
+ }
34
+ .scayt_enabled a.cke_scayt_item:hover,
35
+ .scayt_enabled a.cke_scayt_item:focus,
36
+ .scayt_enabled a.cke_scayt_item:active
37
+ {
38
+ border-color: #316ac5;
39
+ background-color: #dff1ff;
40
+ color : #000;
41
+ cursor: pointer;
42
+ }
43
+ .scayt_disabled a.cke_scayt_item:hover,
44
+ .scayt_disabled a.cke_scayt_item:focus,
45
+ .scayt_disabled a.cke_scayt_item:active
46
+ {
47
+ border-color: gray;
48
+ background-color: #dff1ff;
49
+ color : gray;
50
+ cursor: no-drop;
51
+ }
52
+ .cke_scayt_set_on, .cke_scayt_set_off
53
+ {
54
+ display: none;
55
+ }
56
+ .scayt_enabled .cke_scayt_set_on
57
+ {
58
+ display: none;
59
+ }
60
+ .scayt_disabled .cke_scayt_set_on
61
+ {
62
+ display: inline;
63
+ }
64
+ .scayt_disabled .cke_scayt_set_off
65
+ {
66
+ display: none;
67
+ }
68
+ .scayt_enabled .cke_scayt_set_off
69
+ {
70
+ display: inline;
71
+ }
@@ -0,0 +1,10 @@
1
+ /*
2
+ Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+ CKEDITOR.dialog.add("smiley",function(f){for(var e=f.config,a=f.lang.smiley,h=e.smiley_images,g=e.smiley_columns||8,i,k=function(j){var c=j.data.getTarget(),b=c.getName();if("a"==b)c=c.getChild(0);else if("img"!=b)return;var b=c.getAttribute("cke_src"),a=c.getAttribute("title"),c=f.document.createElement("img",{attributes:{src:b,"data-cke-saved-src":b,title:a,alt:a,width:c.$.width,height:c.$.height}});f.insertElement(c);i.hide();j.data.preventDefault()},n=CKEDITOR.tools.addFunction(function(a,c){var a=
6
+ new CKEDITOR.dom.event(a),c=new CKEDITOR.dom.element(c),b;b=a.getKeystroke();var d="rtl"==f.lang.dir;switch(b){case 38:if(b=c.getParent().getParent().getPrevious())b=b.getChild([c.getParent().getIndex(),0]),b.focus();a.preventDefault();break;case 40:if(b=c.getParent().getParent().getNext())(b=b.getChild([c.getParent().getIndex(),0]))&&b.focus();a.preventDefault();break;case 32:k({data:a});a.preventDefault();break;case d?37:39:if(b=c.getParent().getNext())b=b.getChild(0),b.focus(),a.preventDefault(!0);
7
+ else if(b=c.getParent().getParent().getNext())(b=b.getChild([0,0]))&&b.focus(),a.preventDefault(!0);break;case d?39:37:if(b=c.getParent().getPrevious())b=b.getChild(0),b.focus(),a.preventDefault(!0);else if(b=c.getParent().getParent().getPrevious())b=b.getLast().getChild(0),b.focus(),a.preventDefault(!0)}}),d=CKEDITOR.tools.getNextId()+"_smiley_emtions_label",d=['<div><span id="'+d+'" class="cke_voice_label">'+a.options+"</span>",'<table role="listbox" aria-labelledby="'+d+'" style="width:100%;height:100%;border-collapse:separate;" cellspacing="2" cellpadding="2"',
8
+ CKEDITOR.env.ie&&CKEDITOR.env.quirks?' style="position:absolute;"':"","><tbody>"],l=h.length,a=0;a<l;a++){0===a%g&&d.push('<tr role="presentation">');var m="cke_smile_label_"+a+"_"+CKEDITOR.tools.getNextNumber();d.push('<td class="cke_dark_background cke_centered" style="vertical-align: middle;" role="presentation"><a href="javascript:void(0)" role="option"',' aria-posinset="'+(a+1)+'"',' aria-setsize="'+l+'"',' aria-labelledby="'+m+'"',' class="cke_smile cke_hand" tabindex="-1" onkeydown="CKEDITOR.tools.callFunction( ',
9
+ n,', event, this );">','<img class="cke_hand" title="',e.smiley_descriptions[a],'" cke_src="',CKEDITOR.tools.htmlEncode(e.smiley_path+h[a]),'" alt="',e.smiley_descriptions[a],'"',' src="',CKEDITOR.tools.htmlEncode(e.smiley_path+h[a]),'"',CKEDITOR.env.ie?" onload=\"this.setAttribute('width', 2); this.removeAttribute('width');\" ":"",'><span id="'+m+'" class="cke_voice_label">'+e.smiley_descriptions[a]+"</span></a>","</td>");a%g==g-1&&d.push("</tr>")}if(a<g-1){for(;a<g-1;a++)d.push("<td></td>");d.push("</tr>")}d.push("</tbody></table></div>");
10
+ e={type:"html",id:"smileySelector",html:d.join(""),onLoad:function(a){i=a.sender},focus:function(){var a=this;setTimeout(function(){a.getElement().getElementsByTag("a").getItem(0).focus()},0)},onClick:k,style:"width: 100%; border-collapse: separate;"};return{title:f.lang.smiley.title,minWidth:270,minHeight:120,contents:[{id:"tab1",label:"",title:"",expand:!0,padding:0,elements:[e]}],buttons:[CKEDITOR.dialog.cancelButton]}});
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
2
+ For licensing, see LICENSE.html or http://ckeditor.com/license
3
+
4
+ cs.js Found: 118 Missing: 0
5
+ cy.js Found: 118 Missing: 0
6
+ de.js Found: 118 Missing: 0
7
+ el.js Found: 16 Missing: 102
8
+ eo.js Found: 118 Missing: 0
9
+ et.js Found: 31 Missing: 87
10
+ fa.js Found: 24 Missing: 94
11
+ fi.js Found: 23 Missing: 95
12
+ fr.js Found: 118 Missing: 0
13
+ hr.js Found: 23 Missing: 95
14
+ it.js Found: 118 Missing: 0
15
+ nb.js Found: 118 Missing: 0
16
+ nl.js Found: 118 Missing: 0
17
+ no.js Found: 118 Missing: 0
18
+ tr.js Found: 118 Missing: 0
19
+ ug.js Found: 39 Missing: 79
20
+ zh-cn.js Found: 118 Missing: 0
@@ -0,0 +1,13 @@
1
+ /*
2
+ Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+ CKEDITOR.plugins.setLang("specialchar","ca",{euro:"Símbol d'euro",lsquo:"Signe de cometa simple esquerra",rsquo:"Signe de cometa simple dreta",ldquo:"Signe de cometa doble esquerra",rdquo:"Signe de cometa doble dreta",ndash:"Guió",mdash:"Guió baix",iexcl:"Signe d'exclamació inversa",cent:"Símbol de percentatge",pound:"Símbol de lliura",curren:"Símbol de moneda",yen:"Símbol de Yen",brvbar:"Broken bar",sect:"Section sign",uml:"Dièresi",copy:"Símbol de Copyright",ordf:"Feminine ordinal indicator",laquo:"Left-pointing double angle quotation mark",
6
+ not:"Not sign",reg:"Símbol registrat",macr:"Macron",deg:"Degree sign",sup2:"Superscript two",sup3:"Superscript three",acute:"Acute accent",micro:"Micro sign",para:"Pilcrow sign",middot:"Middle dot",cedil:"Cedilla",sup1:"Superscript one",ordm:"Masculine ordinal indicator",raquo:"Right-pointing double angle quotation mark",frac14:"Vulgar fraction one quarter",frac12:"Vulgar fraction one half",frac34:"Vulgar fraction three quarters",iquest:"Inverted question mark",Agrave:"Latin capital letter A with grave accent",
7
+ Aacute:"Latin capital letter A with acute accent",Acirc:"Latin capital letter A with circumflex",Atilde:"Latin capital letter A with tilde",Auml:"Latin capital letter A with diaeresis",Aring:"Latin capital letter A with ring above",AElig:"Latin Capital letter Æ",Ccedil:"Latin capital letter C with cedilla",Egrave:"Latin capital letter E with grave accent",Eacute:"Latin capital letter E with acute accent",Ecirc:"Latin capital letter E with circumflex",Euml:"Latin capital letter E with diaeresis",Igrave:"Latin capital letter I with grave accent",
8
+ Iacute:"Latin capital letter I with acute accent",Icirc:"Latin capital letter I with circumflex",Iuml:"Latin capital letter I with diaeresis",ETH:"Latin capital letter Eth",Ntilde:"Latin capital letter N with tilde",Ograve:"Latin capital letter O with grave accent",Oacute:"Latin capital letter O with acute accent",Ocirc:"Latin capital letter O with circumflex",Otilde:"Latin capital letter O with tilde",Ouml:"Latin capital letter O with diaeresis",times:"Multiplication sign",Oslash:"Latin capital letter O with stroke",
9
+ Ugrave:"Latin capital letter U with grave accent",Uacute:"Latin capital letter U with acute accent",Ucirc:"Latin capital letter U with circumflex",Uuml:"Latin capital letter U with diaeresis",Yacute:"Latin capital letter Y with acute accent",THORN:"Latin capital letter Thorn",szlig:"Latin small letter sharp s",agrave:"Latin small letter a with grave accent",aacute:"Latin small letter a with acute accent",acirc:"Latin small letter a with circumflex",atilde:"Latin small letter a with tilde",auml:"Latin small letter a with diaeresis",
10
+ aring:"Latin small letter a with ring above",aelig:"Latin small letter æ",ccedil:"Latin small letter c with cedilla",egrave:"Latin small letter e with grave accent",eacute:"Latin small letter e with acute accent",ecirc:"Latin small letter e with circumflex",euml:"Latin small letter e with diaeresis",igrave:"Latin small letter i with grave accent",iacute:"Latin small letter i with acute accent",icirc:"Latin small letter i with circumflex",iuml:"Latin small letter i with diaeresis",eth:"Latin small letter eth",
11
+ ntilde:"Latin small letter n with tilde",ograve:"Latin small letter o with grave accent",oacute:"Latin small letter o with acute accent",ocirc:"Latin small letter o with circumflex",otilde:"Latin small letter o with tilde",ouml:"Latin small letter o with diaeresis",divide:"Division sign",oslash:"Latin small letter o with stroke",ugrave:"Latin small letter u with grave accent",uacute:"Latin small letter u with acute accent",ucirc:"Latin small letter u with circumflex",uuml:"Latin small letter u with diaeresis",
12
+ yacute:"Latin small letter y with acute accent",thorn:"Latin small letter thorn",yuml:"Latin small letter y with diaeresis",OElig:"Latin capital ligature OE",oelig:"Latin small ligature oe",372:"Latin capital letter W with circumflex",374:"Latin capital letter Y with circumflex",373:"Latin small letter w with circumflex",375:"Latin small letter y with circumflex",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",bdquo:"Double low-9 quotation mark",hellip:"Horizontal ellipsis",
13
+ trade:"Trade mark sign",9658:"Black right-pointing pointer",bull:"Bullet",rarr:"Rightwards arrow",rArr:"Rightwards double arrow",hArr:"Left right double arrow",diams:"Black diamond suit",asymp:"Almost equal to"});
@@ -0,0 +1,13 @@
1
+ /*
2
+ Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+ CKEDITOR.plugins.setLang("specialchar","cs",{euro:"Znak eura",lsquo:"Počáteční uvozovka jednoduchá",rsquo:"Koncová uvozovka jednoduchá",ldquo:"Počáteční uvozovka dvojitá",rdquo:"Koncová uvozovka dvojitá",ndash:"En pomlčka",mdash:"Em pomlčka",iexcl:"Obrácený vykřičník",cent:"Znak centu",pound:"Znak libry",curren:"Znak měny",yen:"Znak jenu",brvbar:"Přerušená svislá čára",sect:"Znak oddílu",uml:"Přehláska",copy:"Znak copyrightu",ordf:"Ženský indikátor rodu",laquo:"Znak dvojitých lomených uvozovek vlevo",
6
+ not:"Logistický zápor",reg:"Znak registrace",macr:"Pomlčka nad",deg:"Znak stupně",sup2:"Dvojka jako horní index",sup3:"Trojka jako horní index",acute:"Čárka nad vpravo",micro:"Znak mikro",para:"Znak odstavce",middot:"Tečka uprostřed",cedil:"Ocásek vlevo",sup1:"Jednička jako horní index",ordm:"Mužský indikátor rodu",raquo:"Znak dvojitých lomených uvozovek vpravo",frac14:"Obyčejný zlomek jedna čtvrtina",frac12:"Obyčejný zlomek jedna polovina",frac34:"Obyčejný zlomek tři čtvrtiny",iquest:"Znak obráceného otazníku",
7
+ Agrave:"Velké písmeno latinky A s čárkou nad vlevo",Aacute:"Velké písmeno latinky A s čárkou nad vpravo",Acirc:"Velké písmeno latinky A s vokáněm",Atilde:"Velké písmeno latinky A s tildou",Auml:"Velké písmeno latinky A s dvěma tečkami",Aring:"Velké písmeno latinky A s kroužkem nad",AElig:"Velké písmeno latinky Ae",Ccedil:"Velké písmeno latinky C s ocáskem vlevo",Egrave:"Velké písmeno latinky E s čárkou nad vlevo",Eacute:"Velké písmeno latinky E s čárkou nad vpravo",Ecirc:"Velké písmeno latinky E s vokáněm",
8
+ Euml:"Velké písmeno latinky E s dvěma tečkami",Igrave:"Velké písmeno latinky I s čárkou nad vlevo",Iacute:"Velké písmeno latinky I s čárkou nad vpravo",Icirc:"Velké písmeno latinky I s vokáněm",Iuml:"Velké písmeno latinky I s dvěma tečkami",ETH:"Velké písmeno latinky Eth",Ntilde:"Velké písmeno latinky N s tildou",Ograve:"Velké písmeno latinky O s čárkou nad vlevo",Oacute:"Velké písmeno latinky O s čárkou nad vpravo",Ocirc:"Velké písmeno latinky O s vokáněm",Otilde:"Velké písmeno latinky O s tildou",
9
+ Ouml:"Velké písmeno latinky O s dvěma tečkami",times:"Znak násobení",Oslash:"Velké písmeno latinky O přeškrtnuté",Ugrave:"Velké písmeno latinky U s čárkou nad vlevo",Uacute:"Velké písmeno latinky U s čárkou nad vpravo",Ucirc:"Velké písmeno latinky U s vokáněm",Uuml:"Velké písmeno latinky U s dvěma tečkami",Yacute:"Velké písmeno latinky Y s čárkou nad vpravo",THORN:"Velké písmeno latinky Thorn",szlig:"Malé písmeno latinky ostré s",agrave:"Malé písmeno latinky a s čárkou nad vlevo",aacute:"Malé písmeno latinky a s čárkou nad vpravo",
10
+ acirc:"Malé písmeno latinky a s vokáněm",atilde:"Malé písmeno latinky a s tildou",auml:"Malé písmeno latinky a s dvěma tečkami",aring:"Malé písmeno latinky a s kroužkem nad",aelig:"Malé písmeno latinky ae",ccedil:"Malé písmeno latinky c s ocáskem vlevo",egrave:"Malé písmeno latinky e s čárkou nad vlevo",eacute:"Malé písmeno latinky e s čárkou nad vpravo",ecirc:"Malé písmeno latinky e s vokáněm",euml:"Malé písmeno latinky e s dvěma tečkami",igrave:"Malé písmeno latinky i s čárkou nad vlevo",iacute:"Malé písmeno latinky i s čárkou nad vpravo",
11
+ icirc:"Malé písmeno latinky i s vokáněm",iuml:"Malé písmeno latinky i s dvěma tečkami",eth:"Malé písmeno latinky eth",ntilde:"Malé písmeno latinky n s tildou",ograve:"Malé písmeno latinky o s čárkou nad vlevo",oacute:"Malé písmeno latinky o s čárkou nad vpravo",ocirc:"Malé písmeno latinky o s vokáněm",otilde:"Malé písmeno latinky o s tildou",ouml:"Malé písmeno latinky o s dvěma tečkami",divide:"Znak dělení",oslash:"Malé písmeno latinky o přeškrtnuté",ugrave:"Malé písmeno latinky u s čárkou nad vlevo",
12
+ uacute:"Malé písmeno latinky u s čárkou nad vpravo",ucirc:"Malé písmeno latinky u s vokáněm",uuml:"Malé písmeno latinky u s dvěma tečkami",yacute:"Malé písmeno latinky y s čárkou nad vpravo",thorn:"Malé písmeno latinky thorn",yuml:"Malé písmeno latinky y s dvěma tečkami",OElig:"Velká ligatura latinky OE",oelig:"Malá ligatura latinky OE",372:"Velké písmeno latinky W s vokáněm",374:"Velké písmeno latinky Y s vokáněm",373:"Malé písmeno latinky w s vokáněm",375:"Malé písmeno latinky y s vokáněm",sbquo:"Dolní 9 uvozovka jednoduchá",
13
+ 8219:"Horní obrácená 9 uvozovka jednoduchá",bdquo:"Dolní 9 uvozovka dvojitá",hellip:"Trojtečkový úvod",trade:"Obchodní značka",9658:"Černý ukazatel směřující vpravo",bull:"Kolečko",rarr:"Šipka vpravo",rArr:"Dvojitá šipka vpravo",hArr:"Dvojitá šipka vlevo a vpravo",diams:"Černé piky",asymp:"Téměř se rovná"});
@@ -0,0 +1,14 @@
1
+ /*
2
+ Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+ CKEDITOR.plugins.setLang("specialchar","cy",{euro:"Arwydd yr Ewro",lsquo:"Dyfynnod chwith unigol",rsquo:"Dyfynnod dde unigol",ldquo:"Dyfynnod chwith dwbl",rdquo:"Dyfynnod dde dwbl",ndash:"Cysylltnod en",mdash:"Cysylltnod em",iexcl:"Ebychnod gwrthdro",cent:"Arwydd sent",pound:"Arwydd punt",curren:"Arwydd arian cyfred",yen:"Arwydd yen",brvbar:"Bar toriedig",sect:"Arwydd adran",uml:"Didolnod",copy:"Arwydd hawlfraint",ordf:"Dangosydd benywaidd",laquo:"Dyfynnod dwbl ar ongl i'r chwith",not:"Arwydd Nid",
6
+ reg:"Arwydd cofrestredig",macr:"Macron",deg:"Arwydd gradd",sup2:"Dau uwchsgript",sup3:"Tri uwchsgript",acute:"Acen ddyrchafedig",micro:"Arwydd micro",para:"Arwydd pilcrow",middot:"Dot canol",cedil:"Sedila",sup1:"Un uwchsgript",ordm:"Dangosydd gwrywaidd",raquo:"Dyfynnod dwbl ar ongl i'r dde",frac14:"Ffracsiwn cyffredin un cwarter",frac12:"Ffracsiwn cyffredin un hanner",frac34:"Ffracsiwn cyffredin tri chwarter",iquest:"Marc cwestiwn gwrthdroëdig",Agrave:"Priflythyren A Lladinaidd gydag acen ddisgynedig",
7
+ Aacute:"Priflythyren A Lladinaidd gydag acen ddyrchafedig",Acirc:"Priflythyren A Lladinaidd gydag acen grom",Atilde:"Priflythyren A Lladinaidd gyda thild",Auml:"Priflythyren A Lladinaidd gyda didolnod",Aring:"Priflythyren A Lladinaidd gyda chylch uwchben",AElig:"Priflythyren Æ Lladinaidd",Ccedil:"Priflythyren C Lladinaidd gyda sedila",Egrave:"Priflythyren E Lladinaidd gydag acen ddisgynedig",Eacute:"Priflythyren E Lladinaidd gydag acen ddyrchafedig",Ecirc:"Priflythyren E Lladinaidd gydag acen grom",
8
+ Euml:"Priflythyren E Lladinaidd gyda didolnod",Igrave:"Priflythyren I Lladinaidd gydag acen ddisgynedig",Iacute:"Priflythyren I Lladinaidd gydag acen ddyrchafedig",Icirc:"Priflythyren I Lladinaidd gydag acen grom",Iuml:"Priflythyren I Lladinaidd gyda didolnod",ETH:"Priflythyren Eth",Ntilde:"Priflythyren N Lladinaidd gyda thild",Ograve:"Priflythyren O Lladinaidd gydag acen ddisgynedig",Oacute:"Priflythyren O Lladinaidd gydag acen ddyrchafedig",Ocirc:"Priflythyren O Lladinaidd gydag acen grom",Otilde:"Priflythyren O Lladinaidd gyda thild",
9
+ Ouml:"Priflythyren O Lladinaidd gyda didolnod",times:"Arwydd lluosi",Oslash:"Priflythyren O Lladinaidd gyda strôc",Ugrave:"Priflythyren U Lladinaidd gydag acen ddisgynedig",Uacute:"Priflythyren U Lladinaidd gydag acen ddyrchafedig",Ucirc:"Priflythyren U Lladinaidd gydag acen grom",Uuml:"Priflythyren U Lladinaidd gyda didolnod",Yacute:"Priflythyren Y Lladinaidd gydag acen ddyrchafedig",THORN:"Priflythyren Thorn",szlig:"Llythyren s fach Lladinaidd siarp ",agrave:"Llythyren a fach Lladinaidd gydag acen ddisgynedig",
10
+ aacute:"Llythyren a fach Lladinaidd gydag acen ddyrchafedig",acirc:"Llythyren a fach Lladinaidd gydag acen grom",atilde:"Llythyren a fach Lladinaidd gyda thild",auml:"Llythyren a fach Lladinaidd gyda didolnod",aring:"Llythyren a fach Lladinaidd gyda chylch uwchben",aelig:"Llythyren æ fach Lladinaidd",ccedil:"Llythyren c fach Lladinaidd gyda sedila",egrave:"Llythyren e fach Lladinaidd gydag acen ddisgynedig",eacute:"Llythyren e fach Lladinaidd gydag acen ddyrchafedig",ecirc:"Llythyren e fach Lladinaidd gydag acen grom",
11
+ euml:"Llythyren e fach Lladinaidd gyda didolnod",igrave:"Llythyren i fach Lladinaidd gydag acen ddisgynedig",iacute:"Llythyren i fach Lladinaidd gydag acen ddyrchafedig",icirc:"Llythyren i fach Lladinaidd gydag acen grom",iuml:"Llythyren i fach Lladinaidd gyda didolnod",eth:"Llythyren eth fach",ntilde:"Llythyren n fach Lladinaidd gyda thild",ograve:"Llythyren o fach Lladinaidd gydag acen ddisgynedig",oacute:"Llythyren o fach Lladinaidd gydag acen ddyrchafedig",ocirc:"Llythyren o fach Lladinaidd gydag acen grom",
12
+ otilde:"Llythyren o fach Lladinaidd gyda thild",ouml:"Llythyren o fach Lladinaidd gyda didolnod",divide:"Arwydd rhannu",oslash:"Llyth",ugrave:"Llythyren u fach Lladinaidd gydag acen ddisgynedig",uacute:"Llythyren u fach Lladinaidd gydag acen ddyrchafedig",ucirc:"Llythyren u fach Lladinaidd gydag acen grom",uuml:"Llythyren u fach Lladinaidd gyda didolnod",yacute:"Llythyren y fach Lladinaidd gydag acen ddisgynedig",thorn:"Llythyren o fach Lladinaidd gyda strôc",yuml:"Llythyren y fach Lladinaidd gyda didolnod",
13
+ OElig:"Priflythyren cwlwm OE Lladinaidd ",oelig:"Priflythyren cwlwm oe Lladinaidd ",372:"Priflythyren W gydag acen grom",374:"Priflythyren Y gydag acen grom",373:"Llythyren w fach gydag acen grom",375:"Llythyren y fach gydag acen grom",sbquo:"Dyfynnod sengl 9-isel",8219:"Dyfynnod sengl 9-uchel cildro",bdquo:"Dyfynnod dwbl 9-isel",hellip:"Coll geiriau llorweddol",trade:"Arwydd marc masnachol",9658:"Pwyntydd du i'r dde",bull:"Bwled",rarr:"Saeth i'r dde",rArr:"Saeth ddwbl i'r dde",hArr:"Saeth ddwbl i'r chwith",
14
+ diams:"Siwt diemwnt du",asymp:"Bron yn hafal iddo"});
@@ -0,0 +1,13 @@
1
+ /*
2
+ Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+ CKEDITOR.plugins.setLang("specialchar","de",{euro:"Euro Zeichen",lsquo:"Hochkomma links",rsquo:"Hochkomma rechts",ldquo:"Anführungszeichen links",rdquo:"Anführungszeichen rechts",ndash:"kleiner Strich",mdash:"mittlerer Strich",iexcl:"invertiertes Ausrufezeichen",cent:"Cent",pound:"Pfund",curren:"Währung",yen:"Yen",brvbar:"gestrichelte Linie",sect:"§ Zeichen",uml:"Diäresis",copy:"Copyright",ordf:"Feminine ordinal Anzeige",laquo:"Nach links zeigenden Doppel-Winkel Anführungszeichen",not:"Not-Zeichen",
6
+ reg:"Registriert",macr:"Längezeichen",deg:"Grad",sup2:"Hoch 2",sup3:"Hoch 3",acute:"Akzentzeichen ",micro:"Micro",para:"Pilcrow-Zeichen",middot:"Mittelpunkt",cedil:"Cedilla",sup1:"Hoch 1",ordm:"Männliche Ordnungszahl Anzeige",raquo:"Nach rechts zeigenden Doppel-Winkel Anführungszeichen",frac14:"ein Viertel",frac12:"Hälfte",frac34:"Dreiviertel",iquest:"Umgekehrtes Fragezeichen",Agrave:"Lateinischer Buchstabe A mit AkzentGrave",Aacute:"Lateinischer Buchstabe A mit Akutakzent",Acirc:"Lateinischer Buchstabe A mit Zirkumflex",
7
+ Atilde:"Lateinischer Buchstabe A mit Tilde",Auml:"Lateinischer Buchstabe A mit Trema",Aring:"Lateinischer Buchstabe A mit Ring oben",AElig:"Lateinischer Buchstabe Æ",Ccedil:"Lateinischer Buchstabe C mit Cedille",Egrave:"Lateinischer Buchstabe E mit AkzentGrave",Eacute:"Lateinischer Buchstabe E mit Akutakzent",Ecirc:"Lateinischer Buchstabe E mit Zirkumflex",Euml:"Lateinischer Buchstabe E Trema",Igrave:"Lateinischer Buchstabe I mit AkzentGrave",Iacute:"Lateinischer Buchstabe I mit Akutakzent",Icirc:"Lateinischer Buchstabe I mit Zirkumflex",
8
+ Iuml:"Lateinischer Buchstabe I mit Trema",ETH:"Lateinischer Buchstabe Eth",Ntilde:"Lateinischer Buchstabe N mit Tilde",Ograve:"Lateinischer Buchstabe O mit AkzentGrave",Oacute:"Lateinischer Buchstabe O mit Akutakzent",Ocirc:"Lateinischer Buchstabe O mit Zirkumflex",Otilde:"Lateinischer Buchstabe O mit Tilde",Ouml:"Lateinischer Buchstabe O mit Trema",times:"Multiplikation",Oslash:"Lateinischer Buchstabe O durchgestrichen",Ugrave:"Lateinischer Buchstabe U mit Akzentgrave",Uacute:"Lateinischer Buchstabe U mit Akutakzent",
9
+ Ucirc:"Lateinischer Buchstabe U mit Zirkumflex",Uuml:"Lateinischer Buchstabe a mit Trema",Yacute:"Lateinischer Buchstabe a mit Akzent",THORN:"Lateinischer Buchstabe mit Dorn",szlig:"Kleiner lateinischer Buchstabe scharfe s",agrave:"Kleiner lateinischer Buchstabe a mit Accent grave",aacute:"Kleiner lateinischer Buchstabe a mit Akut",acirc:"Lateinischer Buchstabe a mit Zirkumflex",atilde:"Lateinischer Buchstabe a mit Tilde",auml:"Kleiner lateinischer Buchstabe a mit Trema",aring:"Kleiner lateinischer Buchstabe a mit Ring oben",
10
+ aelig:"Lateinischer Buchstabe æ",ccedil:"Kleiner lateinischer Buchstabe c mit Cedille",egrave:"Kleiner lateinischer Buchstabe e mit Accent grave",eacute:"Kleiner lateinischer Buchstabe e mit Akut",ecirc:"Kleiner lateinischer Buchstabe e mit Zirkumflex",euml:"Kleiner lateinischer Buchstabe e mit Trema",igrave:"Kleiner lateinischer Buchstabe i mit AkzentGrave",iacute:"Kleiner lateinischer Buchstabe i mit Akzent",icirc:"Kleiner lateinischer Buchstabe i mit Zirkumflex",iuml:"Kleiner lateinischer Buchstabe i mit Trema",
11
+ eth:"Kleiner lateinischer Buchstabe eth",ntilde:"Kleiner lateinischer Buchstabe n mit Tilde",ograve:"Kleiner lateinischer Buchstabe o mit Accent grave",oacute:"Kleiner lateinischer Buchstabe o mit Akzent",ocirc:"Kleiner lateinischer Buchstabe o mit Zirkumflex",otilde:"Lateinischer Buchstabe i mit Tilde",ouml:"Kleiner lateinischer Buchstabe o mit Trema",divide:"Divisionszeichen",oslash:"Kleiner lateinischer Buchstabe o durchgestrichen",ugrave:"Kleiner lateinischer Buchstabe u mit Accent grave",uacute:"Kleiner lateinischer Buchstabe u mit Akut",
12
+ ucirc:"Kleiner lateinischer Buchstabe u mit Zirkumflex",uuml:"Kleiner lateinischer Buchstabe u mit Trema",yacute:"Kleiner lateinischer Buchstabe y mit Akut",thorn:"Kleiner lateinischer Buchstabe Dorn",yuml:"Kleiner lateinischer Buchstabe y mit Trema",OElig:"Lateinischer Buchstabe Ligatur OE",oelig:"Kleiner lateinischer Buchstabe Ligatur OE",372:"Lateinischer Buchstabe W mit Zirkumflex",374:"Lateinischer Buchstabe Y mit Zirkumflex",373:"Kleiner lateinischer Buchstabe w mit Zirkumflex",375:"Kleiner lateinischer Buchstabe y mit Zirkumflex",
13
+ sbquo:"Tiefergestelltes Komma",8219:"Rumgedrehtes Komma",bdquo:"Doppeltes Anführungszeichen unten",hellip:"horizontale Auslassungspunkte",trade:"Handelszeichen",9658:"Dreickspfeil rechts",bull:"Bullet",rarr:"Pfeil rechts",rArr:"Doppelpfeil rechts",hArr:"Doppelpfeil links",diams:"Karo",asymp:"Ungefähr"});
@@ -0,0 +1,13 @@
1
+ /*
2
+ Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+ CKEDITOR.plugins.setLang("specialchar","el",{euro:"Σύμβολο Ευρώ",lsquo:"Αριστερός χαρακτήρας μονού εισαγωγικού",rsquo:"Δεξιός χαρακτήρας μονού εισαγωγικού",ldquo:"Αριστερός χαρακτήρας διπλού εισαγωγικού",rdquo:"Δεξιός χαρακτήρας διπλού εισαγωγικού",ndash:"Παύλα en",mdash:"Παύλα em",iexcl:"Ανάποδο θαυμαστικό",cent:"Σύμβολο Σεντ",pound:"Σύμβολο λίρας",curren:"Σύμβολο συναλλαγματικής μονάδας",yen:"Σύμβολο Γιέν",brvbar:"Σπασμένη μπάρα",sect:"Σύμβολο τμήματος",uml:"Διαίρεση",copy:"Σύμβολο πνευματικών δικαιωμάτων",
6
+ ordf:"Feminine ordinal indicator",laquo:"Left-pointing double angle quotation mark",not:"Not sign",reg:"Registered sign",macr:"Macron",deg:"Degree sign",sup2:"Superscript two",sup3:"Superscript three",acute:"Acute accent",micro:"Micro sign",para:"Pilcrow sign",middot:"Middle dot",cedil:"Cedilla",sup1:"Superscript one",ordm:"Masculine ordinal indicator",raquo:"Right-pointing double angle quotation mark",frac14:"Vulgar fraction one quarter",frac12:"Vulgar fraction one half",frac34:"Vulgar fraction three quarters",
7
+ iquest:"Inverted question mark",Agrave:"Latin capital letter A with grave accent",Aacute:"Latin capital letter A with acute accent",Acirc:"Latin capital letter A with circumflex",Atilde:"Latin capital letter A with tilde",Auml:"Latin capital letter A with diaeresis",Aring:"Latin capital letter A with ring above",AElig:"Latin Capital letter Æ",Ccedil:"Latin capital letter C with cedilla",Egrave:"Latin capital letter E with grave accent",Eacute:"Latin capital letter E with acute accent",Ecirc:"Latin capital letter E with circumflex",
8
+ Euml:"Latin capital letter E with diaeresis",Igrave:"Latin capital letter I with grave accent",Iacute:"Latin capital letter I with acute accent",Icirc:"Latin capital letter I with circumflex",Iuml:"Latin capital letter I with diaeresis",ETH:"Latin capital letter Eth",Ntilde:"Latin capital letter N with tilde",Ograve:"Latin capital letter O with grave accent",Oacute:"Latin capital letter O with acute accent",Ocirc:"Latin capital letter O with circumflex",Otilde:"Latin capital letter O with tilde",
9
+ Ouml:"Latin capital letter O with diaeresis",times:"Multiplication sign",Oslash:"Latin capital letter O with stroke",Ugrave:"Latin capital letter U with grave accent",Uacute:"Latin capital letter U with acute accent",Ucirc:"Latin capital letter U with circumflex",Uuml:"Latin capital letter U with diaeresis",Yacute:"Latin capital letter Y with acute accent",THORN:"Latin capital letter Thorn",szlig:"Latin small letter sharp s",agrave:"Latin small letter a with grave accent",aacute:"Latin small letter a with acute accent",
10
+ acirc:"Latin small letter a with circumflex",atilde:"Latin small letter a with tilde",auml:"Latin small letter a with diaeresis",aring:"Latin small letter a with ring above",aelig:"Latin small letter æ",ccedil:"Latin small letter c with cedilla",egrave:"Latin small letter e with grave accent",eacute:"Latin small letter e with acute accent",ecirc:"Latin small letter e with circumflex",euml:"Latin small letter e with diaeresis",igrave:"Latin small letter i with grave accent",iacute:"Latin small letter i with acute accent",
11
+ icirc:"Latin small letter i with circumflex",iuml:"Latin small letter i with diaeresis",eth:"Latin small letter eth",ntilde:"Latin small letter n with tilde",ograve:"Latin small letter o with grave accent",oacute:"Latin small letter o with acute accent",ocirc:"Latin small letter o with circumflex",otilde:"Latin small letter o with tilde",ouml:"Latin small letter o with diaeresis",divide:"Division sign",oslash:"Latin small letter o with stroke",ugrave:"Latin small letter u with grave accent",uacute:"Latin small letter u with acute accent",
12
+ ucirc:"Latin small letter u with circumflex",uuml:"Latin small letter u with diaeresis",yacute:"Latin small letter y with acute accent",thorn:"Latin small letter thorn",yuml:"Latin small letter y with diaeresis",OElig:"Latin capital ligature OE",oelig:"Latin small ligature oe",372:"Latin capital letter W with circumflex",374:"Latin capital letter Y with circumflex",373:"Latin small letter w with circumflex",375:"Latin small letter y with circumflex",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",
13
+ bdquo:"Double low-9 quotation mark",hellip:"Horizontal ellipsis",trade:"Trade mark sign",9658:"Black right-pointing pointer",bull:"Bullet",rarr:"Rightwards arrow",rArr:"Rightwards double arrow",hArr:"Left right double arrow",diams:"Black diamond suit",asymp:"Almost equal to"});
@@ -0,0 +1,13 @@
1
+ /*
2
+ Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+ CKEDITOR.plugins.setLang("specialchar","en",{euro:"Euro sign",lsquo:"Left single quotation mark",rsquo:"Right single quotation mark",ldquo:"Left double quotation mark",rdquo:"Right double quotation mark",ndash:"En dash",mdash:"Em dash",iexcl:"Inverted exclamation mark",cent:"Cent sign",pound:"Pound sign",curren:"Currency sign",yen:"Yen sign",brvbar:"Broken bar",sect:"Section sign",uml:"Diaeresis",copy:"Copyright sign",ordf:"Feminine ordinal indicator",laquo:"Left-pointing double angle quotation mark",
6
+ not:"Not sign",reg:"Registered sign",macr:"Macron",deg:"Degree sign",sup2:"Superscript two",sup3:"Superscript three",acute:"Acute accent",micro:"Micro sign",para:"Pilcrow sign",middot:"Middle dot",cedil:"Cedilla",sup1:"Superscript one",ordm:"Masculine ordinal indicator",raquo:"Right-pointing double angle quotation mark",frac14:"Vulgar fraction one quarter",frac12:"Vulgar fraction one half",frac34:"Vulgar fraction three quarters",iquest:"Inverted question mark",Agrave:"Latin capital letter A with grave accent",
7
+ Aacute:"Latin capital letter A with acute accent",Acirc:"Latin capital letter A with circumflex",Atilde:"Latin capital letter A with tilde",Auml:"Latin capital letter A with diaeresis",Aring:"Latin capital letter A with ring above",AElig:"Latin Capital letter Æ",Ccedil:"Latin capital letter C with cedilla",Egrave:"Latin capital letter E with grave accent",Eacute:"Latin capital letter E with acute accent",Ecirc:"Latin capital letter E with circumflex",Euml:"Latin capital letter E with diaeresis",Igrave:"Latin capital letter I with grave accent",
8
+ Iacute:"Latin capital letter I with acute accent",Icirc:"Latin capital letter I with circumflex",Iuml:"Latin capital letter I with diaeresis",ETH:"Latin capital letter Eth",Ntilde:"Latin capital letter N with tilde",Ograve:"Latin capital letter O with grave accent",Oacute:"Latin capital letter O with acute accent",Ocirc:"Latin capital letter O with circumflex",Otilde:"Latin capital letter O with tilde",Ouml:"Latin capital letter O with diaeresis",times:"Multiplication sign",Oslash:"Latin capital letter O with stroke",
9
+ Ugrave:"Latin capital letter U with grave accent",Uacute:"Latin capital letter U with acute accent",Ucirc:"Latin capital letter U with circumflex",Uuml:"Latin capital letter U with diaeresis",Yacute:"Latin capital letter Y with acute accent",THORN:"Latin capital letter Thorn",szlig:"Latin small letter sharp s",agrave:"Latin small letter a with grave accent",aacute:"Latin small letter a with acute accent",acirc:"Latin small letter a with circumflex",atilde:"Latin small letter a with tilde",auml:"Latin small letter a with diaeresis",
10
+ aring:"Latin small letter a with ring above",aelig:"Latin small letter æ",ccedil:"Latin small letter c with cedilla",egrave:"Latin small letter e with grave accent",eacute:"Latin small letter e with acute accent",ecirc:"Latin small letter e with circumflex",euml:"Latin small letter e with diaeresis",igrave:"Latin small letter i with grave accent",iacute:"Latin small letter i with acute accent",icirc:"Latin small letter i with circumflex",iuml:"Latin small letter i with diaeresis",eth:"Latin small letter eth",
11
+ ntilde:"Latin small letter n with tilde",ograve:"Latin small letter o with grave accent",oacute:"Latin small letter o with acute accent",ocirc:"Latin small letter o with circumflex",otilde:"Latin small letter o with tilde",ouml:"Latin small letter o with diaeresis",divide:"Division sign",oslash:"Latin small letter o with stroke",ugrave:"Latin small letter u with grave accent",uacute:"Latin small letter u with acute accent",ucirc:"Latin small letter u with circumflex",uuml:"Latin small letter u with diaeresis",
12
+ yacute:"Latin small letter y with acute accent",thorn:"Latin small letter thorn",yuml:"Latin small letter y with diaeresis",OElig:"Latin capital ligature OE",oelig:"Latin small ligature oe",372:"Latin capital letter W with circumflex",374:"Latin capital letter Y with circumflex",373:"Latin small letter w with circumflex",375:"Latin small letter y with circumflex",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",bdquo:"Double low-9 quotation mark",hellip:"Horizontal ellipsis",
13
+ trade:"Trade mark sign",9658:"Black right-pointing pointer",bull:"Bullet",rarr:"Rightwards arrow",rArr:"Rightwards double arrow",hArr:"Left right double arrow",diams:"Black diamond suit",asymp:"Almost equal to"});
@@ -0,0 +1,12 @@
1
+ /*
2
+ Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+ CKEDITOR.plugins.setLang("specialchar","eo",{euro:"Eŭrosigno",lsquo:"Supra 6-citilo",rsquo:"Supra 9-citilo",ldquo:"Supra 66-citilo",rdquo:"Supra 99-citilo",ndash:"Streketo",mdash:"Substreko",iexcl:"Renversita krisigno",cent:"Cendosigno",pound:"Pundosigno",curren:"Monersigno",yen:"Enosigno",brvbar:"Rompita vertikala streko",sect:"Kurba paragrafo",uml:"Tremao",copy:"Kopirajtosigno",ordf:"Adjektiva numerfinaĵo",laquo:"Duobla malplio-citilo",not:"Negohoko",reg:"Registrita marko",macr:"Superstreko",deg:"Gradosigno",
6
+ sup2:"Supra indico 2",sup3:"Supra indico 3",acute:"Dekstra korno",micro:"Mikrosigno",para:"Rekta paragrafo",middot:"Meza punkto",cedil:"Zoeto",sup1:"Supra indico 1",ordm:"Substantiva numerfinaĵo",raquo:"Duobla plio-citilo",frac14:"Kvaronosigno",frac12:"Duonosigno",frac34:"Trikvaronosigno",iquest:"renversita demandosigno",Agrave:"Latina ĉeflitero A kun liva korno",Aacute:"Latina ĉeflitero A kun dekstra korno",Acirc:"Latina ĉeflitero A kun ĉapelo",Atilde:"Latina ĉeflitero A kun tildo",Auml:"Latina ĉeflitero A kun tremao",
7
+ Aring:"Latina ĉeflitero A kun superringo",AElig:"Latina ĉeflitera ligaturo Æ",Ccedil:"Latina ĉeflitero C kun zoeto",Egrave:"Latina ĉeflitero E kun liva korno",Eacute:"Latina ĉeflitero E kun dekstra korno",Ecirc:"Latina ĉeflitero E kun ĉapelo",Euml:"Latina ĉeflitero E kun tremao",Igrave:"Latina ĉeflitero I kun liva korno",Iacute:"Latina ĉeflitero I kun dekstra korno",Icirc:"Latina ĉeflitero I kun ĉapelo",Iuml:"Latina ĉeflitero I kun tremao",ETH:"Latina ĉeflitero islanda edo",Ntilde:"Latina ĉeflitero N kun tildo",
8
+ Ograve:"Latina ĉeflitero O kun liva korno",Oacute:"Latina ĉeflitero O kun dekstra korno",Ocirc:"Latina ĉeflitero O kun ĉapelo",Otilde:"Latina ĉeflitero O kun tildo",Ouml:"Latina ĉeflitero O kun tremao",times:"Multipliko",Oslash:"Latina ĉeflitero O trastrekita",Ugrave:"Latina ĉeflitero U kun liva korno",Uacute:"Latina ĉeflitero U kun dekstra korno",Ucirc:"Latina ĉeflitero U kun ĉapelo",Uuml:"Latina ĉeflitero U kun tremao",Yacute:"Latina ĉeflitero Y kun dekstra korno",THORN:"Latina ĉeflitero islanda dorno",
9
+ szlig:"Latina etlitero germana sozo (akra s)",agrave:"Latina etlitero a kun liva korno",aacute:"Latina etlitero a kun dekstra korno",acirc:"Latina etlitero a kun ĉapelo",atilde:"Latina etlitero a kun tildo",auml:"Latina etlitero a kun tremao",aring:"Latina etlitero a kun superringo",aelig:"Latina etlitera ligaturo æ",ccedil:"Latina etlitero c kun zoeto",egrave:"Latina etlitero e kun liva korno",eacute:"Latina etlitero e kun dekstra korno",ecirc:"Latina etlitero e kun ĉapelo",euml:"Latina etlitero e kun tremao",
10
+ igrave:"Latina etlitero i kun liva korno",iacute:"Latina etlitero i kun dekstra korno",icirc:"Latina etlitero i kun ĉapelo",iuml:"Latina etlitero i kun tremao",eth:"Latina etlitero islanda edo",ntilde:"Latina etlitero n kun tildo",ograve:"Latina etlitero o kun liva korno",oacute:"Latina etlitero o kun dekstra korno",ocirc:"Latina etlitero o kun ĉapelo",otilde:"Latina etlitero o kun tildo",ouml:"Latina etlitero o kun tremao",divide:"Dividosigno",oslash:"Latina etlitero o trastrekita",ugrave:"Latina etlitero u kun liva korno",
11
+ uacute:"Latina etlitero u kun dekstra korno",ucirc:"Latina etlitero u kun ĉapelo",uuml:"Latina etlitero u kun tremao",yacute:"Latina etlitero y kun dekstra korno",thorn:"Latina etlitero islanda dorno",yuml:"Latina etlitero y kun tremao",OElig:"Latina ĉeflitera ligaturo Œ",oelig:"Latina etlitera ligaturo œ",372:"Latina ĉeflitero W kun ĉapelo",374:"Latina ĉeflitero Y kun ĉapelo",373:"Latina etlitero w kun ĉapelo",375:"Latina etlitero y kun ĉapelo",sbquo:"Suba 9-citilo",8219:"Supra renversita 9-citilo",
12
+ bdquo:"Suba 99-citilo",hellip:"Tripunkto",trade:"Varmarka signo",9658:"Nigra sago dekstren",bull:"Bulmarko",rarr:"Sago dekstren",rArr:"Duobla sago dekstren",hArr:"Duobla sago maldekstren",diams:"Nigra kvadrato",asymp:"Preskaŭ egala"});
@@ -0,0 +1,13 @@
1
+ /*
2
+ Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+ CKEDITOR.plugins.setLang("specialchar","et",{euro:"Euromärk",lsquo:"Alustav ühekordne jutumärk",rsquo:"Lõpetav ühekordne jutumärk",ldquo:"Alustav kahekordne jutumärk",rdquo:"Lõpetav kahekordne jutumärk",ndash:"Enn-kriips",mdash:"Emm-kriips",iexcl:"Pööratud hüüumärk",cent:"Sendimärk",pound:"Naela märk",curren:"Valuutamärk",yen:"Jeeni märk",brvbar:"Katkestatud kriips",sect:"Lõigu märk",uml:"Täpid",copy:"Autoriõiguse märk",ordf:"Feminine ordinal indicator",laquo:"Left-pointing double angle quotation mark",
6
+ not:"Ei-märk",reg:"Registered sign",macr:"Macron",deg:"Kraadimärk",sup2:"Ülaindeks kaks",sup3:"Ülaindeks kolm",acute:"Acute accent",micro:"Mikro-märk",para:"Pilcrow sign",middot:"Keskpunkt",cedil:"Cedilla",sup1:"Ülaindeks üks",ordm:"Masculine ordinal indicator",raquo:"Right-pointing double angle quotation mark",frac14:"Vulgar fraction one quarter",frac12:"Vulgar fraction one half",frac34:"Vulgar fraction three quarters",iquest:"Inverted question mark",Agrave:"Latin capital letter A with grave accent",
7
+ Aacute:"Latin capital letter A with acute accent",Acirc:"Latin capital letter A with circumflex",Atilde:"Ladina suur A tildega",Auml:"Latin capital letter A with diaeresis",Aring:"Latin capital letter A with ring above",AElig:"Latin Capital letter Æ",Ccedil:"Latin capital letter C with cedilla",Egrave:"Latin capital letter E with grave accent",Eacute:"Latin capital letter E with acute accent",Ecirc:"Latin capital letter E with circumflex",Euml:"Latin capital letter E with diaeresis",Igrave:"Latin capital letter I with grave accent",
8
+ Iacute:"Latin capital letter I with acute accent",Icirc:"Latin capital letter I with circumflex",Iuml:"Latin capital letter I with diaeresis",ETH:"Latin capital letter Eth",Ntilde:"Latin capital letter N with tilde",Ograve:"Latin capital letter O with grave accent",Oacute:"Latin capital letter O with acute accent",Ocirc:"Latin capital letter O with circumflex",Otilde:"Latin capital letter O with tilde",Ouml:"Täppidega ladina suur O",times:"Multiplication sign",Oslash:"Latin capital letter O with stroke",
9
+ Ugrave:"Latin capital letter U with grave accent",Uacute:"Latin capital letter U with acute accent",Ucirc:"Kandilise katusega suur ladina U",Uuml:"Täppidega ladina suur U",Yacute:"Latin capital letter Y with acute accent",THORN:"Latin capital letter Thorn",szlig:"Ladina väike terav s",agrave:"Latin small letter a with grave accent",aacute:"Latin small letter a with acute accent",acirc:"Kandilise katusega ladina väike a",atilde:"Tildega ladina väike a",auml:"Täppidega ladina väike a",aring:"Latin small letter a with ring above",
10
+ aelig:"Latin small letter æ",ccedil:"Latin small letter c with cedilla",egrave:"Latin small letter e with grave accent",eacute:"Latin small letter e with acute accent",ecirc:"Latin small letter e with circumflex",euml:"Latin small letter e with diaeresis",igrave:"Latin small letter i with grave accent",iacute:"Latin small letter i with acute accent",icirc:"Latin small letter i with circumflex",iuml:"Latin small letter i with diaeresis",eth:"Latin small letter eth",ntilde:"Latin small letter n with tilde",
11
+ ograve:"Latin small letter o with grave accent",oacute:"Latin small letter o with acute accent",ocirc:"Latin small letter o with circumflex",otilde:"Latin small letter o with tilde",ouml:"Latin small letter o with diaeresis",divide:"Division sign",oslash:"Latin small letter o with stroke",ugrave:"Latin small letter u with grave accent",uacute:"Latin small letter u with acute accent",ucirc:"Latin small letter u with circumflex",uuml:"Latin small letter u with diaeresis",yacute:"Latin small letter y with acute accent",
12
+ thorn:"Latin small letter thorn",yuml:"Latin small letter y with diaeresis",OElig:"Latin capital ligature OE",oelig:"Latin small ligature oe",372:"Latin capital letter W with circumflex",374:"Latin capital letter Y with circumflex",373:"Latin small letter w with circumflex",375:"Latin small letter y with circumflex",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",bdquo:"Double low-9 quotation mark",hellip:"Horizontal ellipsis",trade:"Trade mark sign",9658:"Black right-pointing pointer",
13
+ bull:"Bullet",rarr:"Rightwards arrow",rArr:"Rightwards double arrow",hArr:"Left right double arrow",diams:"Black diamond suit",asymp:"Almost equal to"});
@@ -0,0 +1,13 @@
1
+ /*
2
+ Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+ CKEDITOR.plugins.setLang("specialchar","fa",{euro:"نشان یورو",lsquo:"علامت نقل قول تکی چپ",rsquo:"علامت نقل قول تکی راست",ldquo:"علامت دوتایی نقل قول چپ",rdquo:"علامت دوتایی نقل قول راست",ndash:"خط تیره En",mdash:"خط تیره Em",iexcl:"علامت گذاری به عنوان علامت تعجب وارونه",cent:"نشان سنت",pound:"نشان پوند",curren:"نشان ارز",yen:"نشان ین",brvbar:"نوار شکسته",sect:"نشان بخش",uml:"Diaeresis",copy:"نشان کپی رایت",ordf:"Feminine ordinal indicator",laquo:"Left-pointing double angle quotation mark",not:"علامت ثبت نشده",
6
+ reg:"علامت ثبت شده",macr:"Macron",deg:"نشان درجه",sup2:"بالانویس دو",sup3:"بالانویس سه",acute:"لهجه غلیظ",micro:"نشان مایکرو",para:"Pilcrow sign",middot:"نقطه میانی",cedil:"Cedilla",sup1:"Superscript one",ordm:"Masculine ordinal indicator",raquo:"نشان زاویه‌دار دوتایی نقل قول راست چین",frac14:"Vulgar fraction one quarter",frac12:"Vulgar fraction one half",frac34:"Vulgar fraction three quarters",iquest:"Inverted question mark",Agrave:"Latin capital letter A with grave accent",Aacute:"Latin capital letter A with acute accent",
7
+ Acirc:"Latin capital letter A with circumflex",Atilde:"Latin capital letter A with tilde",Auml:"Latin capital letter A with diaeresis",Aring:"Latin capital letter A with ring above",AElig:"Latin Capital letter Æ",Ccedil:"Latin capital letter C with cedilla",Egrave:"Latin capital letter E with grave accent",Eacute:"Latin capital letter E with acute accent",Ecirc:"Latin capital letter E with circumflex",Euml:"Latin capital letter E with diaeresis",Igrave:"Latin capital letter I with grave accent",Iacute:"Latin capital letter I with acute accent",
8
+ Icirc:"Latin capital letter I with circumflex",Iuml:"Latin capital letter I with diaeresis",ETH:"Latin capital letter Eth",Ntilde:"Latin capital letter N with tilde",Ograve:"Latin capital letter O with grave accent",Oacute:"Latin capital letter O with acute accent",Ocirc:"Latin capital letter O with circumflex",Otilde:"Latin capital letter O with tilde",Ouml:"Latin capital letter O with diaeresis",times:"Multiplication sign",Oslash:"Latin capital letter O with stroke",Ugrave:"Latin capital letter U with grave accent",
9
+ Uacute:"Latin capital letter U with acute accent",Ucirc:"Latin capital letter U with circumflex",Uuml:"Latin capital letter U with diaeresis",Yacute:"Latin capital letter Y with acute accent",THORN:"Latin capital letter Thorn",szlig:"Latin small letter sharp s",agrave:"Latin small letter a with grave accent",aacute:"Latin small letter a with acute accent",acirc:"Latin small letter a with circumflex",atilde:"Latin small letter a with tilde",auml:"Latin small letter a with diaeresis",aring:"Latin small letter a with ring above",
10
+ aelig:"Latin small letter æ",ccedil:"Latin small letter c with cedilla",egrave:"Latin small letter e with grave accent",eacute:"Latin small letter e with acute accent",ecirc:"Latin small letter e with circumflex",euml:"Latin small letter e with diaeresis",igrave:"Latin small letter i with grave accent",iacute:"Latin small letter i with acute accent",icirc:"Latin small letter i with circumflex",iuml:"Latin small letter i with diaeresis",eth:"Latin small letter eth",ntilde:"Latin small letter n with tilde",
11
+ ograve:"Latin small letter o with grave accent",oacute:"Latin small letter o with acute accent",ocirc:"Latin small letter o with circumflex",otilde:"Latin small letter o with tilde",ouml:"Latin small letter o with diaeresis",divide:"Division sign",oslash:"Latin small letter o with stroke",ugrave:"Latin small letter u with grave accent",uacute:"Latin small letter u with acute accent",ucirc:"Latin small letter u with circumflex",uuml:"Latin small letter u with diaeresis",yacute:"Latin small letter y with acute accent",
12
+ thorn:"Latin small letter thorn",yuml:"Latin small letter y with diaeresis",OElig:"Latin capital ligature OE",oelig:"Latin small ligature oe",372:"Latin capital letter W with circumflex",374:"Latin capital letter Y with circumflex",373:"Latin small letter w with circumflex",375:"Latin small letter y with circumflex",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",bdquo:"Double low-9 quotation mark",hellip:"Horizontal ellipsis",trade:"Trade mark sign",9658:"Black right-pointing pointer",
13
+ bull:"Bullet",rarr:"Rightwards arrow",rArr:"Rightwards double arrow",hArr:"جهت‌نمای دوتایی چپ به راست",diams:"Black diamond suit",asymp:"تقریبا برابر با"});
@@ -0,0 +1,13 @@
1
+ /*
2
+ Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+ CKEDITOR.plugins.setLang("specialchar","fi",{euro:"Euron merkki",lsquo:"Vasen yksittäinen lainausmerkki",rsquo:"Oikea yksittäinen lainausmerkki",ldquo:"Vasen kaksoislainausmerkki",rdquo:"Oikea kaksoislainausmerkki",ndash:"En dash",mdash:"Em dash",iexcl:"Inverted exclamation mark",cent:"Sentin merkki",pound:"Punnan merkki",curren:"Valuuttamerkki",yen:"Yenin merkki",brvbar:"Broken bar",sect:"Section sign",uml:"Diaeresis",copy:"Copyright sign",ordf:"Feminine ordinal indicator",laquo:"Left-pointing double angle quotation mark",
6
+ not:"Not sign",reg:"Rekisteröity merkki",macr:"Macron",deg:"Asteen merkki",sup2:"Yläindeksi kaksi",sup3:"Yläindeksi kolme",acute:"Acute accent",micro:"Mikron merkki",para:"Pilcrow sign",middot:"Middle dot",cedil:"Cedilla",sup1:"Yläindeksi yksi",ordm:"Masculine ordinal indicator",raquo:"Right-pointing double angle quotation mark",frac14:"Vulgar fraction one quarter",frac12:"Vulgar fraction one half",frac34:"Vulgar fraction three quarters",iquest:"Ylösalaisin oleva kysymysmerkki",Agrave:"Latin capital letter A with grave accent",
7
+ Aacute:"Latin capital letter A with acute accent",Acirc:"Latin capital letter A with circumflex",Atilde:"Latin capital letter A with tilde",Auml:"Latin capital letter A with diaeresis",Aring:"Latin capital letter A with ring above",AElig:"Latin Capital letter Æ",Ccedil:"Latin capital letter C with cedilla",Egrave:"Latin capital letter E with grave accent",Eacute:"Latin capital letter E with acute accent",Ecirc:"Latin capital letter E with circumflex",Euml:"Latin capital letter E with diaeresis",Igrave:"Latin capital letter I with grave accent",
8
+ Iacute:"Latin capital letter I with acute accent",Icirc:"Latin capital letter I with circumflex",Iuml:"Latin capital letter I with diaeresis",ETH:"Latin capital letter Eth",Ntilde:"Latin capital letter N with tilde",Ograve:"Latin capital letter O with grave accent",Oacute:"Latin capital letter O with acute accent",Ocirc:"Latin capital letter O with circumflex",Otilde:"Latin capital letter O with tilde",Ouml:"Latin capital letter O with diaeresis",times:"Kertomerkki",Oslash:"Latin capital letter O with stroke",
9
+ Ugrave:"Latin capital letter U with grave accent",Uacute:"Latin capital letter U with acute accent",Ucirc:"Latin capital letter U with circumflex",Uuml:"Latin capital letter U with diaeresis",Yacute:"Latin capital letter Y with acute accent",THORN:"Latin capital letter Thorn",szlig:"Latin small letter sharp s",agrave:"Latin small letter a with grave accent",aacute:"Latin small letter a with acute accent",acirc:"Latin small letter a with circumflex",atilde:"Latin small letter a with tilde",auml:"Latin small letter a with diaeresis",
10
+ aring:"Latin small letter a with ring above",aelig:"Latin small letter æ",ccedil:"Latin small letter c with cedilla",egrave:"Latin small letter e with grave accent",eacute:"Latin small letter e with acute accent",ecirc:"Latin small letter e with circumflex",euml:"Latin small letter e with diaeresis",igrave:"Latin small letter i with grave accent",iacute:"Latin small letter i with acute accent",icirc:"Latin small letter i with circumflex",iuml:"Latin small letter i with diaeresis",eth:"Latin small letter eth",
11
+ ntilde:"Latin small letter n with tilde",ograve:"Latin small letter o with grave accent",oacute:"Latin small letter o with acute accent",ocirc:"Latin small letter o with circumflex",otilde:"Latin small letter o with tilde",ouml:"Latin small letter o with diaeresis",divide:"Jakomerkki",oslash:"Latin small letter o with stroke",ugrave:"Latin small letter u with grave accent",uacute:"Latin small letter u with acute accent",ucirc:"Latin small letter u with circumflex",uuml:"Latin small letter u with diaeresis",
12
+ yacute:"Latin small letter y with acute accent",thorn:"Latin small letter thorn",yuml:"Latin small letter y with diaeresis",OElig:"Latin capital ligature OE",oelig:"Latin small ligature oe",372:"Latin capital letter W with circumflex",374:"Latin capital letter Y with circumflex",373:"Latin small letter w with circumflex",375:"Latin small letter y with circumflex",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",bdquo:"Double low-9 quotation mark",hellip:"Horizontal ellipsis",
13
+ trade:"Tavaramerkki merkki",9658:"Black right-pointing pointer",bull:"Bullet",rarr:"Nuoli oikealle",rArr:"Kaksoisnuoli oikealle",hArr:"Kaksoisnuoli oikealle ja vasemmalle",diams:"Black diamond suit",asymp:"Noin"});
@@ -0,0 +1,11 @@
1
+ /*
2
+ Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+ CKEDITOR.plugins.setLang("specialchar","fr",{euro:"Symbole Euro",lsquo:"Guillemet simple ouvrant",rsquo:"Guillemet simple fermant",ldquo:"Guillemet double ouvrant",rdquo:"Guillemet double fermant",ndash:"Tiret haut",mdash:"Tiret bas underscore",iexcl:"Point d'exclamation inversé",cent:"Symbole Cent",pound:"Symbole Livre Sterling",curren:"Symbole monétaire",yen:"Symbole Yen",brvbar:"Barre verticale scindée",sect:"Section",uml:"Tréma",copy:"Symbole Copyright",ordf:"Indicateur ordinal féminin",laquo:"Guillemet français ouvrant",
6
+ not:"Crochet de négation",reg:"Marque déposée",macr:"Macron",deg:"Degré",sup2:"Exposant 2",sup3:"\\tExposant 3",acute:"Accent aigu",micro:"Omicron",para:"Paragraphe",middot:"Point médian",cedil:"Cédille",sup1:"\\tExposant 1",ordm:"Indicateur ordinal masculin",raquo:"Guillemet français fermant",frac14:"Un quart",frac12:"Un demi",frac34:"Trois quarts",iquest:"Point d'interrogation inversé",Agrave:"A majuscule accent grave",Aacute:"A majuscule accent aigu",Acirc:"A majuscule accent circonflexe",Atilde:"A majuscule avec caron",
7
+ Auml:"A majuscule tréma",Aring:"A majuscule avec un rond au-dessus",AElig:"Æ majuscule ligaturés",Ccedil:"C majuscule cédille",Egrave:"E majuscule accent grave",Eacute:"E majuscule accent aigu",Ecirc:"E majuscule accent circonflexe",Euml:"E majuscule tréma",Igrave:"I majuscule accent grave",Iacute:"I majuscule accent aigu",Icirc:"I majuscule accent circonflexe",Iuml:"I majuscule tréma",ETH:"Lettre majuscule islandaise ED",Ntilde:"N majuscule avec caron",Ograve:"O majuscule accent grave",Oacute:"O majuscule accent aigu",
8
+ Ocirc:"O majuscule accent circonflexe",Otilde:"O majuscule avec caron",Ouml:"O majuscule tréma",times:"Multiplication",Oslash:"O majuscule barré",Ugrave:"U majuscule accent grave",Uacute:"U majuscule accent aigu",Ucirc:"U majuscule accent circonflexe",Uuml:"U majuscule tréma",Yacute:"Y majuscule accent aigu",THORN:"Lettre islandaise Thorn majuscule",szlig:"Lettre minuscule allemande s dur",agrave:"a minuscule accent grave",aacute:"a minuscule accent aigu",acirc:"a minuscule accent circonflexe",atilde:"a minuscule avec caron",
9
+ auml:"a minuscule tréma",aring:"a minuscule avec un rond au-dessus",aelig:"æ minuscule ligaturés",ccedil:"c minuscule cédille",egrave:"e minuscule accent grave",eacute:"e minuscule accent aigu",ecirc:"e minuscule accent circonflexe",euml:"e minuscule tréma",igrave:"i minuscule accent grave",iacute:"i minuscule accent aigu",icirc:"i minuscule accent circonflexe",iuml:"i minuscule tréma",eth:"Lettre minuscule islandaise ED",ntilde:"n minuscule avec caron",ograve:"o minuscule accent grave",oacute:"o minuscule accent aigu",
10
+ ocirc:"o minuscule accent circonflexe",otilde:"o minuscule avec caron",ouml:"o minuscule tréma",divide:"Division",oslash:"o minuscule barré",ugrave:"u minuscule accent grave",uacute:"u minuscule accent aigu",ucirc:"u minuscule accent circonflexe",uuml:"u minuscule tréma",yacute:"y minuscule accent aigu",thorn:"Lettre islandaise thorn minuscule",yuml:"y minuscule tréma",OElig:"ligature majuscule latine Œ",oelig:"ligature minuscule latine œ",372:"W majuscule accent circonflexe",374:"Y majuscule accent circonflexe",
11
+ 373:"w minuscule accent circonflexe",375:"y minuscule accent circonflexe",sbquo:"Guillemet simple fermant (anglais)",8219:"Guillemet-virgule supérieur culbuté",bdquo:"Guillemet-virgule double inférieur",hellip:"Points de suspension",trade:"Marque commerciale (trade mark)",9658:"Flèche noire pointant vers la droite",bull:"Gros point médian",rarr:"Flèche vers la droite",rArr:"Double flèche vers la droite",hArr:"Double flèche vers la gauche",diams:"Carreau noir",asymp:"Presque égal"});
@@ -0,0 +1,13 @@
1
+ /*
2
+ Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+ CKEDITOR.plugins.setLang("specialchar","he",{euro:"יורו",lsquo:"Left single quotation mark",rsquo:"Right single quotation mark",ldquo:"Left double quotation mark",rdquo:"Right double quotation mark",ndash:"En dash",mdash:"Em dash",iexcl:"Inverted exclamation mark",cent:"Cent sign",pound:"Pound sign",curren:"Currency sign",yen:"Yen sign",brvbar:"Broken bar",sect:"Section sign",uml:"Diaeresis",copy:"Copyright sign",ordf:"Feminine ordinal indicator",laquo:"Left-pointing double angle quotation mark",
6
+ not:"Not sign",reg:"Registered sign",macr:"Macron",deg:"Degree sign",sup2:"Superscript two",sup3:"Superscript three",acute:"Acute accent",micro:"Micro sign",para:"Pilcrow sign",middot:"Middle dot",cedil:"Cedilla",sup1:"Superscript one",ordm:"Masculine ordinal indicator",raquo:"Right-pointing double angle quotation mark",frac14:"Vulgar fraction one quarter",frac12:"Vulgar fraction one half",frac34:"Vulgar fraction three quarters",iquest:"Inverted question mark",Agrave:"Latin capital letter A with grave accent",
7
+ Aacute:"Latin capital letter A with acute accent",Acirc:"Latin capital letter A with circumflex",Atilde:"Latin capital letter A with tilde",Auml:"Latin capital letter A with diaeresis",Aring:"Latin capital letter A with ring above",AElig:"Latin Capital letter Æ",Ccedil:"Latin capital letter C with cedilla",Egrave:"Latin capital letter E with grave accent",Eacute:"Latin capital letter E with acute accent",Ecirc:"Latin capital letter E with circumflex",Euml:"Latin capital letter E with diaeresis",Igrave:"Latin capital letter I with grave accent",
8
+ Iacute:"Latin capital letter I with acute accent",Icirc:"Latin capital letter I with circumflex",Iuml:"Latin capital letter I with diaeresis",ETH:"Latin capital letter Eth",Ntilde:"Latin capital letter N with tilde",Ograve:"Latin capital letter O with grave accent",Oacute:"Latin capital letter O with acute accent",Ocirc:"Latin capital letter O with circumflex",Otilde:"Latin capital letter O with tilde",Ouml:"Latin capital letter O with diaeresis",times:"Multiplication sign",Oslash:"Latin capital letter O with stroke",
9
+ Ugrave:"Latin capital letter U with grave accent",Uacute:"Latin capital letter U with acute accent",Ucirc:"Latin capital letter U with circumflex",Uuml:"Latin capital letter U with diaeresis",Yacute:"Latin capital letter Y with acute accent",THORN:"Latin capital letter Thorn",szlig:"Latin small letter sharp s",agrave:"Latin small letter a with grave accent",aacute:"Latin small letter a with acute accent",acirc:"Latin small letter a with circumflex",atilde:"Latin small letter a with tilde",auml:"Latin small letter a with diaeresis",
10
+ aring:"Latin small letter a with ring above",aelig:"Latin small letter æ",ccedil:"Latin small letter c with cedilla",egrave:"Latin small letter e with grave accent",eacute:"Latin small letter e with acute accent",ecirc:"Latin small letter e with circumflex",euml:"Latin small letter e with diaeresis",igrave:"Latin small letter i with grave accent",iacute:"Latin small letter i with acute accent",icirc:"Latin small letter i with circumflex",iuml:"Latin small letter i with diaeresis",eth:"Latin small letter eth",
11
+ ntilde:"Latin small letter n with tilde",ograve:"Latin small letter o with grave accent",oacute:"Latin small letter o with acute accent",ocirc:"Latin small letter o with circumflex",otilde:"Latin small letter o with tilde",ouml:"Latin small letter o with diaeresis",divide:"Division sign",oslash:"Latin small letter o with stroke",ugrave:"Latin small letter u with grave accent",uacute:"Latin small letter u with acute accent",ucirc:"Latin small letter u with circumflex",uuml:"Latin small letter u with diaeresis",
12
+ yacute:"Latin small letter y with acute accent",thorn:"Latin small letter thorn",yuml:"Latin small letter y with diaeresis",OElig:"Latin capital ligature OE",oelig:"Latin small ligature oe",372:"Latin capital letter W with circumflex",374:"Latin capital letter Y with circumflex",373:"Latin small letter w with circumflex",375:"Latin small letter y with circumflex",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",bdquo:"Double low-9 quotation mark",hellip:"Horizontal ellipsis",
13
+ trade:"Trade mark sign",9658:"Black right-pointing pointer",bull:"Bullet",rarr:"Rightwards arrow",rArr:"Rightwards double arrow",hArr:"Left right double arrow",diams:"Black diamond suit",asymp:"Almost equal to"});