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
  *
@@ -42,16 +42,16 @@ Print : "Prindi",
42
42
  SelectAll : "Vali kõik",
43
43
  RemoveFormat : "Eemalda vorming",
44
44
  InsertLinkLbl : "Link",
45
- InsertLink : "Sisesta/Muuda link",
45
+ InsertLink : "Sisesta link / Muuda linki",
46
46
  RemoveLink : "Eemalda link",
47
- Anchor : "Sisesta/Muuda ankur",
48
- AnchorDelete : "Remove Anchor", //MISSING
47
+ Anchor : "Sisesta ankur / Muuda ankrut",
48
+ AnchorDelete : "Eemalda ankur",
49
49
  InsertImageLbl : "Pilt",
50
- InsertImage : "Sisesta/Muuda pilt",
50
+ InsertImage : "Sisesta pilt / Muuda pilti",
51
51
  InsertFlashLbl : "Flash",
52
- InsertFlash : "Sisesta/Muuda flash",
52
+ InsertFlash : "Sisesta flash / Muuda flashi",
53
53
  InsertTableLbl : "Tabel",
54
- InsertTable : "Sisesta/Muuda tabel",
54
+ InsertTable : "Sisesta tabel / Muuda tabelit",
55
55
  InsertLineLbl : "Joon",
56
56
  InsertLine : "Sisesta horisontaaljoon",
57
57
  InsertSpecialCharLbl: "Erimärgid",
@@ -59,10 +59,10 @@ InsertSpecialChar : "Sisesta erimärk",
59
59
  InsertSmileyLbl : "Emotikon",
60
60
  InsertSmiley : "Sisesta emotikon",
61
61
  About : "FCKeditor teave",
62
- Bold : "Rasvane kiri",
63
- Italic : "Kursiiv kiri",
64
- Underline : "Allajoonitud kiri",
65
- StrikeThrough : "Läbijoonitud kiri",
62
+ Bold : "Paks",
63
+ Italic : "Kursiiv",
64
+ Underline : "Allajoonitud",
65
+ StrikeThrough : "Läbijoonitud",
66
66
  Subscript : "Allindeks",
67
67
  Superscript : "Ülaindeks",
68
68
  LeftJustify : "Vasakjoondus",
@@ -71,7 +71,7 @@ RightJustify : "Paremjoondus",
71
71
  BlockJustify : "Rööpjoondus",
72
72
  DecreaseIndent : "Vähenda taanet",
73
73
  IncreaseIndent : "Suurenda taanet",
74
- Blockquote : "Blockquote", //MISSING
74
+ Blockquote : "Blokktsitaat",
75
75
  Undo : "Võta tagasi",
76
76
  Redo : "Korda toimingut",
77
77
  NumberedListLbl : "Nummerdatud loetelu",
@@ -92,7 +92,7 @@ Replace : "Asenda",
92
92
  SpellCheck : "Kontrolli õigekirja",
93
93
  UniversalKeyboard : "Universaalne klaviatuur",
94
94
  PageBreakLbl : "Lehepiir",
95
- PageBreak : "Sisesta lehevahetus koht",
95
+ PageBreak : "Sisesta lehevahetuskoht",
96
96
 
97
97
  Form : "Vorm",
98
98
  Checkbox : "Märkeruut",
@@ -105,31 +105,31 @@ SelectionField : "Valiklahter",
105
105
  ImageButton : "Piltnupp",
106
106
 
107
107
  FitWindow : "Maksimeeri redaktori mõõtmed",
108
- ShowBlocks : "Show Blocks", //MISSING
108
+ ShowBlocks : "Näita blokke",
109
109
 
110
110
  // Context Menu
111
111
  EditLink : "Muuda linki",
112
112
  CellCM : "Lahter",
113
113
  RowCM : "Rida",
114
114
  ColumnCM : "Veerg",
115
- InsertRowAfter : "Insert Row After", //MISSING
116
- InsertRowBefore : "Insert Row Before", //MISSING
117
- DeleteRows : "Eemalda ridu",
118
- InsertColumnAfter : "Insert Column After", //MISSING
119
- InsertColumnBefore : "Insert Column Before", //MISSING
115
+ InsertRowAfter : "Sisesta rida peale",
116
+ InsertRowBefore : "Sisesta rida enne",
117
+ DeleteRows : "Eemalda read",
118
+ InsertColumnAfter : "Sisesta veerg peale",
119
+ InsertColumnBefore : "Sisesta veerg enne",
120
120
  DeleteColumns : "Eemalda veerud",
121
- InsertCellAfter : "Insert Cell After", //MISSING
122
- InsertCellBefore : "Insert Cell Before", //MISSING
121
+ InsertCellAfter : "Sisesta lahter peale",
122
+ InsertCellBefore : "Sisesta lahter enne",
123
123
  DeleteCells : "Eemalda lahtrid",
124
124
  MergeCells : "Ühenda lahtrid",
125
- MergeRight : "Merge Right", //MISSING
126
- MergeDown : "Merge Down", //MISSING
127
- HorizontalSplitCell : "Split Cell Horizontally", //MISSING
128
- VerticalSplitCell : "Split Cell Vertically", //MISSING
125
+ MergeRight : "Ühenda paremale",
126
+ MergeDown : "Ühenda alla",
127
+ HorizontalSplitCell : "Poolita lahter horisontaalselt",
128
+ VerticalSplitCell : "Poolita lahter vertikaalselt",
129
129
  TableDelete : "Kustuta tabel",
130
130
  CellProperties : "Lahtri atribuudid",
131
131
  TableProperties : "Tabeli atribuudid",
132
- ImageProperties : "Pildi atribuudid",
132
+ ImageProperties : "Pildi atribuudid",
133
133
  FlashProperties : "Flash omadused",
134
134
 
135
135
  AnchorProp : "Ankru omadused",
@@ -146,15 +146,15 @@ FormProp : "Vormi omadused",
146
146
  FontFormats : "Tavaline;Vormindatud;Aadress;Pealkiri 1;Pealkiri 2;Pealkiri 3;Pealkiri 4;Pealkiri 5;Pealkiri 6;Tavaline (DIV)",
147
147
 
148
148
  // Alerts and Messages
149
- ProcessingXHTML : "Töötlen XHTML. Palun oota...",
149
+ ProcessingXHTML : "Töötlen XHTML'i. Palun oota...",
150
150
  Done : "Tehtud",
151
- PasteWordConfirm : "Tekst, mida soovid lisada paistab pärinevat Wordist. Kas soovid seda enne kleepimist puhastada?",
151
+ PasteWordConfirm : "Tekst, mida soovid lisada paistab pärinevat Word'ist. Kas soovid seda enne kleepimist puhastada?",
152
152
  NotCompatiblePaste : "See käsk on saadaval ainult Internet Explorer versioon 5.5 või uuema puhul. Kas soovid kleepida ilma puhastamata?",
