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.
- data/CHANGES-5.1 +54 -0
- data/app/apis/meta_weblog_service.rb +7 -6
- data/app/controllers/accounts_controller.rb +2 -1
- data/app/controllers/admin/content_controller.rb +45 -3
- data/app/controllers/admin/pages_controller.rb +1 -1
- data/app/controllers/admin/textfilters_controller.rb +4 -4
- data/app/controllers/admin/users_controller.rb +14 -2
- data/app/controllers/application.rb +4 -1
- data/app/controllers/articles_controller.rb +1 -3
- data/app/controllers/backend_controller.rb +2 -0
- data/app/controllers/comments_controller.rb +6 -0
- data/app/helpers/admin/base_helper.rb +24 -26
- data/app/helpers/admin/feedback_helper.rb +0 -20
- data/app/helpers/application_helper.rb +1 -0
- data/app/models/article.rb +2 -0
- data/app/models/blog.rb +1 -0
- data/app/models/blog_sweeper.rb +8 -9
- data/app/models/page_cache.rb +1 -0
- data/app/models/tag.rb +2 -2
- data/app/models/user.rb +5 -1
- data/app/views/admin/blacklist/destroy.html.erb +1 -1
- data/app/views/admin/categories/destroy.html.erb +1 -1
- data/app/views/admin/comments/destroy.html.erb +1 -1
- data/app/views/admin/content/_articles.html.erb +4 -4
- data/app/views/admin/content/_attachment.html.erb +6 -7
- data/app/views/admin/content/_drafts.html.erb +6 -0
- data/app/views/admin/content/_form.html.erb +47 -34
- data/app/views/admin/content/destroy.html.erb +1 -1
- data/app/views/admin/content/edit.html.erb +1 -1
- data/app/views/admin/content/index.html.erb +1 -6
- data/app/views/admin/content/new.html.erb +1 -1
- data/app/views/admin/pages/_form.html.erb +4 -3
- data/app/views/admin/pages/_pages.html.erb +3 -3
- data/app/views/admin/pages/destroy.html.erb +1 -1
- data/app/views/admin/resources/destroy.html.erb +1 -1
- data/app/views/admin/settings/index.html.erb +10 -0
- data/app/views/admin/shared/_edit.html.erb +1 -6
- data/app/views/admin/textfilters/destroy.html.erb +3 -0
- data/app/views/admin/textfilters/edit.html.erb +3 -1
- data/app/views/admin/textfilters/index.html.erb +1 -1
- data/app/views/admin/textfilters/new.html.erb +3 -1
- data/app/views/admin/trackbacks/show.html.erb +1 -1
- data/app/views/admin/users/destroy.html.erb +1 -1
- data/app/views/admin/users/edit.html.erb +1 -5
- data/app/views/admin/users/index.html.erb +1 -1
- data/app/views/articles/_comment_failed.html.erb +3 -0
- data/config/initializers/access_rules.rb +3 -3
- data/db/migrate/070_add_users_to_non_admins.rb +17 -0
- data/installer/rails_installer_defaults.yml +1 -1
- data/lib/tasks/release.rake +3 -3
- data/lib/typo_version.rb +1 -1
- data/public/images/admin/cancel.png +0 -0
- data/public/images/admin/checked.png +0 -0
- data/public/images/admin/delete.png +0 -0
- data/public/images/admin/edit.png +0 -0
- data/public/images/admin/show.png +0 -0
- data/public/javascripts/controls.js +2 -0
- data/public/javascripts/dragdrop.js +2 -0
- data/public/javascripts/effects.js +6 -4
- data/public/javascripts/fckeditor/editor/_source/classes/fckcontextmenu.js +13 -8
- data/public/javascripts/fckeditor/editor/_source/classes/fckdataprocessor.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/classes/fckdocumentfragment_gecko.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/classes/fckdocumentfragment_ie.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/classes/fckdomrange.js +189 -79
- data/public/javascripts/fckeditor/editor/_source/classes/fckdomrange_gecko.js +4 -3
- data/public/javascripts/fckeditor/editor/_source/classes/fckdomrange_ie.js +16 -15
- data/public/javascripts/fckeditor/editor/_source/classes/fckdomrangeiterator.js +30 -9
- data/public/javascripts/fckeditor/editor/_source/classes/fckeditingarea.js +108 -90
- data/public/javascripts/fckeditor/editor/_source/classes/fckelementpath.js +22 -3
- data/public/javascripts/fckeditor/editor/_source/classes/fckenterkey.js +76 -38
- data/public/javascripts/fckeditor/editor/_source/classes/fckevents.js +7 -2
- data/public/javascripts/fckeditor/editor/_source/classes/fckhtmliterator.js +142 -0
- data/public/javascripts/fckeditor/editor/_source/classes/fckicon.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/classes/fckiecleanup.js +1 -1
- data/public/javascripts/fckeditor/editor/_source/classes/fckimagepreloader.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/classes/fckkeystrokehandler.js +3 -3
- data/public/javascripts/fckeditor/editor/_source/classes/fckmenublock.js +8 -5
- data/public/javascripts/fckeditor/editor/_source/classes/fckmenublockpanel.js +3 -3
- data/public/javascripts/fckeditor/editor/_source/classes/fckmenuitem.js +6 -5
- data/public/javascripts/fckeditor/editor/_source/classes/fckpanel.js +85 -38
- data/public/javascripts/fckeditor/editor/_source/classes/fckplugin.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/classes/fckspecialcombo.js +7 -8
- data/public/javascripts/fckeditor/editor/_source/classes/fckstyle.js +180 -17
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbar.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarbreak_gecko.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarbreak_ie.js +1 -1
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarbutton.js +9 -4
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarbuttonui.js +5 -1
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarfontformatcombo.js +3 -3
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarfontscombo.js +1 -1
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarfontsizecombo.js +1 -1
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarpanelbutton.js +15 -4
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarspecialcombo.js +5 -2
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarstylecombo.js +13 -13
- data/public/javascripts/fckeditor/editor/_source/classes/fckw3crange.js +17 -13
- data/public/javascripts/fckeditor/editor/_source/classes/fckxml.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/classes/fckxml_gecko.js +28 -13
- data/public/javascripts/fckeditor/editor/_source/classes/fckxml_ie.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fck_othercommands.js +75 -19
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckblockquotecommand.js +64 -8
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckcorestylecommand.js +3 -1
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckfitwindow.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckindentcommands.js +5 -3
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckjustifycommands.js +6 -6
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fcklistcommands.js +4 -4
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fcknamedcommand.js +3 -1
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckpasteplaintextcommand.js +3 -1
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckpastewordcommand.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckremoveformatcommand.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckshowblocks.js +7 -9
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_gecko.js +4 -2
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_ie.js +4 -2
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckstylecommand.js +3 -3
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fcktablecommand.js +4 -4
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fcktextcolorcommand.js +28 -10
- data/public/javascripts/fckeditor/editor/_source/fckconstants.js +1 -1
- data/public/javascripts/fckeditor/editor/_source/fckeditorapi.js +21 -13
- data/public/javascripts/fckeditor/editor/_source/fckjscoreextensions.js +5 -5
- data/public/javascripts/fckeditor/editor/_source/fckscriptloader.js +4 -4
- data/public/javascripts/fckeditor/editor/_source/internals/fck.js +148 -38
- data/public/javascripts/fckeditor/editor/_source/internals/fck_contextmenu.js +4 -4
- data/public/javascripts/fckeditor/editor/_source/internals/fck_gecko.js +45 -47
- data/public/javascripts/fckeditor/editor/_source/internals/fck_ie.js +50 -17
- data/public/javascripts/fckeditor/editor/_source/internals/fckbrowserinfo.js +4 -2
- data/public/javascripts/fckeditor/editor/_source/internals/fckcodeformatter.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/internals/fckcommands.js +28 -28
- data/public/javascripts/fckeditor/editor/_source/internals/fckconfig.js +12 -13
- data/public/javascripts/fckeditor/editor/_source/internals/fckdebug.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/internals/fckdialog.js +211 -15
- data/public/javascripts/fckeditor/editor/_source/internals/fckdocumentprocessor.js +63 -39
- data/public/javascripts/fckeditor/editor/_source/internals/fckdomtools.js +177 -37
- data/public/javascripts/fckeditor/editor/_source/internals/fcklanguagemanager.js +2 -1
- data/public/javascripts/fckeditor/editor/_source/internals/fcklisthandler.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/internals/fcklistslib.js +5 -2
- data/public/javascripts/fckeditor/editor/_source/internals/fckplugins.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/internals/fckregexlib.js +5 -2
- data/public/javascripts/fckeditor/editor/_source/internals/fckselection.js +3 -3
- data/public/javascripts/fckeditor/editor/_source/internals/fckselection_gecko.js +36 -27
- data/public/javascripts/fckeditor/editor/_source/internals/fckselection_ie.js +91 -17
- data/public/javascripts/fckeditor/editor/_source/internals/fckstyles.js +22 -13
- data/public/javascripts/fckeditor/editor/_source/internals/fcktablehandler.js +15 -15
- data/public/javascripts/fckeditor/editor/_source/internals/fcktablehandler_gecko.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/internals/fcktablehandler_ie.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/internals/fcktoolbaritems.js +1 -1
- data/public/javascripts/fckeditor/editor/_source/internals/fcktoolbarset.js +32 -6
- data/public/javascripts/fckeditor/editor/_source/internals/fcktools.js +181 -22
- data/public/javascripts/fckeditor/editor/_source/internals/fcktools_gecko.js +19 -7
- data/public/javascripts/fckeditor/editor/_source/internals/fcktools_ie.js +8 -2
- data/public/javascripts/fckeditor/editor/_source/internals/fckundo.js +8 -5
- data/public/javascripts/fckeditor/editor/_source/internals/fckurlparams.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/internals/fckxhtml.js +116 -61
- data/public/javascripts/fckeditor/editor/_source/internals/fckxhtml_gecko.js +6 -10
- data/public/javascripts/fckeditor/editor/_source/internals/fckxhtml_ie.js +51 -56
- data/public/javascripts/fckeditor/editor/_source/internals/fckxhtmlentities.js +1 -1
- data/public/javascripts/fckeditor/editor/css/fck_editorarea.css +3 -2
- data/public/javascripts/fckeditor/editor/css/fck_internal.css +19 -2
- data/public/javascripts/fckeditor/editor/css/fck_showtableborders_gecko.css +8 -1
- data/public/javascripts/fckeditor/editor/css/images/fck_plugin.gif +0 -0
- data/public/javascripts/fckeditor/editor/dialog/common/fck_dialog_common.css +8 -1
- data/public/javascripts/fckeditor/editor/dialog/common/fck_dialog_common.js +199 -26
- data/public/javascripts/fckeditor/editor/dialog/fck_about.html +20 -14
- data/public/javascripts/fckeditor/editor/dialog/fck_about/sponsors/spellchecker_net.gif +0 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_anchor.html +15 -10
- data/public/javascripts/fckeditor/editor/dialog/fck_button.html +9 -14
- data/public/javascripts/fckeditor/editor/dialog/fck_checkbox.html +8 -13
- data/public/javascripts/fckeditor/editor/dialog/fck_colorselector.html +4 -3
- data/public/javascripts/fckeditor/editor/dialog/fck_docprops.html +6 -6
- data/public/javascripts/fckeditor/editor/dialog/fck_docprops/fck_document_preview.html +1 -1
- data/public/javascripts/fckeditor/editor/dialog/fck_flash.html +9 -3
- data/public/javascripts/fckeditor/editor/dialog/fck_flash/fck_flash.js +18 -11
- data/public/javascripts/fckeditor/editor/dialog/fck_flash/fck_flash_preview.html +7 -3
- data/public/javascripts/fckeditor/editor/dialog/fck_form.html +7 -4
- data/public/javascripts/fckeditor/editor/dialog/fck_hiddenfield.html +12 -15
- data/public/javascripts/fckeditor/editor/dialog/fck_image.html +9 -3
- data/public/javascripts/fckeditor/editor/dialog/fck_image/fck_image.js +24 -12
- data/public/javascripts/fckeditor/editor/dialog/fck_image/fck_image_preview.html +24 -18
- data/public/javascripts/fckeditor/editor/dialog/fck_link.html +1 -1
- data/public/javascripts/fckeditor/editor/dialog/fck_link/fck_link.js +41 -20
- data/public/javascripts/fckeditor/editor/dialog/fck_listprop.html +8 -4
- data/public/javascripts/fckeditor/editor/dialog/fck_paste.html +53 -54
- data/public/javascripts/fckeditor/editor/dialog/fck_radiobutton.html +8 -13
- data/public/javascripts/fckeditor/editor/dialog/fck_replace.html +157 -79
- data/public/javascripts/fckeditor/editor/dialog/fck_select.html +14 -11
- data/public/javascripts/fckeditor/editor/dialog/fck_select/fck_select.js +2 -2
- data/public/javascripts/fckeditor/editor/dialog/fck_smiley.html +9 -4
- data/public/javascripts/fckeditor/editor/dialog/fck_source.html +5 -2
- data/public/javascripts/fckeditor/editor/dialog/fck_specialchar.html +9 -6
- data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages.html +2 -1
- data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.cfm +3 -1
- data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php +5 -2
- data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.pl +2 -1
- data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellChecker.js +0 -1
- data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellerStyle.css +1 -1
- data/public/javascripts/fckeditor/editor/dialog/fck_table.html +10 -5
- data/public/javascripts/fckeditor/editor/dialog/fck_tablecell.html +8 -6
- data/public/javascripts/fckeditor/editor/dialog/fck_template.html +1 -1
- data/public/javascripts/fckeditor/editor/dialog/fck_textarea.html +10 -11
- data/public/javascripts/fckeditor/editor/dialog/fck_textfield.html +10 -14
- data/public/javascripts/fckeditor/editor/dtd/fck_dtd_test.html +0 -2
- data/public/javascripts/fckeditor/editor/dtd/fck_xhtml10strict.js +2 -2
- data/public/javascripts/fckeditor/editor/dtd/fck_xhtml10transitional.js +3 -3
- data/public/javascripts/fckeditor/editor/fckdebug.html +1 -1
- data/public/javascripts/fckeditor/editor/fckdialog.html +660 -213
- data/public/javascripts/fckeditor/editor/fckeditor.html +66 -16
- data/public/javascripts/fckeditor/editor/fckeditor.original.html +70 -16
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/browser.css +2 -2
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/browser.html +37 -2
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmactualfolder.html +33 -1
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmcreatefolder.html +1 -1
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmfolders.html +2 -1
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmresourceslist.html +3 -2
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmresourcetype.html +1 -1
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmupload.html +2 -1
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/js/common.js +34 -2
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/js/fckxml.js +3 -3
- data/public/javascripts/fckeditor/editor/filemanager/connectors/aspx/connector.aspx +5 -3
- data/public/javascripts/fckeditor/editor/filemanager/connectors/aspx/upload.aspx +5 -3
- data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/basexml.pl +1 -1
- data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/commands.pl +50 -4
- data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/connector.cgi +2 -3
- data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/io.pl +14 -4
- data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/upload.cgi +2 -3
- data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/upload_fck.pl +23 -4
- data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/util.pl +1 -1
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/config.py +43 -32
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/connector.py +16 -16
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/fckcommands.py +26 -9
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/fckconnector.py +2 -2
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/fckoutput.py +40 -9
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/fckutil.py +20 -21
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/htaccess.txt +2 -2
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/upload.py +13 -13
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/wsgi.py +3 -3
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/zope.py +4 -5
- data/public/javascripts/fckeditor/editor/filemanager/connectors/test.html +34 -1
- data/public/javascripts/fckeditor/editor/filemanager/connectors/uploadtest.html +47 -4
- data/public/javascripts/fckeditor/editor/js/fckadobeair.js +176 -0
- data/public/javascripts/fckeditor/editor/js/fckeditorcode_gecko.js +77 -77
- data/public/javascripts/fckeditor/editor/js/fckeditorcode_ie.js +74 -74
- data/public/javascripts/fckeditor/editor/lang/_translationstatus.txt +55 -54
- data/public/javascripts/fckeditor/editor/lang/af.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/ar.js +16 -17
- data/public/javascripts/fckeditor/editor/lang/bg.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/bn.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/bs.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/ca.js +27 -28
- data/public/javascripts/fckeditor/editor/lang/cs.js +18 -19
- data/public/javascripts/fckeditor/editor/lang/da.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/de.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/el.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/en-au.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/en-ca.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/en-uk.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/en.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/eo.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/es.js +34 -35
- data/public/javascripts/fckeditor/editor/lang/et.js +32 -33
- data/public/javascripts/fckeditor/editor/lang/eu.js +32 -33
- data/public/javascripts/fckeditor/editor/lang/fa.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/fi.js +15 -16
- data/public/javascripts/fckeditor/editor/lang/fo.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/fr-ca.js +515 -0
- data/public/javascripts/fckeditor/editor/lang/fr.js +5 -6
- data/public/javascripts/fckeditor/editor/lang/gl.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/he.js +15 -16
- data/public/javascripts/fckeditor/editor/lang/hi.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/hr.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/hu.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/it.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/ja.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/km.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/ko.js +25 -26
- data/public/javascripts/fckeditor/editor/lang/lt.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/lv.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/mn.js +199 -200
- data/public/javascripts/fckeditor/editor/lang/ms.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/nb.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/nl.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/no.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/pl.js +51 -52
- data/public/javascripts/fckeditor/editor/lang/pt-br.js +16 -17
- data/public/javascripts/fckeditor/editor/lang/pt.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/ro.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/ru.js +31 -32
- data/public/javascripts/fckeditor/editor/lang/sk.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/sl.js +39 -40
- data/public/javascripts/fckeditor/editor/lang/sr-latn.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/sr.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/sv.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/th.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/tr.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/uk.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/vi.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/zh-cn.js +2 -3
- data/public/javascripts/fckeditor/editor/lang/zh.js +1 -2
- data/public/javascripts/fckeditor/editor/plugins/autogrow/fckplugin.js +9 -2
- data/public/javascripts/fckeditor/editor/plugins/bbcode/_sample/sample.config.js +1 -1
- data/public/javascripts/fckeditor/editor/plugins/bbcode/_sample/sample.html +1 -1
- data/public/javascripts/fckeditor/editor/plugins/bbcode/fckplugin.js +2 -2
- data/public/javascripts/fckeditor/editor/plugins/dragresizetable/fckplugin.js +35 -11
- data/public/javascripts/fckeditor/editor/plugins/placeholder/fck_placeholder.html +10 -5
- data/public/javascripts/fckeditor/editor/plugins/placeholder/fckplugin.js +3 -3
- data/public/javascripts/fckeditor/editor/plugins/placeholder/lang/de.js +2 -2
- data/public/javascripts/fckeditor/editor/plugins/placeholder/lang/en.js +2 -2
- data/public/javascripts/fckeditor/editor/{filemanager/connectors/cfm/upload.cfm → plugins/placeholder/lang/es.js} +9 -13
- data/public/javascripts/fckeditor/editor/plugins/placeholder/lang/fr.js +1 -1
- data/public/javascripts/fckeditor/editor/plugins/placeholder/lang/it.js +1 -1
- data/public/javascripts/fckeditor/editor/plugins/placeholder/lang/pl.js +2 -2
- data/public/javascripts/fckeditor/editor/plugins/simplecommands/fckplugin.js +1 -1
- data/public/javascripts/fckeditor/editor/plugins/tablecommands/fckplugin.js +1 -1
- data/public/javascripts/fckeditor/editor/skins/_fckviewstrips.html +1 -1
- data/public/javascripts/fckeditor/editor/skins/default/fck_dialog.css +271 -8
- data/public/javascripts/fckeditor/editor/skins/default/fck_editor.css +2 -2
- data/public/javascripts/fckeditor/editor/skins/office2003/fck_dialog.css +270 -8
- data/public/javascripts/fckeditor/editor/skins/office2003/fck_editor.css +2 -2
- data/public/javascripts/fckeditor/editor/skins/silver/fck_dialog.css +270 -11
- data/public/javascripts/fckeditor/editor/skins/silver/fck_editor.css +2 -2
- data/public/javascripts/fckeditor/fckconfig.js +58 -55
- data/public/javascripts/fckeditor/fckeditor.js +99 -8
- data/public/javascripts/fckeditor/fckeditor.py +2 -4
- data/public/javascripts/fckeditor/fckpackager.xml +12 -12
- data/public/javascripts/fckeditor/fckstyles.xml +2 -5
- data/public/javascripts/fckeditor/fcktemplates.xml +1 -1
- data/public/javascripts/fckeditor/license.txt +1 -2
- data/public/javascripts/prototype.js +46 -101
- data/public/javascripts/scriptaculous.js +28 -17
- data/public/stylesheets/administration.css +5 -1
- data/themes/dirtylicious/about.markdown +3 -0
- data/themes/dirtylicious/images/body.jpg +0 -0
- data/themes/dirtylicious/images/container.jpg +0 -0
- data/themes/dirtylicious/images/gravatar.gif +0 -0
- data/themes/dirtylicious/images/header.jpg +0 -0
- data/themes/dirtylicious/images/li.gif +0 -0
- data/themes/dirtylicious/images/main.gif +0 -0
- data/themes/dirtylicious/images/nav.gif +0 -0
- data/themes/dirtylicious/images/quote.gif +0 -0
- data/themes/dirtylicious/images/spinner.gif +0 -0
- data/themes/dirtylicious/layouts/default.html.erb +60 -0
- data/themes/dirtylicious/preview.png +0 -0
- data/themes/dirtylicious/stylesheets/application.css +327 -0
- data/themes/dirtylicious/views/articles/_article.html.erb +33 -0
- data/themes/dirtylicious/views/articles/_comment.html.erb +14 -0
- data/themes/dirtylicious/views/articles/_comment_form.html.erb +37 -0
- data/themes/dirtylicious/views/articles/_comment_list.html.erb +7 -0
- data/themes/dirtylicious/views/articles/_trackback.html.erb +9 -0
- data/themes/dirtylicious/views/articles/comment_preview.html.erb +10 -0
- data/themes/dirtylicious/views/articles/index.html.erb +5 -0
- data/themes/dirtylicious/views/articles/read.html.erb +42 -0
- data/themes/dirtylicious/views/shared/_search.html.erb +16 -0
- data/themes/standard_issue/about.markdown +5 -0
- data/themes/standard_issue/images/img01.gif +0 -0
- data/themes/standard_issue/images/img02.gif +0 -0
- data/themes/standard_issue/images/img03.gif +0 -0
- data/themes/standard_issue/images/img04.jpg +0 -0
- data/themes/standard_issue/images/img05.gif +0 -0
- data/themes/standard_issue/images/img06.gif +0 -0
- data/themes/standard_issue/images/img07.gif +0 -0
- data/themes/standard_issue/images/img08.gif +0 -0
- data/themes/standard_issue/images/img09.gif +0 -0
- data/themes/standard_issue/images/img10.gif +0 -0
- data/themes/standard_issue/images/spacer.gif +0 -0
- data/themes/standard_issue/images/spinner.gif +0 -0
- data/themes/standard_issue/layouts/default.html.erb +59 -0
- data/themes/standard_issue/preview.png +0 -0
- data/themes/standard_issue/stylesheets/application.css +461 -0
- data/themes/standard_issue/views/articles/_article.html.erb +37 -0
- data/themes/standard_issue/views/articles/_comment.html.erb +12 -0
- data/themes/standard_issue/views/articles/_comment_form.html.erb +48 -0
- data/themes/standard_issue/views/articles/_comment_list.html.erb +7 -0
- data/themes/standard_issue/views/articles/_trackback.html.erb +9 -0
- data/themes/standard_issue/views/articles/comment_preview.html.erb +10 -0
- data/themes/standard_issue/views/articles/index.html.erb +5 -0
- data/themes/standard_issue/views/articles/read.html.erb +42 -0
- data/themes/standard_issue/views/shared/_search.html.erb +17 -0
- data/themes/standard_issue/views/theme/static_view_test.html.erb +1 -0
- data/themes/typographic/images/accept.gif +0 -0
- data/themes/typographic/images/accept50.gif +0 -0
- data/themes/typographic/images/bg_white.gif +0 -0
- data/themes/typographic/images/bg_wrapper.gif +0 -0
- data/themes/typographic/images/bullet_bottom.gif +0 -0
- data/themes/typographic/images/bullet_right.gif +0 -0
- data/themes/typographic/images/email_open.gif +0 -0
- data/themes/typographic/images/email_open50.gif +0 -0
- data/themes/typographic/images/meta.gif +0 -0
- data/themes/typographic/images/page_edit.gif +0 -0
- data/themes/typographic/images/page_edit50.gif +0 -0
- data/themes/typographic/images/spinner.gif +0 -0
- data/themes/typographic/images/tag.gif +0 -0
- data/themes/typographic/images/user.gif +0 -0
- data/themes/typographic/images/user50.gif +0 -0
- data/themes/typographic/images/world_link.gif +0 -0
- data/themes/typographic/images/world_link50.gif +0 -0
- data/themes/typographic/layouts/default.html.erb +5 -2
- data/themes/typographic/stylesheets/ie6.css +86 -0
- data/themes/typographic/views/articles/_article.html.erb +2 -2
- data/vendor/plugins/fckeditor/README +0 -7
- data/vendor/plugins/fckeditor/app/helpers/fckeditor_helper.rb +1 -3
- data/vendor/plugins/fckeditor/lib/fckeditor_version.rb +2 -2
- data/vendor/plugins/fckeditor/tasks/fckeditor_tasks.rake +1 -1
- data/vendor/plugins/fckeditor/test/fckeditor_test.rb +8 -0
- metadata +98 -66
- data/CHANGES-5.0.4 +0 -33
- data/SIDEBARS +0 -39
- data/app/views/admin/content/_quick_post.html.erb +0 -20
- data/db/schema.rb +0 -224
- data/public/.DS_Store +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/basexml.asp +0 -62
- data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/class_upload.asp +0 -353
- data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/commands.asp +0 -198
- data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/config.asp +0 -128
- data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/connector.asp +0 -88
- data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/io.asp +0 -222
- data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/upload.asp +0 -61
- data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/util.asp +0 -55
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/ImageObject.cfc +0 -273
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf5_connector.cfm +0 -315
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf5_upload.cfm +0 -296
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_basexml.cfm +0 -68
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_commands.cfm +0 -225
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_connector.cfm +0 -89
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_io.cfm +0 -288
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_upload.cfm +0 -68
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_util.cfm +0 -132
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/config.cfm +0 -183
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/connector.cfm +0 -31
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/image.cfc +0 -1325
- data/public/javascripts/fckeditor/editor/filemanager/connectors/lasso/config.lasso +0 -65
- data/public/javascripts/fckeditor/editor/filemanager/connectors/lasso/connector.lasso +0 -257
- data/public/javascripts/fckeditor/editor/filemanager/connectors/lasso/upload.lasso +0 -157
- data/public/javascripts/fckeditor/editor/filemanager/connectors/php/basexml.php +0 -93
- data/public/javascripts/fckeditor/editor/filemanager/connectors/php/commands.php +0 -245
- data/public/javascripts/fckeditor/editor/filemanager/connectors/php/config.php +0 -140
- data/public/javascripts/fckeditor/editor/filemanager/connectors/php/connector.php +0 -87
- data/public/javascripts/fckeditor/editor/filemanager/connectors/php/io.php +0 -272
- data/public/javascripts/fckeditor/editor/filemanager/connectors/php/phpcompat.php +0 -17
- data/public/javascripts/fckeditor/editor/filemanager/connectors/php/upload.php +0 -59
- data/public/javascripts/fckeditor/editor/filemanager/connectors/php/util.php +0 -185
- data/public/javascripts/fckeditor/fckeditor.afp +0 -161
- data/public/javascripts/fckeditor/fckeditor.asp +0 -235
- data/public/javascripts/fckeditor/fckeditor.cfc +0 -273
- data/public/javascripts/fckeditor/fckeditor.cfm +0 -210
- data/public/javascripts/fckeditor/fckeditor.lasso +0 -112
- data/test/mocks/themes/typographic/.DS_Store +0 -0
- data/themes/typographic/.DS_Store +0 -0
- data/vendor/plugins/audioscrobbler_sidebar/MAINTAINERS +0 -26
- data/vendor/plugins/audioscrobbler_sidebar/MIT-LICENSE +0 -21
- data/vendor/plugins/audioscrobbler_sidebar/README +0 -27
- data/vendor/plugins/audioscrobbler_sidebar/Rakefile +0 -22
- data/vendor/plugins/audioscrobbler_sidebar/init.rb +0 -5
- data/vendor/plugins/audioscrobbler_sidebar/lib/audioscrobbler.rb +0 -54
- data/vendor/plugins/audioscrobbler_sidebar/lib/audioscrobbler_sidebar.rb +0 -13
- data/vendor/plugins/audioscrobbler_sidebar/test/audioscrobbler_sidebar_test.rb +0 -8
- 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-
|
3
|
+
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
4
4
|
*
|
5
5
|
* == BEGIN LICENSE ==
|
6
6
|
*
|
@@ -26,13 +26,13 @@ var FCKLang =
|
|
26
26
|
// Language direction : "ltr" (left to right) or "rtl" (right to left).
|
27
27
|
Dir : "ltr",
|
28
28
|
|
29
|
-
ToolbarCollapse : "
|
30
|
-
ToolbarExpand : "Amplia la barra",
|
29
|
+
ToolbarCollapse : "Redueix la barra d'eines",
|
30
|
+
ToolbarExpand : "Amplia la barra d'eines",
|
31
31
|
|
32
32
|
// Toolbar Items and Context Menu
|
33
33
|
Save : "Desa",
|
34
34
|
NewPage : "Nova Pàgina",
|
35
|
-
Preview : "
|
35
|
+
Preview : "Visualització prèvia",
|
36
36
|
Cut : "Retalla",
|
37
37
|
Copy : "Copia",
|
38
38
|
Paste : "Enganxa",
|
@@ -58,26 +58,26 @@ InsertSpecialCharLbl: "Caràcter Especial",
|
|
58
58
|
InsertSpecialChar : "Insereix caràcter especial",
|
59
59
|
InsertSmileyLbl : "Icona",
|
60
60
|
InsertSmiley : "Insereix icona",
|
61
|
-
About : "Quant a FCKeditor",
|
61
|
+
About : "Quant a l'FCKeditor",
|
62
62
|
Bold : "Negreta",
|
63
63
|
Italic : "Cursiva",
|
64
64
|
Underline : "Subratllat",
|
65
65
|
StrikeThrough : "Barrat",
|
66
66
|
Subscript : "Subíndex",
|
67
67
|
Superscript : "Superíndex",
|
68
|
-
LeftJustify : "
|
69
|
-
CenterJustify : "
|
70
|
-
RightJustify : "
|
71
|
-
BlockJustify : "
|
72
|
-
DecreaseIndent : "
|
73
|
-
IncreaseIndent : "
|
68
|
+
LeftJustify : "Alinia a l'esquerra",
|
69
|
+
CenterJustify : "Centrat",
|
70
|
+
RightJustify : "Alinia a la dreta",
|
71
|
+
BlockJustify : "Justificat",
|
72
|
+
DecreaseIndent : "Redueix el sagnat",
|
73
|
+
IncreaseIndent : "Augmenta el sagnat",
|
74
74
|
Blockquote : "Bloc de cita",
|
75
75
|
Undo : "Desfés",
|
76
76
|
Redo : "Refés",
|
77
77
|
NumberedListLbl : "Llista numerada",
|
78
|
-
NumberedList : "
|
78
|
+
NumberedList : "Numeració activada/desactivada",
|
79
79
|
BulletedListLbl : "Llista de pics",
|
80
|
-
BulletedList : "
|
80
|
+
BulletedList : "Pics activats/descativats",
|
81
81
|
ShowTableBorders : "Mostra les vores de les taules",
|
82
82
|
ShowDetails : "Mostra detalls",
|
83
83
|
Style : "Estil",
|
@@ -143,7 +143,7 @@ SelectionFieldProp : "Propietats del camp de selecció",
|
|
143
143
|
TextareaProp : "Propietats de l'àrea de text",
|
144
144
|
FormProp : "Propietats del formulari",
|
145
145
|
|
146
|
-
FontFormats : "Normal;Formatejat;Adreça;Encapçalament 1;Encapçalament 2;Encapçalament 3;Encapçalament 4;Encapçalament 5;Encapçalament 6",
|
146
|
+
FontFormats : "Normal;Formatejat;Adreça;Encapçalament 1;Encapçalament 2;Encapçalament 3;Encapçalament 4;Encapçalament 5;Encapçalament 6;Normal (DIV)",
|
147
147
|
|
148
148
|
// Alerts and Messages
|
149
149
|
ProcessingXHTML : "Processant XHTML. Si us plau esperi...",
|
@@ -359,7 +359,6 @@ DlgPasteMsg2 : "Si us plau, enganxeu dins del següent camp utilitzant el teclat
|
|
359
359
|
DlgPasteSec : "A causa de la configuració de seguretat del vostre navegador, l'editor no pot accedir al porta-retalls directament. Enganxeu-ho un altre cop en aquesta finestra.",
|
360
360
|
DlgPasteIgnoreFont : "Ignora definicions de font",
|
361
361
|
DlgPasteRemoveStyles : "Elimina definicions d'estil",
|
362
|
-
DlgPasteCleanBox : "Neteja camp",
|
363
362
|
|
364
363
|
// Color Picker
|
365
364
|
ColorAutomatic : "Automàtic",
|
@@ -375,20 +374,20 @@ DlgAnchorErrorName : "Si us plau, escriviu el nom de l'ancora",
|
|
375
374
|
|
376
375
|
// Speller Pages Dialog
|
377
376
|
DlgSpellNotInDic : "No és al diccionari",
|
378
|
-
DlgSpellChangeTo : "
|
377
|
+
DlgSpellChangeTo : "Reemplaça amb",
|
379
378
|
DlgSpellBtnIgnore : "Ignora",
|
380
379
|
DlgSpellBtnIgnoreAll : "Ignora-les totes",
|
381
380
|
DlgSpellBtnReplace : "Canvia",
|
382
381
|
DlgSpellBtnReplaceAll : "Canvia-les totes",
|
383
382
|
DlgSpellBtnUndo : "Desfés",
|
384
|
-
DlgSpellNoSuggestions : "Cap
|
385
|
-
DlgSpellProgress : "
|
386
|
-
DlgSpellNoMispell : "
|
387
|
-
DlgSpellNoChanges : "
|
388
|
-
DlgSpellOneChange : "
|
389
|
-
DlgSpellManyChanges : "
|
383
|
+
DlgSpellNoSuggestions : "Cap suggeriment",
|
384
|
+
DlgSpellProgress : "Verificació ortogràfica en curs...",
|
385
|
+
DlgSpellNoMispell : "Verificació ortogràfica acabada: no hi ha cap paraula mal escrita",
|
386
|
+
DlgSpellNoChanges : "Verificació ortogràfica: no s'ha canviat cap paraula",
|
387
|
+
DlgSpellOneChange : "Verificació ortogràfica: s'ha canviat una paraula",
|
388
|
+
DlgSpellManyChanges : "Verificació ortogràfica: s'han canviat %1 paraules",
|
390
389
|
|
391
|
-
IeSpellDownload : "
|
390
|
+
IeSpellDownload : "Verificació ortogràfica no instal·lada. Voleu descarregar-ho ara?",
|
392
391
|
|
393
392
|
// Button Dialog
|
394
393
|
DlgButtonText : "Text (Valor)",
|
@@ -431,8 +430,8 @@ DlgTextareaRows : "Files",
|
|
431
430
|
// Text Field Dialog
|
432
431
|
DlgTextName : "Nom",
|
433
432
|
DlgTextValue : "Valor",
|
434
|
-
DlgTextCharWidth : "Amplada
|
435
|
-
DlgTextMaxChars : "
|
433
|
+
DlgTextCharWidth : "Amplada",
|
434
|
+
DlgTextMaxChars : "Nombre màxim de caràcters",
|
436
435
|
DlgTextType : "Tipus",
|
437
436
|
DlgTextTypeText : "Text",
|
438
437
|
DlgTextTypePass : "Contrasenya",
|
@@ -452,8 +451,8 @@ DlgLstTypeSquare : "Quadrat",
|
|
452
451
|
DlgLstTypeNumbers : "Números (1, 2, 3)",
|
453
452
|
DlgLstTypeLCase : "Lletres minúscules (a, b, c)",
|
454
453
|
DlgLstTypeUCase : "Lletres majúscules (A, B, C)",
|
455
|
-
DlgLstTypeSRoman : "Números romans minúscules (i, ii, iii)",
|
456
|
-
DlgLstTypeLRoman : "Números romans majúscules (I, II, III)",
|
454
|
+
DlgLstTypeSRoman : "Números romans en minúscules (i, ii, iii)",
|
455
|
+
DlgLstTypeLRoman : "Números romans en majúscules (I, II, III)",
|
457
456
|
|
458
457
|
// Document Properties Dialog
|
459
458
|
DlgDocGeneralTab : "General",
|
@@ -502,7 +501,7 @@ DlgDocPreview : "Vista prèvia",
|
|
502
501
|
// Templates Dialog
|
503
502
|
Templates : "Plantilles",
|
504
503
|
DlgTemplatesTitle : "Contingut plantilles",
|
505
|
-
DlgTemplatesSelMsg : "Si us plau, seleccioneu la plantilla per obrir
|
504
|
+
DlgTemplatesSelMsg : "Si us plau, seleccioneu la plantilla per obrir a l'editor<br>(el contingut actual no serà enregistrat):",
|
506
505
|
DlgTemplatesLoading : "Carregant la llista de plantilles. Si us plau, espereu...",
|
507
506
|
DlgTemplatesNoTpl : "(No hi ha plantilles definides)",
|
508
507
|
DlgTemplatesReplace : "Reemplaça el contingut actual",
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*
|
2
2
|
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
3
|
-
* Copyright (C) 2003-
|
3
|
+
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
4
4
|
*
|
5
5
|
* == BEGIN LICENSE ==
|
6
6
|
*
|
@@ -45,7 +45,7 @@ InsertLinkLbl : "Odkaz",
|
|
45
45
|
InsertLink : "Vložit/změnit odkaz",
|
46
46
|
RemoveLink : "Odstranit odkaz",
|
47
47
|
Anchor : "Vložít/změnit záložku",
|
48
|
-
AnchorDelete : "
|
48
|
+
AnchorDelete : "Odstranit kotvu",
|
49
49
|
InsertImageLbl : "Obrázek",
|
50
50
|
InsertImage : "Vložit/změnit obrázek",
|
51
51
|
InsertFlashLbl : "Flash",
|
@@ -71,7 +71,7 @@ RightJustify : "Zarovnat vpravo",
|
|
71
71
|
BlockJustify : "Zarovnat do bloku",
|
72
72
|
DecreaseIndent : "Zmenšit odsazení",
|
73
73
|
IncreaseIndent : "Zvětšit odsazení",
|
74
|
-
Blockquote : "
|
74
|
+
Blockquote : "Citace",
|
75
75
|
Undo : "Zpět",
|
76
76
|
Redo : "Znovu",
|
77
77
|
NumberedListLbl : "Číslování",
|
@@ -105,27 +105,27 @@ SelectionField : "Seznam",
|
|
105
105
|
ImageButton : "Obrázkové tlačítko",
|
106
106
|
|
107
107
|
FitWindow : "Maximalizovat velikost editoru",
|
108
|
-
ShowBlocks : "
|
108
|
+
ShowBlocks : "Ukázat bloky",
|
109
109
|
|
110
110
|
// Context Menu
|
111
111
|
EditLink : "Změnit odkaz",
|
112
112
|
CellCM : "Buňka",
|
113
113
|
RowCM : "Řádek",
|
114
114
|
ColumnCM : "Sloupec",
|
115
|
-
InsertRowAfter : "
|
116
|
-
InsertRowBefore : "
|
117
|
-
DeleteRows : "Smazat
|
118
|
-
InsertColumnAfter : "
|
119
|
-
InsertColumnBefore : "
|
115
|
+
InsertRowAfter : "Vložit řádek za",
|
116
|
+
InsertRowBefore : "Vložit řádek před",
|
117
|
+
DeleteRows : "Smazat řádky",
|
118
|
+
InsertColumnAfter : "Vložit sloupec za",
|
119
|
+
InsertColumnBefore : "Vložit sloupec před",
|
120
120
|
DeleteColumns : "Smazat sloupec",
|
121
|
-
InsertCellAfter : "
|
122
|
-
InsertCellBefore : "
|
121
|
+
InsertCellAfter : "Vložit buňku za",
|
122
|
+
InsertCellBefore : "Vložit buňku před",
|
123
123
|
DeleteCells : "Smazat buňky",
|
124
124
|
MergeCells : "Sloučit buňky",
|
125
|
-
MergeRight : "
|
126
|
-
MergeDown : "
|
127
|
-
HorizontalSplitCell : "
|
128
|
-
VerticalSplitCell : "
|
125
|
+
MergeRight : "Sloučit doprava",
|
126
|
+
MergeDown : "Sloučit dolů",
|
127
|
+
HorizontalSplitCell : "Rozdělit buňky vodorovně",
|
128
|
+
VerticalSplitCell : "Rozdělit buňky svisle",
|
129
129
|
TableDelete : "Smazat tabulku",
|
130
130
|
CellProperties : "Vlastnosti buňky",
|
131
131
|
TableProperties : "Vlastnosti tabulky",
|
@@ -238,7 +238,7 @@ DlgLnkURL : "URL",
|
|
238
238
|
DlgLnkAnchorSel : "Vybrat kotvu",
|
239
239
|
DlgLnkAnchorByName : "Podle jména kotvy",
|
240
240
|
DlgLnkAnchorById : "Podle Id objektu",
|
241
|
-
DlgLnkNoAnchors : "(Ve stránce žádná kotva
|
241
|
+
DlgLnkNoAnchors : "(Ve stránce není definována žádná kotva!)",
|
242
242
|
DlgLnkEMail : "E-Mailová adresa",
|
243
243
|
DlgLnkEMailSubject : "Předmět zprávy",
|
244
244
|
DlgLnkEMailBody : "Tělo zprávy",
|
@@ -332,7 +332,7 @@ DlgCellBorderColor : "Barva ohraničení",
|
|
332
332
|
DlgCellBtnSelect : "Výběr...",
|
333
333
|
|
334
334
|
// Find and Replace Dialog
|
335
|
-
DlgFindAndReplaceTitle : "
|
335
|
+
DlgFindAndReplaceTitle : "Najít a nahradit",
|
336
336
|
|
337
337
|
// Find Dialog
|
338
338
|
DlgFindTitle : "Hledat",
|
@@ -359,7 +359,6 @@ DlgPasteMsg2 : "Do následujícího pole vložte požadovaný obsah pomocí klá
|
|
359
359
|
DlgPasteSec : "Z důvodů nastavení bezpečnosti Vašeho prohlížeče nemůže editor přistupovat přímo do schránky. Obsah schránky prosím vložte znovu do tohoto okna.",
|
360
360
|
DlgPasteIgnoreFont : "Ignorovat písmo",
|
361
361
|
DlgPasteRemoveStyles : "Odstranit styly",
|
362
|
-
DlgPasteCleanBox : "Vyčistit",
|
363
362
|
|
364
363
|
// Color Picker
|
365
364
|
ColorAutomatic : "Automaticky",
|
@@ -444,7 +443,7 @@ DlgHiddenValue : "Hodnota",
|
|
444
443
|
// Bulleted List Dialog
|
445
444
|
BulletedListProp : "Vlastnosti odrážek",
|
446
445
|
NumberedListProp : "Vlastnosti číslovaného seznamu",
|
447
|
-
DlgLstStart : "
|
446
|
+
DlgLstStart : "Začátek",
|
448
447
|
DlgLstType : "Typ",
|
449
448
|
DlgLstTypeCircle : "Kružnice",
|
450
449
|
DlgLstTypeDisc : "Kruh",
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*
|
2
2
|
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
3
|
-
* Copyright (C) 2003-
|
3
|
+
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
4
4
|
*
|
5
5
|
* == BEGIN LICENSE ==
|
6
6
|
*
|
@@ -359,7 +359,6 @@ DlgPasteMsg2 : "Indsæt i feltet herunder (<STRONG>Ctrl+V</STRONG>) og klik <STR
|
|
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 : "Ignorer font definitioner",
|
361
361
|
DlgPasteRemoveStyles : "Ignorer typografi",
|
362
|
-
DlgPasteCleanBox : "Slet indhold",
|
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-
|
3
|
+
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
4
4
|
*
|
5
5
|
* == BEGIN LICENSE ==
|
6
6
|
*
|
@@ -359,7 +359,6 @@ DlgPasteMsg2 : "Bitte fügen Sie den Text in der folgenden Box über die Tastatu
|
|
359
359
|
DlgPasteSec : "Aufgrund von Sicherheitsbeschränkungen Ihres Browsers kann der Editor nicht direkt auf die Zwischenablage zugreifen. Bitte fügen Sie den Inhalt erneut in diesem Fenster ein.",
|
360
360
|
DlgPasteIgnoreFont : "Ignoriere Schriftart-Definitionen",
|
361
361
|
DlgPasteRemoveStyles : "Entferne Style-Definitionen",
|
362
|
-
DlgPasteCleanBox : "Inhalt aufräumen",
|
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-
|
3
|
+
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
4
4
|
*
|
5
5
|
* == BEGIN LICENSE ==
|
6
6
|
*
|
@@ -359,7 +359,6 @@ DlgPasteMsg2 : "Παρακαλώ επικολήστε στο ακόλουθο κ
|
|
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 : "Αγνόηση προδιαγραφών γραμματοσειράς",
|
361
361
|
DlgPasteRemoveStyles : "Αφαίρεση προδιαγραφών στύλ",
|
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-
|
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.",
|
360
360
|
DlgPasteIgnoreFont : "Ignore Font Face definitions",
|
361
361
|
DlgPasteRemoveStyles : "Remove Styles definitions",
|
362
|
-
DlgPasteCleanBox : "Clean Up Box",
|
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-
|
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.",
|
360
360
|
DlgPasteIgnoreFont : "Ignore Font Face definitions",
|
361
361
|
DlgPasteRemoveStyles : "Remove Styles definitions",
|
362
|
-
DlgPasteCleanBox : "Clean Up Box",
|
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-
|
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.",
|
360
360
|
DlgPasteIgnoreFont : "Ignore Font Face definitions",
|
361
361
|
DlgPasteRemoveStyles : "Remove Styles definitions",
|
362
|
-
DlgPasteCleanBox : "Clean Up Box",
|
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-
|
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.",
|
360
360
|
DlgPasteIgnoreFont : "Ignore Font Face definitions",
|
361
361
|
DlgPasteRemoveStyles : "Remove Styles definitions",
|
362
|
-
DlgPasteCleanBox : "Clean Up Box",
|
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-
|
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 : "Aŭtomata",
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*
|
2
2
|
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
3
|
-
* Copyright (C) 2003-
|
3
|
+
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
4
4
|
*
|
5
5
|
* == BEGIN LICENSE ==
|
6
6
|
*
|
@@ -45,7 +45,7 @@ InsertLinkLbl : "Vínculo",
|
|
45
45
|
InsertLink : "Insertar/Editar Vínculo",
|
46
46
|
RemoveLink : "Eliminar Vínculo",
|
47
47
|
Anchor : "Referencia",
|
48
|
-
AnchorDelete : "
|
48
|
+
AnchorDelete : "Eliminar Referencia",
|
49
49
|
InsertImageLbl : "Imagen",
|
50
50
|
InsertImage : "Insertar/Editar Imagen",
|
51
51
|
InsertFlashLbl : "Flash",
|
@@ -71,7 +71,7 @@ RightJustify : "Alinear a Derecha",
|
|
71
71
|
BlockJustify : "Justificado",
|
72
72
|
DecreaseIndent : "Disminuir Sangría",
|
73
73
|
IncreaseIndent : "Aumentar Sangría",
|
74
|
-
Blockquote : "
|
74
|
+
Blockquote : "Cita",
|
75
75
|
Undo : "Deshacer",
|
76
76
|
Redo : "Rehacer",
|
77
77
|
NumberedListLbl : "Numeración",
|
@@ -105,27 +105,27 @@ SelectionField : "Campo de Selección",
|
|
105
105
|
ImageButton : "Botón Imagen",
|
106
106
|
|
107
107
|
FitWindow : "Maximizar el tamaño del editor",
|
108
|
-
ShowBlocks : "
|
108
|
+
ShowBlocks : "Mostrar bloques",
|
109
109
|
|
110
110
|
// Context Menu
|
111
111
|
EditLink : "Editar Vínculo",
|
112
112
|
CellCM : "Celda",
|
113
113
|
RowCM : "Fila",
|
114
114
|
ColumnCM : "Columna",
|
115
|
-
InsertRowAfter : "
|
116
|
-
InsertRowBefore : "
|
115
|
+
InsertRowAfter : "Insertar fila en la parte inferior",
|
116
|
+
InsertRowBefore : "Insertar fila en la parte superior",
|
117
117
|
DeleteRows : "Eliminar Filas",
|
118
|
-
InsertColumnAfter : "
|
119
|
-
InsertColumnBefore : "
|
118
|
+
InsertColumnAfter : "Insertar columna a la derecha",
|
119
|
+
InsertColumnBefore : "Insertar columna a la izquierda",
|
120
120
|
DeleteColumns : "Eliminar Columnas",
|
121
|
-
InsertCellAfter : "
|
122
|
-
InsertCellBefore : "
|
121
|
+
InsertCellAfter : "Insertar celda a la derecha",
|
122
|
+
InsertCellBefore : "Insertar celda a la izquierda",
|
123
123
|
DeleteCells : "Eliminar Celdas",
|
124
124
|
MergeCells : "Combinar Celdas",
|
125
|
-
MergeRight : "
|
126
|
-
MergeDown : "
|
127
|
-
HorizontalSplitCell : "
|
128
|
-
VerticalSplitCell : "
|
125
|
+
MergeRight : "Combinar a la derecha",
|
126
|
+
MergeDown : "Combinar hacia abajo",
|
127
|
+
HorizontalSplitCell : "Dividir la celda horizontalmente",
|
128
|
+
VerticalSplitCell : "Dividir la celda verticalmente",
|
129
129
|
TableDelete : "Eliminar Tabla",
|
130
130
|
CellProperties : "Propiedades de Celda",
|
131
131
|
TableProperties : "Propiedades de Tabla",
|
@@ -171,10 +171,10 @@ DlgAlertUrl : "Inserte el URL",
|
|
171
171
|
// General Dialogs Labels
|
172
172
|
DlgGenNotSet : "<No definido>",
|
173
173
|
DlgGenId : "Id",
|
174
|
-
DlgGenLangDir : "Orientación
|
174
|
+
DlgGenLangDir : "Orientación",
|
175
175
|
DlgGenLangDirLtr : "Izquierda a Derecha (LTR)",
|
176
176
|
DlgGenLangDirRtl : "Derecha a Izquierda (RTL)",
|
177
|
-
DlgGenLangCode : "
|
177
|
+
DlgGenLangCode : "Cód. de idioma",
|
178
178
|
DlgGenAccessKey : "Clave de Acceso",
|
179
179
|
DlgGenName : "Nombre",
|
180
180
|
DlgGenTabIndex : "Indice de tabulación",
|
@@ -210,7 +210,7 @@ DlgImgAlignRight : "Derecha",
|
|
210
210
|
DlgImgAlignTextTop : "Tope del texto",
|
211
211
|
DlgImgAlignTop : "Tope",
|
212
212
|
DlgImgPreview : "Vista Previa",
|
213
|
-
DlgImgAlertUrl : "Por favor
|
213
|
+
DlgImgAlertUrl : "Por favor escriba la URL de la imagen",
|
214
214
|
DlgImgLinkTab : "Vínculo",
|
215
215
|
|
216
216
|
// Flash Dialog
|
@@ -271,7 +271,7 @@ DlgLnkPopTop : "Posición Derecha",
|
|
271
271
|
DlnLnkMsgNoUrl : "Por favor tipee el vínculo URL",
|
272
272
|
DlnLnkMsgNoEMail : "Por favor tipee la dirección de e-mail",
|
273
273
|
DlnLnkMsgNoAnchor : "Por favor seleccione una referencia",
|
274
|
-
DlnLnkMsgInvPopName : "
|
274
|
+
DlnLnkMsgInvPopName : "El nombre debe empezar con un caracter alfanumérico y no debe contener espacios",
|
275
275
|
|
276
276
|
// Color Dialog
|
277
277
|
DlgColorTitle : "Seleccionar Color",
|
@@ -332,7 +332,7 @@ DlgCellBorderColor : "Color de Borde",
|
|
332
332
|
DlgCellBtnSelect : "Seleccione...",
|
333
333
|
|
334
334
|
// Find and Replace Dialog
|
335
|
-
DlgFindAndReplaceTitle : "
|
335
|
+
DlgFindAndReplaceTitle : "Buscar y Reemplazar",
|
336
336
|
|
337
337
|
// Find Dialog
|
338
338
|
DlgFindTitle : "Buscar",
|
@@ -356,10 +356,9 @@ PasteAsText : "Pegar como Texto Plano",
|
|
356
356
|
PasteFromWord : "Pegar desde Word",
|
357
357
|
|
358
358
|
DlgPasteMsg2 : "Por favor pegue dentro del cuadro utilizando el teclado (<STRONG>Ctrl+V</STRONG>); luego presione <STRONG>OK</STRONG>.",
|
359
|
-
DlgPasteSec : "
|
359
|
+
DlgPasteSec : "Debido a la configuración de seguridad de su navegador, el editor no tiene acceso al portapapeles. Es necesario que lo pegue de nuevo en esta ventana.",
|
360
360
|
DlgPasteIgnoreFont : "Ignorar definiciones de fuentes",
|
361
361
|
DlgPasteRemoveStyles : "Remover definiciones de estilo",
|
362
|
-
DlgPasteCleanBox : "Borrar el contenido del cuadro",
|
363
362
|
|
364
363
|
// Color Picker
|
365
364
|
ColorAutomatic : "Automático",
|
@@ -393,9 +392,9 @@ IeSpellDownload : "Módulo de Control de Ortografía no instalado. ¿Desea des
|
|
393
392
|
// Button Dialog
|
394
393
|
DlgButtonText : "Texto (Valor)",
|
395
394
|
DlgButtonType : "Tipo",
|
396
|
-
DlgButtonTypeBtn : "
|
397
|
-
DlgButtonTypeSbm : "
|
398
|
-
DlgButtonTypeRst : "
|
395
|
+
DlgButtonTypeBtn : "Boton",
|
396
|
+
DlgButtonTypeSbm : "Enviar",
|
397
|
+
DlgButtonTypeRst : "Reestablecer",
|
399
398
|
|
400
399
|
// Checkbox and Radio Button Dialogs
|
401
400
|
DlgCheckboxName : "Nombre",
|
@@ -444,7 +443,7 @@ DlgHiddenValue : "Valor",
|
|
444
443
|
// Bulleted List Dialog
|
445
444
|
BulletedListProp : "Propiedades de Viñetas",
|
446
445
|
NumberedListProp : "Propiedades de Numeraciones",
|
447
|
-
DlgLstStart : "
|
446
|
+
DlgLstStart : "Inicio",
|
448
447
|
DlgLstType : "Tipo",
|
449
448
|
DlgLstTypeCircle : "Círculo",
|
450
449
|
DlgLstTypeDisc : "Disco",
|
@@ -467,15 +466,15 @@ DlgDocLangDirLTR : "Izq. a Derecha (LTR)",
|
|
467
466
|
DlgDocLangDirRTL : "Der. a Izquierda (RTL)",
|
468
467
|
DlgDocLangCode : "Código de Idioma",
|
469
468
|
DlgDocCharSet : "Codif. de Conjunto de Caracteres",
|
470
|
-
DlgDocCharSetCE : "
|
471
|
-
DlgDocCharSetCT : "
|
472
|
-
DlgDocCharSetCR : "
|
473
|
-
DlgDocCharSetGR : "
|
474
|
-
DlgDocCharSetJP : "
|
475
|
-
DlgDocCharSetKR : "
|
476
|
-
DlgDocCharSetTR : "
|
477
|
-
DlgDocCharSetUN : "Unicode (UTF-8)",
|
478
|
-
DlgDocCharSetWE : "
|
469
|
+
DlgDocCharSetCE : "Centro Europeo",
|
470
|
+
DlgDocCharSetCT : "Chino Tradicional (Big5)",
|
471
|
+
DlgDocCharSetCR : "Cirílico",
|
472
|
+
DlgDocCharSetGR : "Griego",
|
473
|
+
DlgDocCharSetJP : "Japonés",
|
474
|
+
DlgDocCharSetKR : "Coreano",
|
475
|
+
DlgDocCharSetTR : "Turco",
|
476
|
+
DlgDocCharSetUN : "Unicode (UTF-8)",
|
477
|
+
DlgDocCharSetWE : "Europeo occidental",
|
479
478
|
DlgDocCharSetOther : "Otra Codificación",
|
480
479
|
|
481
480
|
DlgDocDocType : "Encabezado de Tipo de Documento",
|
@@ -505,7 +504,7 @@ DlgTemplatesTitle : "Contenido de Plantillas",
|
|
505
504
|
DlgTemplatesSelMsg : "Por favor selecciona la plantilla a abrir en el editor<br>(el contenido actual se perderá):",
|
506
505
|
DlgTemplatesLoading : "Cargando lista de Plantillas. Por favor, aguarde...",
|
507
506
|
DlgTemplatesNoTpl : "(No hay plantillas definidas)",
|
508
|
-
DlgTemplatesReplace : "
|
507
|
+
DlgTemplatesReplace : "Reemplazar el contenido actual",
|
509
508
|
|
510
509
|
// About Dialog
|
511
510
|
DlgAboutAboutTab : "Acerca de",
|