ckeditor 3.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (634) hide show
  1. data/CHANGELOG +15 -0
  2. data/README.textile +225 -0
  3. data/Rakefile +44 -0
  4. data/TODO +3 -0
  5. data/app/controllers/ckeditor_controller.rb +87 -0
  6. data/app/helpers/ckeditor_helper.rb +37 -0
  7. data/app/views/ckeditor/_file.html.erb +15 -0
  8. data/app/views/ckeditor/_image.html.erb +15 -0
  9. data/app/views/ckeditor/_swfupload.html.erb +51 -0
  10. data/app/views/ckeditor/files.html.erb +91 -0
  11. data/app/views/ckeditor/images.html.erb +91 -0
  12. data/app/views/layouts/ckeditor.html.erb +30 -0
  13. data/config/routes.rb +5 -0
  14. data/examples/migrations/attachment_fu/create_assets.rb +30 -0
  15. data/examples/migrations/paperclip/create_assets.rb +25 -0
  16. data/examples/models/attachment_fu/asset.rb +45 -0
  17. data/examples/models/attachment_fu/attachment_file.rb +46 -0
  18. data/examples/models/attachment_fu/picture.rb +46 -0
  19. data/examples/models/paperclip/asset.rb +65 -0
  20. data/examples/models/paperclip/attachment_file.rb +22 -0
  21. data/examples/models/paperclip/picture.rb +39 -0
  22. data/examples/s3/attachment_file.rb +23 -0
  23. data/examples/s3/picture.rb +41 -0
  24. data/lib/ckeditor.rb +57 -0
  25. data/lib/ckeditor/engine.rb +10 -0
  26. data/lib/ckeditor/file_storage.rb +178 -0
  27. data/lib/ckeditor/form_builder.rb +22 -0
  28. data/lib/ckeditor/utils.rb +15 -0
  29. data/lib/ckeditor/version.rb +11 -0
  30. data/lib/ckeditor/view_helper.rb +119 -0
  31. data/lib/generators/ckeditor_generator.rb +23 -0
  32. data/lib/generators/templates/ckeditor.rb +51 -0
  33. data/lib/generators/templates/ckeditor.yml +28 -0
  34. data/lib/generators/templates/ckeditor/CHANGES.html +642 -0
  35. data/lib/generators/templates/ckeditor/INSTALL.html +92 -0
  36. data/lib/generators/templates/ckeditor/LICENSE.html +1334 -0
  37. data/lib/generators/templates/ckeditor/_samples/ajax.html +87 -0
  38. data/lib/generators/templates/ckeditor/_samples/api.html +152 -0
  39. data/lib/generators/templates/ckeditor/_samples/api_dialog.html +181 -0
  40. data/lib/generators/templates/ckeditor/_samples/api_dialog/my_dialog.js +28 -0
  41. data/lib/generators/templates/ckeditor/_samples/assets/output_xhtml.css +204 -0
  42. data/lib/generators/templates/ckeditor/_samples/divreplace.html +137 -0
  43. data/lib/generators/templates/ckeditor/_samples/enterkey.html +88 -0
  44. data/lib/generators/templates/ckeditor/_samples/fullpage.html +62 -0
  45. data/lib/generators/templates/ckeditor/_samples/index.html +54 -0
  46. data/lib/generators/templates/ckeditor/_samples/jqueryadapter.html +73 -0
  47. data/lib/generators/templates/ckeditor/_samples/output_xhtml.html +159 -0
  48. data/lib/generators/templates/ckeditor/_samples/php/advanced.php +93 -0
  49. data/lib/generators/templates/ckeditor/_samples/php/events.php +130 -0
  50. data/lib/generators/templates/ckeditor/_samples/php/replace.php +63 -0
  51. data/lib/generators/templates/ckeditor/_samples/php/replaceall.php +68 -0
  52. data/lib/generators/templates/ckeditor/_samples/php/standalone.php +64 -0
  53. data/lib/generators/templates/ckeditor/_samples/replacebyclass.html +49 -0
  54. data/lib/generators/templates/ckeditor/_samples/replacebycode.html +80 -0
  55. data/lib/generators/templates/ckeditor/_samples/sample.css +81 -0
  56. data/lib/generators/templates/ckeditor/_samples/sample.js +65 -0
  57. data/lib/generators/templates/ckeditor/_samples/sample_posteddata.php +59 -0
  58. data/lib/generators/templates/ckeditor/_samples/sharedspaces.html +131 -0
  59. data/lib/generators/templates/ckeditor/_samples/skins.html +83 -0
  60. data/lib/generators/templates/ckeditor/_samples/ui_color.html +87 -0
  61. data/lib/generators/templates/ckeditor/_samples/ui_languages.html +103 -0
  62. data/lib/generators/templates/ckeditor/_source/adapters/jquery.js +297 -0
  63. data/lib/generators/templates/ckeditor/_source/core/_bootstrap.js +91 -0
  64. data/lib/generators/templates/ckeditor/_source/core/ajax.js +143 -0
  65. data/lib/generators/templates/ckeditor/_source/core/ckeditor.js +103 -0
  66. data/lib/generators/templates/ckeditor/_source/core/ckeditor_base.js +193 -0
  67. data/lib/generators/templates/ckeditor/_source/core/ckeditor_basic.js +242 -0
  68. data/lib/generators/templates/ckeditor/_source/core/command.js +73 -0
  69. data/lib/generators/templates/ckeditor/_source/core/commanddefinition.js +102 -0
  70. data/lib/generators/templates/ckeditor/_source/core/config.js +319 -0
  71. data/lib/generators/templates/ckeditor/_source/core/dataprocessor.js +66 -0
  72. data/lib/generators/templates/ckeditor/_source/core/dom.js +21 -0
  73. data/lib/generators/templates/ckeditor/_source/core/dom/comment.js +32 -0
  74. data/lib/generators/templates/ckeditor/_source/core/dom/document.js +224 -0
  75. data/lib/generators/templates/ckeditor/_source/core/dom/documentfragment.js +49 -0
  76. data/lib/generators/templates/ckeditor/_source/core/dom/domobject.js +246 -0
  77. data/lib/generators/templates/ckeditor/_source/core/dom/element.js +1441 -0
  78. data/lib/generators/templates/ckeditor/_source/core/dom/elementpath.js +104 -0
  79. data/lib/generators/templates/ckeditor/_source/core/dom/event.js +142 -0
  80. data/lib/generators/templates/ckeditor/_source/core/dom/node.js +662 -0
  81. data/lib/generators/templates/ckeditor/_source/core/dom/nodelist.js +23 -0
  82. data/lib/generators/templates/ckeditor/_source/core/dom/range.js +1836 -0
  83. data/lib/generators/templates/ckeditor/_source/core/dom/text.js +123 -0
  84. data/lib/generators/templates/ckeditor/_source/core/dom/walker.js +451 -0
  85. data/lib/generators/templates/ckeditor/_source/core/dom/window.js +96 -0
  86. data/lib/generators/templates/ckeditor/_source/core/dtd.js +233 -0
  87. data/lib/generators/templates/ckeditor/_source/core/editor.js +756 -0
  88. data/lib/generators/templates/ckeditor/_source/core/editor_basic.js +182 -0
  89. data/lib/generators/templates/ckeditor/_source/core/env.js +222 -0
  90. data/lib/generators/templates/ckeditor/_source/core/event.js +336 -0
  91. data/lib/generators/templates/ckeditor/_source/core/eventInfo.js +120 -0
  92. data/lib/generators/templates/ckeditor/_source/core/focusmanager.js +137 -0
  93. data/lib/generators/templates/ckeditor/_source/core/htmlparser.js +212 -0
  94. data/lib/generators/templates/ckeditor/_source/core/htmlparser/basicwriter.js +145 -0
  95. data/lib/generators/templates/ckeditor/_source/core/htmlparser/cdata.js +43 -0
  96. data/lib/generators/templates/ckeditor/_source/core/htmlparser/comment.js +60 -0
  97. data/lib/generators/templates/ckeditor/_source/core/htmlparser/element.js +240 -0
  98. data/lib/generators/templates/ckeditor/_source/core/htmlparser/filter.js +262 -0
  99. data/lib/generators/templates/ckeditor/_source/core/htmlparser/fragment.js +496 -0
  100. data/lib/generators/templates/ckeditor/_source/core/htmlparser/text.js +55 -0
  101. data/lib/generators/templates/ckeditor/_source/core/imagecacher.js +59 -0
  102. data/lib/generators/templates/ckeditor/_source/core/lang.js +152 -0
  103. data/lib/generators/templates/ckeditor/_source/core/loader.js +242 -0
  104. data/lib/generators/templates/ckeditor/_source/core/plugindefinition.js +66 -0
  105. data/lib/generators/templates/ckeditor/_source/core/plugins.js +85 -0
  106. data/lib/generators/templates/ckeditor/_source/core/resourcemanager.js +238 -0
  107. data/lib/generators/templates/ckeditor/_source/core/scriptloader.js +198 -0
  108. data/lib/generators/templates/ckeditor/_source/core/skins.js +204 -0
  109. data/lib/generators/templates/ckeditor/_source/core/themes.js +19 -0
  110. data/lib/generators/templates/ckeditor/_source/core/tools.js +698 -0
  111. data/lib/generators/templates/ckeditor/_source/core/ui.js +116 -0
  112. data/lib/generators/templates/ckeditor/_source/core/xml.js +165 -0
  113. data/lib/generators/templates/ckeditor/_source/lang/_languages.js +83 -0
  114. data/lib/generators/templates/ckeditor/_source/lang/_translationstatus.txt +60 -0
  115. data/lib/generators/templates/ckeditor/_source/lang/af.js +708 -0
  116. data/lib/generators/templates/ckeditor/_source/lang/ar.js +708 -0
  117. data/lib/generators/templates/ckeditor/_source/lang/bg.js +708 -0
  118. data/lib/generators/templates/ckeditor/_source/lang/bn.js +708 -0
  119. data/lib/generators/templates/ckeditor/_source/lang/bs.js +708 -0
  120. data/lib/generators/templates/ckeditor/_source/lang/ca.js +708 -0
  121. data/lib/generators/templates/ckeditor/_source/lang/cs.js +708 -0
  122. data/lib/generators/templates/ckeditor/_source/lang/cy.js +708 -0
  123. data/lib/generators/templates/ckeditor/_source/lang/da.js +708 -0
  124. data/lib/generators/templates/ckeditor/_source/lang/de.js +708 -0
  125. data/lib/generators/templates/ckeditor/_source/lang/el.js +708 -0
  126. data/lib/generators/templates/ckeditor/_source/lang/en-au.js +708 -0
  127. data/lib/generators/templates/ckeditor/_source/lang/en-ca.js +708 -0
  128. data/lib/generators/templates/ckeditor/_source/lang/en-gb.js +708 -0
  129. data/lib/generators/templates/ckeditor/_source/lang/en.js +708 -0
  130. data/lib/generators/templates/ckeditor/_source/lang/eo.js +708 -0
  131. data/lib/generators/templates/ckeditor/_source/lang/es.js +708 -0
  132. data/lib/generators/templates/ckeditor/_source/lang/et.js +708 -0
  133. data/lib/generators/templates/ckeditor/_source/lang/eu.js +708 -0
  134. data/lib/generators/templates/ckeditor/_source/lang/fa.js +708 -0
  135. data/lib/generators/templates/ckeditor/_source/lang/fi.js +708 -0
  136. data/lib/generators/templates/ckeditor/_source/lang/fo.js +708 -0
  137. data/lib/generators/templates/ckeditor/_source/lang/fr-ca.js +708 -0
  138. data/lib/generators/templates/ckeditor/_source/lang/fr.js +708 -0
  139. data/lib/generators/templates/ckeditor/_source/lang/gl.js +708 -0
  140. data/lib/generators/templates/ckeditor/_source/lang/gu.js +708 -0
  141. data/lib/generators/templates/ckeditor/_source/lang/he.js +708 -0
  142. data/lib/generators/templates/ckeditor/_source/lang/hi.js +708 -0
  143. data/lib/generators/templates/ckeditor/_source/lang/hr.js +708 -0
  144. data/lib/generators/templates/ckeditor/_source/lang/hu.js +708 -0
  145. data/lib/generators/templates/ckeditor/_source/lang/is.js +708 -0
  146. data/lib/generators/templates/ckeditor/_source/lang/it.js +708 -0
  147. data/lib/generators/templates/ckeditor/_source/lang/ja.js +708 -0
  148. data/lib/generators/templates/ckeditor/_source/lang/km.js +708 -0
  149. data/lib/generators/templates/ckeditor/_source/lang/ko.js +708 -0
  150. data/lib/generators/templates/ckeditor/_source/lang/lt.js +708 -0
  151. data/lib/generators/templates/ckeditor/_source/lang/lv.js +708 -0
  152. data/lib/generators/templates/ckeditor/_source/lang/mn.js +708 -0
  153. data/lib/generators/templates/ckeditor/_source/lang/ms.js +708 -0
  154. data/lib/generators/templates/ckeditor/_source/lang/nb.js +708 -0
  155. data/lib/generators/templates/ckeditor/_source/lang/nl.js +708 -0
  156. data/lib/generators/templates/ckeditor/_source/lang/no.js +708 -0
  157. data/lib/generators/templates/ckeditor/_source/lang/pl.js +708 -0
  158. data/lib/generators/templates/ckeditor/_source/lang/pt-br.js +708 -0
  159. data/lib/generators/templates/ckeditor/_source/lang/pt.js +708 -0
  160. data/lib/generators/templates/ckeditor/_source/lang/ro.js +708 -0
  161. data/lib/generators/templates/ckeditor/_source/lang/ru.js +708 -0
  162. data/lib/generators/templates/ckeditor/_source/lang/sk.js +708 -0
  163. data/lib/generators/templates/ckeditor/_source/lang/sl.js +708 -0
  164. data/lib/generators/templates/ckeditor/_source/lang/sr-latn.js +708 -0
  165. data/lib/generators/templates/ckeditor/_source/lang/sr.js +708 -0
  166. data/lib/generators/templates/ckeditor/_source/lang/sv.js +708 -0
  167. data/lib/generators/templates/ckeditor/_source/lang/th.js +708 -0
  168. data/lib/generators/templates/ckeditor/_source/lang/tr.js +708 -0
  169. data/lib/generators/templates/ckeditor/_source/lang/uk.js +708 -0
  170. data/lib/generators/templates/ckeditor/_source/lang/vi.js +708 -0
  171. data/lib/generators/templates/ckeditor/_source/lang/zh-cn.js +708 -0
  172. data/lib/generators/templates/ckeditor/_source/lang/zh.js +708 -0
  173. data/lib/generators/templates/ckeditor/_source/plugins/a11yhelp/dialogs/a11yhelp.js +211 -0
  174. data/lib/generators/templates/ckeditor/_source/plugins/a11yhelp/lang/en.js +108 -0
  175. data/lib/generators/templates/ckeditor/_source/plugins/a11yhelp/plugin.js +46 -0
  176. data/lib/generators/templates/ckeditor/_source/plugins/about/dialogs/about.js +73 -0
  177. data/lib/generators/templates/ckeditor/_source/plugins/about/dialogs/logo_ckeditor.png +0 -0
  178. data/lib/generators/templates/ckeditor/_source/plugins/about/plugin.js +23 -0
  179. data/lib/generators/templates/ckeditor/_source/plugins/attachment/dialogs/attachment.js +384 -0
  180. data/lib/generators/templates/ckeditor/_source/plugins/attachment/images/attachment.png +0 -0
  181. data/lib/generators/templates/ckeditor/_source/plugins/attachment/lang/en.js +10 -0
  182. data/lib/generators/templates/ckeditor/_source/plugins/attachment/lang/ru.js +10 -0
  183. data/lib/generators/templates/ckeditor/_source/plugins/attachment/lang/uk.js +10 -0
  184. data/lib/generators/templates/ckeditor/_source/plugins/attachment/plugin.js +44 -0
  185. data/lib/generators/templates/ckeditor/_source/plugins/basicstyles/plugin.js +101 -0
  186. data/lib/generators/templates/ckeditor/_source/plugins/blockquote/plugin.js +301 -0
  187. data/lib/generators/templates/ckeditor/_source/plugins/button/plugin.js +272 -0
  188. data/lib/generators/templates/ckeditor/_source/plugins/clipboard/dialogs/paste.js +186 -0
  189. data/lib/generators/templates/ckeditor/_source/plugins/clipboard/plugin.js +379 -0
  190. data/lib/generators/templates/ckeditor/_source/plugins/colorbutton/plugin.js +247 -0
  191. data/lib/generators/templates/ckeditor/_source/plugins/colordialog/dialogs/colordialog.js +191 -0
  192. data/lib/generators/templates/ckeditor/_source/plugins/colordialog/plugin.js +13 -0
  193. data/lib/generators/templates/ckeditor/_source/plugins/contextmenu/plugin.js +274 -0
  194. data/lib/generators/templates/ckeditor/_source/plugins/dialog/dialogDefinition.js +315 -0
  195. data/lib/generators/templates/ckeditor/_source/plugins/dialog/plugin.js +2913 -0
  196. data/lib/generators/templates/ckeditor/_source/plugins/dialogui/plugin.js +1408 -0
  197. data/lib/generators/templates/ckeditor/_source/plugins/div/dialogs/div.js +529 -0
  198. data/lib/generators/templates/ckeditor/_source/plugins/div/plugin.js +121 -0
  199. data/lib/generators/templates/ckeditor/_source/plugins/domiterator/plugin.js +355 -0
  200. data/lib/generators/templates/ckeditor/_source/plugins/editingblock/plugin.js +224 -0
  201. data/lib/generators/templates/ckeditor/_source/plugins/elementspath/plugin.js +203 -0
  202. data/lib/generators/templates/ckeditor/_source/plugins/embed/dialogs/embed.js +65 -0
  203. data/lib/generators/templates/ckeditor/_source/plugins/embed/images/embed.png +0 -0
  204. data/lib/generators/templates/ckeditor/_source/plugins/embed/lang/en.js +9 -0
  205. data/lib/generators/templates/ckeditor/_source/plugins/embed/lang/ru.js +9 -0
  206. data/lib/generators/templates/ckeditor/_source/plugins/embed/lang/uk.js +9 -0
  207. data/lib/generators/templates/ckeditor/_source/plugins/embed/plugin.js +43 -0
  208. data/lib/generators/templates/ckeditor/_source/plugins/enterkey/plugin.js +339 -0
  209. data/lib/generators/templates/ckeditor/_source/plugins/entities/plugin.js +200 -0
  210. data/lib/generators/templates/ckeditor/_source/plugins/fakeobjects/plugin.js +120 -0
  211. data/lib/generators/templates/ckeditor/_source/plugins/filebrowser/plugin.js +479 -0
  212. data/lib/generators/templates/ckeditor/_source/plugins/find/dialogs/find.js +867 -0
  213. data/lib/generators/templates/ckeditor/_source/plugins/find/plugin.js +46 -0
  214. data/lib/generators/templates/ckeditor/_source/plugins/flash/dialogs/flash.js +698 -0
  215. data/lib/generators/templates/ckeditor/_source/plugins/flash/images/placeholder.png +0 -0
  216. data/lib/generators/templates/ckeditor/_source/plugins/flash/plugin.js +165 -0
  217. data/lib/generators/templates/ckeditor/_source/plugins/floatpanel/plugin.js +376 -0
  218. data/lib/generators/templates/ckeditor/_source/plugins/font/plugin.js +234 -0
  219. data/lib/generators/templates/ckeditor/_source/plugins/format/plugin.js +193 -0
  220. data/lib/generators/templates/ckeditor/_source/plugins/forms/dialogs/button.js +135 -0
  221. data/lib/generators/templates/ckeditor/_source/plugins/forms/dialogs/checkbox.js +155 -0
  222. data/lib/generators/templates/ckeditor/_source/plugins/forms/dialogs/form.js +177 -0
  223. data/lib/generators/templates/ckeditor/_source/plugins/forms/dialogs/hiddenfield.js +91 -0
  224. data/lib/generators/templates/ckeditor/_source/plugins/forms/dialogs/radio.js +135 -0
  225. data/lib/generators/templates/ckeditor/_source/plugins/forms/dialogs/select.js +556 -0
  226. data/lib/generators/templates/ckeditor/_source/plugins/forms/dialogs/textarea.js +114 -0
  227. data/lib/generators/templates/ckeditor/_source/plugins/forms/dialogs/textfield.js +193 -0
  228. data/lib/generators/templates/ckeditor/_source/plugins/forms/plugin.js +217 -0
  229. data/lib/generators/templates/ckeditor/_source/plugins/horizontalrule/plugin.js +36 -0
  230. data/lib/generators/templates/ckeditor/_source/plugins/htmldataprocessor/plugin.js +463 -0
  231. data/lib/generators/templates/ckeditor/_source/plugins/htmlwriter/plugin.js +314 -0
  232. data/lib/generators/templates/ckeditor/_source/plugins/iframedialog/plugin.js +136 -0
  233. data/lib/generators/templates/ckeditor/_source/plugins/image/dialogs/image.js +1380 -0
  234. data/lib/generators/templates/ckeditor/_source/plugins/image/plugin.js +73 -0
  235. data/lib/generators/templates/ckeditor/_source/plugins/indent/plugin.js +381 -0
  236. data/lib/generators/templates/ckeditor/_source/plugins/justify/plugin.js +168 -0
  237. data/lib/generators/templates/ckeditor/_source/plugins/keystrokes/plugin.js +229 -0
  238. data/lib/generators/templates/ckeditor/_source/plugins/link/dialogs/anchor.js +99 -0
  239. data/lib/generators/templates/ckeditor/_source/plugins/link/dialogs/link.js +1413 -0
  240. data/lib/generators/templates/ckeditor/_source/plugins/link/images/anchor.gif +0 -0
  241. data/lib/generators/templates/ckeditor/_source/plugins/link/plugin.js +219 -0
  242. data/lib/generators/templates/ckeditor/_source/plugins/list/plugin.js +645 -0
  243. data/lib/generators/templates/ckeditor/_source/plugins/listblock/plugin.js +257 -0
  244. data/lib/generators/templates/ckeditor/_source/plugins/maximize/plugin.js +305 -0
  245. data/lib/generators/templates/ckeditor/_source/plugins/menu/plugin.js +406 -0
  246. data/lib/generators/templates/ckeditor/_source/plugins/menubutton/plugin.js +94 -0
  247. data/lib/generators/templates/ckeditor/_source/plugins/newpage/plugin.js +54 -0
  248. data/lib/generators/templates/ckeditor/_source/plugins/pagebreak/images/pagebreak.gif +0 -0
  249. data/lib/generators/templates/ckeditor/_source/plugins/pagebreak/plugin.js +103 -0
  250. data/lib/generators/templates/ckeditor/_source/plugins/panel/plugin.js +397 -0
  251. data/lib/generators/templates/ckeditor/_source/plugins/panelbutton/plugin.js +147 -0
  252. data/lib/generators/templates/ckeditor/_source/plugins/pastefromword/filter/default.js +1179 -0
  253. data/lib/generators/templates/ckeditor/_source/plugins/pastefromword/plugin.js +120 -0
  254. data/lib/generators/templates/ckeditor/_source/plugins/pastetext/dialogs/pastetext.js +77 -0
  255. data/lib/generators/templates/ckeditor/_source/plugins/pastetext/plugin.js +162 -0
  256. data/lib/generators/templates/ckeditor/_source/plugins/popup/plugin.js +62 -0
  257. data/lib/generators/templates/ckeditor/_source/plugins/preview/plugin.js +108 -0
  258. data/lib/generators/templates/ckeditor/_source/plugins/print/plugin.js +41 -0
  259. data/lib/generators/templates/ckeditor/_source/plugins/removeformat/plugin.js +132 -0
  260. data/lib/generators/templates/ckeditor/_source/plugins/resize/plugin.js +117 -0
  261. data/lib/generators/templates/ckeditor/_source/plugins/richcombo/plugin.js +370 -0
  262. data/lib/generators/templates/ckeditor/_source/plugins/save/plugin.js +55 -0
  263. data/lib/generators/templates/ckeditor/_source/plugins/scayt/dialogs/options.js +533 -0
  264. data/lib/generators/templates/ckeditor/_source/plugins/scayt/dialogs/toolbar.css +71 -0
  265. data/lib/generators/templates/ckeditor/_source/plugins/scayt/plugin.js +767 -0
  266. data/lib/generators/templates/ckeditor/_source/plugins/selection/plugin.js +1145 -0
  267. data/lib/generators/templates/ckeditor/_source/plugins/showblocks/images/block_address.png +0 -0
  268. data/lib/generators/templates/ckeditor/_source/plugins/showblocks/images/block_blockquote.png +0 -0
  269. data/lib/generators/templates/ckeditor/_source/plugins/showblocks/images/block_div.png +0 -0
  270. data/lib/generators/templates/ckeditor/_source/plugins/showblocks/images/block_h1.png +0 -0
  271. data/lib/generators/templates/ckeditor/_source/plugins/showblocks/images/block_h2.png +0 -0
  272. data/lib/generators/templates/ckeditor/_source/plugins/showblocks/images/block_h3.png +0 -0
  273. data/lib/generators/templates/ckeditor/_source/plugins/showblocks/images/block_h4.png +0 -0
  274. data/lib/generators/templates/ckeditor/_source/plugins/showblocks/images/block_h5.png +0 -0
  275. data/lib/generators/templates/ckeditor/_source/plugins/showblocks/images/block_h6.png +0 -0
  276. data/lib/generators/templates/ckeditor/_source/plugins/showblocks/images/block_p.png +0 -0
  277. data/lib/generators/templates/ckeditor/_source/plugins/showblocks/images/block_pre.png +0 -0
  278. data/lib/generators/templates/ckeditor/_source/plugins/showblocks/plugin.js +154 -0
  279. data/lib/generators/templates/ckeditor/_source/plugins/showborders/plugin.js +167 -0
  280. data/lib/generators/templates/ckeditor/_source/plugins/smiley/dialogs/smiley.js +216 -0
  281. data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/angel_smile.gif +0 -0
  282. data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/angry_smile.gif +0 -0
  283. data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/broken_heart.gif +0 -0
  284. data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/confused_smile.gif +0 -0
  285. data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/cry_smile.gif +0 -0
  286. data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/devil_smile.gif +0 -0
  287. data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/embaressed_smile.gif +0 -0
  288. data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/envelope.gif +0 -0
  289. data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/heart.gif +0 -0
  290. data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/kiss.gif +0 -0
  291. data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/lightbulb.gif +0 -0
  292. data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/omg_smile.gif +0 -0
  293. data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/regular_smile.gif +0 -0
  294. data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/sad_smile.gif +0 -0
  295. data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/shades_smile.gif +0 -0
  296. data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/teeth_smile.gif +0 -0
  297. data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/thumbs_down.gif +0 -0
  298. data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/thumbs_up.gif +0 -0
  299. data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/tounge_smile.gif +0 -0
  300. data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/whatchutalkingabout_smile.gif +0 -0
  301. data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/wink_smile.gif +0 -0
  302. data/lib/generators/templates/ckeditor/_source/plugins/smiley/plugin.js +84 -0
  303. data/lib/generators/templates/ckeditor/_source/plugins/sourcearea/plugin.js +206 -0
  304. data/lib/generators/templates/ckeditor/_source/plugins/specialchar/dialogs/specialchar.js +403 -0
  305. data/lib/generators/templates/ckeditor/_source/plugins/specialchar/plugin.js +29 -0
  306. data/lib/generators/templates/ckeditor/_source/plugins/styles/plugin.js +1442 -0
  307. data/lib/generators/templates/ckeditor/_source/plugins/styles/styles/default.js +88 -0
  308. data/lib/generators/templates/ckeditor/_source/plugins/stylescombo/plugin.js +204 -0
  309. data/lib/generators/templates/ckeditor/_source/plugins/tab/plugin.js +261 -0
  310. data/lib/generators/templates/ckeditor/_source/plugins/table/dialogs/table.js +591 -0
  311. data/lib/generators/templates/ckeditor/_source/plugins/table/plugin.js +70 -0
  312. data/lib/generators/templates/ckeditor/_source/plugins/tabletools/dialogs/tableCell.js +528 -0
  313. data/lib/generators/templates/ckeditor/_source/plugins/tabletools/plugin.js +1068 -0
  314. data/lib/generators/templates/ckeditor/_source/plugins/templates/dialogs/templates.js +230 -0
  315. data/lib/generators/templates/ckeditor/_source/plugins/templates/plugin.js +100 -0
  316. data/lib/generators/templates/ckeditor/_source/plugins/templates/templates/default.js +94 -0
  317. data/lib/generators/templates/ckeditor/_source/plugins/templates/templates/images/template1.gif +0 -0
  318. data/lib/generators/templates/ckeditor/_source/plugins/templates/templates/images/template2.gif +0 -0
  319. data/lib/generators/templates/ckeditor/_source/plugins/templates/templates/images/template3.gif +0 -0
  320. data/lib/generators/templates/ckeditor/_source/plugins/toolbar/plugin.js +479 -0
  321. data/lib/generators/templates/ckeditor/_source/plugins/uicolor/dialogs/uicolor.js +204 -0
  322. data/lib/generators/templates/ckeditor/_source/plugins/uicolor/lang/en.js +15 -0
  323. data/lib/generators/templates/ckeditor/_source/plugins/uicolor/plugin.js +37 -0
  324. data/lib/generators/templates/ckeditor/_source/plugins/uicolor/uicolor.gif +0 -0
  325. data/lib/generators/templates/ckeditor/_source/plugins/uicolor/yui/assets/hue_bg.png +0 -0
  326. data/lib/generators/templates/ckeditor/_source/plugins/uicolor/yui/assets/hue_thumb.png +0 -0
  327. data/lib/generators/templates/ckeditor/_source/plugins/uicolor/yui/assets/picker_mask.png +0 -0
  328. data/lib/generators/templates/ckeditor/_source/plugins/uicolor/yui/assets/picker_thumb.png +0 -0
  329. data/lib/generators/templates/ckeditor/_source/plugins/uicolor/yui/assets/yui.css +15 -0
  330. data/lib/generators/templates/ckeditor/_source/plugins/uicolor/yui/yui.js +71 -0
  331. data/lib/generators/templates/ckeditor/_source/plugins/undo/plugin.js +519 -0
  332. data/lib/generators/templates/ckeditor/_source/plugins/wsc/dialogs/ciframe.html +49 -0
  333. data/lib/generators/templates/ckeditor/_source/plugins/wsc/dialogs/tmpFrameset.html +52 -0
  334. data/lib/generators/templates/ckeditor/_source/plugins/wsc/dialogs/wsc.css +83 -0
  335. data/lib/generators/templates/ckeditor/_source/plugins/wsc/dialogs/wsc.js +176 -0
  336. data/lib/generators/templates/ckeditor/_source/plugins/wsc/plugin.js +33 -0
  337. data/lib/generators/templates/ckeditor/_source/plugins/wysiwygarea/plugin.js +882 -0
  338. data/lib/generators/templates/ckeditor/_source/skins/kama/dialog.css +835 -0
  339. data/lib/generators/templates/ckeditor/_source/skins/kama/editor.css +25 -0
  340. data/lib/generators/templates/ckeditor/_source/skins/kama/elementspath.css +72 -0
  341. data/lib/generators/templates/ckeditor/_source/skins/kama/icons.css +326 -0
  342. data/lib/generators/templates/ckeditor/_source/skins/kama/icons.png +0 -0
  343. data/lib/generators/templates/ckeditor/_source/skins/kama/images/dialog_sides.gif +0 -0
  344. data/lib/generators/templates/ckeditor/_source/skins/kama/images/dialog_sides.png +0 -0
  345. data/lib/generators/templates/ckeditor/_source/skins/kama/images/dialog_sides_rtl.png +0 -0
  346. data/lib/generators/templates/ckeditor/_source/skins/kama/images/mini.gif +0 -0
  347. data/lib/generators/templates/ckeditor/_source/skins/kama/images/noimage.png +0 -0
  348. data/lib/generators/templates/ckeditor/_source/skins/kama/images/sprites.png +0 -0
  349. data/lib/generators/templates/ckeditor/_source/skins/kama/images/sprites_ie6.png +0 -0
  350. data/lib/generators/templates/ckeditor/_source/skins/kama/images/toolbar_start.gif +0 -0
  351. data/lib/generators/templates/ckeditor/_source/skins/kama/mainui.css +183 -0
  352. data/lib/generators/templates/ckeditor/_source/skins/kama/menu.css +197 -0
  353. data/lib/generators/templates/ckeditor/_source/skins/kama/panel.css +216 -0
  354. data/lib/generators/templates/ckeditor/_source/skins/kama/presets.css +49 -0
  355. data/lib/generators/templates/ckeditor/_source/skins/kama/reset.css +78 -0
  356. data/lib/generators/templates/ckeditor/_source/skins/kama/richcombo.css +270 -0
  357. data/lib/generators/templates/ckeditor/_source/skins/kama/skin.js +268 -0
  358. data/lib/generators/templates/ckeditor/_source/skins/kama/templates.css +84 -0
  359. data/lib/generators/templates/ckeditor/_source/skins/kama/toolbar.css +409 -0
  360. data/lib/generators/templates/ckeditor/_source/skins/office2003/dialog.css +738 -0
  361. data/lib/generators/templates/ckeditor/_source/skins/office2003/editor.css +25 -0
  362. data/lib/generators/templates/ckeditor/_source/skins/office2003/elementspath.css +73 -0
  363. data/lib/generators/templates/ckeditor/_source/skins/office2003/icons.css +324 -0
  364. data/lib/generators/templates/ckeditor/_source/skins/office2003/icons.png +0 -0
  365. data/lib/generators/templates/ckeditor/_source/skins/office2003/images/dialog_sides.gif +0 -0
  366. data/lib/generators/templates/ckeditor/_source/skins/office2003/images/dialog_sides.png +0 -0
  367. data/lib/generators/templates/ckeditor/_source/skins/office2003/images/dialog_sides_rtl.png +0 -0
  368. data/lib/generators/templates/ckeditor/_source/skins/office2003/images/mini.gif +0 -0
  369. data/lib/generators/templates/ckeditor/_source/skins/office2003/images/noimage.png +0 -0
  370. data/lib/generators/templates/ckeditor/_source/skins/office2003/images/sprites.png +0 -0
  371. data/lib/generators/templates/ckeditor/_source/skins/office2003/images/sprites_ie6.png +0 -0
  372. data/lib/generators/templates/ckeditor/_source/skins/office2003/mainui.css +133 -0
  373. data/lib/generators/templates/ckeditor/_source/skins/office2003/menu.css +194 -0
  374. data/lib/generators/templates/ckeditor/_source/skins/office2003/panel.css +211 -0
  375. data/lib/generators/templates/ckeditor/_source/skins/office2003/presets.css +49 -0
  376. data/lib/generators/templates/ckeditor/_source/skins/office2003/reset.css +78 -0
  377. data/lib/generators/templates/ckeditor/_source/skins/office2003/richcombo.css +289 -0
  378. data/lib/generators/templates/ckeditor/_source/skins/office2003/skin.js +81 -0
  379. data/lib/generators/templates/ckeditor/_source/skins/office2003/templates.css +81 -0
  380. data/lib/generators/templates/ckeditor/_source/skins/office2003/toolbar.css +463 -0
  381. data/lib/generators/templates/ckeditor/_source/skins/v2/dialog.css +753 -0
  382. data/lib/generators/templates/ckeditor/_source/skins/v2/editor.css +25 -0
  383. data/lib/generators/templates/ckeditor/_source/skins/v2/elementspath.css +73 -0
  384. data/lib/generators/templates/ckeditor/_source/skins/v2/icons.css +324 -0
  385. data/lib/generators/templates/ckeditor/_source/skins/v2/icons.png +0 -0
  386. data/lib/generators/templates/ckeditor/_source/skins/v2/images/dialog_sides.gif +0 -0
  387. data/lib/generators/templates/ckeditor/_source/skins/v2/images/dialog_sides.png +0 -0
  388. data/lib/generators/templates/ckeditor/_source/skins/v2/images/dialog_sides_rtl.png +0 -0
  389. data/lib/generators/templates/ckeditor/_source/skins/v2/images/mini.gif +0 -0
  390. data/lib/generators/templates/ckeditor/_source/skins/v2/images/noimage.png +0 -0
  391. data/lib/generators/templates/ckeditor/_source/skins/v2/images/sprites.png +0 -0
  392. data/lib/generators/templates/ckeditor/_source/skins/v2/images/sprites_ie6.png +0 -0
  393. data/lib/generators/templates/ckeditor/_source/skins/v2/images/toolbar_start.gif +0 -0
  394. data/lib/generators/templates/ckeditor/_source/skins/v2/mainui.css +142 -0
  395. data/lib/generators/templates/ckeditor/_source/skins/v2/menu.css +196 -0
  396. data/lib/generators/templates/ckeditor/_source/skins/v2/panel.css +211 -0
  397. data/lib/generators/templates/ckeditor/_source/skins/v2/presets.css +50 -0
  398. data/lib/generators/templates/ckeditor/_source/skins/v2/reset.css +78 -0
  399. data/lib/generators/templates/ckeditor/_source/skins/v2/richcombo.css +289 -0
  400. data/lib/generators/templates/ckeditor/_source/skins/v2/skin.js +77 -0
  401. data/lib/generators/templates/ckeditor/_source/skins/v2/templates.css +81 -0
  402. data/lib/generators/templates/ckeditor/_source/skins/v2/toolbar.css +415 -0
  403. data/lib/generators/templates/ckeditor/_source/themes/default/theme.js +335 -0
  404. data/lib/generators/templates/ckeditor/adapters/jquery.js +6 -0
  405. data/lib/generators/templates/ckeditor/ckeditor.js +124 -0
  406. data/lib/generators/templates/ckeditor/ckeditor.pack +205 -0
  407. data/lib/generators/templates/ckeditor/ckeditor_basic.js +8 -0
  408. data/lib/generators/templates/ckeditor/ckeditor_basic_source.js +20 -0
  409. data/lib/generators/templates/ckeditor/ckeditor_source.js +25 -0
  410. data/lib/generators/templates/ckeditor/config.js +42 -0
  411. data/lib/generators/templates/ckeditor/contents.css +35 -0
  412. data/lib/generators/templates/ckeditor/css/ckfinder.css +299 -0
  413. data/lib/generators/templates/ckeditor/css/fck_dialog.css +119 -0
  414. data/lib/generators/templates/ckeditor/css/fck_editor.css +448 -0
  415. data/lib/generators/templates/ckeditor/css/swfupload.css +94 -0
  416. data/lib/generators/templates/ckeditor/images/add.gif +0 -0
  417. data/lib/generators/templates/ckeditor/images/cancelbutton.gif +0 -0
  418. data/lib/generators/templates/ckeditor/images/ckfnothumb.gif +0 -0
  419. data/lib/generators/templates/ckeditor/images/doc.gif +0 -0
  420. data/lib/generators/templates/ckeditor/images/mp3.gif +0 -0
  421. data/lib/generators/templates/ckeditor/images/pdf.gif +0 -0
  422. data/lib/generators/templates/ckeditor/images/rar.gif +0 -0
  423. data/lib/generators/templates/ckeditor/images/refresh.gif +0 -0
  424. data/lib/generators/templates/ckeditor/images/select_files.png +0 -0
  425. data/lib/generators/templates/ckeditor/images/spacer.gif +0 -0
  426. data/lib/generators/templates/ckeditor/images/swf.gif +0 -0
  427. data/lib/generators/templates/ckeditor/images/toolbar.start.gif +0 -0
  428. data/lib/generators/templates/ckeditor/images/xls.gif +0 -0
  429. data/lib/generators/templates/ckeditor/lang/_languages.js +6 -0
  430. data/lib/generators/templates/ckeditor/lang/_translationstatus.txt +60 -0
  431. data/lib/generators/templates/ckeditor/lang/af.js +6 -0
  432. data/lib/generators/templates/ckeditor/lang/ar.js +6 -0
  433. data/lib/generators/templates/ckeditor/lang/bg.js +6 -0
  434. data/lib/generators/templates/ckeditor/lang/bn.js +6 -0
  435. data/lib/generators/templates/ckeditor/lang/bs.js +6 -0
  436. data/lib/generators/templates/ckeditor/lang/ca.js +6 -0
  437. data/lib/generators/templates/ckeditor/lang/cs.js +6 -0
  438. data/lib/generators/templates/ckeditor/lang/cy.js +6 -0
  439. data/lib/generators/templates/ckeditor/lang/da.js +6 -0
  440. data/lib/generators/templates/ckeditor/lang/de.js +6 -0
  441. data/lib/generators/templates/ckeditor/lang/el.js +6 -0
  442. data/lib/generators/templates/ckeditor/lang/en-au.js +6 -0
  443. data/lib/generators/templates/ckeditor/lang/en-ca.js +6 -0
  444. data/lib/generators/templates/ckeditor/lang/en-gb.js +6 -0
  445. data/lib/generators/templates/ckeditor/lang/en.js +6 -0
  446. data/lib/generators/templates/ckeditor/lang/eo.js +6 -0
  447. data/lib/generators/templates/ckeditor/lang/es.js +6 -0
  448. data/lib/generators/templates/ckeditor/lang/et.js +6 -0
  449. data/lib/generators/templates/ckeditor/lang/eu.js +6 -0
  450. data/lib/generators/templates/ckeditor/lang/fa.js +6 -0
  451. data/lib/generators/templates/ckeditor/lang/fi.js +6 -0
  452. data/lib/generators/templates/ckeditor/lang/fo.js +6 -0
  453. data/lib/generators/templates/ckeditor/lang/fr-ca.js +6 -0
  454. data/lib/generators/templates/ckeditor/lang/fr.js +6 -0
  455. data/lib/generators/templates/ckeditor/lang/gl.js +6 -0
  456. data/lib/generators/templates/ckeditor/lang/gu.js +6 -0
  457. data/lib/generators/templates/ckeditor/lang/he.js +6 -0
  458. data/lib/generators/templates/ckeditor/lang/hi.js +6 -0
  459. data/lib/generators/templates/ckeditor/lang/hr.js +6 -0
  460. data/lib/generators/templates/ckeditor/lang/hu.js +6 -0
  461. data/lib/generators/templates/ckeditor/lang/is.js +6 -0
  462. data/lib/generators/templates/ckeditor/lang/it.js +6 -0
  463. data/lib/generators/templates/ckeditor/lang/ja.js +6 -0
  464. data/lib/generators/templates/ckeditor/lang/km.js +6 -0
  465. data/lib/generators/templates/ckeditor/lang/ko.js +6 -0
  466. data/lib/generators/templates/ckeditor/lang/lt.js +6 -0
  467. data/lib/generators/templates/ckeditor/lang/lv.js +6 -0
  468. data/lib/generators/templates/ckeditor/lang/mn.js +6 -0
  469. data/lib/generators/templates/ckeditor/lang/ms.js +6 -0
  470. data/lib/generators/templates/ckeditor/lang/nb.js +6 -0
  471. data/lib/generators/templates/ckeditor/lang/nl.js +6 -0
  472. data/lib/generators/templates/ckeditor/lang/no.js +6 -0
  473. data/lib/generators/templates/ckeditor/lang/pl.js +6 -0
  474. data/lib/generators/templates/ckeditor/lang/pt-br.js +6 -0
  475. data/lib/generators/templates/ckeditor/lang/pt.js +6 -0
  476. data/lib/generators/templates/ckeditor/lang/ro.js +6 -0
  477. data/lib/generators/templates/ckeditor/lang/ru.js +6 -0
  478. data/lib/generators/templates/ckeditor/lang/sk.js +6 -0
  479. data/lib/generators/templates/ckeditor/lang/sl.js +6 -0
  480. data/lib/generators/templates/ckeditor/lang/sr-latn.js +6 -0
  481. data/lib/generators/templates/ckeditor/lang/sr.js +6 -0
  482. data/lib/generators/templates/ckeditor/lang/sv.js +6 -0
  483. data/lib/generators/templates/ckeditor/lang/th.js +6 -0
  484. data/lib/generators/templates/ckeditor/lang/tr.js +6 -0
  485. data/lib/generators/templates/ckeditor/lang/uk.js +6 -0
  486. data/lib/generators/templates/ckeditor/lang/vi.js +6 -0
  487. data/lib/generators/templates/ckeditor/lang/zh-cn.js +6 -0
  488. data/lib/generators/templates/ckeditor/lang/zh.js +6 -0
  489. data/lib/generators/templates/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js +7 -0
  490. data/lib/generators/templates/ckeditor/plugins/a11yhelp/lang/en.js +6 -0
  491. data/lib/generators/templates/ckeditor/plugins/about/dialogs/about.js +6 -0
  492. data/lib/generators/templates/ckeditor/plugins/about/dialogs/logo_ckeditor.png +0 -0
  493. data/lib/generators/templates/ckeditor/plugins/attachment/dialogs/attachment.js +1 -0
  494. data/lib/generators/templates/ckeditor/plugins/attachment/images/attachment.png +0 -0
  495. data/lib/generators/templates/ckeditor/plugins/attachment/lang/en.js +1 -0
  496. data/lib/generators/templates/ckeditor/plugins/attachment/lang/ru.js +1 -0
  497. data/lib/generators/templates/ckeditor/plugins/attachment/lang/uk.js +1 -0
  498. data/lib/generators/templates/ckeditor/plugins/attachment/plugin.js +1 -0
  499. data/lib/generators/templates/ckeditor/plugins/clipboard/dialogs/paste.js +7 -0
  500. data/lib/generators/templates/ckeditor/plugins/colordialog/dialogs/colordialog.js +6 -0
  501. data/lib/generators/templates/ckeditor/plugins/dialog/dialogDefinition.js +4 -0
  502. data/lib/generators/templates/ckeditor/plugins/div/dialogs/div.js +7 -0
  503. data/lib/generators/templates/ckeditor/plugins/embed/dialogs/embed.js +1 -0
  504. data/lib/generators/templates/ckeditor/plugins/embed/images/embed.png +0 -0
  505. data/lib/generators/templates/ckeditor/plugins/embed/lang/en.js +1 -0
  506. data/lib/generators/templates/ckeditor/plugins/embed/lang/ru.js +1 -0
  507. data/lib/generators/templates/ckeditor/plugins/embed/lang/uk.js +1 -0
  508. data/lib/generators/templates/ckeditor/plugins/embed/plugin.js +1 -0
  509. data/lib/generators/templates/ckeditor/plugins/find/dialogs/find.js +9 -0
  510. data/lib/generators/templates/ckeditor/plugins/flash/dialogs/flash.js +9 -0
  511. data/lib/generators/templates/ckeditor/plugins/flash/images/placeholder.png +0 -0
  512. data/lib/generators/templates/ckeditor/plugins/forms/dialogs/button.js +6 -0
  513. data/lib/generators/templates/ckeditor/plugins/forms/dialogs/checkbox.js +6 -0
  514. data/lib/generators/templates/ckeditor/plugins/forms/dialogs/form.js +6 -0
  515. data/lib/generators/templates/ckeditor/plugins/forms/dialogs/hiddenfield.js +6 -0
  516. data/lib/generators/templates/ckeditor/plugins/forms/dialogs/radio.js +6 -0
  517. data/lib/generators/templates/ckeditor/plugins/forms/dialogs/select.js +9 -0
  518. data/lib/generators/templates/ckeditor/plugins/forms/dialogs/textarea.js +6 -0
  519. data/lib/generators/templates/ckeditor/plugins/forms/dialogs/textfield.js +6 -0
  520. data/lib/generators/templates/ckeditor/plugins/iframedialog/plugin.js +6 -0
  521. data/lib/generators/templates/ckeditor/plugins/image/dialogs/image.js +13 -0
  522. data/lib/generators/templates/ckeditor/plugins/link/dialogs/anchor.js +6 -0
  523. data/lib/generators/templates/ckeditor/plugins/link/dialogs/link.js +11 -0
  524. data/lib/generators/templates/ckeditor/plugins/link/images/anchor.gif +0 -0
  525. data/lib/generators/templates/ckeditor/plugins/pagebreak/images/pagebreak.gif +0 -0
  526. data/lib/generators/templates/ckeditor/plugins/pastefromword/filter/default.js +10 -0
  527. data/lib/generators/templates/ckeditor/plugins/pastetext/dialogs/pastetext.js +6 -0
  528. data/lib/generators/templates/ckeditor/plugins/scayt/dialogs/options.js +8 -0
  529. data/lib/generators/templates/ckeditor/plugins/scayt/dialogs/toolbar.css +6 -0
  530. data/lib/generators/templates/ckeditor/plugins/showblocks/images/block_address.png +0 -0
  531. data/lib/generators/templates/ckeditor/plugins/showblocks/images/block_blockquote.png +0 -0
  532. data/lib/generators/templates/ckeditor/plugins/showblocks/images/block_div.png +0 -0
  533. data/lib/generators/templates/ckeditor/plugins/showblocks/images/block_h1.png +0 -0
  534. data/lib/generators/templates/ckeditor/plugins/showblocks/images/block_h2.png +0 -0
  535. data/lib/generators/templates/ckeditor/plugins/showblocks/images/block_h3.png +0 -0
  536. data/lib/generators/templates/ckeditor/plugins/showblocks/images/block_h4.png +0 -0
  537. data/lib/generators/templates/ckeditor/plugins/showblocks/images/block_h5.png +0 -0
  538. data/lib/generators/templates/ckeditor/plugins/showblocks/images/block_h6.png +0 -0
  539. data/lib/generators/templates/ckeditor/plugins/showblocks/images/block_p.png +0 -0
  540. data/lib/generators/templates/ckeditor/plugins/showblocks/images/block_pre.png +0 -0
  541. data/lib/generators/templates/ckeditor/plugins/smiley/dialogs/smiley.js +7 -0
  542. data/lib/generators/templates/ckeditor/plugins/smiley/images/angel_smile.gif +0 -0
  543. data/lib/generators/templates/ckeditor/plugins/smiley/images/angry_smile.gif +0 -0
  544. data/lib/generators/templates/ckeditor/plugins/smiley/images/broken_heart.gif +0 -0
  545. data/lib/generators/templates/ckeditor/plugins/smiley/images/confused_smile.gif +0 -0
  546. data/lib/generators/templates/ckeditor/plugins/smiley/images/cry_smile.gif +0 -0
  547. data/lib/generators/templates/ckeditor/plugins/smiley/images/devil_smile.gif +0 -0
  548. data/lib/generators/templates/ckeditor/plugins/smiley/images/embaressed_smile.gif +0 -0
  549. data/lib/generators/templates/ckeditor/plugins/smiley/images/envelope.gif +0 -0
  550. data/lib/generators/templates/ckeditor/plugins/smiley/images/heart.gif +0 -0
  551. data/lib/generators/templates/ckeditor/plugins/smiley/images/kiss.gif +0 -0
  552. data/lib/generators/templates/ckeditor/plugins/smiley/images/lightbulb.gif +0 -0
  553. data/lib/generators/templates/ckeditor/plugins/smiley/images/omg_smile.gif +0 -0
  554. data/lib/generators/templates/ckeditor/plugins/smiley/images/regular_smile.gif +0 -0
  555. data/lib/generators/templates/ckeditor/plugins/smiley/images/sad_smile.gif +0 -0
  556. data/lib/generators/templates/ckeditor/plugins/smiley/images/shades_smile.gif +0 -0
  557. data/lib/generators/templates/ckeditor/plugins/smiley/images/teeth_smile.gif +0 -0
  558. data/lib/generators/templates/ckeditor/plugins/smiley/images/thumbs_down.gif +0 -0
  559. data/lib/generators/templates/ckeditor/plugins/smiley/images/thumbs_up.gif +0 -0
  560. data/lib/generators/templates/ckeditor/plugins/smiley/images/tounge_smile.gif +0 -0
  561. data/lib/generators/templates/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif +0 -0
  562. data/lib/generators/templates/ckeditor/plugins/smiley/images/wink_smile.gif +0 -0
  563. data/lib/generators/templates/ckeditor/plugins/specialchar/dialogs/specialchar.js +7 -0
  564. data/lib/generators/templates/ckeditor/plugins/styles/styles/default.js +6 -0
  565. data/lib/generators/templates/ckeditor/plugins/table/dialogs/table.js +9 -0
  566. data/lib/generators/templates/ckeditor/plugins/tabletools/dialogs/tableCell.js +8 -0
  567. data/lib/generators/templates/ckeditor/plugins/templates/dialogs/templates.js +7 -0
  568. data/lib/generators/templates/ckeditor/plugins/templates/templates/default.js +6 -0
  569. data/lib/generators/templates/ckeditor/plugins/templates/templates/images/template1.gif +0 -0
  570. data/lib/generators/templates/ckeditor/plugins/templates/templates/images/template2.gif +0 -0
  571. data/lib/generators/templates/ckeditor/plugins/templates/templates/images/template3.gif +0 -0
  572. data/lib/generators/templates/ckeditor/plugins/uicolor/dialogs/uicolor.js +7 -0
  573. data/lib/generators/templates/ckeditor/plugins/uicolor/lang/en.js +6 -0
  574. data/lib/generators/templates/ckeditor/plugins/uicolor/plugin.js +6 -0
  575. data/lib/generators/templates/ckeditor/plugins/uicolor/uicolor.gif +0 -0
  576. data/lib/generators/templates/ckeditor/plugins/uicolor/yui/assets/hue_bg.png +0 -0
  577. data/lib/generators/templates/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png +0 -0
  578. data/lib/generators/templates/ckeditor/plugins/uicolor/yui/assets/picker_mask.png +0 -0
  579. data/lib/generators/templates/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png +0 -0
  580. data/lib/generators/templates/ckeditor/plugins/uicolor/yui/assets/yui.css +6 -0
  581. data/lib/generators/templates/ckeditor/plugins/uicolor/yui/yui.js +76 -0
  582. data/lib/generators/templates/ckeditor/plugins/wsc/dialogs/ciframe.html +49 -0
  583. data/lib/generators/templates/ckeditor/plugins/wsc/dialogs/tmpFrameset.html +52 -0
  584. data/lib/generators/templates/ckeditor/plugins/wsc/dialogs/wsc.css +6 -0
  585. data/lib/generators/templates/ckeditor/plugins/wsc/dialogs/wsc.js +7 -0
  586. data/lib/generators/templates/ckeditor/skins/kama/dialog.css +9 -0
  587. data/lib/generators/templates/ckeditor/skins/kama/editor.css +12 -0
  588. data/lib/generators/templates/ckeditor/skins/kama/icons.png +0 -0
  589. data/lib/generators/templates/ckeditor/skins/kama/images/dialog_sides.gif +0 -0
  590. data/lib/generators/templates/ckeditor/skins/kama/images/dialog_sides.png +0 -0
  591. data/lib/generators/templates/ckeditor/skins/kama/images/dialog_sides_rtl.png +0 -0
  592. data/lib/generators/templates/ckeditor/skins/kama/images/mini.gif +0 -0
  593. data/lib/generators/templates/ckeditor/skins/kama/images/noimage.png +0 -0
  594. data/lib/generators/templates/ckeditor/skins/kama/images/sprites.png +0 -0
  595. data/lib/generators/templates/ckeditor/skins/kama/images/sprites_ie6.png +0 -0
  596. data/lib/generators/templates/ckeditor/skins/kama/images/toolbar_start.gif +0 -0
  597. data/lib/generators/templates/ckeditor/skins/kama/skin.js +7 -0
  598. data/lib/generators/templates/ckeditor/skins/kama/templates.css +6 -0
  599. data/lib/generators/templates/ckeditor/skins/office2003/dialog.css +9 -0
  600. data/lib/generators/templates/ckeditor/skins/office2003/editor.css +13 -0
  601. data/lib/generators/templates/ckeditor/skins/office2003/icons.png +0 -0
  602. data/lib/generators/templates/ckeditor/skins/office2003/images/dialog_sides.gif +0 -0
  603. data/lib/generators/templates/ckeditor/skins/office2003/images/dialog_sides.png +0 -0
  604. data/lib/generators/templates/ckeditor/skins/office2003/images/dialog_sides_rtl.png +0 -0
  605. data/lib/generators/templates/ckeditor/skins/office2003/images/mini.gif +0 -0
  606. data/lib/generators/templates/ckeditor/skins/office2003/images/noimage.png +0 -0
  607. data/lib/generators/templates/ckeditor/skins/office2003/images/sprites.png +0 -0
  608. data/lib/generators/templates/ckeditor/skins/office2003/images/sprites_ie6.png +0 -0
  609. data/lib/generators/templates/ckeditor/skins/office2003/skin.js +6 -0
  610. data/lib/generators/templates/ckeditor/skins/office2003/templates.css +6 -0
  611. data/lib/generators/templates/ckeditor/skins/v2/dialog.css +8 -0
  612. data/lib/generators/templates/ckeditor/skins/v2/editor.css +12 -0
  613. data/lib/generators/templates/ckeditor/skins/v2/icons.png +0 -0
  614. data/lib/generators/templates/ckeditor/skins/v2/images/dialog_sides.gif +0 -0
  615. data/lib/generators/templates/ckeditor/skins/v2/images/dialog_sides.png +0 -0
  616. data/lib/generators/templates/ckeditor/skins/v2/images/dialog_sides_rtl.png +0 -0
  617. data/lib/generators/templates/ckeditor/skins/v2/images/mini.gif +0 -0
  618. data/lib/generators/templates/ckeditor/skins/v2/images/noimage.png +0 -0
  619. data/lib/generators/templates/ckeditor/skins/v2/images/sprites.png +0 -0
  620. data/lib/generators/templates/ckeditor/skins/v2/images/sprites_ie6.png +0 -0
  621. data/lib/generators/templates/ckeditor/skins/v2/images/toolbar_start.gif +0 -0
  622. data/lib/generators/templates/ckeditor/skins/v2/skin.js +6 -0
  623. data/lib/generators/templates/ckeditor/skins/v2/templates.css +6 -0
  624. data/lib/generators/templates/ckeditor/swfupload/fileprogress.js +290 -0
  625. data/lib/generators/templates/ckeditor/swfupload/handlers.js +170 -0
  626. data/lib/generators/templates/ckeditor/swfupload/mootools-1.2.3-core-yc.js +356 -0
  627. data/lib/generators/templates/ckeditor/swfupload/querystring.js +40 -0
  628. data/lib/generators/templates/ckeditor/swfupload/swfupload.js +980 -0
  629. data/lib/generators/templates/ckeditor/swfupload/swfupload.queue.js +98 -0
  630. data/lib/generators/templates/ckeditor/swfupload/swfupload.swf +0 -0
  631. data/lib/generators/templates/ckeditor/swfupload/swfupload.swfobject.js +111 -0
  632. data/lib/generators/templates/ckeditor/themes/default/theme.js +8 -0
  633. data/lib/tasks/ckeditor_tasks.rake +3 -0
  634. metadata +694 -0