153
- UnknownToolbarItem : "Tundmatu tööriistariba üksus \"%1\"",
153
+ UnknownToolbarItem : "Tundmatu tööriistarea üksus \"%1\"",
154
154
  UnknownCommand : "Tundmatu käsunimi \"%1\"",
155
155
  NotImplemented : "Käsku ei täidetud",
156
156
  UnknownToolbarSet : "Tööriistariba \"%1\" ei eksisteeri",
157
- NoActiveX : "Sinu veebisirvija turvalisuse seaded võivad limiteerida mõningaid tekstirdaktori kasutus võimalusi. Sa peaksid võimaldama valiku \"Run ActiveX controls and plug-ins\" oma sirvija seadetes. Muidu võid sa täheldada vigu tekstiredaktori töös ja märgata puuduvaid funktsioone.",
157
+ NoActiveX : "Sinu veebisirvija turvalisuse seaded võivad limiteerida mõningaid tekstirdaktori kasutusvõimalusi. Sa peaksid võimaldama valiku \"Run ActiveX controls and plug-ins\" oma veebisirvija seadetes. Muidu võid sa täheldada vigu tekstiredaktori töös ja märgata puuduvaid funktsioone.",
158
158
  BrowseServerBlocked : "Ressursside sirvija avamine ebaõnnestus. Võimalda pop-up akende avanemine.",
159
159
  DialogBlocked : "Ei olenud võimalik avada dialoogi akent. Võimalda pop-up akende avanemine.",
160
160
 
@@ -249,7 +249,7 @@ DlgLnkTarget : "Sihtkoht",
249
249
  DlgLnkTargetFrame : "<raam>",
250
250
  DlgLnkTargetPopup : "<hüpikaken>",
251
251
  DlgLnkTargetBlank : "Uus aken (_blank)",
252
- DlgLnkTargetParent : "Vanem aken (_parent)",
252
+ DlgLnkTargetParent : "Esivanem aken (_parent)",
253
253
  DlgLnkTargetSelf : "Sama aken (_self)",
254
254
  DlgLnkTargetTop : "Pealmine aken (_top)",
255
255
  DlgLnkTargetFrameName : "Sihtmärk raami nimi",
@@ -332,7 +332,7 @@ DlgCellBorderColor : "Joone värv",
332
332
  DlgCellBtnSelect : "Vali...",
333
333
 
334
334
  // Find and Replace Dialog
335
- DlgFindAndReplaceTitle : "Find and Replace", //MISSING
335
+ DlgFindAndReplaceTitle : "Otsi ja asenda",
336
336
 
337
337
  // Find Dialog
338
338
  DlgFindTitle : "Otsi",
@@ -359,7 +359,6 @@ DlgPasteMsg2 : "Palun kleebi järgnevasse kasti kasutades klaviatuuri klahvikomb
359
359
  DlgPasteSec : "Sinu veebisirvija turvaseadete tõttu, ei oma redaktor otsest ligipääsu lõikelaua andmetele. Sa pead kleepima need uuesti siia aknasse.",
360
360
  DlgPasteIgnoreFont : "Ignoreeri kirja definitsioone",
361
361
  DlgPasteRemoveStyles : "Eemalda stiilide definitsioonid",
362
- DlgPasteCleanBox : "Puhasta ära kast",
363
362
 
364
363
  // Color Picker
365
364
  ColorAutomatic : "Automaatne",
@@ -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
  *
@@ -46,7 +46,7 @@ InsertLinkLbl : "Esteka",
46
46
  InsertLink : "Txertatu/Editatu Esteka",
47
47
  RemoveLink : "Kendu Esteka",
48
48
  Anchor : "Aingura",
49
- AnchorDelete : "Remove Anchor", //MISSING
49
+ AnchorDelete : "Ezabatu Aingura",
50
50
  InsertImageLbl : "Irudia",
51
51
  InsertImage : "Txertatu/Editatu Irudia",
52
52
  InsertFlashLbl : "Flasha",
@@ -72,7 +72,7 @@ RightJustify : "Lerrokatu Eskuman",
72
72
  BlockJustify : "Justifikatu",
73
73
  DecreaseIndent : "Txikitu Koska",
74
74
  IncreaseIndent : "Handitu Koska",
75
- Blockquote : "Blockquote", //MISSING
75
+ Blockquote : "Aipamen blokea",
76
76
  Undo : "Desegin",
77
77
  Redo : "Berregin",
78
78
  NumberedListLbl : "Zenbakidun Zerrenda",
@@ -106,27 +106,27 @@ SelectionField : "Hautespen Eremua",
106
106
  ImageButton : "Irudi Botoia",
107
107
 
108
108
  FitWindow : "Maximizatu editorearen tamaina",
109
- ShowBlocks : "Show Blocks", //MISSING
109
+ ShowBlocks : "Blokeak erakutsi",
110
110
 
111
111
  // Context Menu
112
112
  EditLink : "Aldatu Esteka",
113
113
  CellCM : "Gelaxka",
114
114
  RowCM : "Errenkada",
115
115
  ColumnCM : "Zutabea",
116
- InsertRowAfter : "Insert Row After", //MISSING
117
- InsertRowBefore : "Insert Row Before", //MISSING
116
+ InsertRowAfter : "Txertatu Lerroa Ostean",
117
+ InsertRowBefore : "Txertatu Lerroa Aurretik",
118
118
  DeleteRows : "Ezabatu Errenkadak",
119
- InsertColumnAfter : "Insert Column After", //MISSING
120
- InsertColumnBefore : "Insert Column Before", //MISSING
119
+ InsertColumnAfter : "Txertatu Zutabea Ostean",
120
+ InsertColumnBefore : "Txertatu Zutabea Aurretik",
121
121
  DeleteColumns : "Ezabatu Zutabeak",
122
- InsertCellAfter : "Insert Cell After", //MISSING
123
- InsertCellBefore : "Insert Cell Before", //MISSING
122
+ InsertCellAfter : "Txertatu Gelaxka Ostean",
123
+ InsertCellBefore : "Txertatu Gelaxka Aurretik",
124
124
  DeleteCells : "Kendu Gelaxkak",
125
125
  MergeCells : "Batu Gelaxkak",
126
- MergeRight : "Merge Right", //MISSING
127
- MergeDown : "Merge Down", //MISSING
128
- HorizontalSplitCell : "Split Cell Horizontally", //MISSING
129
- VerticalSplitCell : "Split Cell Vertically", //MISSING
126
+ MergeRight : "Elkartu Eskumara",
127
+ MergeDown : "Elkartu Behera",
128
+ HorizontalSplitCell : "Banatu Gelaxkak Horizontalki",
129
+ VerticalSplitCell : "Banatu Gelaxkak Bertikalki",
130
130
  TableDelete : "Ezabatu Taula",
