typo 5.0.3.98.1 → 5.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (453) hide show
  1. data/CHANGES-5.1 +54 -0
  2. data/app/apis/meta_weblog_service.rb +7 -6
  3. data/app/controllers/accounts_controller.rb +2 -1
  4. data/app/controllers/admin/content_controller.rb +45 -3
  5. data/app/controllers/admin/pages_controller.rb +1 -1
  6. data/app/controllers/admin/textfilters_controller.rb +4 -4
  7. data/app/controllers/admin/users_controller.rb +14 -2
  8. data/app/controllers/application.rb +4 -1
  9. data/app/controllers/articles_controller.rb +1 -3
  10. data/app/controllers/backend_controller.rb +2 -0
  11. data/app/controllers/comments_controller.rb +6 -0
  12. data/app/helpers/admin/base_helper.rb +24 -26
  13. data/app/helpers/admin/feedback_helper.rb +0 -20
  14. data/app/helpers/application_helper.rb +1 -0
  15. data/app/models/article.rb +2 -0
  16. data/app/models/blog.rb +1 -0
  17. data/app/models/blog_sweeper.rb +8 -9
  18. data/app/models/page_cache.rb +1 -0
  19. data/app/models/tag.rb +2 -2
  20. data/app/models/user.rb +5 -1
  21. data/app/views/admin/blacklist/destroy.html.erb +1 -1
  22. data/app/views/admin/categories/destroy.html.erb +1 -1
  23. data/app/views/admin/comments/destroy.html.erb +1 -1
  24. data/app/views/admin/content/_articles.html.erb +4 -4
  25. data/app/views/admin/content/_attachment.html.erb +6 -7
  26. data/app/views/admin/content/_drafts.html.erb +6 -0
  27. data/app/views/admin/content/_form.html.erb +47 -34
  28. data/app/views/admin/content/destroy.html.erb +1 -1
  29. data/app/views/admin/content/edit.html.erb +1 -1
  30. data/app/views/admin/content/index.html.erb +1 -6
  31. data/app/views/admin/content/new.html.erb +1 -1
  32. data/app/views/admin/pages/_form.html.erb +4 -3
  33. data/app/views/admin/pages/_pages.html.erb +3 -3
  34. data/app/views/admin/pages/destroy.html.erb +1 -1
  35. data/app/views/admin/resources/destroy.html.erb +1 -1
  36. data/app/views/admin/settings/index.html.erb +10 -0
  37. data/app/views/admin/shared/_edit.html.erb +1 -6
  38. data/app/views/admin/textfilters/destroy.html.erb +3 -0
  39. data/app/views/admin/textfilters/edit.html.erb +3 -1
  40. data/app/views/admin/textfilters/index.html.erb +1 -1
  41. data/app/views/admin/textfilters/new.html.erb +3 -1
  42. data/app/views/admin/trackbacks/show.html.erb +1 -1
  43. data/app/views/admin/users/destroy.html.erb +1 -1
  44. data/app/views/admin/users/edit.html.erb +1 -5
  45. data/app/views/admin/users/index.html.erb +1 -1
  46. data/app/views/articles/_comment_failed.html.erb +3 -0
  47. data/config/initializers/access_rules.rb +3 -3
  48. data/db/migrate/070_add_users_to_non_admins.rb +17 -0
  49. data/installer/rails_installer_defaults.yml +1 -1
  50. data/lib/tasks/release.rake +3 -3
  51. data/lib/typo_version.rb +1 -1
  52. data/public/images/admin/cancel.png +0 -0
  53. data/public/images/admin/checked.png +0 -0
  54. data/public/images/admin/delete.png +0 -0
  55. data/public/images/admin/edit.png +0 -0
  56. data/public/images/admin/show.png +0 -0
  57. data/public/javascripts/controls.js +2 -0
  58. data/public/javascripts/dragdrop.js +2 -0
  59. data/public/javascripts/effects.js +6 -4
  60. data/public/javascripts/fckeditor/editor/_source/classes/fckcontextmenu.js +13 -8
  61. data/public/javascripts/fckeditor/editor/_source/classes/fckdataprocessor.js +2 -2
  62. data/public/javascripts/fckeditor/editor/_source/classes/fckdocumentfragment_gecko.js +2 -2
  63. data/public/javascripts/fckeditor/editor/_source/classes/fckdocumentfragment_ie.js +2 -2
  64. data/public/javascripts/fckeditor/editor/_source/classes/fckdomrange.js +189 -79
  65. data/public/javascripts/fckeditor/editor/_source/classes/fckdomrange_gecko.js +4 -3
  66. data/public/javascripts/fckeditor/editor/_source/classes/fckdomrange_ie.js +16 -15
  67. data/public/javascripts/fckeditor/editor/_source/classes/fckdomrangeiterator.js +30 -9
  68. data/public/javascripts/fckeditor/editor/_source/classes/fckeditingarea.js +108 -90
  69. data/public/javascripts/fckeditor/editor/_source/classes/fckelementpath.js +22 -3
  70. data/public/javascripts/fckeditor/editor/_source/classes/fckenterkey.js +76 -38
  71. data/public/javascripts/fckeditor/editor/_source/classes/fckevents.js +7 -2
  72. data/public/javascripts/fckeditor/editor/_source/classes/fckhtmliterator.js +142 -0
  73. data/public/javascripts/fckeditor/editor/_source/classes/fckicon.js +2 -2
  74. data/public/javascripts/fckeditor/editor/_source/classes/fckiecleanup.js +1 -1
  75. data/public/javascripts/fckeditor/editor/_source/classes/fckimagepreloader.js +2 -2
  76. data/public/javascripts/fckeditor/editor/_source/classes/fckkeystrokehandler.js +3 -3
  77. data/public/javascripts/fckeditor/editor/_source/classes/fckmenublock.js +8 -5
  78. data/public/javascripts/fckeditor/editor/_source/classes/fckmenublockpanel.js +3 -3
  79. data/public/javascripts/fckeditor/editor/_source/classes/fckmenuitem.js +6 -5
  80. data/public/javascripts/fckeditor/editor/_source/classes/fckpanel.js +85 -38
  81. data/public/javascripts/fckeditor/editor/_source/classes/fckplugin.js +2 -2
  82. data/public/javascripts/fckeditor/editor/_source/classes/fckspecialcombo.js +7 -8
  83. data/public/javascripts/fckeditor/editor/_source/classes/fckstyle.js +180 -17
  84. data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbar.js +2 -2
  85. data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarbreak_gecko.js +2 -2
  86. data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarbreak_ie.js +1 -1
  87. data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarbutton.js +9 -4
  88. data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarbuttonui.js +5 -1
  89. data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarfontformatcombo.js +3 -3
  90. data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarfontscombo.js +1 -1
  91. data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarfontsizecombo.js +1 -1
  92. data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarpanelbutton.js +15 -4
  93. data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarspecialcombo.js +5 -2
  94. data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarstylecombo.js +13 -13
  95. data/public/javascripts/fckeditor/editor/_source/classes/fckw3crange.js +17 -13
  96. data/public/javascripts/fckeditor/editor/_source/classes/fckxml.js +2 -2
  97. data/public/javascripts/fckeditor/editor/_source/classes/fckxml_gecko.js +28 -13
  98. data/public/javascripts/fckeditor/editor/_source/classes/fckxml_ie.js +2 -2
  99. data/public/javascripts/fckeditor/editor/_source/commandclasses/fck_othercommands.js +75 -19
  100. data/public/javascripts/fckeditor/editor/_source/commandclasses/fckblockquotecommand.js +64 -8
  101. data/public/javascripts/fckeditor/editor/_source/commandclasses/fckcorestylecommand.js +3 -1
  102. data/public/javascripts/fckeditor/editor/_source/commandclasses/fckfitwindow.js +2 -2
  103. data/public/javascripts/fckeditor/editor/_source/commandclasses/fckindentcommands.js +5 -3
  104. data/public/javascripts/fckeditor/editor/_source/commandclasses/fckjustifycommands.js +6 -6
  105. data/public/javascripts/fckeditor/editor/_source/commandclasses/fcklistcommands.js +4 -4
  106. data/public/javascripts/fckeditor/editor/_source/commandclasses/fcknamedcommand.js +3 -1
  107. data/public/javascripts/fckeditor/editor/_source/commandclasses/fckpasteplaintextcommand.js +3 -1
  108. data/public/javascripts/fckeditor/editor/_source/commandclasses/fckpastewordcommand.js +2 -2
  109. data/public/javascripts/fckeditor/editor/_source/commandclasses/fckremoveformatcommand.js +2 -2
  110. data/public/javascripts/fckeditor/editor/_source/commandclasses/fckshowblocks.js +7 -9
  111. data/public/javascripts/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_gecko.js +4 -2
  112. data/public/javascripts/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_ie.js +4 -2
  113. data/public/javascripts/fckeditor/editor/_source/commandclasses/fckstylecommand.js +3 -3
  114. data/public/javascripts/fckeditor/editor/_source/commandclasses/fcktablecommand.js +4 -4
  115. data/public/javascripts/fckeditor/editor/_source/commandclasses/fcktextcolorcommand.js +28 -10
  116. data/public/javascripts/fckeditor/editor/_source/fckconstants.js +1 -1
  117. data/public/javascripts/fckeditor/editor/_source/fckeditorapi.js +21 -13
  118. data/public/javascripts/fckeditor/editor/_source/fckjscoreextensions.js +5 -5
  119. data/public/javascripts/fckeditor/editor/_source/fckscriptloader.js +4 -4
  120. data/public/javascripts/fckeditor/editor/_source/internals/fck.js +148 -38
  121. data/public/javascripts/fckeditor/editor/_source/internals/fck_contextmenu.js +4 -4
  122. data/public/javascripts/fckeditor/editor/_source/internals/fck_gecko.js +45 -47
  123. data/public/javascripts/fckeditor/editor/_source/internals/fck_ie.js +50 -17
  124. data/public/javascripts/fckeditor/editor/_source/internals/fckbrowserinfo.js +4 -2
  125. data/public/javascripts/fckeditor/editor/_source/internals/fckcodeformatter.js +2 -2
  126. data/public/javascripts/fckeditor/editor/_source/internals/fckcommands.js +28 -28
  127. data/public/javascripts/fckeditor/editor/_source/internals/fckconfig.js +12 -13
  128. data/public/javascripts/fckeditor/editor/_source/internals/fckdebug.js +2 -2
  129. data/public/javascripts/fckeditor/editor/_source/internals/fckdialog.js +211 -15
  130. data/public/javascripts/fckeditor/editor/_source/internals/fckdocumentprocessor.js +63 -39
  131. data/public/javascripts/fckeditor/editor/_source/internals/fckdomtools.js +177 -37
  132. data/public/javascripts/fckeditor/editor/_source/internals/fcklanguagemanager.js +2 -1
  133. data/public/javascripts/fckeditor/editor/_source/internals/fcklisthandler.js +2 -2
  134. data/public/javascripts/fckeditor/editor/_source/internals/fcklistslib.js +5 -2
  135. data/public/javascripts/fckeditor/editor/_source/internals/fckplugins.js +2 -2
  136. data/public/javascripts/fckeditor/editor/_source/internals/fckregexlib.js +5 -2
  137. data/public/javascripts/fckeditor/editor/_source/internals/fckselection.js +3 -3
  138. data/public/javascripts/fckeditor/editor/_source/internals/fckselection_gecko.js +36 -27
  139. data/public/javascripts/fckeditor/editor/_source/internals/fckselection_ie.js +91 -17
  140. data/public/javascripts/fckeditor/editor/_source/internals/fckstyles.js +22 -13
  141. data/public/javascripts/fckeditor/editor/_source/internals/fcktablehandler.js +15 -15
  142. data/public/javascripts/fckeditor/editor/_source/internals/fcktablehandler_gecko.js +2 -2
  143. data/public/javascripts/fckeditor/editor/_source/internals/fcktablehandler_ie.js +2 -2
  144. data/public/javascripts/fckeditor/editor/_source/internals/fcktoolbaritems.js +1 -1
  145. data/public/javascripts/fckeditor/editor/_source/internals/fcktoolbarset.js +32 -6
  146. data/public/javascripts/fckeditor/editor/_source/internals/fcktools.js +181 -22
  147. data/public/javascripts/fckeditor/editor/_source/internals/fcktools_gecko.js +19 -7
  148. data/public/javascripts/fckeditor/editor/_source/internals/fcktools_ie.js +8 -2
  149. data/public/javascripts/fckeditor/editor/_source/internals/fckundo.js +8 -5
  150. data/public/javascripts/fckeditor/editor/_source/internals/fckurlparams.js +2 -2
  151. data/public/javascripts/fckeditor/editor/_source/internals/fckxhtml.js +116 -61
  152. data/public/javascripts/fckeditor/editor/_source/internals/fckxhtml_gecko.js +6 -10
  153. data/public/javascripts/fckeditor/editor/_source/internals/fckxhtml_ie.js +51 -56
  154. data/public/javascripts/fckeditor/editor/_source/internals/fckxhtmlentities.js +1 -1
  155. data/public/javascripts/fckeditor/editor/css/fck_editorarea.css +3 -2
  156. data/public/javascripts/fckeditor/editor/css/fck_internal.css +19 -2
  157. data/public/javascripts/fckeditor/editor/css/fck_showtableborders_gecko.css +8 -1
  158. data/public/javascripts/fckeditor/editor/css/images/fck_plugin.gif +0 -0
  159. data/public/javascripts/fckeditor/editor/dialog/common/fck_dialog_common.css +8 -1
  160. data/public/javascripts/fckeditor/editor/dialog/common/fck_dialog_common.js +199 -26
  161. data/public/javascripts/fckeditor/editor/dialog/fck_about.html +20 -14
  162. data/public/javascripts/fckeditor/editor/dialog/fck_about/sponsors/spellchecker_net.gif +0 -0
  163. data/public/javascripts/fckeditor/editor/dialog/fck_anchor.html +15 -10
  164. data/public/javascripts/fckeditor/editor/dialog/fck_button.html +9 -14
  165. data/public/javascripts/fckeditor/editor/dialog/fck_checkbox.html +8 -13
  166. data/public/javascripts/fckeditor/editor/dialog/fck_colorselector.html +4 -3
  167. data/public/javascripts/fckeditor/editor/dialog/fck_docprops.html +6 -6
  168. data/public/javascripts/fckeditor/editor/dialog/fck_docprops/fck_document_preview.html +1 -1
  169. data/public/javascripts/fckeditor/editor/dialog/fck_flash.html +9 -3
  170. data/public/javascripts/fckeditor/editor/dialog/fck_flash/fck_flash.js +18 -11
  171. data/public/javascripts/fckeditor/editor/dialog/fck_flash/fck_flash_preview.html +7 -3
  172. data/public/javascripts/fckeditor/editor/dialog/fck_form.html +7 -4
  173. data/public/javascripts/fckeditor/editor/dialog/fck_hiddenfield.html +12 -15
  174. data/public/javascripts/fckeditor/editor/dialog/fck_image.html +9 -3
  175. data/public/javascripts/fckeditor/editor/dialog/fck_image/fck_image.js +24 -12
  176. data/public/javascripts/fckeditor/editor/dialog/fck_image/fck_image_preview.html +24 -18
  177. data/public/javascripts/fckeditor/editor/dialog/fck_link.html +1 -1
  178. data/public/javascripts/fckeditor/editor/dialog/fck_link/fck_link.js +41 -20
  179. data/public/javascripts/fckeditor/editor/dialog/fck_listprop.html +8 -4
  180. data/public/javascripts/fckeditor/editor/dialog/fck_paste.html +53 -54
  181. data/public/javascripts/fckeditor/editor/dialog/fck_radiobutton.html +8 -13
  182. data/public/javascripts/fckeditor/editor/dialog/fck_replace.html +157 -79
  183. data/public/javascripts/fckeditor/editor/dialog/fck_select.html +14 -11
  184. data/public/javascripts/fckeditor/editor/dialog/fck_select/fck_select.js +2 -2
  185. data/public/javascripts/fckeditor/editor/dialog/fck_smiley.html +9 -4
  186. data/public/javascripts/fckeditor/editor/dialog/fck_source.html +5 -2
  187. data/public/javascripts/fckeditor/editor/dialog/fck_specialchar.html +9 -6
  188. data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages.html +2 -1
  189. data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.cfm +3 -1
  190. data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php +5 -2
  191. data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.pl +2 -1
  192. data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellChecker.js +0 -1
  193. data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellerStyle.css +1 -1
  194. data/public/javascripts/fckeditor/editor/dialog/fck_table.html +10 -5
  195. data/public/javascripts/fckeditor/editor/dialog/fck_tablecell.html +8 -6
  196. data/public/javascripts/fckeditor/editor/dialog/fck_template.html +1 -1
  197. data/public/javascripts/fckeditor/editor/dialog/fck_textarea.html +10 -11
  198. data/public/javascripts/fckeditor/editor/dialog/fck_textfield.html +10 -14
  199. data/public/javascripts/fckeditor/editor/dtd/fck_dtd_test.html +0 -2
  200. data/public/javascripts/fckeditor/editor/dtd/fck_xhtml10strict.js +2 -2
  201. data/public/javascripts/fckeditor/editor/dtd/fck_xhtml10transitional.js +3 -3
  202. data/public/javascripts/fckeditor/editor/fckdebug.html +1 -1
  203. data/public/javascripts/fckeditor/editor/fckdialog.html +660 -213
  204. data/public/javascripts/fckeditor/editor/fckeditor.html +66 -16
  205. data/public/javascripts/fckeditor/editor/fckeditor.original.html +70 -16
  206. data/public/javascripts/fckeditor/editor/filemanager/browser/default/browser.css +2 -2
  207. data/public/javascripts/fckeditor/editor/filemanager/browser/default/browser.html +37 -2
  208. data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmactualfolder.html +33 -1
  209. data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmcreatefolder.html +1 -1
  210. data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmfolders.html +2 -1
  211. data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmresourceslist.html +3 -2
  212. data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmresourcetype.html +1 -1
  213. data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmupload.html +2 -1
  214. data/public/javascripts/fckeditor/editor/filemanager/browser/default/js/common.js +34 -2
  215. data/public/javascripts/fckeditor/editor/filemanager/browser/default/js/fckxml.js +3 -3
  216. data/public/javascripts/fckeditor/editor/filemanager/connectors/aspx/connector.aspx +5 -3
  217. data/public/javascripts/fckeditor/editor/filemanager/connectors/aspx/upload.aspx +5 -3
  218. data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/basexml.pl +1 -1
  219. data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/commands.pl +50 -4
  220. data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/connector.cgi +2 -3
  221. data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/io.pl +14 -4
  222. data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/upload.cgi +2 -3
  223. data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/upload_fck.pl +23 -4
  224. data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/util.pl +1 -1
  225. data/public/javascripts/fckeditor/editor/filemanager/connectors/py/config.py +43 -32
  226. data/public/javascripts/fckeditor/editor/filemanager/connectors/py/connector.py +16 -16
  227. data/public/javascripts/fckeditor/editor/filemanager/connectors/py/fckcommands.py +26 -9
  228. data/public/javascripts/fckeditor/editor/filemanager/connectors/py/fckconnector.py +2 -2
  229. data/public/javascripts/fckeditor/editor/filemanager/connectors/py/fckoutput.py +40 -9
  230. data/public/javascripts/fckeditor/editor/filemanager/connectors/py/fckutil.py +20 -21
  231. data/public/javascripts/fckeditor/editor/filemanager/connectors/py/htaccess.txt +2 -2
  232. data/public/javascripts/fckeditor/editor/filemanager/connectors/py/upload.py +13 -13
  233. data/public/javascripts/fckeditor/editor/filemanager/connectors/py/wsgi.py +3 -3
  234. data/public/javascripts/fckeditor/editor/filemanager/connectors/py/zope.py +4 -5
  235. data/public/javascripts/fckeditor/editor/filemanager/connectors/test.html +34 -1
  236. data/public/javascripts/fckeditor/editor/filemanager/connectors/uploadtest.html +47 -4
  237. data/public/javascripts/fckeditor/editor/js/fckadobeair.js +176 -0
  238. data/public/javascripts/fckeditor/editor/js/fckeditorcode_gecko.js +77 -77
  239. data/public/javascripts/fckeditor/editor/js/fckeditorcode_ie.js +74 -74
  240. data/public/javascripts/fckeditor/editor/lang/_translationstatus.txt +55 -54
  241. data/public/javascripts/fckeditor/editor/lang/af.js +1 -2
  242. data/public/javascripts/fckeditor/editor/lang/ar.js +16 -17
  243. data/public/javascripts/fckeditor/editor/lang/bg.js +1 -2
  244. data/public/javascripts/fckeditor/editor/lang/bn.js +1 -2
  245. data/public/javascripts/fckeditor/editor/lang/bs.js +1 -2
  246. data/public/javascripts/fckeditor/editor/lang/ca.js +27 -28
  247. data/public/javascripts/fckeditor/editor/lang/cs.js +18 -19
  248. data/public/javascripts/fckeditor/editor/lang/da.js +1 -2
  249. data/public/javascripts/fckeditor/editor/lang/de.js +1 -2
  250. data/public/javascripts/fckeditor/editor/lang/el.js +1 -2
  251. data/public/javascripts/fckeditor/editor/lang/en-au.js +1 -2
  252. data/public/javascripts/fckeditor/editor/lang/en-ca.js +1 -2
  253. data/public/javascripts/fckeditor/editor/lang/en-uk.js +1 -2
  254. data/public/javascripts/fckeditor/editor/lang/en.js +1 -2
  255. data/public/javascripts/fckeditor/editor/lang/eo.js +1 -2
  256. data/public/javascripts/fckeditor/editor/lang/es.js +34 -35
  257. data/public/javascripts/fckeditor/editor/lang/et.js +32 -33
  258. data/public/javascripts/fckeditor/editor/lang/eu.js +32 -33
  259. data/public/javascripts/fckeditor/editor/lang/fa.js +1 -2
  260. data/public/javascripts/fckeditor/editor/lang/fi.js +15 -16
  261. data/public/javascripts/fckeditor/editor/lang/fo.js +1 -2
  262. data/public/javascripts/fckeditor/editor/lang/fr-ca.js +515 -0
  263. data/public/javascripts/fckeditor/editor/lang/fr.js +5 -6
  264. data/public/javascripts/fckeditor/editor/lang/gl.js +1 -2
  265. data/public/javascripts/fckeditor/editor/lang/he.js +15 -16
  266. data/public/javascripts/fckeditor/editor/lang/hi.js +1 -2
  267. data/public/javascripts/fckeditor/editor/lang/hr.js +1 -2
  268. data/public/javascripts/fckeditor/editor/lang/hu.js +1 -2
  269. data/public/javascripts/fckeditor/editor/lang/it.js +1 -2
  270. data/public/javascripts/fckeditor/editor/lang/ja.js +1 -2
  271. data/public/javascripts/fckeditor/editor/lang/km.js +1 -2
  272. data/public/javascripts/fckeditor/editor/lang/ko.js +25 -26
  273. data/public/javascripts/fckeditor/editor/lang/lt.js +1 -2
  274. data/public/javascripts/fckeditor/editor/lang/lv.js +1 -2
  275. data/public/javascripts/fckeditor/editor/lang/mn.js +199 -200
  276. data/public/javascripts/fckeditor/editor/lang/ms.js +1 -2
  277. data/public/javascripts/fckeditor/editor/lang/nb.js +1 -2
  278. data/public/javascripts/fckeditor/editor/lang/nl.js +1 -2
  279. data/public/javascripts/fckeditor/editor/lang/no.js +1 -2
  280. data/public/javascripts/fckeditor/editor/lang/pl.js +51 -52
  281. data/public/javascripts/fckeditor/editor/lang/pt-br.js +16 -17
  282. data/public/javascripts/fckeditor/editor/lang/pt.js +1 -2
  283. data/public/javascripts/fckeditor/editor/lang/ro.js +1 -2
  284. data/public/javascripts/fckeditor/editor/lang/ru.js +31 -32
  285. data/public/javascripts/fckeditor/editor/lang/sk.js +1 -2
  286. data/public/javascripts/fckeditor/editor/lang/sl.js +39 -40
  287. data/public/javascripts/fckeditor/editor/lang/sr-latn.js +1 -2
  288. data/public/javascripts/fckeditor/editor/lang/sr.js +1 -2
  289. data/public/javascripts/fckeditor/editor/lang/sv.js +1 -2
  290. data/public/javascripts/fckeditor/editor/lang/th.js +1 -2
  291. data/public/javascripts/fckeditor/editor/lang/tr.js +1 -2
  292. data/public/javascripts/fckeditor/editor/lang/uk.js +1 -2
  293. data/public/javascripts/fckeditor/editor/lang/vi.js +1 -2
  294. data/public/javascripts/fckeditor/editor/lang/zh-cn.js +2 -3
  295. data/public/javascripts/fckeditor/editor/lang/zh.js +1 -2
  296. data/public/javascripts/fckeditor/editor/plugins/autogrow/fckplugin.js +9 -2
  297. data/public/javascripts/fckeditor/editor/plugins/bbcode/_sample/sample.config.js +1 -1
  298. data/public/javascripts/fckeditor/editor/plugins/bbcode/_sample/sample.html +1 -1
  299. data/public/javascripts/fckeditor/editor/plugins/bbcode/fckplugin.js +2 -2
  300. data/public/javascripts/fckeditor/editor/plugins/dragresizetable/fckplugin.js +35 -11
  301. data/public/javascripts/fckeditor/editor/plugins/placeholder/fck_placeholder.html +10 -5
  302. data/public/javascripts/fckeditor/editor/plugins/placeholder/fckplugin.js +3 -3
  303. data/public/javascripts/fckeditor/editor/plugins/placeholder/lang/de.js +2 -2
  304. data/public/javascripts/fckeditor/editor/plugins/placeholder/lang/en.js +2 -2
  305. data/public/javascripts/fckeditor/editor/{filemanager/connectors/cfm/upload.cfm → plugins/placeholder/lang/es.js} +9 -13
  306. data/public/javascripts/fckeditor/editor/plugins/placeholder/lang/fr.js +1 -1
  307. data/public/javascripts/fckeditor/editor/plugins/placeholder/lang/it.js +1 -1
  308. data/public/javascripts/fckeditor/editor/plugins/placeholder/lang/pl.js +2 -2
  309. data/public/javascripts/fckeditor/editor/plugins/simplecommands/fckplugin.js +1 -1
  310. data/public/javascripts/fckeditor/editor/plugins/tablecommands/fckplugin.js +1 -1
  311. data/public/javascripts/fckeditor/editor/skins/_fckviewstrips.html +1 -1
  312. data/public/javascripts/fckeditor/editor/skins/default/fck_dialog.css +271 -8
  313. data/public/javascripts/fckeditor/editor/skins/default/fck_editor.css +2 -2
  314. data/public/javascripts/fckeditor/editor/skins/office2003/fck_dialog.css +270 -8
  315. data/public/javascripts/fckeditor/editor/skins/office2003/fck_editor.css +2 -2
  316. data/public/javascripts/fckeditor/editor/skins/silver/fck_dialog.css +270 -11
  317. data/public/javascripts/fckeditor/editor/skins/silver/fck_editor.css +2 -2
  318. data/public/javascripts/fckeditor/fckconfig.js +58 -55
  319. data/public/javascripts/fckeditor/fckeditor.js +99 -8
  320. data/public/javascripts/fckeditor/fckeditor.py +2 -4
  321. data/public/javascripts/fckeditor/fckpackager.xml +12 -12
  322. data/public/javascripts/fckeditor/fckstyles.xml +2 -5
  323. data/public/javascripts/fckeditor/fcktemplates.xml +1 -1
  324. data/public/javascripts/fckeditor/license.txt +1 -2
  325. data/public/javascripts/prototype.js +46 -101
  326. data/public/javascripts/scriptaculous.js +28 -17
  327. data/public/stylesheets/administration.css +5 -1
  328. data/themes/dirtylicious/about.markdown +3 -0
  329. data/themes/dirtylicious/images/body.jpg +0 -0
  330. data/themes/dirtylicious/images/container.jpg +0 -0
  331. data/themes/dirtylicious/images/gravatar.gif +0 -0
  332. data/themes/dirtylicious/images/header.jpg +0 -0
  333. data/themes/dirtylicious/images/li.gif +0 -0
  334. data/themes/dirtylicious/images/main.gif +0 -0
  335. data/themes/dirtylicious/images/nav.gif +0 -0
  336. data/themes/dirtylicious/images/quote.gif +0 -0
  337. data/themes/dirtylicious/images/spinner.gif +0 -0
  338. data/themes/dirtylicious/layouts/default.html.erb +60 -0
  339. data/themes/dirtylicious/preview.png +0 -0
  340. data/themes/dirtylicious/stylesheets/application.css +327 -0
  341. data/themes/dirtylicious/views/articles/_article.html.erb +33 -0
  342. data/themes/dirtylicious/views/articles/_comment.html.erb +14 -0
  343. data/themes/dirtylicious/views/articles/_comment_form.html.erb +37 -0
  344. data/themes/dirtylicious/views/articles/_comment_list.html.erb +7 -0
  345. data/themes/dirtylicious/views/articles/_trackback.html.erb +9 -0
  346. data/themes/dirtylicious/views/articles/comment_preview.html.erb +10 -0
  347. data/themes/dirtylicious/views/articles/index.html.erb +5 -0
  348. data/themes/dirtylicious/views/articles/read.html.erb +42 -0
  349. data/themes/dirtylicious/views/shared/_search.html.erb +16 -0
  350. data/themes/standard_issue/about.markdown +5 -0
  351. data/themes/standard_issue/images/img01.gif +0 -0
  352. data/themes/standard_issue/images/img02.gif +0 -0
  353. data/themes/standard_issue/images/img03.gif +0 -0
  354. data/themes/standard_issue/images/img04.jpg +0 -0
  355. data/themes/standard_issue/images/img05.gif +0 -0
  356. data/themes/standard_issue/images/img06.gif +0 -0
  357. data/themes/standard_issue/images/img07.gif +0 -0
  358. data/themes/standard_issue/images/img08.gif +0 -0
  359. data/themes/standard_issue/images/img09.gif +0 -0
  360. data/themes/standard_issue/images/img10.gif +0 -0
  361. data/themes/standard_issue/images/spacer.gif +0 -0
  362. data/themes/standard_issue/images/spinner.gif +0 -0
  363. data/themes/standard_issue/layouts/default.html.erb +59 -0
  364. data/themes/standard_issue/preview.png +0 -0
  365. data/themes/standard_issue/stylesheets/application.css +461 -0
  366. data/themes/standard_issue/views/articles/_article.html.erb +37 -0
  367. data/themes/standard_issue/views/articles/_comment.html.erb +12 -0
  368. data/themes/standard_issue/views/articles/_comment_form.html.erb +48 -0
  369. data/themes/standard_issue/views/articles/_comment_list.html.erb +7 -0
  370. data/themes/standard_issue/views/articles/_trackback.html.erb +9 -0
  371. data/themes/standard_issue/views/articles/comment_preview.html.erb +10 -0
  372. data/themes/standard_issue/views/articles/index.html.erb +5 -0
  373. data/themes/standard_issue/views/articles/read.html.erb +42 -0
  374. data/themes/standard_issue/views/shared/_search.html.erb +17 -0
  375. data/themes/standard_issue/views/theme/static_view_test.html.erb +1 -0
  376. data/themes/typographic/images/accept.gif +0 -0
  377. data/themes/typographic/images/accept50.gif +0 -0
  378. data/themes/typographic/images/bg_white.gif +0 -0
  379. data/themes/typographic/images/bg_wrapper.gif +0 -0
  380. data/themes/typographic/images/bullet_bottom.gif +0 -0
  381. data/themes/typographic/images/bullet_right.gif +0 -0
  382. data/themes/typographic/images/email_open.gif +0 -0
  383. data/themes/typographic/images/email_open50.gif +0 -0
  384. data/themes/typographic/images/meta.gif +0 -0
  385. data/themes/typographic/images/page_edit.gif +0 -0
  386. data/themes/typographic/images/page_edit50.gif +0 -0
  387. data/themes/typographic/images/spinner.gif +0 -0
  388. data/themes/typographic/images/tag.gif +0 -0
  389. data/themes/typographic/images/user.gif +0 -0
  390. data/themes/typographic/images/user50.gif +0 -0
  391. data/themes/typographic/images/world_link.gif +0 -0
  392. data/themes/typographic/images/world_link50.gif +0 -0
  393. data/themes/typographic/layouts/default.html.erb +5 -2
  394. data/themes/typographic/stylesheets/ie6.css +86 -0
  395. data/themes/typographic/views/articles/_article.html.erb +2 -2
  396. data/vendor/plugins/fckeditor/README +0 -7
  397. data/vendor/plugins/fckeditor/app/helpers/fckeditor_helper.rb +1 -3
  398. data/vendor/plugins/fckeditor/lib/fckeditor_version.rb +2 -2
  399. data/vendor/plugins/fckeditor/tasks/fckeditor_tasks.rake +1 -1
  400. data/vendor/plugins/fckeditor/test/fckeditor_test.rb +8 -0
  401. metadata +98 -66
  402. data/CHANGES-5.0.4 +0 -33
  403. data/SIDEBARS +0 -39
  404. data/app/views/admin/content/_quick_post.html.erb +0 -20
  405. data/db/schema.rb +0 -224
  406. data/public/.DS_Store +0 -0
  407. data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/basexml.asp +0 -62
  408. data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/class_upload.asp +0 -353
  409. data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/commands.asp +0 -198
  410. data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/config.asp +0 -128
  411. data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/connector.asp +0 -88
  412. data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/io.asp +0 -222
  413. data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/upload.asp +0 -61
  414. data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/util.asp +0 -55
  415. data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/ImageObject.cfc +0 -273
  416. data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf5_connector.cfm +0 -315
  417. data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf5_upload.cfm +0 -296
  418. data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_basexml.cfm +0 -68
  419. data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_commands.cfm +0 -225
  420. data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_connector.cfm +0 -89
  421. data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_io.cfm +0 -288
  422. data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_upload.cfm +0 -68
  423. data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_util.cfm +0 -132
  424. data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/config.cfm +0 -183
  425. data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/connector.cfm +0 -31
  426. data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/image.cfc +0 -1325
  427. data/public/javascripts/fckeditor/editor/filemanager/connectors/lasso/config.lasso +0 -65
  428. data/public/javascripts/fckeditor/editor/filemanager/connectors/lasso/connector.lasso +0 -257
  429. data/public/javascripts/fckeditor/editor/filemanager/connectors/lasso/upload.lasso +0 -157
  430. data/public/javascripts/fckeditor/editor/filemanager/connectors/php/basexml.php +0 -93
  431. data/public/javascripts/fckeditor/editor/filemanager/connectors/php/commands.php +0 -245
  432. data/public/javascripts/fckeditor/editor/filemanager/connectors/php/config.php +0 -140
  433. data/public/javascripts/fckeditor/editor/filemanager/connectors/php/connector.php +0 -87
  434. data/public/javascripts/fckeditor/editor/filemanager/connectors/php/io.php +0 -272
  435. data/public/javascripts/fckeditor/editor/filemanager/connectors/php/phpcompat.php +0 -17
  436. data/public/javascripts/fckeditor/editor/filemanager/connectors/php/upload.php +0 -59
  437. data/public/javascripts/fckeditor/editor/filemanager/connectors/php/util.php +0 -185
  438. data/public/javascripts/fckeditor/fckeditor.afp +0 -161
  439. data/public/javascripts/fckeditor/fckeditor.asp +0 -235
  440. data/public/javascripts/fckeditor/fckeditor.cfc +0 -273
  441. data/public/javascripts/fckeditor/fckeditor.cfm +0 -210
  442. data/public/javascripts/fckeditor/fckeditor.lasso +0 -112
  443. data/test/mocks/themes/typographic/.DS_Store +0 -0
  444. data/themes/typographic/.DS_Store +0 -0
  445. data/vendor/plugins/audioscrobbler_sidebar/MAINTAINERS +0 -26
  446. data/vendor/plugins/audioscrobbler_sidebar/MIT-LICENSE +0 -21
  447. data/vendor/plugins/audioscrobbler_sidebar/README +0 -27
  448. data/vendor/plugins/audioscrobbler_sidebar/Rakefile +0 -22
  449. data/vendor/plugins/audioscrobbler_sidebar/init.rb +0 -5
  450. data/vendor/plugins/audioscrobbler_sidebar/lib/audioscrobbler.rb +0 -54
  451. data/vendor/plugins/audioscrobbler_sidebar/lib/audioscrobbler_sidebar.rb +0 -13
  452. data/vendor/plugins/audioscrobbler_sidebar/test/audioscrobbler_sidebar_test.rb +0 -8
  453. data/vendor/plugins/audioscrobbler_sidebar/views/content.rhtml +0 -10
