refinerycms-ckeditor 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (657) hide show
  1. data/.gitignore +17 -0
  2. data/Gemfile +4 -0
  3. data/LICENSE +22 -0
  4. data/README.md +25 -0
  5. data/Rakefile +2 -0
  6. data/app/assets/images/refinery/ckeditor/pdf.png +0 -0
  7. data/app/assets/javascripts/ckeditor.js +25 -0
  8. data/app/assets/javascripts/ckeditor/.htaccess +24 -0
  9. data/app/assets/javascripts/ckeditor/CHANGES.html +1433 -0
  10. data/app/assets/javascripts/ckeditor/INSTALL.html +92 -0
  11. data/app/assets/javascripts/ckeditor/LICENSE.html +1327 -0
  12. data/app/assets/javascripts/ckeditor/_samples/adobeair/application.xml +32 -0
  13. data/app/assets/javascripts/ckeditor/_samples/adobeair/run.bat +9 -0
  14. data/app/assets/javascripts/ckeditor/_samples/adobeair/run.sh +8 -0
  15. data/app/assets/javascripts/ckeditor/_samples/adobeair/sample.html +45 -0
  16. data/app/assets/javascripts/ckeditor/_samples/ajax.html +98 -0
  17. data/app/assets/javascripts/ckeditor/_samples/api.html +192 -0
  18. data/app/assets/javascripts/ckeditor/_samples/api_dialog.html +198 -0
  19. data/app/assets/javascripts/ckeditor/_samples/api_dialog/my_dialog.js +28 -0
  20. data/app/assets/javascripts/ckeditor/_samples/asp/advanced.asp +105 -0
  21. data/app/assets/javascripts/ckeditor/_samples/asp/events.asp +136 -0
  22. data/app/assets/javascripts/ckeditor/_samples/asp/index.html +103 -0
  23. data/app/assets/javascripts/ckeditor/_samples/asp/replace.asp +72 -0
  24. data/app/assets/javascripts/ckeditor/_samples/asp/replaceall.asp +77 -0
  25. data/app/assets/javascripts/ckeditor/_samples/asp/sample_posteddata.asp +46 -0
  26. data/app/assets/javascripts/ckeditor/_samples/asp/standalone.asp +72 -0
  27. data/app/assets/javascripts/ckeditor/_samples/assets/_posteddata.php +59 -0
  28. data/app/assets/javascripts/ckeditor/_samples/assets/output_for_flash.fla +0 -0
  29. data/app/assets/javascripts/ckeditor/_samples/assets/output_for_flash.swf +0 -0
  30. data/app/assets/javascripts/ckeditor/_samples/assets/output_xhtml.css +204 -0
  31. data/app/assets/javascripts/ckeditor/_samples/assets/parsesample.css +70 -0
  32. data/app/assets/javascripts/ckeditor/_samples/assets/swfobject.js +18 -0
  33. data/app/assets/javascripts/ckeditor/_samples/autogrow.html +108 -0
  34. data/app/assets/javascripts/ckeditor/_samples/bbcode.html +125 -0
  35. data/app/assets/javascripts/ckeditor/_samples/devtools.html +94 -0
  36. data/app/assets/javascripts/ckeditor/_samples/divreplace.html +154 -0
  37. data/app/assets/javascripts/ckeditor/_samples/enterkey.html +115 -0
  38. data/app/assets/javascripts/ckeditor/_samples/fullpage.html +82 -0
  39. data/app/assets/javascripts/ckeditor/_samples/index.html +116 -0
  40. data/app/assets/javascripts/ckeditor/_samples/jqueryadapter.html +99 -0
  41. data/app/assets/javascripts/ckeditor/_samples/output_for_flash.html +275 -0
  42. data/app/assets/javascripts/ckeditor/_samples/output_html.html +285 -0
  43. data/app/assets/javascripts/ckeditor/_samples/output_xhtml.html +177 -0
  44. data/app/assets/javascripts/ckeditor/_samples/php/advanced.php +120 -0
  45. data/app/assets/javascripts/ckeditor/_samples/php/events.php +153 -0
  46. data/app/assets/javascripts/ckeditor/_samples/php/index.html +47 -0
  47. data/app/assets/javascripts/ckeditor/_samples/php/replace.php +87 -0
  48. data/app/assets/javascripts/ckeditor/_samples/php/replaceall.php +88 -0
  49. data/app/assets/javascripts/ckeditor/_samples/php/standalone.php +83 -0
  50. data/app/assets/javascripts/ckeditor/_samples/placeholder.html +81 -0
  51. data/app/assets/javascripts/ckeditor/_samples/readonly.html +91 -0
  52. data/app/assets/javascripts/ckeditor/_samples/replacebyclass.html +64 -0
  53. data/app/assets/javascripts/ckeditor/_samples/replacebycode.html +97 -0
  54. data/app/assets/javascripts/ckeditor/_samples/sample.css +163 -0
  55. data/app/assets/javascripts/ckeditor/_samples/sample.js +65 -0
  56. data/app/assets/javascripts/ckeditor/_samples/sample_posteddata.php +21 -0
  57. data/app/assets/javascripts/ckeditor/_samples/sharedspaces.html +153 -0
  58. data/app/assets/javascripts/ckeditor/_samples/skins.html +110 -0
  59. data/app/assets/javascripts/ckeditor/_samples/stylesheetparser.html +93 -0
  60. data/app/assets/javascripts/ckeditor/_samples/tableresize.html +115 -0
  61. data/app/assets/javascripts/ckeditor/_samples/ui_color.html +129 -0
  62. data/app/assets/javascripts/ckeditor/_samples/ui_languages.html +134 -0
  63. data/app/assets/javascripts/ckeditor/_source/adapters/jquery.js +306 -0
  64. data/app/assets/javascripts/ckeditor/_source/core/_bootstrap.js +87 -0
  65. data/app/assets/javascripts/ckeditor/_source/core/ckeditor.js +141 -0
  66. data/app/assets/javascripts/ckeditor/_source/core/ckeditor_base.js +227 -0
  67. data/app/assets/javascripts/ckeditor/_source/core/ckeditor_basic.js +238 -0
  68. data/app/assets/javascripts/ckeditor/_source/core/command.js +209 -0
  69. data/app/assets/javascripts/ckeditor/_source/core/commanddefinition.js +129 -0
  70. data/app/assets/javascripts/ckeditor/_source/core/config.js +439 -0
  71. data/app/assets/javascripts/ckeditor/_source/core/dataprocessor.js +65 -0
  72. data/app/assets/javascripts/ckeditor/_source/core/dom.js +20 -0
  73. data/app/assets/javascripts/ckeditor/_source/core/dom/comment.js +32 -0
  74. data/app/assets/javascripts/ckeditor/_source/core/dom/document.js +251 -0
  75. data/app/assets/javascripts/ckeditor/_source/core/dom/documentfragment.js +49 -0
  76. data/app/assets/javascripts/ckeditor/_source/core/dom/domobject.js +258 -0
  77. data/app/assets/javascripts/ckeditor/_source/core/dom/element.js +1691 -0
  78. data/app/assets/javascripts/ckeditor/_source/core/dom/elementpath.js +119 -0
  79. data/app/assets/javascripts/ckeditor/_source/core/dom/event.js +145 -0
  80. data/app/assets/javascripts/ckeditor/_source/core/dom/node.js +696 -0
  81. data/app/assets/javascripts/ckeditor/_source/core/dom/nodelist.js +26 -0
  82. data/app/assets/javascripts/ckeditor/_source/core/dom/range.js +2054 -0
  83. data/app/assets/javascripts/ckeditor/_source/core/dom/rangelist.js +213 -0
  84. data/app/assets/javascripts/ckeditor/_source/core/dom/text.js +128 -0
  85. data/app/assets/javascripts/ckeditor/_source/core/dom/walker.js +462 -0
  86. data/app/assets/javascripts/ckeditor/_source/core/dom/window.js +96 -0
  87. data/app/assets/javascripts/ckeditor/_source/core/dtd.js +266 -0
  88. data/app/assets/javascripts/ckeditor/_source/core/editor.js +1059 -0
  89. data/app/assets/javascripts/ckeditor/_source/core/editor_basic.js +186 -0
  90. data/app/assets/javascripts/ckeditor/_source/core/env.js +305 -0
  91. data/app/assets/javascripts/ckeditor/_source/core/event.js +342 -0
  92. data/app/assets/javascripts/ckeditor/_source/core/eventInfo.js +120 -0
  93. data/app/assets/javascripts/ckeditor/_source/core/focusmanager.js +152 -0
  94. data/app/assets/javascripts/ckeditor/_source/core/htmlparser.js +224 -0
  95. data/app/assets/javascripts/ckeditor/_source/core/htmlparser/basicwriter.js +145 -0
  96. data/app/assets/javascripts/ckeditor/_source/core/htmlparser/cdata.js +43 -0
  97. data/app/assets/javascripts/ckeditor/_source/core/htmlparser/comment.js +60 -0
  98. data/app/assets/javascripts/ckeditor/_source/core/htmlparser/element.js +308 -0
  99. data/app/assets/javascripts/ckeditor/_source/core/htmlparser/filter.js +288 -0
  100. data/app/assets/javascripts/ckeditor/_source/core/htmlparser/fragment.js +518 -0
  101. data/app/assets/javascripts/ckeditor/_source/core/htmlparser/text.js +53 -0
  102. data/app/assets/javascripts/ckeditor/_source/core/lang.js +157 -0
  103. data/app/assets/javascripts/ckeditor/_source/core/loader.js +240 -0
  104. data/app/assets/javascripts/ckeditor/_source/core/plugindefinition.js +83 -0
  105. data/app/assets/javascripts/ckeditor/_source/core/plugins.js +103 -0
  106. data/app/assets/javascripts/ckeditor/_source/core/resourcemanager.js +238 -0
  107. data/app/assets/javascripts/ckeditor/_source/core/scriptloader.js +180 -0
  108. data/app/assets/javascripts/ckeditor/_source/core/skins.js +184 -0
  109. data/app/assets/javascripts/ckeditor/_source/core/themes.js +19 -0
  110. data/app/assets/javascripts/ckeditor/_source/core/tools.js +763 -0
  111. data/app/assets/javascripts/ckeditor/_source/core/ui.js +128 -0
  112. data/app/assets/javascripts/ckeditor/_source/lang/_languages.js +84 -0
  113. data/app/assets/javascripts/ckeditor/_source/lang/_translationstatus.txt +61 -0
  114. data/app/assets/javascripts/ckeditor/_source/lang/af.js +815 -0
  115. data/app/assets/javascripts/ckeditor/_source/lang/ar.js +815 -0
  116. data/app/assets/javascripts/ckeditor/_source/lang/bg.js +815 -0
  117. data/app/assets/javascripts/ckeditor/_source/lang/bn.js +815 -0
  118. data/app/assets/javascripts/ckeditor/_source/lang/bs.js +815 -0
  119. data/app/assets/javascripts/ckeditor/_source/lang/ca.js +815 -0
  120. data/app/assets/javascripts/ckeditor/_source/lang/cs.js +815 -0
  121. data/app/assets/javascripts/ckeditor/_source/lang/cy.js +815 -0
  122. data/app/assets/javascripts/ckeditor/_source/lang/da.js +815 -0
  123. data/app/assets/javascripts/ckeditor/_source/lang/de.js +815 -0
  124. data/app/assets/javascripts/ckeditor/_source/lang/el.js +815 -0
  125. data/app/assets/javascripts/ckeditor/_source/lang/en-au.js +815 -0
  126. data/app/assets/javascripts/ckeditor/_source/lang/en-ca.js +815 -0
  127. data/app/assets/javascripts/ckeditor/_source/lang/en-gb.js +815 -0
  128. data/app/assets/javascripts/ckeditor/_source/lang/en.js +815 -0
  129. data/app/assets/javascripts/ckeditor/_source/lang/eo.js +815 -0
  130. data/app/assets/javascripts/ckeditor/_source/lang/es.js +815 -0
  131. data/app/assets/javascripts/ckeditor/_source/lang/et.js +815 -0
  132. data/app/assets/javascripts/ckeditor/_source/lang/eu.js +815 -0
  133. data/app/assets/javascripts/ckeditor/_source/lang/fa.js +815 -0
  134. data/app/assets/javascripts/ckeditor/_source/lang/fi.js +815 -0
  135. data/app/assets/javascripts/ckeditor/_source/lang/fo.js +815 -0
  136. data/app/assets/javascripts/ckeditor/_source/lang/fr-ca.js +815 -0
  137. data/app/assets/javascripts/ckeditor/_source/lang/fr.js +815 -0
  138. data/app/assets/javascripts/ckeditor/_source/lang/gl.js +815 -0
  139. data/app/assets/javascripts/ckeditor/_source/lang/gu.js +815 -0
  140. data/app/assets/javascripts/ckeditor/_source/lang/he.js +815 -0
  141. data/app/assets/javascripts/ckeditor/_source/lang/hi.js +815 -0
  142. data/app/assets/javascripts/ckeditor/_source/lang/hr.js +815 -0
  143. data/app/assets/javascripts/ckeditor/_source/lang/hu.js +815 -0
  144. data/app/assets/javascripts/ckeditor/_source/lang/is.js +815 -0
  145. data/app/assets/javascripts/ckeditor/_source/lang/it.js +815 -0
  146. data/app/assets/javascripts/ckeditor/_source/lang/ja.js +815 -0
  147. data/app/assets/javascripts/ckeditor/_source/lang/ka.js +815 -0
  148. data/app/assets/javascripts/ckeditor/_source/lang/km.js +815 -0
  149. data/app/assets/javascripts/ckeditor/_source/lang/ko.js +815 -0
  150. data/app/assets/javascripts/ckeditor/_source/lang/lt.js +815 -0
  151. data/app/assets/javascripts/ckeditor/_source/lang/lv.js +815 -0
  152. data/app/assets/javascripts/ckeditor/_source/lang/mn.js +815 -0
  153. data/app/assets/javascripts/ckeditor/_source/lang/ms.js +815 -0
  154. data/app/assets/javascripts/ckeditor/_source/lang/nb.js +815 -0
  155. data/app/assets/javascripts/ckeditor/_source/lang/nl.js +815 -0
  156. data/app/assets/javascripts/ckeditor/_source/lang/no.js +815 -0
  157. data/app/assets/javascripts/ckeditor/_source/lang/pl.js +815 -0
  158. data/app/assets/javascripts/ckeditor/_source/lang/pt-br.js +814 -0
  159. data/app/assets/javascripts/ckeditor/_source/lang/pt.js +815 -0
  160. data/app/assets/javascripts/ckeditor/_source/lang/ro.js +815 -0
  161. data/app/assets/javascripts/ckeditor/_source/lang/ru.js +815 -0
  162. data/app/assets/javascripts/ckeditor/_source/lang/sk.js +815 -0
  163. data/app/assets/javascripts/ckeditor/_source/lang/sl.js +815 -0
  164. data/app/assets/javascripts/ckeditor/_source/lang/sr-latn.js +815 -0
  165. data/app/assets/javascripts/ckeditor/_source/lang/sr.js +815 -0
  166. data/app/assets/javascripts/ckeditor/_source/lang/sv.js +814 -0
  167. data/app/assets/javascripts/ckeditor/_source/lang/th.js +815 -0
  168. data/app/assets/javascripts/ckeditor/_source/lang/tr.js +814 -0
  169. data/app/assets/javascripts/ckeditor/_source/lang/uk.js +815 -0
  170. data/app/assets/javascripts/ckeditor/_source/lang/vi.js +815 -0
  171. data/app/assets/javascripts/ckeditor/_source/lang/zh-cn.js +815 -0
  172. data/app/assets/javascripts/ckeditor/_source/lang/zh.js +815 -0
  173. data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/dialogs/a11yhelp.js +222 -0
  174. data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/en.js +108 -0
  175. data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/he.js +216 -0
  176. data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/plugin.js +47 -0
  177. data/app/assets/javascripts/ckeditor/_source/plugins/about/dialogs/about.js +76 -0
  178. data/app/assets/javascripts/ckeditor/_source/plugins/about/dialogs/logo_ckeditor.png +0 -0
  179. data/app/assets/javascripts/ckeditor/_source/plugins/about/plugin.js +24 -0
  180. data/app/assets/javascripts/ckeditor/_source/plugins/adobeair/plugin.js +228 -0
  181. data/app/assets/javascripts/ckeditor/_source/plugins/ajax/plugin.js +152 -0
  182. data/app/assets/javascripts/ckeditor/_source/plugins/autogrow/plugin.js +141 -0
  183. data/app/assets/javascripts/ckeditor/_source/plugins/basicstyles/plugin.js +129 -0
  184. data/app/assets/javascripts/ckeditor/_source/plugins/bbcode/plugin.js +931 -0
  185. data/app/assets/javascripts/ckeditor/_source/plugins/bidi/plugin.js +334 -0
  186. data/app/assets/javascripts/ckeditor/_source/plugins/blockquote/plugin.js +305 -0
  187. data/app/assets/javascripts/ckeditor/_source/plugins/button/plugin.js +290 -0
  188. data/app/assets/javascripts/ckeditor/_source/plugins/clipboard/dialogs/paste.js +223 -0
  189. data/app/assets/javascripts/ckeditor/_source/plugins/clipboard/plugin.js +453 -0
  190. data/app/assets/javascripts/ckeditor/_source/plugins/colorbutton/plugin.js +301 -0
  191. data/app/assets/javascripts/ckeditor/_source/plugins/colordialog/dialogs/colordialog.js +340 -0
  192. data/app/assets/javascripts/ckeditor/_source/plugins/colordialog/plugin.js +15 -0
  193. data/app/assets/javascripts/ckeditor/_source/plugins/contextmenu/plugin.js +179 -0
  194. data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/en.js +16 -0
  195. data/app/assets/javascripts/ckeditor/_source/plugins/devtools/plugin.js +173 -0
  196. data/app/assets/javascripts/ckeditor/_source/plugins/dialog/dialogDefinition.js +1166 -0
  197. data/app/assets/javascripts/ckeditor/_source/plugins/dialog/plugin.js +3308 -0
  198. data/app/assets/javascripts/ckeditor/_source/plugins/dialogadvtab/plugin.js +208 -0
  199. data/app/assets/javascripts/ckeditor/_source/plugins/dialogui/plugin.js +1541 -0
  200. data/app/assets/javascripts/ckeditor/_source/plugins/div/dialogs/div.js +535 -0
  201. data/app/assets/javascripts/ckeditor/_source/plugins/div/plugin.js +121 -0
  202. data/app/assets/javascripts/ckeditor/_source/plugins/docprops/dialogs/docprops.js +674 -0
  203. data/app/assets/javascripts/ckeditor/_source/plugins/docprops/plugin.js +22 -0
  204. data/app/assets/javascripts/ckeditor/_source/plugins/domiterator/plugin.js +361 -0
  205. data/app/assets/javascripts/ckeditor/_source/plugins/editingblock/plugin.js +278 -0
  206. data/app/assets/javascripts/ckeditor/_source/plugins/elementspath/plugin.js +218 -0
  207. data/app/assets/javascripts/ckeditor/_source/plugins/enterkey/plugin.js +433 -0
  208. data/app/assets/javascripts/ckeditor/_source/plugins/entities/plugin.js +250 -0
  209. data/app/assets/javascripts/ckeditor/_source/plugins/fakeobjects/plugin.js +175 -0
  210. data/app/assets/javascripts/ckeditor/_source/plugins/filebrowser/plugin.js +534 -0
  211. data/app/assets/javascripts/ckeditor/_source/plugins/find/dialogs/find.js +915 -0
  212. data/app/assets/javascripts/ckeditor/_source/plugins/find/plugin.js +47 -0
  213. data/app/assets/javascripts/ckeditor/_source/plugins/flash/dialogs/flash.js +674 -0
  214. data/app/assets/javascripts/ckeditor/_source/plugins/flash/images/placeholder.png +0 -0
  215. data/app/assets/javascripts/ckeditor/_source/plugins/flash/plugin.js +154 -0
  216. data/app/assets/javascripts/ckeditor/_source/plugins/floatpanel/plugin.js +428 -0
  217. data/app/assets/javascripts/ckeditor/_source/plugins/font/plugin.js +234 -0
  218. data/app/assets/javascripts/ckeditor/_source/plugins/format/plugin.js +197 -0
  219. data/app/assets/javascripts/ckeditor/_source/plugins/forms/dialogs/button.js +118 -0
  220. data/app/assets/javascripts/ckeditor/_source/plugins/forms/dialogs/checkbox.js +153 -0
  221. data/app/assets/javascripts/ckeditor/_source/plugins/forms/dialogs/form.js +177 -0
  222. data/app/assets/javascripts/ckeditor/_source/plugins/forms/dialogs/hiddenfield.js +100 -0
  223. data/app/assets/javascripts/ckeditor/_source/plugins/forms/dialogs/radio.js +135 -0
  224. data/app/assets/javascripts/ckeditor/_source/plugins/forms/dialogs/select.js +558 -0
  225. data/app/assets/javascripts/ckeditor/_source/plugins/forms/dialogs/textarea.js +135 -0
  226. data/app/assets/javascripts/ckeditor/_source/plugins/forms/dialogs/textfield.js +199 -0
  227. data/app/assets/javascripts/ckeditor/_source/plugins/forms/images/hiddenfield.gif +0 -0
  228. data/app/assets/javascripts/ckeditor/_source/plugins/forms/plugin.js +288 -0
  229. data/app/assets/javascripts/ckeditor/_source/plugins/horizontalrule/plugin.js +48 -0
  230. data/app/assets/javascripts/ckeditor/_source/plugins/htmldataprocessor/plugin.js +596 -0
  231. data/app/assets/javascripts/ckeditor/_source/plugins/htmlwriter/plugin.js +319 -0
  232. data/app/assets/javascripts/ckeditor/_source/plugins/iframe/dialogs/iframe.js +229 -0
  233. data/app/assets/javascripts/ckeditor/_source/plugins/iframe/images/placeholder.png +0 -0
  234. data/app/assets/javascripts/ckeditor/_source/plugins/iframe/plugin.js +87 -0
  235. data/app/assets/javascripts/ckeditor/_source/plugins/iframedialog/plugin.js +188 -0
  236. data/app/assets/javascripts/ckeditor/_source/plugins/image/dialogs/image.js +1407 -0
  237. data/app/assets/javascripts/ckeditor/_source/plugins/image/plugin.js +81 -0
  238. data/app/assets/javascripts/ckeditor/_source/plugins/indent/plugin.js +461 -0
  239. data/app/assets/javascripts/ckeditor/_source/plugins/justify/plugin.js +253 -0
  240. data/app/assets/javascripts/ckeditor/_source/plugins/keystrokes/plugin.js +225 -0
  241. data/app/assets/javascripts/ckeditor/_source/plugins/link/dialogs/anchor.js +144 -0
  242. data/app/assets/javascripts/ckeditor/_source/plugins/link/dialogs/link.js +1425 -0
  243. data/app/assets/javascripts/ckeditor/_source/plugins/link/images/anchor.gif +0 -0
  244. data/app/assets/javascripts/ckeditor/_source/plugins/link/plugin.js +374 -0
  245. data/app/assets/javascripts/ckeditor/_source/plugins/list/plugin.js +774 -0
  246. data/app/assets/javascripts/ckeditor/_source/plugins/listblock/plugin.js +266 -0
  247. data/app/assets/javascripts/ckeditor/_source/plugins/liststyle/dialogs/liststyle.js +225 -0
  248. data/app/assets/javascripts/ckeditor/_source/plugins/liststyle/plugin.js +66 -0
  249. data/app/assets/javascripts/ckeditor/_source/plugins/maximize/plugin.js +353 -0
  250. data/app/assets/javascripts/ckeditor/_source/plugins/menu/plugin.js +541 -0
  251. data/app/assets/javascripts/ckeditor/_source/plugins/menubutton/plugin.js +98 -0
  252. data/app/assets/javascripts/ckeditor/_source/plugins/newpage/plugin.js +55 -0
  253. data/app/assets/javascripts/ckeditor/_source/plugins/pagebreak/images/pagebreak.gif +0 -0
  254. data/app/assets/javascripts/ckeditor/_source/plugins/pagebreak/plugin.js +164 -0
  255. data/app/assets/javascripts/ckeditor/_source/plugins/panel/plugin.js +400 -0
  256. data/app/assets/javascripts/ckeditor/_source/plugins/panelbutton/plugin.js +144 -0
  257. data/app/assets/javascripts/ckeditor/_source/plugins/pastefromword/filter/default.js +1367 -0
  258. data/app/assets/javascripts/ckeditor/_source/plugins/pastefromword/plugin.js +141 -0
  259. data/app/assets/javascripts/ckeditor/_source/plugins/pastetext/dialogs/pastetext.js +67 -0
  260. data/app/assets/javascripts/ckeditor/_source/plugins/pastetext/plugin.js +98 -0
  261. data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/dialogs/placeholder.js +71 -0
  262. data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/en.js +16 -0
  263. data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/he.js +16 -0
  264. data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/placeholder.gif +0 -0
  265. data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/plugin.js +171 -0
  266. data/app/assets/javascripts/ckeditor/_source/plugins/popup/plugin.js +64 -0
  267. data/app/assets/javascripts/ckeditor/_source/plugins/preview/plugin.js +113 -0
  268. data/app/assets/javascripts/ckeditor/_source/plugins/print/plugin.js +42 -0
  269. data/app/assets/javascripts/ckeditor/_source/plugins/removeformat/plugin.js +185 -0
  270. data/app/assets/javascripts/ckeditor/_source/plugins/resize/plugin.js +168 -0
  271. data/app/assets/javascripts/ckeditor/_source/plugins/richcombo/plugin.js +381 -0
  272. data/app/assets/javascripts/ckeditor/_source/plugins/save/plugin.js +56 -0
  273. data/app/assets/javascripts/ckeditor/_source/plugins/scayt/dialogs/options.js +537 -0
  274. data/app/assets/javascripts/ckeditor/_source/plugins/scayt/dialogs/toolbar.css +71 -0
  275. data/app/assets/javascripts/ckeditor/_source/plugins/scayt/plugin.js +973 -0
  276. data/app/assets/javascripts/ckeditor/_source/plugins/selection/plugin.js +1729 -0
  277. data/app/assets/javascripts/ckeditor/_source/plugins/showblocks/images/block_address.png +0 -0
  278. data/app/assets/javascripts/ckeditor/_source/plugins/showblocks/images/block_blockquote.png +0 -0
  279. data/app/assets/javascripts/ckeditor/_source/plugins/showblocks/images/block_div.png +0 -0
  280. data/app/assets/javascripts/ckeditor/_source/plugins/showblocks/images/block_h1.png +0 -0
  281. data/app/assets/javascripts/ckeditor/_source/plugins/showblocks/images/block_h2.png +0 -0
  282. data/app/assets/javascripts/ckeditor/_source/plugins/showblocks/images/block_h3.png +0 -0
  283. data/app/assets/javascripts/ckeditor/_source/plugins/showblocks/images/block_h4.png +0 -0
  284. data/app/assets/javascripts/ckeditor/_source/plugins/showblocks/images/block_h5.png +0 -0
  285. data/app/assets/javascripts/ckeditor/_source/plugins/showblocks/images/block_h6.png +0 -0
  286. data/app/assets/javascripts/ckeditor/_source/plugins/showblocks/images/block_p.png +0 -0
  287. data/app/assets/javascripts/ckeditor/_source/plugins/showblocks/images/block_pre.png +0 -0
  288. data/app/assets/javascripts/ckeditor/_source/plugins/showblocks/plugin.js +160 -0
  289. data/app/assets/javascripts/ckeditor/_source/plugins/showborders/plugin.js +207 -0
  290. data/app/assets/javascripts/ckeditor/_source/plugins/smiley/dialogs/smiley.js +224 -0
  291. data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/angel_smile.gif +0 -0
  292. data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/angry_smile.gif +0 -0
  293. data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/broken_heart.gif +0 -0
  294. data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/confused_smile.gif +0 -0
  295. data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/cry_smile.gif +0 -0
  296. data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/devil_smile.gif +0 -0
  297. data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/embaressed_smile.gif +0 -0
  298. data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/envelope.gif +0 -0
  299. data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/heart.gif +0 -0
  300. data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/kiss.gif +0 -0
  301. data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/lightbulb.gif +0 -0
  302. data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/omg_smile.gif +0 -0
  303. data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/regular_smile.gif +0 -0
  304. data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/sad_smile.gif +0 -0
  305. data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/shades_smile.gif +0 -0
  306. data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/teeth_smile.gif +0 -0
  307. data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/thumbs_down.gif +0 -0
  308. data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/thumbs_up.gif +0 -0
  309. data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/tounge_smile.gif +0 -0
  310. data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/whatchutalkingabout_smile.gif +0 -0
  311. data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/wink_smile.gif +0 -0
  312. data/app/assets/javascripts/ckeditor/_source/plugins/smiley/plugin.js +94 -0
  313. data/app/assets/javascripts/ckeditor/_source/plugins/sourcearea/plugin.js +209 -0
  314. data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/dialogs/specialchar.js +350 -0
  315. data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/lang/en.js +122 -0
  316. data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/plugin.js +70 -0
  317. data/app/assets/javascripts/ckeditor/_source/plugins/styles/plugin.js +1700 -0
  318. data/app/assets/javascripts/ckeditor/_source/plugins/styles/styles/default.js +88 -0
  319. data/app/assets/javascripts/ckeditor/_source/plugins/stylescombo/plugin.js +218 -0
  320. data/app/assets/javascripts/ckeditor/_source/plugins/stylesheetparser/plugin.js +148 -0
  321. data/app/assets/javascripts/ckeditor/_source/plugins/tab/plugin.js +367 -0
  322. data/app/assets/javascripts/ckeditor/_source/plugins/table/dialogs/table.js +623 -0
  323. data/app/assets/javascripts/ckeditor/_source/plugins/table/plugin.js +78 -0
  324. data/app/assets/javascripts/ckeditor/_source/plugins/tableresize/plugin.js +443 -0
  325. data/app/assets/javascripts/ckeditor/_source/plugins/tabletools/dialogs/tableCell.js +525 -0
  326. data/app/assets/javascripts/ckeditor/_source/plugins/tabletools/plugin.js +1194 -0
  327. data/app/assets/javascripts/ckeditor/_source/plugins/templates/dialogs/templates.js +234 -0
  328. data/app/assets/javascripts/ckeditor/_source/plugins/templates/plugin.js +99 -0
  329. data/app/assets/javascripts/ckeditor/_source/plugins/templates/templates/default.js +94 -0
  330. data/app/assets/javascripts/ckeditor/_source/plugins/templates/templates/images/template1.gif +0 -0
  331. data/app/assets/javascripts/ckeditor/_source/plugins/templates/templates/images/template2.gif +0 -0
  332. data/app/assets/javascripts/ckeditor/_source/plugins/templates/templates/images/template3.gif +0 -0
  333. data/app/assets/javascripts/ckeditor/_source/plugins/toolbar/plugin.js +545 -0
  334. data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/dialogs/uicolor.js +205 -0
  335. data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/en.js +15 -0
  336. data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/he.js +15 -0
  337. data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/plugin.js +37 -0
  338. data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/uicolor.gif +0 -0
  339. data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/yui/assets/hue_bg.png +0 -0
  340. data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/yui/assets/hue_thumb.png +0 -0
  341. data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/yui/assets/picker_mask.png +0 -0
  342. data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/yui/assets/picker_thumb.png +0 -0
  343. data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/yui/assets/yui.css +15 -0
  344. data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/yui/yui.js +71 -0
  345. data/app/assets/javascripts/ckeditor/_source/plugins/undo/plugin.js +578 -0
  346. data/app/assets/javascripts/ckeditor/_source/plugins/wsc/dialogs/ciframe.html +49 -0
  347. data/app/assets/javascripts/ckeditor/_source/plugins/wsc/dialogs/tmpFrameset.html +52 -0
  348. data/app/assets/javascripts/ckeditor/_source/plugins/wsc/dialogs/wsc.css +82 -0
  349. data/app/assets/javascripts/ckeditor/_source/plugins/wsc/dialogs/wsc.js +192 -0
  350. data/app/assets/javascripts/ckeditor/_source/plugins/wsc/plugin.js +33 -0
  351. data/app/assets/javascripts/ckeditor/_source/plugins/wysiwygarea/plugin.js +1347 -0
  352. data/app/assets/javascripts/ckeditor/_source/plugins/xml/plugin.js +170 -0
  353. data/app/assets/javascripts/ckeditor/_source/skins/kama/dialog.css +989 -0
  354. data/app/assets/javascripts/ckeditor/_source/skins/kama/editor.css +25 -0
  355. data/app/assets/javascripts/ckeditor/_source/skins/kama/elementspath.css +73 -0
  356. data/app/assets/javascripts/ckeditor/_source/skins/kama/icons.css +366 -0
  357. data/app/assets/javascripts/ckeditor/_source/skins/kama/icons.png +0 -0
  358. data/app/assets/javascripts/ckeditor/_source/skins/kama/icons_rtl.png +0 -0
  359. data/app/assets/javascripts/ckeditor/_source/skins/kama/images/dialog_sides.gif +0 -0
  360. data/app/assets/javascripts/ckeditor/_source/skins/kama/images/dialog_sides.png +0 -0
  361. data/app/assets/javascripts/ckeditor/_source/skins/kama/images/dialog_sides_rtl.png +0 -0
  362. data/app/assets/javascripts/ckeditor/_source/skins/kama/images/mini.gif +0 -0
  363. data/app/assets/javascripts/ckeditor/_source/skins/kama/images/noimage.png +0 -0
  364. data/app/assets/javascripts/ckeditor/_source/skins/kama/images/sprites.png +0 -0
  365. data/app/assets/javascripts/ckeditor/_source/skins/kama/images/sprites_ie6.png +0 -0
  366. data/app/assets/javascripts/ckeditor/_source/skins/kama/images/toolbar_start.gif +0 -0
  367. data/app/assets/javascripts/ckeditor/_source/skins/kama/mainui.css +206 -0
  368. data/app/assets/javascripts/ckeditor/_source/skins/kama/menu.css +232 -0
  369. data/app/assets/javascripts/ckeditor/_source/skins/kama/panel.css +217 -0
  370. data/app/assets/javascripts/ckeditor/_source/skins/kama/presets.css +49 -0
  371. data/app/assets/javascripts/ckeditor/_source/skins/kama/reset.css +85 -0
  372. data/app/assets/javascripts/ckeditor/_source/skins/kama/richcombo.css +287 -0
  373. data/app/assets/javascripts/ckeditor/_source/skins/kama/skin.js +236 -0
  374. data/app/assets/javascripts/ckeditor/_source/skins/kama/templates.css +88 -0
  375. data/app/assets/javascripts/ckeditor/_source/skins/kama/toolbar.css +408 -0
  376. data/app/assets/javascripts/ckeditor/_source/skins/office2003/dialog.css +891 -0
  377. data/app/assets/javascripts/ckeditor/_source/skins/office2003/editor.css +25 -0
  378. data/app/assets/javascripts/ckeditor/_source/skins/office2003/elementspath.css +74 -0
  379. data/app/assets/javascripts/ckeditor/_source/skins/office2003/icons.css +363 -0
  380. data/app/assets/javascripts/ckeditor/_source/skins/office2003/icons.png +0 -0
  381. data/app/assets/javascripts/ckeditor/_source/skins/office2003/icons_rtl.png +0 -0
  382. data/app/assets/javascripts/ckeditor/_source/skins/office2003/images/dialog_sides.gif +0 -0
  383. data/app/assets/javascripts/ckeditor/_source/skins/office2003/images/dialog_sides.png +0 -0
  384. data/app/assets/javascripts/ckeditor/_source/skins/office2003/images/dialog_sides_rtl.png +0 -0
  385. data/app/assets/javascripts/ckeditor/_source/skins/office2003/images/mini.gif +0 -0
  386. data/app/assets/javascripts/ckeditor/_source/skins/office2003/images/noimage.png +0 -0
  387. data/app/assets/javascripts/ckeditor/_source/skins/office2003/images/sprites.png +0 -0
  388. data/app/assets/javascripts/ckeditor/_source/skins/office2003/images/sprites_ie6.png +0 -0
  389. data/app/assets/javascripts/ckeditor/_source/skins/office2003/mainui.css +153 -0
  390. data/app/assets/javascripts/ckeditor/_source/skins/office2003/menu.css +229 -0
  391. data/app/assets/javascripts/ckeditor/_source/skins/office2003/panel.css +212 -0
  392. data/app/assets/javascripts/ckeditor/_source/skins/office2003/presets.css +49 -0
  393. data/app/assets/javascripts/ckeditor/_source/skins/office2003/reset.css +85 -0
  394. data/app/assets/javascripts/ckeditor/_source/skins/office2003/richcombo.css +309 -0
  395. data/app/assets/javascripts/ckeditor/_source/skins/office2003/skin.js +74 -0
  396. data/app/assets/javascripts/ckeditor/_source/skins/office2003/templates.css +87 -0
  397. data/app/assets/javascripts/ckeditor/_source/skins/office2003/toolbar.css +522 -0
  398. data/app/assets/javascripts/ckeditor/_source/skins/v2/dialog.css +907 -0
  399. data/app/assets/javascripts/ckeditor/_source/skins/v2/editor.css +25 -0
  400. data/app/assets/javascripts/ckeditor/_source/skins/v2/elementspath.css +74 -0
  401. data/app/assets/javascripts/ckeditor/_source/skins/v2/icons.css +363 -0
  402. data/app/assets/javascripts/ckeditor/_source/skins/v2/icons.png +0 -0
  403. data/app/assets/javascripts/ckeditor/_source/skins/v2/icons_rtl.png +0 -0
  404. data/app/assets/javascripts/ckeditor/_source/skins/v2/images/dialog_sides.gif +0 -0
  405. data/app/assets/javascripts/ckeditor/_source/skins/v2/images/dialog_sides.png +0 -0
  406. data/app/assets/javascripts/ckeditor/_source/skins/v2/images/dialog_sides_rtl.png +0 -0
  407. data/app/assets/javascripts/ckeditor/_source/skins/v2/images/mini.gif +0 -0
  408. data/app/assets/javascripts/ckeditor/_source/skins/v2/images/noimage.png +0 -0
  409. data/app/assets/javascripts/ckeditor/_source/skins/v2/images/sprites.png +0 -0
  410. data/app/assets/javascripts/ckeditor/_source/skins/v2/images/sprites_ie6.png +0 -0
  411. data/app/assets/javascripts/ckeditor/_source/skins/v2/images/toolbar_start.gif +0 -0
  412. data/app/assets/javascripts/ckeditor/_source/skins/v2/mainui.css +162 -0
  413. data/app/assets/javascripts/ckeditor/_source/skins/v2/menu.css +232 -0
  414. data/app/assets/javascripts/ckeditor/_source/skins/v2/panel.css +212 -0
  415. data/app/assets/javascripts/ckeditor/_source/skins/v2/presets.css +50 -0
  416. data/app/assets/javascripts/ckeditor/_source/skins/v2/reset.css +85 -0
  417. data/app/assets/javascripts/ckeditor/_source/skins/v2/richcombo.css +302 -0
  418. data/app/assets/javascripts/ckeditor/_source/skins/v2/skin.js +70 -0
  419. data/app/assets/javascripts/ckeditor/_source/skins/v2/templates.css +87 -0
  420. data/app/assets/javascripts/ckeditor/_source/skins/v2/toolbar.css +465 -0
  421. data/app/assets/javascripts/ckeditor/_source/themes/default/theme.js +407 -0
  422. data/app/assets/javascripts/ckeditor/adapters/jquery.js +6 -0
  423. data/app/assets/javascripts/ckeditor/ckeditor.asp +955 -0
  424. data/app/assets/javascripts/ckeditor/ckeditor.js +149 -0
  425. data/app/assets/javascripts/ckeditor/ckeditor.pack +211 -0
  426. data/app/assets/javascripts/ckeditor/ckeditor.php +29 -0
  427. data/app/assets/javascripts/ckeditor/ckeditor_basic.js +8 -0
  428. data/app/assets/javascripts/ckeditor/ckeditor_basic_source.js +20 -0
  429. data/app/assets/javascripts/ckeditor/ckeditor_php4.php +566 -0
  430. data/app/assets/javascripts/ckeditor/ckeditor_php5.php +556 -0
  431. data/app/assets/javascripts/ckeditor/ckeditor_source.js +35 -0
  432. data/app/assets/javascripts/ckeditor/config.js +11 -0
  433. data/app/assets/javascripts/ckeditor/contents.css +25 -0
  434. data/app/assets/javascripts/ckeditor/images/spacer.gif +0 -0
  435. data/app/assets/javascripts/ckeditor/lang/_languages.js +6 -0
  436. data/app/assets/javascripts/ckeditor/lang/_translationstatus.txt +61 -0
  437. data/app/assets/javascripts/ckeditor/lang/af.js +6 -0
  438. data/app/assets/javascripts/ckeditor/lang/ar.js +6 -0
  439. data/app/assets/javascripts/ckeditor/lang/bg.js +6 -0
  440. data/app/assets/javascripts/ckeditor/lang/bn.js +6 -0
  441. data/app/assets/javascripts/ckeditor/lang/bs.js +6 -0
  442. data/app/assets/javascripts/ckeditor/lang/ca.js +6 -0
  443. data/app/assets/javascripts/ckeditor/lang/cs.js +6 -0
  444. data/app/assets/javascripts/ckeditor/lang/cy.js +6 -0
  445. data/app/assets/javascripts/ckeditor/lang/da.js +6 -0
  446. data/app/assets/javascripts/ckeditor/lang/de.js +6 -0
  447. data/app/assets/javascripts/ckeditor/lang/el.js +6 -0
  448. data/app/assets/javascripts/ckeditor/lang/en-au.js +6 -0
  449. data/app/assets/javascripts/ckeditor/lang/en-ca.js +6 -0
  450. data/app/assets/javascripts/ckeditor/lang/en-gb.js +6 -0
  451. data/app/assets/javascripts/ckeditor/lang/en.js +6 -0
  452. data/app/assets/javascripts/ckeditor/lang/eo.js +6 -0
  453. data/app/assets/javascripts/ckeditor/lang/es.js +6 -0
  454. data/app/assets/javascripts/ckeditor/lang/et.js +6 -0
  455. data/app/assets/javascripts/ckeditor/lang/eu.js +6 -0
  456. data/app/assets/javascripts/ckeditor/lang/fa.js +6 -0
  457. data/app/assets/javascripts/ckeditor/lang/fi.js +6 -0
  458. data/app/assets/javascripts/ckeditor/lang/fo.js +6 -0
  459. data/app/assets/javascripts/ckeditor/lang/fr-ca.js +6 -0
  460. data/app/assets/javascripts/ckeditor/lang/fr.js +6 -0
  461. data/app/assets/javascripts/ckeditor/lang/gl.js +6 -0
  462. data/app/assets/javascripts/ckeditor/lang/gu.js +6 -0
  463. data/app/assets/javascripts/ckeditor/lang/he.js +6 -0
  464. data/app/assets/javascripts/ckeditor/lang/hi.js +6 -0
  465. data/app/assets/javascripts/ckeditor/lang/hr.js +6 -0
  466. data/app/assets/javascripts/ckeditor/lang/hu.js +6 -0
  467. data/app/assets/javascripts/ckeditor/lang/is.js +6 -0
  468. data/app/assets/javascripts/ckeditor/lang/it.js +6 -0
  469. data/app/assets/javascripts/ckeditor/lang/ja.js +6 -0
  470. data/app/assets/javascripts/ckeditor/lang/ka.js +6 -0
  471. data/app/assets/javascripts/ckeditor/lang/km.js +6 -0
  472. data/app/assets/javascripts/ckeditor/lang/ko.js +6 -0
  473. data/app/assets/javascripts/ckeditor/lang/lt.js +6 -0
  474. data/app/assets/javascripts/ckeditor/lang/lv.js +6 -0
  475. data/app/assets/javascripts/ckeditor/lang/mn.js +6 -0
  476. data/app/assets/javascripts/ckeditor/lang/ms.js +6 -0
  477. data/app/assets/javascripts/ckeditor/lang/nb.js +6 -0
  478. data/app/assets/javascripts/ckeditor/lang/nl.js +6 -0
  479. data/app/assets/javascripts/ckeditor/lang/no.js +6 -0
  480. data/app/assets/javascripts/ckeditor/lang/pl.js +6 -0
  481. data/app/assets/javascripts/ckeditor/lang/pt-br.js +6 -0
  482. data/app/assets/javascripts/ckeditor/lang/pt.js +6 -0
  483. data/app/assets/javascripts/ckeditor/lang/ro.js +6 -0
  484. data/app/assets/javascripts/ckeditor/lang/ru.js +6 -0
  485. data/app/assets/javascripts/ckeditor/lang/sk.js +6 -0
  486. data/app/assets/javascripts/ckeditor/lang/sl.js +6 -0
  487. data/app/assets/javascripts/ckeditor/lang/sr-latn.js +6 -0
  488. data/app/assets/javascripts/ckeditor/lang/sr.js +6 -0
  489. data/app/assets/javascripts/ckeditor/lang/sv.js +6 -0
  490. data/app/assets/javascripts/ckeditor/lang/th.js +6 -0
  491. data/app/assets/javascripts/ckeditor/lang/tr.js +6 -0
  492. data/app/assets/javascripts/ckeditor/lang/uk.js +6 -0
  493. data/app/assets/javascripts/ckeditor/lang/vi.js +6 -0
  494. data/app/assets/javascripts/ckeditor/lang/zh-cn.js +6 -0
  495. data/app/assets/javascripts/ckeditor/lang/zh.js +6 -0
  496. data/app/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js +7 -0
  497. data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/en.js +6 -0
  498. data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/he.js +6 -0
  499. data/app/assets/javascripts/ckeditor/plugins/about/dialogs/about.js +6 -0
  500. data/app/assets/javascripts/ckeditor/plugins/about/dialogs/logo_ckeditor.png +0 -0
  501. data/app/assets/javascripts/ckeditor/plugins/adobeair/plugin.js +6 -0
  502. data/app/assets/javascripts/ckeditor/plugins/ajax/plugin.js +6 -0
  503. data/app/assets/javascripts/ckeditor/plugins/autogrow/plugin.js +6 -0
  504. data/app/assets/javascripts/ckeditor/plugins/bbcode/plugin.js +9 -0
  505. data/app/assets/javascripts/ckeditor/plugins/clipboard/dialogs/paste.js +7 -0
  506. data/app/assets/javascripts/ckeditor/plugins/colordialog/dialogs/colordialog.js +7 -0
  507. data/app/assets/javascripts/ckeditor/plugins/devtools/lang/en.js +6 -0
  508. data/app/assets/javascripts/ckeditor/plugins/devtools/plugin.js +6 -0
  509. data/app/assets/javascripts/ckeditor/plugins/dialog/dialogDefinition.js +4 -0
  510. data/app/assets/javascripts/ckeditor/plugins/div/dialogs/div.js +8 -0
  511. data/app/assets/javascripts/ckeditor/plugins/docprops/dialogs/docprops.js +10 -0
  512. data/app/assets/javascripts/ckeditor/plugins/docprops/plugin.js +6 -0
  513. data/app/assets/javascripts/ckeditor/plugins/find/dialogs/find.js +10 -0
  514. data/app/assets/javascripts/ckeditor/plugins/flash/dialogs/flash.js +9 -0
  515. data/app/assets/javascripts/ckeditor/plugins/flash/images/placeholder.png +0 -0
  516. data/app/assets/javascripts/ckeditor/plugins/forms/dialogs/button.js +6 -0
  517. data/app/assets/javascripts/ckeditor/plugins/forms/dialogs/checkbox.js +6 -0
  518. data/app/assets/javascripts/ckeditor/plugins/forms/dialogs/form.js +6 -0
  519. data/app/assets/javascripts/ckeditor/plugins/forms/dialogs/hiddenfield.js +6 -0
  520. data/app/assets/javascripts/ckeditor/plugins/forms/dialogs/radio.js +6 -0
  521. data/app/assets/javascripts/ckeditor/plugins/forms/dialogs/select.js +9 -0
  522. data/app/assets/javascripts/ckeditor/plugins/forms/dialogs/textarea.js +6 -0
  523. data/app/assets/javascripts/ckeditor/plugins/forms/dialogs/textfield.js +6 -0
  524. data/app/assets/javascripts/ckeditor/plugins/forms/images/hiddenfield.gif +0 -0
  525. data/app/assets/javascripts/ckeditor/plugins/iframe/dialogs/iframe.js +7 -0
  526. data/app/assets/javascripts/ckeditor/plugins/iframe/images/placeholder.png +0 -0
  527. data/app/assets/javascripts/ckeditor/plugins/iframedialog/plugin.js +6 -0
  528. data/app/assets/javascripts/ckeditor/plugins/image/dialogs/image.js +13 -0
  529. data/app/assets/javascripts/ckeditor/plugins/link/dialogs/anchor.js +6 -0
  530. data/app/assets/javascripts/ckeditor/plugins/link/dialogs/link.js +12 -0
  531. data/app/assets/javascripts/ckeditor/plugins/link/images/anchor.gif +0 -0
  532. data/app/assets/javascripts/ckeditor/plugins/liststyle/dialogs/liststyle.js +7 -0
  533. data/app/assets/javascripts/ckeditor/plugins/pagebreak/images/pagebreak.gif +0 -0
  534. data/app/assets/javascripts/ckeditor/plugins/pastefromword/filter/default.js +11 -0
  535. data/app/assets/javascripts/ckeditor/plugins/pastetext/dialogs/pastetext.js +6 -0
  536. data/app/assets/javascripts/ckeditor/plugins/placeholder/dialogs/placeholder.js +6 -0
  537. data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/en.js +6 -0
  538. data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/he.js +6 -0
  539. data/app/assets/javascripts/ckeditor/plugins/placeholder/placeholder.gif +0 -0
  540. data/app/assets/javascripts/ckeditor/plugins/placeholder/plugin.js +6 -0
  541. data/app/assets/javascripts/ckeditor/plugins/scayt/dialogs/options.js +8 -0
  542. data/app/assets/javascripts/ckeditor/plugins/scayt/dialogs/toolbar.css +6 -0
  543. data/app/assets/javascripts/ckeditor/plugins/showblocks/images/block_address.png +0 -0
  544. data/app/assets/javascripts/ckeditor/plugins/showblocks/images/block_blockquote.png +0 -0
  545. data/app/assets/javascripts/ckeditor/plugins/showblocks/images/block_div.png +0 -0
  546. data/app/assets/javascripts/ckeditor/plugins/showblocks/images/block_h1.png +0 -0
  547. data/app/assets/javascripts/ckeditor/plugins/showblocks/images/block_h2.png +0 -0
  548. data/app/assets/javascripts/ckeditor/plugins/showblocks/images/block_h3.png +0 -0
  549. data/app/assets/javascripts/ckeditor/plugins/showblocks/images/block_h4.png +0 -0
  550. data/app/assets/javascripts/ckeditor/plugins/showblocks/images/block_h5.png +0 -0
  551. data/app/assets/javascripts/ckeditor/plugins/showblocks/images/block_h6.png +0 -0
  552. data/app/assets/javascripts/ckeditor/plugins/showblocks/images/block_p.png +0 -0
  553. data/app/assets/javascripts/ckeditor/plugins/showblocks/images/block_pre.png +0 -0
  554. data/app/assets/javascripts/ckeditor/plugins/smiley/dialogs/smiley.js +7 -0
  555. data/app/assets/javascripts/ckeditor/plugins/smiley/images/angel_smile.gif +0 -0
  556. data/app/assets/javascripts/ckeditor/plugins/smiley/images/angry_smile.gif +0 -0
  557. data/app/assets/javascripts/ckeditor/plugins/smiley/images/broken_heart.gif +0 -0
  558. data/app/assets/javascripts/ckeditor/plugins/smiley/images/confused_smile.gif +0 -0
  559. data/app/assets/javascripts/ckeditor/plugins/smiley/images/cry_smile.gif +0 -0
  560. data/app/assets/javascripts/ckeditor/plugins/smiley/images/devil_smile.gif +0 -0
  561. data/app/assets/javascripts/ckeditor/plugins/smiley/images/embaressed_smile.gif +0 -0
  562. data/app/assets/javascripts/ckeditor/plugins/smiley/images/envelope.gif +0 -0
  563. data/app/assets/javascripts/ckeditor/plugins/smiley/images/heart.gif +0 -0
  564. data/app/assets/javascripts/ckeditor/plugins/smiley/images/kiss.gif +0 -0
  565. data/app/assets/javascripts/ckeditor/plugins/smiley/images/lightbulb.gif +0 -0
  566. data/app/assets/javascripts/ckeditor/plugins/smiley/images/omg_smile.gif +0 -0
  567. data/app/assets/javascripts/ckeditor/plugins/smiley/images/regular_smile.gif +0 -0
  568. data/app/assets/javascripts/ckeditor/plugins/smiley/images/sad_smile.gif +0 -0
  569. data/app/assets/javascripts/ckeditor/plugins/smiley/images/shades_smile.gif +0 -0
  570. data/app/assets/javascripts/ckeditor/plugins/smiley/images/teeth_smile.gif +0 -0
  571. data/app/assets/javascripts/ckeditor/plugins/smiley/images/thumbs_down.gif +0 -0
  572. data/app/assets/javascripts/ckeditor/plugins/smiley/images/thumbs_up.gif +0 -0
  573. data/app/assets/javascripts/ckeditor/plugins/smiley/images/tounge_smile.gif +0 -0
  574. data/app/assets/javascripts/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif +0 -0
  575. data/app/assets/javascripts/ckeditor/plugins/smiley/images/wink_smile.gif +0 -0
  576. data/app/assets/javascripts/ckeditor/plugins/specialchar/dialogs/specialchar.js +7 -0
  577. data/app/assets/javascripts/ckeditor/plugins/specialchar/lang/en.js +6 -0
  578. data/app/assets/javascripts/ckeditor/plugins/styles/styles/default.js +6 -0
  579. data/app/assets/javascripts/ckeditor/plugins/stylesheetparser/plugin.js +6 -0
  580. data/app/assets/javascripts/ckeditor/plugins/table/dialogs/table.js +9 -0
  581. data/app/assets/javascripts/ckeditor/plugins/tableresize/plugin.js +7 -0
  582. data/app/assets/javascripts/ckeditor/plugins/tabletools/dialogs/tableCell.js +8 -0
  583. data/app/assets/javascripts/ckeditor/plugins/templates/dialogs/templates.js +7 -0
  584. data/app/assets/javascripts/ckeditor/plugins/templates/templates/default.js +6 -0
  585. data/app/assets/javascripts/ckeditor/plugins/templates/templates/images/template1.gif +0 -0
  586. data/app/assets/javascripts/ckeditor/plugins/templates/templates/images/template2.gif +0 -0
  587. data/app/assets/javascripts/ckeditor/plugins/templates/templates/images/template3.gif +0 -0
  588. data/app/assets/javascripts/ckeditor/plugins/uicolor/dialogs/uicolor.js +7 -0
  589. data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/en.js +6 -0
  590. data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/he.js +6 -0
  591. data/app/assets/javascripts/ckeditor/plugins/uicolor/plugin.js +6 -0
  592. data/app/assets/javascripts/ckeditor/plugins/uicolor/uicolor.gif +0 -0
  593. data/app/assets/javascripts/ckeditor/plugins/uicolor/yui/assets/hue_bg.png +0 -0
  594. data/app/assets/javascripts/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png +0 -0
  595. data/app/assets/javascripts/ckeditor/plugins/uicolor/yui/assets/picker_mask.png +0 -0
  596. data/app/assets/javascripts/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png +0 -0
  597. data/app/assets/javascripts/ckeditor/plugins/uicolor/yui/assets/yui.css +6 -0
  598. data/app/assets/javascripts/ckeditor/plugins/uicolor/yui/yui.js +76 -0
  599. data/app/assets/javascripts/ckeditor/plugins/wsc/dialogs/ciframe.html +49 -0
  600. data/app/assets/javascripts/ckeditor/plugins/wsc/dialogs/tmpFrameset.html +52 -0
  601. data/app/assets/javascripts/ckeditor/plugins/wsc/dialogs/wsc.css +6 -0
  602. data/app/assets/javascripts/ckeditor/plugins/wsc/dialogs/wsc.js +7 -0
  603. data/app/assets/javascripts/ckeditor/plugins/xml/plugin.js +6 -0
  604. data/app/assets/javascripts/ckeditor/skins/kama/dialog.css +10 -0
  605. data/app/assets/javascripts/ckeditor/skins/kama/editor.css +13 -0
  606. data/app/assets/javascripts/ckeditor/skins/kama/icons.png +0 -0
  607. data/app/assets/javascripts/ckeditor/skins/kama/icons_rtl.png +0 -0
  608. data/app/assets/javascripts/ckeditor/skins/kama/images/dialog_sides.gif +0 -0
  609. data/app/assets/javascripts/ckeditor/skins/kama/images/dialog_sides.png +0 -0
  610. data/app/assets/javascripts/ckeditor/skins/kama/images/dialog_sides_rtl.png +0 -0
  611. data/app/assets/javascripts/ckeditor/skins/kama/images/mini.gif +0 -0
  612. data/app/assets/javascripts/ckeditor/skins/kama/images/noimage.png +0 -0
  613. data/app/assets/javascripts/ckeditor/skins/kama/images/sprites.png +0 -0
  614. data/app/assets/javascripts/ckeditor/skins/kama/images/sprites_ie6.png +0 -0
  615. data/app/assets/javascripts/ckeditor/skins/kama/images/toolbar_start.gif +0 -0
  616. data/app/assets/javascripts/ckeditor/skins/kama/skin.js +7 -0
  617. data/app/assets/javascripts/ckeditor/skins/kama/templates.css +6 -0
  618. data/app/assets/javascripts/ckeditor/skins/office2003/dialog.css +9 -0
  619. data/app/assets/javascripts/ckeditor/skins/office2003/editor.css +14 -0
  620. data/app/assets/javascripts/ckeditor/skins/office2003/icons.png +0 -0
  621. data/app/assets/javascripts/ckeditor/skins/office2003/icons_rtl.png +0 -0
  622. data/app/assets/javascripts/ckeditor/skins/office2003/images/dialog_sides.gif +0 -0
  623. data/app/assets/javascripts/ckeditor/skins/office2003/images/dialog_sides.png +0 -0
  624. data/app/assets/javascripts/ckeditor/skins/office2003/images/dialog_sides_rtl.png +0 -0
  625. data/app/assets/javascripts/ckeditor/skins/office2003/images/mini.gif +0 -0
  626. data/app/assets/javascripts/ckeditor/skins/office2003/images/noimage.png +0 -0
  627. data/app/assets/javascripts/ckeditor/skins/office2003/images/sprites.png +0 -0
  628. data/app/assets/javascripts/ckeditor/skins/office2003/images/sprites_ie6.png +0 -0
  629. data/app/assets/javascripts/ckeditor/skins/office2003/skin.js +6 -0
  630. data/app/assets/javascripts/ckeditor/skins/office2003/templates.css +6 -0
  631. data/app/assets/javascripts/ckeditor/skins/v2/dialog.css +9 -0
  632. data/app/assets/javascripts/ckeditor/skins/v2/editor.css +13 -0
  633. data/app/assets/javascripts/ckeditor/skins/v2/icons.png +0 -0
  634. data/app/assets/javascripts/ckeditor/skins/v2/icons_rtl.png +0 -0
  635. data/app/assets/javascripts/ckeditor/skins/v2/images/dialog_sides.gif +0 -0
  636. data/app/assets/javascripts/ckeditor/skins/v2/images/dialog_sides.png +0 -0
  637. data/app/assets/javascripts/ckeditor/skins/v2/images/dialog_sides_rtl.png +0 -0
  638. data/app/assets/javascripts/ckeditor/skins/v2/images/mini.gif +0 -0
  639. data/app/assets/javascripts/ckeditor/skins/v2/images/noimage.png +0 -0
  640. data/app/assets/javascripts/ckeditor/skins/v2/images/sprites.png +0 -0
  641. data/app/assets/javascripts/ckeditor/skins/v2/images/sprites_ie6.png +0 -0
  642. data/app/assets/javascripts/ckeditor/skins/v2/images/toolbar_start.gif +0 -0
  643. data/app/assets/javascripts/ckeditor/skins/v2/skin.js +6 -0
  644. data/app/assets/javascripts/ckeditor/skins/v2/templates.css +6 -0
  645. data/app/assets/javascripts/ckeditor/themes/default/theme.js +8 -0
  646. data/app/assets/javascripts/refinery/ckeditor.js.coffee +61 -0
  647. data/app/assets/javascripts/refinery/wymeditor.js.coffee +3 -0
  648. data/app/assets/javascripts/wymeditor/lang/en.js +0 -0
  649. data/app/assets/javascripts/wymeditor/skins/refinery/skin.js +0 -0
  650. data/app/assets/stylesheets/ckeditor.css.sass +14 -0
  651. data/app/assets/stylesheets/refinery/ckeditor.css.sass +73 -0
  652. data/app/views/refinery/admin/pages/_page_part_field.html.haml +25 -0
  653. data/config/initializers/refinery/ckeditor.rb +6 -0
  654. data/lib/refinery/ckeditor/version.rb +5 -0
  655. data/lib/refinerycms-ckeditor.rb +7 -0
  656. data/refinerycms-ckeditor.gemspec +17 -0
  657. metadata +721 -0