131
131
  CellProperties : "Gelaxkaren Ezaugarriak",
132
132
  TableProperties : "Taularen Ezaugarriak",
@@ -272,7 +272,7 @@ DlgLnkPopTop : "Goiko Posizioa",
272
272
  DlnLnkMsgNoUrl : "Mesedez URL esteka idatzi",
273
273
  DlnLnkMsgNoEMail : "Mesedez ePosta helbidea idatzi",
274
274
  DlnLnkMsgNoAnchor : "Mesedez aingura bat aukeratu",
275
- DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", //MISSING
275
+ DlnLnkMsgInvPopName : "Popup lehioaren izenak karaktere alfabetiko batekin hasi behar du eta eta ezin du zuriunerik izan",
276
276
 
277
277
  // Color Dialog
278
278
  DlgColorTitle : "Kolore Aukeraketa",
@@ -333,7 +333,7 @@ DlgCellBorderColor : "Ertzako Kolorea",
333
333
  DlgCellBtnSelect : "Aukertau...",
334
334
 
335
335
  // Find and Replace Dialog
336
- DlgFindAndReplaceTitle : "Find and Replace", //MISSING
336
+ DlgFindAndReplaceTitle : "Bilatu eta Ordeztu",
337
337
 
338
338
  // Find Dialog
339
339
  DlgFindTitle : "Bilaketa",
@@ -357,10 +357,9 @@ PasteAsText : "Testu Arrunta bezala Itsatsi",
357
357
  PasteFromWord : "Word-etik itsatsi",
358
358
 
359
359
  DlgPasteMsg2 : "Mesedez teklatua erabilita (<STRONG>Ctrl+V</STRONG>) ondorego eremuan testua itsatsi eta <STRONG>OK</STRONG> sakatu.",
360
- 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
+ DlgPasteSec : "Nabigatzailearen segurtasun ezarpenak direla eta, editoreak ezin du arbela zuzenean erabili. Leiho honetan berriro itsatsi behar duzu.",
361
361
  DlgPasteIgnoreFont : "Letra Motaren definizioa ezikusi",
362
362
  DlgPasteRemoveStyles : "Estilo definizioak kendu",
363
- DlgPasteCleanBox : "Testu-eremua Garbitu",
364
363
 
365
364
  // Color Picker
366
365
  ColorAutomatic : "Automatikoa",
@@ -394,9 +393,9 @@ IeSpellDownload : "Zuzentzaile ortografikoa ez dago instalatuta. Deskargatu na
394
393
  // Button Dialog
395
394
  DlgButtonText : "Testua (Balorea)",
396
395
  DlgButtonType : "Mota",
397
- DlgButtonTypeBtn : "Button", //MISSING
398
- DlgButtonTypeSbm : "Submit", //MISSING
399
- DlgButtonTypeRst : "Reset", //MISSING
396
+ DlgButtonTypeBtn : "Botoia",
397
+ DlgButtonTypeSbm : "Bidali",
398
+ DlgButtonTypeRst : "Garbitu",
400
399
 
401
400
  // Checkbox and Radio Button Dialogs
402
401
  DlgCheckboxName : "Izena",
@@ -445,7 +444,7 @@ DlgHiddenValue : "Balorea",
445
444
  // Bulleted List Dialog
446
445
  BulletedListProp : "Buletdun Zerrendaren Ezarpenak",
447
446
  NumberedListProp : "Zenbakidun Zerrendaren Ezarpenak",
448
- DlgLstStart : "Start", //MISSING
447
+ DlgLstStart : "Hasiera",
449
448
  DlgLstType : "Mota",
450
449
  DlgLstTypeCircle : "Zirkulua",
451
450
  DlgLstTypeDisc : "Diskoa",
@@ -468,16 +467,16 @@ DlgDocLangDirLTR : "Ezkerretik eskumara (LTR)",
468
467
  DlgDocLangDirRTL : "Eskumatik ezkerrera (RTL)",
469
468
  DlgDocLangCode : "Hizkuntzaren Kodea",
470
469
  DlgDocCharSet : "Karaktere Multzoaren Kodeketa",
471
- DlgDocCharSetCE : "Central European", //MISSING
472
- DlgDocCharSetCT : "Chinese Traditional (Big5)", //MISSING
473
- DlgDocCharSetCR : "Cyrillic", //MISSING
474
- DlgDocCharSetGR : "Greek", //MISSING
475
- DlgDocCharSetJP : "Japanese", //MISSING
476
- DlgDocCharSetKR : "Korean", //MISSING
477
- DlgDocCharSetTR : "Turkish", //MISSING
478
- DlgDocCharSetUN : "Unicode (UTF-8)", //MISSING
479
- DlgDocCharSetWE : "Western European", //MISSING
480
- DlgDocCharSetOther : "Beste Karaktere Multzoaren Kodeketa",
470
+ DlgDocCharSetCE : "Erdialdeko Europakoa",
471
+ DlgDocCharSetCT : "Txinatar Tradizionala (Big5)",
472
+ DlgDocCharSetCR : "Zirilikoa",
473
+ DlgDocCharSetGR : "Grekoa",
474
+ DlgDocCharSetJP : "Japoniarra",
475
+ DlgDocCharSetKR : "Korearra",
476
+ DlgDocCharSetTR : "Turkiarra",
477
+ DlgDocCharSetUN : "Unicode (UTF-8)",
478
+ DlgDocCharSetWE : "Mendebaldeko Europakoa",
479
+ DlgDocCharSetOther : "Beste Karaktere Multzoko Kodeketa",
481
480
 
482
481
  DlgDocDocType : "Document Type Goiburua",
483
482
  DlgDocDocTypeOther : "Beste Document Type Goiburua",
@@ -506,7 +505,7 @@ DlgTemplatesTitle : "Eduki Txantiloiak",
506
505
  DlgTemplatesSelMsg : "Mesedez txantiloia aukeratu editorean kargatzeko<br>(orain dauden edukiak galduko dira):",
507
506
  DlgTemplatesLoading : "Txantiloiak kargatzen. Itxaron mesedez...",
508
507
  DlgTemplatesNoTpl : "(Ez dago definitutako txantiloirik)",
509
- DlgTemplatesReplace : "Replace actual contents", //MISSING
508
+ DlgTemplatesReplace : "Ordeztu oraingo edukiak",
510
509
 
511
510
  // About Dialog
512
511
  DlgAboutAboutTab : "Honi buruz",
@@ -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 : "لطفا متن را با کلیدهای (<STRONG>Ctrl+V</STRONG
359
359
  DlgPasteSec : "به خاطر تنظیمات امنیتی مرورگر شما، ویرایشگر نمی‌تواند دسترسی مستقیم به داده‌های clipboard داشته باشد. شما باید دوباره آنرا در این پنجره بچسبانید.",