@@ -0,0 +1,708 @@
1
+ /*
2
+ Copyright (c) 2003-2010, 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
+ * Russian language.
9
+ */
10
+
11
+ /**#@+
12
+ @type String
13
+ @example
14
+ */
15
+
16
+ /**
17
+ * Constains the dictionary of language entries.
18
+ * @namespace
19
+ */
20
+ CKEDITOR.lang['ru'] =
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
+ toolbar : 'Toolbar', // MISSING
38
+ editor : 'Rich Text Editor', // MISSING
39
+
40
+ // Toolbar buttons without dialogs.
41
+ source : 'Источник',
42
+ newPage : 'Новая страница',
43
+ save : 'Сохранить',
44
+ preview : 'Предварительный просмотр',
45
+ cut : 'Вырезать',
46
+ copy : 'Копировать',
47
+ paste : 'Вставить',
48
+ print : 'Печать',
49
+ underline : 'Подчеркнутый',
50
+ bold : 'Жирный',
51
+ italic : 'Курсив',
52
+ selectAll : 'Выделить все',
53
+ removeFormat : 'Убрать форматирование',
54
+ strike : 'Зачеркнутый',
55
+ subscript : 'Подстрочный индекс',
56
+ superscript : 'Надстрочный индекс',
57
+ horizontalrule : 'Вставить горизонтальную линию',
58
+ pagebreak : 'Вставить разрыв страницы',
59
+ unlink : 'Убрать ссылку',
60
+ undo : 'Отменить',
61
+ redo : 'Повторить',
62
+
63
+ // Common messages and labels.
64
+ common :
65
+ {
66
+ browseServer : 'Просмотреть на сервере',
67
+ url : 'URL',
68
+ protocol : 'Протокол',
69
+ upload : 'Закачать',
70
+ uploadSubmit : 'Послать на сервер',
71
+ image : 'Изображение',
72
+ flash : 'Flash',
73
+ form : 'Форма',
74
+ checkbox : 'Флаговая кнопка',
75
+ radio : 'Кнопка выбора',
76
+ textField : 'Текстовое поле',
77
+ textarea : 'Текстовая область',
78
+ hiddenField : 'Скрытое поле',
79
+ button : 'Кнопка',
80
+ select : 'Список',
81
+ imageButton : 'Кнопка с изображением',
82
+ notSet : '<не определено>',
83
+ id : 'Идентификатор',
84
+ name : 'Имя',
85
+ langDir : 'Направление языка',
86
+ langDirLtr : 'Слева на право (LTR)',
87
+ langDirRtl : 'Справа на лево (RTL)',
88
+ langCode : 'Язык',
89
+ longDescr : 'Длинное описание URL',
90
+ cssClass : 'Класс CSS',
91
+ advisoryTitle : 'Заголовок',
92
+ cssStyle : 'Стиль CSS',
93
+ ok : 'ОК',
94
+ cancel : 'Отмена',
95
+ close : 'Close', // MISSING
96
+ preview : 'Preview', // MISSING
97
+ generalTab : 'Информация',
98
+ advancedTab : 'Расширенный',
99
+ validateNumberFailed : 'Это значение не является числом.',
100
+ confirmNewPage : 'Все несохраненные изменения будут утеряны. Вы уверены, что хотите перейти на другую страницу?',
101
+ confirmCancel : 'Некоторые опции были изменены. Вы уверены, что хотите закрыть диалог?',
102
+ options : 'Options', // MISSING
103
+ target : 'Target', // MISSING
104
+ targetNew : 'New Window (_blank)', // MISSING
105
+ targetTop : 'Topmost Window (_top)', // MISSING
106
+ targetSelf : 'Same Window (_self)', // MISSING
107
+ targetParent : 'Parent Window (_parent)', // MISSING
108
+
109
+ // Put the voice-only part of the label in the span.
110
+ unavailable : '%1<span class="cke_accessibility">, недоступно</span>'
111
+ },
112
+
113
+ contextmenu :
114
+ {
115
+ options : 'Context Menu Options' // MISSING
116
+ },
117
+
118
+ // Special char dialog.
119
+ specialChar :
120
+ {
121
+ toolbar : 'Вставить специальный символ',
122
+ title : 'Выберите специальный символ',
123
+ options : 'Special Character Options' // MISSING
124
+ },
125
+
126
+ // Link dialog.
127
+ link :
128
+ {
129
+ toolbar : 'Вставить/Редактировать ссылку',
130
+ other : '<другой>',
131
+ menu : 'Вставить ссылку',
132
+ title : 'Ссылка',
133
+ info : 'Информация ссылки',
134
+ target : 'Цель',
135
+ upload : 'Закачать',
136
+ advanced : 'Расширенный',
137
+ type : 'Тип ссылки',
138
+ toUrl : 'URL', // MISSING
139
+ toAnchor : 'Якорь на эту страницу',
140
+ toEmail : 'Эл. почта',
141
+ targetFrame : '<фрейм>',
142
+ targetPopup : '<всплывающее окно>',
143
+ targetFrameName : 'Имя целевого фрейма',
144
+ targetPopupName : 'Имя всплывающего окна',
145
+ popupFeatures : 'Свойства всплывающего окна',
146
+ popupResizable : 'Изменяемый размер',
147
+ popupStatusBar : 'Строка состояния',
148
+ popupLocationBar: 'Панель локации',
149
+ popupToolbar : 'Панель инструментов',
150
+ popupMenuBar : 'Панель меню',
151
+ popupFullScreen : 'Полный экран (IE)',
152
+ popupScrollBars : 'Полосы прокрутки',
153
+ popupDependent : 'Зависимый (Netscape)',
154
+ popupWidth : 'Ширина',
155
+ popupLeft : 'Позиция слева',
156
+ popupHeight : 'Высота',
157
+ popupTop : 'Позиция сверху',
158
+ id : 'Id',
159
+ langDir : 'Направление языка',
160
+ langDirLTR : 'Слева направо (LTR)',
161
+ langDirRTL : 'Справа налево (RTL)',
162
+ acccessKey : 'Горячая клавиша',
163
+ name : 'Имя',
164
+ langCode : 'Код языка',
165
+ tabIndex : 'Последовательность перехода',
166
+ advisoryTitle : 'Заголовок',
167
+ advisoryContentType : 'Тип содержимого',
168
+ cssClasses : 'Класс CSS',
169
+ charset : 'Кодировка',
170
+ styles : 'Стиль CSS',
171
+ selectAnchor : 'Выберите якорь',
172
+ anchorName : 'По имени якоря',
173
+ anchorId : 'По идентификатору элемента',
174
+ emailAddress : 'Адрес эл. почты',
175
+ emailSubject : 'Заголовок сообщения',
176
+ emailBody : 'Тело сообщения',
177
+ noAnchors : '(Нет якорей доступных в этом документе)',
178
+ noUrl : 'Пожалуйста, введите URL ссылки',
179
+ noEmail : 'Пожалуйста, введите адрес эл. почты'
180
+ },
181
+
182
+ // Anchor dialog
183
+ anchor :
184
+ {
185
+ toolbar : 'Вставить/Редактировать якорь',
186
+ menu : 'Свойства якоря',
187
+ title : 'Свойства якоря',
188
+ name : 'Имя якоря',
189
+ errorName : 'Пожалуйста, введите имя якоря'
190
+ },
191
+
192
+ // Find And Replace Dialog
193
+ findAndReplace :
194
+ {
195
+ title : 'Найти и заменить',
196
+ find : 'Найти',
197
+ replace : 'Заменить',
198
+ findWhat : 'Найти:',
199
+ replaceWith : 'Заменить на:',
200
+ notFoundMsg : 'Указанный текст не найден.',
201
+ matchCase : 'Учитывать регистр',
202
+ matchWord : 'Только слово целиком',
203
+ matchCyclic : 'Начинать с начала после достижения конца',
204
+ replaceAll : 'Заменить все',
205
+ replaceSuccessMsg : '%1 совпадение(й) заменено.'
206
+ },
207
+
208
+ // Table Dialog
209
+ table :
210
+ {
211
+ toolbar : 'Таблица',
212
+ title : 'Свойства таблицы',
213
+ menu : 'Свойства таблицы',
214
+ deleteTable : 'Удалить таблицу',
215
+ rows : 'Строки',
216
+ columns : 'Колонки',
217
+ border : 'Размер бордюра',
218
+ align : 'Выравнивание',
219
+ alignLeft : 'Слева',
220
+ alignCenter : 'По центру',
221
+ alignRight : 'Справа',
222
+ width : 'Ширина',
223
+ widthPx : 'пикселей',
224
+ widthPc : 'процентов',
225
+ widthUnit : 'width unit', // MISSING
226
+ height : 'Высота',
227
+ cellSpace : 'Промежуток (spacing)',
228
+ cellPad : 'Отступ (padding)',
229
+ caption : 'Заголовок',
230
+ summary : 'Резюме',
231
+ headers : 'Заголовки',
232
+ headersNone : 'Нет',
233
+ headersColumn : 'Первый столбец',
234
+ headersRow : 'Первая строка',
235
+ headersBoth : 'Оба варианта',
236
+ invalidRows : 'Число строк должно быть больше 0.',
237
+ invalidCols : 'Число столбцов должно быть больше 0.',
238
+ invalidBorder : 'Ширина бордюра должна быть числом.',
239
+ invalidWidth : 'Ширина таблицы должна быть числом.',
240
+ invalidHeight : 'Высота таблицы должна быть числом.',
241
+ invalidCellSpacing : 'Размер промежутков (cellspacing) между ячейками должны быть числом.',
242
+ invalidCellPadding : 'Отступы внутри ячеек (cellpadding) должны быть числом.',
243
+
244
+ cell :
245
+ {
246
+ menu : 'Ячейка',
247
+ insertBefore : 'Вставить ячейку до',
248
+ insertAfter : 'Вставить ячейку после',
249
+ deleteCell : 'Удалить ячейки',
250
+ merge : 'Объединить ячейки',
251
+ mergeRight : 'Объединить с правой',
252
+ mergeDown : 'Объединить с нижней',
253
+ splitHorizontal : 'Разбить ячейку горизонтально',
254
+ splitVertical : 'Разбить ячейку вертикально',
255
+ title : 'Свойства ячейки',
256
+ cellType : 'Тип ячейки',
257
+ rowSpan : 'Rows Span',
258
+ colSpan : 'Columns Span',
259
+ wordWrap : 'Перенос по словам',
260
+ hAlign : 'Выравнивание по горизонтали',
261
+ vAlign : 'Выравнивание по вертикали',
262
+ alignTop : 'По верху',
263
+ alignMiddle : 'Посередине',
264
+ alignBottom : 'По низу',
265
+ alignBaseline : 'По базовой линии',
266
+ bgColor : 'Цвет фона',
267
+ borderColor : 'Цвет границы',
268
+ data : 'Данные',
269
+ header : 'Заголовок',
270
+ yes : 'Да',
271
+ no : 'Нет',
272
+ invalidWidth : 'Ширина ячейки должна быть числом.',
273
+ invalidHeight : 'Высота ячейки должна быть числом.',
274
+ invalidRowSpan : 'Rows span must be a whole number.',
275
+ invalidColSpan : 'Columns span must be a whole number.',
276
+ chooseColor : 'Выберите'
277
+ },
278
+
279
+ row :
280
+ {
281
+ menu : 'Строка',
282
+ insertBefore : 'Вставить строку до',
283
+ insertAfter : 'Вставить строку после',
284
+ deleteRow : 'Удалить строки'
285
+ },
286
+
287
+ column :
288
+ {
289
+ menu : 'Колонка',
290
+ insertBefore : 'Вставить колонку до',
291
+ insertAfter : 'Вставить колонку после',
292
+ deleteColumn : 'Удалить колонки'
293
+ }
294
+ },
295
+
296
+ // Button Dialog.
297
+ button :
298
+ {
299
+ title : 'Свойства кнопки',
300
+ text : 'Текст (Значение)',
301
+ type : 'Тип',
302
+ typeBtn : 'Кнопка',
303
+ typeSbm : 'Отправить',
304
+ typeRst : 'Сбросить'
305
+ },
306
+
307
+ // Checkbox and Radio Button Dialogs.
308
+ checkboxAndRadio :
309
+ {
310
+ checkboxTitle : 'Свойства флаговой кнопки',
311
+ radioTitle : 'Свойства кнопки выбора',
312
+ value : 'Значение',
313
+ selected : 'Выбранная'
314
+ },
315
+
316
+ // Form Dialog.
317
+ form :
318
+ {
319
+ title : 'Свойства формы',
320
+ menu : 'Свойства формы',
321
+ action : 'Действие',
322
+ method : 'Метод',
323
+ encoding : 'Кодировка'
324
+ },
325
+
326
+ // Select Field Dialog.
327
+ select :
328
+ {
329
+ title : 'Свойства списка',
330
+ selectInfo : 'Информация',
331
+ opAvail : 'Доступные варианты',
332
+ value : 'Значение',
333
+ size : 'Размер',
334
+ lines : 'линии',
335
+ chkMulti : 'Разрешить множественный выбор',
336
+ opText : 'Текст',
337
+ opValue : 'Значение',
338
+ btnAdd : 'Добавить',
339
+ btnModify : 'Модифицировать',
340
+ btnUp : 'Вверх',
341
+ btnDown : 'Вниз',
342
+ btnSetValue : 'Установить как выбранное значение',
343
+ btnDelete : 'Удалить'
344
+ },
345
+
346
+ // Textarea Dialog.
347
+ textarea :
348
+ {
349
+ title : 'Свойства текстовой области',
350
+ cols : 'Колонки',
351
+ rows : 'Строки'
352
+ },
353
+
354
+ // Text Field Dialog.
355
+ textfield :
356
+ {
357
+ title : 'Свойства текстового поля',
358
+ name : 'Имя',
359
+ value : 'Значение',
360
+ charWidth : 'Ширина',
361
+ maxChars : 'Макс. кол-во символов',
362
+ type : 'Тип',
363
+ typeText : 'Текст',
364
+ typePass : 'Пароль'
365
+ },
366
+
367
+ // Hidden Field Dialog.
368
+ hidden :
369
+ {
370
+ title : 'Свойства скрытого поля',
371
+ name : 'Имя',
372
+ value : 'Значение'
373
+ },
374
+
375
+ // Image Dialog.
376
+ image :
377
+ {
378
+ title : 'Свойства изображения',
379
+ titleButton : 'Свойства кнопки с изображением',
380
+ menu : 'Свойства изображения',
381
+ infoTab : 'Информация о изображении',
382
+ btnUpload : 'Отправить на сервер',
383
+ upload : 'Закачать',
384
+ alt : 'Альтернативный текст',
385
+ width : 'Ширина',
386
+ height : 'Высота',
387
+ lockRatio : 'Сохранять пропорции',
388
+ unlockRatio : 'Unlock Ratio', // MISSING
389
+ resetSize : 'Сбросить размер',
390
+ border : 'Бордюр',
391
+ hSpace : 'Горизонтальный отступ',
392
+ vSpace : 'Вертикальный отступ',
393
+ align : 'Выравнивание',
394
+ alignLeft : 'По левому краю',
395
+ alignRight : 'По правому краю',
396
+ alertUrl : 'Пожалуйста, введите URL изображения',
397
+ linkTab : 'Ссылка',
398
+ button2Img : 'Do you want to transform the selected image button on a simple image?',
399
+ img2Button : 'Do you want to transform the selected image on a image button?',
400
+ urlMissing : 'Отсутствует URL картинки.',
401
+ validateWidth : 'Width must be a whole number.', // MISSING
402
+ validateHeight : 'Height must be a whole number.', // MISSING
403
+ validateBorder : 'Border must be a whole number.', // MISSING
404
+ validateHSpace : 'HSpace must be a whole number.', // MISSING
405
+ validateVSpace : 'VSpace must be a whole number.' // MISSING
406
+ },
407
+
408
+ // Flash Dialog
409
+ flash :
410
+ {
411
+ properties : 'Свойства Flash',
412
+ propertiesTab : 'Свойства',
413
+ title : 'Свойства Flash',
414
+ chkPlay : 'Авто проигрывание',
415
+ chkLoop : 'Повтор',
416
+ chkMenu : 'Включить меню Flash',
417
+ chkFull : 'разрешить полноэкранный режим',
418
+ scale : 'Масштабировать',
419
+ scaleAll : 'Показывать все',
420
+ scaleNoBorder : 'Без бордюра',
421
+ scaleFit : 'Точное совпадение',
422
+ access : 'Область доступа скрипта',
423
+ accessAlways : 'Всегда',
424
+ accessSameDomain: 'Тот же домен',
425
+ accessNever : 'Никогда',
426
+ align : 'Выравнивание',
427
+ alignLeft : 'По левому краю',
428
+ alignAbsBottom : 'Абс понизу',
429
+ alignAbsMiddle : 'Абс посередине',
430
+ alignBaseline : 'По базовой линии',
431
+ alignBottom : 'Понизу',
432
+ alignMiddle : 'Посередине',
433
+ alignRight : 'По правому краю',
434
+ alignTextTop : 'Текст наверху',
435
+ alignTop : 'По верху',
436
+ quality : 'Качество',
437
+ qualityBest : 'Лучшее',
438
+ qualityHigh : 'Высокое',
439
+ qualityAutoHigh : 'Высокое (авто)',
440
+ qualityMedium : 'Среднее',
441
+ qualityAutoLow : 'Низкое (авто)',
442
+ qualityLow : 'Низкое',
443
+ windowModeWindow: 'Окно',
444
+ windowModeOpaque: 'Непрозрачный',
445
+ windowModeTransparent : 'Прозрачный',
446
+ windowMode : 'Оконный режим',
447
+ flashvars : 'Переменные для Flash',
448
+ bgcolor : 'Цвет фона',
449
+ width : 'Ширина',
450
+ height : 'Высота',
451
+ hSpace : 'Горизонтальный отступ',
452
+ vSpace : 'Вертикальный отступ',
453
+ validateSrc : 'Пожалуйста, введите URL ссылки',
454
+ validateWidth : 'Ширина задается числом.',
455
+ validateHeight : 'Высота задается числом.',
456
+ validateHSpace : 'Горизонтальный отступ задается числом.',
457
+ validateVSpace : 'Вертикальный отступ задается числом.'
458
+ },
459
+
460
+ // Speller Pages Dialog
461
+ spellCheck :
462
+ {
463
+ toolbar : 'Проверить орфографию',
464
+ title : 'Проверка правописания',
465
+ notAvailable : 'Извините, сервис сейчас недоступен.',
466
+ errorLoading : 'Ошибка при загрузке служебного хоста приложения: %s.',
467
+ notInDic : 'Нет в словаре',
468
+ changeTo : 'Заменить на',
469
+ btnIgnore : 'Игнорировать',
470
+ btnIgnoreAll : 'Игнорировать все',
471
+ btnReplace : 'Заменить',
472
+ btnReplaceAll : 'Заменить все',
473
+ btnUndo : 'Отменить',
474
+ noSuggestions : '- Нет предположений -',
475
+ progress : 'Идет проверка орфографии...',
476
+ noMispell : 'Проверка орфографии закончена: ошибок не найдено',
477
+ noChanges : 'Проверка орфографии закончена: ни одного слова не изменено',
478
+ oneChange : 'Проверка орфографии закончена: одно слово изменено',
479
+ manyChanges : 'Проверка орфографии закончена: 1% слов изменено',
480
+ ieSpellDownload : 'Модуль проверки орфографии не установлен. Хотите скачать его сейчас?'
481
+ },
482
+
483
+ smiley :
484
+ {
485
+ toolbar : 'Смайлик',
486
+ title : 'Вставить смайлик',
487
+ options : 'Smiley Options' // MISSING
488
+ },
489
+
490
+ elementsPath :
491
+ {
492
+ eleLabel : 'Elements path', // MISSING
493
+ eleTitle : '%1 элемент'
494
+ },
495
+
496
+ numberedlist : 'Нумерованный список',
497
+ bulletedlist : 'Маркированный список',
498
+ indent : 'Увеличить отступ',
499
+ outdent : 'Уменьшить отступ',
500
+
501
+ justify :
502
+ {
503
+ left : 'По левому краю',
504
+ center : 'По центру',
505
+ right : 'По правому краю',
506
+ block : 'По ширине'
507
+ },
508
+
509
+ blockquote : 'Цитата',
510
+
511
+ clipboard :
512
+ {
513
+ title : 'Вставить',
514
+ cutError : 'Настройки безопасности вашего браузера не позволяют редактору автоматически выполнять операции вырезания. Пожалуйста, используйте клавиатуру для этого (Ctrl/Cmd+X).',
515
+ copyError : 'Настройки безопасности вашего браузера не позволяют редактору автоматически выполнять операции копирования. Пожалуйста, используйте клавиатуру для этого (Ctrl/Cmd+C).',
516
+ pasteMsg : 'Пожалуйста, вставьте текст в прямоугольник, используя сочетание клавиш (<STRONG>Ctrl/Cmd+V</STRONG>), и нажмите <STRONG>OK</STRONG>.',
517
+ securityMsg : 'По причине настроек безопасности браузера, редактор не имеет доступа к данным буфера обмена напрямую. Вам необходимо вставить текст снова в это окно.',
518
+ pasteArea : 'Paste Area' // MISSING
519
+ },
520
+
521
+ pastefromword :
522
+ {
523
+ confirmCleanup : 'Текст, который вы хотите вставить, похож на копируемый из Word. Вы хотите очистить его перед вставкой?',
524
+ toolbar : 'Вставить из Word',
525
+ title : 'Вставить из Word',
526
+ error : 'Невозможно очистить вставленные данные из-за внутренней ошибки'
527
+ },
528
+
529
+ pasteText :
530
+ {
531
+ button : 'Вставить только текст',
532
+ title : 'Вставить только текст'
533
+ },
534
+
535
+ templates :
536
+ {
537
+ button : 'Шаблоны',
538
+ title : 'Шаблоны содержимого',
539
+ options : 'Template Options', // MISSING
540
+ insertOption : 'Заменить текущее содержание',
541
+ selectPromptMsg : 'Пожалуйста, выберете шаблон для открытия в редакторе<br>(текущее содержимое будет потеряно):',
542
+ emptyListMsg : '(Ни одного шаблона не определено)'
543
+ },
544
+
545
+ showBlocks : 'Показать блоки',
546
+
547
+ stylesCombo :
548
+ {
549
+ label : 'Стиль',
550
+ panelTitle : 'Formatting Styles', // MISSING
551
+ panelTitle1 : 'Block Styles',
552
+ panelTitle2 : 'Inline Styles',
553
+ panelTitle3 : 'Стили объекта'
554
+ },
555
+
556
+ format :
557
+ {
558
+ label : 'Форматирование',
559
+ panelTitle : 'Форматирование',
560
+
561
+ tag_p : 'Нормальный',
562
+ tag_pre : 'Форматированный',
563
+ tag_address : 'Адрес',
564
+ tag_h1 : 'Заголовок 1',
565
+ tag_h2 : 'Заголовок 2',
566
+ tag_h3 : 'Заголовок 3',
567
+ tag_h4 : 'Заголовок 4',
568
+ tag_h5 : 'Заголовок 5',
569
+ tag_h6 : 'Заголовок 6',
570
+ tag_div : 'Нормальный (DIV)'
571
+ },
572
+
573
+ div :
574
+ {
575
+ title : 'Создать Div-контейнер',
576
+ toolbar : 'Создать Div-контейнер',
577
+ cssClassInputLabel : 'Классы таблицы стилей',
578
+ styleSelectLabel : 'Стиль',
579
+ IdInputLabel : 'Id',
580
+ languageCodeInputLabel : 'Код языка',
581
+ inlineStyleInputLabel : 'Локальный стиль',
582
+ advisoryTitleInputLabel : 'Advisory Title',
583
+ langDirLabel : 'Направление письма',
584
+ langDirLTRLabel : 'Слева направо (LTR)',
585
+ langDirRTLLabel : 'Справа налево (RTL)',
586
+ edit : 'Редактировать Div',
587
+ remove : 'Убрать Div'
588
+ },
589
+
590
+ font :
591
+ {
592
+ label : 'Шрифт',
593
+ voiceLabel : 'Шрифт',
594
+ panelTitle : 'Шрифт'
595
+ },
596
+
597
+ fontSize :
598
+ {
599
+ label : 'Размер',
600
+ voiceLabel : 'Размер шрифта',
601
+ panelTitle : 'Размер'
602
+ },
603
+
604
+ colorButton :
605
+ {
606
+ textColorTitle : 'Цвет текста',
607
+ bgColorTitle : 'Цвет фона',
608
+ panelTitle : 'Colors', // MISSING
609
+ auto : 'Автоматический',
610
+ more : 'Цвета...'
611
+ },
612
+
613
+ colors :
614
+ {
615
+ '000' : 'Черный',
616
+ '800000' : 'Бордовый',
617
+ '8B4513' : 'Старой кожи',
618
+ '2F4F4F' : 'Темный синевато-серый',
619
+ '008080' : 'Чайный',
620
+ '000080' : 'Темно-синиый',
621
+ '4B0082' : 'Индиго',
622
+ '696969' : 'Грязно-серый',
623
+ 'B22222' : 'Огнеупорный кирпич',
624
+ 'A52A2A' : 'Коричневый',
625
+ 'DAA520' : 'Красное золото',
626
+ '006400' : 'Темно-зеленый',
627
+ '40E0D0' : 'Бирюзовый',
628
+ '0000CD' : 'Синий',
629
+ '800080' : 'Пурпурный',
630
+ '808080' : 'Серый',
631
+ 'F00' : 'Красный',
632
+ 'FF8C00' : 'Темно-оранжевый',
633
+ 'FFD700' : 'Золотой',
634
+ '008000' : 'Зеленый',
635
+ '0FF' : 'Морской волны',
636
+ '00F' : 'Голубой',
637
+ 'EE82EE' : 'Фиолетовый',
638
+ 'A9A9A9' : 'Темно-серый',
639
+ 'FFA07A' : 'Светлый оранжево-розовый',
640
+ 'FFA500' : 'Оранжевый',
641
+ 'FFFF00' : 'Желтый',
642
+ '00FF00' : 'Известковый',
643
+ 'AFEEEE' : 'Бледно-бирюзовый',
644
+ 'ADD8E6' : 'Свелто-синий',
645
+ 'DDA0DD' : 'Сливовый',
646
+ 'D3D3D3' : 'Светло-серый',
647
+ 'FFF0F5' : 'Бледный розово-лиловый ',
648
+ 'FAEBD7' : 'Античный белый',
649
+ 'FFFFE0' : 'Светло-желтый',
650
+ 'F0FFF0' : 'Свежего меда',
651
+ 'F0FFFF' : 'Лазурь',
652
+ 'F0F8FF' : 'Бледно-голубой',
653
+ 'E6E6FA' : 'Бледно-лиловый',
654
+ 'FFF' : 'Белый'
655
+ },
656
+
657
+ scayt :
658
+ {
659
+ title : 'Проверка Орфографии по Мере Ввода',
660
+ enable : 'Включить ПОМВ',
661
+ disable : 'Отключить ПОМВ',
662
+ about : 'О ПОМВ',
663
+ toggle : 'Переключить ПОМВ',
664
+ options : 'Настройки',
665
+ langs : 'Языки',
666
+ moreSuggestions : 'Больше вариантов',
667
+ ignore : 'Пропустить',
668
+ ignoreAll : 'Пропустить всё',
669
+ addWord : 'Добавить слово',
670
+ emptyDic : 'Имя словаря должно быть не пустым.',
671
+ optionsTab : 'Настройки',
672
+ languagesTab : 'Языки',
673
+ dictionariesTab : 'Словари',
674
+ aboutTab : 'О словарях'
675
+ },
676
+
677
+ about :
678
+ {
679
+ title : 'О программе CKEditor',
680
+ dlgTitle : 'О программе CKEditor',
681
+ moreInfo : 'По вопросам лицензирования обращайтесь на наш сайт:',
682
+ copy : 'Copyright &copy; $1. Все права защищены.'
683
+ },
684
+
685
+ maximize : 'Максимизировать',
686
+ minimize : 'Минимизировать',
687
+
688
+ fakeobjects :
689
+ {
690
+ anchor : 'Якорь',
691
+ flash : 'Flash-анимация',
692
+ div : 'Разрыв страницы',
693
+ unknown : 'Неизвестный объект'
694
+ },
695
+
696
+ resize : 'Перетащите для изменения размера',
697
+
698
+ colordialog :
699
+ {
700
+ title : 'Выберите цвет',
701
+ highlight : 'Выделить',
702
+ selected : 'Выбранное',
703
+ clear : 'Очистить'
704
+ },
705
+
706
+ toolbarCollapse : 'Свернуть панель инструментов',
707
+ toolbarExpand : 'Развернуть панель инструментов'
708
+ };