@@ -0,0 +1,815 @@
1
+ /*
2
+ Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ /**
7
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
8
+ * Danish language.
9
+ */
10
+
11
+ /**#@+
12
+ @type String
13
+ @example
14
+ */
15
+
16
+ /**
17
+ * Contains the dictionary of language entries.
18
+ * @namespace
19
+ */
20
+ CKEDITOR.lang['da'] =
21
+ {
22
+ /**
23
+ * The language reading direction. Possible values are "rtl" for
24
+ * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
25
+ * languages (like English).
26
+ * @default 'ltr'
27
+ */
28
+ dir : 'ltr',
29
+
30
+ /*
31
+ * Screenreader titles. Please note that screenreaders are not always capable
32
+ * of reading non-English words. So be careful while translating it.
33
+ */
34
+ editorTitle : 'Rich text editor, %1, press ALT 0 for help.', // MISSING
35
+
36
+ // ARIA descriptions.
37
+ toolbars : 'Editor toolbars', // MISSING
38
+ editor : 'Rich Text Editor', // MISSING
39
+
40
+ // Toolbar buttons without dialogs.
41
+ source : 'Kilde',
42
+ newPage : 'Ny side',
43
+ save : 'Gem',
44
+ preview : 'Vis eksempel',
45
+ cut : 'Klip',
46
+ copy : 'Kopiér',
47
+ paste : 'Indsæt',
48
+ print : 'Udskriv',
49
+ underline : 'Understreget',
50
+ bold : 'Fed',
51
+ italic : 'Kursiv',
52
+ selectAll : 'Vælg alt',
53
+ removeFormat : 'Fjern formatering',
54
+ strike : 'Gennemstreget',
55
+ subscript : 'Sænket skrift',
56
+ superscript : 'Hævet skrift',
57
+ horizontalrule : 'Indsæt vandret streg',
58
+ pagebreak : 'Indsæt sideskift',
59
+ pagebreakAlt : 'Page Break', // MISSING
60
+ unlink : 'Fjern hyperlink',
61
+ undo : 'Fortryd',
62
+ redo : 'Annullér fortryd',
63
+
64
+ // Common messages and labels.
65
+ common :
66
+ {
67
+ browseServer : 'Gennemse...',
68
+ url : 'URL',
69
+ protocol : 'Protokol',
70
+ upload : 'Upload',
71
+ uploadSubmit : 'Upload',
72
+ image : 'Indsæt billede',
73
+ flash : 'Indsæt Flash',
74
+ form : 'Indsæt formular',
75
+ checkbox : 'Indsæt afkrydsningsfelt',
76
+ radio : 'Indsæt alternativknap',
77
+ textField : 'Indsæt tekstfelt',
78
+ textarea : 'Indsæt tekstboks',
79
+ hiddenField : 'Indsæt skjult felt',
80
+ button : 'Indsæt knap',
81
+ select : 'Indsæt liste',
82
+ imageButton : 'Indsæt billedknap',
83
+ notSet : '<intet valgt>',
84
+ id : 'Id',
85
+ name : 'Navn',
86
+ langDir : 'Tekstretning',
87
+ langDirLtr : 'Fra venstre mod højre (LTR)',
88
+ langDirRtl : 'Fra højre mod venstre (RTL)',
89
+ langCode : 'Sprogkode',
90
+ longDescr : 'Udvidet beskrivelse',
91
+ cssClass : 'Typografiark (CSS)',
92
+ advisoryTitle : 'Titel',
93
+ cssStyle : 'Typografi (CSS)',
94
+ ok : 'OK',
95
+ cancel : 'Annullér',
96
+ close : 'Close', // MISSING
97
+ preview : 'Preview', // MISSING
98
+ generalTab : 'Generelt',
99
+ advancedTab : 'Avanceret',
100
+ validateNumberFailed : 'Værdien er ikke et tal.',
101
+ confirmNewPage : 'Alt indhold, der ikke er blevet gemt, vil gå tabt. Er du sikker på, at du vil indlæse en ny side?',
102
+ confirmCancel : 'Nogle af indstillingerne er blevet ændret. Er du sikker på, at du vil lukke vinduet?',
103
+ options : 'Options', // MISSING
104
+ target : 'Target', // MISSING
105
+ targetNew : 'New Window (_blank)', // MISSING
106
+ targetTop : 'Topmost Window (_top)', // MISSING
107
+ targetSelf : 'Same Window (_self)', // MISSING
108
+ targetParent : 'Parent Window (_parent)', // MISSING
109
+ langDirLTR : 'Left to Right (LTR)', // MISSING
110
+ langDirRTL : 'Right to Left (RTL)', // MISSING
111
+ styles : 'Style', // MISSING
112
+ cssClasses : 'Stylesheet Classes', // MISSING
113
+ width : 'Bredde',
114
+ height : 'Højde',
115
+ align : 'Justering',
116
+ alignLeft : 'Venstre',
117
+ alignRight : 'Højre',
118
+ alignCenter : 'Centreret',
119
+ alignTop : 'Øverst',
120
+ alignMiddle : 'Centreret',
121
+ alignBottom : 'Nederst',
122
+ invalidHeight : 'Højde skal være et tal.',
123
+ invalidWidth : 'Bredde skal være et tal.',
124
+ invalidCssLength : 'Value specified for the "%1" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).', // MISSING
125
+ invalidHtmlLength : 'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).', // MISSING
126
+ invalidInlineStyle : 'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.', // MISSING
127
+ cssLengthTooltip : 'Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).', // MISSING
128
+
129
+ // Put the voice-only part of the label in the span.
130
+ unavailable : '%1<span class="cke_accessibility">, ikke tilgængelig</span>'
131
+ },
132
+
133
+ contextmenu :
134
+ {
135
+ options : 'Context Menu Options' // MISSING
136
+ },
137
+
138
+ // Special char dialog.
139
+ specialChar :
140
+ {
141
+ toolbar : 'Indsæt symbol',
142
+ title : 'Vælg symbol',
143
+ options : 'Special Character Options' // MISSING
144
+ },
145
+
146
+ // Link dialog.
147
+ link :
148
+ {
149
+ toolbar : 'Indsæt/redigér hyperlink',
150
+ other : '<anden>',
151
+ menu : 'Redigér hyperlink',
152
+ title : 'Egenskaber for hyperlink',
153
+ info : 'Generelt',
154
+ target : 'Mål',
155
+ upload : 'Upload',
156
+ advanced : 'Avanceret',
157
+ type : 'Type',
158
+ toUrl : 'URL', // MISSING
159
+ toAnchor : 'Bogmærke på denne side',
160
+ toEmail : 'E-mail',
161
+ targetFrame : '<ramme>',
162
+ targetPopup : '<popup vindue>',
163
+ targetFrameName : 'Destinationsvinduets navn',
164
+ targetPopupName : 'Popup vinduets navn',
165
+ popupFeatures : 'Egenskaber for popup',
166
+ popupResizable : 'Justérbar',
167
+ popupStatusBar : 'Statuslinje',
168
+ popupLocationBar: 'Adresselinje',
169
+ popupToolbar : 'Værktøjslinje',
170
+ popupMenuBar : 'Menulinje',
171
+ popupFullScreen : 'Fuld skærm (IE)',
172
+ popupScrollBars : 'Scrollbar',
173
+ popupDependent : 'Koblet/dependent (Netscape)',
174
+ popupLeft : 'Position fra venstre',
175
+ popupTop : 'Position fra toppen',
176
+ id : 'Id',
177
+ langDir : 'Tekstretning',
178
+ langDirLTR : 'Fra venstre mod højre (LTR)',
179
+ langDirRTL : 'Fra højre mod venstre (RTL)',
180
+ acccessKey : 'Genvejstast',
181
+ name : 'Navn',
182
+ langCode : 'Tekstretning',
183
+ tabIndex : 'Tabulator indeks',
184
+ advisoryTitle : 'Titel',
185
+ advisoryContentType : 'Indholdstype',
186
+ cssClasses : 'Typografiark',
187
+ charset : 'Tegnsæt',
188
+ styles : 'Typografi',
189
+ rel : 'Relationship', // MISSING
190
+ selectAnchor : 'Vælg et anker',
191
+ anchorName : 'Efter anker navn',
192
+ anchorId : 'Efter element Id',
193
+ emailAddress : 'E-mail adresse',
194
+ emailSubject : 'Emne',
195
+ emailBody : 'Besked',
196
+ noAnchors : '(Ingen bogmærker i dokumentet)',
197
+ noUrl : 'Indtast hyperlink URL!',
198
+ noEmail : 'Indtast e-mail adresse!'
199
+ },
200
+
201
+ // Anchor dialog
202
+ anchor :
203
+ {
204
+ toolbar : 'Indsæt/redigér bogmærke',
205
+ menu : 'Egenskaber for bogmærke',
206
+ title : 'Egenskaber for bogmærke',
207
+ name : 'Bogmærke navn',
208
+ errorName : 'Indtast bogmærke navn',
209
+ remove : 'Remove Anchor' // MISSING
210
+ },
211
+
212
+ // List style dialog
213
+ list:
214
+ {
215
+ numberedTitle : 'Numbered List Properties', // MISSING
216
+ bulletedTitle : 'Bulleted List Properties', // MISSING
217
+ type : 'Type', // MISSING
218
+ start : 'Start', // MISSING
219
+ validateStartNumber :'List start number must be a whole number.', // MISSING
220
+ circle : 'Circle', // MISSING
221
+ disc : 'Disc', // MISSING
222
+ square : 'Square', // MISSING
223
+ none : 'None', // MISSING
224
+ notset : '<not set>', // MISSING
225
+ armenian : 'Armenian numbering', // MISSING
226
+ georgian : 'Georgian numbering (an, ban, gan, etc.)', // MISSING
227
+ lowerRoman : 'Lower Roman (i, ii, iii, iv, v, etc.)', // MISSING
228
+ upperRoman : 'Upper Roman (I, II, III, IV, V, etc.)', // MISSING
229
+ lowerAlpha : 'Lower Alpha (a, b, c, d, e, etc.)', // MISSING
230
+ upperAlpha : 'Upper Alpha (A, B, C, D, E, etc.)', // MISSING
231
+ lowerGreek : 'Lower Greek (alpha, beta, gamma, etc.)', // MISSING
232
+ decimal : 'Decimal (1, 2, 3, etc.)', // MISSING
233
+ decimalLeadingZero : 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
234
+ },
235
+
236
+ // Find And Replace Dialog
237
+ findAndReplace :
238
+ {
239
+ title : 'Søg og erstat',
240
+ find : 'Søg',
241
+ replace : 'Erstat',
242
+ findWhat : 'Søg efter:',
243
+ replaceWith : 'Erstat med:',
244
+ notFoundMsg : 'Søgeteksten blev ikke fundet',
245
+ findOptions : 'Find Options', // MISSING
246
+ matchCase : 'Forskel på store og små bogstaver',
247
+ matchWord : 'Kun hele ord',
248
+ matchCyclic : 'Match cyklisk',
249
+ replaceAll : 'Erstat alle',
250
+ replaceSuccessMsg : '%1 forekomst(er) erstattet.'
251
+ },
252
+
253
+ // Table Dialog
254
+ table :
255
+ {
256
+ toolbar : 'Tabel',
257
+ title : 'Egenskaber for tabel',
258
+ menu : 'Egenskaber for tabel',
259
+ deleteTable : 'Slet tabel',
260
+ rows : 'Rækker',
261
+ columns : 'Kolonner',
262
+ border : 'Rammebredde',
263
+ widthPx : 'pixels',
264
+ widthPc : 'procent',
265
+ widthUnit : 'width unit', // MISSING
266
+ cellSpace : 'Celleafstand',
267
+ cellPad : 'Cellemargen',
268
+ caption : 'Titel',
269
+ summary : 'Resumé',
270
+ headers : 'Header',
271
+ headersNone : 'Ingen',
272
+ headersColumn : 'Første kolonne',
273
+ headersRow : 'Første række',
274
+ headersBoth : 'Begge',
275
+ invalidRows : 'Antallet af rækker skal være større end 0.',
276
+ invalidCols : 'Antallet af kolonner skal være større end 0.',
277
+ invalidBorder : 'Rammetykkelse skal være et tal.',
278
+ invalidWidth : 'Tabelbredde skal være et tal.',
279
+ invalidHeight : 'Tabelhøjde skal være et tal.',
280
+ invalidCellSpacing : 'Celleafstand skal være et tal.',
281
+ invalidCellPadding : 'Cellemargen skal være et tal.',
282
+
283
+ cell :
284
+ {
285
+ menu : 'Celle',
286
+ insertBefore : 'Indsæt celle før',
287
+ insertAfter : 'Indsæt celle efter',
288
+ deleteCell : 'Slet celle',
289
+ merge : 'Flet celler',
290
+ mergeRight : 'Flet til højre',
291
+ mergeDown : 'Flet nedad',
292
+ splitHorizontal : 'Del celle vandret',
293
+ splitVertical : 'Del celle lodret',
294
+ title : 'Celleegenskaber',
295
+ cellType : 'Celletype',
296
+ rowSpan : 'Række span (rows span)',
297
+ colSpan : 'Kolonne span (columns span)',
298
+ wordWrap : 'Tekstombrydning',
299
+ hAlign : 'Vandret justering',
300
+ vAlign : 'Lodret justering',
301
+ alignBaseline : 'Grundlinje',
302
+ bgColor : 'Baggrundsfarve',
303
+ borderColor : 'Rammefarve',
304
+ data : 'Data',
305
+ header : 'Header',
306
+ yes : 'Ja',
307
+ no : 'Nej',
308
+ invalidWidth : 'Cellebredde skal være et tal.',
309
+ invalidHeight : 'Cellehøjde skal være et tal.',
310
+ invalidRowSpan : 'Række span skal være et heltal.',
311
+ invalidColSpan : 'Kolonne span skal være et heltal.',
312
+ chooseColor : 'Choose' // MISSING
313
+ },
314
+
315
+ row :
316
+ {
317
+ menu : 'Række',
318
+ insertBefore : 'Indsæt række før',
319
+ insertAfter : 'Indsæt række efter',
320
+ deleteRow : 'Slet række'
321
+ },
322
+
323
+ column :
324
+ {
325
+ menu : 'Kolonne',
326
+ insertBefore : 'Indsæt kolonne før',
327
+ insertAfter : 'Indsæt kolonne efter',
328
+ deleteColumn : 'Slet kolonne'
329
+ }
330
+ },
331
+
332
+ // Button Dialog.
333
+ button :
334
+ {
335
+ title : 'Egenskaber for knap',
336
+ text : 'Tekst',
337
+ type : 'Type',
338
+ typeBtn : 'Knap',
339
+ typeSbm : 'Send',
340
+ typeRst : 'Nulstil'
341
+ },
342
+
343
+ // Checkbox and Radio Button Dialogs.
344
+ checkboxAndRadio :
345
+ {
346
+ checkboxTitle : 'Egenskaber for afkrydsningsfelt',
347
+ radioTitle : 'Egenskaber for alternativknap',
348
+ value : 'Værdi',
349
+ selected : 'Valgt'
350
+ },
351
+
352
+ // Form Dialog.
353
+ form :
354
+ {
355
+ title : 'Egenskaber for formular',
356
+ menu : 'Egenskaber for formular',
357
+ action : 'Handling',
358
+ method : 'Metode',
359
+ encoding : 'Kodning (encoding)'
360
+ },
361
+
362
+ // Select Field Dialog.
363
+ select :
364
+ {
365
+ title : 'Egenskaber for liste',
366
+ selectInfo : 'Generelt',
367
+ opAvail : 'Valgmuligheder',
368
+ value : 'Værdi',
369
+ size : 'Størrelse',
370
+ lines : 'Linjer',
371
+ chkMulti : 'Tillad flere valg',
372
+ opText : 'Tekst',
373
+ opValue : 'Værdi',
374
+ btnAdd : 'Tilføj',
375
+ btnModify : 'Redigér',
376
+ btnUp : 'Op',
377
+ btnDown : 'Ned',
378
+ btnSetValue : 'Sæt som valgt',
379
+ btnDelete : 'Slet'
380
+ },
381
+
382
+ // Textarea Dialog.
383
+ textarea :
384
+ {
385
+ title : 'Egenskaber for tekstboks',
386
+ cols : 'Kolonner',
387
+ rows : 'Rækker'
388
+ },
389
+
390
+ // Text Field Dialog.
391
+ textfield :
392
+ {
393
+ title : 'Egenskaber for tekstfelt',
394
+ name : 'Navn',
395
+ value : 'Værdi',
396
+ charWidth : 'Bredde (tegn)',
397
+ maxChars : 'Max. antal tegn',
398
+ type : 'Type',
399
+ typeText : 'Tekst',
400
+ typePass : 'Adgangskode'
401
+ },
402
+
403
+ // Hidden Field Dialog.
404
+ hidden :
405
+ {
406
+ title : 'Egenskaber for skjult felt',
407
+ name : 'Navn',
408
+ value : 'Værdi'
409
+ },
410
+
411
+ // Image Dialog.
412
+ image :
413
+ {
414
+ title : 'Egenskaber for billede',
415
+ titleButton : 'Egenskaber for billedknap',
416
+ menu : 'Egenskaber for billede',
417
+ infoTab : 'Generelt',
418
+ btnUpload : 'Upload',
419
+ upload : 'Upload',
420
+ alt : 'Alternativ tekst',
421
+ lockRatio : 'Lås størrelsesforhold',
422
+ resetSize : 'Nulstil størrelse',
423
+ border : 'Ramme',
424
+ hSpace : 'Vandret margen',
425
+ vSpace : 'Lodret margen',
426
+ alertUrl : 'Indtast stien til billedet',
427
+ linkTab : 'Hyperlink',
428
+ button2Img : 'Vil du lave billedknappen om til et almindeligt billede?',
429
+ img2Button : 'Vil du lave billedet om til en billedknap?',
430
+ urlMissing : 'Image source URL is missing.', // MISSING
431
+ validateBorder : 'Border must be a whole number.', // MISSING
432
+ validateHSpace : 'HSpace must be a whole number.', // MISSING
433
+ validateVSpace : 'VSpace must be a whole number.' // MISSING
434
+ },
435
+
436
+ // Flash Dialog
437
+ flash :
438
+ {
439
+ properties : 'Egenskaber for Flash',
440
+ propertiesTab : 'Egenskaber',
441
+ title : 'Egenskaber for Flash',
442
+ chkPlay : 'Automatisk afspilning',
443
+ chkLoop : 'Gentagelse',
444
+ chkMenu : 'Vis Flash menu',
445
+ chkFull : 'Tillad fuldskærm',
446
+ scale : 'Skalér',
447
+ scaleAll : 'Vis alt',
448
+ scaleNoBorder : 'Ingen ramme',
449
+ scaleFit : 'Tilpas størrelse',
450
+ access : 'Script adgang',
451
+ accessAlways : 'Altid',
452
+ accessSameDomain: 'Samme domæne',
453
+ accessNever : 'Aldrig',
454
+ alignAbsBottom : 'Absolut nederst',
455
+ alignAbsMiddle : 'Absolut centreret',
456
+ alignBaseline : 'Grundlinje',
457
+ alignTextTop : 'Toppen af teksten',
458
+ quality : 'Kvalitet',
459
+ qualityBest : 'Bedste',
460
+ qualityHigh : 'Høj',
461
+ qualityAutoHigh : 'Auto høj',
462
+ qualityMedium : 'Medium',
463
+ qualityAutoLow : 'Auto lav',
464
+ qualityLow : 'Lav',
465
+ windowModeWindow: 'Vindue',
466
+ windowModeOpaque: 'Gennemsigtig (opaque)',
467
+ windowModeTransparent : 'Transparent',
468
+ windowMode : 'Vinduestilstand',
469
+ flashvars : 'Variabler for Flash',
470
+ bgcolor : 'Baggrundsfarve',
471
+ hSpace : 'Vandret margen',
472
+ vSpace : 'Lodret margen',
473
+ validateSrc : 'Indtast hyperlink URL!',
474
+ validateHSpace : 'Vandret margen skal være et tal.',
475
+ validateVSpace : 'Lodret margen skal være et tal.'
476
+ },
477
+
478
+ // Speller Pages Dialog
479
+ spellCheck :
480
+ {
481
+ toolbar : 'Stavekontrol',
482
+ title : 'Stavekontrol',
483
+ notAvailable : 'Stavekontrol er desværre ikke tilgængelig.',
484
+ errorLoading : 'Fejl ved indlæsning af host: %s.',
485
+ notInDic : 'Ikke i ordbogen',
486
+ changeTo : 'Forslag',
487
+ btnIgnore : 'Ignorér',
488
+ btnIgnoreAll : 'Ignorér alle',
489
+ btnReplace : 'Erstat',
490
+ btnReplaceAll : 'Erstat alle',
491
+ btnUndo : 'Tilbage',
492
+ noSuggestions : '(ingen forslag)',
493
+ progress : 'Stavekontrollen arbejder...',
494
+ noMispell : 'Stavekontrol færdig: Ingen fejl fundet',
495
+ noChanges : 'Stavekontrol færdig: Ingen ord ændret',
496
+ oneChange : 'Stavekontrol færdig: Et ord ændret',
497
+ manyChanges : 'Stavekontrol færdig: %1 ord ændret',
498
+ ieSpellDownload : 'Stavekontrol ikke installeret. Vil du installere den nu?'
499
+ },
500
+
501
+ smiley :
502
+ {
503
+ toolbar : 'Smiley',
504
+ title : 'Vælg smiley',
505
+ options : 'Smiley Options' // MISSING
506
+ },
507
+
508
+ elementsPath :
509
+ {
510
+ eleLabel : 'Elements path', // MISSING
511
+ eleTitle : '%1 element'
512
+ },
513
+
514
+ numberedlist : 'Talopstilling',
515
+ bulletedlist : 'Punktopstilling',
516
+ indent : 'Forøg indrykning',
517
+ outdent : 'Formindsk indrykning',
518
+
519
+ justify :
520
+ {
521
+ left : 'Venstrestillet',
522
+ center : 'Centreret',
523
+ right : 'Højrestillet',
524
+ block : 'Lige margener'
525
+ },
526
+
527
+ blockquote : 'Blokcitat',
528
+
529
+ clipboard :
530
+ {
531
+ title : 'Indsæt',
532
+ cutError : 'Din browsers sikkerhedsindstillinger tillader ikke editoren at få automatisk adgang til udklipsholderen.<br><br>Brug i stedet tastaturet til at klippe teksten (Ctrl/Cmd+X).',
533
+ copyError : 'Din browsers sikkerhedsindstillinger tillader ikke editoren at få automatisk adgang til udklipsholderen.<br><br>Brug i stedet tastaturet til at kopiere teksten (Ctrl/Cmd+C).',
534
+ pasteMsg : 'Indsæt i feltet herunder (<STRONG>Ctrl/Cmd+V</STRONG>) og klik på <STRONG>OK</STRONG>.',
535
+ securityMsg : 'Din browsers sikkerhedsindstillinger tillader ikke editoren at få automatisk adgang til udklipsholderen.<br><br>Du skal indsætte udklipsholderens indhold i dette vindue igen.',
536
+ pasteArea : 'Paste Area' // MISSING
537
+ },
538
+
539
+ pastefromword :
540
+ {
541
+ confirmCleanup : 'Den tekst du forsøger at indsætte ser ud til at komme fra Word. Vil du rense teksten før den indsættes?',
542
+ toolbar : 'Indsæt fra Word',
543
+ title : 'Indsæt fra Word',
544
+ error : 'It was not possible to clean up the pasted data due to an internal error' // MISSING
545
+ },
546
+
547
+ pasteText :
548
+ {
549
+ button : 'Indsæt som ikke-formateret tekst',
550
+ title : 'Indsæt som ikke-formateret tekst'
551
+ },
552
+
553
+ templates :
554
+ {
555
+ button : 'Skabeloner',
556
+ title : 'Indholdsskabeloner',
557
+ options : 'Template Options', // MISSING
558
+ insertOption : 'Erstat det faktiske indhold',
559
+ selectPromptMsg : 'Vælg den skabelon, som skal åbnes i editoren (nuværende indhold vil blive overskrevet):',
560
+ emptyListMsg : '(Der er ikke defineret nogen skabelon)'
561
+ },
562
+
563
+ showBlocks : 'Vis afsnitsmærker',
564
+
565
+ stylesCombo :
566
+ {
567
+ label : 'Typografi',
568
+ panelTitle : 'Formatting Styles', // MISSING
569
+ panelTitle1 : 'Block typografi',
570
+ panelTitle2 : 'Inline typografi',
571
+ panelTitle3 : 'Object typografi'
572
+ },
573
+
574
+ format :
575
+ {
576
+ label : 'Formatering',
577
+ panelTitle : 'Formatering',
578
+
579
+ tag_p : 'Normal',
580
+ tag_pre : 'Formateret',
581
+ tag_address : 'Adresse',
582
+ tag_h1 : 'Overskrift 1',
583
+ tag_h2 : 'Overskrift 2',
584
+ tag_h3 : 'Overskrift 3',
585
+ tag_h4 : 'Overskrift 4',
586
+ tag_h5 : 'Overskrift 5',
587
+ tag_h6 : 'Overskrift 6',
588
+ tag_div : 'Normal (DIV)'
589
+ },
590
+
591
+ div :
592
+ {
593
+ title : 'Create Div Container', // MISSING
594
+ toolbar : 'Create Div Container', // MISSING
595
+ cssClassInputLabel : 'Stylesheet Classes', // MISSING
596
+ styleSelectLabel : 'Style', // MISSING
597
+ IdInputLabel : 'Id', // MISSING
598
+ languageCodeInputLabel : ' Language Code', // MISSING
599
+ inlineStyleInputLabel : 'Inline Style', // MISSING
600
+ advisoryTitleInputLabel : 'Advisory Title', // MISSING
601
+ langDirLabel : 'Language Direction', // MISSING
602
+ langDirLTRLabel : 'Left to Right (LTR)', // MISSING
603
+ langDirRTLLabel : 'Right to Left (RTL)', // MISSING
604
+ edit : 'Edit Div', // MISSING
605
+ remove : 'Remove Div' // MISSING
606
+ },
607
+
608
+ iframe :
609
+ {
610
+ title : 'IFrame Properties', // MISSING
611
+ toolbar : 'IFrame', // MISSING
612
+ noUrl : 'Please type the iframe URL', // MISSING
613
+ scrolling : 'Enable scrollbars', // MISSING
614
+ border : 'Show frame border' // MISSING
615
+ },
616
+
617
+ font :
618
+ {
619
+ label : 'Skrifttype',
620
+ voiceLabel : 'Skrifttype',
621
+ panelTitle : 'Skrifttype'
622
+ },
623
+
624
+ fontSize :
625
+ {
626
+ label : 'Skriftstørrelse',
627
+ voiceLabel : 'Skriftstørrelse',
628
+ panelTitle : 'Skriftstørrelse'
629
+ },
630
+
631
+ colorButton :
632
+ {
633
+ textColorTitle : 'Tekstfarve',
634
+ bgColorTitle : 'Baggrundsfarve',
635
+ panelTitle : 'Colors', // MISSING
636
+ auto : 'Automatisk',
637
+ more : 'Flere farver...'
638
+ },
639
+
640
+ colors :
641
+ {
642
+ '000' : 'Black', // MISSING
643
+ '800000' : 'Maroon', // MISSING
644
+ '8B4513' : 'Saddle Brown', // MISSING
645
+ '2F4F4F' : 'Dark Slate Gray', // MISSING
646
+ '008080' : 'Teal', // MISSING
647
+ '000080' : 'Navy', // MISSING
648
+ '4B0082' : 'Indigo', // MISSING
649
+ '696969' : 'Dark Gray', // MISSING
650
+ 'B22222' : 'Fire Brick', // MISSING
651
+ 'A52A2A' : 'Brown', // MISSING
652
+ 'DAA520' : 'Golden Rod', // MISSING
653
+ '006400' : 'Dark Green', // MISSING
654
+ '40E0D0' : 'Turquoise', // MISSING
655
+ '0000CD' : 'Medium Blue', // MISSING
656
+ '800080' : 'Purple', // MISSING
657
+ '808080' : 'Gray', // MISSING
658
+ 'F00' : 'Red', // MISSING
659
+ 'FF8C00' : 'Dark Orange', // MISSING
660
+ 'FFD700' : 'Gold', // MISSING
661
+ '008000' : 'Green', // MISSING
662
+ '0FF' : 'Cyan', // MISSING
663
+ '00F' : 'Blue', // MISSING
664
+ 'EE82EE' : 'Violet', // MISSING
665
+ 'A9A9A9' : 'Dim Gray', // MISSING
666
+ 'FFA07A' : 'Light Salmon', // MISSING
667
+ 'FFA500' : 'Orange', // MISSING
668
+ 'FFFF00' : 'Yellow', // MISSING
669
+ '00FF00' : 'Lime', // MISSING
670
+ 'AFEEEE' : 'Pale Turquoise', // MISSING
671
+ 'ADD8E6' : 'Light Blue', // MISSING
672
+ 'DDA0DD' : 'Plum', // MISSING
673
+ 'D3D3D3' : 'Light Grey', // MISSING
674
+ 'FFF0F5' : 'Lavender Blush', // MISSING
675
+ 'FAEBD7' : 'Antique White', // MISSING
676
+ 'FFFFE0' : 'Light Yellow', // MISSING
677
+ 'F0FFF0' : 'Honeydew', // MISSING
678
+ 'F0FFFF' : 'Azure', // MISSING
679
+ 'F0F8FF' : 'Alice Blue', // MISSING
680
+ 'E6E6FA' : 'Lavender', // MISSING
681
+ 'FFF' : 'White' // MISSING
682
+ },
683
+
684
+ scayt :
685
+ {
686
+ title : 'Stavekontrol mens du skriver',
687
+ opera_title : 'Not supported by Opera', // MISSING
688
+ enable : 'Aktivér SCAYT',
689
+ disable : 'Deaktivér SCAYT',
690
+ about : 'Om SCAYT',
691
+ toggle : 'Skift/toggle SCAYT',
692
+ options : 'Indstillinger',
693
+ langs : 'Sprog',
694
+ moreSuggestions : 'Flere forslag',
695
+ ignore : 'Ignorér',
696
+ ignoreAll : 'Ignorér alle',
697
+ addWord : 'Tilføj ord',
698
+ emptyDic : 'Ordbogsnavn må ikke være tom.',
699
+
700
+ optionsTab : 'Indstillinger',
701
+ allCaps : 'Ignore All-Caps Words', // MISSING
702
+ ignoreDomainNames : 'Ignore Domain Names', // MISSING
703
+ mixedCase : 'Ignore Words with Mixed Case', // MISSING
704
+ mixedWithDigits : 'Ignore Words with Numbers', // MISSING
705
+
706
+ languagesTab : 'Sprog',
707
+
708
+ dictionariesTab : 'Ordbøger',
709
+ dic_field_name : 'Dictionary name', // MISSING
710
+ dic_create : 'Create', // MISSING
711
+ dic_restore : 'Restore', // MISSING
712
+ dic_delete : 'Delete', // MISSING
713
+ dic_rename : 'Rename', // MISSING
714
+ dic_info : 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type its name and click the Restore button.', // MISSING
715
+
716
+ aboutTab : 'Om'
717
+ },
718
+
719
+ about :
720
+ {
721
+ title : 'Om CKEditor',
722
+ dlgTitle : 'Om CKEditor',
723
+ help : 'Check $1 for help.', // MISSING
724
+ userGuide : 'CKEditor User\'s Guide', // MISSING
725
+ moreInfo : 'For informationer omkring licens, se venligst vores hjemmeside (på engelsk):',
726
+ copy : 'Copyright &copy; $1. Alle rettigheder forbeholdes.'
727
+ },
728
+
729
+ maximize : 'Maximér',
730
+ minimize : 'Minimize', // MISSING
731
+
732
+ fakeobjects :
733
+ {
734
+ anchor : 'Anker',
735
+ flash : 'Flashanimation',
736
+ iframe : 'IFrame', // MISSING
737
+ hiddenfield : 'Hidden Field', // MISSING
738
+ unknown : 'Ukendt objekt'
739
+ },
740
+
741
+ resize : 'Træk for at skalere',
742
+
743
+ colordialog :
744
+ {
745
+ title : 'Select color', // MISSING
746
+ options : 'Color Options', // MISSING
747
+ highlight : 'Highlight', // MISSING
748
+ selected : 'Selected Color', // MISSING
749
+ clear : 'Clear' // MISSING
750
+ },
751
+
752
+ toolbarCollapse : 'Collapse Toolbar', // MISSING
753
+ toolbarExpand : 'Expand Toolbar', // MISSING
754
+
755
+ toolbarGroups :
756
+ {
757
+ document : 'Document', // MISSING
758
+ clipboard : 'Clipboard/Undo', // MISSING
759
+ editing : 'Editing', // MISSING
760
+ forms : 'Forms', // MISSING
761
+ basicstyles : 'Basic Styles', // MISSING
762
+ paragraph : 'Paragraph', // MISSING
763
+ links : 'Links', // MISSING
764
+ insert : 'Insert', // MISSING
765
+ styles : 'Styles', // MISSING
766
+ colors : 'Colors', // MISSING
767
+ tools : 'Tools' // MISSING
768
+ },
769
+
770
+ bidi :
771
+ {
772
+ ltr : 'Text direction from left to right', // MISSING
773
+ rtl : 'Text direction from right to left' // MISSING
774
+ },
775
+
776
+ docprops :
777
+ {
778
+ label : 'Egenskaber for dokument',
779
+ title : 'Egenskaber for dokument',
780
+ design : 'Design', // MISSING
781
+ meta : 'Meta Tags', // MISSING
782
+ chooseColor : 'Choose', // MISSING
783
+ other : '<anden>',
784
+ docTitle : 'Sidetitel',
785
+ charset : 'Tegnsæt kode',
786
+ charsetOther : 'Anden tegnsæt kode',
787
+ charsetASCII : 'ASCII', // MISSING
788
+ charsetCE : 'Centraleuropæisk',
789
+ charsetCT : 'Traditionel kinesisk (Big5)',
790
+ charsetCR : 'Kyrillisk',
791
+ charsetGR : 'Græsk',
792
+ charsetJP : 'Japansk',
793
+ charsetKR : 'Koreansk',
794
+ charsetTR : 'Tyrkisk',
795
+ charsetUN : 'Unicode (UTF-8)', // MISSING
796
+ charsetWE : 'Vesteuropæisk',
797
+ docType : 'Dokumenttype kategori',
798
+ docTypeOther : 'Anden dokumenttype kategori',
799
+ xhtmlDec : 'Inkludere XHTML deklartion',
800
+ bgColor : 'Baggrundsfarve',
801
+ bgImage : 'Baggrundsbillede URL',
802
+ bgFixed : 'Fastlåst baggrund',
803
+ txtColor : 'Tekstfarve',
804
+ margin : 'Sidemargen',
805
+ marginTop : 'Øverst',
806
+ marginLeft : 'Venstre',
807
+ marginRight : 'Højre',
808
+ marginBottom : 'Nederst',
809
+ metaKeywords : 'Dokument index nøgleord (kommasepareret)',
810
+ metaDescription : 'Dokument beskrivelse',
811
+ metaAuthor : 'Forfatter',
812
+ metaCopyright : 'Copyright', // MISSING
813
+ previewHtml : '<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>' // MISSING
814
+ }
815
+ };