360
360
  DlgPasteIgnoreFont : "چشم‌پوشی از تعاریف نوع قلم",
361
361
  DlgPasteRemoveStyles : "چشم‌پوشی از تعاریف سبک (style)",
362
- DlgPasteCleanBox : "پاک‌کردن ناحیه",
363
362
 
364
363
  // Color Picker
365
364
  ColorAutomatic : "خودکار",
@@ -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 : "Linkki",
45
45
  InsertLink : "Lisää linkki/muokkaa linkkiä",
46
46
  RemoveLink : "Poista linkki",
47
47
  Anchor : "Lisää ankkuri/muokkaa ankkuria",
48
- AnchorDelete : "Remove Anchor", //MISSING
48
+ AnchorDelete : "Poista ankkuri",
49
49
  InsertImageLbl : "Kuva",
50
50
  InsertImage : "Lisää kuva/muokkaa kuvaa",
51
51
  InsertFlashLbl : "Flash",
@@ -71,7 +71,7 @@ RightJustify : "Tasaa oikeat reunat",
71
71
  BlockJustify : "Tasaa molemmat reunat",
72
72
  DecreaseIndent : "Pienennä sisennystä",
73
73
  IncreaseIndent : "Suurenna sisennystä",
74
- Blockquote : "Blockquote", //MISSING
74
+ Blockquote : "Lainaus",
75
75
  Undo : "Kumoa",
76
76
  Redo : "Toista",
77
77
  NumberedListLbl : "Numerointi",
@@ -105,27 +105,27 @@ SelectionField : "Valintakenttä",
105
105
  ImageButton : "Kuvapainike",
106
106
 
107
107
  FitWindow : "Suurenna editori koko ikkunaan",
108
- ShowBlocks : "Show Blocks", //MISSING
108
+ ShowBlocks : "Näytä elementit",
109
109
 
110
110
  // Context Menu
111
111
  EditLink : "Muokkaa linkkiä",
112
112
  CellCM : "Solu",
113
113
  RowCM : "Rivi",
114
114
  ColumnCM : "Sarake",
115
- InsertRowAfter : "Insert Row After", //MISSING
116
- InsertRowBefore : "Insert Row Before", //MISSING
115
+ InsertRowAfter : "Lisää rivi alapuolelle",
116
+ InsertRowBefore : "Lisää rivi yläpuolelle",
117
117
  DeleteRows : "Poista rivit",
118
- InsertColumnAfter : "Insert Column After", //MISSING
119
- InsertColumnBefore : "Insert Column Before", //MISSING
118
+ InsertColumnAfter : "Lisää sarake oikealle",
119
+ InsertColumnBefore : "Lisää sarake vasemmalle",
120
120
  DeleteColumns : "Poista sarakkeet",
121
- InsertCellAfter : "Insert Cell After", //MISSING
122
- InsertCellBefore : "Insert Cell Before", //MISSING
121
+ InsertCellAfter : "Lisää solu perään",
122
+ InsertCellBefore : "Lisää solu eteen",
123
123
  DeleteCells : "Poista solut",
124
124
  MergeCells : "Yhdistä solut",
125
- MergeRight : "Merge Right", //MISSING
126
- MergeDown : "Merge Down", //MISSING
127
- HorizontalSplitCell : "Split Cell Horizontally", //MISSING
128
- VerticalSplitCell : "Split Cell Vertically", //MISSING
125
+ MergeRight : "Yhdistä oikealla olevan kanssa",
126
+ MergeDown : "Yhdistä alla olevan kanssa",
127
+ HorizontalSplitCell : "Jaa solu vaakasuunnassa",
128
+ VerticalSplitCell : "Jaa solu pystysuunnassa",
129
129
  TableDelete : "Poista taulu",
130
130
  CellProperties : "Solun ominaisuudet",
131
131
  TableProperties : "Taulun ominaisuudet",
@@ -332,7 +332,7 @@ DlgCellBorderColor : "Rajan väri",
332
332
  DlgCellBtnSelect : "Valitse...",
333
333
 
334
334
  // Find and Replace Dialog
335
- DlgFindAndReplaceTitle : "Find and Replace", //MISSING
335
+ DlgFindAndReplaceTitle : "Etsi ja korvaa",
336
336
 
337
337
  // Find Dialog
338
338
  DlgFindTitle : "Etsi",
@@ -359,7 +359,6 @@ DlgPasteMsg2 : "Liitä painamalla (<STRONG>Ctrl+V</STRONG>) ja painamalla <STRON
359
359
  DlgPasteSec : "Selaimesi turva-asetukset eivät salli editorin käyttää leikepöytää suoraan. Sinun pitää suorittaa liittäminen tässä ikkunassa.",
360
360
  DlgPasteIgnoreFont : "Jätä huomioimatta fonttimääritykset",
361
361
  DlgPasteRemoveStyles : "Poista tyylimääritykset",
362
- DlgPasteCleanBox : "Tyhjennä",
363
362
 
364
363
  // Color Picker
365
364
  ColorAutomatic : "Automaattinen",
@@ -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 : "Vinarliga koyr tekstin í hendan rútin við knappaborðinum (<s
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 : "Forfjóna Font definitiónirnar",
361
361
  DlgPasteRemoveStyles : "Strika Styles definitiónir",
362
- DlgPasteCleanBox : "Reinskanarkassi",
363
362
 
364
363
  // Color Picker
365
364
  ColorAutomatic : "Av sær sjálvum",
