esp-ckeditor 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/MIT-LICENSE +20 -0
- data/README.rdoc +32 -0
- data/Rakefile +28 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/_bootstrap.js +87 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/ckeditor.js +141 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/ckeditor_base.js +227 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/ckeditor_basic.js +238 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/command.js +209 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/commanddefinition.js +129 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/config.js +423 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dataprocessor.js +65 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/comment.js +32 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/document.js +251 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/documentfragment.js +49 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/domobject.js +258 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/element.js +1691 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/elementpath.js +119 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/event.js +145 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/node.js +696 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/nodelist.js +26 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/range.js +2054 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/rangelist.js +213 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/text.js +128 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/walker.js +462 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/window.js +96 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom.js +20 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dtd.js +266 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/editor.js +1060 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/editor_basic.js +186 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/env.js +305 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/event.js +342 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/eventInfo.js +120 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/focusmanager.js +152 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/htmlparser/basicwriter.js +145 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/htmlparser/cdata.js +43 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/htmlparser/comment.js +60 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/htmlparser/element.js +308 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/htmlparser/filter.js +288 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/htmlparser/fragment.js +518 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/htmlparser/text.js +53 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/htmlparser.js +224 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/lang.js +157 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/loader.js +240 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/plugindefinition.js +83 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/plugins.js +103 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/resourcemanager.js +238 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/scriptloader.js +180 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/skins.js +184 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/themes.js +19 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/tools.js +763 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/ui.js +128 -0
- data/app/assets/javascripts/esp-ckeditor/_source/lang/_languages.js +27 -0
- data/app/assets/javascripts/esp-ckeditor/_source/lang/en.js +815 -0
- data/app/assets/javascripts/esp-ckeditor/_source/lang/ru.js +815 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/a11yhelp/dialogs/a11yhelp.js +222 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/a11yhelp/lang/en.js +108 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/a11yhelp/lang/he.js +216 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/a11yhelp/plugin.js +47 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/basicstyles/plugin.js +129 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/button/plugin.js +290 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/clipboard/dialogs/paste.js +223 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/clipboard/plugin.js +453 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/contextmenu/plugin.js +179 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/dialog/dialogDefinition.js +1166 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/dialog/plugin.js +3308 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/dialogadvtab/plugin.js +208 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/dialogui/plugin.js +1541 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/domiterator/plugin.js +361 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/editingblock/plugin.js +278 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/elementspath/plugin.js +218 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/enterkey/plugin.js +433 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/entities/plugin.js +250 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_attachment/dialogs/esp_attachment.js +234 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_attachment/images/esp_attachment.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_attachment/lang/en.js +22 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_attachment/lang/ru.js +22 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_attachment/lang/uk.js +22 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_attachment/plugin.js +23 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_audio/dialogs/esp_audio.js +207 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_audio/images/esp_audio.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_audio/images/placeholder.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_audio/lang/en.js +18 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_audio/lang/ru.js +18 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_audio/lang/uk.js +18 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_audio/plugin.js +182 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_blockquote/dialogs/esp_blockquote.js +132 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_blockquote/plugin.js +235 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_image/dialogs/esp_image.js +1414 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_image/images/esp_image.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_image/lang/en.js +9 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_image/lang/ru.js +9 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_image/lang/uk.js +9 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_image/plugin.js +80 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/dialogs/esp_anchor.js +145 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/dialogs/esp_link.js +1396 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/images/anchor.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/images/esp_anchor.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/images/esp_link.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/images/esp_unlink.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/lang/en.js +8 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/lang/ru.js +8 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/lang/uk.js +8 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/plugin.js +379 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_address.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_blockquote.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_div.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_h1.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_h2.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_h3.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_h4.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_h5.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_h6.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_p.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_pre.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/esp_showblocks.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/plugin.js +163 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_video/dialogs/esp_video.js +277 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_video/images/esp_video.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_video/images/placeholder.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_video/lang/en.js +19 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_video/lang/ru.js +19 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_video/lang/uk.js +19 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_video/plugin.js +182 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/fakeobjects/plugin.js +175 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/filebrowser/plugin.js +534 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/find/dialogs/find.js +915 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/find/plugin.js +47 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/floatpanel/plugin.js +428 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/format/plugin.js +197 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/htmldataprocessor/plugin.js +596 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/htmlwriter/plugin.js +319 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/image/dialogs/image.js +1407 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/image/plugin.js +81 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/indent/plugin.js +461 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/justify/plugin.js +253 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/keystrokes/plugin.js +225 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/list/plugin.js +774 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/listblock/plugin.js +266 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/liststyle/dialogs/liststyle.js +225 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/liststyle/plugin.js +66 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/maximize/plugin.js +353 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/menu/plugin.js +541 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/panel/plugin.js +400 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/pastefromword/filter/default.js +1367 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/pastefromword/plugin.js +141 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/pastetext/dialogs/pastetext.js +67 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/pastetext/plugin.js +98 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/popup/plugin.js +64 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/removeformat/plugin.js +185 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/resize/plugin.js +168 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/richcombo/plugin.js +381 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/selection/plugin.js +1729 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/showborders/plugin.js +207 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/sourcearea/plugin.js +209 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/styles/plugin.js +1700 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/styles/styles/default.js +88 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/stylescombo/plugin.js +218 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/tab/plugin.js +367 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/table/dialogs/table.js +623 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/table/plugin.js +78 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/tabletools/dialogs/tableCell.js +525 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/tabletools/plugin.js +1194 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/toolbar/plugin.js +545 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/undo/plugin.js +578 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/wysiwygarea/plugin.js +1347 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/dialog.css +988 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/editor.css +25 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/elementspath.css +73 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/icons.css +367 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/icons.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/icons_rtl.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/images/dialog_sides.gif +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/images/dialog_sides.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/images/dialog_sides_rtl.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/images/mini.gif +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/images/noimage.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/images/sprites.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/images/sprites_ie6.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/images/toolbar_start.gif +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/mainui.css +209 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/menu.css +232 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/panel.css +227 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/presets.css +49 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/reset.css +85 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/richcombo.css +287 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/skin.js +236 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/templates.css +88 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/toolbar.css +412 -0
- data/app/assets/javascripts/esp-ckeditor/_source/themes/default/theme.js +407 -0
- data/app/assets/javascripts/esp-ckeditor/application.js +8 -0
- data/app/assets/javascripts/esp-ckeditor/ckeditor.js +137 -0
- data/app/assets/javascripts/esp-ckeditor/ckeditor.pack +194 -0
- data/app/assets/javascripts/esp-ckeditor/ckeditor_source.js +35 -0
- data/app/assets/javascripts/esp-ckeditor/ckpackager.jar +0 -0
- data/app/assets/javascripts/esp-ckeditor/ckpackager.txt +2 -0
- data/app/assets/javascripts/esp-ckeditor/config.js +147 -0
- data/app/assets/javascripts/esp-ckeditor/contents.css +38 -0
- data/app/assets/javascripts/esp-ckeditor/images/spacer.gif +0 -0
- data/app/assets/javascripts/esp-ckeditor/init_ckeditor.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/a11yhelp/lang/en.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/a11yhelp/lang/he.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/a11yhelp/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/basicstyles/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/button/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/clipboard/dialogs/paste.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/clipboard/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/contextmenu/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/dialog/dialogDefinition.js +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/dialog/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/dialogadvtab/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/dialogui/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/domiterator/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/editingblock/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/elementspath/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/enterkey/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/entities/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_attachment/dialogs/esp_attachment.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_attachment/images/esp_attachment.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_attachment/lang/en.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_attachment/lang/ru.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_attachment/lang/uk.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_attachment/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_audio/dialogs/esp_audio.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_audio/images/esp_audio.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_audio/images/placeholder.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_audio/lang/en.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_audio/lang/ru.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_audio/lang/uk.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_audio/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_blockquote/dialogs/esp_blockquote.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_blockquote/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_image/dialogs/esp_image.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_image/images/esp_image.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_image/lang/en.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_image/lang/ru.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_image/lang/uk.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_image/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/dialogs/esp_anchor.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/dialogs/esp_link.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/images/anchor.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/images/esp_anchor.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/images/esp_link.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/images/esp_unlink.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/lang/en.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/lang/ru.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/lang/uk.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_address.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_blockquote.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_div.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_h1.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_h2.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_h3.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_h4.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_h5.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_h6.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_p.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_pre.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/esp_showblocks.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_video/dialogs/esp_video.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_video/images/esp_video.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_video/images/placeholder.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_video/lang/en.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_video/lang/ru.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_video/lang/uk.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_video/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/fakeobjects/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/filebrowser/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/find/dialogs/find.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/find/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/floatpanel/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/format/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/htmldataprocessor/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/htmlwriter/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/image/dialogs/image.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/image/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/indent/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/justify/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/keystrokes/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/list/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/listblock/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/liststyle/dialogs/liststyle.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/liststyle/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/maximize/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/menu/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/panel/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/pastefromword/filter/default.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/pastefromword/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/pastetext/dialogs/pastetext.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/pastetext/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/popup/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/removeformat/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/resize/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/richcombo/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/selection/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/showborders/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/sourcearea/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/styles/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/styles/styles/default.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/stylescombo/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/tab/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/table/dialogs/table.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/table/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/tabletools/dialogs/tableCell.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/tabletools/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/toolbar/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/undo/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/wysiwygarea/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/dialog.css +988 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/editor.css +25 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/elementspath.css +73 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/icons.css +367 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/icons.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/icons_rtl.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/images/dialog_sides.gif +0 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/images/dialog_sides.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/images/dialog_sides_rtl.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/images/mini.gif +0 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/images/noimage.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/images/sprites.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/images/sprites_ie6.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/images/toolbar_start.gif +0 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/mainui.css +209 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/menu.css +232 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/panel.css +227 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/presets.css +49 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/reset.css +85 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/richcombo.css +287 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/skin.js +236 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/templates.css +88 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/toolbar.css +412 -0
- data/app/inputs/ckeditor_input.rb +42 -0
- data/config/routes.rb +2 -0
- data/lib/esp-ckeditor/engine.rb +9 -0
- data/lib/esp-ckeditor/version.rb +3 -0
- data/lib/esp-ckeditor.rb +17 -0
- data/lib/tasks/esp-ckeditor_tasks.rake +4 -0
- metadata +434 -0
@@ -0,0 +1,128 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
|
3
|
+
For licensing, see LICENSE.html or http://ckeditor.com/license
|
4
|
+
*/
|
5
|
+
|
6
|
+
/**
|
7
|
+
* Contains UI features related to an editor instance.
|
8
|
+
* @constructor
|
9
|
+
* @param {CKEDITOR.editor} editor The editor instance.
|
10
|
+
* @example
|
11
|
+
*/
|
12
|
+
CKEDITOR.ui = function( editor )
|
13
|
+
{
|
14
|
+
if ( editor.ui )
|
15
|
+
return editor.ui;
|
16
|
+
|
17
|
+
/**
|
18
|
+
* Object used to hold private stuff.
|
19
|
+
* @private
|
20
|
+
*/
|
21
|
+
this._ =
|
22
|
+
{
|
23
|
+
handlers : {},
|
24
|
+
items : {},
|
25
|
+
editor : editor
|
26
|
+
};
|
27
|
+
|
28
|
+
return this;
|
29
|
+
};
|
30
|
+
|
31
|
+
// PACKAGER_RENAME( CKEDITOR.ui )
|
32
|
+
|
33
|
+
CKEDITOR.ui.prototype =
|
34
|
+
{
|
35
|
+
/**
|
36
|
+
* Adds a UI item to the items collection. These items can be later used in
|
37
|
+
* the interface.
|
38
|
+
* @param {String} name The UI item name.
|
39
|
+
* @param {Object} type The item type.
|
40
|
+
* @param {Object} definition The item definition. The properties of this
|
41
|
+
* object depend on the item type.
|
42
|
+
* @example
|
43
|
+
* // Add a new button named "MyBold".
|
44
|
+
* editorInstance.ui.add( 'MyBold', CKEDITOR.UI_BUTTON,
|
45
|
+
* {
|
46
|
+
* label : 'My Bold',
|
47
|
+
* command : 'bold'
|
48
|
+
* });
|
49
|
+
*/
|
50
|
+
add : function( name, type, definition )
|
51
|
+
{
|
52
|
+
this._.items[ name ] =
|
53
|
+
{
|
54
|
+
type : type,
|
55
|
+
// The name of {@link CKEDITOR.command} which associate with this UI.
|
56
|
+
command : definition.command || null,
|
57
|
+
args : Array.prototype.slice.call( arguments, 2 )
|
58
|
+
};
|
59
|
+
},
|
60
|
+
|
61
|
+
/**
|
62
|
+
* Gets a UI object.
|
63
|
+
* @param {String} name The UI item hame.
|
64
|
+
* @example
|
65
|
+
*/
|
66
|
+
create : function( name )
|
67
|
+
{
|
68
|
+
var item = this._.items[ name ],
|
69
|
+
handler = item && this._.handlers[ item.type ],
|
70
|
+
command = item && item.command && this._.editor.getCommand( item.command );
|
71
|
+
|
72
|
+
var result = handler && handler.create.apply( this, item.args );
|
73
|
+
|
74
|
+
// Allow overrides from skin ui definitions..
|
75
|
+
item && ( result = CKEDITOR.tools.extend( result, this._.editor.skin[ item.type ], true ) );
|
76
|
+
|
77
|
+
// Add reference inside command object.
|
78
|
+
if ( command )
|
79
|
+
command.uiItems.push( result );
|
80
|
+
|
81
|
+
return result;
|
82
|
+
},
|
83
|
+
|
84
|
+
/**
|
85
|
+
* Adds a handler for a UI item type. The handler is responsible for
|
86
|
+
* transforming UI item definitions in UI objects.
|
87
|
+
* @param {Object} type The item type.
|
88
|
+
* @param {Object} handler The handler definition.
|
89
|
+
* @example
|
90
|
+
*/
|
91
|
+
addHandler : function( type, handler )
|
92
|
+
{
|
93
|
+
this._.handlers[ type ] = handler;
|
94
|
+
}
|
95
|
+
};
|
96
|
+
|
97
|
+
CKEDITOR.event.implementOn( CKEDITOR.ui );
|
98
|
+
|
99
|
+
/**
|
100
|
+
* (Virtual Class) Do not call this constructor. This class is not really part
|
101
|
+
* of the API. It just illustrates the features of hanlder objects to be
|
102
|
+
* passed to the {@link CKEDITOR.ui.prototype.addHandler} function.
|
103
|
+
* @name CKEDITOR.ui.handlerDefinition
|
104
|
+
* @constructor
|
105
|
+
* @example
|
106
|
+
*/
|
107
|
+
|
108
|
+
/**
|
109
|
+
* Transforms an item definition into an UI item object.
|
110
|
+
* @name CKEDITOR.handlerDefinition.prototype.create
|
111
|
+
* @function
|
112
|
+
* @param {Object} definition The item definition.
|
113
|
+
* @example
|
114
|
+
* editorInstance.ui.addHandler( CKEDITOR.UI_BUTTON,
|
115
|
+
* {
|
116
|
+
* create : function( definition )
|
117
|
+
* {
|
118
|
+
* return new CKEDITOR.ui.button( definition );
|
119
|
+
* }
|
120
|
+
* });
|
121
|
+
*/
|
122
|
+
|
123
|
+
/**
|
124
|
+
* Internal event fired when a new UI element is ready
|
125
|
+
* @name CKEDITOR.ui#ready
|
126
|
+
* @event
|
127
|
+
* @param {Object} element The new element
|
128
|
+
*/
|
@@ -0,0 +1,27 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
|
3
|
+
For licensing, see LICENSE.html or http://ckeditor.com/license
|
4
|
+
*/
|
5
|
+
|
6
|
+
var CKEDITOR_LANGS = (function()
|
7
|
+
{
|
8
|
+
var langs =
|
9
|
+
{
|
10
|
+
en : 'English',
|
11
|
+
ru : 'Russian'
|
12
|
+
};
|
13
|
+
|
14
|
+
var langsArray = [];
|
15
|
+
|
16
|
+
for ( var code in langs )
|
17
|
+
{
|
18
|
+
langsArray.push( { code : code, name : langs[ code ] } );
|
19
|
+
}
|
20
|
+
|
21
|
+
langsArray.sort( function( a, b )
|
22
|
+
{
|
23
|
+
return ( a.name < b.name ) ? -1 : 1;
|
24
|
+
});
|
25
|
+
|
26
|
+
return langsArray;
|
27
|
+
})();
|
@@ -0,0 +1,815 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
|
3
|
+
For licensing, see LICENSE.html or http://ckeditor.com/license
|
4
|
+
*/
|
5
|
+
|
6
|
+
/**
|
7
|
+
* @fileOverview Defines the {@link CKEDITOR.lang} object for the English
|
8
|
+
* language. This is the base file for all translations.
|
9
|
+
*/
|
10
|
+
|
11
|
+
/**#@+
|
12
|
+
@type String
|
13
|
+
@example
|
14
|
+
*/
|
15
|
+
|
16
|
+
/**
|
17
|
+
* Contains the dictionary of language entries.
|
18
|
+
* @namespace
|
19
|
+
*/
|
20
|
+
CKEDITOR.lang['en'] =
|
21
|
+
{
|
22
|
+
/**
|
23
|
+
* The language reading direction. Possible values are "rtl" for
|
24
|
+
* Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
|
25
|
+
* languages (like English).
|
26
|
+
* @default 'ltr'
|
27
|
+
*/
|
28
|
+
dir : 'ltr',
|
29
|
+
|
30
|
+
/*
|
31
|
+
* Screenreader titles. Please note that screenreaders are not always capable
|
32
|
+
* of reading non-English words. So be careful while translating it.
|
33
|
+
*/
|
34
|
+
editorTitle : 'Rich text editor, %1, press ALT 0 for help.',
|
35
|
+
|
36
|
+
// ARIA descriptions.
|
37
|
+
toolbars : 'Editor toolbars',
|
38
|
+
editor : 'Rich Text Editor',
|
39
|
+
|
40
|
+
// Toolbar buttons without dialogs.
|
41
|
+
source : 'Source',
|
42
|
+
newPage : 'New Page',
|
43
|
+
save : 'Save',
|
44
|
+
preview : 'Preview',
|
45
|
+
cut : 'Cut',
|
46
|
+
copy : 'Copy',
|
47
|
+
paste : 'Paste',
|
48
|
+
print : 'Print',
|
49
|
+
underline : 'Underline',
|
50
|
+
bold : 'Bold',
|
51
|
+
italic : 'Italic',
|
52
|
+
selectAll : 'Select All',
|
53
|
+
removeFormat : 'Remove Format',
|
54
|
+
strike : 'Strike Through',
|
55
|
+
subscript : 'Subscript',
|
56
|
+
superscript : 'Superscript',
|
57
|
+
horizontalrule : 'Insert Horizontal Line',
|
58
|
+
pagebreak : 'Insert Page Break for Printing',
|
59
|
+
pagebreakAlt : 'Page Break',
|
60
|
+
unlink : 'Unlink',
|
61
|
+
undo : 'Undo',
|
62
|
+
redo : 'Redo',
|
63
|
+
|
64
|
+
// Common messages and labels.
|
65
|
+
common :
|
66
|
+
{
|
67
|
+
browseServer : 'Browse Server',
|
68
|
+
url : 'URL',
|
69
|
+
protocol : 'Protocol',
|
70
|
+
upload : 'Upload',
|
71
|
+
uploadSubmit : 'Send it to the Server',
|
72
|
+
image : 'Image',
|
73
|
+
flash : 'Flash',
|
74
|
+
form : 'Form',
|
75
|
+
checkbox : 'Checkbox',
|
76
|
+
radio : 'Radio Button',
|
77
|
+
textField : 'Text Field',
|
78
|
+
textarea : 'Textarea',
|
79
|
+
hiddenField : 'Hidden Field',
|
80
|
+
button : 'Button',
|
81
|
+
select : 'Selection Field',
|
82
|
+
imageButton : 'Image Button',
|
83
|
+
notSet : '<not set>',
|
84
|
+
id : 'Id',
|
85
|
+
name : 'Name',
|
86
|
+
langDir : 'Language Direction',
|
87
|
+
langDirLtr : 'Left to Right (LTR)',
|
88
|
+
langDirRtl : 'Right to Left (RTL)',
|
89
|
+
langCode : 'Language Code',
|
90
|
+
longDescr : 'Long Description URL',
|
91
|
+
cssClass : 'Stylesheet Classes',
|
92
|
+
advisoryTitle : 'Advisory Title',
|
93
|
+
cssStyle : 'Style',
|
94
|
+
ok : 'OK',
|
95
|
+
cancel : 'Cancel',
|
96
|
+
close : 'Close',
|
97
|
+
preview : 'Preview',
|
98
|
+
generalTab : 'General',
|
99
|
+
advancedTab : 'Advanced',
|
100
|
+
validateNumberFailed : 'This value is not a number.',
|
101
|
+
confirmNewPage : 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?',
|
102
|
+
confirmCancel : 'Some of the options have been changed. Are you sure to close the dialog?',
|
103
|
+
options : 'Options',
|
104
|
+
target : 'Target',
|
105
|
+
targetNew : 'New Window (_blank)',
|
106
|
+
targetTop : 'Topmost Window (_top)',
|
107
|
+
targetSelf : 'Same Window (_self)',
|
108
|
+
targetParent : 'Parent Window (_parent)',
|
109
|
+
langDirLTR : 'Left to Right (LTR)',
|
110
|
+
langDirRTL : 'Right to Left (RTL)',
|
111
|
+
styles : 'Style',
|
112
|
+
cssClasses : 'Stylesheet Classes',
|
113
|
+
width : 'Width',
|
114
|
+
height : 'Height',
|
115
|
+
align : 'Alignment',
|
116
|
+
alignLeft : 'Left',
|
117
|
+
alignRight : 'Right',
|
118
|
+
alignCenter : 'Center',
|
119
|
+
alignTop : 'Top',
|
120
|
+
alignMiddle : 'Middle',
|
121
|
+
alignBottom : 'Bottom',
|
122
|
+
invalidHeight : 'Height must be a number.',
|
123
|
+
invalidWidth : 'Width must be a number.',
|
124
|
+
invalidCssLength : 'Value specified for the "%1" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).',
|
125
|
+
invalidHtmlLength : 'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).',
|
126
|
+
invalidInlineStyle : 'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.',
|
127
|
+
cssLengthTooltip : 'Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).',
|
128
|
+
|
129
|
+
// Put the voice-only part of the label in the span.
|
130
|
+
unavailable : '%1<span class="cke_accessibility">, unavailable</span>'
|
131
|
+
},
|
132
|
+
|
133
|
+
contextmenu :
|
134
|
+
{
|
135
|
+
options : 'Context Menu Options'
|
136
|
+
},
|
137
|
+
|
138
|
+
// Special char dialog.
|
139
|
+
specialChar :
|
140
|
+
{
|
141
|
+
toolbar : 'Insert Special Character',
|
142
|
+
title : 'Select Special Character',
|
143
|
+
options : 'Special Character Options'
|
144
|
+
},
|
145
|
+
|
146
|
+
// Link dialog.
|
147
|
+
link :
|
148
|
+
{
|
149
|
+
toolbar : 'Link',
|
150
|
+
other : '<other>',
|
151
|
+
menu : 'Edit Link',
|
152
|
+
title : 'Link',
|
153
|
+
info : 'Link Info',
|
154
|
+
target : 'Target',
|
155
|
+
upload : 'Upload',
|
156
|
+
advanced : 'Advanced',
|
157
|
+
type : 'Link Type',
|
158
|
+
toUrl : 'URL',
|
159
|
+
toAnchor : 'Link to anchor in the text',
|
160
|
+
toEmail : 'E-mail',
|
161
|
+
targetFrame : '<frame>',
|
162
|
+
targetPopup : '<popup window>',
|
163
|
+
targetFrameName : 'Target Frame Name',
|
164
|
+
targetPopupName : 'Popup Window Name',
|
165
|
+
popupFeatures : 'Popup Window Features',
|
166
|
+
popupResizable : 'Resizable',
|
167
|
+
popupStatusBar : 'Status Bar',
|
168
|
+
popupLocationBar: 'Location Bar',
|
169
|
+
popupToolbar : 'Toolbar',
|
170
|
+
popupMenuBar : 'Menu Bar',
|
171
|
+
popupFullScreen : 'Full Screen (IE)',
|
172
|
+
popupScrollBars : 'Scroll Bars',
|
173
|
+
popupDependent : 'Dependent (Netscape)',
|
174
|
+
popupLeft : 'Left Position',
|
175
|
+
popupTop : 'Top Position',
|
176
|
+
id : 'Id',
|
177
|
+
langDir : 'Language Direction',
|
178
|
+
langDirLTR : 'Left to Right (LTR)',
|
179
|
+
langDirRTL : 'Right to Left (RTL)',
|
180
|
+
acccessKey : 'Access Key',
|
181
|
+
name : 'Name',
|
182
|
+
langCode : 'Language Code',
|
183
|
+
tabIndex : 'Tab Index',
|
184
|
+
advisoryTitle : 'Advisory Title',
|
185
|
+
advisoryContentType : 'Advisory Content Type',
|
186
|
+
cssClasses : 'Stylesheet Classes',
|
187
|
+
charset : 'Linked Resource Charset',
|
188
|
+
styles : 'Style',
|
189
|
+
rel : 'Relationship',
|
190
|
+
selectAnchor : 'Select an Anchor',
|
191
|
+
anchorName : 'By Anchor Name',
|
192
|
+
anchorId : 'By Element Id',
|
193
|
+
emailAddress : 'E-Mail Address',
|
194
|
+
emailSubject : 'Message Subject',
|
195
|
+
emailBody : 'Message Body',
|
196
|
+
noAnchors : '(No anchors available in the document)',
|
197
|
+
noUrl : 'Please type the link URL',
|
198
|
+
noEmail : 'Please type the e-mail address'
|
199
|
+
},
|
200
|
+
|
201
|
+
// Anchor dialog
|
202
|
+
anchor :
|
203
|
+
{
|
204
|
+
toolbar : 'Anchor',
|
205
|
+
menu : 'Edit Anchor',
|
206
|
+
title : 'Anchor Properties',
|
207
|
+
name : 'Anchor Name',
|
208
|
+
errorName : 'Please type the anchor name',
|
209
|
+
remove : 'Remove Anchor'
|
210
|
+
},
|
211
|
+
|
212
|
+
// List style dialog
|
213
|
+
list:
|
214
|
+
{
|
215
|
+
numberedTitle : 'Numbered List Properties',
|
216
|
+
bulletedTitle : 'Bulleted List Properties',
|
217
|
+
type : 'Type',
|
218
|
+
start : 'Start',
|
219
|
+
validateStartNumber :'List start number must be a whole number.',
|
220
|
+
circle : 'Circle',
|
221
|
+
disc : 'Disc',
|
222
|
+
square : 'Square',
|
223
|
+
none : 'None',
|
224
|
+
notset : '<not set>',
|
225
|
+
armenian : 'Armenian numbering',
|
226
|
+
georgian : 'Georgian numbering (an, ban, gan, etc.)',
|
227
|
+
lowerRoman : 'Lower Roman (i, ii, iii, iv, v, etc.)',
|
228
|
+
upperRoman : 'Upper Roman (I, II, III, IV, V, etc.)',
|
229
|
+
lowerAlpha : 'Lower Alpha (a, b, c, d, e, etc.)',
|
230
|
+
upperAlpha : 'Upper Alpha (A, B, C, D, E, etc.)',
|
231
|
+
lowerGreek : 'Lower Greek (alpha, beta, gamma, etc.)',
|
232
|
+
decimal : 'Decimal (1, 2, 3, etc.)',
|
233
|
+
decimalLeadingZero : 'Decimal leading zero (01, 02, 03, etc.)'
|
234
|
+
},
|
235
|
+
|
236
|
+
// Find And Replace Dialog
|
237
|
+
findAndReplace :
|
238
|
+
{
|
239
|
+
title : 'Find and Replace',
|
240
|
+
find : 'Find',
|
241
|
+
replace : 'Replace',
|
242
|
+
findWhat : 'Find what:',
|
243
|
+
replaceWith : 'Replace with:',
|
244
|
+
notFoundMsg : 'The specified text was not found.',
|
245
|
+
findOptions : 'Find Options',
|
246
|
+
matchCase : 'Match case',
|
247
|
+
matchWord : 'Match whole word',
|
248
|
+
matchCyclic : 'Match cyclic',
|
249
|
+
replaceAll : 'Replace All',
|
250
|
+
replaceSuccessMsg : '%1 occurrence(s) replaced.'
|
251
|
+
},
|
252
|
+
|
253
|
+
// Table Dialog
|
254
|
+
table :
|
255
|
+
{
|
256
|
+
toolbar : 'Table',
|
257
|
+
title : 'Table Properties',
|
258
|
+
menu : 'Table Properties',
|
259
|
+
deleteTable : 'Delete Table',
|
260
|
+
rows : 'Rows',
|
261
|
+
columns : 'Columns',
|
262
|
+
border : 'Border size',
|
263
|
+
widthPx : 'pixels',
|
264
|
+
widthPc : 'percent',
|
265
|
+
widthUnit : 'width unit',
|
266
|
+
cellSpace : 'Cell spacing',
|
267
|
+
cellPad : 'Cell padding',
|
268
|
+
caption : 'Caption',
|
269
|
+
summary : 'Summary',
|
270
|
+
headers : 'Headers',
|
271
|
+
headersNone : 'None',
|
272
|
+
headersColumn : 'First column',
|
273
|
+
headersRow : 'First Row',
|
274
|
+
headersBoth : 'Both',
|
275
|
+
invalidRows : 'Number of rows must be a number greater than 0.',
|
276
|
+
invalidCols : 'Number of columns must be a number greater than 0.',
|
277
|
+
invalidBorder : 'Border size must be a number.',
|
278
|
+
invalidWidth : 'Table width must be a number.',
|
279
|
+
invalidHeight : 'Table height must be a number.',
|
280
|
+
invalidCellSpacing : 'Cell spacing must be a positive number.',
|
281
|
+
invalidCellPadding : 'Cell padding must be a positive number.',
|
282
|
+
|
283
|
+
cell :
|
284
|
+
{
|
285
|
+
menu : 'Cell',
|
286
|
+
insertBefore : 'Insert Cell Before',
|
287
|
+
insertAfter : 'Insert Cell After',
|
288
|
+
deleteCell : 'Delete Cells',
|
289
|
+
merge : 'Merge Cells',
|
290
|
+
mergeRight : 'Merge Right',
|
291
|
+
mergeDown : 'Merge Down',
|
292
|
+
splitHorizontal : 'Split Cell Horizontally',
|
293
|
+
splitVertical : 'Split Cell Vertically',
|
294
|
+
title : 'Cell Properties',
|
295
|
+
cellType : 'Cell Type',
|
296
|
+
rowSpan : 'Rows Span',
|
297
|
+
colSpan : 'Columns Span',
|
298
|
+
wordWrap : 'Word Wrap',
|
299
|
+
hAlign : 'Horizontal Alignment',
|
300
|
+
vAlign : 'Vertical Alignment',
|
301
|
+
alignBaseline : 'Baseline',
|
302
|
+
bgColor : 'Background Color',
|
303
|
+
borderColor : 'Border Color',
|
304
|
+
data : 'Data',
|
305
|
+
header : 'Header',
|
306
|
+
yes : 'Yes',
|
307
|
+
no : 'No',
|
308
|
+
invalidWidth : 'Cell width must be a number.',
|
309
|
+
invalidHeight : 'Cell height must be a number.',
|
310
|
+
invalidRowSpan : 'Rows span must be a whole number.',
|
311
|
+
invalidColSpan : 'Columns span must be a whole number.',
|
312
|
+
chooseColor : 'Choose'
|
313
|
+
},
|
314
|
+
|
315
|
+
row :
|
316
|
+
{
|
317
|
+
menu : 'Row',
|
318
|
+
insertBefore : 'Insert Row Before',
|
319
|
+
insertAfter : 'Insert Row After',
|
320
|
+
deleteRow : 'Delete Rows'
|
321
|
+
},
|
322
|
+
|
323
|
+
column :
|
324
|
+
{
|
325
|
+
menu : 'Column',
|
326
|
+
insertBefore : 'Insert Column Before',
|
327
|
+
insertAfter : 'Insert Column After',
|
328
|
+
deleteColumn : 'Delete Columns'
|
329
|
+
}
|
330
|
+
},
|
331
|
+
|
332
|
+
// Button Dialog.
|
333
|
+
button :
|
334
|
+
{
|
335
|
+
title : 'Button Properties',
|
336
|
+
text : 'Text (Value)',
|
337
|
+
type : 'Type',
|
338
|
+
typeBtn : 'Button',
|
339
|
+
typeSbm : 'Submit',
|
340
|
+
typeRst : 'Reset'
|
341
|
+
},
|
342
|
+
|
343
|
+
// Checkbox and Radio Button Dialogs.
|
344
|
+
checkboxAndRadio :
|
345
|
+
{
|
346
|
+
checkboxTitle : 'Checkbox Properties',
|
347
|
+
radioTitle : 'Radio Button Properties',
|
348
|
+
value : 'Value',
|
349
|
+
selected : 'Selected'
|
350
|
+
},
|
351
|
+
|
352
|
+
// Form Dialog.
|
353
|
+
form :
|
354
|
+
{
|
355
|
+
title : 'Form Properties',
|
356
|
+
menu : 'Form Properties',
|
357
|
+
action : 'Action',
|
358
|
+
method : 'Method',
|
359
|
+
encoding : 'Encoding'
|
360
|
+
},
|
361
|
+
|
362
|
+
// Select Field Dialog.
|
363
|
+
select :
|
364
|
+
{
|
365
|
+
title : 'Selection Field Properties',
|
366
|
+
selectInfo : 'Select Info',
|
367
|
+
opAvail : 'Available Options',
|
368
|
+
value : 'Value',
|
369
|
+
size : 'Size',
|
370
|
+
lines : 'lines',
|
371
|
+
chkMulti : 'Allow multiple selections',
|
372
|
+
opText : 'Text',
|
373
|
+
opValue : 'Value',
|
374
|
+
btnAdd : 'Add',
|
375
|
+
btnModify : 'Modify',
|
376
|
+
btnUp : 'Up',
|
377
|
+
btnDown : 'Down',
|
378
|
+
btnSetValue : 'Set as selected value',
|
379
|
+
btnDelete : 'Delete'
|
380
|
+
},
|
381
|
+
|
382
|
+
// Textarea Dialog.
|
383
|
+
textarea :
|
384
|
+
{
|
385
|
+
title : 'Textarea Properties',
|
386
|
+
cols : 'Columns',
|
387
|
+
rows : 'Rows'
|
388
|
+
},
|
389
|
+
|
390
|
+
// Text Field Dialog.
|
391
|
+
textfield :
|
392
|
+
{
|
393
|
+
title : 'Text Field Properties',
|
394
|
+
name : 'Name',
|
395
|
+
value : 'Value',
|
396
|
+
charWidth : 'Character Width',
|
397
|
+
maxChars : 'Maximum Characters',
|
398
|
+
type : 'Type',
|
399
|
+
typeText : 'Text',
|
400
|
+
typePass : 'Password'
|
401
|
+
},
|
402
|
+
|
403
|
+
// Hidden Field Dialog.
|
404
|
+
hidden :
|
405
|
+
{
|
406
|
+
title : 'Hidden Field Properties',
|
407
|
+
name : 'Name',
|
408
|
+
value : 'Value'
|
409
|
+
},
|
410
|
+
|
411
|
+
// Image Dialog.
|
412
|
+
image :
|
413
|
+
{
|
414
|
+
title : 'Image Properties',
|
415
|
+
titleButton : 'Image Button Properties',
|
416
|
+
menu : 'Image Properties',
|
417
|
+
infoTab : 'Image Info',
|
418
|
+
btnUpload : 'Send it to the Server',
|
419
|
+
upload : 'Upload',
|
420
|
+
alt : 'Alternative Text',
|
421
|
+
lockRatio : 'Lock Ratio',
|
422
|
+
resetSize : 'Reset Size',
|
423
|
+
border : 'Border',
|
424
|
+
hSpace : 'HSpace',
|
425
|
+
vSpace : 'VSpace',
|
426
|
+
alertUrl : 'Please type the image URL',
|
427
|
+
linkTab : 'Link',
|
428
|
+
button2Img : 'Do you want to transform the selected image button on a simple image?',
|
429
|
+
img2Button : 'Do you want to transform the selected image on a image button?',
|
430
|
+
urlMissing : 'Image source URL is missing.',
|
431
|
+
validateBorder : 'Border must be a whole number.',
|
432
|
+
validateHSpace : 'HSpace must be a whole number.',
|
433
|
+
validateVSpace : 'VSpace must be a whole number.'
|
434
|
+
},
|
435
|
+
|
436
|
+
// Flash Dialog
|
437
|
+
flash :
|
438
|
+
{
|
439
|
+
properties : 'Flash Properties',
|
440
|
+
propertiesTab : 'Properties',
|
441
|
+
title : 'Flash Properties',
|
442
|
+
chkPlay : 'Auto Play',
|
443
|
+
chkLoop : 'Loop',
|
444
|
+
chkMenu : 'Enable Flash Menu',
|
445
|
+
chkFull : 'Allow Fullscreen',
|
446
|
+
scale : 'Scale',
|
447
|
+
scaleAll : 'Show all',
|
448
|
+
scaleNoBorder : 'No Border',
|
449
|
+
scaleFit : 'Exact Fit',
|
450
|
+
access : 'Script Access',
|
451
|
+
accessAlways : 'Always',
|
452
|
+
accessSameDomain: 'Same domain',
|
453
|
+
accessNever : 'Never',
|
454
|
+
alignAbsBottom : 'Abs Bottom',
|
455
|
+
alignAbsMiddle : 'Abs Middle',
|
456
|
+
alignBaseline : 'Baseline',
|
457
|
+
alignTextTop : 'Text Top',
|
458
|
+
quality : 'Quality',
|
459
|
+
qualityBest : 'Best',
|
460
|
+
qualityHigh : 'High',
|
461
|
+
qualityAutoHigh : 'Auto High',
|
462
|
+
qualityMedium : 'Medium',
|
463
|
+
qualityAutoLow : 'Auto Low',
|
464
|
+
qualityLow : 'Low',
|
465
|
+
windowModeWindow: 'Window',
|
466
|
+
windowModeOpaque: 'Opaque',
|
467
|
+
windowModeTransparent : 'Transparent',
|
468
|
+
windowMode : 'Window mode',
|
469
|
+
flashvars : 'Variables for Flash',
|
470
|
+
bgcolor : 'Background color',
|
471
|
+
hSpace : 'HSpace',
|
472
|
+
vSpace : 'VSpace',
|
473
|
+
validateSrc : 'URL must not be empty.',
|
474
|
+
validateHSpace : 'HSpace must be a number.',
|
475
|
+
validateVSpace : 'VSpace must be a number.'
|
476
|
+
},
|
477
|
+
|
478
|
+
// Speller Pages Dialog
|
479
|
+
spellCheck :
|
480
|
+
{
|
481
|
+
toolbar : 'Check Spelling',
|
482
|
+
title : 'Spell Check',
|
483
|
+
notAvailable : 'Sorry, but service is unavailable now.',
|
484
|
+
errorLoading : 'Error loading application service host: %s.',
|
485
|
+
notInDic : 'Not in dictionary',
|
486
|
+
changeTo : 'Change to',
|
487
|
+
btnIgnore : 'Ignore',
|
488
|
+
btnIgnoreAll : 'Ignore All',
|
489
|
+
btnReplace : 'Replace',
|
490
|
+
btnReplaceAll : 'Replace All',
|
491
|
+
btnUndo : 'Undo',
|
492
|
+
noSuggestions : '- No suggestions -',
|
493
|
+
progress : 'Spell check in progress...',
|
494
|
+
noMispell : 'Spell check complete: No misspellings found',
|
495
|
+
noChanges : 'Spell check complete: No words changed',
|
496
|
+
oneChange : 'Spell check complete: One word changed',
|
497
|
+
manyChanges : 'Spell check complete: %1 words changed',
|
498
|
+
ieSpellDownload : 'Spell checker not installed. Do you want to download it now?'
|
499
|
+
},
|
500
|
+
|
501
|
+
smiley :
|
502
|
+
{
|
503
|
+
toolbar : 'Smiley',
|
504
|
+
title : 'Insert a Smiley',
|
505
|
+
options : 'Smiley Options'
|
506
|
+
},
|
507
|
+
|
508
|
+
elementsPath :
|
509
|
+
{
|
510
|
+
eleLabel : 'Elements path',
|
511
|
+
eleTitle : '%1 element'
|
512
|
+
},
|
513
|
+
|
514
|
+
numberedlist : 'Insert/Remove Numbered List',
|
515
|
+
bulletedlist : 'Insert/Remove Bulleted List',
|
516
|
+
indent : 'Increase Indent',
|
517
|
+
outdent : 'Decrease Indent',
|
518
|
+
|
519
|
+
justify :
|
520
|
+
{
|
521
|
+
left : 'Align Left',
|
522
|
+
center : 'Center',
|
523
|
+
right : 'Align Right',
|
524
|
+
block : 'Justify'
|
525
|
+
},
|
526
|
+
|
527
|
+
blockquote : 'Block Quote',
|
528
|
+
|
529
|
+
clipboard :
|
530
|
+
{
|
531
|
+
title : 'Paste',
|
532
|
+
cutError : 'Your browser security settings don\'t permit the editor to automatically execute cutting operations. Please use the keyboard for that (Ctrl/Cmd+X).',
|
533
|
+
copyError : 'Your browser security settings don\'t permit the editor to automatically execute copying operations. Please use the keyboard for that (Ctrl/Cmd+C).',
|
534
|
+
pasteMsg : 'Please paste inside the following box using the keyboard (<strong>Ctrl/Cmd+V</strong>) and hit OK',
|
535
|
+
securityMsg : '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.',
|
536
|
+
pasteArea : 'Paste Area'
|
537
|
+
},
|
538
|
+
|
539
|
+
pastefromword :
|
540
|
+
{
|
541
|
+
confirmCleanup : 'The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?',
|
542
|
+
toolbar : 'Paste from Word',
|
543
|
+
title : 'Paste from Word',
|
544
|
+
error : 'It was not possible to clean up the pasted data due to an internal error'
|
545
|
+
},
|
546
|
+
|
547
|
+
pasteText :
|
548
|
+
{
|
549
|
+
button : 'Paste as plain text',
|
550
|
+
title : 'Paste as Plain Text'
|
551
|
+
},
|
552
|
+
|
553
|
+
templates :
|
554
|
+
{
|
555
|
+
button : 'Templates',
|
556
|
+
title : 'Content Templates',
|
557
|
+
options : 'Template Options',
|
558
|
+
insertOption : 'Replace actual contents',
|
559
|
+
selectPromptMsg : 'Please select the template to open in the editor',
|
560
|
+
emptyListMsg : '(No templates defined)'
|
561
|
+
},
|
562
|
+
|
563
|
+
showBlocks : 'Show Blocks',
|
564
|
+
|
565
|
+
stylesCombo :
|
566
|
+
{
|
567
|
+
label : 'Styles',
|
568
|
+
panelTitle : 'Formatting Styles',
|
569
|
+
panelTitle1 : 'Block Styles',
|
570
|
+
panelTitle2 : 'Inline Styles',
|
571
|
+
panelTitle3 : 'Object Styles'
|
572
|
+
},
|
573
|
+
|
574
|
+
format :
|
575
|
+
{
|
576
|
+
label : 'Format',
|
577
|
+
panelTitle : 'Paragraph Format',
|
578
|
+
|
579
|
+
tag_p : 'Normal',
|
580
|
+
tag_pre : 'Formatted',
|
581
|
+
tag_address : 'Address',
|
582
|
+
tag_h1 : 'Heading 1',
|
583
|
+
tag_h2 : 'Heading 2',
|
584
|
+
tag_h3 : 'Heading 3',
|
585
|
+
tag_h4 : 'Heading 4',
|
586
|
+
tag_h5 : 'Heading 5',
|
587
|
+
tag_h6 : 'Heading 6',
|
588
|
+
tag_div : 'Normal (DIV)'
|
589
|
+
},
|
590
|
+
|
591
|
+
div :
|
592
|
+
{
|
593
|
+
title : 'Create Div Container',
|
594
|
+
toolbar : 'Create Div Container',
|
595
|
+
cssClassInputLabel : 'Stylesheet Classes',
|
596
|
+
styleSelectLabel : 'Style',
|
597
|
+
IdInputLabel : 'Id',
|
598
|
+
languageCodeInputLabel : ' Language Code',
|
599
|
+
inlineStyleInputLabel : 'Inline Style',
|
600
|
+
advisoryTitleInputLabel : 'Advisory Title',
|
601
|
+
langDirLabel : 'Language Direction',
|
602
|
+
langDirLTRLabel : 'Left to Right (LTR)',
|
603
|
+
langDirRTLLabel : 'Right to Left (RTL)',
|
604
|
+
edit : 'Edit Div',
|
605
|
+
remove : 'Remove Div'
|
606
|
+
},
|
607
|
+
|
608
|
+
iframe :
|
609
|
+
{
|
610
|
+
title : 'IFrame Properties',
|
611
|
+
toolbar : 'IFrame',
|
612
|
+
noUrl : 'Please type the iframe URL',
|
613
|
+
scrolling : 'Enable scrollbars',
|
614
|
+
border : 'Show frame border'
|
615
|
+
},
|
616
|
+
|
617
|
+
font :
|
618
|
+
{
|
619
|
+
label : 'Font',
|
620
|
+
voiceLabel : 'Font',
|
621
|
+
panelTitle : 'Font Name'
|
622
|
+
},
|
623
|
+
|
624
|
+
fontSize :
|
625
|
+
{
|
626
|
+
label : 'Size',
|
627
|
+
voiceLabel : 'Font Size',
|
628
|
+
panelTitle : 'Font Size'
|
629
|
+
},
|
630
|
+
|
631
|
+
colorButton :
|
632
|
+
{
|
633
|
+
textColorTitle : 'Text Color',
|
634
|
+
bgColorTitle : 'Background Color',
|
635
|
+
panelTitle : 'Colors',
|
636
|
+
auto : 'Automatic',
|
637
|
+
more : 'More Colors...'
|
638
|
+
},
|
639
|
+
|
640
|
+
colors :
|
641
|
+
{
|
642
|
+
'000' : 'Black',
|
643
|
+
'800000' : 'Maroon',
|
644
|
+
'8B4513' : 'Saddle Brown',
|
645
|
+
'2F4F4F' : 'Dark Slate Gray',
|
646
|
+
'008080' : 'Teal',
|
647
|
+
'000080' : 'Navy',
|
648
|
+
'4B0082' : 'Indigo',
|
649
|
+
'696969' : 'Dark Gray',
|
650
|
+
'B22222' : 'Fire Brick',
|
651
|
+
'A52A2A' : 'Brown',
|
652
|
+
'DAA520' : 'Golden Rod',
|
653
|
+
'006400' : 'Dark Green',
|
654
|
+
'40E0D0' : 'Turquoise',
|
655
|
+
'0000CD' : 'Medium Blue',
|
656
|
+
'800080' : 'Purple',
|
657
|
+
'808080' : 'Gray',
|
658
|
+
'F00' : 'Red',
|
659
|
+
'FF8C00' : 'Dark Orange',
|
660
|
+
'FFD700' : 'Gold',
|
661
|
+
'008000' : 'Green',
|
662
|
+
'0FF' : 'Cyan',
|
663
|
+
'00F' : 'Blue',
|
664
|
+
'EE82EE' : 'Violet',
|
665
|
+
'A9A9A9' : 'Dim Gray',
|
666
|
+
'FFA07A' : 'Light Salmon',
|
667
|
+
'FFA500' : 'Orange',
|
668
|
+
'FFFF00' : 'Yellow',
|
669
|
+
'00FF00' : 'Lime',
|
670
|
+
'AFEEEE' : 'Pale Turquoise',
|
671
|
+
'ADD8E6' : 'Light Blue',
|
672
|
+
'DDA0DD' : 'Plum',
|
673
|
+
'D3D3D3' : 'Light Grey',
|
674
|
+
'FFF0F5' : 'Lavender Blush',
|
675
|
+
'FAEBD7' : 'Antique White',
|
676
|
+
'FFFFE0' : 'Light Yellow',
|
677
|
+
'F0FFF0' : 'Honeydew',
|
678
|
+
'F0FFFF' : 'Azure',
|
679
|
+
'F0F8FF' : 'Alice Blue',
|
680
|
+
'E6E6FA' : 'Lavender',
|
681
|
+
'FFF' : 'White'
|
682
|
+
},
|
683
|
+
|
684
|
+
scayt :
|
685
|
+
{
|
686
|
+
title : 'Spell Check As You Type',
|
687
|
+
opera_title : 'Not supported by Opera',
|
688
|
+
enable : 'Enable SCAYT',
|
689
|
+
disable : 'Disable SCAYT',
|
690
|
+
about : 'About SCAYT',
|
691
|
+
toggle : 'Toggle SCAYT',
|
692
|
+
options : 'Options',
|
693
|
+
langs : 'Languages',
|
694
|
+
moreSuggestions : 'More suggestions',
|
695
|
+
ignore : 'Ignore',
|
696
|
+
ignoreAll : 'Ignore All',
|
697
|
+
addWord : 'Add Word',
|
698
|
+
emptyDic : 'Dictionary name should not be empty.',
|
699
|
+
|
700
|
+
optionsTab : 'Options',
|
701
|
+
allCaps : 'Ignore All-Caps Words',
|
702
|
+
ignoreDomainNames : 'Ignore Domain Names',
|
703
|
+
mixedCase : 'Ignore Words with Mixed Case',
|
704
|
+
mixedWithDigits : 'Ignore Words with Numbers',
|
705
|
+
|
706
|
+
languagesTab : 'Languages',
|
707
|
+
|
708
|
+
dictionariesTab : 'Dictionaries',
|
709
|
+
dic_field_name : 'Dictionary name',
|
710
|
+
dic_create : 'Create',
|
711
|
+
dic_restore : 'Restore',
|
712
|
+
dic_delete : 'Delete',
|
713
|
+
dic_rename : 'Rename',
|
714
|
+
dic_info : 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type its name and click the Restore button.',
|
715
|
+
|
716
|
+
aboutTab : 'About'
|
717
|
+
},
|
718
|
+
|
719
|
+
about :
|
720
|
+
{
|
721
|
+
title : 'About CKEditor',
|
722
|
+
dlgTitle : 'About CKEditor',
|
723
|
+
help : 'Check $1 for help.',
|
724
|
+
userGuide : 'CKEditor User\'s Guide',
|
725
|
+
moreInfo : 'For licensing information please visit our web site:',
|
726
|
+
copy : 'Copyright © $1. All rights reserved.'
|
727
|
+
},
|
728
|
+
|
729
|
+
maximize : 'Maximize',
|
730
|
+
minimize : 'Minimize',
|
731
|
+
|
732
|
+
fakeobjects :
|
733
|
+
{
|
734
|
+
anchor : 'Anchor',
|
735
|
+
flash : 'Flash Animation',
|
736
|
+
iframe : 'IFrame',
|
737
|
+
hiddenfield : 'Hidden Field',
|
738
|
+
unknown : 'Unknown Object'
|
739
|
+
},
|
740
|
+
|
741
|
+
resize : 'Drag to resize',
|
742
|
+
|
743
|
+
colordialog :
|
744
|
+
{
|
745
|
+
title : 'Select color',
|
746
|
+
options : 'Color Options',
|
747
|
+
highlight : 'Highlight',
|
748
|
+
selected : 'Selected Color',
|
749
|
+
clear : 'Clear'
|
750
|
+
},
|
751
|
+
|
752
|
+
toolbarCollapse : 'Collapse Toolbar',
|
753
|
+
toolbarExpand : 'Expand Toolbar',
|
754
|
+
|
755
|
+
toolbarGroups :
|
756
|
+
{
|
757
|
+
document : 'Document',
|
758
|
+
clipboard : 'Clipboard/Undo',
|
759
|
+
editing : 'Editing',
|
760
|
+
forms : 'Forms',
|
761
|
+
basicstyles : 'Basic Styles',
|
762
|
+
paragraph : 'Paragraph',
|
763
|
+
links : 'Links',
|
764
|
+
insert : 'Insert',
|
765
|
+
styles : 'Styles',
|
766
|
+
colors : 'Colors',
|
767
|
+
tools : 'Tools'
|
768
|
+
},
|
769
|
+
|
770
|
+
bidi :
|
771
|
+
{
|
772
|
+
ltr : 'Text direction from left to right',
|
773
|
+
rtl : 'Text direction from right to left'
|
774
|
+
},
|
775
|
+
|
776
|
+
docprops :
|
777
|
+
{
|
778
|
+
label : 'Document Properties',
|
779
|
+
title : 'Document Properties',
|
780
|
+
design : 'Design',
|
781
|
+
meta : 'Meta Tags',
|
782
|
+
chooseColor : 'Choose',
|
783
|
+
other : 'Other...',
|
784
|
+
docTitle : 'Page Title',
|
785
|
+
charset : 'Character Set Encoding',
|
786
|
+
charsetOther : 'Other Character Set Encoding',
|
787
|
+
charsetASCII : 'ASCII',
|
788
|
+
charsetCE : 'Central European',
|
789
|
+
charsetCT : 'Chinese Traditional (Big5)',
|
790
|
+
charsetCR : 'Cyrillic',
|
791
|
+
charsetGR : 'Greek',
|
792
|
+
charsetJP : 'Japanese',
|
793
|
+
charsetKR : 'Korean',
|
794
|
+
charsetTR : 'Turkish',
|
795
|
+
charsetUN : 'Unicode (UTF-8)',
|
796
|
+
charsetWE : 'Western European',
|
797
|
+
docType : 'Document Type Heading',
|
798
|
+
docTypeOther : 'Other Document Type Heading',
|
799
|
+
xhtmlDec : 'Include XHTML Declarations',
|
800
|
+
bgColor : 'Background Color',
|
801
|
+
bgImage : 'Background Image URL',
|
802
|
+
bgFixed : 'Non-scrolling (Fixed) Background',
|
803
|
+
txtColor : 'Text Color',
|
804
|
+
margin : 'Page Margins',
|
805
|
+
marginTop : 'Top',
|
806
|
+
marginLeft : 'Left',
|
807
|
+
marginRight : 'Right',
|
808
|
+
marginBottom : 'Bottom',
|
809
|
+
metaKeywords : 'Document Indexing Keywords (comma separated)',
|
810
|
+
metaDescription : 'Document Description',
|
811
|
+
metaAuthor : 'Author',
|
812
|
+
metaCopyright : 'Copyright',
|
813
|
+
previewHtml : '<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>'
|
814
|
+
}
|
815
|
+
};
|