ckeditor 3.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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
|
+
* Brazilian Portuguese 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['pt-br'] =
|
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 : 'Código-Fonte',
|
42
|
+
newPage : 'Novo',
|
43
|
+
save : 'Salvar',
|
44
|
+
preview : 'Visualizar',
|
45
|
+
cut : 'Recortar',
|
46
|
+
copy : 'Copiar',
|
47
|
+
paste : 'Colar',
|
48
|
+
print : 'Imprimir',
|
49
|
+
underline : 'Sublinhado',
|
50
|
+
bold : 'Negrito',
|
51
|
+
italic : 'Itálico',
|
52
|
+
selectAll : 'Selecionar Tudo',
|
53
|
+
removeFormat : 'Remover Formatação',
|
54
|
+
strike : 'Tachado',
|
55
|
+
subscript : 'Subscrito',
|
56
|
+
superscript : 'Sobrescrito',
|
57
|
+
horizontalrule : 'Inserir Linha Horizontal',
|
58
|
+
pagebreak : 'Inserir Quebra de Página',
|
59
|
+
unlink : 'Remover Hiperlink',
|
60
|
+
undo : 'Desfazer',
|
61
|
+
redo : 'Refazer',
|
62
|
+
|
63
|
+
// Common messages and labels.
|
64
|
+
common :
|
65
|
+
{
|
66
|
+
browseServer : 'Localizar no Servidor',
|
67
|
+
url : 'URL',
|
68
|
+
protocol : 'Protocolo',
|
69
|
+
upload : 'Enviar ao Servidor',
|
70
|
+
uploadSubmit : 'Enviar para o Servidor',
|
71
|
+
image : 'Figura',
|
72
|
+
flash : 'Flash',
|
73
|
+
form : 'Formulário',
|
74
|
+
checkbox : 'Caixa de Seleção',
|
75
|
+
radio : 'Botão de Opção',
|
76
|
+
textField : 'Caixa de Texto',
|
77
|
+
textarea : 'Área de Texto',
|
78
|
+
hiddenField : 'Campo Oculto',
|
79
|
+
button : 'Botão',
|
80
|
+
select : 'Caixa de Listagem',
|
81
|
+
imageButton : 'Botão de Imagem',
|
82
|
+
notSet : '<não ajustado>',
|
83
|
+
id : 'Id',
|
84
|
+
name : 'Nome',
|
85
|
+
langDir : 'Direção do idioma',
|
86
|
+
langDirLtr : 'Esquerda para Direita (LTR)',
|
87
|
+
langDirRtl : 'Direita para Esquerda (RTL)',
|
88
|
+
langCode : 'Idioma',
|
89
|
+
longDescr : 'Descrição da URL',
|
90
|
+
cssClass : 'Classe de Folhas de Estilo',
|
91
|
+
advisoryTitle : 'Título',
|
92
|
+
cssStyle : 'Estilos',
|
93
|
+
ok : 'OK',
|
94
|
+
cancel : 'Cancelar',
|
95
|
+
close : 'Close', // MISSING
|
96
|
+
preview : 'Preview', // MISSING
|
97
|
+
generalTab : 'Geral',
|
98
|
+
advancedTab : 'Avançado',
|
99
|
+
validateNumberFailed : 'Este valor não é um número.',
|
100
|
+
confirmNewPage : 'Todas as mudanças não salvas serão perdidas. Tem certeza de que quer carregar outra página?',
|
101
|
+
confirmCancel : 'Algumas opções foram alteradas. Tem certeza de que quer fechar a caixa de diálogo?',
|
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">, indisponível</span>'
|
111
|
+
},
|
112
|
+
|
113
|
+
contextmenu :
|
114
|
+
{
|
115
|
+
options : 'Context Menu Options' // MISSING
|
116
|
+
},
|
117
|
+
|
118
|
+
// Special char dialog.
|
119
|
+
specialChar :
|
120
|
+
{
|
121
|
+
toolbar : 'Inserir Caractere Especial',
|
122
|
+
title : 'Selecione um Caractere Especial',
|
123
|
+
options : 'Special Character Options' // MISSING
|
124
|
+
},
|
125
|
+
|
126
|
+
// Link dialog.
|
127
|
+
link :
|
128
|
+
{
|
129
|
+
toolbar : 'Inserir/Editar Hiperlink',
|
130
|
+
other : '<other>', // MISSING
|
131
|
+
menu : 'Editar Hiperlink',
|
132
|
+
title : 'Hiperlink',
|
133
|
+
info : 'Informações',
|
134
|
+
target : 'Destino',
|
135
|
+
upload : 'Enviar ao Servidor',
|
136
|
+
advanced : 'Avançado',
|
137
|
+
type : 'Tipo de hiperlink',
|
138
|
+
toUrl : 'URL', // MISSING
|
139
|
+
toAnchor : 'Âncora nesta página',
|
140
|
+
toEmail : 'E-Mail',
|
141
|
+
targetFrame : '<frame>',
|
142
|
+
targetPopup : '<janela popup>',
|
143
|
+
targetFrameName : 'Nome do Frame de Destino',
|
144
|
+
targetPopupName : 'Nome da Janela Pop-up',
|
145
|
+
popupFeatures : 'Atributos da Janela Pop-up',
|
146
|
+
popupResizable : 'Redimensionável',
|
147
|
+
popupStatusBar : 'Barra de Status',
|
148
|
+
popupLocationBar: 'Barra de Endereços',
|
149
|
+
popupToolbar : 'Barra de Ferramentas',
|
150
|
+
popupMenuBar : 'Barra de Menus',
|
151
|
+
popupFullScreen : 'Modo Tela Cheia (IE)',
|
152
|
+
popupScrollBars : 'Barras de Rolagem',
|
153
|
+
popupDependent : 'Dependente (Netscape)',
|
154
|
+
popupWidth : 'Largura',
|
155
|
+
popupLeft : 'Esquerda',
|
156
|
+
popupHeight : 'Altura',
|
157
|
+
popupTop : 'Superior',
|
158
|
+
id : 'Id',
|
159
|
+
langDir : 'Direção do idioma',
|
160
|
+
langDirLTR : 'Esquerda para Direita (LTR)',
|
161
|
+
langDirRTL : 'Direita para Esquerda (RTL)',
|
162
|
+
acccessKey : 'Chave de Acesso',
|
163
|
+
name : 'Nome',
|
164
|
+
langCode : 'Direção do idioma',
|
165
|
+
tabIndex : 'Índice de Tabulação',
|
166
|
+
advisoryTitle : 'Título',
|
167
|
+
advisoryContentType : 'Tipo de Conteúdo',
|
168
|
+
cssClasses : 'Classe de Folhas de Estilo',
|
169
|
+
charset : 'Conjunto de Caracteres do Hiperlink',
|
170
|
+
styles : 'Estilos',
|
171
|
+
selectAnchor : 'Selecione uma âncora',
|
172
|
+
anchorName : 'Pelo Nome da âncora',
|
173
|
+
anchorId : 'Pelo Id do Elemento',
|
174
|
+
emailAddress : 'Endereço E-Mail',
|
175
|
+
emailSubject : 'Assunto da Mensagem',
|
176
|
+
emailBody : 'Corpo da Mensagem',
|
177
|
+
noAnchors : '(Não há âncoras disponíveis neste documento)',
|
178
|
+
noUrl : 'Por favor, digite o endereço do Hiperlink',
|
179
|
+
noEmail : 'Por favor, digite o endereço de e-mail'
|
180
|
+
},
|
181
|
+
|
182
|
+
// Anchor dialog
|
183
|
+
anchor :
|
184
|
+
{
|
185
|
+
toolbar : 'Inserir/Editar Âncora',
|
186
|
+
menu : 'Formatar Âncora',
|
187
|
+
title : 'Formatar Âncora',
|
188
|
+
name : 'Nome da Âncora',
|
189
|
+
errorName : 'Por favor, digite o nome da âncora'
|
190
|
+
},
|
191
|
+
|
192
|
+
// Find And Replace Dialog
|
193
|
+
findAndReplace :
|
194
|
+
{
|
195
|
+
title : 'Localizar e Substituir',
|
196
|
+
find : 'Localizar',
|
197
|
+
replace : 'Substituir',
|
198
|
+
findWhat : 'Procurar por:',
|
199
|
+
replaceWith : 'Substituir por:',
|
200
|
+
notFoundMsg : 'O texto especificado não foi encontrado.',
|
201
|
+
matchCase : 'Coincidir Maiúsculas/Minúsculas',
|
202
|
+
matchWord : 'Coincidir a palavra inteira',
|
203
|
+
matchCyclic : 'Coincidir cíclico',
|
204
|
+
replaceAll : 'Substituir Tudo',
|
205
|
+
replaceSuccessMsg : '%1 ocorrência(s) substituída(s).'
|
206
|
+
},
|
207
|
+
|
208
|
+
// Table Dialog
|
209
|
+
table :
|
210
|
+
{
|
211
|
+
toolbar : 'Tabela',
|
212
|
+
title : 'Formatar Tabela',
|
213
|
+
menu : 'Formatar Tabela',
|
214
|
+
deleteTable : 'Apagar Tabela',
|
215
|
+
rows : 'Linhas',
|
216
|
+
columns : 'Colunas',
|
217
|
+
border : 'Borda',
|
218
|
+
align : 'Alinhamento',
|
219
|
+
alignLeft : 'Esquerda',
|
220
|
+
alignCenter : 'Centralizado',
|
221
|
+
alignRight : 'Direita',
|
222
|
+
width : 'Largura',
|
223
|
+
widthPx : 'pixels',
|
224
|
+
widthPc : '%',
|
225
|
+
widthUnit : 'width unit', // MISSING
|
226
|
+
height : 'Altura',
|
227
|
+
cellSpace : 'Espaçamento',
|
228
|
+
cellPad : 'Enchimento',
|
229
|
+
caption : 'Legenda',
|
230
|
+
summary : 'Resumo',
|
231
|
+
headers : 'Cabeçalho',
|
232
|
+
headersNone : 'Nenhum',
|
233
|
+
headersColumn : 'Primeira coluna',
|
234
|
+
headersRow : 'Primeira linha',
|
235
|
+
headersBoth : 'Ambos',
|
236
|
+
invalidRows : '"Número de linhas" tem que ser um número maior que 0.',
|
237
|
+
invalidCols : '"Número de colunas" tem que ser um número maior que 0.',
|
238
|
+
invalidBorder : '"Tamanho da borda" tem que ser um número.',
|
239
|
+
invalidWidth : '"Largura da tabela" tem que ser um número.',
|
240
|
+
invalidHeight : '"Altura da tabela" tem que ser um número.',
|
241
|
+
invalidCellSpacing : '"Espaçamento das células" tem que ser um número.',
|
242
|
+
invalidCellPadding : '"Margem interna das células" tem que ser um número.',
|
243
|
+
|
244
|
+
cell :
|
245
|
+
{
|
246
|
+
menu : 'Célula',
|
247
|
+
insertBefore : 'Inserir célula à esquerda',
|
248
|
+
insertAfter : 'Inserir célula à direita',
|
249
|
+
deleteCell : 'Remover Células',
|
250
|
+
merge : 'Mesclar Células',
|
251
|
+
mergeRight : 'Mesclar com célula à direita',
|
252
|
+
mergeDown : 'Mesclar com célula abaixo',
|
253
|
+
splitHorizontal : 'Dividir célula horizontalmente',
|
254
|
+
splitVertical : 'Dividir célula verticalmente',
|
255
|
+
title : 'Propriedades da célula',
|
256
|
+
cellType : 'Tipo de célula',
|
257
|
+
rowSpan : 'Linhas cobertas',
|
258
|
+
colSpan : 'Colunas cobertas',
|
259
|
+
wordWrap : 'Quebra de palavra',
|
260
|
+
hAlign : 'Alinhamento horizontal',
|
261
|
+
vAlign : 'Alinhamento vertical',
|
262
|
+
alignTop : 'Alinhar no topo',
|
263
|
+
alignMiddle : 'Centralizado verticalmente',
|
264
|
+
alignBottom : 'Alinhar na base',
|
265
|
+
alignBaseline : 'Patamar de alinhamento',
|
266
|
+
bgColor : 'Cor de fundo',
|
267
|
+
borderColor : 'Cor das bordas',
|
268
|
+
data : 'Dados',
|
269
|
+
header : 'Cabeçalho',
|
270
|
+
yes : 'Sim',
|
271
|
+
no : 'Não',
|
272
|
+
invalidWidth : 'A largura da célula tem que ser um número.',
|
273
|
+
invalidHeight : 'A altura da célula tem que ser um número.',
|
274
|
+
invalidRowSpan : '"Linhas cobertas" tem que ser um número inteiro.',
|
275
|
+
invalidColSpan : '"Colunas cobertas" tem que ser um número inteiro.',
|
276
|
+
chooseColor : 'Choose' // MISSING
|
277
|
+
},
|
278
|
+
|
279
|
+
row :
|
280
|
+
{
|
281
|
+
menu : 'Linha',
|
282
|
+
insertBefore : 'Inserir linha acima',
|
283
|
+
insertAfter : 'Inserir linha abaixo',
|
284
|
+
deleteRow : 'Remover Linhas'
|
285
|
+
},
|
286
|
+
|
287
|
+
column :
|
288
|
+
{
|
289
|
+
menu : 'Coluna',
|
290
|
+
insertBefore : 'Inserir coluna à esquerda',
|
291
|
+
insertAfter : 'Inserir coluna à direita',
|
292
|
+
deleteColumn : 'Remover Colunas'
|
293
|
+
}
|
294
|
+
},
|
295
|
+
|
296
|
+
// Button Dialog.
|
297
|
+
button :
|
298
|
+
{
|
299
|
+
title : 'Formatar Botão',
|
300
|
+
text : 'Texto (Valor)',
|
301
|
+
type : 'Tipo',
|
302
|
+
typeBtn : 'Botão',
|
303
|
+
typeSbm : 'Enviar',
|
304
|
+
typeRst : 'Limpar'
|
305
|
+
},
|
306
|
+
|
307
|
+
// Checkbox and Radio Button Dialogs.
|
308
|
+
checkboxAndRadio :
|
309
|
+
{
|
310
|
+
checkboxTitle : 'Formatar Caixa de Seleção',
|
311
|
+
radioTitle : 'Formatar Botão de Opção',
|
312
|
+
value : 'Valor',
|
313
|
+
selected : 'Selecionado'
|
314
|
+
},
|
315
|
+
|
316
|
+
// Form Dialog.
|
317
|
+
form :
|
318
|
+
{
|
319
|
+
title : 'Formatar Formulário',
|
320
|
+
menu : 'Formatar Formulário',
|
321
|
+
action : 'Action',
|
322
|
+
method : 'Método',
|
323
|
+
encoding : 'Codificação'
|
324
|
+
},
|
325
|
+
|
326
|
+
// Select Field Dialog.
|
327
|
+
select :
|
328
|
+
{
|
329
|
+
title : 'Formatar Caixa de Listagem',
|
330
|
+
selectInfo : 'Info',
|
331
|
+
opAvail : 'Opções disponíveis',
|
332
|
+
value : 'Valor',
|
333
|
+
size : 'Tamanho',
|
334
|
+
lines : 'linhas',
|
335
|
+
chkMulti : 'Permitir múltiplas seleções',
|
336
|
+
opText : 'Texto',
|
337
|
+
opValue : 'Valor',
|
338
|
+
btnAdd : 'Adicionar',
|
339
|
+
btnModify : 'Modificar',
|
340
|
+
btnUp : 'Para cima',
|
341
|
+
btnDown : 'Para baixo',
|
342
|
+
btnSetValue : 'Definir como selecionado',
|
343
|
+
btnDelete : 'Remover'
|
344
|
+
},
|
345
|
+
|
346
|
+
// Textarea Dialog.
|
347
|
+
textarea :
|
348
|
+
{
|
349
|
+
title : 'Formatar Área de Texto',
|
350
|
+
cols : 'Colunas',
|
351
|
+
rows : 'Linhas'
|
352
|
+
},
|
353
|
+
|
354
|
+
// Text Field Dialog.
|
355
|
+
textfield :
|
356
|
+
{
|
357
|
+
title : 'Formatar Caixa de Texto',
|
358
|
+
name : 'Nome',
|
359
|
+
value : 'Valor',
|
360
|
+
charWidth : 'Comprimento (em caracteres)',
|
361
|
+
maxChars : 'Número Máximo de Caracteres',
|
362
|
+
type : 'Tipo',
|
363
|
+
typeText : 'Texto',
|
364
|
+
typePass : 'Senha'
|
365
|
+
},
|
366
|
+
|
367
|
+
// Hidden Field Dialog.
|
368
|
+
hidden :
|
369
|
+
{
|
370
|
+
title : 'Formatar Campo Oculto',
|
371
|
+
name : 'Nome',
|
372
|
+
value : 'Valor'
|
373
|
+
},
|
374
|
+
|
375
|
+
// Image Dialog.
|
376
|
+
image :
|
377
|
+
{
|
378
|
+
title : 'Formatar Figura',
|
379
|
+
titleButton : 'Formatar Botão de Imagem',
|
380
|
+
menu : 'Formatar Figura',
|
381
|
+
infoTab : 'Informações da Figura',
|
382
|
+
btnUpload : 'Enviar para o Servidor',
|
383
|
+
upload : 'Submeter',
|
384
|
+
alt : 'Texto Alternativo',
|
385
|
+
width : 'Largura',
|
386
|
+
height : 'Altura',
|
387
|
+
lockRatio : 'Manter proporções',
|
388
|
+
unlockRatio : 'Unlock Ratio', // MISSING
|
389
|
+
resetSize : 'Redefinir para o Tamanho Original',
|
390
|
+
border : 'Borda',
|
391
|
+
hSpace : 'Horizontal',
|
392
|
+
vSpace : 'Vertical',
|
393
|
+
align : 'Alinhamento',
|
394
|
+
alignLeft : 'Esquerda',
|
395
|
+
alignRight : 'Direita',
|
396
|
+
alertUrl : 'Por favor, digite o URL da figura.',
|
397
|
+
linkTab : 'Hiperlink',
|
398
|
+
button2Img : 'Você deseja transformar o botão de imagem selecionado em uma imagem comum?',
|
399
|
+
img2Button : 'Você deseja transformar a imagem selecionada em um botão de imagem?',
|
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 : 'Propriedades do Flash',
|
412
|
+
propertiesTab : 'Propriedades',
|
413
|
+
title : 'Propriedades do Flash',
|
414
|
+
chkPlay : 'Tocar Automaticamente',
|
415
|
+
chkLoop : 'Loop',
|
416
|
+
chkMenu : 'Habilita Menu Flash',
|
417
|
+
chkFull : 'Permitir tela cheia',
|
418
|
+
scale : 'Escala',
|
419
|
+
scaleAll : 'Mostrar tudo',
|
420
|
+
scaleNoBorder : 'Sem Borda',
|
421
|
+
scaleFit : 'Escala Exata',
|
422
|
+
access : 'Acesso ao script',
|
423
|
+
accessAlways : 'Sempre',
|
424
|
+
accessSameDomain: 'Mesmo domínio',
|
425
|
+
accessNever : 'Nunca',
|
426
|
+
align : 'Alinhamento',
|
427
|
+
alignLeft : 'Esquerda',
|
428
|
+
alignAbsBottom : 'Inferior Absoluto',
|
429
|
+
alignAbsMiddle : 'Centralizado Absoluto',
|
430
|
+
alignBaseline : 'Baseline',
|
431
|
+
alignBottom : 'Inferior',
|
432
|
+
alignMiddle : 'Centralizado',
|
433
|
+
alignRight : 'Direita',
|
434
|
+
alignTextTop : 'Superior Absoluto',
|
435
|
+
alignTop : 'Superior',
|
436
|
+
quality : 'Qualidade',
|
437
|
+
qualityBest : 'Melhor',
|
438
|
+
qualityHigh : 'Alta',
|
439
|
+
qualityAutoHigh : 'Alta automático',
|
440
|
+
qualityMedium : 'Média',
|
441
|
+
qualityAutoLow : 'Média automático',
|
442
|
+
qualityLow : 'Baixa',
|
443
|
+
windowModeWindow: 'Janela',
|
444
|
+
windowModeOpaque: 'Opaca',
|
445
|
+
windowModeTransparent : 'Transparente',
|
446
|
+
windowMode : 'Modo da janela',
|
447
|
+
flashvars : 'Variáveis do Flash',
|
448
|
+
bgcolor : 'Cor do Plano de Fundo',
|
449
|
+
width : 'Largura',
|
450
|
+
height : 'Altura',
|
451
|
+
hSpace : 'Horizontal',
|
452
|
+
vSpace : 'Vertical',
|
453
|
+
validateSrc : 'Por favor, digite o endereço do Hiperlink',
|
454
|
+
validateWidth : '"Largura" tem que ser um número.',
|
455
|
+
validateHeight : '"Altura" tem que ser um número',
|
456
|
+
validateHSpace : '"HSpace" tem que ser um número',
|
457
|
+
validateVSpace : '"VSpace" tem que ser um número.'
|
458
|
+
},
|
459
|
+
|
460
|
+
// Speller Pages Dialog
|
461
|
+
spellCheck :
|
462
|
+
{
|
463
|
+
toolbar : 'Verificar Ortografia',
|
464
|
+
title : 'Corretor gramatical',
|
465
|
+
notAvailable : 'Desculpe, o serviço não está disponível no momento.',
|
466
|
+
errorLoading : 'Erro carregando servidor de aplicação: %s.',
|
467
|
+
notInDic : 'Não encontrada',
|
468
|
+
changeTo : 'Alterar para',
|
469
|
+
btnIgnore : 'Ignorar uma vez',
|
470
|
+
btnIgnoreAll : 'Ignorar Todas',
|
471
|
+
btnReplace : 'Alterar',
|
472
|
+
btnReplaceAll : 'Alterar Todas',
|
473
|
+
btnUndo : 'Desfazer',
|
474
|
+
noSuggestions : '-sem sugestões de ortografia-',
|
475
|
+
progress : 'Verificação ortográfica em andamento...',
|
476
|
+
noMispell : 'Verificação encerrada: Não foram encontrados erros de ortografia',
|
477
|
+
noChanges : 'Verificação ortográfica encerrada: Não houve alterações',
|
478
|
+
oneChange : 'Verificação ortográfica encerrada: Uma palavra foi alterada',
|
479
|
+
manyChanges : 'Verificação ortográfica encerrada: %1 foram alteradas',
|
480
|
+
ieSpellDownload : 'A verificação ortográfica não foi instalada. Você gostaria de realizar o download agora?'
|
481
|
+
},
|
482
|
+
|
483
|
+
smiley :
|
484
|
+
{
|
485
|
+
toolbar : 'Emoticon',
|
486
|
+
title : 'Inserir Emoticon',
|
487
|
+
options : 'Smiley Options' // MISSING
|
488
|
+
},
|
489
|
+
|
490
|
+
elementsPath :
|
491
|
+
{
|
492
|
+
eleLabel : 'Elements path', // MISSING
|
493
|
+
eleTitle : 'Elemento %1'
|
494
|
+
},
|
495
|
+
|
496
|
+
numberedlist : 'Numeração',
|
497
|
+
bulletedlist : 'Marcadores',
|
498
|
+
indent : 'Aumentar Recuo',
|
499
|
+
outdent : 'Diminuir Recuo',
|
500
|
+
|
501
|
+
justify :
|
502
|
+
{
|
503
|
+
left : 'Alinhar Esquerda',
|
504
|
+
center : 'Centralizar',
|
505
|
+
right : 'Alinhar Direita',
|
506
|
+
block : 'Justificado'
|
507
|
+
},
|
508
|
+
|
509
|
+
blockquote : 'Recuo',
|
510
|
+
|
511
|
+
clipboard :
|
512
|
+
{
|
513
|
+
title : 'Colar',
|
514
|
+
cutError : 'As configurações de segurança do seu navegador não permitem que o editor execute operações de recortar automaticamente. Por favor, utilize o teclado para recortar (Ctrl/Cmd+X).',
|
515
|
+
copyError : 'As configurações de segurança do seu navegador não permitem que o editor execute operações de copiar automaticamente. Por favor, utilize o teclado para copiar (Ctrl/Cmd+C).',
|
516
|
+
pasteMsg : 'Transfira o link usado no box usando o teclado com (<STRONG>Ctrl/Cmd+V</STRONG>) e <STRONG>OK</STRONG>.',
|
517
|
+
securityMsg : 'As configurações de segurança do seu navegador não permitem que o editor acesse os dados da área de transferência diretamente. Por favor cole o conteúdo novamente nesta janela.',
|
518
|
+
pasteArea : 'Paste Area' // MISSING
|
519
|
+
},
|
520
|
+
|
521
|
+
pastefromword :
|
522
|
+
{
|
523
|
+
confirmCleanup : 'O texto que você deseja colar parece ter sido copiado do Word. Você gostaria de remover a formatação antes de colar?',
|
524
|
+
toolbar : 'Colar do Word',
|
525
|
+
title : 'Colar do 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 : 'Colar como Texto sem Formatação',
|
532
|
+
title : 'Colar como Texto sem Formatação'
|
533
|
+
},
|
534
|
+
|
535
|
+
templates :
|
536
|
+
{
|
537
|
+
button : 'Modelos de layout',
|
538
|
+
title : 'Modelo de layout do conteúdo',
|
539
|
+
options : 'Template Options', // MISSING
|
540
|
+
insertOption : 'Substituir o conteúdo atual',
|
541
|
+
selectPromptMsg : 'Selecione um modelo de layout para ser aberto no editor<br>(o conteúdo atual será perdido):',
|
542
|
+
emptyListMsg : '(Não foram definidos modelos de layout)'
|
543
|
+
},
|
544
|
+
|
545
|
+
showBlocks : 'Mostrar blocos',
|
546
|
+
|
547
|
+
stylesCombo :
|
548
|
+
{
|
549
|
+
label : 'Estilo',
|
550
|
+
panelTitle : 'Formatting Styles', // MISSING
|
551
|
+
panelTitle1 : 'Estilos de bloco',
|
552
|
+
panelTitle2 : 'Estilos em texto corrido',
|
553
|
+
panelTitle3 : 'Estilos de objeto'
|
554
|
+
},
|
555
|
+
|
556
|
+
format :
|
557
|
+
{
|
558
|
+
label : 'Formatação',
|
559
|
+
panelTitle : 'Formatação',
|
560
|
+
|
561
|
+
tag_p : 'Normal',
|
562
|
+
tag_pre : 'Formatado',
|
563
|
+
tag_address : 'Endereço',
|
564
|
+
tag_h1 : 'Título 1',
|
565
|
+
tag_h2 : 'Título 2',
|
566
|
+
tag_h3 : 'Título 3',
|
567
|
+
tag_h4 : 'Título 4',
|
568
|
+
tag_h5 : 'Título 5',
|
569
|
+
tag_h6 : 'Título 6',
|
570
|
+
tag_div : 'Normal (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 : 'Fonte',
|
593
|
+
voiceLabel : 'Fonte',
|
594
|
+
panelTitle : 'Fonte'
|
595
|
+
},
|
596
|
+
|
597
|
+
fontSize :
|
598
|
+
{
|
599
|
+
label : 'Tamanho',
|
600
|
+
voiceLabel : 'Tamanho da fonte',
|
601
|
+
panelTitle : 'Tamanho'
|
602
|
+
},
|
603
|
+
|
604
|
+
colorButton :
|
605
|
+
{
|
606
|
+
textColorTitle : 'Cor do Texto',
|
607
|
+
bgColorTitle : 'Cor do Plano de Fundo',
|
608
|
+
panelTitle : 'Colors', // MISSING
|
609
|
+
auto : 'Automático',
|
610
|
+
more : 'Mais Cores...'
|
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 : 'Correção gramatical durante a digitação',
|
660
|
+
enable : 'Habilitar SCAYT',
|
661
|
+
disable : 'Desabilitar SCAYT',
|
662
|
+
about : 'Sobre o SCAYT',
|
663
|
+
toggle : 'Ativar/desativar SCAYT',
|
664
|
+
options : 'Opções',
|
665
|
+
langs : 'Línguas',
|
666
|
+
moreSuggestions : 'Mais sugestões',
|
667
|
+
ignore : 'Ignorar',
|
668
|
+
ignoreAll : 'Ignorar todas',
|
669
|
+
addWord : 'Adicionar palavra',
|
670
|
+
emptyDic : 'O nome do dicionário não deveria estar vazio.',
|
671
|
+
optionsTab : 'Opções',
|
672
|
+
languagesTab : 'Línguas',
|
673
|
+
dictionariesTab : 'Dicionários',
|
674
|
+
aboutTab : 'Sobre'
|
675
|
+
},
|
676
|
+
|
677
|
+
about :
|
678
|
+
{
|
679
|
+
title : 'Sobre o CKEditor',
|
680
|
+
dlgTitle : 'About CKEditor', // MISSING
|
681
|
+
moreInfo : 'Para informações sobre a licença, por favor, visite o nosso site na Internet:',
|
682
|
+
copy : 'Direito de reprodução © $1. Todos os direitos reservados.'
|
683
|
+
},
|
684
|
+
|
685
|
+
maximize : 'Maximizar',
|
686
|
+
minimize : 'Minimize', // MISSING
|
687
|
+
|
688
|
+
fakeobjects :
|
689
|
+
{
|
690
|
+
anchor : 'Âncora',
|
691
|
+
flash : 'Animação em Flash',
|
692
|
+
div : 'Quebra de página',
|
693
|
+
unknown : 'Objeto desconhecido'
|
694
|
+
},
|
695
|
+
|
696
|
+
resize : 'Arraste para redimensionar',
|
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
|
+
};
|