ckeditor 3.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +15 -0
- data/README.textile +225 -0
- data/Rakefile +44 -0
- data/TODO +3 -0
- data/app/controllers/ckeditor_controller.rb +87 -0
- data/app/helpers/ckeditor_helper.rb +37 -0
- data/app/views/ckeditor/_file.html.erb +15 -0
- data/app/views/ckeditor/_image.html.erb +15 -0
- data/app/views/ckeditor/_swfupload.html.erb +51 -0
- data/app/views/ckeditor/files.html.erb +91 -0
- data/app/views/ckeditor/images.html.erb +91 -0
- data/app/views/layouts/ckeditor.html.erb +30 -0
- data/config/routes.rb +5 -0
- data/examples/migrations/attachment_fu/create_assets.rb +30 -0
- data/examples/migrations/paperclip/create_assets.rb +25 -0
- data/examples/models/attachment_fu/asset.rb +45 -0
- data/examples/models/attachment_fu/attachment_file.rb +46 -0
- data/examples/models/attachment_fu/picture.rb +46 -0
- data/examples/models/paperclip/asset.rb +65 -0
- data/examples/models/paperclip/attachment_file.rb +22 -0
- data/examples/models/paperclip/picture.rb +39 -0
- data/examples/s3/attachment_file.rb +23 -0
- data/examples/s3/picture.rb +41 -0
- data/lib/ckeditor.rb +57 -0
- data/lib/ckeditor/engine.rb +10 -0
- data/lib/ckeditor/file_storage.rb +178 -0
- data/lib/ckeditor/form_builder.rb +22 -0
- data/lib/ckeditor/utils.rb +15 -0
- data/lib/ckeditor/version.rb +11 -0
- data/lib/ckeditor/view_helper.rb +119 -0
- data/lib/generators/ckeditor_generator.rb +23 -0
- data/lib/generators/templates/ckeditor.rb +51 -0
- data/lib/generators/templates/ckeditor.yml +28 -0
- data/lib/generators/templates/ckeditor/CHANGES.html +642 -0
- data/lib/generators/templates/ckeditor/INSTALL.html +92 -0
- data/lib/generators/templates/ckeditor/LICENSE.html +1334 -0
- data/lib/generators/templates/ckeditor/_samples/ajax.html +87 -0
- data/lib/generators/templates/ckeditor/_samples/api.html +152 -0
- data/lib/generators/templates/ckeditor/_samples/api_dialog.html +181 -0
- data/lib/generators/templates/ckeditor/_samples/api_dialog/my_dialog.js +28 -0
- data/lib/generators/templates/ckeditor/_samples/assets/output_xhtml.css +204 -0
- data/lib/generators/templates/ckeditor/_samples/divreplace.html +137 -0
- data/lib/generators/templates/ckeditor/_samples/enterkey.html +88 -0
- data/lib/generators/templates/ckeditor/_samples/fullpage.html +62 -0
- data/lib/generators/templates/ckeditor/_samples/index.html +54 -0
- data/lib/generators/templates/ckeditor/_samples/jqueryadapter.html +73 -0
- data/lib/generators/templates/ckeditor/_samples/output_xhtml.html +159 -0
- data/lib/generators/templates/ckeditor/_samples/php/advanced.php +93 -0
- data/lib/generators/templates/ckeditor/_samples/php/events.php +130 -0
- data/lib/generators/templates/ckeditor/_samples/php/replace.php +63 -0
- data/lib/generators/templates/ckeditor/_samples/php/replaceall.php +68 -0
- data/lib/generators/templates/ckeditor/_samples/php/standalone.php +64 -0
- data/lib/generators/templates/ckeditor/_samples/replacebyclass.html +49 -0
- data/lib/generators/templates/ckeditor/_samples/replacebycode.html +80 -0
- data/lib/generators/templates/ckeditor/_samples/sample.css +81 -0
- data/lib/generators/templates/ckeditor/_samples/sample.js +65 -0
- data/lib/generators/templates/ckeditor/_samples/sample_posteddata.php +59 -0
- data/lib/generators/templates/ckeditor/_samples/sharedspaces.html +131 -0
- data/lib/generators/templates/ckeditor/_samples/skins.html +83 -0
- data/lib/generators/templates/ckeditor/_samples/ui_color.html +87 -0
- data/lib/generators/templates/ckeditor/_samples/ui_languages.html +103 -0
- data/lib/generators/templates/ckeditor/_source/adapters/jquery.js +297 -0
- data/lib/generators/templates/ckeditor/_source/core/_bootstrap.js +91 -0
- data/lib/generators/templates/ckeditor/_source/core/ajax.js +143 -0
- data/lib/generators/templates/ckeditor/_source/core/ckeditor.js +103 -0
- data/lib/generators/templates/ckeditor/_source/core/ckeditor_base.js +193 -0
- data/lib/generators/templates/ckeditor/_source/core/ckeditor_basic.js +242 -0
- data/lib/generators/templates/ckeditor/_source/core/command.js +73 -0
- data/lib/generators/templates/ckeditor/_source/core/commanddefinition.js +102 -0
- data/lib/generators/templates/ckeditor/_source/core/config.js +319 -0
- data/lib/generators/templates/ckeditor/_source/core/dataprocessor.js +66 -0
- data/lib/generators/templates/ckeditor/_source/core/dom.js +21 -0
- data/lib/generators/templates/ckeditor/_source/core/dom/comment.js +32 -0
- data/lib/generators/templates/ckeditor/_source/core/dom/document.js +224 -0
- data/lib/generators/templates/ckeditor/_source/core/dom/documentfragment.js +49 -0
- data/lib/generators/templates/ckeditor/_source/core/dom/domobject.js +246 -0
- data/lib/generators/templates/ckeditor/_source/core/dom/element.js +1441 -0
- data/lib/generators/templates/ckeditor/_source/core/dom/elementpath.js +104 -0
- data/lib/generators/templates/ckeditor/_source/core/dom/event.js +142 -0
- data/lib/generators/templates/ckeditor/_source/core/dom/node.js +662 -0
- data/lib/generators/templates/ckeditor/_source/core/dom/nodelist.js +23 -0
- data/lib/generators/templates/ckeditor/_source/core/dom/range.js +1836 -0
- data/lib/generators/templates/ckeditor/_source/core/dom/text.js +123 -0
- data/lib/generators/templates/ckeditor/_source/core/dom/walker.js +451 -0
- data/lib/generators/templates/ckeditor/_source/core/dom/window.js +96 -0
- data/lib/generators/templates/ckeditor/_source/core/dtd.js +233 -0
- data/lib/generators/templates/ckeditor/_source/core/editor.js +756 -0
- data/lib/generators/templates/ckeditor/_source/core/editor_basic.js +182 -0
- data/lib/generators/templates/ckeditor/_source/core/env.js +222 -0
- data/lib/generators/templates/ckeditor/_source/core/event.js +336 -0
- data/lib/generators/templates/ckeditor/_source/core/eventInfo.js +120 -0
- data/lib/generators/templates/ckeditor/_source/core/focusmanager.js +137 -0
- data/lib/generators/templates/ckeditor/_source/core/htmlparser.js +212 -0
- data/lib/generators/templates/ckeditor/_source/core/htmlparser/basicwriter.js +145 -0
- data/lib/generators/templates/ckeditor/_source/core/htmlparser/cdata.js +43 -0
- data/lib/generators/templates/ckeditor/_source/core/htmlparser/comment.js +60 -0
- data/lib/generators/templates/ckeditor/_source/core/htmlparser/element.js +240 -0
- data/lib/generators/templates/ckeditor/_source/core/htmlparser/filter.js +262 -0
- data/lib/generators/templates/ckeditor/_source/core/htmlparser/fragment.js +496 -0
- data/lib/generators/templates/ckeditor/_source/core/htmlparser/text.js +55 -0
- data/lib/generators/templates/ckeditor/_source/core/imagecacher.js +59 -0
- data/lib/generators/templates/ckeditor/_source/core/lang.js +152 -0
- data/lib/generators/templates/ckeditor/_source/core/loader.js +242 -0
- data/lib/generators/templates/ckeditor/_source/core/plugindefinition.js +66 -0
- data/lib/generators/templates/ckeditor/_source/core/plugins.js +85 -0
- data/lib/generators/templates/ckeditor/_source/core/resourcemanager.js +238 -0
- data/lib/generators/templates/ckeditor/_source/core/scriptloader.js +198 -0
- data/lib/generators/templates/ckeditor/_source/core/skins.js +204 -0
- data/lib/generators/templates/ckeditor/_source/core/themes.js +19 -0
- data/lib/generators/templates/ckeditor/_source/core/tools.js +698 -0
- data/lib/generators/templates/ckeditor/_source/core/ui.js +116 -0
- data/lib/generators/templates/ckeditor/_source/core/xml.js +165 -0
- data/lib/generators/templates/ckeditor/_source/lang/_languages.js +83 -0
- data/lib/generators/templates/ckeditor/_source/lang/_translationstatus.txt +60 -0
- data/lib/generators/templates/ckeditor/_source/lang/af.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/ar.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/bg.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/bn.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/bs.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/ca.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/cs.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/cy.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/da.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/de.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/el.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/en-au.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/en-ca.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/en-gb.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/en.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/eo.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/es.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/et.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/eu.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/fa.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/fi.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/fo.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/fr-ca.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/fr.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/gl.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/gu.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/he.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/hi.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/hr.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/hu.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/is.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/it.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/ja.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/km.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/ko.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/lt.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/lv.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/mn.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/ms.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/nb.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/nl.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/no.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/pl.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/pt-br.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/pt.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/ro.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/ru.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/sk.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/sl.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/sr-latn.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/sr.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/sv.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/th.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/tr.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/uk.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/vi.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/zh-cn.js +708 -0
- data/lib/generators/templates/ckeditor/_source/lang/zh.js +708 -0
- data/lib/generators/templates/ckeditor/_source/plugins/a11yhelp/dialogs/a11yhelp.js +211 -0
- data/lib/generators/templates/ckeditor/_source/plugins/a11yhelp/lang/en.js +108 -0
- data/lib/generators/templates/ckeditor/_source/plugins/a11yhelp/plugin.js +46 -0
- data/lib/generators/templates/ckeditor/_source/plugins/about/dialogs/about.js +73 -0
- data/lib/generators/templates/ckeditor/_source/plugins/about/dialogs/logo_ckeditor.png +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/about/plugin.js +23 -0
- data/lib/generators/templates/ckeditor/_source/plugins/attachment/dialogs/attachment.js +384 -0
- data/lib/generators/templates/ckeditor/_source/plugins/attachment/images/attachment.png +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/attachment/lang/en.js +10 -0
- data/lib/generators/templates/ckeditor/_source/plugins/attachment/lang/ru.js +10 -0
- data/lib/generators/templates/ckeditor/_source/plugins/attachment/lang/uk.js +10 -0
- data/lib/generators/templates/ckeditor/_source/plugins/attachment/plugin.js +44 -0
- data/lib/generators/templates/ckeditor/_source/plugins/basicstyles/plugin.js +101 -0
- data/lib/generators/templates/ckeditor/_source/plugins/blockquote/plugin.js +301 -0
- data/lib/generators/templates/ckeditor/_source/plugins/button/plugin.js +272 -0
- data/lib/generators/templates/ckeditor/_source/plugins/clipboard/dialogs/paste.js +186 -0
- data/lib/generators/templates/ckeditor/_source/plugins/clipboard/plugin.js +379 -0
- data/lib/generators/templates/ckeditor/_source/plugins/colorbutton/plugin.js +247 -0
- data/lib/generators/templates/ckeditor/_source/plugins/colordialog/dialogs/colordialog.js +191 -0
- data/lib/generators/templates/ckeditor/_source/plugins/colordialog/plugin.js +13 -0
- data/lib/generators/templates/ckeditor/_source/plugins/contextmenu/plugin.js +274 -0
- data/lib/generators/templates/ckeditor/_source/plugins/dialog/dialogDefinition.js +315 -0
- data/lib/generators/templates/ckeditor/_source/plugins/dialog/plugin.js +2913 -0
- data/lib/generators/templates/ckeditor/_source/plugins/dialogui/plugin.js +1408 -0
- data/lib/generators/templates/ckeditor/_source/plugins/div/dialogs/div.js +529 -0
- data/lib/generators/templates/ckeditor/_source/plugins/div/plugin.js +121 -0
- data/lib/generators/templates/ckeditor/_source/plugins/domiterator/plugin.js +355 -0
- data/lib/generators/templates/ckeditor/_source/plugins/editingblock/plugin.js +224 -0
- data/lib/generators/templates/ckeditor/_source/plugins/elementspath/plugin.js +203 -0
- data/lib/generators/templates/ckeditor/_source/plugins/embed/dialogs/embed.js +65 -0
- data/lib/generators/templates/ckeditor/_source/plugins/embed/images/embed.png +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/embed/lang/en.js +9 -0
- data/lib/generators/templates/ckeditor/_source/plugins/embed/lang/ru.js +9 -0
- data/lib/generators/templates/ckeditor/_source/plugins/embed/lang/uk.js +9 -0
- data/lib/generators/templates/ckeditor/_source/plugins/embed/plugin.js +43 -0
- data/lib/generators/templates/ckeditor/_source/plugins/enterkey/plugin.js +339 -0
- data/lib/generators/templates/ckeditor/_source/plugins/entities/plugin.js +200 -0
- data/lib/generators/templates/ckeditor/_source/plugins/fakeobjects/plugin.js +120 -0
- data/lib/generators/templates/ckeditor/_source/plugins/filebrowser/plugin.js +479 -0
- data/lib/generators/templates/ckeditor/_source/plugins/find/dialogs/find.js +867 -0
- data/lib/generators/templates/ckeditor/_source/plugins/find/plugin.js +46 -0
- data/lib/generators/templates/ckeditor/_source/plugins/flash/dialogs/flash.js +698 -0
- data/lib/generators/templates/ckeditor/_source/plugins/flash/images/placeholder.png +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/flash/plugin.js +165 -0
- data/lib/generators/templates/ckeditor/_source/plugins/floatpanel/plugin.js +376 -0
- data/lib/generators/templates/ckeditor/_source/plugins/font/plugin.js +234 -0
- data/lib/generators/templates/ckeditor/_source/plugins/format/plugin.js +193 -0
- data/lib/generators/templates/ckeditor/_source/plugins/forms/dialogs/button.js +135 -0
- data/lib/generators/templates/ckeditor/_source/plugins/forms/dialogs/checkbox.js +155 -0
- data/lib/generators/templates/ckeditor/_source/plugins/forms/dialogs/form.js +177 -0
- data/lib/generators/templates/ckeditor/_source/plugins/forms/dialogs/hiddenfield.js +91 -0
- data/lib/generators/templates/ckeditor/_source/plugins/forms/dialogs/radio.js +135 -0
- data/lib/generators/templates/ckeditor/_source/plugins/forms/dialogs/select.js +556 -0
- data/lib/generators/templates/ckeditor/_source/plugins/forms/dialogs/textarea.js +114 -0
- data/lib/generators/templates/ckeditor/_source/plugins/forms/dialogs/textfield.js +193 -0
- data/lib/generators/templates/ckeditor/_source/plugins/forms/plugin.js +217 -0
- data/lib/generators/templates/ckeditor/_source/plugins/horizontalrule/plugin.js +36 -0
- data/lib/generators/templates/ckeditor/_source/plugins/htmldataprocessor/plugin.js +463 -0
- data/lib/generators/templates/ckeditor/_source/plugins/htmlwriter/plugin.js +314 -0
- data/lib/generators/templates/ckeditor/_source/plugins/iframedialog/plugin.js +136 -0
- data/lib/generators/templates/ckeditor/_source/plugins/image/dialogs/image.js +1380 -0
- data/lib/generators/templates/ckeditor/_source/plugins/image/plugin.js +73 -0
- data/lib/generators/templates/ckeditor/_source/plugins/indent/plugin.js +381 -0
- data/lib/generators/templates/ckeditor/_source/plugins/justify/plugin.js +168 -0
- data/lib/generators/templates/ckeditor/_source/plugins/keystrokes/plugin.js +229 -0
- data/lib/generators/templates/ckeditor/_source/plugins/link/dialogs/anchor.js +99 -0
- data/lib/generators/templates/ckeditor/_source/plugins/link/dialogs/link.js +1413 -0
- data/lib/generators/templates/ckeditor/_source/plugins/link/images/anchor.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/link/plugin.js +219 -0
- data/lib/generators/templates/ckeditor/_source/plugins/list/plugin.js +645 -0
- data/lib/generators/templates/ckeditor/_source/plugins/listblock/plugin.js +257 -0
- data/lib/generators/templates/ckeditor/_source/plugins/maximize/plugin.js +305 -0
- data/lib/generators/templates/ckeditor/_source/plugins/menu/plugin.js +406 -0
- data/lib/generators/templates/ckeditor/_source/plugins/menubutton/plugin.js +94 -0
- data/lib/generators/templates/ckeditor/_source/plugins/newpage/plugin.js +54 -0
- data/lib/generators/templates/ckeditor/_source/plugins/pagebreak/images/pagebreak.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/pagebreak/plugin.js +103 -0
- data/lib/generators/templates/ckeditor/_source/plugins/panel/plugin.js +397 -0
- data/lib/generators/templates/ckeditor/_source/plugins/panelbutton/plugin.js +147 -0
- data/lib/generators/templates/ckeditor/_source/plugins/pastefromword/filter/default.js +1179 -0
- data/lib/generators/templates/ckeditor/_source/plugins/pastefromword/plugin.js +120 -0
- data/lib/generators/templates/ckeditor/_source/plugins/pastetext/dialogs/pastetext.js +77 -0
- data/lib/generators/templates/ckeditor/_source/plugins/pastetext/plugin.js +162 -0
- data/lib/generators/templates/ckeditor/_source/plugins/popup/plugin.js +62 -0
- data/lib/generators/templates/ckeditor/_source/plugins/preview/plugin.js +108 -0
- data/lib/generators/templates/ckeditor/_source/plugins/print/plugin.js +41 -0
- data/lib/generators/templates/ckeditor/_source/plugins/removeformat/plugin.js +132 -0
- data/lib/generators/templates/ckeditor/_source/plugins/resize/plugin.js +117 -0
- data/lib/generators/templates/ckeditor/_source/plugins/richcombo/plugin.js +370 -0
- data/lib/generators/templates/ckeditor/_source/plugins/save/plugin.js +55 -0
- data/lib/generators/templates/ckeditor/_source/plugins/scayt/dialogs/options.js +533 -0
- data/lib/generators/templates/ckeditor/_source/plugins/scayt/dialogs/toolbar.css +71 -0
- data/lib/generators/templates/ckeditor/_source/plugins/scayt/plugin.js +767 -0
- data/lib/generators/templates/ckeditor/_source/plugins/selection/plugin.js +1145 -0
- data/lib/generators/templates/ckeditor/_source/plugins/showblocks/images/block_address.png +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/showblocks/images/block_blockquote.png +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/showblocks/images/block_div.png +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/showblocks/images/block_h1.png +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/showblocks/images/block_h2.png +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/showblocks/images/block_h3.png +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/showblocks/images/block_h4.png +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/showblocks/images/block_h5.png +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/showblocks/images/block_h6.png +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/showblocks/images/block_p.png +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/showblocks/images/block_pre.png +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/showblocks/plugin.js +154 -0
- data/lib/generators/templates/ckeditor/_source/plugins/showborders/plugin.js +167 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/dialogs/smiley.js +216 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/angel_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/angry_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/broken_heart.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/confused_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/cry_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/devil_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/embaressed_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/envelope.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/heart.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/kiss.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/lightbulb.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/omg_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/regular_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/sad_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/shades_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/teeth_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/thumbs_down.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/thumbs_up.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/tounge_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/whatchutalkingabout_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/images/wink_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/smiley/plugin.js +84 -0
- data/lib/generators/templates/ckeditor/_source/plugins/sourcearea/plugin.js +206 -0
- data/lib/generators/templates/ckeditor/_source/plugins/specialchar/dialogs/specialchar.js +403 -0
- data/lib/generators/templates/ckeditor/_source/plugins/specialchar/plugin.js +29 -0
- data/lib/generators/templates/ckeditor/_source/plugins/styles/plugin.js +1442 -0
- data/lib/generators/templates/ckeditor/_source/plugins/styles/styles/default.js +88 -0
- data/lib/generators/templates/ckeditor/_source/plugins/stylescombo/plugin.js +204 -0
- data/lib/generators/templates/ckeditor/_source/plugins/tab/plugin.js +261 -0
- data/lib/generators/templates/ckeditor/_source/plugins/table/dialogs/table.js +591 -0
- data/lib/generators/templates/ckeditor/_source/plugins/table/plugin.js +70 -0
- data/lib/generators/templates/ckeditor/_source/plugins/tabletools/dialogs/tableCell.js +528 -0
- data/lib/generators/templates/ckeditor/_source/plugins/tabletools/plugin.js +1068 -0
- data/lib/generators/templates/ckeditor/_source/plugins/templates/dialogs/templates.js +230 -0
- data/lib/generators/templates/ckeditor/_source/plugins/templates/plugin.js +100 -0
- data/lib/generators/templates/ckeditor/_source/plugins/templates/templates/default.js +94 -0
- data/lib/generators/templates/ckeditor/_source/plugins/templates/templates/images/template1.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/templates/templates/images/template2.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/templates/templates/images/template3.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/toolbar/plugin.js +479 -0
- data/lib/generators/templates/ckeditor/_source/plugins/uicolor/dialogs/uicolor.js +204 -0
- data/lib/generators/templates/ckeditor/_source/plugins/uicolor/lang/en.js +15 -0
- data/lib/generators/templates/ckeditor/_source/plugins/uicolor/plugin.js +37 -0
- data/lib/generators/templates/ckeditor/_source/plugins/uicolor/uicolor.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/uicolor/yui/assets/hue_bg.png +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/uicolor/yui/assets/hue_thumb.png +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/uicolor/yui/assets/picker_mask.png +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/uicolor/yui/assets/picker_thumb.png +0 -0
- data/lib/generators/templates/ckeditor/_source/plugins/uicolor/yui/assets/yui.css +15 -0
- data/lib/generators/templates/ckeditor/_source/plugins/uicolor/yui/yui.js +71 -0
- data/lib/generators/templates/ckeditor/_source/plugins/undo/plugin.js +519 -0
- data/lib/generators/templates/ckeditor/_source/plugins/wsc/dialogs/ciframe.html +49 -0
- data/lib/generators/templates/ckeditor/_source/plugins/wsc/dialogs/tmpFrameset.html +52 -0
- data/lib/generators/templates/ckeditor/_source/plugins/wsc/dialogs/wsc.css +83 -0
- data/lib/generators/templates/ckeditor/_source/plugins/wsc/dialogs/wsc.js +176 -0
- data/lib/generators/templates/ckeditor/_source/plugins/wsc/plugin.js +33 -0
- data/lib/generators/templates/ckeditor/_source/plugins/wysiwygarea/plugin.js +882 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/dialog.css +835 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/editor.css +25 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/elementspath.css +72 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/icons.css +326 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/icons.png +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/images/dialog_sides.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/images/dialog_sides.png +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/images/dialog_sides_rtl.png +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/images/mini.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/images/noimage.png +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/images/sprites.png +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/images/sprites_ie6.png +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/images/toolbar_start.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/mainui.css +183 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/menu.css +197 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/panel.css +216 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/presets.css +49 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/reset.css +78 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/richcombo.css +270 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/skin.js +268 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/templates.css +84 -0
- data/lib/generators/templates/ckeditor/_source/skins/kama/toolbar.css +409 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/dialog.css +738 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/editor.css +25 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/elementspath.css +73 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/icons.css +324 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/icons.png +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/images/dialog_sides.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/images/dialog_sides.png +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/images/dialog_sides_rtl.png +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/images/mini.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/images/noimage.png +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/images/sprites.png +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/images/sprites_ie6.png +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/mainui.css +133 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/menu.css +194 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/panel.css +211 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/presets.css +49 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/reset.css +78 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/richcombo.css +289 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/skin.js +81 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/templates.css +81 -0
- data/lib/generators/templates/ckeditor/_source/skins/office2003/toolbar.css +463 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/dialog.css +753 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/editor.css +25 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/elementspath.css +73 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/icons.css +324 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/icons.png +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/images/dialog_sides.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/images/dialog_sides.png +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/images/dialog_sides_rtl.png +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/images/mini.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/images/noimage.png +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/images/sprites.png +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/images/sprites_ie6.png +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/images/toolbar_start.gif +0 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/mainui.css +142 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/menu.css +196 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/panel.css +211 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/presets.css +50 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/reset.css +78 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/richcombo.css +289 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/skin.js +77 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/templates.css +81 -0
- data/lib/generators/templates/ckeditor/_source/skins/v2/toolbar.css +415 -0
- data/lib/generators/templates/ckeditor/_source/themes/default/theme.js +335 -0
- data/lib/generators/templates/ckeditor/adapters/jquery.js +6 -0
- data/lib/generators/templates/ckeditor/ckeditor.js +124 -0
- data/lib/generators/templates/ckeditor/ckeditor.pack +205 -0
- data/lib/generators/templates/ckeditor/ckeditor_basic.js +8 -0
- data/lib/generators/templates/ckeditor/ckeditor_basic_source.js +20 -0
- data/lib/generators/templates/ckeditor/ckeditor_source.js +25 -0
- data/lib/generators/templates/ckeditor/config.js +42 -0
- data/lib/generators/templates/ckeditor/contents.css +35 -0
- data/lib/generators/templates/ckeditor/css/ckfinder.css +299 -0
- data/lib/generators/templates/ckeditor/css/fck_dialog.css +119 -0
- data/lib/generators/templates/ckeditor/css/fck_editor.css +448 -0
- data/lib/generators/templates/ckeditor/css/swfupload.css +94 -0
- data/lib/generators/templates/ckeditor/images/add.gif +0 -0
- data/lib/generators/templates/ckeditor/images/cancelbutton.gif +0 -0
- data/lib/generators/templates/ckeditor/images/ckfnothumb.gif +0 -0
- data/lib/generators/templates/ckeditor/images/doc.gif +0 -0
- data/lib/generators/templates/ckeditor/images/mp3.gif +0 -0
- data/lib/generators/templates/ckeditor/images/pdf.gif +0 -0
- data/lib/generators/templates/ckeditor/images/rar.gif +0 -0
- data/lib/generators/templates/ckeditor/images/refresh.gif +0 -0
- data/lib/generators/templates/ckeditor/images/select_files.png +0 -0
- data/lib/generators/templates/ckeditor/images/spacer.gif +0 -0
- data/lib/generators/templates/ckeditor/images/swf.gif +0 -0
- data/lib/generators/templates/ckeditor/images/toolbar.start.gif +0 -0
- data/lib/generators/templates/ckeditor/images/xls.gif +0 -0
- data/lib/generators/templates/ckeditor/lang/_languages.js +6 -0
- data/lib/generators/templates/ckeditor/lang/_translationstatus.txt +60 -0
- data/lib/generators/templates/ckeditor/lang/af.js +6 -0
- data/lib/generators/templates/ckeditor/lang/ar.js +6 -0
- data/lib/generators/templates/ckeditor/lang/bg.js +6 -0
- data/lib/generators/templates/ckeditor/lang/bn.js +6 -0
- data/lib/generators/templates/ckeditor/lang/bs.js +6 -0
- data/lib/generators/templates/ckeditor/lang/ca.js +6 -0
- data/lib/generators/templates/ckeditor/lang/cs.js +6 -0
- data/lib/generators/templates/ckeditor/lang/cy.js +6 -0
- data/lib/generators/templates/ckeditor/lang/da.js +6 -0
- data/lib/generators/templates/ckeditor/lang/de.js +6 -0
- data/lib/generators/templates/ckeditor/lang/el.js +6 -0
- data/lib/generators/templates/ckeditor/lang/en-au.js +6 -0
- data/lib/generators/templates/ckeditor/lang/en-ca.js +6 -0
- data/lib/generators/templates/ckeditor/lang/en-gb.js +6 -0
- data/lib/generators/templates/ckeditor/lang/en.js +6 -0
- data/lib/generators/templates/ckeditor/lang/eo.js +6 -0
- data/lib/generators/templates/ckeditor/lang/es.js +6 -0
- data/lib/generators/templates/ckeditor/lang/et.js +6 -0
- data/lib/generators/templates/ckeditor/lang/eu.js +6 -0
- data/lib/generators/templates/ckeditor/lang/fa.js +6 -0
- data/lib/generators/templates/ckeditor/lang/fi.js +6 -0
- data/lib/generators/templates/ckeditor/lang/fo.js +6 -0
- data/lib/generators/templates/ckeditor/lang/fr-ca.js +6 -0
- data/lib/generators/templates/ckeditor/lang/fr.js +6 -0
- data/lib/generators/templates/ckeditor/lang/gl.js +6 -0
- data/lib/generators/templates/ckeditor/lang/gu.js +6 -0
- data/lib/generators/templates/ckeditor/lang/he.js +6 -0
- data/lib/generators/templates/ckeditor/lang/hi.js +6 -0
- data/lib/generators/templates/ckeditor/lang/hr.js +6 -0
- data/lib/generators/templates/ckeditor/lang/hu.js +6 -0
- data/lib/generators/templates/ckeditor/lang/is.js +6 -0
- data/lib/generators/templates/ckeditor/lang/it.js +6 -0
- data/lib/generators/templates/ckeditor/lang/ja.js +6 -0
- data/lib/generators/templates/ckeditor/lang/km.js +6 -0
- data/lib/generators/templates/ckeditor/lang/ko.js +6 -0
- data/lib/generators/templates/ckeditor/lang/lt.js +6 -0
- data/lib/generators/templates/ckeditor/lang/lv.js +6 -0
- data/lib/generators/templates/ckeditor/lang/mn.js +6 -0
- data/lib/generators/templates/ckeditor/lang/ms.js +6 -0
- data/lib/generators/templates/ckeditor/lang/nb.js +6 -0
- data/lib/generators/templates/ckeditor/lang/nl.js +6 -0
- data/lib/generators/templates/ckeditor/lang/no.js +6 -0
- data/lib/generators/templates/ckeditor/lang/pl.js +6 -0
- data/lib/generators/templates/ckeditor/lang/pt-br.js +6 -0
- data/lib/generators/templates/ckeditor/lang/pt.js +6 -0
- data/lib/generators/templates/ckeditor/lang/ro.js +6 -0
- data/lib/generators/templates/ckeditor/lang/ru.js +6 -0
- data/lib/generators/templates/ckeditor/lang/sk.js +6 -0
- data/lib/generators/templates/ckeditor/lang/sl.js +6 -0
- data/lib/generators/templates/ckeditor/lang/sr-latn.js +6 -0
- data/lib/generators/templates/ckeditor/lang/sr.js +6 -0
- data/lib/generators/templates/ckeditor/lang/sv.js +6 -0
- data/lib/generators/templates/ckeditor/lang/th.js +6 -0
- data/lib/generators/templates/ckeditor/lang/tr.js +6 -0
- data/lib/generators/templates/ckeditor/lang/uk.js +6 -0
- data/lib/generators/templates/ckeditor/lang/vi.js +6 -0
- data/lib/generators/templates/ckeditor/lang/zh-cn.js +6 -0
- data/lib/generators/templates/ckeditor/lang/zh.js +6 -0
- data/lib/generators/templates/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js +7 -0
- data/lib/generators/templates/ckeditor/plugins/a11yhelp/lang/en.js +6 -0
- data/lib/generators/templates/ckeditor/plugins/about/dialogs/about.js +6 -0
- data/lib/generators/templates/ckeditor/plugins/about/dialogs/logo_ckeditor.png +0 -0
- data/lib/generators/templates/ckeditor/plugins/attachment/dialogs/attachment.js +1 -0
- data/lib/generators/templates/ckeditor/plugins/attachment/images/attachment.png +0 -0
- data/lib/generators/templates/ckeditor/plugins/attachment/lang/en.js +1 -0
- data/lib/generators/templates/ckeditor/plugins/attachment/lang/ru.js +1 -0
- data/lib/generators/templates/ckeditor/plugins/attachment/lang/uk.js +1 -0
- data/lib/generators/templates/ckeditor/plugins/attachment/plugin.js +1 -0
- data/lib/generators/templates/ckeditor/plugins/clipboard/dialogs/paste.js +7 -0
- data/lib/generators/templates/ckeditor/plugins/colordialog/dialogs/colordialog.js +6 -0
- data/lib/generators/templates/ckeditor/plugins/dialog/dialogDefinition.js +4 -0
- data/lib/generators/templates/ckeditor/plugins/div/dialogs/div.js +7 -0
- data/lib/generators/templates/ckeditor/plugins/embed/dialogs/embed.js +1 -0
- data/lib/generators/templates/ckeditor/plugins/embed/images/embed.png +0 -0
- data/lib/generators/templates/ckeditor/plugins/embed/lang/en.js +1 -0
- data/lib/generators/templates/ckeditor/plugins/embed/lang/ru.js +1 -0
- data/lib/generators/templates/ckeditor/plugins/embed/lang/uk.js +1 -0
- data/lib/generators/templates/ckeditor/plugins/embed/plugin.js +1 -0
- data/lib/generators/templates/ckeditor/plugins/find/dialogs/find.js +9 -0
- data/lib/generators/templates/ckeditor/plugins/flash/dialogs/flash.js +9 -0
- data/lib/generators/templates/ckeditor/plugins/flash/images/placeholder.png +0 -0
- data/lib/generators/templates/ckeditor/plugins/forms/dialogs/button.js +6 -0
- data/lib/generators/templates/ckeditor/plugins/forms/dialogs/checkbox.js +6 -0
- data/lib/generators/templates/ckeditor/plugins/forms/dialogs/form.js +6 -0
- data/lib/generators/templates/ckeditor/plugins/forms/dialogs/hiddenfield.js +6 -0
- data/lib/generators/templates/ckeditor/plugins/forms/dialogs/radio.js +6 -0
- data/lib/generators/templates/ckeditor/plugins/forms/dialogs/select.js +9 -0
- data/lib/generators/templates/ckeditor/plugins/forms/dialogs/textarea.js +6 -0
- data/lib/generators/templates/ckeditor/plugins/forms/dialogs/textfield.js +6 -0
- data/lib/generators/templates/ckeditor/plugins/iframedialog/plugin.js +6 -0
- data/lib/generators/templates/ckeditor/plugins/image/dialogs/image.js +13 -0
- data/lib/generators/templates/ckeditor/plugins/link/dialogs/anchor.js +6 -0
- data/lib/generators/templates/ckeditor/plugins/link/dialogs/link.js +11 -0
- data/lib/generators/templates/ckeditor/plugins/link/images/anchor.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/pagebreak/images/pagebreak.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/pastefromword/filter/default.js +10 -0
- data/lib/generators/templates/ckeditor/plugins/pastetext/dialogs/pastetext.js +6 -0
- data/lib/generators/templates/ckeditor/plugins/scayt/dialogs/options.js +8 -0
- data/lib/generators/templates/ckeditor/plugins/scayt/dialogs/toolbar.css +6 -0
- data/lib/generators/templates/ckeditor/plugins/showblocks/images/block_address.png +0 -0
- data/lib/generators/templates/ckeditor/plugins/showblocks/images/block_blockquote.png +0 -0
- data/lib/generators/templates/ckeditor/plugins/showblocks/images/block_div.png +0 -0
- data/lib/generators/templates/ckeditor/plugins/showblocks/images/block_h1.png +0 -0
- data/lib/generators/templates/ckeditor/plugins/showblocks/images/block_h2.png +0 -0
- data/lib/generators/templates/ckeditor/plugins/showblocks/images/block_h3.png +0 -0
- data/lib/generators/templates/ckeditor/plugins/showblocks/images/block_h4.png +0 -0
- data/lib/generators/templates/ckeditor/plugins/showblocks/images/block_h5.png +0 -0
- data/lib/generators/templates/ckeditor/plugins/showblocks/images/block_h6.png +0 -0
- data/lib/generators/templates/ckeditor/plugins/showblocks/images/block_p.png +0 -0
- data/lib/generators/templates/ckeditor/plugins/showblocks/images/block_pre.png +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/dialogs/smiley.js +7 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/angel_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/angry_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/broken_heart.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/confused_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/cry_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/devil_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/embaressed_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/envelope.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/heart.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/kiss.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/lightbulb.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/omg_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/regular_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/sad_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/shades_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/teeth_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/thumbs_down.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/thumbs_up.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/tounge_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/smiley/images/wink_smile.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/specialchar/dialogs/specialchar.js +7 -0
- data/lib/generators/templates/ckeditor/plugins/styles/styles/default.js +6 -0
- data/lib/generators/templates/ckeditor/plugins/table/dialogs/table.js +9 -0
- data/lib/generators/templates/ckeditor/plugins/tabletools/dialogs/tableCell.js +8 -0
- data/lib/generators/templates/ckeditor/plugins/templates/dialogs/templates.js +7 -0
- data/lib/generators/templates/ckeditor/plugins/templates/templates/default.js +6 -0
- data/lib/generators/templates/ckeditor/plugins/templates/templates/images/template1.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/templates/templates/images/template2.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/templates/templates/images/template3.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/uicolor/dialogs/uicolor.js +7 -0
- data/lib/generators/templates/ckeditor/plugins/uicolor/lang/en.js +6 -0
- data/lib/generators/templates/ckeditor/plugins/uicolor/plugin.js +6 -0
- data/lib/generators/templates/ckeditor/plugins/uicolor/uicolor.gif +0 -0
- data/lib/generators/templates/ckeditor/plugins/uicolor/yui/assets/hue_bg.png +0 -0
- data/lib/generators/templates/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png +0 -0
- data/lib/generators/templates/ckeditor/plugins/uicolor/yui/assets/picker_mask.png +0 -0
- data/lib/generators/templates/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png +0 -0
- data/lib/generators/templates/ckeditor/plugins/uicolor/yui/assets/yui.css +6 -0
- data/lib/generators/templates/ckeditor/plugins/uicolor/yui/yui.js +76 -0
- data/lib/generators/templates/ckeditor/plugins/wsc/dialogs/ciframe.html +49 -0
- data/lib/generators/templates/ckeditor/plugins/wsc/dialogs/tmpFrameset.html +52 -0
- data/lib/generators/templates/ckeditor/plugins/wsc/dialogs/wsc.css +6 -0
- data/lib/generators/templates/ckeditor/plugins/wsc/dialogs/wsc.js +7 -0
- data/lib/generators/templates/ckeditor/skins/kama/dialog.css +9 -0
- data/lib/generators/templates/ckeditor/skins/kama/editor.css +12 -0
- data/lib/generators/templates/ckeditor/skins/kama/icons.png +0 -0
- data/lib/generators/templates/ckeditor/skins/kama/images/dialog_sides.gif +0 -0
- data/lib/generators/templates/ckeditor/skins/kama/images/dialog_sides.png +0 -0
- data/lib/generators/templates/ckeditor/skins/kama/images/dialog_sides_rtl.png +0 -0
- data/lib/generators/templates/ckeditor/skins/kama/images/mini.gif +0 -0
- data/lib/generators/templates/ckeditor/skins/kama/images/noimage.png +0 -0
- data/lib/generators/templates/ckeditor/skins/kama/images/sprites.png +0 -0
- data/lib/generators/templates/ckeditor/skins/kama/images/sprites_ie6.png +0 -0
- data/lib/generators/templates/ckeditor/skins/kama/images/toolbar_start.gif +0 -0
- data/lib/generators/templates/ckeditor/skins/kama/skin.js +7 -0
- data/lib/generators/templates/ckeditor/skins/kama/templates.css +6 -0
- data/lib/generators/templates/ckeditor/skins/office2003/dialog.css +9 -0
- data/lib/generators/templates/ckeditor/skins/office2003/editor.css +13 -0
- data/lib/generators/templates/ckeditor/skins/office2003/icons.png +0 -0
- data/lib/generators/templates/ckeditor/skins/office2003/images/dialog_sides.gif +0 -0
- data/lib/generators/templates/ckeditor/skins/office2003/images/dialog_sides.png +0 -0
- data/lib/generators/templates/ckeditor/skins/office2003/images/dialog_sides_rtl.png +0 -0
- data/lib/generators/templates/ckeditor/skins/office2003/images/mini.gif +0 -0
- data/lib/generators/templates/ckeditor/skins/office2003/images/noimage.png +0 -0
- data/lib/generators/templates/ckeditor/skins/office2003/images/sprites.png +0 -0
- data/lib/generators/templates/ckeditor/skins/office2003/images/sprites_ie6.png +0 -0
- data/lib/generators/templates/ckeditor/skins/office2003/skin.js +6 -0
- data/lib/generators/templates/ckeditor/skins/office2003/templates.css +6 -0
- data/lib/generators/templates/ckeditor/skins/v2/dialog.css +8 -0
- data/lib/generators/templates/ckeditor/skins/v2/editor.css +12 -0
- data/lib/generators/templates/ckeditor/skins/v2/icons.png +0 -0
- data/lib/generators/templates/ckeditor/skins/v2/images/dialog_sides.gif +0 -0
- data/lib/generators/templates/ckeditor/skins/v2/images/dialog_sides.png +0 -0
- data/lib/generators/templates/ckeditor/skins/v2/images/dialog_sides_rtl.png +0 -0
- data/lib/generators/templates/ckeditor/skins/v2/images/mini.gif +0 -0
- data/lib/generators/templates/ckeditor/skins/v2/images/noimage.png +0 -0
- data/lib/generators/templates/ckeditor/skins/v2/images/sprites.png +0 -0
- data/lib/generators/templates/ckeditor/skins/v2/images/sprites_ie6.png +0 -0
- data/lib/generators/templates/ckeditor/skins/v2/images/toolbar_start.gif +0 -0
- data/lib/generators/templates/ckeditor/skins/v2/skin.js +6 -0
- data/lib/generators/templates/ckeditor/skins/v2/templates.css +6 -0
- data/lib/generators/templates/ckeditor/swfupload/fileprogress.js +290 -0
- data/lib/generators/templates/ckeditor/swfupload/handlers.js +170 -0
- data/lib/generators/templates/ckeditor/swfupload/mootools-1.2.3-core-yc.js +356 -0
- data/lib/generators/templates/ckeditor/swfupload/querystring.js +40 -0
- data/lib/generators/templates/ckeditor/swfupload/swfupload.js +980 -0
- data/lib/generators/templates/ckeditor/swfupload/swfupload.queue.js +98 -0
- data/lib/generators/templates/ckeditor/swfupload/swfupload.swf +0 -0
- data/lib/generators/templates/ckeditor/swfupload/swfupload.swfobject.js +111 -0
- data/lib/generators/templates/ckeditor/themes/default/theme.js +8 -0
- data/lib/tasks/ckeditor_tasks.rake +3 -0
- metadata +694 -0
@@ -0,0 +1,708 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2003-2010, 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
|
8
|
+
* Chinese Simplified language.
|
9
|
+
*/
|
10
|
+
|
11
|
+
/**#@+
|
12
|
+
@type String
|
13
|
+
@example
|
14
|
+
*/
|
15
|
+
|
16
|
+
/**
|
17
|
+
* Constains the dictionary of language entries.
|
18
|
+
* @namespace
|
19
|
+
*/
|
20
|
+
CKEDITOR.lang['zh-cn'] =
|
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.', // MISSING
|
35
|
+
|
36
|
+
// ARIA descriptions.
|
37
|
+
toolbar : 'Toolbar', // MISSING
|
38
|
+
editor : 'Rich Text Editor', // MISSING
|
39
|
+
|
40
|
+
// Toolbar buttons without dialogs.
|
41
|
+
source : '源码',
|
42
|
+
newPage : '新建',
|
43
|
+
save : '保存',
|
44
|
+
preview : '预览',
|
45
|
+
cut : '剪切',
|
46
|
+
copy : '复制',
|
47
|
+
paste : '粘贴',
|
48
|
+
print : '打印',
|
49
|
+
underline : '下划线',
|
50
|
+
bold : '加粗',
|
51
|
+
italic : '倾斜',
|
52
|
+
selectAll : '全选',
|
53
|
+
removeFormat : '清除格式',
|
54
|
+
strike : '删除线',
|
55
|
+
subscript : '下标',
|
56
|
+
superscript : '上标',
|
57
|
+
horizontalrule : '插入水平线',
|
58
|
+
pagebreak : '插入分页符',
|
59
|
+
unlink : '取消超链接',
|
60
|
+
undo : '撤消',
|
61
|
+
redo : '重做',
|
62
|
+
|
63
|
+
// Common messages and labels.
|
64
|
+
common :
|
65
|
+
{
|
66
|
+
browseServer : '浏览服务器',
|
67
|
+
url : '源文件',
|
68
|
+
protocol : '协议',
|
69
|
+
upload : '上传',
|
70
|
+
uploadSubmit : '发送到服务器上',
|
71
|
+
image : '图象',
|
72
|
+
flash : 'Flash',
|
73
|
+
form : '表单',
|
74
|
+
checkbox : '复选框',
|
75
|
+
radio : '单选按钮',
|
76
|
+
textField : '单行文本',
|
77
|
+
textarea : '多行文本',
|
78
|
+
hiddenField : '隐藏域',
|
79
|
+
button : '按钮',
|
80
|
+
select : '列表/菜单',
|
81
|
+
imageButton : '图像域',
|
82
|
+
notSet : '<没有设置>',
|
83
|
+
id : 'ID',
|
84
|
+
name : '名称',
|
85
|
+
langDir : '语言方向',
|
86
|
+
langDirLtr : '从左到右 (LTR)',
|
87
|
+
langDirRtl : '从右到左 (RTL)',
|
88
|
+
langCode : '语言代码',
|
89
|
+
longDescr : '详细说明地址',
|
90
|
+
cssClass : '样式类名称',
|
91
|
+
advisoryTitle : '标题',
|
92
|
+
cssStyle : '行内样式',
|
93
|
+
ok : '确定',
|
94
|
+
cancel : '取消',
|
95
|
+
close : 'Close', // MISSING
|
96
|
+
preview : 'Preview', // MISSING
|
97
|
+
generalTab : '常规',
|
98
|
+
advancedTab : '高级',
|
99
|
+
validateNumberFailed : '需要输入数字格式',
|
100
|
+
confirmNewPage : '当前文档内容未保存,是否确认新建文档?',
|
101
|
+
confirmCancel : '部分选项尚未保存,是否确认关闭对话框?',
|
102
|
+
options : 'Options', // MISSING
|
103
|
+
target : 'Target', // MISSING
|
104
|
+
targetNew : 'New Window (_blank)', // MISSING
|
105
|
+
targetTop : 'Topmost Window (_top)', // MISSING
|
106
|
+
targetSelf : 'Same Window (_self)', // MISSING
|
107
|
+
targetParent : 'Parent Window (_parent)', // MISSING
|
108
|
+
|
109
|
+
// Put the voice-only part of the label in the span.
|
110
|
+
unavailable : '%1<span class="cke_accessibility">, 不可用</span>'
|
111
|
+
},
|
112
|
+
|
113
|
+
contextmenu :
|
114
|
+
{
|
115
|
+
options : 'Context Menu Options' // MISSING
|
116
|
+
},
|
117
|
+
|
118
|
+
// Special char dialog.
|
119
|
+
specialChar :
|
120
|
+
{
|
121
|
+
toolbar : '插入特殊符号',
|
122
|
+
title : '选择特殊符号',
|
123
|
+
options : 'Special Character Options' // MISSING
|
124
|
+
},
|
125
|
+
|
126
|
+
// Link dialog.
|
127
|
+
link :
|
128
|
+
{
|
129
|
+
toolbar : '插入/编辑超链接',
|
130
|
+
other : '<其他>',
|
131
|
+
menu : '编辑超链接',
|
132
|
+
title : '超链接',
|
133
|
+
info : '超链接信息',
|
134
|
+
target : '目标',
|
135
|
+
upload : '上传',
|
136
|
+
advanced : '高级',
|
137
|
+
type : '超链接类型',
|
138
|
+
toUrl : 'URL', // MISSING
|
139
|
+
toAnchor : '页内锚点链接',
|
140
|
+
toEmail : '电子邮件',
|
141
|
+
targetFrame : '<框架>',
|
142
|
+
targetPopup : '<弹出窗口>',
|
143
|
+
targetFrameName : '目标框架名称',
|
144
|
+
targetPopupName : '弹出窗口名称',
|
145
|
+
popupFeatures : '弹出窗口属性',
|
146
|
+
popupResizable : '可缩放',
|
147
|
+
popupStatusBar : '状态栏',
|
148
|
+
popupLocationBar: '地址栏',
|
149
|
+
popupToolbar : '工具栏',
|
150
|
+
popupMenuBar : '菜单栏',
|
151
|
+
popupFullScreen : '全屏 (IE)',
|
152
|
+
popupScrollBars : '滚动条',
|
153
|
+
popupDependent : '依附 (NS)',
|
154
|
+
popupWidth : '宽',
|
155
|
+
popupLeft : '左',
|
156
|
+
popupHeight : '高',
|
157
|
+
popupTop : '右',
|
158
|
+
id : 'ID',
|
159
|
+
langDir : '语言方向',
|
160
|
+
langDirLTR : '从左到右 (LTR)',
|
161
|
+
langDirRTL : '从右到左 (RTL)',
|
162
|
+
acccessKey : '访问键',
|
163
|
+
name : '名称',
|
164
|
+
langCode : '语言方向',
|
165
|
+
tabIndex : 'Tab 键次序',
|
166
|
+
advisoryTitle : '标题',
|
167
|
+
advisoryContentType : '内容类型',
|
168
|
+
cssClasses : '样式类名称',
|
169
|
+
charset : '字符编码',
|
170
|
+
styles : '行内样式',
|
171
|
+
selectAnchor : '选择一个锚点',
|
172
|
+
anchorName : '按锚点名称',
|
173
|
+
anchorId : '按锚点 ID',
|
174
|
+
emailAddress : '地址',
|
175
|
+
emailSubject : '主题',
|
176
|
+
emailBody : '内容',
|
177
|
+
noAnchors : '(此文档没有可用的锚点)',
|
178
|
+
noUrl : '请输入超链接地址',
|
179
|
+
noEmail : '请输入电子邮件地址'
|
180
|
+
},
|
181
|
+
|
182
|
+
// Anchor dialog
|
183
|
+
anchor :
|
184
|
+
{
|
185
|
+
toolbar : '插入/编辑锚点链接',
|
186
|
+
menu : '锚点链接属性',
|
187
|
+
title : '锚点链接属性',
|
188
|
+
name : '锚点名称',
|
189
|
+
errorName : '请输入锚点名称'
|
190
|
+
},
|
191
|
+
|
192
|
+
// Find And Replace Dialog
|
193
|
+
findAndReplace :
|
194
|
+
{
|
195
|
+
title : '查找和替换',
|
196
|
+
find : '查找',
|
197
|
+
replace : '替换',
|
198
|
+
findWhat : '查找:',
|
199
|
+
replaceWith : '替换:',
|
200
|
+
notFoundMsg : '指定文本没有找到',
|
201
|
+
matchCase : '区分大小写',
|
202
|
+
matchWord : '全字匹配',
|
203
|
+
matchCyclic : '循环匹配',
|
204
|
+
replaceAll : '全部替换',
|
205
|
+
replaceSuccessMsg : '共完成 %1 处替换.'
|
206
|
+
},
|
207
|
+
|
208
|
+
// Table Dialog
|
209
|
+
table :
|
210
|
+
{
|
211
|
+
toolbar : '表格',
|
212
|
+
title : '表格属性',
|
213
|
+
menu : '表格属性',
|
214
|
+
deleteTable : '删除表格',
|
215
|
+
rows : '行数',
|
216
|
+
columns : '列数',
|
217
|
+
border : '边框',
|
218
|
+
align : '对齐',
|
219
|
+
alignLeft : '左对齐',
|
220
|
+
alignCenter : '居中',
|
221
|
+
alignRight : '右对齐',
|
222
|
+
width : '宽度',
|
223
|
+
widthPx : '像素',
|
224
|
+
widthPc : '百分比',
|
225
|
+
widthUnit : 'width unit', // MISSING
|
226
|
+
height : '高度',
|
227
|
+
cellSpace : '间距',
|
228
|
+
cellPad : '边距',
|
229
|
+
caption : '标题',
|
230
|
+
summary : '摘要',
|
231
|
+
headers : '标题单元格',
|
232
|
+
headersNone : '无',
|
233
|
+
headersColumn : '第一列',
|
234
|
+
headersRow : '第一行',
|
235
|
+
headersBoth : '第一列和第一行',
|
236
|
+
invalidRows : '指定的列数必须大于零',
|
237
|
+
invalidCols : '指定的行数必须大于零',
|
238
|
+
invalidBorder : '边框粗细必须为数字格式',
|
239
|
+
invalidWidth : '表格宽度必须为数字格式',
|
240
|
+
invalidHeight : '表格高度必须为数字格式',
|
241
|
+
invalidCellSpacing : '单元格间距必须为数字格式',
|
242
|
+
invalidCellPadding : '单元格填充必须为数字格式',
|
243
|
+
|
244
|
+
cell :
|
245
|
+
{
|
246
|
+
menu : '单元格',
|
247
|
+
insertBefore : '在左侧插入单元格',
|
248
|
+
insertAfter : '在右侧插入单元格',
|
249
|
+
deleteCell : '删除单元格',
|
250
|
+
merge : '合并单元格',
|
251
|
+
mergeRight : '向右合并单元格',
|
252
|
+
mergeDown : '向下合并单元格',
|
253
|
+
splitHorizontal : '水平拆分单元格',
|
254
|
+
splitVertical : '垂直拆分单元格',
|
255
|
+
title : '单元格属性',
|
256
|
+
cellType : '单元格类型',
|
257
|
+
rowSpan : '行跨度',
|
258
|
+
colSpan : '列跨度',
|
259
|
+
wordWrap : '自动换行',
|
260
|
+
hAlign : '水平对齐',
|
261
|
+
vAlign : '垂直对齐',
|
262
|
+
alignTop : '顶对齐',
|
263
|
+
alignMiddle : '中对齐',
|
264
|
+
alignBottom : '底对齐',
|
265
|
+
alignBaseline : '基线对齐',
|
266
|
+
bgColor : '背景颜色',
|
267
|
+
borderColor : '边框颜色',
|
268
|
+
data : '数据',
|
269
|
+
header : '表头',
|
270
|
+
yes : '是',
|
271
|
+
no : '否',
|
272
|
+
invalidWidth : '单元格宽度必须为数字格式',
|
273
|
+
invalidHeight : '单元格高度必须为数字格式',
|
274
|
+
invalidRowSpan : '行跨度必须为整数格式',
|
275
|
+
invalidColSpan : '列跨度必须为整数格式',
|
276
|
+
chooseColor : 'Choose' // MISSING
|
277
|
+
},
|
278
|
+
|
279
|
+
row :
|
280
|
+
{
|
281
|
+
menu : '行',
|
282
|
+
insertBefore : '在上方插入行',
|
283
|
+
insertAfter : '在下方插入行',
|
284
|
+
deleteRow : '删除行'
|
285
|
+
},
|
286
|
+
|
287
|
+
column :
|
288
|
+
{
|
289
|
+
menu : '列',
|
290
|
+
insertBefore : '在左侧插入列',
|
291
|
+
insertAfter : '在右侧插入列',
|
292
|
+
deleteColumn : '删除列'
|
293
|
+
}
|
294
|
+
},
|
295
|
+
|
296
|
+
// Button Dialog.
|
297
|
+
button :
|
298
|
+
{
|
299
|
+
title : '按钮属性',
|
300
|
+
text : '标签(值)',
|
301
|
+
type : '类型',
|
302
|
+
typeBtn : '按钮',
|
303
|
+
typeSbm : '提交',
|
304
|
+
typeRst : '重设'
|
305
|
+
},
|
306
|
+
|
307
|
+
// Checkbox and Radio Button Dialogs.
|
308
|
+
checkboxAndRadio :
|
309
|
+
{
|
310
|
+
checkboxTitle : '复选框属性',
|
311
|
+
radioTitle : '单选按钮属性',
|
312
|
+
value : '选定值',
|
313
|
+
selected : '已勾选'
|
314
|
+
},
|
315
|
+
|
316
|
+
// Form Dialog.
|
317
|
+
form :
|
318
|
+
{
|
319
|
+
title : '表单属性',
|
320
|
+
menu : '表单属性',
|
321
|
+
action : '动作',
|
322
|
+
method : '方法',
|
323
|
+
encoding : '表单编码'
|
324
|
+
},
|
325
|
+
|
326
|
+
// Select Field Dialog.
|
327
|
+
select :
|
328
|
+
{
|
329
|
+
title : '菜单/列表属性',
|
330
|
+
selectInfo : '信息',
|
331
|
+
opAvail : '列表值',
|
332
|
+
value : '值',
|
333
|
+
size : '高度',
|
334
|
+
lines : '行',
|
335
|
+
chkMulti : '允许多选',
|
336
|
+
opText : '标签',
|
337
|
+
opValue : '选定',
|
338
|
+
btnAdd : '新增',
|
339
|
+
btnModify : '修改',
|
340
|
+
btnUp : '上移',
|
341
|
+
btnDown : '下移',
|
342
|
+
btnSetValue : '设为初始化时选定',
|
343
|
+
btnDelete : '删除'
|
344
|
+
},
|
345
|
+
|
346
|
+
// Textarea Dialog.
|
347
|
+
textarea :
|
348
|
+
{
|
349
|
+
title : '多行文本属性',
|
350
|
+
cols : '字符宽度',
|
351
|
+
rows : '行数'
|
352
|
+
},
|
353
|
+
|
354
|
+
// Text Field Dialog.
|
355
|
+
textfield :
|
356
|
+
{
|
357
|
+
title : '单行文本属性',
|
358
|
+
name : '名称',
|
359
|
+
value : '初始值',
|
360
|
+
charWidth : '字符宽度',
|
361
|
+
maxChars : '最多字符数',
|
362
|
+
type : '类型',
|
363
|
+
typeText : '文本',
|
364
|
+
typePass : '密码'
|
365
|
+
},
|
366
|
+
|
367
|
+
// Hidden Field Dialog.
|
368
|
+
hidden :
|
369
|
+
{
|
370
|
+
title : '隐藏域属性',
|
371
|
+
name : '名称',
|
372
|
+
value : '初始值'
|
373
|
+
},
|
374
|
+
|
375
|
+
// Image Dialog.
|
376
|
+
image :
|
377
|
+
{
|
378
|
+
title : '图象属性',
|
379
|
+
titleButton : '图像域属性',
|
380
|
+
menu : '图象属性',
|
381
|
+
infoTab : '图象',
|
382
|
+
btnUpload : '发送到服务器上',
|
383
|
+
upload : '上传',
|
384
|
+
alt : '替换文本',
|
385
|
+
width : '宽度',
|
386
|
+
height : '高度',
|
387
|
+
lockRatio : '锁定比例',
|
388
|
+
unlockRatio : 'Unlock Ratio', // MISSING
|
389
|
+
resetSize : '恢复尺寸',
|
390
|
+
border : '边框大小',
|
391
|
+
hSpace : '水平间距',
|
392
|
+
vSpace : '垂直间距',
|
393
|
+
align : '对齐方式',
|
394
|
+
alignLeft : '左对齐',
|
395
|
+
alignRight : '右对齐',
|
396
|
+
alertUrl : '请输入图象地址',
|
397
|
+
linkTab : '链接',
|
398
|
+
button2Img : '确定要把当前按钮改变为图像吗?',
|
399
|
+
img2Button : '确定要把当前图像改变为按钮吗?',
|
400
|
+
urlMissing : 'Image source URL is missing.', // MISSING
|
401
|
+
validateWidth : 'Width must be a whole number.', // MISSING
|
402
|
+
validateHeight : 'Height must be a whole number.', // MISSING
|
403
|
+
validateBorder : 'Border must be a whole number.', // MISSING
|
404
|
+
validateHSpace : 'HSpace must be a whole number.', // MISSING
|
405
|
+
validateVSpace : 'VSpace must be a whole number.' // MISSING
|
406
|
+
},
|
407
|
+
|
408
|
+
// Flash Dialog
|
409
|
+
flash :
|
410
|
+
{
|
411
|
+
properties : 'Flash 属性',
|
412
|
+
propertiesTab : '属性',
|
413
|
+
title : '标题',
|
414
|
+
chkPlay : '自动播放',
|
415
|
+
chkLoop : '循环',
|
416
|
+
chkMenu : '启用 Flash 菜单',
|
417
|
+
chkFull : '启用全屏',
|
418
|
+
scale : '缩放',
|
419
|
+
scaleAll : '全部显示',
|
420
|
+
scaleNoBorder : '无边框',
|
421
|
+
scaleFit : '严格匹配',
|
422
|
+
access : '允许脚本访问',
|
423
|
+
accessAlways : '总是',
|
424
|
+
accessSameDomain: '同域',
|
425
|
+
accessNever : '从不',
|
426
|
+
align : '对齐方式',
|
427
|
+
alignLeft : '左对齐',
|
428
|
+
alignAbsBottom : '绝对底边',
|
429
|
+
alignAbsMiddle : '绝对居中',
|
430
|
+
alignBaseline : '基线',
|
431
|
+
alignBottom : '底边',
|
432
|
+
alignMiddle : '居中',
|
433
|
+
alignRight : '右对齐',
|
434
|
+
alignTextTop : '文本上方',
|
435
|
+
alignTop : '顶端',
|
436
|
+
quality : '质量',
|
437
|
+
qualityBest : '最好',
|
438
|
+
qualityHigh : '高',
|
439
|
+
qualityAutoHigh : '高(自动)',
|
440
|
+
qualityMedium : '中(自动)',
|
441
|
+
qualityAutoLow : '低(自动)',
|
442
|
+
qualityLow : '低',
|
443
|
+
windowModeWindow: '窗体',
|
444
|
+
windowModeOpaque: '不透明',
|
445
|
+
windowModeTransparent : '透明',
|
446
|
+
windowMode : '窗体模式',
|
447
|
+
flashvars : 'Flash变量',
|
448
|
+
bgcolor : '背景颜色',
|
449
|
+
width : '宽度',
|
450
|
+
height : '高度',
|
451
|
+
hSpace : '水平间距',
|
452
|
+
vSpace : '垂直间距',
|
453
|
+
validateSrc : '请输入超链接地址',
|
454
|
+
validateWidth : '宽度必须为数字格式',
|
455
|
+
validateHeight : '高度必须为数字格式',
|
456
|
+
validateHSpace : '水平间距必须为数字格式',
|
457
|
+
validateVSpace : '垂直间距必须为数字格式'
|
458
|
+
},
|
459
|
+
|
460
|
+
// Speller Pages Dialog
|
461
|
+
spellCheck :
|
462
|
+
{
|
463
|
+
toolbar : '拼写检查',
|
464
|
+
title : '拼写检查',
|
465
|
+
notAvailable : '抱歉,服务目前暂不可用',
|
466
|
+
errorLoading : '无法联系该应用的主机: %s.',
|
467
|
+
notInDic : '没有在字典里',
|
468
|
+
changeTo : '更改为',
|
469
|
+
btnIgnore : '忽略',
|
470
|
+
btnIgnoreAll : '全部忽略',
|
471
|
+
btnReplace : '替换',
|
472
|
+
btnReplaceAll : '全部替换',
|
473
|
+
btnUndo : '撤消',
|
474
|
+
noSuggestions : '- 没有建议 -',
|
475
|
+
progress : '正在进行拼写检查...',
|
476
|
+
noMispell : '拼写检查完成:没有发现拼写错误',
|
477
|
+
noChanges : '拼写检查完成:没有更改任何单词',
|
478
|
+
oneChange : '拼写检查完成:更改了一个单词',
|
479
|
+
manyChanges : '拼写检查完成:更改了 %1 个单词',
|
480
|
+
ieSpellDownload : '拼写检查插件还没安装,你是否想现在就下载?'
|
481
|
+
},
|
482
|
+
|
483
|
+
smiley :
|
484
|
+
{
|
485
|
+
toolbar : '表情符',
|
486
|
+
title : '插入表情图标',
|
487
|
+
options : 'Smiley Options' // MISSING
|
488
|
+
},
|
489
|
+
|
490
|
+
elementsPath :
|
491
|
+
{
|
492
|
+
eleLabel : 'Elements path', // MISSING
|
493
|
+
eleTitle : '%1 元素'
|
494
|
+
},
|
495
|
+
|
496
|
+
numberedlist : '编号列表',
|
497
|
+
bulletedlist : '项目列表',
|
498
|
+
indent : '增加缩进量',
|
499
|
+
outdent : '减少缩进量',
|
500
|
+
|
501
|
+
justify :
|
502
|
+
{
|
503
|
+
left : '左对齐',
|
504
|
+
center : '居中对齐',
|
505
|
+
right : '右对齐',
|
506
|
+
block : '两端对齐'
|
507
|
+
},
|
508
|
+
|
509
|
+
blockquote : '块引用',
|
510
|
+
|
511
|
+
clipboard :
|
512
|
+
{
|
513
|
+
title : '粘贴',
|
514
|
+
cutError : '您的浏览器安全设置不允许编辑器自动执行剪切操作,请使用键盘快捷键(Ctrl/Cmd+X)来完成',
|
515
|
+
copyError : '您的浏览器安全设置不允许编辑器自动执行复制操作,请使用键盘快捷键(Ctrl/Cmd+C)来完成',
|
516
|
+
pasteMsg : '请使用键盘快捷键(<STRONG>Ctrl/Cmd+V</STRONG>)把内容粘贴到下面的方框里,再按 <STRONG>确定</STRONG>',
|
517
|
+
securityMsg : '因为你的浏览器的安全设置原因,本编辑器不能直接访问你的剪贴板内容,你需要在本窗口重新粘贴一次',
|
518
|
+
pasteArea : 'Paste Area' // MISSING
|
519
|
+
},
|
520
|
+
|
521
|
+
pastefromword :
|
522
|
+
{
|
523
|
+
confirmCleanup : '您要粘贴的内容好像是来自 MS Word,是否要清除 MS Word 格式后再粘贴?',
|
524
|
+
toolbar : '从 MS Word 粘贴',
|
525
|
+
title : '从 MS Word 粘贴',
|
526
|
+
error : 'It was not possible to clean up the pasted data due to an internal error' // MISSING
|
527
|
+
},
|
528
|
+
|
529
|
+
pasteText :
|
530
|
+
{
|
531
|
+
button : '粘贴为无格式文本',
|
532
|
+
title : '粘贴为无格式文本'
|
533
|
+
},
|
534
|
+
|
535
|
+
templates :
|
536
|
+
{
|
537
|
+
button : '模板',
|
538
|
+
title : '内容模板',
|
539
|
+
options : 'Template Options', // MISSING
|
540
|
+
insertOption : '替换当前内容',
|
541
|
+
selectPromptMsg : '请选择编辑器内容模板:',
|
542
|
+
emptyListMsg : '(没有模板)'
|
543
|
+
},
|
544
|
+
|
545
|
+
showBlocks : '显示区块',
|
546
|
+
|
547
|
+
stylesCombo :
|
548
|
+
{
|
549
|
+
label : '样式',
|
550
|
+
panelTitle : 'Formatting Styles', // MISSING
|
551
|
+
panelTitle1 : '块级元素样式',
|
552
|
+
panelTitle2 : '内联元素样式',
|
553
|
+
panelTitle3 : '对象元素样式'
|
554
|
+
},
|
555
|
+
|
556
|
+
format :
|
557
|
+
{
|
558
|
+
label : '格式',
|
559
|
+
panelTitle : '格式',
|
560
|
+
|
561
|
+
tag_p : '普通',
|
562
|
+
tag_pre : '已编排格式',
|
563
|
+
tag_address : '地址',
|
564
|
+
tag_h1 : '标题 1',
|
565
|
+
tag_h2 : '标题 2',
|
566
|
+
tag_h3 : '标题 3',
|
567
|
+
tag_h4 : '标题 4',
|
568
|
+
tag_h5 : '标题 5',
|
569
|
+
tag_h6 : '标题 6',
|
570
|
+
tag_div : '段落(DIV)'
|
571
|
+
},
|
572
|
+
|
573
|
+
div :
|
574
|
+
{
|
575
|
+
title : 'Create Div Container', // MISSING
|
576
|
+
toolbar : 'Create Div Container', // MISSING
|
577
|
+
cssClassInputLabel : 'Stylesheet Classes', // MISSING
|
578
|
+
styleSelectLabel : 'Style', // MISSING
|
579
|
+
IdInputLabel : 'Id', // MISSING
|
580
|
+
languageCodeInputLabel : ' Language Code', // MISSING
|
581
|
+
inlineStyleInputLabel : 'Inline Style', // MISSING
|
582
|
+
advisoryTitleInputLabel : 'Advisory Title', // MISSING
|
583
|
+
langDirLabel : 'Language Direction', // MISSING
|
584
|
+
langDirLTRLabel : 'Left to Right (LTR)', // MISSING
|
585
|
+
langDirRTLLabel : 'Right to Left (RTL)', // MISSING
|
586
|
+
edit : 'Edit Div', // MISSING
|
587
|
+
remove : 'Remove Div' // MISSING
|
588
|
+
},
|
589
|
+
|
590
|
+
font :
|
591
|
+
{
|
592
|
+
label : '字体',
|
593
|
+
voiceLabel : '字体',
|
594
|
+
panelTitle : '字体'
|
595
|
+
},
|
596
|
+
|
597
|
+
fontSize :
|
598
|
+
{
|
599
|
+
label : '大小',
|
600
|
+
voiceLabel : '文字大小',
|
601
|
+
panelTitle : '大小'
|
602
|
+
},
|
603
|
+
|
604
|
+
colorButton :
|
605
|
+
{
|
606
|
+
textColorTitle : '文本颜色',
|
607
|
+
bgColorTitle : '背景颜色',
|
608
|
+
panelTitle : 'Colors', // MISSING
|
609
|
+
auto : '自动',
|
610
|
+
more : '其它颜色...'
|
611
|
+
},
|
612
|
+
|
613
|
+
colors :
|
614
|
+
{
|
615
|
+
'000' : 'Black', // MISSING
|
616
|
+
'800000' : 'Maroon', // MISSING
|
617
|
+
'8B4513' : 'Saddle Brown', // MISSING
|
618
|
+
'2F4F4F' : 'Dark Slate Gray', // MISSING
|
619
|
+
'008080' : 'Teal', // MISSING
|
620
|
+
'000080' : 'Navy', // MISSING
|
621
|
+
'4B0082' : 'Indigo', // MISSING
|
622
|
+
'696969' : 'Dim Gray', // MISSING
|
623
|
+
'B22222' : 'Fire Brick', // MISSING
|
624
|
+
'A52A2A' : 'Brown', // MISSING
|
625
|
+
'DAA520' : 'Golden Rod', // MISSING
|
626
|
+
'006400' : 'Dark Green', // MISSING
|
627
|
+
'40E0D0' : 'Turquoise', // MISSING
|
628
|
+
'0000CD' : 'Medium Blue', // MISSING
|
629
|
+
'800080' : 'Purple', // MISSING
|
630
|
+
'808080' : 'Gray', // MISSING
|
631
|
+
'F00' : 'Red', // MISSING
|
632
|
+
'FF8C00' : 'Dark Orange', // MISSING
|
633
|
+
'FFD700' : 'Gold', // MISSING
|
634
|
+
'008000' : 'Green', // MISSING
|
635
|
+
'0FF' : 'Cyan', // MISSING
|
636
|
+
'00F' : 'Blue', // MISSING
|
637
|
+
'EE82EE' : 'Violet', // MISSING
|
638
|
+
'A9A9A9' : 'Dark Gray', // MISSING
|
639
|
+
'FFA07A' : 'Light Salmon', // MISSING
|
640
|
+
'FFA500' : 'Orange', // MISSING
|
641
|
+
'FFFF00' : 'Yellow', // MISSING
|
642
|
+
'00FF00' : 'Lime', // MISSING
|
643
|
+
'AFEEEE' : 'Pale Turquoise', // MISSING
|
644
|
+
'ADD8E6' : 'Light Blue', // MISSING
|
645
|
+
'DDA0DD' : 'Plum', // MISSING
|
646
|
+
'D3D3D3' : 'Light Grey', // MISSING
|
647
|
+
'FFF0F5' : 'Lavender Blush', // MISSING
|
648
|
+
'FAEBD7' : 'Antique White', // MISSING
|
649
|
+
'FFFFE0' : 'Light Yellow', // MISSING
|
650
|
+
'F0FFF0' : 'Honeydew', // MISSING
|
651
|
+
'F0FFFF' : 'Azure', // MISSING
|
652
|
+
'F0F8FF' : 'Alice Blue', // MISSING
|
653
|
+
'E6E6FA' : 'Lavender', // MISSING
|
654
|
+
'FFF' : 'White' // MISSING
|
655
|
+
},
|
656
|
+
|
657
|
+
scayt :
|
658
|
+
{
|
659
|
+
title : '即时拼写检查',
|
660
|
+
enable : '启用即时拼写检查',
|
661
|
+
disable : '禁用即时拼写检查',
|
662
|
+
about : '关于即时拼写检查',
|
663
|
+
toggle : '暂停/启用即时拼写检查',
|
664
|
+
options : '选项',
|
665
|
+
langs : '语言',
|
666
|
+
moreSuggestions : '更多拼写建议',
|
667
|
+
ignore : '忽略',
|
668
|
+
ignoreAll : '全部忽略',
|
669
|
+
addWord : '添加单词',
|
670
|
+
emptyDic : '字典名不应为空.',
|
671
|
+
optionsTab : '选项',
|
672
|
+
languagesTab : '语言',
|
673
|
+
dictionariesTab : '字典',
|
674
|
+
aboutTab : '关于'
|
675
|
+
},
|
676
|
+
|
677
|
+
about :
|
678
|
+
{
|
679
|
+
title : '关于CKEditor',
|
680
|
+
dlgTitle : '关于CKEditor',
|
681
|
+
moreInfo : '访问我们的网站以获取更多关于协议的信息',
|
682
|
+
copy : 'Copyright © $1. All rights reserved.'
|
683
|
+
},
|
684
|
+
|
685
|
+
maximize : '全屏',
|
686
|
+
minimize : 'Minimize', // MISSING
|
687
|
+
|
688
|
+
fakeobjects :
|
689
|
+
{
|
690
|
+
anchor : '锚点',
|
691
|
+
flash : 'Flash',
|
692
|
+
div : '分页',
|
693
|
+
unknown : '位置对象'
|
694
|
+
},
|
695
|
+
|
696
|
+
resize : '拖拽以改变尺寸',
|
697
|
+
|
698
|
+
colordialog :
|
699
|
+
{
|
700
|
+
title : 'Select color', // MISSING
|
701
|
+
highlight : 'Highlight', // MISSING
|
702
|
+
selected : 'Selected', // MISSING
|
703
|
+
clear : 'Clear' // MISSING
|
704
|
+
},
|
705
|
+
|
706
|
+
toolbarCollapse : 'Collapse Toolbar', // MISSING
|
707
|
+
toolbarExpand : 'Expand Toolbar' // MISSING
|
708
|
+
};
|