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
|
*
|
@@ -359,7 +359,6 @@ DlgPasteMsg2 : "Please paste inside the following box using the keyboard (<stron
|
|
359
359
|
DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING
|
360
360
|
DlgPasteIgnoreFont : "Ignore Font Face definitions", //MISSING
|
361
361
|
DlgPasteRemoveStyles : "Remove Styles definitions", //MISSING
|
362
|
-
DlgPasteCleanBox : "Clean Up Box", //MISSING
|
363
362
|
|
364
363
|
// Color Picker
|
365
364
|
ColorAutomatic : "Otomatik",
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*
|
2
2
|
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
3
|
-
* Copyright (C) 2003-
|
3
|
+
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
4
4
|
*
|
5
5
|
* == BEGIN LICENSE ==
|
6
6
|
*
|
@@ -359,7 +359,6 @@ DlgPasteMsg2 : "Vennligst lim inn i den følgende boksen med tastaturet (<STRONG
|
|
359
359
|
DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING
|
360
360
|
DlgPasteIgnoreFont : "Fjern skrifttyper",
|
361
361
|
DlgPasteRemoveStyles : "Fjern stildefinisjoner",
|
362
|
-
DlgPasteCleanBox : "Tøm boksen",
|
363
362
|
|
364
363
|
// Color Picker
|
365
364
|
ColorAutomatic : "Automatisk",
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*
|
2
2
|
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
3
|
-
* Copyright (C) 2003-
|
3
|
+
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
4
4
|
*
|
5
5
|
* == BEGIN LICENSE ==
|
6
6
|
*
|
@@ -359,7 +359,6 @@ DlgPasteMsg2 : "Plak de tekst in het volgende vak gebruik makend van je toetsten
|
|
359
359
|
DlgPasteSec : "Door de beveiligingsinstellingen van uw browser is het niet mogelijk om direct vanuit het klembord in de editor te plakken. Middels opnieuw plakken in dit venster kunt u de tekst alsnog plakken in de editor.",
|
360
360
|
DlgPasteIgnoreFont : "Negeer \"Font Face\"-definities",
|
361
361
|
DlgPasteRemoveStyles : "Verwijder \"Style\"-definities",
|
362
|
-
DlgPasteCleanBox : "Vak opschonen",
|
363
362
|
|
364
363
|
// Color Picker
|
365
364
|
ColorAutomatic : "Automatisch",
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*
|
2
2
|
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
3
|
-
* Copyright (C) 2003-
|
3
|
+
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
4
4
|
*
|
5
5
|
* == BEGIN LICENSE ==
|
6
6
|
*
|
@@ -359,7 +359,6 @@ DlgPasteMsg2 : "Vennligst lim inn i den følgende boksen med tastaturet (<STRONG
|
|
359
359
|
DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING
|
360
360
|
DlgPasteIgnoreFont : "Fjern skrifttyper",
|
361
361
|
DlgPasteRemoveStyles : "Fjern stildefinisjoner",
|
362
|
-
DlgPasteCleanBox : "Tøm boksen",
|
363
362
|
|
364
363
|
// Color Picker
|
365
364
|
ColorAutomatic : "Automatisk",
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*
|
2
2
|
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
3
|
-
* Copyright (C) 2003-
|
3
|
+
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
4
4
|
*
|
5
5
|
* == BEGIN LICENSE ==
|
6
6
|
*
|
@@ -45,7 +45,7 @@ InsertLinkLbl : "Hiperłącze",
|
|
45
45
|
InsertLink : "Wstaw/edytuj hiperłącze",
|
46
46
|
RemoveLink : "Usuń hiperłącze",
|
47
47
|
Anchor : "Wstaw/edytuj kotwicę",
|
48
|
-
AnchorDelete : "
|
48
|
+
AnchorDelete : "Usuń kotwicę",
|
49
49
|
InsertImageLbl : "Obrazek",
|
50
50
|
InsertImage : "Wstaw/edytuj obrazek",
|
51
51
|
InsertFlashLbl : "Flash",
|
@@ -71,7 +71,7 @@ RightJustify : "Wyrównaj do prawej",
|
|
71
71
|
BlockJustify : "Wyrównaj do lewej i prawej",
|
72
72
|
DecreaseIndent : "Zmniejsz wcięcie",
|
73
73
|
IncreaseIndent : "Zwiększ wcięcie",
|
74
|
-
Blockquote : "
|
74
|
+
Blockquote : "Cytat",
|
75
75
|
Undo : "Cofnij",
|
76
76
|
Redo : "Ponów",
|
77
77
|
NumberedListLbl : "Lista numerowana",
|
@@ -95,37 +95,37 @@ PageBreakLbl : "Odstęp",
|
|
95
95
|
PageBreak : "Wstaw odstęp",
|
96
96
|
|
97
97
|
Form : "Formularz",
|
98
|
-
Checkbox : "
|
99
|
-
RadioButton : "Pole wyboru",
|
98
|
+
Checkbox : "Pole wyboru (checkbox)",
|
99
|
+
RadioButton : "Pole wyboru (radio)",
|
100
100
|
TextField : "Pole tekstowe",
|
101
101
|
Textarea : "Obszar tekstowy",
|
102
102
|
HiddenField : "Pole ukryte",
|
103
103
|
Button : "Przycisk",
|
104
104
|
SelectionField : "Lista wyboru",
|
105
|
-
ImageButton : "Przycisk
|
105
|
+
ImageButton : "Przycisk-obrazek",
|
106
106
|
|
107
107
|
FitWindow : "Maksymalizuj rozmiar edytora",
|
108
|
-
ShowBlocks : "
|
108
|
+
ShowBlocks : "Pokaż bloki",
|
109
109
|
|
110
110
|
// Context Menu
|
111
111
|
EditLink : "Edytuj hiperłącze",
|
112
112
|
CellCM : "Komórka",
|
113
113
|
RowCM : "Wiersz",
|
114
114
|
ColumnCM : "Kolumna",
|
115
|
-
InsertRowAfter : "
|
116
|
-
InsertRowBefore : "
|
115
|
+
InsertRowAfter : "Wstaw wiersz poniżej",
|
116
|
+
InsertRowBefore : "Wstaw wiersz powyżej",
|
117
117
|
DeleteRows : "Usuń wiersze",
|
118
|
-
InsertColumnAfter : "
|
119
|
-
InsertColumnBefore : "
|
118
|
+
InsertColumnAfter : "Wstaw kolumnę z prawej",
|
119
|
+
InsertColumnBefore : "Wstaw kolumnę z lewej",
|
120
120
|
DeleteColumns : "Usuń kolumny",
|
121
|
-
InsertCellAfter : "
|
122
|
-
InsertCellBefore : "
|
121
|
+
InsertCellAfter : "Wstaw komórkę z prawej",
|
122
|
+
InsertCellBefore : "Wstaw komórkę z lewej",
|
123
123
|
DeleteCells : "Usuń komórki",
|
124
124
|
MergeCells : "Połącz komórki",
|
125
|
-
MergeRight : "
|
126
|
-
MergeDown : "
|
127
|
-
HorizontalSplitCell : "
|
128
|
-
VerticalSplitCell : "
|
125
|
+
MergeRight : "Połącz z komórką z prawej",
|
126
|
+
MergeDown : "Połącz z komórką poniżej",
|
127
|
+
HorizontalSplitCell : "Podziel komórkę poziomo",
|
128
|
+
VerticalSplitCell : "Podziel komórkę pionowo",
|
129
129
|
TableDelete : "Usuń tabelę",
|
130
130
|
CellProperties : "Właściwości komórki",
|
131
131
|
TableProperties : "Właściwości tabeli",
|
@@ -134,9 +134,9 @@ FlashProperties : "Właściwości elementu Flash",
|
|
134
134
|
|
135
135
|
AnchorProp : "Właściwości kotwicy",
|
136
136
|
ButtonProp : "Właściwości przycisku",
|
137
|
-
CheckboxProp : "
|
137
|
+
CheckboxProp : "Właściwości pola wyboru (checkbox)",
|
138
138
|
HiddenFieldProp : "Właściwości pola ukrytego",
|
139
|
-
RadioButtonProp : "Właściwości pola wyboru",
|
139
|
+
RadioButtonProp : "Właściwości pola wyboru (radio)",
|
140
140
|
ImageButtonProp : "Właściwości przycisku obrazka",
|
141
141
|
TextFieldProp : "Właściwości pola tekstowego",
|
142
142
|
SelectionFieldProp : "Właściwości listy wyboru",
|
@@ -155,8 +155,8 @@ UnknownCommand : "Nieznana komenda \"%1\"",
|
|
155
155
|
NotImplemented : "Komenda niezaimplementowana",
|
156
156
|
UnknownToolbarSet : "Pasek narzędzi \"%1\" nie istnieje",
|
157
157
|
NoActiveX : "Ustawienia zabezpieczeń twojej przeglądarki mogą ograniczyć niektóre funkcje edytora. Musisz włączyć opcję \"Uruchamianie formantów Activex i dodatków plugin\". W przeciwnym wypadku mogą pojawiać się błędy.",
|
158
|
-
BrowseServerBlocked : "
|
159
|
-
DialogBlocked : "Nie można otworzyć okna dialogowego. Upewnij się, że wszystkie blokady
|
158
|
+
BrowseServerBlocked : "Nie można otworzyć okno menadżera plików. Upewnij się, że wszystkie blokady wyskakujących okienek są wyłączone.",
|
159
|
+
DialogBlocked : "Nie można otworzyć okna dialogowego. Upewnij się, że wszystkie blokady wyskakujących okienek są wyłączone.",
|
160
160
|
|
161
161
|
// Dialogs
|
162
162
|
DlgBtnOK : "OK",
|
@@ -169,7 +169,7 @@ DlgInfoTab : "Informacje",
|
|
169
169
|
DlgAlertUrl : "Proszę podać URL",
|
170
170
|
|
171
171
|
// General Dialogs Labels
|
172
|
-
DlgGenNotSet : "<
|
172
|
+
DlgGenNotSet : "<nie ustawione>",
|
173
173
|
DlgGenId : "Id",
|
174
174
|
DlgGenLangDir : "Kierunek tekstu",
|
175
175
|
DlgGenLangDirLtr : "Od lewej do prawej (LTR)",
|
@@ -178,17 +178,17 @@ DlgGenLangCode : "Kod języka",
|
|
178
178
|
DlgGenAccessKey : "Klawisz dostępu",
|
179
179
|
DlgGenName : "Nazwa",
|
180
180
|
DlgGenTabIndex : "Indeks tabeli",
|
181
|
-
DlgGenLongDescr : "
|
182
|
-
DlgGenClass : "
|
183
|
-
DlgGenTitle : "
|
184
|
-
DlgGenContType : "
|
185
|
-
DlgGenLinkCharset : "
|
181
|
+
DlgGenLongDescr : "Długi opis hiperłącza",
|
182
|
+
DlgGenClass : "Nazwa klasy CSS",
|
183
|
+
DlgGenTitle : "Opis obiektu docelowego",
|
184
|
+
DlgGenContType : "Typ MIME obiektu docelowego",
|
185
|
+
DlgGenLinkCharset : "Kodowanie znaków obiektu docelowego",
|
186
186
|
DlgGenStyle : "Styl",
|
187
187
|
|
188
188
|
// Image Dialog
|
189
189
|
DlgImgTitle : "Właściwości obrazka",
|
190
190
|
DlgImgInfoTab : "Informacje o obrazku",
|
191
|
-
DlgImgBtnUpload : "
|
191
|
+
DlgImgBtnUpload : "Wyślij",
|
192
192
|
DlgImgURL : "Adres URL",
|
193
193
|
DlgImgUpload : "Wyślij",
|
194
194
|
DlgImgAlt : "Tekst zastępczy",
|
@@ -211,7 +211,7 @@ DlgImgAlignTextTop : "Do góry tekstu",
|
|
211
211
|
DlgImgAlignTop : "Do góry",
|
212
212
|
DlgImgPreview : "Podgląd",
|
213
213
|
DlgImgAlertUrl : "Podaj adres obrazka.",
|
214
|
-
DlgImgLinkTab : "
|
214
|
+
DlgImgLinkTab : "Hiperłącze",
|
215
215
|
|
216
216
|
// Flash Dialog
|
217
217
|
DlgFlashTitle : "Właściwości elementu Flash",
|
@@ -242,7 +242,7 @@ DlgLnkNoAnchors : "(W dokumencie nie zdefiniowano żadnych etykiet)",
|
|
242
242
|
DlgLnkEMail : "Adres e-mail",
|
243
243
|
DlgLnkEMailSubject : "Temat",
|
244
244
|
DlgLnkEMailBody : "Treść",
|
245
|
-
DlgLnkUpload : "
|
245
|
+
DlgLnkUpload : "Wyślij",
|
246
246
|
DlgLnkBtnUpload : "Wyślij",
|
247
247
|
|
248
248
|
DlgLnkTarget : "Cel",
|
@@ -271,7 +271,7 @@ DlgLnkPopTop : "Pozycja w pionie",
|
|
271
271
|
DlnLnkMsgNoUrl : "Podaj adres URL",
|
272
272
|
DlnLnkMsgNoEMail : "Podaj adres e-mail",
|
273
273
|
DlnLnkMsgNoAnchor : "Wybierz etykietę",
|
274
|
-
DlnLnkMsgInvPopName : "
|
274
|
+
DlnLnkMsgInvPopName : "Nazwa wyskakującego okienka musi zaczynać się od znaku alfanumerycznego i nie może zawierać spacji",
|
275
275
|
|
276
276
|
// Color Dialog
|
277
277
|
DlgColorTitle : "Wybierz kolor",
|
@@ -332,7 +332,7 @@ DlgCellBorderColor : "Kolor ramki",
|
|
332
332
|
DlgCellBtnSelect : "Wybierz...",
|
333
333
|
|
334
334
|
// Find and Replace Dialog
|
335
|
-
DlgFindAndReplaceTitle : "
|
335
|
+
DlgFindAndReplaceTitle : "Znajdź i zamień",
|
336
336
|
|
337
337
|
// Find Dialog
|
338
338
|
DlgFindTitle : "Znajdź",
|
@@ -356,10 +356,9 @@ PasteAsText : "Wklej jako czysty tekst",
|
|
356
356
|
PasteFromWord : "Wklej z Worda",
|
357
357
|
|
358
358
|
DlgPasteMsg2 : "Proszę wkleić w poniższym polu używając klawiaturowego skrótu (<STRONG>Ctrl+V</STRONG>) i kliknąć <STRONG>OK</STRONG>.",
|
359
|
-
DlgPasteSec : "
|
359
|
+
DlgPasteSec : "Zabezpieczenia przeglądarki uniemożliwiają wklejenie danych bezpośrednio do edytora. Proszę dane wkleić ponownie w tym okienku.",
|
360
360
|
DlgPasteIgnoreFont : "Ignoruj definicje 'Font Face'",
|
361
361
|
DlgPasteRemoveStyles : "Usuń definicje Stylów",
|
362
|
-
DlgPasteCleanBox : "Wyczyść",
|
363
362
|
|
364
363
|
// Color Picker
|
365
364
|
ColorAutomatic : "Automatycznie",
|
@@ -380,7 +379,7 @@ DlgSpellBtnIgnore : "Ignoruj",
|
|
380
379
|
DlgSpellBtnIgnoreAll : "Ignoruj wszystkie",
|
381
380
|
DlgSpellBtnReplace : "Zmień",
|
382
381
|
DlgSpellBtnReplaceAll : "Zmień wszystkie",
|
383
|
-
DlgSpellBtnUndo : "
|
382
|
+
DlgSpellBtnUndo : "Cofnij",
|
384
383
|
DlgSpellNoSuggestions : "- Brak sugestii -",
|
385
384
|
DlgSpellProgress : "Trwa sprawdzanie ...",
|
386
385
|
DlgSpellNoMispell : "Sprawdzanie zakończone: nie znaleziono błędów",
|
@@ -393,14 +392,14 @@ IeSpellDownload : "Słownik nie jest zainstalowany. Chcesz go ściągnąć?",
|
|
393
392
|
// Button Dialog
|
394
393
|
DlgButtonText : "Tekst (Wartość)",
|
395
394
|
DlgButtonType : "Typ",
|
396
|
-
DlgButtonTypeBtn : "
|
397
|
-
DlgButtonTypeSbm : "
|
398
|
-
DlgButtonTypeRst : "
|
395
|
+
DlgButtonTypeBtn : "Przycisk",
|
396
|
+
DlgButtonTypeSbm : "Wyślij",
|
397
|
+
DlgButtonTypeRst : "Wyzeruj",
|
399
398
|
|
400
399
|
// Checkbox and Radio Button Dialogs
|
401
400
|
DlgCheckboxName : "Nazwa",
|
402
401
|
DlgCheckboxValue : "Wartość",
|
403
|
-
DlgCheckboxSelected : "
|
402
|
+
DlgCheckboxSelected : "Zaznaczone",
|
404
403
|
|
405
404
|
// Form Dialog
|
406
405
|
DlgFormName : "Nazwa",
|
@@ -444,7 +443,7 @@ DlgHiddenValue : "Wartość",
|
|
444
443
|
// Bulleted List Dialog
|
445
444
|
BulletedListProp : "Właściwości listy punktowanej",
|
446
445
|
NumberedListProp : "Właściwości listy numerowanej",
|
447
|
-
DlgLstStart : "
|
446
|
+
DlgLstStart : "Początek",
|
448
447
|
DlgLstType : "Typ",
|
449
448
|
DlgLstTypeCircle : "Koło",
|
450
449
|
DlgLstTypeDisc : "Dysk",
|
@@ -467,18 +466,18 @@ DlgDocLangDirLTR : "Od lewej do prawej (LTR)",
|
|
467
466
|
DlgDocLangDirRTL : "Od prawej do lewej (RTL)",
|
468
467
|
DlgDocLangCode : "Kod języka",
|
469
468
|
DlgDocCharSet : "Kodowanie znaków",
|
470
|
-
DlgDocCharSetCE : "
|
471
|
-
DlgDocCharSetCT : "
|
472
|
-
DlgDocCharSetCR : "
|
473
|
-
DlgDocCharSetGR : "
|
474
|
-
DlgDocCharSetJP : "
|
475
|
-
DlgDocCharSetKR : "
|
476
|
-
DlgDocCharSetTR : "
|
477
|
-
DlgDocCharSetUN : "Unicode (UTF-8)",
|
478
|
-
DlgDocCharSetWE : "
|
469
|
+
DlgDocCharSetCE : "Środkowoeuropejskie",
|
470
|
+
DlgDocCharSetCT : "Chińskie tradycyjne (Big5)",
|
471
|
+
DlgDocCharSetCR : "Cyrylica",
|
472
|
+
DlgDocCharSetGR : "Greckie",
|
473
|
+
DlgDocCharSetJP : "Japońskie",
|
474
|
+
DlgDocCharSetKR : "Koreańskie",
|
475
|
+
DlgDocCharSetTR : "Tureckie",
|
476
|
+
DlgDocCharSetUN : "Unicode (UTF-8)",
|
477
|
+
DlgDocCharSetWE : "Zachodnioeuropejskie",
|
479
478
|
DlgDocCharSetOther : "Inne kodowanie znaków",
|
480
479
|
|
481
|
-
DlgDocDocType : "
|
480
|
+
DlgDocDocType : "Nagłówek typu dokumentu",
|
482
481
|
DlgDocDocTypeOther : "Inny typ dokumentu",
|
483
482
|
DlgDocIncXHTML : "Dołącz deklarację XHTML",
|
484
483
|
DlgDocBgColor : "Kolor tła",
|
@@ -496,7 +495,7 @@ DlgDocMaBottom : "Dolny",
|
|
496
495
|
DlgDocMeIndex : "Słowa kluczowe (oddzielone przecinkami)",
|
497
496
|
DlgDocMeDescr : "Opis dokumentu",
|
498
497
|
DlgDocMeAuthor : "Autor",
|
499
|
-
DlgDocMeCopy : "
|
498
|
+
DlgDocMeCopy : "Prawa autorskie",
|
500
499
|
DlgDocPreview : "Podgląd",
|
501
500
|
|
502
501
|
// Templates Dialog
|
@@ -505,7 +504,7 @@ DlgTemplatesTitle : "Szablony zawartości",
|
|
505
504
|
DlgTemplatesSelMsg : "Wybierz szablon do otwarcia w edytorze<br>(obecna zawartość okna edytora zostanie utracona):",
|
506
505
|
DlgTemplatesLoading : "Ładowanie listy szablonów. Proszę czekać...",
|
507
506
|
DlgTemplatesNoTpl : "(Brak zdefiniowanych szablonów)",
|
508
|
-
DlgTemplatesReplace : "
|
507
|
+
DlgTemplatesReplace : "Zastąp aktualną zawartość",
|
509
508
|
|
510
509
|
// About Dialog
|
511
510
|
DlgAboutAboutTab : "O ...",
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*
|
2
2
|
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
3
|
-
* Copyright (C) 2003-
|
3
|
+
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
4
4
|
*
|
5
5
|
* == BEGIN LICENSE ==
|
6
6
|
*
|
@@ -45,7 +45,7 @@ InsertLinkLbl : "Hiperlink",
|
|
45
45
|
InsertLink : "Inserir/Editar Hiperlink",
|
46
46
|
RemoveLink : "Remover Hiperlink",
|
47
47
|
Anchor : "Inserir/Editar Âncora",
|
48
|
-
AnchorDelete : "
|
48
|
+
AnchorDelete : "Remover Âncora",
|
49
49
|
InsertImageLbl : "Figura",
|
50
50
|
InsertImage : "Inserir/Editar Figura",
|
51
51
|
InsertFlashLbl : "Flash",
|
@@ -71,7 +71,7 @@ RightJustify : "Alinhar Direita",
|
|
71
71
|
BlockJustify : "Justificado",
|
72
72
|
DecreaseIndent : "Diminuir Recuo",
|
73
73
|
IncreaseIndent : "Aumentar Recuo",
|
74
|
-
Blockquote : "
|
74
|
+
Blockquote : "Recuo",
|
75
75
|
Undo : "Desfazer",
|
76
76
|
Redo : "Refazer",
|
77
77
|
NumberedListLbl : "Numeração",
|
@@ -105,27 +105,27 @@ SelectionField : "Caixa de Listagem",
|
|
105
105
|
ImageButton : "Botão de Imagem",
|
106
106
|
|
107
107
|
FitWindow : "Maximizar o tamanho do editor",
|
108
|
-
ShowBlocks : "
|
108
|
+
ShowBlocks : "Mostrar blocos",
|
109
109
|
|
110
110
|
// Context Menu
|
111
111
|
EditLink : "Editar Hiperlink",
|
112
112
|
CellCM : "Célula",
|
113
113
|
RowCM : "Linha",
|
114
114
|
ColumnCM : "Coluna",
|
115
|
-
InsertRowAfter : "
|
116
|
-
InsertRowBefore : "
|
115
|
+
InsertRowAfter : "Inserir linha abaixo",
|
116
|
+
InsertRowBefore : "Inserir linha acima",
|
117
117
|
DeleteRows : "Remover Linhas",
|
118
|
-
InsertColumnAfter : "
|
119
|
-
InsertColumnBefore : "
|
118
|
+
InsertColumnAfter : "Inserir coluna à direita",
|
119
|
+
InsertColumnBefore : "Inserir coluna à esquerda",
|
120
120
|
DeleteColumns : "Remover Colunas",
|
121
|
-
InsertCellAfter : "
|
122
|
-
InsertCellBefore : "
|
121
|
+
InsertCellAfter : "Inserir célula à direita",
|
122
|
+
InsertCellBefore : "Inserir célula à esquerda",
|
123
123
|
DeleteCells : "Remover Células",
|
124
124
|
MergeCells : "Mesclar Células",
|
125
|
-
MergeRight : "
|
126
|
-
MergeDown : "
|
127
|
-
HorizontalSplitCell : "
|
128
|
-
VerticalSplitCell : "
|
125
|
+
MergeRight : "Mesclar com célula à direita",
|
126
|
+
MergeDown : "Mesclar com célula abaixo",
|
127
|
+
HorizontalSplitCell : "Dividir célula horizontalmente",
|
128
|
+
VerticalSplitCell : "Dividir célula verticalmente",
|
129
129
|
TableDelete : "Apagar Tabela",
|
130
130
|
CellProperties : "Formatar Célula",
|
131
131
|
TableProperties : "Formatar Tabela",
|
@@ -332,7 +332,7 @@ DlgCellBorderColor : "Cor da Borda",
|
|
332
332
|
DlgCellBtnSelect : "Selecionar...",
|
333
333
|
|
334
334
|
// Find and Replace Dialog
|
335
|
-
DlgFindAndReplaceTitle : "
|
335
|
+
DlgFindAndReplaceTitle : "Localizar e Substituir",
|
336
336
|
|
337
337
|
// Find Dialog
|
338
338
|
DlgFindTitle : "Localizar...",
|
@@ -356,10 +356,9 @@ PasteAsText : "Colar como Texto sem Formatação",
|
|
356
356
|
PasteFromWord : "Colar do Word",
|
357
357
|
|
358
358
|
DlgPasteMsg2 : "Transfira o link usado no box usando o teclado com (<STRONG>Ctrl+V</STRONG>) e <STRONG>OK</STRONG>.",
|
359
|
-
DlgPasteSec : "
|
359
|
+
DlgPasteSec : "As configurações de segurança do seu navegador não permitem que o editor acesse os dados da área de transferência diretamente. Por favor cole o conteúdo novamente nesta janela.",
|
360
360
|
DlgPasteIgnoreFont : "Ignorar definições de fonte",
|
361
361
|
DlgPasteRemoveStyles : "Remove definições de estilo",
|
362
|
-
DlgPasteCleanBox : "Limpar Box",
|
363
362
|
|
364
363
|
// Color Picker
|
365
364
|
ColorAutomatic : "Automático",
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*
|
2
2
|
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
3
|
-
* Copyright (C) 2003-
|
3
|
+
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
4
4
|
*
|
5
5
|
* == BEGIN LICENSE ==
|
6
6
|
*
|
@@ -359,7 +359,6 @@ DlgPasteMsg2 : "Por favor, cole dentro da seguinte caixa usando o teclado (<STRO
|
|
359
359
|
DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING
|
360
360
|
DlgPasteIgnoreFont : "Ignorar da definições do Tipo de Letra ",
|
361
361
|
DlgPasteRemoveStyles : "Remover as definições de Estilos",
|
362
|
-
DlgPasteCleanBox : "Caixa de Limpeza",
|
363
362
|
|
364
363
|
// Color Picker
|
365
364
|
ColorAutomatic : "Automático",
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*
|
2
2
|
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
3
|
-
* Copyright (C) 2003-
|
3
|
+
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
4
4
|
*
|
5
5
|
* == BEGIN LICENSE ==
|
6
6
|
*
|
@@ -359,7 +359,6 @@ DlgPasteMsg2 : "Vă rugăm adăugaţi în căsuţa următoare folosind tastatura
|
|
359
359
|
DlgPasteSec : "Din cauza setărilor de securitate ale programului dvs. cu care navigaţi pe internet (browser), editorul nu poate accesa direct datele din clipboard. Va trebui să adăugaţi din nou datele în această fereastră.",
|
360
360
|
DlgPasteIgnoreFont : "Ignoră definiţiile Font Face",
|
361
361
|
DlgPasteRemoveStyles : "Şterge definiţiile stilurilor",
|
362
|
-
DlgPasteCleanBox : "Şterge căsuţa",
|
363
362
|
|
364
363
|
// Color Picker
|
365
364
|
ColorAutomatic : "Automatic",
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*
|
2
2
|
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
3
|
-
* Copyright (C) 2003-
|
3
|
+
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
4
4
|
*
|
5
5
|
* == BEGIN LICENSE ==
|
6
6
|
*
|
@@ -45,7 +45,7 @@ InsertLinkLbl : "Ссылка",
|
|
45
45
|
InsertLink : "Вставить/Редактировать ссылку",
|
46
46
|
RemoveLink : "Убрать ссылку",
|
47
47
|
Anchor : "Вставить/Редактировать якорь",
|
48
|
-
AnchorDelete : "
|
48
|
+
AnchorDelete : "Убрать якорь",
|
49
49
|
InsertImageLbl : "Изображение",
|
50
50
|
InsertImage : "Вставить/Редактировать изображение",
|
51
51
|
InsertFlashLbl : "Flash",
|
@@ -71,7 +71,7 @@ RightJustify : "По правому краю",
|
|
71
71
|
BlockJustify : "По ширине",
|
72
72
|
DecreaseIndent : "Уменьшить отступ",
|
73
73
|
IncreaseIndent : "Увеличить отступ",
|
74
|
-
Blockquote : "
|
74
|
+
Blockquote : "Цитата",
|
75
75
|
Undo : "Отменить",
|
76
76
|
Redo : "Повторить",
|
77
77
|
NumberedListLbl : "Нумерованный список",
|
@@ -105,27 +105,27 @@ SelectionField : "Список",
|
|
105
105
|
ImageButton : "Кнопка с изображением",
|
106
106
|
|
107
107
|
FitWindow : "Развернуть окно редактора",
|
108
|
-
ShowBlocks : "
|
108
|
+
ShowBlocks : "Показать блоки",
|
109
109
|
|
110
110
|
// Context Menu
|
111
111
|
EditLink : "Вставить ссылку",
|
112
112
|
CellCM : "Ячейка",
|
113
113
|
RowCM : "Строка",
|
114
114
|
ColumnCM : "Колонка",
|
115
|
-
InsertRowAfter : "
|
116
|
-
InsertRowBefore : "
|
115
|
+
InsertRowAfter : "Вставить строку после",
|
116
|
+
InsertRowBefore : "Вставить строку до",
|
117
117
|
DeleteRows : "Удалить строки",
|
118
|
-
InsertColumnAfter : "
|
119
|
-
InsertColumnBefore : "
|
118
|
+
InsertColumnAfter : "Вставить колонку после",
|
119
|
+
InsertColumnBefore : "Вставить колонку до",
|
120
120
|
DeleteColumns : "Удалить колонки",
|
121
|
-
InsertCellAfter : "
|
122
|
-
InsertCellBefore : "
|
121
|
+
InsertCellAfter : "Вставить ячейку после",
|
122
|
+
InsertCellBefore : "Вставить ячейку до",
|
123
123
|
DeleteCells : "Удалить ячейки",
|
124
124
|
MergeCells : "Соединить ячейки",
|
125
|
-
MergeRight : "
|
126
|
-
MergeDown : "
|
127
|
-
HorizontalSplitCell : "
|
128
|
-
VerticalSplitCell : "
|
125
|
+
MergeRight : "Соединить вправо",
|
126
|
+
MergeDown : "Соединить вниз",
|
127
|
+
HorizontalSplitCell : "Разбить ячейку горизонтально",
|
128
|
+
VerticalSplitCell : "Разбить ячейку вертикально",
|
129
129
|
TableDelete : "Удалить таблицу",
|
130
130
|
CellProperties : "Свойства ячейки",
|
131
131
|
TableProperties : "Свойства таблицы",
|
@@ -146,7 +146,7 @@ FormProp : "Свойства формы",
|
|
146
146
|
FontFormats : "Нормальный;Форматированный;Адрес;Заголовок 1;Заголовок 2;Заголовок 3;Заголовок 4;Заголовок 5;Заголовок 6;Нормальный (DIV)",
|
147
147
|
|
148
148
|
// Alerts and Messages
|
149
|
-
ProcessingXHTML : "Обработка XHTML.
|
149
|
+
ProcessingXHTML : "Обработка XHTML. Пожалуйста, подождите...",
|
150
150
|
Done : "Сделано",
|
151
151
|
PasteWordConfirm : "Текст, который вы хотите вставить, похож на копируемый из Word. Вы хотите очистить его перед вставкой?",
|
152
152
|
NotCompatiblePaste : "Эта команда доступна для Internet Explorer версии 5.5 или выше. Вы хотите вставить без очистки?",
|
@@ -156,7 +156,7 @@ NotImplemented : "Команда не реализована",
|
|
156
156
|
UnknownToolbarSet : "Панель инструментов \"%1\" не существует",
|
157
157
|
NoActiveX : "Настройки безопасности вашего браузера могут ограничивать некоторые свойства редактора. Вы должны включить опцию \"Запускать элементы управления ActiveX и плугины\". Вы можете видеть ошибки и замечать отсутствие возможностей.",
|
158
158
|
BrowseServerBlocked : "Ресурсы браузера не могут быть открыты. Проверьте что блокировки всплывающих окон выключены.",
|
159
|
-
DialogBlocked : "
|
159
|
+
DialogBlocked : "Невозможно открыть окно диалога. Проверьте что блокировки всплывающих окон выключены.",
|
160
160
|
|
161
161
|
// Dialogs
|
162
162
|
DlgBtnOK : "ОК",
|
@@ -166,7 +166,7 @@ DlgBtnBrowseServer : "Просмотреть на сервере",
|
|
166
166
|
DlgAdvancedTag : "Расширенный",
|
167
167
|
DlgOpOther : "<Другое>",
|
168
168
|
DlgInfoTab : "Информация",
|
169
|
-
DlgAlertUrl : "
|
169
|
+
DlgAlertUrl : "Пожалуйста, вставьте URL",
|
170
170
|
|
171
171
|
// General Dialogs Labels
|
172
172
|
DlgGenNotSet : "<не определено>",
|
@@ -210,7 +210,7 @@ DlgImgAlignRight : "По правому краю",
|
|
210
210
|
DlgImgAlignTextTop : "Текст наверху",
|
211
211
|
DlgImgAlignTop : "По верху",
|
212
212
|
DlgImgPreview : "Предварительный просмотр",
|
213
|
-
DlgImgAlertUrl : "
|
213
|
+
DlgImgAlertUrl : "Пожалуйста, введите URL изображения",
|
214
214
|
DlgImgLinkTab : "Ссылка",
|
215
215
|
|
216
216
|
// Flash Dialog
|
@@ -268,9 +268,9 @@ DlgLnkPopHeight : "Высота",
|
|
268
268
|
DlgLnkPopLeft : "Позиция слева",
|
269
269
|
DlgLnkPopTop : "Позиция сверху",
|
270
270
|
|
271
|
-
DlnLnkMsgNoUrl : "
|
272
|
-
DlnLnkMsgNoEMail : "
|
273
|
-
DlnLnkMsgNoAnchor : "
|
271
|
+
DlnLnkMsgNoUrl : "Пожалуйста, введите URL ссылки",
|
272
|
+
DlnLnkMsgNoEMail : "Пожалуйста, введите адрес эл. почты",
|
273
|
+
DlnLnkMsgNoAnchor : "Пожалуйста, выберете якорь",
|
274
274
|
DlnLnkMsgInvPopName : "Название вспывающего окна должно начинаться буквы и не может содержать пробелов",
|
275
275
|
|
276
276
|
// Color Dialog
|
@@ -332,7 +332,7 @@ DlgCellBorderColor : "Цвет бордюра",
|
|
332
332
|
DlgCellBtnSelect : "Выберите...",
|
333
333
|
|
334
334
|
// Find and Replace Dialog
|
335
|
-
DlgFindAndReplaceTitle : "
|
335
|
+
DlgFindAndReplaceTitle : "Найти и заменить",
|
336
336
|
|
337
337
|
// Find Dialog
|
338
338
|
DlgFindTitle : "Найти",
|
@@ -349,17 +349,16 @@ DlgReplaceReplAllBtn : "Заменить все",
|
|
349
349
|
DlgReplaceWordChk : "Совпадение целых слов",
|
350
350
|
|
351
351
|
// Paste Operations / Dialog
|
352
|
-
PasteErrorCut : "Настройки безопасности вашего браузера не позволяют редактору автоматически выполнять операции вырезания.
|
353
|
-
PasteErrorCopy : "Настройки безопасности вашего браузера не позволяют редактору автоматически выполнять операции копирования.
|
352
|
+
PasteErrorCut : "Настройки безопасности вашего браузера не позволяют редактору автоматически выполнять операции вырезания. Пожалуйста, используйте клавиатуру для этого (Ctrl+X).",
|
353
|
+
PasteErrorCopy : "Настройки безопасности вашего браузера не позволяют редактору автоматически выполнять операции копирования. Пожалуйста, используйте клавиатуру для этого (Ctrl+C).",
|
354
354
|
|
355
355
|
PasteAsText : "Вставить только текст",
|
356
356
|
PasteFromWord : "Вставить из Word",
|
357
357
|
|
358
|
-
DlgPasteMsg2 : "
|
359
|
-
DlgPasteSec : "
|
358
|
+
DlgPasteMsg2 : "Пожалуйста, вставьте текст в прямоугольник, используя сочетание клавиш (<STRONG>Ctrl+V</STRONG>), и нажмите <STRONG>OK</STRONG>.",
|
359
|
+
DlgPasteSec : "По причине настроек безопасности браузера, редактор не имеет доступа к данным буфера обмена напрямую. Вам необходимо вставить текст снова в это окно.",
|
360
360
|
DlgPasteIgnoreFont : "Игнорировать определения гарнитуры",
|
361
361
|
DlgPasteRemoveStyles : "Убрать определения стилей",
|
362
|
-
DlgPasteCleanBox : "Очистить",
|
363
362
|
|
364
363
|
// Color Picker
|
365
364
|
ColorAutomatic : "Автоматический",
|
@@ -371,7 +370,7 @@ DocProps : "Свойства документа",
|
|
371
370
|
// Anchor Dialog
|
372
371
|
DlgAnchorTitle : "Свойства якоря",
|
373
372
|
DlgAnchorName : "Имя якоря",
|
374
|
-
DlgAnchorErrorName : "
|
373
|
+
DlgAnchorErrorName : "Пожалуйста, введите имя якоря",
|
375
374
|
|
376
375
|
// Speller Pages Dialog
|
377
376
|
DlgSpellNotInDic : "Нет в словаре",
|
@@ -463,8 +462,8 @@ DlgDocMetaTab : "Мета данные",
|
|
463
462
|
|
464
463
|
DlgDocPageTitle : "Заголовок страницы",
|
465
464
|
DlgDocLangDir : "Направление текста",
|
466
|
-
DlgDocLangDirLTR : "Слева
|
467
|
-
DlgDocLangDirRTL : "Справа
|
465
|
+
DlgDocLangDirLTR : "Слева направо (LTR)",
|
466
|
+
DlgDocLangDirRTL : "Справа налево (RTL)",
|
468
467
|
DlgDocLangCode : "Код языка",
|
469
468
|
DlgDocCharSet : "Кодировка набора символов",
|
470
469
|
DlgDocCharSetCE : "Центрально-европейская",
|
@@ -502,8 +501,8 @@ DlgDocPreview : "Предварительный просмотр",
|
|
502
501
|
// Templates Dialog
|
503
502
|
Templates : "Шаблоны",
|
504
503
|
DlgTemplatesTitle : "Шаблоны содержимого",
|
505
|
-
DlgTemplatesSelMsg : "
|
506
|
-
DlgTemplatesLoading : "Загрузка списка шаблонов.
|
504
|
+
DlgTemplatesSelMsg : "Пожалуйста, выберете шаблон для открытия в редакторе<br>(текущее содержимое будет потеряно):",
|
505
|
+
DlgTemplatesLoading : "Загрузка списка шаблонов. Пожалуйста, подождите...",
|
507
506
|
DlgTemplatesNoTpl : "(Ни одного шаблона не определено)",
|
508
507
|
DlgTemplatesReplace : "Заменить текущее содержание",
|
509
508
|
|