@@ -0,0 +1,515 @@
1
+ /*
2
+ * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
+ * Copyright (C) 2003-2008 Frederico Caldeira Knabben
4
+ *
5
+ * == BEGIN LICENSE ==
6
+ *
7
+ * Licensed under the terms of any of the following licenses at your
8
+ * choice:
9
+ *
10
+ * - GNU General Public License Version 2 or later (the "GPL")
11
+ * http://www.gnu.org/licenses/gpl.html
12
+ *
13
+ * - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
14
+ * http://www.gnu.org/licenses/lgpl.html
15
+ *
16
+ * - Mozilla Public License Version 1.1 or later (the "MPL")
17
+ * http://www.mozilla.org/MPL/MPL-1.1.html
18
+ *
19
+ * == END LICENSE ==
20
+ *
21
+ * Canadian French language file.
22
+ */
23
+
24
+ var FCKLang =
25
+ {
26
+ // Language direction : "ltr" (left to right) or "rtl" (right to left).
27
+ Dir : "ltr",
28
+
29
+ ToolbarCollapse : "Masquer Outils",
30
+ ToolbarExpand : "Afficher Outils",
31
+
32
+ // Toolbar Items and Context Menu
33
+ Save : "Sauvegarder",
34
+ NewPage : "Nouvelle page",
35
+ Preview : "Previsualiser",
36
+ Cut : "Couper",
37
+ Copy : "Copier",
38
+ Paste : "Coller",
39
+ PasteText : "Coller en tant que texte",
40
+ PasteWord : "Coller en tant que Word (formaté)",
41
+ Print : "Imprimer",
42
+ SelectAll : "Tout sélectionner",
43
+ RemoveFormat : "Supprimer le formatage",
44
+ InsertLinkLbl : "Lien",
45
+ InsertLink : "Insérer/modifier le lien",
46
+ RemoveLink : "Supprimer le lien",
47
+ Anchor : "Insérer/modifier l'ancre",
48
+ AnchorDelete : "Supprimer l'ancre",
49
+ InsertImageLbl : "Image",
50
+ InsertImage : "Insérer/modifier l'image",
51
+ InsertFlashLbl : "Animation Flash",
52
+ InsertFlash : "Insérer/modifier l'animation Flash",
53
+ InsertTableLbl : "Tableau",
54
+ InsertTable : "Insérer/modifier le tableau",
55
+ InsertLineLbl : "Séparateur",
56
+ InsertLine : "Insérer un séparateur",
57
+ InsertSpecialCharLbl: "Caractères spéciaux",
58
+ InsertSpecialChar : "Insérer un caractère spécial",
59
+ InsertSmileyLbl : "Emoticon",
60
+ InsertSmiley : "Insérer un Emoticon",
61
+ About : "A propos de FCKeditor",
62
+ Bold : "Gras",
63
+ Italic : "Italique",
64
+ Underline : "Souligné",
65
+ StrikeThrough : "Barrer",
66
+ Subscript : "Indice",
67
+ Superscript : "Exposant",
68
+ LeftJustify : "Aligner à gauche",
69
+ CenterJustify : "Centrer",
70
+ RightJustify : "Aligner à Droite",
71
+ BlockJustify : "Texte justifié",
72
+ DecreaseIndent : "Diminuer le retrait",
73
+ IncreaseIndent : "Augmenter le retrait",
74
+ Blockquote : "Citation",
75
+ Undo : "Annuler",
76
+ Redo : "Refaire",
77
+ NumberedListLbl : "Liste numérotée",
78
+ NumberedList : "Insérer/supprimer la liste numérotée",
79
+ BulletedListLbl : "Liste à puces",
80
+ BulletedList : "Insérer/supprimer la liste à puces",
81
+ ShowTableBorders : "Afficher les bordures du tableau",
82
+ ShowDetails : "Afficher les caractères invisibles",
83
+ Style : "Style",
84
+ FontFormat : "Format",
85
+ Font : "Police",
86
+ FontSize : "Taille",
87
+ TextColor : "Couleur de caractère",
88
+ BGColor : "Couleur de fond",
89
+ Source : "Source",
90
+ Find : "Chercher",
91
+ Replace : "Remplacer",
92
+ SpellCheck : "Orthographe",
93
+ UniversalKeyboard : "Clavier universel",
94
+ PageBreakLbl : "Saut de page",
95
+ PageBreak : "Insérer un saut de page",
96
+
97
+ Form : "Formulaire",
98
+ Checkbox : "Case à cocher",
99
+ RadioButton : "Bouton radio",
100
+ TextField : "Champ texte",
101
+ Textarea : "Zone de texte",
102
+ HiddenField : "Champ caché",
103
+ Button : "Bouton",
104
+ SelectionField : "Champ de sélection",
105
+ ImageButton : "Bouton image",
106
+
107
+ FitWindow : "Edition pleine page",
108
+ ShowBlocks : "Afficher les blocs",
109
+
110
+ // Context Menu
111
+ EditLink : "Modifier le lien",
112
+ CellCM : "Cellule",
113
+ RowCM : "Ligne",
114
+ ColumnCM : "Colonne",
115
+ InsertRowAfter : "Insérer une ligne après",
116
+ InsertRowBefore : "Insérer une ligne avant",
117
+ DeleteRows : "Supprimer des lignes",
118
+ InsertColumnAfter : "Insérer une colonne après",
119
+ InsertColumnBefore : "Insérer une colonne avant",
120
+ DeleteColumns : "Supprimer des colonnes",
121
+ InsertCellAfter : "Insérer une cellule après",
122
+ InsertCellBefore : "Insérer une cellule avant",
123
+ DeleteCells : "Supprimer des cellules",
124
+ MergeCells : "Fusionner les cellules",
125
+ MergeRight : "Fusionner à droite",
126
+ MergeDown : "Fusionner en bas",
127
+ HorizontalSplitCell : "Scinder la cellule horizontalement",
128
+ VerticalSplitCell : "Scinder la cellule verticalement",
129
+ TableDelete : "Supprimer le tableau",
130
+ CellProperties : "Propriétés de cellule",
131
+ TableProperties : "Propriétés du tableau",
132
+ ImageProperties : "Propriétés de l'image",
133
+ FlashProperties : "Propriétés de l'animation Flash",
134
+
135
+ AnchorProp : "Propriétés de l'ancre",
136
+ ButtonProp : "Propriétés du bouton",
137
+ CheckboxProp : "Propriétés de la case à cocher",
138
+ HiddenFieldProp : "Propriétés du champ caché",
139
+ RadioButtonProp : "Propriétés du bouton radio",
140
+ ImageButtonProp : "Propriétés du bouton image",
141
+ TextFieldProp : "Propriétés du champ texte",
142
+ SelectionFieldProp : "Propriétés de la liste/du menu",
143
+ TextareaProp : "Propriétés de la zone de texte",
144
+ FormProp : "Propriétés du formulaire",
145
+
146
+ FontFormats : "Normal;Formaté;Adresse;En-tête 1;En-tête 2;En-tête 3;En-tête 4;En-tête 5;En-tête 6;Normal (DIV)",
147
+
148
+ // Alerts and Messages
149
+ ProcessingXHTML : "Calcul XHTML. Veuillez patienter...",
150
+ Done : "Terminé",
151
+ PasteWordConfirm : "Le texte à coller semble provenir de Word. Désirez-vous le nettoyer avant de coller?",
152
+ NotCompatiblePaste : "Cette commande nécessite Internet Explorer version 5.5 et plus. Souhaitez-vous coller sans nettoyage?",
153
+ UnknownToolbarItem : "Élément de barre d'outil inconnu \"%1\"",
154
+ UnknownCommand : "Nom de commande inconnu \"%1\"",
155
+ NotImplemented : "Commande indisponible",
156
+ UnknownToolbarSet : "La barre d'outils \"%1\" n'existe pas",
157
+ NoActiveX : "Les paramètres de sécurité de votre navigateur peuvent limiter quelques fonctionnalités de l'éditeur. Veuillez activer l'option \"Exécuter les contrôles ActiveX et les plug-ins\". Il se peut que vous rencontriez des erreurs et remarquiez quelques limitations.",
158
+ BrowseServerBlocked : "Le navigateur n'a pas pu être ouvert. Assurez-vous que les bloqueurs de popups soient désactivés.",
159
+ DialogBlocked : "La fenêtre de dialogue n'a pas pu s'ouvrir. Assurez-vous que les bloqueurs de popups soient désactivés.",
160
+
161
+ // Dialogs
162
+ DlgBtnOK : "OK",
163
+ DlgBtnCancel : "Annuler",
164
+ DlgBtnClose : "Fermer",
165
+ DlgBtnBrowseServer : "Parcourir le serveur",
166
+ DlgAdvancedTag : "Avancée",
167
+ DlgOpOther : "<autre>",
168
+ DlgInfoTab : "Info",
169
+ DlgAlertUrl : "Veuillez saisir l'URL",
170
+
171
+ // General Dialogs Labels
172
+ DlgGenNotSet : "<Par défaut>",
173
+ DlgGenId : "Id",
174
+ DlgGenLangDir : "Sens d'écriture",
175
+ DlgGenLangDirLtr : "De gauche à droite (LTR)",
176
+ DlgGenLangDirRtl : "De droite à gauche (RTL)",
177
+ DlgGenLangCode : "Code langue",
178
+ DlgGenAccessKey : "Équivalent clavier",
179
+ DlgGenName : "Nom",
180
+ DlgGenTabIndex : "Ordre de tabulation",
181
+ DlgGenLongDescr : "URL de description longue",
182
+ DlgGenClass : "Classes de feuilles de style",
183
+ DlgGenTitle : "Titre",
184
+ DlgGenContType : "Type de contenu",
185
+ DlgGenLinkCharset : "Encodage de caractère",
186
+ DlgGenStyle : "Style",
187
+
188
+ // Image Dialog
189
+ DlgImgTitle : "Propriétés de l'image",
190
+ DlgImgInfoTab : "Informations sur l'image",
191
+ DlgImgBtnUpload : "Envoyer sur le serveur",
192
+ DlgImgURL : "URL",
193
+ DlgImgUpload : "Télécharger",
194
+ DlgImgAlt : "Texte de remplacement",
195
+ DlgImgWidth : "Largeur",
196
+ DlgImgHeight : "Hauteur",
197
+ DlgImgLockRatio : "Garder les proportions",
198
+ DlgBtnResetSize : "Taille originale",
199
+ DlgImgBorder : "Bordure",
200
+ DlgImgHSpace : "Espacement horizontal",
201
+ DlgImgVSpace : "Espacement vertical",
202
+ DlgImgAlign : "Alignement",
203
+ DlgImgAlignLeft : "Gauche",
204
+ DlgImgAlignAbsBottom: "Abs Bas",
205
+ DlgImgAlignAbsMiddle: "Abs Milieu",
206
+ DlgImgAlignBaseline : "Bas du texte",
207
+ DlgImgAlignBottom : "Bas",
208
+ DlgImgAlignMiddle : "Milieu",
209
+ DlgImgAlignRight : "Droite",
210
+ DlgImgAlignTextTop : "Haut du texte",
211
+ DlgImgAlignTop : "Haut",
212
+ DlgImgPreview : "Prévisualisation",
213
+ DlgImgAlertUrl : "Veuillez saisir l'URL de l'image",
214
+ DlgImgLinkTab : "Lien",
215
+
216
+ // Flash Dialog
217
+ DlgFlashTitle : "Propriétés de l'animation Flash",
218
+ DlgFlashChkPlay : "Lecture automatique",
219
+ DlgFlashChkLoop : "Boucle",
220
+ DlgFlashChkMenu : "Activer le menu Flash",
221
+ DlgFlashScale : "Affichage",
222
+ DlgFlashScaleAll : "Par défaut (tout montrer)",
223
+ DlgFlashScaleNoBorder : "Sans bordure",
224
+ DlgFlashScaleFit : "Ajuster aux dimensions",
225
+
226
+ // Link Dialog
227
+ DlgLnkWindowTitle : "Propriétés du lien",
228
+ DlgLnkInfoTab : "Informations sur le lien",
229
+ DlgLnkTargetTab : "Destination",
230
+
231
+ DlgLnkType : "Type de lien",
232
+ DlgLnkTypeURL : "URL",
233
+ DlgLnkTypeAnchor : "Ancre dans cette page",
234
+ DlgLnkTypeEMail : "E-Mail",
235
+ DlgLnkProto : "Protocole",
236
+ DlgLnkProtoOther : "<autre>",
237
+ DlgLnkURL : "URL",
238
+ DlgLnkAnchorSel : "Sélectionner une ancre",
239
+ DlgLnkAnchorByName : "Par nom",
240
+ DlgLnkAnchorById : "Par id",
241
+ DlgLnkNoAnchors : "(Pas d'ancre disponible dans le document)",
242
+ DlgLnkEMail : "Adresse E-Mail",
243
+ DlgLnkEMailSubject : "Sujet du message",
244
+ DlgLnkEMailBody : "Corps du message",
245
+ DlgLnkUpload : "Télécharger",
246
+ DlgLnkBtnUpload : "Envoyer sur le serveur",
247
+
248
+ DlgLnkTarget : "Destination",
249
+ DlgLnkTargetFrame : "<Cadre>",
250
+ DlgLnkTargetPopup : "<fenêtre popup>",
251
+ DlgLnkTargetBlank : "Nouvelle fenêtre (_blank)",
252
+ DlgLnkTargetParent : "Fenêtre mère (_parent)",
253
+ DlgLnkTargetSelf : "Même fenêtre (_self)",
254
+ DlgLnkTargetTop : "Fenêtre supérieure (_top)",
255
+ DlgLnkTargetFrameName : "Nom du cadre de destination",
256
+ DlgLnkPopWinName : "Nom de la fenêtre popup",
257
+ DlgLnkPopWinFeat : "Caractéristiques de la fenêtre popup",
258
+ DlgLnkPopResize : "Taille modifiable",
259
+ DlgLnkPopLocation : "Barre d'adresses",
260
+ DlgLnkPopMenu : "Barre de menu",
261
+ DlgLnkPopScroll : "Barres de défilement",
262
+ DlgLnkPopStatus : "Barre d'état",
263
+ DlgLnkPopToolbar : "Barre d'outils",
264
+ DlgLnkPopFullScrn : "Plein écran (IE)",
265
+ DlgLnkPopDependent : "Dépendante (Netscape)",
266
+ DlgLnkPopWidth : "Largeur",
267
+ DlgLnkPopHeight : "Hauteur",
268
+ DlgLnkPopLeft : "Position à partir de la gauche",
269
+ DlgLnkPopTop : "Position à partir du haut",
270
+
271
+ DlnLnkMsgNoUrl : "Veuillez saisir l'URL",
272
+ DlnLnkMsgNoEMail : "Veuillez saisir l'adresse e-mail",
273
+ DlnLnkMsgNoAnchor : "Veuillez sélectionner une ancre",
274
+ DlnLnkMsgInvPopName : "Le nom de la fenêtre popup doit commencer par une lettre et ne doit pas contenir d'espace",
275
+
276
+ // Color Dialog
277
+ DlgColorTitle : "Sélectionner",
278
+ DlgColorBtnClear : "Effacer",
279
+ DlgColorHighlight : "Prévisualisation",
280
+ DlgColorSelected : "Sélectionné",
281
+
282
+ // Smiley Dialog
283
+ DlgSmileyTitle : "Insérer un Emoticon",
284
+
285
+ // Special Character Dialog
286
+ DlgSpecialCharTitle : "Insérer un caractère spécial",
287
+
288
+ // Table Dialog
289
+ DlgTableTitle : "Propriétés du tableau",
290
+ DlgTableRows : "Lignes",
291
+ DlgTableColumns : "Colonnes",
292
+ DlgTableBorder : "Taille de la bordure",
293
+ DlgTableAlign : "Alignement",
294
+ DlgTableAlignNotSet : "<Par défaut>",
295
+ DlgTableAlignLeft : "Gauche",
296
+ DlgTableAlignCenter : "Centré",
297
+ DlgTableAlignRight : "Droite",
298
+ DlgTableWidth : "Largeur",
299
+ DlgTableWidthPx : "pixels",
300
+ DlgTableWidthPc : "pourcentage",
301
+ DlgTableHeight : "Hauteur",
302
+ DlgTableCellSpace : "Espacement",
303
+ DlgTableCellPad : "Contour",
304
+ DlgTableCaption : "Titre",
305
+ DlgTableSummary : "Résumé",
306
+
307
+ // Table Cell Dialog
308
+ DlgCellTitle : "Propriétés de la cellule",
309
+ DlgCellWidth : "Largeur",
310
+ DlgCellWidthPx : "pixels",
311
+ DlgCellWidthPc : "pourcentage",
312
+ DlgCellHeight : "Hauteur",
313
+ DlgCellWordWrap : "Retour à la ligne",
314
+ DlgCellWordWrapNotSet : "<Par défaut>",
315
+ DlgCellWordWrapYes : "Oui",
316
+ DlgCellWordWrapNo : "Non",
317
+ DlgCellHorAlign : "Alignement horizontal",
318
+ DlgCellHorAlignNotSet : "<Par défaut>",
319
+ DlgCellHorAlignLeft : "Gauche",
320
+ DlgCellHorAlignCenter : "Centré",
321
+ DlgCellHorAlignRight: "Droite",
322
+ DlgCellVerAlign : "Alignement vertical",
323
+ DlgCellVerAlignNotSet : "<Par défaut>",
324
+ DlgCellVerAlignTop : "Haut",
325
+ DlgCellVerAlignMiddle : "Milieu",
326
+ DlgCellVerAlignBottom : "Bas",
327
+ DlgCellVerAlignBaseline : "Bas du texte",
328
+ DlgCellRowSpan : "Lignes fusionnées",
329
+ DlgCellCollSpan : "Colonnes fusionnées",
330
+ DlgCellBackColor : "Couleur de fond",
331
+ DlgCellBorderColor : "Couleur de bordure",
332
+ DlgCellBtnSelect : "Sélectionner...",
333
+
334
+ // Find and Replace Dialog
335
+ DlgFindAndReplaceTitle : "Chercher et Remplacer",
336
+
337
+ // Find Dialog
338
+ DlgFindTitle : "Chercher",
339
+ DlgFindFindBtn : "Chercher",
340
+ DlgFindNotFoundMsg : "Le texte indiqué est introuvable.",
341
+
342
+ // Replace Dialog
343
+ DlgReplaceTitle : "Remplacer",
344
+ DlgReplaceFindLbl : "Rechercher:",
345
+ DlgReplaceReplaceLbl : "Remplacer par:",
346
+ DlgReplaceCaseChk : "Respecter la casse",
347
+ DlgReplaceReplaceBtn : "Remplacer",
348
+ DlgReplaceReplAllBtn : "Tout remplacer",
349
+ DlgReplaceWordChk : "Mot entier",
350
+
351
+ // Paste Operations / Dialog
352
+ PasteErrorCut : "Les paramètres de sécurité de votre navigateur empêchent l'éditeur de couper automatiquement vos données. Veuillez utiliser les équivalents claviers (Ctrl+X).",
353
+ PasteErrorCopy : "Les paramètres de sécurité de votre navigateur empêchent l'éditeur de copier automatiquement vos données. Veuillez utiliser les équivalents claviers (Ctrl+C).",
354
+
355
+ PasteAsText : "Coller comme texte",
356
+ PasteFromWord : "Coller à partir de Word",
357
+
358
+ DlgPasteMsg2 : "Veuillez coller dans la zone ci-dessous en utilisant le clavier (<STRONG>Ctrl+V</STRONG>) et appuyer sur <STRONG>OK</STRONG>.",
359
+ DlgPasteSec : "A cause des paramètres de sécurité de votre navigateur, l'éditeur ne peut accéder au presse-papier directement. Vous devez coller à nouveau le contenu dans cette fenêtre.",
360
+ DlgPasteIgnoreFont : "Ignorer les polices de caractères",
361
+ DlgPasteRemoveStyles : "Supprimer les styles",
362
+
363
+ // Color Picker
364
+ ColorAutomatic : "Automatique",
365
+ ColorMoreColors : "Plus de couleurs...",
366
+
367
+ // Document Properties
368
+ DocProps : "Propriétés du document",
369
+
370
+ // Anchor Dialog
371
+ DlgAnchorTitle : "Propriétés de l'ancre",
372
+ DlgAnchorName : "Nom de l'ancre",
373
+ DlgAnchorErrorName : "Veuillez saisir le nom de l'ancre",
374
+
375
+ // Speller Pages Dialog
376
+ DlgSpellNotInDic : "Pas dans le dictionnaire",
377
+ DlgSpellChangeTo : "Changer en",
378
+ DlgSpellBtnIgnore : "Ignorer",
379
+ DlgSpellBtnIgnoreAll : "Ignorer tout",
380
+ DlgSpellBtnReplace : "Remplacer",
381
+ DlgSpellBtnReplaceAll : "Remplacer tout",
382
+ DlgSpellBtnUndo : "Annuler",
383
+ DlgSpellNoSuggestions : "- Pas de suggestion -",
384
+ DlgSpellProgress : "Vérification d'orthographe en cours...",
385
+ DlgSpellNoMispell : "Vérification d'orthographe terminée: pas d'erreur trouvée",
386
+ DlgSpellNoChanges : "Vérification d'orthographe terminée: Pas de modifications",
387
+ DlgSpellOneChange : "Vérification d'orthographe terminée: Un mot modifié",
388
+ DlgSpellManyChanges : "Vérification d'orthographe terminée: %1 mots modifiés",
389
+
390
+ IeSpellDownload : "Le Correcteur d'orthographe n'est pas installé. Souhaitez-vous le télécharger maintenant?",
391
+
392
+ // Button Dialog
393
+ DlgButtonText : "Texte (Valeur)",
394
+ DlgButtonType : "Type",
395
+ DlgButtonTypeBtn : "Bouton",
396
+ DlgButtonTypeSbm : "Soumettre",
397
+ DlgButtonTypeRst : "Réinitialiser",
398
+
399
+ // Checkbox and Radio Button Dialogs
400
+ DlgCheckboxName : "Nom",
401
+ DlgCheckboxValue : "Valeur",
402
+ DlgCheckboxSelected : "Sélectionné",
403
+
404
+ // Form Dialog
405
+ DlgFormName : "Nom",
406
+ DlgFormAction : "Action",
407
+ DlgFormMethod : "Méthode",
408
+
409
+ // Select Field Dialog
410
+ DlgSelectName : "Nom",
411
+ DlgSelectValue : "Valeur",
412
+ DlgSelectSize : "Taille",
413
+ DlgSelectLines : "lignes",
414
+ DlgSelectChkMulti : "Sélection multiple",
415
+ DlgSelectOpAvail : "Options disponibles",
416
+ DlgSelectOpText : "Texte",
417
+ DlgSelectOpValue : "Valeur",
418
+ DlgSelectBtnAdd : "Ajouter",
419
+ DlgSelectBtnModify : "Modifier",
420
+ DlgSelectBtnUp : "Monter",
421
+ DlgSelectBtnDown : "Descendre",
422
+ DlgSelectBtnSetValue : "Valeur sélectionnée",
423
+ DlgSelectBtnDelete : "Supprimer",
424
+
425
+ // Textarea Dialog
426
+ DlgTextareaName : "Nom",
427
+ DlgTextareaCols : "Colonnes",
428
+ DlgTextareaRows : "Lignes",
429
+
430
+ // Text Field Dialog
431
+ DlgTextName : "Nom",
432
+ DlgTextValue : "Valeur",
433
+ DlgTextCharWidth : "Largeur en caractères",
434
+ DlgTextMaxChars : "Nombre maximum de caractères",
435
+ DlgTextType : "Type",
436
+ DlgTextTypeText : "Texte",
437
+ DlgTextTypePass : "Mot de passe",
438
+
439
+ // Hidden Field Dialog
440
+ DlgHiddenName : "Nom",
441
+ DlgHiddenValue : "Valeur",
442
+
443
+ // Bulleted List Dialog
444
+ BulletedListProp : "Propriétés de liste à puces",
445
+ NumberedListProp : "Propriétés de liste numérotée",
446
+ DlgLstStart : "Début",
447
+ DlgLstType : "Type",
448
+ DlgLstTypeCircle : "Cercle",
449
+ DlgLstTypeDisc : "Disque",
450
+ DlgLstTypeSquare : "Carré",
451
+ DlgLstTypeNumbers : "Nombres (1, 2, 3)",
452
+ DlgLstTypeLCase : "Lettres minuscules (a, b, c)",
453
+ DlgLstTypeUCase : "Lettres majuscules (A, B, C)",
454
+ DlgLstTypeSRoman : "Chiffres romains minuscules (i, ii, iii)",
455
+ DlgLstTypeLRoman : "Chiffres romains majuscules (I, II, III)",
456
+
457
+ // Document Properties Dialog
458
+ DlgDocGeneralTab : "Général",
459
+ DlgDocBackTab : "Fond",
460
+ DlgDocColorsTab : "Couleurs et Marges",
461
+ DlgDocMetaTab : "Méta-Données",
462
+
463
+ DlgDocPageTitle : "Titre de la page",
464
+ DlgDocLangDir : "Sens d'écriture",
465
+ DlgDocLangDirLTR : "De la gauche vers la droite (LTR)",
466
+ DlgDocLangDirRTL : "De la droite vers la gauche (RTL)",
467
+ DlgDocLangCode : "Code langue",
468
+ DlgDocCharSet : "Encodage de caractère",
469
+ DlgDocCharSetCE : "Europe Centrale",
470
+ DlgDocCharSetCT : "Chinois Traditionnel (Big5)",
471
+ DlgDocCharSetCR : "Cyrillique",
472
+ DlgDocCharSetGR : "Grecque",
473
+ DlgDocCharSetJP : "Japonais",
474
+ DlgDocCharSetKR : "Coréen",
475
+ DlgDocCharSetTR : "Turcque",
476
+ DlgDocCharSetUN : "Unicode (UTF-8)",
477
+ DlgDocCharSetWE : "Occidental",
478
+ DlgDocCharSetOther : "Autre encodage de caractère",
479
+
480
+ DlgDocDocType : "Type de document",
481
+ DlgDocDocTypeOther : "Autre type de document",
482
+ DlgDocIncXHTML : "Inclure les déclarations XHTML",
483
+ DlgDocBgColor : "Couleur de fond",
484
+ DlgDocBgImage : "Image de fond",
485
+ DlgDocBgNoScroll : "Image fixe sans défilement",
486
+ DlgDocCText : "Texte",
487
+ DlgDocCLink : "Lien",
488
+ DlgDocCVisited : "Lien visité",
489
+ DlgDocCActive : "Lien activé",
490
+ DlgDocMargins : "Marges",
491
+ DlgDocMaTop : "Haut",
492
+ DlgDocMaLeft : "Gauche",
493
+ DlgDocMaRight : "Droite",
494
+ DlgDocMaBottom : "Bas",
495
+ DlgDocMeIndex : "Mots-clés (séparés par des virgules)",
496
+ DlgDocMeDescr : "Description",
497
+ DlgDocMeAuthor : "Auteur",
498
+ DlgDocMeCopy : "Copyright",
499
+ DlgDocPreview : "Prévisualisation",
500
+
501
+ // Templates Dialog
502
+ Templates : "Modèles",
503
+ DlgTemplatesTitle : "Modèles de contenu",
504
+ DlgTemplatesSelMsg : "Sélectionner le modèle à ouvrir dans l'éditeur<br>(le contenu actuel sera remplacé):",
505
+ DlgTemplatesLoading : "Chargement de la liste des modèles. Veuillez patienter...",
506
+ DlgTemplatesNoTpl : "(Aucun modèle disponible)",
507
+ DlgTemplatesReplace : "Remplacer tout le contenu actuel",
508
+
509
+ // About Dialog
510
+ DlgAboutAboutTab : "Á propos de",
511
+ DlgAboutBrowserInfoTab : "Navigateur",
512
+ DlgAboutLicenseTab : "License",
513
+ DlgAboutVersion : "Version",
514
+ DlgAboutInfo : "Pour plus d'informations, visiter"
515
+ };