@@ -1,6 +1,6 @@
1
1
  /*
2
2
  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
- * Copyright (C) 2003-2007 Frederico Caldeira Knabben
3
+ * Copyright (C) 2003-2008 Frederico Caldeira Knabben
4
4
  *
5
5
  * == BEGIN LICENSE ==
6
6
  *
@@ -359,7 +359,6 @@ DlgPasteMsg2 : "Please paste inside the following box using the keyboard (<stron
359
359
  DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING
360
360
  DlgPasteIgnoreFont : "Ignore Font Face definitions", //MISSING
361
361
  DlgPasteRemoveStyles : "Remove Styles definitions", //MISSING
362
- DlgPasteCleanBox : "Clean Up Box", //MISSING
363
362
 
364
363
  // Color Picker
365
364
  ColorAutomatic : "Otomatik",
@@ -1,6 +1,6 @@
1
1
  /*
2
2
  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
- * Copyright (C) 2003-2007 Frederico Caldeira Knabben
3
+ * Copyright (C) 2003-2008 Frederico Caldeira Knabben
4
4
  *
5
5
  * == BEGIN LICENSE ==
6
6
  *
@@ -359,7 +359,6 @@ DlgPasteMsg2 : "Vennligst lim inn i den følgende boksen med tastaturet (<STRONG
359
359
  DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING
360
360
  DlgPasteIgnoreFont : "Fjern skrifttyper",
361
361
  DlgPasteRemoveStyles : "Fjern stildefinisjoner",
362
- DlgPasteCleanBox : "Tøm boksen",
363
362
 
364
363
  // Color Picker
365
364
  ColorAutomatic : "Automatisk",
@@ -1,6 +1,6 @@
1
1
  /*
2
2
  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
- * Copyright (C) 2003-2007 Frederico Caldeira Knabben
3
+ * Copyright (C) 2003-2008 Frederico Caldeira Knabben
4
4
  *
5
5
  * == BEGIN LICENSE ==
6
6
  *
@@ -359,7 +359,6 @@ DlgPasteMsg2 : "Plak de tekst in het volgende vak gebruik makend van je toetsten
359
359
  DlgPasteSec : "Door de beveiligingsinstellingen van uw browser is het niet mogelijk om direct vanuit het klembord in de editor te plakken. Middels opnieuw plakken in dit venster kunt u de tekst alsnog plakken in de editor.",
360
360
  DlgPasteIgnoreFont : "Negeer \"Font Face\"-definities",
361
361
  DlgPasteRemoveStyles : "Verwijder \"Style\"-definities",
362
- DlgPasteCleanBox : "Vak opschonen",
363
362
 
364
363
  // Color Picker
365
364
  ColorAutomatic : "Automatisch",
@@ -1,6 +1,6 @@
1
1
  /*
2
2
  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
- * Copyright (C) 2003-2007 Frederico Caldeira Knabben
3
+ * Copyright (C) 2003-2008 Frederico Caldeira Knabben
4
4
  *
5
5
  * == BEGIN LICENSE ==
6
6
  *
@@ -359,7 +359,6 @@ DlgPasteMsg2 : "Vennligst lim inn i den følgende boksen med tastaturet (<STRONG
359
359
  DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING
360
360
  DlgPasteIgnoreFont : "Fjern skrifttyper",
361
361
  DlgPasteRemoveStyles : "Fjern stildefinisjoner",
362
- DlgPasteCleanBox : "Tøm boksen",
363
362
 
364
363
  // Color Picker
365
364
  ColorAutomatic : "Automatisk",
@@ -1,6 +1,6 @@
1
1
  /*
2
2
  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
- * Copyright (C) 2003-2007 Frederico Caldeira Knabben
3
+ * Copyright (C) 2003-2008 Frederico Caldeira Knabben
4
4
  *
5
5
  * == BEGIN LICENSE ==
6
6
  *
@@ -45,7 +45,7 @@ InsertLinkLbl : "Hiperłącze",
45
45
  InsertLink : "Wstaw/edytuj hiperłącze",
46
46
  RemoveLink : "Usuń hiperłącze",
47
47
  Anchor : "Wstaw/edytuj kotwicę",
48
- AnchorDelete : "Remove Anchor", //MISSING
48
+ AnchorDelete : "Usuń kotwicę",
49
49
  InsertImageLbl : "Obrazek",
50
50
  InsertImage : "Wstaw/edytuj obrazek",
51
51
  InsertFlashLbl : "Flash",
@@ -71,7 +71,7 @@ RightJustify : "Wyrównaj do prawej",
71
71
  BlockJustify : "Wyrównaj do lewej i prawej",
72
72
  DecreaseIndent : "Zmniejsz wcięcie",
73
73
  IncreaseIndent : "Zwiększ wcięcie",
74
- Blockquote : "Blockquote", //MISSING
74
+ Blockquote : "Cytat",
75
75
  Undo : "Cofnij",
76
76
  Redo : "Ponów",
77
77
  NumberedListLbl : "Lista numerowana",
@@ -95,37 +95,37 @@ PageBreakLbl : "Odstęp",
95
95
  PageBreak : "Wstaw odstęp",
96
96
 
97
97
  Form : "Formularz",
98
- Checkbox : "Checkbox",
99
- RadioButton : "Pole wyboru",
98
+ Checkbox : "Pole wyboru (checkbox)",
99
+ RadioButton : "Pole wyboru (radio)",
100
100
  TextField : "Pole tekstowe",
101
101
  Textarea : "Obszar tekstowy",
102
102
  HiddenField : "Pole ukryte",
103
103
  Button : "Przycisk",
104
104
  SelectionField : "Lista wyboru",
105
- ImageButton : "Przycisk obrazek",
105
+ ImageButton : "Przycisk-obrazek",
106
106
 
107
107
  FitWindow : "Maksymalizuj rozmiar edytora",
108
- ShowBlocks : "Show Blocks", //MISSING
108
+ ShowBlocks : "Pokaż bloki",
109
109
 
110
110
  // Context Menu
111
111
  EditLink : "Edytuj hiperłącze",
112
112
  CellCM : "Komórka",
113
113
  RowCM : "Wiersz",
114
114
  ColumnCM : "Kolumna",
115
- InsertRowAfter : "Insert Row After", //MISSING
116
- InsertRowBefore : "Insert Row Before", //MISSING
115
+ InsertRowAfter : "Wstaw wiersz poniżej",
116
+ InsertRowBefore : "Wstaw wiersz powyżej",
117
117
  DeleteRows : "Usuń wiersze",
118
- InsertColumnAfter : "Insert Column After", //MISSING
119
- InsertColumnBefore : "Insert Column Before", //MISSING
118
+ InsertColumnAfter : "Wstaw kolumnę z prawej",
119
+ InsertColumnBefore : "Wstaw kolumnę z lewej",
120
120
  DeleteColumns : "Usuń kolumny",
121
- InsertCellAfter : "Insert Cell After", //MISSING
122
- InsertCellBefore : "Insert Cell Before", //MISSING
121
+ InsertCellAfter : "Wstaw komórkę z prawej",
122
+ InsertCellBefore : "Wstaw komórkę z lewej",
123
123
  DeleteCells : "Usuń komórki",
124
124
  MergeCells : "Połącz komórki",
125
- MergeRight : "Merge Right", //MISSING
126
- MergeDown : "Merge Down", //MISSING
127
- HorizontalSplitCell : "Split Cell Horizontally", //MISSING
128
- VerticalSplitCell : "Split Cell Vertically", //MISSING
125
+ MergeRight : "Połącz z komórką z prawej",
126
+ MergeDown : "Połącz z komórką poniżej",
127
+ HorizontalSplitCell : "Podziel komórkę poziomo",
128
+ VerticalSplitCell : "Podziel komórkę pionowo",
129
129
  TableDelete : "Usuń tabelę",
130
130
  CellProperties : "Właściwości komórki",
131
131
  TableProperties : "Właściwości tabeli",
@@ -134,9 +134,9 @@ FlashProperties : "Właściwości elementu Flash",
134
134
 
135
135
  AnchorProp : "Właściwości kotwicy",
136
136
  ButtonProp : "Właściwości przycisku",
137
- CheckboxProp : "Checkbox - właściwości",
137
+ CheckboxProp : "Właściwości pola wyboru (checkbox)",
138
138
  HiddenFieldProp : "Właściwości pola ukrytego",
139
- RadioButtonProp : "Właściwości pola wyboru",
139
+ RadioButtonProp : "Właściwości pola wyboru (radio)",
140
140
  ImageButtonProp : "Właściwości przycisku obrazka",
141
141
  TextFieldProp : "Właściwości pola tekstowego",
142
142
  SelectionFieldProp : "Właściwości listy wyboru",
@@ -155,8 +155,8 @@ UnknownCommand : "Nieznana komenda \"%1\"",
155
155
  NotImplemented : "Komenda niezaimplementowana",
156
156
  UnknownToolbarSet : "Pasek narzędzi \"%1\" nie istnieje",
157
157
  NoActiveX : "Ustawienia zabezpieczeń twojej przeglądarki mogą ograniczyć niektóre funkcje edytora. Musisz włączyć opcję \"Uruchamianie formantów Activex i dodatków plugin\". W przeciwnym wypadku mogą pojawiać się błędy.",
158
- BrowseServerBlocked : "Okno menadżera plików nie może zostać otwarte. Upewnij się, że wszystkie blokady popup są wyłączone.",
159
- DialogBlocked : "Nie można otworzyć okna dialogowego. Upewnij się, że wszystkie blokady popup są wyłączone.",
158
+ BrowseServerBlocked : "Nie można otworzyć okno menadżera plików. Upewnij się, że wszystkie blokady wyskakujących okienek są wyłączone.",
159
+ DialogBlocked : "Nie można otworzyć okna dialogowego. Upewnij się, że wszystkie blokady wyskakujących okienek są wyłączone.",
160
160
 
161
161
  // Dialogs
162
162
  DlgBtnOK : "OK",
@@ -169,7 +169,7 @@ DlgInfoTab : "Informacje",
169
169
  DlgAlertUrl : "Proszę podać URL",
170
170
 
171
171
  // General Dialogs Labels
172
- DlgGenNotSet : "<nieustawione>",
172
+ DlgGenNotSet : "<nie ustawione>",
173
173
  DlgGenId : "Id",
174
174
  DlgGenLangDir : "Kierunek tekstu",
175
175
  DlgGenLangDirLtr : "Od lewej do prawej (LTR)",
@@ -178,17 +178,17 @@ DlgGenLangCode : "Kod języka",
178
178
  DlgGenAccessKey : "Klawisz dostępu",
179
179
  DlgGenName : "Nazwa",
180
180
  DlgGenTabIndex : "Indeks tabeli",
181
- DlgGenLongDescr : "Long Description URL",
182
- DlgGenClass : "Stylesheet Classes",
183
- DlgGenTitle : "Advisory Title",
184
- DlgGenContType : "Advisory Content Type",
185
- DlgGenLinkCharset : "Linked Resource Charset",
181
+ DlgGenLongDescr : "Długi opis hiperłącza",
182
+ DlgGenClass : "Nazwa klasy CSS",
183
+ DlgGenTitle : "Opis obiektu docelowego",
184
+ DlgGenContType : "Typ MIME obiektu docelowego",
185
+ DlgGenLinkCharset : "Kodowanie znaków obiektu docelowego",
186
186
  DlgGenStyle : "Styl",
187
187
 
188
188
  // Image Dialog
189
189
  DlgImgTitle : "Właściwości obrazka",
190
190
  DlgImgInfoTab : "Informacje o obrazku",
191
- DlgImgBtnUpload : "Syślij",
191
+ DlgImgBtnUpload : "Wyślij",
192
192
  DlgImgURL : "Adres URL",
193
193
  DlgImgUpload : "Wyślij",
194
194
  DlgImgAlt : "Tekst zastępczy",
@@ -211,7 +211,7 @@ DlgImgAlignTextTop : "Do góry tekstu",
211
211
  DlgImgAlignTop : "Do góry",
212
212
  DlgImgPreview : "Podgląd",
213
213
  DlgImgAlertUrl : "Podaj adres obrazka.",
214
- DlgImgLinkTab : "Link",
214
+ DlgImgLinkTab : "Hiperłącze",
215
215
 
216
216
  // Flash Dialog
217
217
  DlgFlashTitle : "Właściwości elementu Flash",
@@ -242,7 +242,7 @@ DlgLnkNoAnchors : "(W dokumencie nie zdefiniowano żadnych etykiet)",
242
242
  DlgLnkEMail : "Adres e-mail",
243
243
  DlgLnkEMailSubject : "Temat",
244
244
  DlgLnkEMailBody : "Treść",
245
- DlgLnkUpload : "Upload",
245
+ DlgLnkUpload : "Wyślij",
246
246
  DlgLnkBtnUpload : "Wyślij",
247
247
 
248
248
  DlgLnkTarget : "Cel",
@@ -271,7 +271,7 @@ DlgLnkPopTop : "Pozycja w pionie",
271
271
  DlnLnkMsgNoUrl : "Podaj adres URL",
272
272
  DlnLnkMsgNoEMail : "Podaj adres e-mail",
273
273
  DlnLnkMsgNoAnchor : "Wybierz etykietę",
274
- DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", //MISSING
274
+ DlnLnkMsgInvPopName : "Nazwa wyskakującego okienka musi zaczynać się od znaku alfanumerycznego i nie może zawierać spacji",
275
275
 
276
276
  // Color Dialog
277
277
  DlgColorTitle : "Wybierz kolor",
@@ -332,7 +332,7 @@ DlgCellBorderColor : "Kolor ramki",
332
332
  DlgCellBtnSelect : "Wybierz...",
333
333
 
334
334
  // Find and Replace Dialog
335
- DlgFindAndReplaceTitle : "Find and Replace", //MISSING
335
+ DlgFindAndReplaceTitle : "Znajdź i zamień",
336
336
 
337
337
  // Find Dialog
338
338
  DlgFindTitle : "Znajdź",
@@ -356,10 +356,9 @@ PasteAsText : "Wklej jako czysty tekst",
356
356
  PasteFromWord : "Wklej z Worda",
357
357
 
358
358
  DlgPasteMsg2 : "Proszę wkleić w poniższym polu używając klawiaturowego skrótu (<STRONG>Ctrl+V</STRONG>) i kliknąć <STRONG>OK</STRONG>.",
359
- DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING
359
+ DlgPasteSec : "Zabezpieczenia przeglądarki uniemożliwiają wklejenie danych bezpośrednio do edytora. Proszę dane wkleić ponownie w tym okienku.",
360
360
  DlgPasteIgnoreFont : "Ignoruj definicje 'Font Face'",
361
361
  DlgPasteRemoveStyles : "Usuń definicje Stylów",
362
- DlgPasteCleanBox : "Wyczyść",
363
362
 
364
363
  // Color Picker
365
364
  ColorAutomatic : "Automatycznie",
@@ -380,7 +379,7 @@ DlgSpellBtnIgnore : "Ignoruj",
380
379
  DlgSpellBtnIgnoreAll : "Ignoruj wszystkie",
381
380
  DlgSpellBtnReplace : "Zmień",
382
381
  DlgSpellBtnReplaceAll : "Zmień wszystkie",
383
- DlgSpellBtnUndo : "Undo",
382
+ DlgSpellBtnUndo : "Cofnij",
384
383
  DlgSpellNoSuggestions : "- Brak sugestii -",
385
384
  DlgSpellProgress : "Trwa sprawdzanie ...",
386
385
  DlgSpellNoMispell : "Sprawdzanie zakończone: nie znaleziono błędów",
@@ -393,14 +392,14 @@ IeSpellDownload : "Słownik nie jest zainstalowany. Chcesz go ściągnąć?",
393
392
  // Button Dialog
394
393
  DlgButtonText : "Tekst (Wartość)",
395
394
  DlgButtonType : "Typ",
396
- DlgButtonTypeBtn : "Button", //MISSING
397
- DlgButtonTypeSbm : "Submit", //MISSING
398
- DlgButtonTypeRst : "Reset", //MISSING
395
+ DlgButtonTypeBtn : "Przycisk",
396
+ DlgButtonTypeSbm : "Wyślij",
397
+ DlgButtonTypeRst : "Wyzeruj",
399
398
 
400
399
  // Checkbox and Radio Button Dialogs
401
400
  DlgCheckboxName : "Nazwa",
402
401
  DlgCheckboxValue : "Wartość",
403
- DlgCheckboxSelected : "Zaznaczony",
402
+ DlgCheckboxSelected : "Zaznaczone",
404
403
 
405
404
  // Form Dialog
406
405
  DlgFormName : "Nazwa",
@@ -444,7 +443,7 @@ DlgHiddenValue : "Wartość",
444
443
  // Bulleted List Dialog
445
444
  BulletedListProp : "Właściwości listy punktowanej",
446
445
  NumberedListProp : "Właściwości listy numerowanej",
447
- DlgLstStart : "Start", //MISSING
446
+ DlgLstStart : "Początek",
448
447
  DlgLstType : "Typ",
449
448
  DlgLstTypeCircle : "Koło",
450
449
  DlgLstTypeDisc : "Dysk",
@@ -467,18 +466,18 @@ DlgDocLangDirLTR : "Od lewej do prawej (LTR)",
467
466
  DlgDocLangDirRTL : "Od prawej do lewej (RTL)",
468
467
  DlgDocLangCode : "Kod języka",
469
468
  DlgDocCharSet : "Kodowanie znaków",
470
- DlgDocCharSetCE : "Central European", //MISSING
471
- DlgDocCharSetCT : "Chinese Traditional (Big5)", //MISSING
472
- DlgDocCharSetCR : "Cyrillic", //MISSING
473
- DlgDocCharSetGR : "Greek", //MISSING
474
- DlgDocCharSetJP : "Japanese", //MISSING
475
- DlgDocCharSetKR : "Korean", //MISSING
476
- DlgDocCharSetTR : "Turkish", //MISSING
477
- DlgDocCharSetUN : "Unicode (UTF-8)", //MISSING
478
- DlgDocCharSetWE : "Western European", //MISSING
469
+ DlgDocCharSetCE : "Środkowoeuropejskie",
470
+ DlgDocCharSetCT : "Chińskie tradycyjne (Big5)",
471
+ DlgDocCharSetCR : "Cyrylica",
472
+ DlgDocCharSetGR : "Greckie",
473
+ DlgDocCharSetJP : "Japońskie",
474
+ DlgDocCharSetKR : "Koreańskie",
475
+ DlgDocCharSetTR : "Tureckie",
476
+ DlgDocCharSetUN : "Unicode (UTF-8)",
477
+ DlgDocCharSetWE : "Zachodnioeuropejskie",
479
478
  DlgDocCharSetOther : "Inne kodowanie znaków",
480
479
 
481
- DlgDocDocType : "Nagłowek typu dokumentu",
480
+ DlgDocDocType : "Nagłówek typu dokumentu",
482
481
  DlgDocDocTypeOther : "Inny typ dokumentu",
483
482
  DlgDocIncXHTML : "Dołącz deklarację XHTML",
484
483
  DlgDocBgColor : "Kolor tła",
@@ -496,7 +495,7 @@ DlgDocMaBottom : "Dolny",
496
495
  DlgDocMeIndex : "Słowa kluczowe (oddzielone przecinkami)",
497
496
  DlgDocMeDescr : "Opis dokumentu",
498
497
  DlgDocMeAuthor : "Autor",
499
- DlgDocMeCopy : "Copyright",
498
+ DlgDocMeCopy : "Prawa autorskie",
500
499
  DlgDocPreview : "Podgląd",
501
500
 
502
501
  // Templates Dialog
@@ -505,7 +504,7 @@ DlgTemplatesTitle : "Szablony zawartości",
505
504
  DlgTemplatesSelMsg : "Wybierz szablon do otwarcia w edytorze<br>(obecna zawartość okna edytora zostanie utracona):",
506
505
  DlgTemplatesLoading : "Ładowanie listy szablonów. Proszę czekać...",
507
506
  DlgTemplatesNoTpl : "(Brak zdefiniowanych szablonów)",
508
- DlgTemplatesReplace : "Replace actual contents", //MISSING
507
+ DlgTemplatesReplace : "Zastąp aktualną zawartość",
509
508
 
510
509
  // About Dialog
511
510
  DlgAboutAboutTab : "O ...",
@@ -1,6 +1,6 @@
1
1
  /*
2
2
  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
- * Copyright (C) 2003-2007 Frederico Caldeira Knabben
3
+ * Copyright (C) 2003-2008 Frederico Caldeira Knabben
4
4
  *
5
5
  * == BEGIN LICENSE ==
6
6
  *
@@ -45,7 +45,7 @@ InsertLinkLbl : "Hiperlink",
45
45
  InsertLink : "Inserir/Editar Hiperlink",
46
46
  RemoveLink : "Remover Hiperlink",
47
47
  Anchor : "Inserir/Editar Âncora",
48
- AnchorDelete : "Remove Anchor", //MISSING
48
+ AnchorDelete : "Remover Âncora",
49
49
  InsertImageLbl : "Figura",
50
50
  InsertImage : "Inserir/Editar Figura",
51
51
  InsertFlashLbl : "Flash",
@@ -71,7 +71,7 @@ RightJustify : "Alinhar Direita",
71
71
  BlockJustify : "Justificado",
72
72
  DecreaseIndent : "Diminuir Recuo",
73
73
  IncreaseIndent : "Aumentar Recuo",
74
- Blockquote : "Blockquote", //MISSING
74
+ Blockquote : "Recuo",
75
75
  Undo : "Desfazer",
76
76
  Redo : "Refazer",
77
77
  NumberedListLbl : "Numeração",
@@ -105,27 +105,27 @@ SelectionField : "Caixa de Listagem",
105
105
  ImageButton : "Botão de Imagem",
106
106
 
107
107
  FitWindow : "Maximizar o tamanho do editor",
108
- ShowBlocks : "Show Blocks", //MISSING
108
+ ShowBlocks : "Mostrar blocos",
109
109
 
110
110
  // Context Menu
111
111
  EditLink : "Editar Hiperlink",
112
112
  CellCM : "Célula",
113
113
  RowCM : "Linha",
114
114
  ColumnCM : "Coluna",
115
- InsertRowAfter : "Insert Row After", //MISSING
116
- InsertRowBefore : "Insert Row Before", //MISSING
115
+ InsertRowAfter : "Inserir linha abaixo",
116
+ InsertRowBefore : "Inserir linha acima",
117
117
  DeleteRows : "Remover Linhas",
118
- InsertColumnAfter : "Insert Column After", //MISSING
119
- InsertColumnBefore : "Insert Column Before", //MISSING
118
+ InsertColumnAfter : "Inserir coluna à direita",
119
+ InsertColumnBefore : "Inserir coluna à esquerda",
120
120
  DeleteColumns : "Remover Colunas",
121
- InsertCellAfter : "Insert Cell After", //MISSING
122
- InsertCellBefore : "Insert Cell Before", //MISSING
121
+ InsertCellAfter : "Inserir célula à direita",
122
+ InsertCellBefore : "Inserir célula à esquerda",
123
123
  DeleteCells : "Remover Células",
124
124
  MergeCells : "Mesclar Células",
125
- MergeRight : "Merge Right", //MISSING
126
- MergeDown : "Merge Down", //MISSING
127
- HorizontalSplitCell : "Split Cell Horizontally", //MISSING
128
- VerticalSplitCell : "Split Cell Vertically", //MISSING
125
+ MergeRight : "Mesclar com célula à direita",
126
+ MergeDown : "Mesclar com célula abaixo",
127
+ HorizontalSplitCell : "Dividir célula horizontalmente",
128
+ VerticalSplitCell : "Dividir célula verticalmente",
129
129
  TableDelete : "Apagar Tabela",
130
130
  CellProperties : "Formatar Célula",
131
131
  TableProperties : "Formatar Tabela",
@@ -332,7 +332,7 @@ DlgCellBorderColor : "Cor da Borda",
332
332
  DlgCellBtnSelect : "Selecionar...",
333
333
 
334
334
  // Find and Replace Dialog
335
- DlgFindAndReplaceTitle : "Find and Replace", //MISSING
335
+ DlgFindAndReplaceTitle : "Localizar e Substituir",
336
336
 
337
337
  // Find Dialog
338
338
  DlgFindTitle : "Localizar...",
@@ -356,10 +356,9 @@ PasteAsText : "Colar como Texto sem Formatação",
356
356
  PasteFromWord : "Colar do Word",
357
357
 
358
358
  DlgPasteMsg2 : "Transfira o link usado no box usando o teclado com (<STRONG>Ctrl+V</STRONG>) e <STRONG>OK</STRONG>.",
359
- DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING
359
+ DlgPasteSec : "As configurações de segurança do seu navegador não permitem que o editor acesse os dados da área de transferência diretamente. Por favor cole o conteúdo novamente nesta janela.",
360
360
  DlgPasteIgnoreFont : "Ignorar definições de fonte",
361
361
  DlgPasteRemoveStyles : "Remove definições de estilo",
362
- DlgPasteCleanBox : "Limpar Box",
363
362
 
364
363
  // Color Picker
365
364
  ColorAutomatic : "Automático",
@@ -1,6 +1,6 @@
1
1
  /*
2
2
  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
- * Copyright (C) 2003-2007 Frederico Caldeira Knabben
3
+ * Copyright (C) 2003-2008 Frederico Caldeira Knabben
4
4
  *
5
5
  * == BEGIN LICENSE ==
6
6
  *
@@ -359,7 +359,6 @@ DlgPasteMsg2 : "Por favor, cole dentro da seguinte caixa usando o teclado (<STRO
359
359
  DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING
360
360
  DlgPasteIgnoreFont : "Ignorar da definições do Tipo de Letra ",
361
361
  DlgPasteRemoveStyles : "Remover as definições de Estilos",
362
- DlgPasteCleanBox : "Caixa de Limpeza",
363
362
 
364
363
  // Color Picker
365
364
  ColorAutomatic : "Automático",
@@ -1,6 +1,6 @@
1
1
  /*
2
2
  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
- * Copyright (C) 2003-2007 Frederico Caldeira Knabben
3
+ * Copyright (C) 2003-2008 Frederico Caldeira Knabben
4
4
  *
5
5
  * == BEGIN LICENSE ==
6
6
  *
@@ -359,7 +359,6 @@ DlgPasteMsg2 : "Vă rugăm adăugaţi în căsuţa următoare folosind tastatura
359
359
  DlgPasteSec : "Din cauza setărilor de securitate ale programului dvs. cu care navigaţi pe internet (browser), editorul nu poate accesa direct datele din clipboard. Va trebui să adăugaţi din nou datele în această fereastră.",
360
360
  DlgPasteIgnoreFont : "Ignoră definiţiile Font Face",
361
361
  DlgPasteRemoveStyles : "Şterge definiţiile stilurilor",
362
- DlgPasteCleanBox : "Şterge căsuţa",
363
362
 
364
363
  // Color Picker
365
364
  ColorAutomatic : "Automatic",
@@ -1,6 +1,6 @@
1
1
  /*
2
2
  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
- * Copyright (C) 2003-2007 Frederico Caldeira Knabben
3
+ * Copyright (C) 2003-2008 Frederico Caldeira Knabben
4
4
  *
5
5
  * == BEGIN LICENSE ==
6
6
  *
@@ -45,7 +45,7 @@ InsertLinkLbl : "Ссылка",
45
45
  InsertLink : "Вставить/Редактировать ссылку",
46
46
  RemoveLink : "Убрать ссылку",
47
47
  Anchor : "Вставить/Редактировать якорь",
48
- AnchorDelete : "Remove Anchor", //MISSING
48
+ AnchorDelete : "Убрать якорь",
49
49
  InsertImageLbl : "Изображение",
50
50
  InsertImage : "Вставить/Редактировать изображение",
51
51
  InsertFlashLbl : "Flash",
@@ -71,7 +71,7 @@ RightJustify : "По правому краю",
71
71
  BlockJustify : "По ширине",
72
72
  DecreaseIndent : "Уменьшить отступ",
73
73
  IncreaseIndent : "Увеличить отступ",
74
- Blockquote : "Blockquote", //MISSING
74
+ Blockquote : "Цитата",
75
75
  Undo : "Отменить",
76
76
  Redo : "Повторить",
77
77
  NumberedListLbl : "Нумерованный список",
@@ -105,27 +105,27 @@ SelectionField : "Список",
105
105
  ImageButton : "Кнопка с изображением",
106
106
 
107
107
  FitWindow : "Развернуть окно редактора",
108
- ShowBlocks : "Show Blocks", //MISSING
108
+ ShowBlocks : "Показать блоки",
109
109
 
110
110
  // Context Menu
111
111
  EditLink : "Вставить ссылку",
112
112
  CellCM : "Ячейка",
113
113
  RowCM : "Строка",
114
114
  ColumnCM : "Колонка",
115
- InsertRowAfter : "Insert Row After", //MISSING
116
- InsertRowBefore : "Insert Row Before", //MISSING
115
+ InsertRowAfter : "Вставить строку после",
116
+ InsertRowBefore : "Вставить строку до",
117
117
  DeleteRows : "Удалить строки",
118
- InsertColumnAfter : "Insert Column After", //MISSING
119
- InsertColumnBefore : "Insert Column Before", //MISSING
118
+ InsertColumnAfter : "Вставить колонку после",
119
+ InsertColumnBefore : "Вставить колонку до",
120
120
  DeleteColumns : "Удалить колонки",
121
- InsertCellAfter : "Insert Cell After", //MISSING
122
- InsertCellBefore : "Insert Cell Before", //MISSING
121
+ InsertCellAfter : "Вставить ячейку после",
122
+ InsertCellBefore : "Вставить ячейку до",
123
123
  DeleteCells : "Удалить ячейки",
124
124
  MergeCells : "Соединить ячейки",
125
- MergeRight : "Merge Right", //MISSING
126
- MergeDown : "Merge Down", //MISSING
127
- HorizontalSplitCell : "Split Cell Horizontally", //MISSING
128
- VerticalSplitCell : "Split Cell Vertically", //MISSING
125
+ MergeRight : "Соединить вправо",
126
+ MergeDown : "Соединить вниз",
127
+ HorizontalSplitCell : "Разбить ячейку горизонтально",
128
+ VerticalSplitCell : "Разбить ячейку вертикально",
129
129
  TableDelete : "Удалить таблицу",
130
130
  CellProperties : "Свойства ячейки",
131
131
  TableProperties : "Свойства таблицы",
@@ -146,7 +146,7 @@ FormProp : "Свойства формы",
146
146
  FontFormats : "Нормальный;Форматированный;Адрес;Заголовок 1;Заголовок 2;Заголовок 3;Заголовок 4;Заголовок 5;Заголовок 6;Нормальный (DIV)",
147
147
 
148
148
  // Alerts and Messages
149
- ProcessingXHTML : "Обработка XHTML. Пожалуйста подождите...",
149
+ ProcessingXHTML : "Обработка XHTML. Пожалуйста, подождите...",
150
150
  Done : "Сделано",
151
151
  PasteWordConfirm : "Текст, который вы хотите вставить, похож на копируемый из Word. Вы хотите очистить его перед вставкой?",
152
152
  NotCompatiblePaste : "Эта команда доступна для Internet Explorer версии 5.5 или выше. Вы хотите вставить без очистки?",
@@ -156,7 +156,7 @@ NotImplemented : "Команда не реализована",
156
156
  UnknownToolbarSet : "Панель инструментов \"%1\" не существует",
157
157
  NoActiveX : "Настройки безопасности вашего браузера могут ограничивать некоторые свойства редактора. Вы должны включить опцию \"Запускать элементы управления ActiveX и плугины\". Вы можете видеть ошибки и замечать отсутствие возможностей.",
158
158
  BrowseServerBlocked : "Ресурсы браузера не могут быть открыты. Проверьте что блокировки всплывающих окон выключены.",
159
- DialogBlocked : "Не возможно открыть окно диалога. Проверьте что блокировки всплывающих окон выключены.",
159
+ DialogBlocked : "Невозможно открыть окно диалога. Проверьте что блокировки всплывающих окон выключены.",
160
160
 
161
161
  // Dialogs
162
162
  DlgBtnOK : "ОК",
@@ -166,7 +166,7 @@ DlgBtnBrowseServer : "Просмотреть на сервере",
166
166
  DlgAdvancedTag : "Расширенный",
167
167
  DlgOpOther : "<Другое>",
168
168
  DlgInfoTab : "Информация",
169
- DlgAlertUrl : "Пожалуйста вставьте URL",
169
+ DlgAlertUrl : "Пожалуйста, вставьте URL",
170
170
 
171
171
  // General Dialogs Labels
172
172
  DlgGenNotSet : "<не определено>",
@@ -210,7 +210,7 @@ DlgImgAlignRight : "По правому краю",
210
210
  DlgImgAlignTextTop : "Текст наверху",
211
211
  DlgImgAlignTop : "По верху",
212
212
  DlgImgPreview : "Предварительный просмотр",
213
- DlgImgAlertUrl : "Пожалуйста введите URL изображения",
213
+ DlgImgAlertUrl : "Пожалуйста, введите URL изображения",
214
214
  DlgImgLinkTab : "Ссылка",
215
215
 
216
216
  // Flash Dialog
@@ -268,9 +268,9 @@ DlgLnkPopHeight : "Высота",
268
268
  DlgLnkPopLeft : "Позиция слева",
269
269
  DlgLnkPopTop : "Позиция сверху",
270
270
 
271
- DlnLnkMsgNoUrl : "Пожалуйста введите URL ссылки",
272
- DlnLnkMsgNoEMail : "Пожалуйста введите адрес эл. почты",
273
- DlnLnkMsgNoAnchor : "Пожалуйста выберете якорь",
271
+ DlnLnkMsgNoUrl : "Пожалуйста, введите URL ссылки",
272
+ DlnLnkMsgNoEMail : "Пожалуйста, введите адрес эл. почты",
273
+ DlnLnkMsgNoAnchor : "Пожалуйста, выберете якорь",
274
274
  DlnLnkMsgInvPopName : "Название вспывающего окна должно начинаться буквы и не может содержать пробелов",
275
275
 
276
276
  // Color Dialog
@@ -332,7 +332,7 @@ DlgCellBorderColor : "Цвет бордюра",
332
332
  DlgCellBtnSelect : "Выберите...",
333
333
 
334
334
  // Find and Replace Dialog
335
- DlgFindAndReplaceTitle : "Find and Replace", //MISSING
335
+ DlgFindAndReplaceTitle : "Найти и заменить",
336
336
 
337
337
  // Find Dialog
338
338
  DlgFindTitle : "Найти",
@@ -349,17 +349,16 @@ DlgReplaceReplAllBtn : "Заменить все",
349
349
  DlgReplaceWordChk : "Совпадение целых слов",
350
350
 
351
351
  // Paste Operations / Dialog
352
- PasteErrorCut : "Настройки безопасности вашего браузера не позволяют редактору автоматически выполнять операции вырезания. Пожалуйста используйте клавиатуру для этого (Ctrl+X).",
353
- PasteErrorCopy : "Настройки безопасности вашего браузера не позволяют редактору автоматически выполнять операции копирования. Пожалуйста используйте клавиатуру для этого (Ctrl+C).",
352
+ PasteErrorCut : "Настройки безопасности вашего браузера не позволяют редактору автоматически выполнять операции вырезания. Пожалуйста, используйте клавиатуру для этого (Ctrl+X).",
353
+ PasteErrorCopy : "Настройки безопасности вашего браузера не позволяют редактору автоматически выполнять операции копирования. Пожалуйста, используйте клавиатуру для этого (Ctrl+C).",
354
354
 
355
355
  PasteAsText : "Вставить только текст",
356
356
  PasteFromWord : "Вставить из Word",
357
357
 
358
- DlgPasteMsg2 : "Пожалуйста вставьте текст в прямоугольник используя сочетание клавиш (<STRONG>Ctrl+V</STRONG>) и нажмите <STRONG>OK</STRONG>.",
359
- DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING
358
+ DlgPasteMsg2 : "Пожалуйста, вставьте текст в прямоугольник, используя сочетание клавиш (<STRONG>Ctrl+V</STRONG>), и нажмите <STRONG>OK</STRONG>.",
359
+ DlgPasteSec : "По причине настроек безопасности браузера, редактор не имеет доступа к данным буфера обмена напрямую. Вам необходимо вставить текст снова в это окно.",
360
360
  DlgPasteIgnoreFont : "Игнорировать определения гарнитуры",
361
361
  DlgPasteRemoveStyles : "Убрать определения стилей",
362
- DlgPasteCleanBox : "Очистить",
363
362
 
364
363
  // Color Picker
365
364
  ColorAutomatic : "Автоматический",
@@ -371,7 +370,7 @@ DocProps : "Свойства документа",
371
370
  // Anchor Dialog
372
371
  DlgAnchorTitle : "Свойства якоря",
373
372
  DlgAnchorName : "Имя якоря",
374
- DlgAnchorErrorName : "Пожалуйста введите имя якоря",
373
+ DlgAnchorErrorName : "Пожалуйста, введите имя якоря",
375
374
 
376
375
  // Speller Pages Dialog
377
376
  DlgSpellNotInDic : "Нет в словаре",
@@ -463,8 +462,8 @@ DlgDocMetaTab : "Мета данные",
463
462
 
464
463
  DlgDocPageTitle : "Заголовок страницы",
465
464
  DlgDocLangDir : "Направление текста",
466
- DlgDocLangDirLTR : "Слева на право (LTR)",
467
- DlgDocLangDirRTL : "Справа на лево (RTL)",
465
+ DlgDocLangDirLTR : "Слева направо (LTR)",
466
+ DlgDocLangDirRTL : "Справа налево (RTL)",
468
467
  DlgDocLangCode : "Код языка",
469
468
  DlgDocCharSet : "Кодировка набора символов",
470
469
  DlgDocCharSetCE : "Центрально-европейская",
@@ -502,8 +501,8 @@ DlgDocPreview : "Предварительный просмотр",
502
501
  // Templates Dialog
503
502
  Templates : "Шаблоны",
504
503
  DlgTemplatesTitle : "Шаблоны содержимого",
505
- DlgTemplatesSelMsg : "Пожалуйста выберете шаблон для открытия в редакторе<br>(текущее содержимое будет потеряно):",
506
- DlgTemplatesLoading : "Загрузка списка шаблонов. Пожалуйста подождите...",
504
+ DlgTemplatesSelMsg : "Пожалуйста, выберете шаблон для открытия в редакторе<br>(текущее содержимое будет потеряно):",
505
+ DlgTemplatesLoading : "Загрузка списка шаблонов. Пожалуйста, подождите...",
507
506
  DlgTemplatesNoTpl : "(Ни одного шаблона не определено)",
508
507
  DlgTemplatesReplace : "Заменить текущее содержание",
509
508