adva_fckeditor 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/README +21 -0
- data/README.md +29 -0
- data/Rakefile +2 -0
- data/adva_fckeditor.gemspec +19 -0
- data/app/assets/javascripts/adva_fckeditor/config.js +58 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckcontextmenu.js +223 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckdataprocessor.js +119 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckdocumentfragment_gecko.js +53 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckdocumentfragment_ie.js +58 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckdomrange.js +935 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckdomrange_gecko.js +104 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckdomrange_ie.js +199 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckdomrangeiterator.js +327 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckeditingarea.js +368 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckelementpath.js +89 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckenterkey.js +708 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckevents.js +71 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckhtmliterator.js +142 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckicon.js +103 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckiecleanup.js +68 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckimagepreloader.js +64 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckkeystrokehandler.js +141 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckmenublock.js +153 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckmenublockpanel.js +54 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckmenuitem.js +161 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckpanel.js +463 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckplugin.js +56 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckspecialcombo.js +376 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckstyle.js +1500 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fcktoolbar.js +103 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fcktoolbarbreak_gecko.js +36 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fcktoolbarbreak_ie.js +38 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fcktoolbarbutton.js +81 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fcktoolbarbuttonui.js +198 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fcktoolbarfontformatcombo.js +139 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fcktoolbarfontscombo.js +98 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fcktoolbarfontsizecombo.js +76 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fcktoolbarpanelbutton.js +103 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fcktoolbarspecialcombo.js +146 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fcktoolbarstylecombo.js +200 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckw3crange.js +451 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckxml.js +108 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckxml_gecko.js +106 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/classes/fckxml_ie.js +93 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/commandclasses/fck_othercommands.js +634 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/commandclasses/fckblockquotecommand.js +281 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/commandclasses/fckcorestylecommand.js +61 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/commandclasses/fckfitwindow.js +213 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/commandclasses/fckindentcommands.js +282 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/commandclasses/fckjustifycommands.js +173 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/commandclasses/fcklistcommands.js +382 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/commandclasses/fcknamedcommand.js +39 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/commandclasses/fckpasteplaintextcommand.js +40 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/commandclasses/fckpastewordcommand.js +40 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/commandclasses/fckremoveformatcommand.js +45 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/commandclasses/fckshowblocks.js +94 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_gecko.js +49 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_ie.js +72 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/commandclasses/fckstylecommand.js +60 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/commandclasses/fcktablecommand.js +106 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/commandclasses/fcktextcolorcommand.js +201 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/fckconstants.js +56 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/fckeditorapi.js +179 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/fckjscoreextensions.js +159 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/fckscriptloader.js +122 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fck.js +1256 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fck_contextmenu.js +345 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fck_gecko.js +497 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fck_ie.js +456 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckbrowserinfo.js +61 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckcodeformatter.js +100 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckcommands.js +172 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckconfig.js +237 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckdebug.js +59 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckdebug_empty.js +31 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckdialog.js +239 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckdocumentprocessor.js +270 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckdomtools.js +1057 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fcklanguagemanager.js +165 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fcklisthandler.js +152 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fcklistslib.js +63 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckplugins.js +46 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckregexlib.js +100 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckselection.js +42 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckselection_gecko.js +228 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckselection_ie.js +287 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckstyles.js +381 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fcktablehandler.js +863 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fcktablehandler_gecko.js +56 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fcktablehandler_ie.js +64 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fcktoolbaritems.js +124 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fcktoolbarset.js +399 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fcktools.js +749 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fcktools_gecko.js +282 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fcktools_ie.js +234 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckundo.js +223 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckurlparams.js +39 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckxhtml.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckxhtml_gecko.js +114 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckxhtml_ie.js +213 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/_source/internals/fckxhtmlentities.js +357 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/behaviors/disablehandles.htc +15 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/behaviors/showtableborders.htc +36 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/fck_editorarea.css +110 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/fck_internal.css +199 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/fck_showtableborders_gecko.css +49 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/images/block_address.png +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/images/block_blockquote.png +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/images/block_div.png +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/images/block_h1.png +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/images/block_h2.png +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/images/block_h3.png +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/images/block_h4.png +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/images/block_h5.png +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/images/block_h6.png +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/images/block_p.png +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/images/block_pre.png +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/images/fck_anchor.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/images/fck_flashlogo.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/images/fck_hiddenfield.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/images/fck_pagebreak.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/css/images/fck_plugin.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/common/fck_dialog_common.css +85 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/common/fck_dialog_common.js +347 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/common/images/locked.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/common/images/reset.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/common/images/unlocked.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_about/logo_fckeditor.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_about/logo_fredck.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_about/sponsors/spellchecker_net.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_about.html +161 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_anchor.html +220 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_button.html +104 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_checkbox.html +104 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_colorselector.html +172 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_div.html +396 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_docprops/fck_document_preview.html +113 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_docprops.html +600 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_flash/fck_flash.js +300 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_flash/fck_flash_preview.html +50 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_flash.html +152 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_form.html +109 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_hiddenfield.html +115 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_image/fck_image.js +512 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_image/fck_image_preview.html +72 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_image.html +258 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_link/fck_link.js +893 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_link.html +295 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_listprop.html +120 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_paste.html +347 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_radiobutton.html +104 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_replace.html +650 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_select/fck_select.js +194 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_select.html +180 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_smiley.html +111 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_source.html +68 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_specialchar.html +121 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_spellerpages/spellerpages/blank.html +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_spellerpages/spellerpages/controlWindow.js +87 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_spellerpages/spellerpages/controls.html +153 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.cfm +148 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php +199 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.pl +181 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellChecker.js +461 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellchecker.html +71 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellerStyle.css +49 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_spellerpages/spellerpages/wordWindow.js +272 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_spellerpages.html +70 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_table.html +439 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_tablecell.html +293 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_template/images/template1.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_template/images/template2.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_template/images/template3.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_template.html +242 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_textarea.html +94 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dialog/fck_textfield.html +136 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dtd/fck_dtd_test.html +41 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dtd/fck_xhtml10strict.js +116 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/dtd/fck_xhtml10transitional.js +140 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/fckdebug.html +153 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/fckdialog.html +819 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/fckeditor.html +317 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/fckeditor.original.html +424 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/browser.css +87 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/browser.html +200 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/frmactualfolder.html +95 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/frmcreatefolder.html +114 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/frmfolders.html +198 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/frmresourceslist.html +185 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/frmresourcetype.html +69 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/frmupload.html +115 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/ButtonArrow.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/Folder.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/Folder32.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/FolderOpened.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/FolderOpened32.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/FolderUp.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/ai.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/avi.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/bmp.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/cs.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/default.icon.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/dll.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/doc.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/exe.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/fla.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/gif.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/htm.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/html.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/jpg.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/js.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/mdb.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/mp3.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/pdf.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/png.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/ppt.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/rdp.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/swf.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/swt.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/txt.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/vsd.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/xls.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/xml.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/32/zip.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/ai.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/avi.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/bmp.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/cs.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/default.icon.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/dll.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/doc.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/exe.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/fla.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/gif.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/htm.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/html.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/jpg.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/js.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/mdb.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/mp3.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/pdf.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/png.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/ppt.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/rdp.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/swf.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/swt.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/txt.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/vsd.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/xls.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/xml.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/icons/zip.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/images/spacer.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/js/common.js +88 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/browser/default/js/fckxml.js +147 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/asp/basexml.asp +63 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/asp/class_upload.asp +353 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/asp/commands.asp +198 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/asp/config.asp +128 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/asp/connector.asp +88 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/asp/io.asp +237 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/asp/upload.asp +65 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/asp/util.asp +55 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/aspx/config.ascx +98 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/aspx/connector.aspx +32 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/aspx/upload.aspx +32 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/cfm/ImageObject.cfc +273 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/cfm/cf5_connector.cfm +315 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/cfm/cf5_upload.cfm +299 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/cfm/cf_basexml.cfm +68 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/cfm/cf_commands.cfm +230 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/cfm/cf_connector.cfm +89 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/cfm/cf_io.cfm +291 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/cfm/cf_upload.cfm +72 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/cfm/cf_util.cfm +131 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/cfm/config.cfm +189 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/cfm/connector.cfm +32 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/cfm/image.cfc +1324 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/cfm/upload.cfm +31 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/lasso/config.lasso +65 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/lasso/connector.lasso +322 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/lasso/upload.lasso +168 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/perl/basexml.pl +63 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/perl/commands.pl +187 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/perl/connector.cgi +136 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/perl/io.pl +141 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/perl/upload.cgi +117 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/perl/upload_fck.pl +686 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/perl/util.pl +68 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/php/basexml.php +93 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/php/commands.php +302 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/php/config.php +151 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/php/connector.php +90 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/php/io.php +296 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/php/phpcompat.php +17 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/php/upload.php +59 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/php/util.php +220 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/py/config.py +146 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/py/connector.py +118 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/py/fckcommands.py +198 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/py/fckconnector.py +90 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/py/fckoutput.py +116 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/py/fckutil.py +126 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/py/htaccess.txt +23 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/py/upload.py +88 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/py/wsgi.py +58 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/py/zope.py +188 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/test.html +210 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/filemanager/connectors/uploadtest.html +192 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/anchor.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/arrow_ltr.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/arrow_rtl.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/angel_smile.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/angry_smile.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/broken_heart.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/cake.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/confused_smile.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/cry_smile.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/devil_smile.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/embaressed_smile.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/envelope.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/heart.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/kiss.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/lightbulb.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/omg_smile.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/regular_smile.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/sad_smile.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/shades_smile.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/teeth_smile.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/thumbs_down.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/thumbs_up.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/tounge_smile.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/whatchutalkingabout_smile.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/smiley/msn/wink_smile.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/images/spacer.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/js/fckadobeair.js +176 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/js/fckeditorcode_gecko.js +108 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/js/fckeditorcode_ie.js +109 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/_translationstatus.txt +79 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/af.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/ar.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/bg.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/bn.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/bs.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/ca.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/cs.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/da.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/de.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/el.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/en-au.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/en-ca.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/en-uk.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/en.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/eo.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/es.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/et.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/eu.js +535 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/fa.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/fi.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/fo.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/fr-ca.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/fr.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/gl.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/gu.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/he.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/hi.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/hr.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/hu.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/is.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/it.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/ja.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/km.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/ko.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/lt.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/lv.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/mn.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/ms.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/nb.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/nl.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/no.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/pl.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/pt-br.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/pt.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/ro.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/ru.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/sk.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/sl.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/sr-latn.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/sr.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/sv.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/th.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/tr.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/uk.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/vi.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/zh-cn.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/lang/zh.js +534 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/plugins/autogrow/fckplugin.js +111 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/plugins/bbcode/_sample/sample.config.js +26 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/plugins/bbcode/_sample/sample.html +67 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/plugins/bbcode/fckplugin.js +123 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/plugins/dragresizetable/fckplugin.js +529 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/plugins/placeholder/fck_placeholder.html +105 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/plugins/placeholder/fckplugin.js +187 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/plugins/placeholder/lang/de.js +27 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/plugins/placeholder/lang/en.js +27 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/plugins/placeholder/lang/es.js +27 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/plugins/placeholder/lang/fr.js +27 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/plugins/placeholder/lang/it.js +27 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/plugins/placeholder/lang/pl.js +27 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/plugins/placeholder/placeholder.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/plugins/simplecommands/fckplugin.js +29 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/plugins/tablecommands/fckplugin.js +33 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/_fckviewstrips.html +121 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/default/fck_dialog.css +402 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/default/fck_dialog_ie6.js +110 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/default/fck_editor.css +464 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/default/fck_strip.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/default/images/dialog.sides.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/default/images/dialog.sides.png +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/default/images/dialog.sides.rtl.png +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/default/images/sprites.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/default/images/sprites.png +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/default/images/toolbar.arrowright.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/default/images/toolbar.buttonarrow.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/default/images/toolbar.collapse.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/default/images/toolbar.end.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/default/images/toolbar.expand.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/default/images/toolbar.separator.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/default/images/toolbar.start.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/default/toolbar/configurecell.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/office2003/fck_dialog.css +402 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/office2003/fck_dialog_ie6.js +110 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/office2003/fck_editor.css +476 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/office2003/fck_strip.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/office2003/images/dialog.sides.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/office2003/images/dialog.sides.png +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/office2003/images/dialog.sides.rtl.png +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/office2003/images/sprites.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/office2003/images/sprites.png +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/office2003/images/toolbar.arrowright.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/office2003/images/toolbar.bg.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/office2003/images/toolbar.buttonarrow.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/office2003/images/toolbar.collapse.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/office2003/images/toolbar.end.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/office2003/images/toolbar.expand.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/office2003/images/toolbar.separator.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/office2003/images/toolbar.start.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/silver/fck_dialog.css +402 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/silver/fck_dialog_ie6.js +110 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/silver/fck_editor.css +473 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/silver/fck_strip.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/silver/images/dialog.sides.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/silver/images/dialog.sides.png +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/silver/images/dialog.sides.rtl.png +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/silver/images/sprites.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/silver/images/sprites.png +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/silver/images/toolbar.arrowright.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/silver/images/toolbar.buttonarrow.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/silver/images/toolbar.buttonbg.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/silver/images/toolbar.collapse.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/silver/images/toolbar.end.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/silver/images/toolbar.expand.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/silver/images/toolbar.separator.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/skins/silver/images/toolbar.start.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/wsc/ciframe.html +65 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/wsc/tmpFrameset.html +67 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/editor/wsc/w.html +227 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/fckconfig.js +325 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/fckeditor.js +330 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/fckpackager.xml +262 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/fckstyles.xml +111 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/fcktemplates.xml +103 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor/license.txt +1246 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor_plugins/cells/cell.html +259 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor_plugins/cells/fckplugin.js +21 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor_plugins/cells/lang/de.js +4 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor_plugins/cells/lang/en.js +4 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor_plugins/youtube/fckplugin.js +8 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor_plugins/youtube/lang/de.js +21 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor_plugins/youtube/lang/en.js +21 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor_plugins/youtube/lang/it.js +22 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor_plugins/youtube/lang/ja.js +21 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor_plugins/youtube/lang/lt.js +21 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor_plugins/youtube/lang/no.js +21 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor_plugins/youtube/lang/pt.js +21 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor_plugins/youtube/lang/zh-cn.js +21 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor_plugins/youtube/lang/zh.js +21 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor_plugins/youtube/license.txt +286 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor_plugins/youtube/readme.txt +54 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor_plugins/youtube/youtube.gif +0 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor_plugins/youtube/youtube.html +47 -0
- data/app/assets/javascripts/adva_fckeditor/fckeditor_plugins/youtube/youtube.js +121 -0
- data/app/assets/javascripts/adva_fckeditor/setup_fckeditor.js +49 -0
- data/app/assets/javascripts/adva_fckeditor/setup_fckeditor.prototype.js +38 -0
- data/lib/adva_fckeditor/version.rb +3 -0
- data/lib/adva_fckeditor.rb +13 -0
- data/lib/fckeditor.rb +6 -0
- metadata +556 -0
@@ -0,0 +1,534 @@
|
|
1
|
+
/*
|
2
|
+
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
3
|
+
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
|
4
|
+
*
|
5
|
+
* == BEGIN LICENSE ==
|
6
|
+
*
|
7
|
+
* Licensed under the terms of any of the following licenses at your
|
8
|
+
* choice:
|
9
|
+
*
|
10
|
+
* - GNU General Public License Version 2 or later (the "GPL")
|
11
|
+
* http://www.gnu.org/licenses/gpl.html
|
12
|
+
*
|
13
|
+
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
|
14
|
+
* http://www.gnu.org/licenses/lgpl.html
|
15
|
+
*
|
16
|
+
* - Mozilla Public License Version 1.1 or later (the "MPL")
|
17
|
+
* http://www.mozilla.org/MPL/MPL-1.1.html
|
18
|
+
*
|
19
|
+
* == END LICENSE ==
|
20
|
+
*
|
21
|
+
* Russian language file.
|
22
|
+
*/
|
23
|
+
|
24
|
+
var FCKLang =
|
25
|
+
{
|
26
|
+
// Language direction : "ltr" (left to right) or "rtl" (right to left).
|
27
|
+
Dir : "ltr",
|
28
|
+
|
29
|
+
ToolbarCollapse : "Свернуть панель инструментов",
|
30
|
+
ToolbarExpand : "Развернуть панель инструментов",
|
31
|
+
|
32
|
+
// Toolbar Items and Context Menu
|
33
|
+
Save : "Сохранить",
|
34
|
+
NewPage : "Новая страница",
|
35
|
+
Preview : "Предварительный просмотр",
|
36
|
+
Cut : "Вырезать",
|
37
|
+
Copy : "Копировать",
|
38
|
+
Paste : "Вставить",
|
39
|
+
PasteText : "Вставить только текст",
|
40
|
+
PasteWord : "Вставить из Word",
|
41
|
+
Print : "Печать",
|
42
|
+
SelectAll : "Выделить все",
|
43
|
+
RemoveFormat : "Убрать форматирование",
|
44
|
+
InsertLinkLbl : "Ссылка",
|
45
|
+
InsertLink : "Вставить/Редактировать ссылку",
|
46
|
+
RemoveLink : "Убрать ссылку",
|
47
|
+
VisitLink : "Перейти по ссылке",
|
48
|
+
Anchor : "Вставить/Редактировать якорь",
|
49
|
+
AnchorDelete : "Убрать якорь",
|
50
|
+
InsertImageLbl : "Изображение",
|
51
|
+
InsertImage : "Вставить/Редактировать изображение",
|
52
|
+
InsertFlashLbl : "Flash",
|
53
|
+
InsertFlash : "Вставить/Редактировать Flash",
|
54
|
+
InsertTableLbl : "Таблица",
|
55
|
+
InsertTable : "Вставить/Редактировать таблицу",
|
56
|
+
InsertLineLbl : "Линия",
|
57
|
+
InsertLine : "Вставить горизонтальную линию",
|
58
|
+
InsertSpecialCharLbl: "Специальный символ",
|
59
|
+
InsertSpecialChar : "Вставить специальный символ",
|
60
|
+
InsertSmileyLbl : "Смайлик",
|
61
|
+
InsertSmiley : "Вставить смайлик",
|
62
|
+
About : "О FCKeditor",
|
63
|
+
Bold : "Жирный",
|
64
|
+
Italic : "Курсив",
|
65
|
+
Underline : "Подчеркнутый",
|
66
|
+
StrikeThrough : "Зачеркнутый",
|
67
|
+
Subscript : "Подстрочный индекс",
|
68
|
+
Superscript : "Надстрочный индекс",
|
69
|
+
LeftJustify : "По левому краю",
|
70
|
+
CenterJustify : "По центру",
|
71
|
+
RightJustify : "По правому краю",
|
72
|
+
BlockJustify : "По ширине",
|
73
|
+
DecreaseIndent : "Уменьшить отступ",
|
74
|
+
IncreaseIndent : "Увеличить отступ",
|
75
|
+
Blockquote : "Цитата",
|
76
|
+
CreateDiv : "Создать Div контейнер",
|
77
|
+
EditDiv : "Редактировать Div контейнер",
|
78
|
+
DeleteDiv : "Удалить Div контейнер",
|
79
|
+
Undo : "Отменить",
|
80
|
+
Redo : "Повторить",
|
81
|
+
NumberedListLbl : "Нумерованный список",
|
82
|
+
NumberedList : "Вставить/Удалить нумерованный список",
|
83
|
+
BulletedListLbl : "Маркированный список",
|
84
|
+
BulletedList : "Вставить/Удалить маркированный список",
|
85
|
+
ShowTableBorders : "Показать бордюры таблицы",
|
86
|
+
ShowDetails : "Показать детали",
|
87
|
+
Style : "Стиль",
|
88
|
+
FontFormat : "Форматирование",
|
89
|
+
Font : "Шрифт",
|
90
|
+
FontSize : "Размер",
|
91
|
+
TextColor : "Цвет текста",
|
92
|
+
BGColor : "Цвет фона",
|
93
|
+
Source : "Источник",
|
94
|
+
Find : "Найти",
|
95
|
+
Replace : "Заменить",
|
96
|
+
SpellCheck : "Проверить орфографию",
|
97
|
+
UniversalKeyboard : "Универсальная клавиатура",
|
98
|
+
PageBreakLbl : "Разрыв страницы",
|
99
|
+
PageBreak : "Вставить разрыв страницы",
|
100
|
+
|
101
|
+
Form : "Форма",
|
102
|
+
Checkbox : "Флаговая кнопка",
|
103
|
+
RadioButton : "Кнопка выбора",
|
104
|
+
TextField : "Текстовое поле",
|
105
|
+
Textarea : "Текстовая область",
|
106
|
+
HiddenField : "Скрытое поле",
|
107
|
+
Button : "Кнопка",
|
108
|
+
SelectionField : "Список",
|
109
|
+
ImageButton : "Кнопка с изображением",
|
110
|
+
|
111
|
+
FitWindow : "Развернуть окно редактора",
|
112
|
+
ShowBlocks : "Показать блоки",
|
113
|
+
|
114
|
+
// Context Menu
|
115
|
+
EditLink : "Вставить ссылку",
|
116
|
+
CellCM : "Ячейка",
|
117
|
+
RowCM : "Строка",
|
118
|
+
ColumnCM : "Колонка",
|
119
|
+
InsertRowAfter : "Вставить строку после",
|
120
|
+
InsertRowBefore : "Вставить строку до",
|
121
|
+
DeleteRows : "Удалить строки",
|
122
|
+
InsertColumnAfter : "Вставить колонку после",
|
123
|
+
InsertColumnBefore : "Вставить колонку до",
|
124
|
+
DeleteColumns : "Удалить колонки",
|
125
|
+
InsertCellAfter : "Вставить ячейку после",
|
126
|
+
InsertCellBefore : "Вставить ячейку до",
|
127
|
+
DeleteCells : "Удалить ячейки",
|
128
|
+
MergeCells : "Соединить ячейки",
|
129
|
+
MergeRight : "Соединить вправо",
|
130
|
+
MergeDown : "Соединить вниз",
|
131
|
+
HorizontalSplitCell : "Разбить ячейку горизонтально",
|
132
|
+
VerticalSplitCell : "Разбить ячейку вертикально",
|
133
|
+
TableDelete : "Удалить таблицу",
|
134
|
+
CellProperties : "Свойства ячейки",
|
135
|
+
TableProperties : "Свойства таблицы",
|
136
|
+
ImageProperties : "Свойства изображения",
|
137
|
+
FlashProperties : "Свойства Flash",
|
138
|
+
|
139
|
+
AnchorProp : "Свойства якоря",
|
140
|
+
ButtonProp : "Свойства кнопки",
|
141
|
+
CheckboxProp : "Свойства флаговой кнопки",
|
142
|
+
HiddenFieldProp : "Свойства скрытого поля",
|
143
|
+
RadioButtonProp : "Свойства кнопки выбора",
|
144
|
+
ImageButtonProp : "Свойства кнопки с изображением",
|
145
|
+
TextFieldProp : "Свойства текстового поля",
|
146
|
+
SelectionFieldProp : "Свойства списка",
|
147
|
+
TextareaProp : "Свойства текстовой области",
|
148
|
+
FormProp : "Свойства формы",
|
149
|
+
|
150
|
+
FontFormats : "Нормальный;Форматированный;Адрес;Заголовок 1;Заголовок 2;Заголовок 3;Заголовок 4;Заголовок 5;Заголовок 6;Нормальный (DIV)",
|
151
|
+
|
152
|
+
// Alerts and Messages
|
153
|
+
ProcessingXHTML : "Обработка XHTML. Пожалуйста, подождите...",
|
154
|
+
Done : "Сделано",
|
155
|
+
PasteWordConfirm : "Текст, который вы хотите вставить, похож на копируемый из Word. Вы хотите очистить его перед вставкой?",
|
156
|
+
NotCompatiblePaste : "Эта команда доступна для Internet Explorer версии 5.5 или выше. Вы хотите вставить без очистки?",
|
157
|
+
UnknownToolbarItem : "Не известный элемент панели инструментов \"%1\"",
|
158
|
+
UnknownCommand : "Не известное имя команды \"%1\"",
|
159
|
+
NotImplemented : "Команда не реализована",
|
160
|
+
UnknownToolbarSet : "Панель инструментов \"%1\" не существует",
|
161
|
+
NoActiveX : "Настройки безопасности вашего браузера могут ограничивать некоторые свойства редактора. Вы должны включить опцию \"Запускать элементы управления ActiveX и плугины\". Вы можете видеть ошибки и замечать отсутствие возможностей.",
|
162
|
+
BrowseServerBlocked : "Ресурсы браузера не могут быть открыты. Проверьте что блокировки всплывающих окон выключены.",
|
163
|
+
DialogBlocked : "Невозможно открыть окно диалога. Проверьте что блокировки всплывающих окон выключены.",
|
164
|
+
VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING
|
165
|
+
|
166
|
+
// Dialogs
|
167
|
+
DlgBtnOK : "ОК",
|
168
|
+
DlgBtnCancel : "Отмена",
|
169
|
+
DlgBtnClose : "Закрыть",
|
170
|
+
DlgBtnBrowseServer : "Просмотреть на сервере",
|
171
|
+
DlgAdvancedTag : "Расширенный",
|
172
|
+
DlgOpOther : "<Другое>",
|
173
|
+
DlgInfoTab : "Информация",
|
174
|
+
DlgAlertUrl : "Пожалуйста, вставьте URL",
|
175
|
+
|
176
|
+
// General Dialogs Labels
|
177
|
+
DlgGenNotSet : "<не определено>",
|
178
|
+
DlgGenId : "Идентификатор",
|
179
|
+
DlgGenLangDir : "Направление языка",
|
180
|
+
DlgGenLangDirLtr : "Слева на право (LTR)",
|
181
|
+
DlgGenLangDirRtl : "Справа на лево (RTL)",
|
182
|
+
DlgGenLangCode : "Язык",
|
183
|
+
DlgGenAccessKey : "Горячая клавиша",
|
184
|
+
DlgGenName : "Имя",
|
185
|
+
DlgGenTabIndex : "Последовательность перехода",
|
186
|
+
DlgGenLongDescr : "Длинное описание URL",
|
187
|
+
DlgGenClass : "Класс CSS",
|
188
|
+
DlgGenTitle : "Заголовок",
|
189
|
+
DlgGenContType : "Тип содержимого",
|
190
|
+
DlgGenLinkCharset : "Кодировка",
|
191
|
+
DlgGenStyle : "Стиль CSS",
|
192
|
+
|
193
|
+
// Image Dialog
|
194
|
+
DlgImgTitle : "Свойства изображения",
|
195
|
+
DlgImgInfoTab : "Информация о изображении",
|
196
|
+
DlgImgBtnUpload : "Послать на сервер",
|
197
|
+
DlgImgURL : "URL",
|
198
|
+
DlgImgUpload : "Закачать",
|
199
|
+
DlgImgAlt : "Альтернативный текст",
|
200
|
+
DlgImgWidth : "Ширина",
|
201
|
+
DlgImgHeight : "Высота",
|
202
|
+
DlgImgLockRatio : "Сохранять пропорции",
|
203
|
+
DlgBtnResetSize : "Сбросить размер",
|
204
|
+
DlgImgBorder : "Бордюр",
|
205
|
+
DlgImgHSpace : "Горизонтальный отступ",
|
206
|
+
DlgImgVSpace : "Вертикальный отступ",
|
207
|
+
DlgImgAlign : "Выравнивание",
|
208
|
+
DlgImgAlignLeft : "По левому краю",
|
209
|
+
DlgImgAlignAbsBottom: "Абс понизу",
|
210
|
+
DlgImgAlignAbsMiddle: "Абс посередине",
|
211
|
+
DlgImgAlignBaseline : "По базовой линии",
|
212
|
+
DlgImgAlignBottom : "Понизу",
|
213
|
+
DlgImgAlignMiddle : "Посередине",
|
214
|
+
DlgImgAlignRight : "По правому краю",
|
215
|
+
DlgImgAlignTextTop : "Текст наверху",
|
216
|
+
DlgImgAlignTop : "По верху",
|
217
|
+
DlgImgPreview : "Предварительный просмотр",
|
218
|
+
DlgImgAlertUrl : "Пожалуйста, введите URL изображения",
|
219
|
+
DlgImgLinkTab : "Ссылка",
|
220
|
+
|
221
|
+
// Flash Dialog
|
222
|
+
DlgFlashTitle : "Свойства Flash",
|
223
|
+
DlgFlashChkPlay : "Авто проигрывание",
|
224
|
+
DlgFlashChkLoop : "Повтор",
|
225
|
+
DlgFlashChkMenu : "Включить меню Flash",
|
226
|
+
DlgFlashScale : "Масштабировать",
|
227
|
+
DlgFlashScaleAll : "Показывать все",
|
228
|
+
DlgFlashScaleNoBorder : "Без бордюра",
|
229
|
+
DlgFlashScaleFit : "Точное совпадение",
|
230
|
+
|
231
|
+
// Link Dialog
|
232
|
+
DlgLnkWindowTitle : "Ссылка",
|
233
|
+
DlgLnkInfoTab : "Информация ссылки",
|
234
|
+
DlgLnkTargetTab : "Цель",
|
235
|
+
|
236
|
+
DlgLnkType : "Тип ссылки",
|
237
|
+
DlgLnkTypeURL : "URL",
|
238
|
+
DlgLnkTypeAnchor : "Якорь на эту страницу",
|
239
|
+
DlgLnkTypeEMail : "Эл. почта",
|
240
|
+
DlgLnkProto : "Протокол",
|
241
|
+
DlgLnkProtoOther : "<другое>",
|
242
|
+
DlgLnkURL : "URL",
|
243
|
+
DlgLnkAnchorSel : "Выберите якорь",
|
244
|
+
DlgLnkAnchorByName : "По имени якоря",
|
245
|
+
DlgLnkAnchorById : "По идентификатору элемента",
|
246
|
+
DlgLnkNoAnchors : "(Нет якорей доступных в этом документе)",
|
247
|
+
DlgLnkEMail : "Адрес эл. почты",
|
248
|
+
DlgLnkEMailSubject : "Заголовок сообщения",
|
249
|
+
DlgLnkEMailBody : "Тело сообщения",
|
250
|
+
DlgLnkUpload : "Закачать",
|
251
|
+
DlgLnkBtnUpload : "Послать на сервер",
|
252
|
+
|
253
|
+
DlgLnkTarget : "Цель",
|
254
|
+
DlgLnkTargetFrame : "<фрейм>",
|
255
|
+
DlgLnkTargetPopup : "<всплывающее окно>",
|
256
|
+
DlgLnkTargetBlank : "Новое окно (_blank)",
|
257
|
+
DlgLnkTargetParent : "Родительское окно (_parent)",
|
258
|
+
DlgLnkTargetSelf : "Тоже окно (_self)",
|
259
|
+
DlgLnkTargetTop : "Самое верхнее окно (_top)",
|
260
|
+
DlgLnkTargetFrameName : "Имя целевого фрейма",
|
261
|
+
DlgLnkPopWinName : "Имя всплывающего окна",
|
262
|
+
DlgLnkPopWinFeat : "Свойства всплывающего окна",
|
263
|
+
DlgLnkPopResize : "Изменяющееся в размерах",
|
264
|
+
DlgLnkPopLocation : "Панель локации",
|
265
|
+
DlgLnkPopMenu : "Панель меню",
|
266
|
+
DlgLnkPopScroll : "Полосы прокрутки",
|
267
|
+
DlgLnkPopStatus : "Строка состояния",
|
268
|
+
DlgLnkPopToolbar : "Панель инструментов",
|
269
|
+
DlgLnkPopFullScrn : "Полный экран (IE)",
|
270
|
+
DlgLnkPopDependent : "Зависимый (Netscape)",
|
271
|
+
DlgLnkPopWidth : "Ширина",
|
272
|
+
DlgLnkPopHeight : "Высота",
|
273
|
+
DlgLnkPopLeft : "Позиция слева",
|
274
|
+
DlgLnkPopTop : "Позиция сверху",
|
275
|
+
|
276
|
+
DlnLnkMsgNoUrl : "Пожалуйста, введите URL ссылки",
|
277
|
+
DlnLnkMsgNoEMail : "Пожалуйста, введите адрес эл. почты",
|
278
|
+
DlnLnkMsgNoAnchor : "Пожалуйста, выберете якорь",
|
279
|
+
DlnLnkMsgInvPopName : "Название вспывающего окна должно начинаться буквы и не может содержать пробелов",
|
280
|
+
|
281
|
+
// Color Dialog
|
282
|
+
DlgColorTitle : "Выберите цвет",
|
283
|
+
DlgColorBtnClear : "Очистить",
|
284
|
+
DlgColorHighlight : "Подсвеченный",
|
285
|
+
DlgColorSelected : "Выбранный",
|
286
|
+
|
287
|
+
// Smiley Dialog
|
288
|
+
DlgSmileyTitle : "Вставить смайлик",
|
289
|
+
|
290
|
+
// Special Character Dialog
|
291
|
+
DlgSpecialCharTitle : "Выберите специальный символ",
|
292
|
+
|
293
|
+
// Table Dialog
|
294
|
+
DlgTableTitle : "Свойства таблицы",
|
295
|
+
DlgTableRows : "Строки",
|
296
|
+
DlgTableColumns : "Колонки",
|
297
|
+
DlgTableBorder : "Размер бордюра",
|
298
|
+
DlgTableAlign : "Выравнивание",
|
299
|
+
DlgTableAlignNotSet : "<Не уст.>",
|
300
|
+
DlgTableAlignLeft : "Слева",
|
301
|
+
DlgTableAlignCenter : "По центру",
|
302
|
+
DlgTableAlignRight : "Справа",
|
303
|
+
DlgTableWidth : "Ширина",
|
304
|
+
DlgTableWidthPx : "пикселей",
|
305
|
+
DlgTableWidthPc : "процентов",
|
306
|
+
DlgTableHeight : "Высота",
|
307
|
+
DlgTableCellSpace : "Промежуток (spacing)",
|
308
|
+
DlgTableCellPad : "Отступ (padding)",
|
309
|
+
DlgTableCaption : "Заголовок",
|
310
|
+
DlgTableSummary : "Резюме",
|
311
|
+
DlgTableHeaders : "Заголовки",
|
312
|
+
DlgTableHeadersNone : "Нет",
|
313
|
+
DlgTableHeadersColumn : "Первый столбец",
|
314
|
+
DlgTableHeadersRow : "Первая строка",
|
315
|
+
DlgTableHeadersBoth : "Оба варианта",
|
316
|
+
|
317
|
+
// Table Cell Dialog
|
318
|
+
DlgCellTitle : "Свойства ячейки",
|
319
|
+
DlgCellWidth : "Ширина",
|
320
|
+
DlgCellWidthPx : "пикселей",
|
321
|
+
DlgCellWidthPc : "процентов",
|
322
|
+
DlgCellHeight : "Высота",
|
323
|
+
DlgCellWordWrap : "Заворачивание текста",
|
324
|
+
DlgCellWordWrapNotSet : "<Не уст.>",
|
325
|
+
DlgCellWordWrapYes : "Да",
|
326
|
+
DlgCellWordWrapNo : "Нет",
|
327
|
+
DlgCellHorAlign : "Гор. выравнивание",
|
328
|
+
DlgCellHorAlignNotSet : "<Не уст.>",
|
329
|
+
DlgCellHorAlignLeft : "Слева",
|
330
|
+
DlgCellHorAlignCenter : "По центру",
|
331
|
+
DlgCellHorAlignRight: "Справа",
|
332
|
+
DlgCellVerAlign : "Верт. выравнивание",
|
333
|
+
DlgCellVerAlignNotSet : "<Не уст.>",
|
334
|
+
DlgCellVerAlignTop : "Сверху",
|
335
|
+
DlgCellVerAlignMiddle : "Посередине",
|
336
|
+
DlgCellVerAlignBottom : "Снизу",
|
337
|
+
DlgCellVerAlignBaseline : "По базовой линии",
|
338
|
+
DlgCellType : "Тип ячейки",
|
339
|
+
DlgCellTypeData : "Данные",
|
340
|
+
DlgCellTypeHeader : "Заголовок",
|
341
|
+
DlgCellRowSpan : "Диапазон строк (span)",
|
342
|
+
DlgCellCollSpan : "Диапазон колонок (span)",
|
343
|
+
DlgCellBackColor : "Цвет фона",
|
344
|
+
DlgCellBorderColor : "Цвет бордюра",
|
345
|
+
DlgCellBtnSelect : "Выберите...",
|
346
|
+
|
347
|
+
// Find and Replace Dialog
|
348
|
+
DlgFindAndReplaceTitle : "Найти и заменить",
|
349
|
+
|
350
|
+
// Find Dialog
|
351
|
+
DlgFindTitle : "Найти",
|
352
|
+
DlgFindFindBtn : "Найти",
|
353
|
+
DlgFindNotFoundMsg : "Указанный текст не найден.",
|
354
|
+
|
355
|
+
// Replace Dialog
|
356
|
+
DlgReplaceTitle : "Заменить",
|
357
|
+
DlgReplaceFindLbl : "Найти:",
|
358
|
+
DlgReplaceReplaceLbl : "Заменить на:",
|
359
|
+
DlgReplaceCaseChk : "Учитывать регистр",
|
360
|
+
DlgReplaceReplaceBtn : "Заменить",
|
361
|
+
DlgReplaceReplAllBtn : "Заменить все",
|
362
|
+
DlgReplaceWordChk : "Совпадение целых слов",
|
363
|
+
|
364
|
+
// Paste Operations / Dialog
|
365
|
+
PasteErrorCut : "Настройки безопасности вашего браузера не позволяют редактору автоматически выполнять операции вырезания. Пожалуйста, используйте клавиатуру для этого (Ctrl+X).",
|
366
|
+
PasteErrorCopy : "Настройки безопасности вашего браузера не позволяют редактору автоматически выполнять операции копирования. Пожалуйста, используйте клавиатуру для этого (Ctrl+C).",
|
367
|
+
|
368
|
+
PasteAsText : "Вставить только текст",
|
369
|
+
PasteFromWord : "Вставить из Word",
|
370
|
+
|
371
|
+
DlgPasteMsg2 : "Пожалуйста, вставьте текст в прямоугольник, используя сочетание клавиш (<STRONG>Ctrl+V</STRONG>), и нажмите <STRONG>OK</STRONG>.",
|
372
|
+
DlgPasteSec : "По причине настроек безопасности браузера, редактор не имеет доступа к данным буфера обмена напрямую. Вам необходимо вставить текст снова в это окно.",
|
373
|
+
DlgPasteIgnoreFont : "Игнорировать определения гарнитуры",
|
374
|
+
DlgPasteRemoveStyles : "Убрать определения стилей",
|
375
|
+
|
376
|
+
// Color Picker
|
377
|
+
ColorAutomatic : "Автоматический",
|
378
|
+
ColorMoreColors : "Цвета...",
|
379
|
+
|
380
|
+
// Document Properties
|
381
|
+
DocProps : "Свойства документа",
|
382
|
+
|
383
|
+
// Anchor Dialog
|
384
|
+
DlgAnchorTitle : "Свойства якоря",
|
385
|
+
DlgAnchorName : "Имя якоря",
|
386
|
+
DlgAnchorErrorName : "Пожалуйста, введите имя якоря",
|
387
|
+
|
388
|
+
// Speller Pages Dialog
|
389
|
+
DlgSpellNotInDic : "Нет в словаре",
|
390
|
+
DlgSpellChangeTo : "Заменить на",
|
391
|
+
DlgSpellBtnIgnore : "Игнорировать",
|
392
|
+
DlgSpellBtnIgnoreAll : "Игнорировать все",
|
393
|
+
DlgSpellBtnReplace : "Заменить",
|
394
|
+
DlgSpellBtnReplaceAll : "Заменить все",
|
395
|
+
DlgSpellBtnUndo : "Отменить",
|
396
|
+
DlgSpellNoSuggestions : "- Нет предположений -",
|
397
|
+
DlgSpellProgress : "Идет проверка орфографии...",
|
398
|
+
DlgSpellNoMispell : "Проверка орфографии закончена: ошибок не найдено",
|
399
|
+
DlgSpellNoChanges : "Проверка орфографии закончена: ни одного слова не изменено",
|
400
|
+
DlgSpellOneChange : "Проверка орфографии закончена: одно слово изменено",
|
401
|
+
DlgSpellManyChanges : "Проверка орфографии закончена: 1% слов изменен",
|
402
|
+
|
403
|
+
IeSpellDownload : "Модуль проверки орфографии не установлен. Хотите скачать его сейчас?",
|
404
|
+
|
405
|
+
// Button Dialog
|
406
|
+
DlgButtonText : "Текст (Значение)",
|
407
|
+
DlgButtonType : "Тип",
|
408
|
+
DlgButtonTypeBtn : "Кнопка",
|
409
|
+
DlgButtonTypeSbm : "Отправить",
|
410
|
+
DlgButtonTypeRst : "Сбросить",
|
411
|
+
|
412
|
+
// Checkbox and Radio Button Dialogs
|
413
|
+
DlgCheckboxName : "Имя",
|
414
|
+
DlgCheckboxValue : "Значение",
|
415
|
+
DlgCheckboxSelected : "Выбранная",
|
416
|
+
|
417
|
+
// Form Dialog
|
418
|
+
DlgFormName : "Имя",
|
419
|
+
DlgFormAction : "Действие",
|
420
|
+
DlgFormMethod : "Метод",
|
421
|
+
|
422
|
+
// Select Field Dialog
|
423
|
+
DlgSelectName : "Имя",
|
424
|
+
DlgSelectValue : "Значение",
|
425
|
+
DlgSelectSize : "Размер",
|
426
|
+
DlgSelectLines : "линии",
|
427
|
+
DlgSelectChkMulti : "Разрешить множественный выбор",
|
428
|
+
DlgSelectOpAvail : "Доступные варианты",
|
429
|
+
DlgSelectOpText : "Текст",
|
430
|
+
DlgSelectOpValue : "Значение",
|
431
|
+
DlgSelectBtnAdd : "Добавить",
|
432
|
+
DlgSelectBtnModify : "Модифицировать",
|
433
|
+
DlgSelectBtnUp : "Вверх",
|
434
|
+
DlgSelectBtnDown : "Вниз",
|
435
|
+
DlgSelectBtnSetValue : "Установить как выбранное значение",
|
436
|
+
DlgSelectBtnDelete : "Удалить",
|
437
|
+
|
438
|
+
// Textarea Dialog
|
439
|
+
DlgTextareaName : "Имя",
|
440
|
+
DlgTextareaCols : "Колонки",
|
441
|
+
DlgTextareaRows : "Строки",
|
442
|
+
|
443
|
+
// Text Field Dialog
|
444
|
+
DlgTextName : "Имя",
|
445
|
+
DlgTextValue : "Значение",
|
446
|
+
DlgTextCharWidth : "Ширина",
|
447
|
+
DlgTextMaxChars : "Макс. кол-во символов",
|
448
|
+
DlgTextType : "Тип",
|
449
|
+
DlgTextTypeText : "Текст",
|
450
|
+
DlgTextTypePass : "Пароль",
|
451
|
+
|
452
|
+
// Hidden Field Dialog
|
453
|
+
DlgHiddenName : "Имя",
|
454
|
+
DlgHiddenValue : "Значение",
|
455
|
+
|
456
|
+
// Bulleted List Dialog
|
457
|
+
BulletedListProp : "Свойства маркированного списка",
|
458
|
+
NumberedListProp : "Свойства нумерованного списка",
|
459
|
+
DlgLstStart : "Начало",
|
460
|
+
DlgLstType : "Тип",
|
461
|
+
DlgLstTypeCircle : "Круг",
|
462
|
+
DlgLstTypeDisc : "Диск",
|
463
|
+
DlgLstTypeSquare : "Квадрат",
|
464
|
+
DlgLstTypeNumbers : "Номера (1, 2, 3)",
|
465
|
+
DlgLstTypeLCase : "Буквы нижнего регистра (a, b, c)",
|
466
|
+
DlgLstTypeUCase : "Буквы верхнего регистра (A, B, C)",
|
467
|
+
DlgLstTypeSRoman : "Малые римские буквы (i, ii, iii)",
|
468
|
+
DlgLstTypeLRoman : "Большие римские буквы (I, II, III)",
|
469
|
+
|
470
|
+
// Document Properties Dialog
|
471
|
+
DlgDocGeneralTab : "Общие",
|
472
|
+
DlgDocBackTab : "Задний фон",
|
473
|
+
DlgDocColorsTab : "Цвета и отступы",
|
474
|
+
DlgDocMetaTab : "Мета данные",
|
475
|
+
|
476
|
+
DlgDocPageTitle : "Заголовок страницы",
|
477
|
+
DlgDocLangDir : "Направление текста",
|
478
|
+
DlgDocLangDirLTR : "Слева направо (LTR)",
|
479
|
+
DlgDocLangDirRTL : "Справа налево (RTL)",
|
480
|
+
DlgDocLangCode : "Код языка",
|
481
|
+
DlgDocCharSet : "Кодировка набора символов",
|
482
|
+
DlgDocCharSetCE : "Центрально-европейская",
|
483
|
+
DlgDocCharSetCT : "Китайская традиционная (Big5)",
|
484
|
+
DlgDocCharSetCR : "Кириллица",
|
485
|
+
DlgDocCharSetGR : "Греческая",
|
486
|
+
DlgDocCharSetJP : "Японская",
|
487
|
+
DlgDocCharSetKR : "Корейская",
|
488
|
+
DlgDocCharSetTR : "Турецкая",
|
489
|
+
DlgDocCharSetUN : "Юникод (UTF-8)",
|
490
|
+
DlgDocCharSetWE : "Западно-европейская",
|
491
|
+
DlgDocCharSetOther : "Другая кодировка набора символов",
|
492
|
+
|
493
|
+
DlgDocDocType : "Заголовок типа документа",
|
494
|
+
DlgDocDocTypeOther : "Другой заголовок типа документа",
|
495
|
+
DlgDocIncXHTML : "Включить XHTML объявления",
|
496
|
+
DlgDocBgColor : "Цвет фона",
|
497
|
+
DlgDocBgImage : "URL изображения фона",
|
498
|
+
DlgDocBgNoScroll : "Нескроллируемый фон",
|
499
|
+
DlgDocCText : "Текст",
|
500
|
+
DlgDocCLink : "Ссылка",
|
501
|
+
DlgDocCVisited : "Посещенная ссылка",
|
502
|
+
DlgDocCActive : "Активная ссылка",
|
503
|
+
DlgDocMargins : "Отступы страницы",
|
504
|
+
DlgDocMaTop : "Верхний",
|
505
|
+
DlgDocMaLeft : "Левый",
|
506
|
+
DlgDocMaRight : "Правый",
|
507
|
+
DlgDocMaBottom : "Нижний",
|
508
|
+
DlgDocMeIndex : "Ключевые слова документа (разделенные запятой)",
|
509
|
+
DlgDocMeDescr : "Описание документа",
|
510
|
+
DlgDocMeAuthor : "Автор",
|
511
|
+
DlgDocMeCopy : "Авторские права",
|
512
|
+
DlgDocPreview : "Предварительный просмотр",
|
513
|
+
|
514
|
+
// Templates Dialog
|
515
|
+
Templates : "Шаблоны",
|
516
|
+
DlgTemplatesTitle : "Шаблоны содержимого",
|
517
|
+
DlgTemplatesSelMsg : "Пожалуйста, выберете шаблон для открытия в редакторе<br>(текущее содержимое будет потеряно):",
|
518
|
+
DlgTemplatesLoading : "Загрузка списка шаблонов. Пожалуйста, подождите...",
|
519
|
+
DlgTemplatesNoTpl : "(Ни одного шаблона не определено)",
|
520
|
+
DlgTemplatesReplace : "Заменить текущее содержание",
|
521
|
+
|
522
|
+
// About Dialog
|
523
|
+
DlgAboutAboutTab : "О программе",
|
524
|
+
DlgAboutBrowserInfoTab : "Информация браузера",
|
525
|
+
DlgAboutLicenseTab : "Лицензия",
|
526
|
+
DlgAboutVersion : "Версия",
|
527
|
+
DlgAboutInfo : "Для большей информации, посетите",
|
528
|
+
|
529
|
+
// Div Dialog
|
530
|
+
DlgDivGeneralTab : "Информация",
|
531
|
+
DlgDivAdvancedTab : "Расширенные настройки",
|
532
|
+
DlgDivStyle : "Стиль",
|
533
|
+
DlgDivInlineStyle : "Встроенные стили"
|
534
|
+
};
|