refinerycms-ckeditor 0.1.0
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/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/README.md +25 -0
- data/Rakefile +2 -0
- data/app/assets/images/refinery/ckeditor/pdf.png +0 -0
- data/app/assets/javascripts/ckeditor.js +25 -0
- data/app/assets/javascripts/ckeditor/.htaccess +24 -0
- data/app/assets/javascripts/ckeditor/CHANGES.html +1433 -0
- data/app/assets/javascripts/ckeditor/INSTALL.html +92 -0
- data/app/assets/javascripts/ckeditor/LICENSE.html +1327 -0
- data/app/assets/javascripts/ckeditor/_samples/adobeair/application.xml +32 -0
- data/app/assets/javascripts/ckeditor/_samples/adobeair/run.bat +9 -0
- data/app/assets/javascripts/ckeditor/_samples/adobeair/run.sh +8 -0
- data/app/assets/javascripts/ckeditor/_samples/adobeair/sample.html +45 -0
- data/app/assets/javascripts/ckeditor/_samples/ajax.html +98 -0
- data/app/assets/javascripts/ckeditor/_samples/api.html +192 -0
- data/app/assets/javascripts/ckeditor/_samples/api_dialog.html +198 -0
- data/app/assets/javascripts/ckeditor/_samples/api_dialog/my_dialog.js +28 -0
- data/app/assets/javascripts/ckeditor/_samples/asp/advanced.asp +105 -0
- data/app/assets/javascripts/ckeditor/_samples/asp/events.asp +136 -0
- data/app/assets/javascripts/ckeditor/_samples/asp/index.html +103 -0
- data/app/assets/javascripts/ckeditor/_samples/asp/replace.asp +72 -0
- data/app/assets/javascripts/ckeditor/_samples/asp/replaceall.asp +77 -0
- data/app/assets/javascripts/ckeditor/_samples/asp/sample_posteddata.asp +46 -0
- data/app/assets/javascripts/ckeditor/_samples/asp/standalone.asp +72 -0
- data/app/assets/javascripts/ckeditor/_samples/assets/_posteddata.php +59 -0
- data/app/assets/javascripts/ckeditor/_samples/assets/output_for_flash.fla +0 -0
- data/app/assets/javascripts/ckeditor/_samples/assets/output_for_flash.swf +0 -0
- data/app/assets/javascripts/ckeditor/_samples/assets/output_xhtml.css +204 -0
- data/app/assets/javascripts/ckeditor/_samples/assets/parsesample.css +70 -0
- data/app/assets/javascripts/ckeditor/_samples/assets/swfobject.js +18 -0
- data/app/assets/javascripts/ckeditor/_samples/autogrow.html +108 -0
- data/app/assets/javascripts/ckeditor/_samples/bbcode.html +125 -0
- data/app/assets/javascripts/ckeditor/_samples/devtools.html +94 -0
- data/app/assets/javascripts/ckeditor/_samples/divreplace.html +154 -0
- data/app/assets/javascripts/ckeditor/_samples/enterkey.html +115 -0
- data/app/assets/javascripts/ckeditor/_samples/fullpage.html +82 -0
- data/app/assets/javascripts/ckeditor/_samples/index.html +116 -0
- data/app/assets/javascripts/ckeditor/_samples/jqueryadapter.html +99 -0
- data/app/assets/javascripts/ckeditor/_samples/output_for_flash.html +275 -0
- data/app/assets/javascripts/ckeditor/_samples/output_html.html +285 -0
- data/app/assets/javascripts/ckeditor/_samples/output_xhtml.html +177 -0
- data/app/assets/javascripts/ckeditor/_samples/php/advanced.php +120 -0
- data/app/assets/javascripts/ckeditor/_samples/php/events.php +153 -0
- data/app/assets/javascripts/ckeditor/_samples/php/index.html +47 -0
- data/app/assets/javascripts/ckeditor/_samples/php/replace.php +87 -0
- data/app/assets/javascripts/ckeditor/_samples/php/replaceall.php +88 -0
- data/app/assets/javascripts/ckeditor/_samples/php/standalone.php +83 -0
- data/app/assets/javascripts/ckeditor/_samples/placeholder.html +81 -0
- data/app/assets/javascripts/ckeditor/_samples/readonly.html +91 -0
- data/app/assets/javascripts/ckeditor/_samples/replacebyclass.html +64 -0
- data/app/assets/javascripts/ckeditor/_samples/replacebycode.html +97 -0
- data/app/assets/javascripts/ckeditor/_samples/sample.css +163 -0
- data/app/assets/javascripts/ckeditor/_samples/sample.js +65 -0
- data/app/assets/javascripts/ckeditor/_samples/sample_posteddata.php +21 -0
- data/app/assets/javascripts/ckeditor/_samples/sharedspaces.html +153 -0
- data/app/assets/javascripts/ckeditor/_samples/skins.html +110 -0
- data/app/assets/javascripts/ckeditor/_samples/stylesheetparser.html +93 -0
- data/app/assets/javascripts/ckeditor/_samples/tableresize.html +115 -0
- data/app/assets/javascripts/ckeditor/_samples/ui_color.html +129 -0
- data/app/assets/javascripts/ckeditor/_samples/ui_languages.html +134 -0
- data/app/assets/javascripts/ckeditor/_source/adapters/jquery.js +306 -0
- data/app/assets/javascripts/ckeditor/_source/core/_bootstrap.js +87 -0
- data/app/assets/javascripts/ckeditor/_source/core/ckeditor.js +141 -0
- data/app/assets/javascripts/ckeditor/_source/core/ckeditor_base.js +227 -0
- data/app/assets/javascripts/ckeditor/_source/core/ckeditor_basic.js +238 -0
- data/app/assets/javascripts/ckeditor/_source/core/command.js +209 -0
- data/app/assets/javascripts/ckeditor/_source/core/commanddefinition.js +129 -0
- data/app/assets/javascripts/ckeditor/_source/core/config.js +439 -0
- data/app/assets/javascripts/ckeditor/_source/core/dataprocessor.js +65 -0
- data/app/assets/javascripts/ckeditor/_source/core/dom.js +20 -0
- data/app/assets/javascripts/ckeditor/_source/core/dom/comment.js +32 -0
- data/app/assets/javascripts/ckeditor/_source/core/dom/document.js +251 -0
- data/app/assets/javascripts/ckeditor/_source/core/dom/documentfragment.js +49 -0
- data/app/assets/javascripts/ckeditor/_source/core/dom/domobject.js +258 -0
- data/app/assets/javascripts/ckeditor/_source/core/dom/element.js +1691 -0
- data/app/assets/javascripts/ckeditor/_source/core/dom/elementpath.js +119 -0
- data/app/assets/javascripts/ckeditor/_source/core/dom/event.js +145 -0
- data/app/assets/javascripts/ckeditor/_source/core/dom/node.js +696 -0
- data/app/assets/javascripts/ckeditor/_source/core/dom/nodelist.js +26 -0
- data/app/assets/javascripts/ckeditor/_source/core/dom/range.js +2054 -0
- data/app/assets/javascripts/ckeditor/_source/core/dom/rangelist.js +213 -0
- data/app/assets/javascripts/ckeditor/_source/core/dom/text.js +128 -0
- data/app/assets/javascripts/ckeditor/_source/core/dom/walker.js +462 -0
- data/app/assets/javascripts/ckeditor/_source/core/dom/window.js +96 -0
- data/app/assets/javascripts/ckeditor/_source/core/dtd.js +266 -0
- data/app/assets/javascripts/ckeditor/_source/core/editor.js +1059 -0
- data/app/assets/javascripts/ckeditor/_source/core/editor_basic.js +186 -0
- data/app/assets/javascripts/ckeditor/_source/core/env.js +305 -0
- data/app/assets/javascripts/ckeditor/_source/core/event.js +342 -0
- data/app/assets/javascripts/ckeditor/_source/core/eventInfo.js +120 -0
- data/app/assets/javascripts/ckeditor/_source/core/focusmanager.js +152 -0
- data/app/assets/javascripts/ckeditor/_source/core/htmlparser.js +224 -0
- data/app/assets/javascripts/ckeditor/_source/core/htmlparser/basicwriter.js +145 -0
- data/app/assets/javascripts/ckeditor/_source/core/htmlparser/cdata.js +43 -0
- data/app/assets/javascripts/ckeditor/_source/core/htmlparser/comment.js +60 -0
- data/app/assets/javascripts/ckeditor/_source/core/htmlparser/element.js +308 -0
- data/app/assets/javascripts/ckeditor/_source/core/htmlparser/filter.js +288 -0
- data/app/assets/javascripts/ckeditor/_source/core/htmlparser/fragment.js +518 -0
- data/app/assets/javascripts/ckeditor/_source/core/htmlparser/text.js +53 -0
- data/app/assets/javascripts/ckeditor/_source/core/lang.js +157 -0
- data/app/assets/javascripts/ckeditor/_source/core/loader.js +240 -0
- data/app/assets/javascripts/ckeditor/_source/core/plugindefinition.js +83 -0
- data/app/assets/javascripts/ckeditor/_source/core/plugins.js +103 -0
- data/app/assets/javascripts/ckeditor/_source/core/resourcemanager.js +238 -0
- data/app/assets/javascripts/ckeditor/_source/core/scriptloader.js +180 -0
- data/app/assets/javascripts/ckeditor/_source/core/skins.js +184 -0
- data/app/assets/javascripts/ckeditor/_source/core/themes.js +19 -0
- data/app/assets/javascripts/ckeditor/_source/core/tools.js +763 -0
- data/app/assets/javascripts/ckeditor/_source/core/ui.js +128 -0
- data/app/assets/javascripts/ckeditor/_source/lang/_languages.js +84 -0
- data/app/assets/javascripts/ckeditor/_source/lang/_translationstatus.txt +61 -0
- data/app/assets/javascripts/ckeditor/_source/lang/af.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/ar.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/bg.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/bn.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/bs.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/ca.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/cs.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/cy.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/da.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/de.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/el.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/en-au.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/en-ca.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/en-gb.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/en.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/eo.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/es.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/et.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/eu.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/fa.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/fi.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/fo.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/fr-ca.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/fr.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/gl.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/gu.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/he.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/hi.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/hr.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/hu.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/is.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/it.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/ja.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/ka.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/km.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/ko.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/lt.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/lv.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/mn.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/ms.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/nb.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/nl.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/no.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/pl.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/pt-br.js +814 -0
- data/app/assets/javascripts/ckeditor/_source/lang/pt.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/ro.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/ru.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/sk.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/sl.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/sr-latn.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/sr.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/sv.js +814 -0
- data/app/assets/javascripts/ckeditor/_source/lang/th.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/tr.js +814 -0
- data/app/assets/javascripts/ckeditor/_source/lang/uk.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/vi.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/zh-cn.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/lang/zh.js +815 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/dialogs/a11yhelp.js +222 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/en.js +108 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/he.js +216 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/plugin.js +47 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/about/dialogs/about.js +76 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/about/dialogs/logo_ckeditor.png +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/about/plugin.js +24 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/adobeair/plugin.js +228 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/ajax/plugin.js +152 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/autogrow/plugin.js +141 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/basicstyles/plugin.js +129 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/bbcode/plugin.js +931 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/bidi/plugin.js +334 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/blockquote/plugin.js +305 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/button/plugin.js +290 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/clipboard/dialogs/paste.js +223 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/clipboard/plugin.js +453 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/colorbutton/plugin.js +301 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/colordialog/dialogs/colordialog.js +340 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/colordialog/plugin.js +15 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/contextmenu/plugin.js +179 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/en.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/devtools/plugin.js +173 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/dialog/dialogDefinition.js +1166 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/dialog/plugin.js +3308 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/dialogadvtab/plugin.js +208 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/dialogui/plugin.js +1541 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/div/dialogs/div.js +535 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/div/plugin.js +121 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/docprops/dialogs/docprops.js +674 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/docprops/plugin.js +22 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/domiterator/plugin.js +361 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/editingblock/plugin.js +278 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/elementspath/plugin.js +218 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/enterkey/plugin.js +433 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/entities/plugin.js +250 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/fakeobjects/plugin.js +175 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/filebrowser/plugin.js +534 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/find/dialogs/find.js +915 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/find/plugin.js +47 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/flash/dialogs/flash.js +674 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/flash/images/placeholder.png +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/flash/plugin.js +154 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/floatpanel/plugin.js +428 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/font/plugin.js +234 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/format/plugin.js +197 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/forms/dialogs/button.js +118 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/forms/dialogs/checkbox.js +153 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/forms/dialogs/form.js +177 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/forms/dialogs/hiddenfield.js +100 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/forms/dialogs/radio.js +135 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/forms/dialogs/select.js +558 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/forms/dialogs/textarea.js +135 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/forms/dialogs/textfield.js +199 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/forms/images/hiddenfield.gif +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/forms/plugin.js +288 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/horizontalrule/plugin.js +48 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/htmldataprocessor/plugin.js +596 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/htmlwriter/plugin.js +319 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/iframe/dialogs/iframe.js +229 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/iframe/images/placeholder.png +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/iframe/plugin.js +87 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/iframedialog/plugin.js +188 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/image/dialogs/image.js +1407 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/image/plugin.js +81 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/indent/plugin.js +461 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/justify/plugin.js +253 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/keystrokes/plugin.js +225 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/link/dialogs/anchor.js +144 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/link/dialogs/link.js +1425 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/link/images/anchor.gif +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/link/plugin.js +374 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/list/plugin.js +774 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/listblock/plugin.js +266 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/liststyle/dialogs/liststyle.js +225 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/liststyle/plugin.js +66 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/maximize/plugin.js +353 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/menu/plugin.js +541 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/menubutton/plugin.js +98 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/newpage/plugin.js +55 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/pagebreak/images/pagebreak.gif +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/pagebreak/plugin.js +164 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/panel/plugin.js +400 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/panelbutton/plugin.js +144 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/pastefromword/filter/default.js +1367 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/pastefromword/plugin.js +141 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/pastetext/dialogs/pastetext.js +67 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/pastetext/plugin.js +98 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/dialogs/placeholder.js +71 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/en.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/he.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/placeholder.gif +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/plugin.js +171 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/popup/plugin.js +64 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/preview/plugin.js +113 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/print/plugin.js +42 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/removeformat/plugin.js +185 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/resize/plugin.js +168 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/richcombo/plugin.js +381 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/save/plugin.js +56 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/scayt/dialogs/options.js +537 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/scayt/dialogs/toolbar.css +71 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/scayt/plugin.js +973 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/selection/plugin.js +1729 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/showblocks/images/block_address.png +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/showblocks/images/block_blockquote.png +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/showblocks/images/block_div.png +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/showblocks/images/block_h1.png +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/showblocks/images/block_h2.png +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/showblocks/images/block_h3.png +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/showblocks/images/block_h4.png +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/showblocks/images/block_h5.png +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/showblocks/images/block_h6.png +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/showblocks/images/block_p.png +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/showblocks/images/block_pre.png +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/showblocks/plugin.js +160 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/showborders/plugin.js +207 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/smiley/dialogs/smiley.js +224 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/angel_smile.gif +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/angry_smile.gif +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/broken_heart.gif +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/confused_smile.gif +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/cry_smile.gif +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/devil_smile.gif +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/embaressed_smile.gif +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/envelope.gif +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/heart.gif +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/kiss.gif +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/lightbulb.gif +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/omg_smile.gif +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/regular_smile.gif +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/sad_smile.gif +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/shades_smile.gif +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/teeth_smile.gif +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/thumbs_down.gif +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/thumbs_up.gif +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/tounge_smile.gif +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/whatchutalkingabout_smile.gif +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/smiley/images/wink_smile.gif +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/smiley/plugin.js +94 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/sourcearea/plugin.js +209 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/dialogs/specialchar.js +350 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/lang/en.js +122 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/plugin.js +70 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/styles/plugin.js +1700 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/styles/styles/default.js +88 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/stylescombo/plugin.js +218 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/stylesheetparser/plugin.js +148 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/tab/plugin.js +367 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/table/dialogs/table.js +623 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/table/plugin.js +78 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/tableresize/plugin.js +443 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/tabletools/dialogs/tableCell.js +525 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/tabletools/plugin.js +1194 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/templates/dialogs/templates.js +234 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/templates/plugin.js +99 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/templates/templates/default.js +94 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/templates/templates/images/template1.gif +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/templates/templates/images/template2.gif +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/templates/templates/images/template3.gif +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/toolbar/plugin.js +545 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/dialogs/uicolor.js +205 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/en.js +15 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/he.js +15 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/plugin.js +37 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/uicolor.gif +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/yui/assets/hue_bg.png +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/yui/assets/hue_thumb.png +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/yui/assets/picker_mask.png +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/yui/assets/picker_thumb.png +0 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/yui/assets/yui.css +15 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/yui/yui.js +71 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/undo/plugin.js +578 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/wsc/dialogs/ciframe.html +49 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/wsc/dialogs/tmpFrameset.html +52 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/wsc/dialogs/wsc.css +82 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/wsc/dialogs/wsc.js +192 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/wsc/plugin.js +33 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/wysiwygarea/plugin.js +1347 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/xml/plugin.js +170 -0
- data/app/assets/javascripts/ckeditor/_source/skins/kama/dialog.css +989 -0
- data/app/assets/javascripts/ckeditor/_source/skins/kama/editor.css +25 -0
- data/app/assets/javascripts/ckeditor/_source/skins/kama/elementspath.css +73 -0
- data/app/assets/javascripts/ckeditor/_source/skins/kama/icons.css +366 -0
- data/app/assets/javascripts/ckeditor/_source/skins/kama/icons.png +0 -0
- data/app/assets/javascripts/ckeditor/_source/skins/kama/icons_rtl.png +0 -0
- data/app/assets/javascripts/ckeditor/_source/skins/kama/images/dialog_sides.gif +0 -0
- data/app/assets/javascripts/ckeditor/_source/skins/kama/images/dialog_sides.png +0 -0
- data/app/assets/javascripts/ckeditor/_source/skins/kama/images/dialog_sides_rtl.png +0 -0
- data/app/assets/javascripts/ckeditor/_source/skins/kama/images/mini.gif +0 -0
- data/app/assets/javascripts/ckeditor/_source/skins/kama/images/noimage.png +0 -0
- data/app/assets/javascripts/ckeditor/_source/skins/kama/images/sprites.png +0 -0
- data/app/assets/javascripts/ckeditor/_source/skins/kama/images/sprites_ie6.png +0 -0
- data/app/assets/javascripts/ckeditor/_source/skins/kama/images/toolbar_start.gif +0 -0
- data/app/assets/javascripts/ckeditor/_source/skins/kama/mainui.css +206 -0
- data/app/assets/javascripts/ckeditor/_source/skins/kama/menu.css +232 -0
- data/app/assets/javascripts/ckeditor/_source/skins/kama/panel.css +217 -0
- data/app/assets/javascripts/ckeditor/_source/skins/kama/presets.css +49 -0
- data/app/assets/javascripts/ckeditor/_source/skins/kama/reset.css +85 -0
- data/app/assets/javascripts/ckeditor/_source/skins/kama/richcombo.css +287 -0
- data/app/assets/javascripts/ckeditor/_source/skins/kama/skin.js +236 -0
- data/app/assets/javascripts/ckeditor/_source/skins/kama/templates.css +88 -0
- data/app/assets/javascripts/ckeditor/_source/skins/kama/toolbar.css +408 -0
- data/app/assets/javascripts/ckeditor/_source/skins/office2003/dialog.css +891 -0
- data/app/assets/javascripts/ckeditor/_source/skins/office2003/editor.css +25 -0
- data/app/assets/javascripts/ckeditor/_source/skins/office2003/elementspath.css +74 -0
- data/app/assets/javascripts/ckeditor/_source/skins/office2003/icons.css +363 -0
- data/app/assets/javascripts/ckeditor/_source/skins/office2003/icons.png +0 -0
- data/app/assets/javascripts/ckeditor/_source/skins/office2003/icons_rtl.png +0 -0
- data/app/assets/javascripts/ckeditor/_source/skins/office2003/images/dialog_sides.gif +0 -0
- data/app/assets/javascripts/ckeditor/_source/skins/office2003/images/dialog_sides.png +0 -0
- data/app/assets/javascripts/ckeditor/_source/skins/office2003/images/dialog_sides_rtl.png +0 -0
- data/app/assets/javascripts/ckeditor/_source/skins/office2003/images/mini.gif +0 -0
- data/app/assets/javascripts/ckeditor/_source/skins/office2003/images/noimage.png +0 -0
- data/app/assets/javascripts/ckeditor/_source/skins/office2003/images/sprites.png +0 -0
- data/app/assets/javascripts/ckeditor/_source/skins/office2003/images/sprites_ie6.png +0 -0
- data/app/assets/javascripts/ckeditor/_source/skins/office2003/mainui.css +153 -0
- data/app/assets/javascripts/ckeditor/_source/skins/office2003/menu.css +229 -0
- data/app/assets/javascripts/ckeditor/_source/skins/office2003/panel.css +212 -0
- data/app/assets/javascripts/ckeditor/_source/skins/office2003/presets.css +49 -0
- data/app/assets/javascripts/ckeditor/_source/skins/office2003/reset.css +85 -0
- data/app/assets/javascripts/ckeditor/_source/skins/office2003/richcombo.css +309 -0
- data/app/assets/javascripts/ckeditor/_source/skins/office2003/skin.js +74 -0
- data/app/assets/javascripts/ckeditor/_source/skins/office2003/templates.css +87 -0
- data/app/assets/javascripts/ckeditor/_source/skins/office2003/toolbar.css +522 -0
- data/app/assets/javascripts/ckeditor/_source/skins/v2/dialog.css +907 -0
- data/app/assets/javascripts/ckeditor/_source/skins/v2/editor.css +25 -0
- data/app/assets/javascripts/ckeditor/_source/skins/v2/elementspath.css +74 -0
- data/app/assets/javascripts/ckeditor/_source/skins/v2/icons.css +363 -0
- data/app/assets/javascripts/ckeditor/_source/skins/v2/icons.png +0 -0
- data/app/assets/javascripts/ckeditor/_source/skins/v2/icons_rtl.png +0 -0
- data/app/assets/javascripts/ckeditor/_source/skins/v2/images/dialog_sides.gif +0 -0
- data/app/assets/javascripts/ckeditor/_source/skins/v2/images/dialog_sides.png +0 -0
- data/app/assets/javascripts/ckeditor/_source/skins/v2/images/dialog_sides_rtl.png +0 -0
- data/app/assets/javascripts/ckeditor/_source/skins/v2/images/mini.gif +0 -0
- data/app/assets/javascripts/ckeditor/_source/skins/v2/images/noimage.png +0 -0
- data/app/assets/javascripts/ckeditor/_source/skins/v2/images/sprites.png +0 -0
- data/app/assets/javascripts/ckeditor/_source/skins/v2/images/sprites_ie6.png +0 -0
- data/app/assets/javascripts/ckeditor/_source/skins/v2/images/toolbar_start.gif +0 -0
- data/app/assets/javascripts/ckeditor/_source/skins/v2/mainui.css +162 -0
- data/app/assets/javascripts/ckeditor/_source/skins/v2/menu.css +232 -0
- data/app/assets/javascripts/ckeditor/_source/skins/v2/panel.css +212 -0
- data/app/assets/javascripts/ckeditor/_source/skins/v2/presets.css +50 -0
- data/app/assets/javascripts/ckeditor/_source/skins/v2/reset.css +85 -0
- data/app/assets/javascripts/ckeditor/_source/skins/v2/richcombo.css +302 -0
- data/app/assets/javascripts/ckeditor/_source/skins/v2/skin.js +70 -0
- data/app/assets/javascripts/ckeditor/_source/skins/v2/templates.css +87 -0
- data/app/assets/javascripts/ckeditor/_source/skins/v2/toolbar.css +465 -0
- data/app/assets/javascripts/ckeditor/_source/themes/default/theme.js +407 -0
- data/app/assets/javascripts/ckeditor/adapters/jquery.js +6 -0
- data/app/assets/javascripts/ckeditor/ckeditor.asp +955 -0
- data/app/assets/javascripts/ckeditor/ckeditor.js +149 -0
- data/app/assets/javascripts/ckeditor/ckeditor.pack +211 -0
- data/app/assets/javascripts/ckeditor/ckeditor.php +29 -0
- data/app/assets/javascripts/ckeditor/ckeditor_basic.js +8 -0
- data/app/assets/javascripts/ckeditor/ckeditor_basic_source.js +20 -0
- data/app/assets/javascripts/ckeditor/ckeditor_php4.php +566 -0
- data/app/assets/javascripts/ckeditor/ckeditor_php5.php +556 -0
- data/app/assets/javascripts/ckeditor/ckeditor_source.js +35 -0
- data/app/assets/javascripts/ckeditor/config.js +11 -0
- data/app/assets/javascripts/ckeditor/contents.css +25 -0
- data/app/assets/javascripts/ckeditor/images/spacer.gif +0 -0
- data/app/assets/javascripts/ckeditor/lang/_languages.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/_translationstatus.txt +61 -0
- data/app/assets/javascripts/ckeditor/lang/af.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/ar.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/bg.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/bn.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/bs.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/ca.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/cs.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/cy.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/da.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/de.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/el.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/en-au.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/en-ca.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/en-gb.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/en.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/eo.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/es.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/et.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/eu.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/fa.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/fi.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/fo.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/fr-ca.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/fr.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/gl.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/gu.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/he.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/hi.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/hr.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/hu.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/is.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/it.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/ja.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/ka.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/km.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/ko.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/lt.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/lv.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/mn.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/ms.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/nb.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/nl.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/no.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/pl.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/pt-br.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/pt.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/ro.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/ru.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/sk.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/sl.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/sr-latn.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/sr.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/sv.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/th.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/tr.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/uk.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/vi.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/zh-cn.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/zh.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js +7 -0
- data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/en.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/he.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/about/dialogs/about.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/about/dialogs/logo_ckeditor.png +0 -0
- data/app/assets/javascripts/ckeditor/plugins/adobeair/plugin.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/ajax/plugin.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/autogrow/plugin.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/bbcode/plugin.js +9 -0
- data/app/assets/javascripts/ckeditor/plugins/clipboard/dialogs/paste.js +7 -0
- data/app/assets/javascripts/ckeditor/plugins/colordialog/dialogs/colordialog.js +7 -0
- data/app/assets/javascripts/ckeditor/plugins/devtools/lang/en.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/devtools/plugin.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/dialog/dialogDefinition.js +4 -0
- data/app/assets/javascripts/ckeditor/plugins/div/dialogs/div.js +8 -0
- data/app/assets/javascripts/ckeditor/plugins/docprops/dialogs/docprops.js +10 -0
- data/app/assets/javascripts/ckeditor/plugins/docprops/plugin.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/find/dialogs/find.js +10 -0
- data/app/assets/javascripts/ckeditor/plugins/flash/dialogs/flash.js +9 -0
- data/app/assets/javascripts/ckeditor/plugins/flash/images/placeholder.png +0 -0
- data/app/assets/javascripts/ckeditor/plugins/forms/dialogs/button.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/forms/dialogs/checkbox.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/forms/dialogs/form.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/forms/dialogs/hiddenfield.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/forms/dialogs/radio.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/forms/dialogs/select.js +9 -0
- data/app/assets/javascripts/ckeditor/plugins/forms/dialogs/textarea.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/forms/dialogs/textfield.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/forms/images/hiddenfield.gif +0 -0
- data/app/assets/javascripts/ckeditor/plugins/iframe/dialogs/iframe.js +7 -0
- data/app/assets/javascripts/ckeditor/plugins/iframe/images/placeholder.png +0 -0
- data/app/assets/javascripts/ckeditor/plugins/iframedialog/plugin.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/image/dialogs/image.js +13 -0
- data/app/assets/javascripts/ckeditor/plugins/link/dialogs/anchor.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/link/dialogs/link.js +12 -0
- data/app/assets/javascripts/ckeditor/plugins/link/images/anchor.gif +0 -0
- data/app/assets/javascripts/ckeditor/plugins/liststyle/dialogs/liststyle.js +7 -0
- data/app/assets/javascripts/ckeditor/plugins/pagebreak/images/pagebreak.gif +0 -0
- data/app/assets/javascripts/ckeditor/plugins/pastefromword/filter/default.js +11 -0
- data/app/assets/javascripts/ckeditor/plugins/pastetext/dialogs/pastetext.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/placeholder/dialogs/placeholder.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/en.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/he.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/placeholder/placeholder.gif +0 -0
- data/app/assets/javascripts/ckeditor/plugins/placeholder/plugin.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/scayt/dialogs/options.js +8 -0
- data/app/assets/javascripts/ckeditor/plugins/scayt/dialogs/toolbar.css +6 -0
- data/app/assets/javascripts/ckeditor/plugins/showblocks/images/block_address.png +0 -0
- data/app/assets/javascripts/ckeditor/plugins/showblocks/images/block_blockquote.png +0 -0
- data/app/assets/javascripts/ckeditor/plugins/showblocks/images/block_div.png +0 -0
- data/app/assets/javascripts/ckeditor/plugins/showblocks/images/block_h1.png +0 -0
- data/app/assets/javascripts/ckeditor/plugins/showblocks/images/block_h2.png +0 -0
- data/app/assets/javascripts/ckeditor/plugins/showblocks/images/block_h3.png +0 -0
- data/app/assets/javascripts/ckeditor/plugins/showblocks/images/block_h4.png +0 -0
- data/app/assets/javascripts/ckeditor/plugins/showblocks/images/block_h5.png +0 -0
- data/app/assets/javascripts/ckeditor/plugins/showblocks/images/block_h6.png +0 -0
- data/app/assets/javascripts/ckeditor/plugins/showblocks/images/block_p.png +0 -0
- data/app/assets/javascripts/ckeditor/plugins/showblocks/images/block_pre.png +0 -0
- data/app/assets/javascripts/ckeditor/plugins/smiley/dialogs/smiley.js +7 -0
- data/app/assets/javascripts/ckeditor/plugins/smiley/images/angel_smile.gif +0 -0
- data/app/assets/javascripts/ckeditor/plugins/smiley/images/angry_smile.gif +0 -0
- data/app/assets/javascripts/ckeditor/plugins/smiley/images/broken_heart.gif +0 -0
- data/app/assets/javascripts/ckeditor/plugins/smiley/images/confused_smile.gif +0 -0
- data/app/assets/javascripts/ckeditor/plugins/smiley/images/cry_smile.gif +0 -0
- data/app/assets/javascripts/ckeditor/plugins/smiley/images/devil_smile.gif +0 -0
- data/app/assets/javascripts/ckeditor/plugins/smiley/images/embaressed_smile.gif +0 -0
- data/app/assets/javascripts/ckeditor/plugins/smiley/images/envelope.gif +0 -0
- data/app/assets/javascripts/ckeditor/plugins/smiley/images/heart.gif +0 -0
- data/app/assets/javascripts/ckeditor/plugins/smiley/images/kiss.gif +0 -0
- data/app/assets/javascripts/ckeditor/plugins/smiley/images/lightbulb.gif +0 -0
- data/app/assets/javascripts/ckeditor/plugins/smiley/images/omg_smile.gif +0 -0
- data/app/assets/javascripts/ckeditor/plugins/smiley/images/regular_smile.gif +0 -0
- data/app/assets/javascripts/ckeditor/plugins/smiley/images/sad_smile.gif +0 -0
- data/app/assets/javascripts/ckeditor/plugins/smiley/images/shades_smile.gif +0 -0
- data/app/assets/javascripts/ckeditor/plugins/smiley/images/teeth_smile.gif +0 -0
- data/app/assets/javascripts/ckeditor/plugins/smiley/images/thumbs_down.gif +0 -0
- data/app/assets/javascripts/ckeditor/plugins/smiley/images/thumbs_up.gif +0 -0
- data/app/assets/javascripts/ckeditor/plugins/smiley/images/tounge_smile.gif +0 -0
- data/app/assets/javascripts/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif +0 -0
- data/app/assets/javascripts/ckeditor/plugins/smiley/images/wink_smile.gif +0 -0
- data/app/assets/javascripts/ckeditor/plugins/specialchar/dialogs/specialchar.js +7 -0
- data/app/assets/javascripts/ckeditor/plugins/specialchar/lang/en.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/styles/styles/default.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/stylesheetparser/plugin.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/table/dialogs/table.js +9 -0
- data/app/assets/javascripts/ckeditor/plugins/tableresize/plugin.js +7 -0
- data/app/assets/javascripts/ckeditor/plugins/tabletools/dialogs/tableCell.js +8 -0
- data/app/assets/javascripts/ckeditor/plugins/templates/dialogs/templates.js +7 -0
- data/app/assets/javascripts/ckeditor/plugins/templates/templates/default.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/templates/templates/images/template1.gif +0 -0
- data/app/assets/javascripts/ckeditor/plugins/templates/templates/images/template2.gif +0 -0
- data/app/assets/javascripts/ckeditor/plugins/templates/templates/images/template3.gif +0 -0
- data/app/assets/javascripts/ckeditor/plugins/uicolor/dialogs/uicolor.js +7 -0
- data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/en.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/he.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/uicolor/plugin.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/uicolor/uicolor.gif +0 -0
- data/app/assets/javascripts/ckeditor/plugins/uicolor/yui/assets/hue_bg.png +0 -0
- data/app/assets/javascripts/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png +0 -0
- data/app/assets/javascripts/ckeditor/plugins/uicolor/yui/assets/picker_mask.png +0 -0
- data/app/assets/javascripts/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png +0 -0
- data/app/assets/javascripts/ckeditor/plugins/uicolor/yui/assets/yui.css +6 -0
- data/app/assets/javascripts/ckeditor/plugins/uicolor/yui/yui.js +76 -0
- data/app/assets/javascripts/ckeditor/plugins/wsc/dialogs/ciframe.html +49 -0
- data/app/assets/javascripts/ckeditor/plugins/wsc/dialogs/tmpFrameset.html +52 -0
- data/app/assets/javascripts/ckeditor/plugins/wsc/dialogs/wsc.css +6 -0
- data/app/assets/javascripts/ckeditor/plugins/wsc/dialogs/wsc.js +7 -0
- data/app/assets/javascripts/ckeditor/plugins/xml/plugin.js +6 -0
- data/app/assets/javascripts/ckeditor/skins/kama/dialog.css +10 -0
- data/app/assets/javascripts/ckeditor/skins/kama/editor.css +13 -0
- data/app/assets/javascripts/ckeditor/skins/kama/icons.png +0 -0
- data/app/assets/javascripts/ckeditor/skins/kama/icons_rtl.png +0 -0
- data/app/assets/javascripts/ckeditor/skins/kama/images/dialog_sides.gif +0 -0
- data/app/assets/javascripts/ckeditor/skins/kama/images/dialog_sides.png +0 -0
- data/app/assets/javascripts/ckeditor/skins/kama/images/dialog_sides_rtl.png +0 -0
- data/app/assets/javascripts/ckeditor/skins/kama/images/mini.gif +0 -0
- data/app/assets/javascripts/ckeditor/skins/kama/images/noimage.png +0 -0
- data/app/assets/javascripts/ckeditor/skins/kama/images/sprites.png +0 -0
- data/app/assets/javascripts/ckeditor/skins/kama/images/sprites_ie6.png +0 -0
- data/app/assets/javascripts/ckeditor/skins/kama/images/toolbar_start.gif +0 -0
- data/app/assets/javascripts/ckeditor/skins/kama/skin.js +7 -0
- data/app/assets/javascripts/ckeditor/skins/kama/templates.css +6 -0
- data/app/assets/javascripts/ckeditor/skins/office2003/dialog.css +9 -0
- data/app/assets/javascripts/ckeditor/skins/office2003/editor.css +14 -0
- data/app/assets/javascripts/ckeditor/skins/office2003/icons.png +0 -0
- data/app/assets/javascripts/ckeditor/skins/office2003/icons_rtl.png +0 -0
- data/app/assets/javascripts/ckeditor/skins/office2003/images/dialog_sides.gif +0 -0
- data/app/assets/javascripts/ckeditor/skins/office2003/images/dialog_sides.png +0 -0
- data/app/assets/javascripts/ckeditor/skins/office2003/images/dialog_sides_rtl.png +0 -0
- data/app/assets/javascripts/ckeditor/skins/office2003/images/mini.gif +0 -0
- data/app/assets/javascripts/ckeditor/skins/office2003/images/noimage.png +0 -0
- data/app/assets/javascripts/ckeditor/skins/office2003/images/sprites.png +0 -0
- data/app/assets/javascripts/ckeditor/skins/office2003/images/sprites_ie6.png +0 -0
- data/app/assets/javascripts/ckeditor/skins/office2003/skin.js +6 -0
- data/app/assets/javascripts/ckeditor/skins/office2003/templates.css +6 -0
- data/app/assets/javascripts/ckeditor/skins/v2/dialog.css +9 -0
- data/app/assets/javascripts/ckeditor/skins/v2/editor.css +13 -0
- data/app/assets/javascripts/ckeditor/skins/v2/icons.png +0 -0
- data/app/assets/javascripts/ckeditor/skins/v2/icons_rtl.png +0 -0
- data/app/assets/javascripts/ckeditor/skins/v2/images/dialog_sides.gif +0 -0
- data/app/assets/javascripts/ckeditor/skins/v2/images/dialog_sides.png +0 -0
- data/app/assets/javascripts/ckeditor/skins/v2/images/dialog_sides_rtl.png +0 -0
- data/app/assets/javascripts/ckeditor/skins/v2/images/mini.gif +0 -0
- data/app/assets/javascripts/ckeditor/skins/v2/images/noimage.png +0 -0
- data/app/assets/javascripts/ckeditor/skins/v2/images/sprites.png +0 -0
- data/app/assets/javascripts/ckeditor/skins/v2/images/sprites_ie6.png +0 -0
- data/app/assets/javascripts/ckeditor/skins/v2/images/toolbar_start.gif +0 -0
- data/app/assets/javascripts/ckeditor/skins/v2/skin.js +6 -0
- data/app/assets/javascripts/ckeditor/skins/v2/templates.css +6 -0
- data/app/assets/javascripts/ckeditor/themes/default/theme.js +8 -0
- data/app/assets/javascripts/refinery/ckeditor.js.coffee +61 -0
- data/app/assets/javascripts/refinery/wymeditor.js.coffee +3 -0
- data/app/assets/javascripts/wymeditor/lang/en.js +0 -0
- data/app/assets/javascripts/wymeditor/skins/refinery/skin.js +0 -0
- data/app/assets/stylesheets/ckeditor.css.sass +14 -0
- data/app/assets/stylesheets/refinery/ckeditor.css.sass +73 -0
- data/app/views/refinery/admin/pages/_page_part_field.html.haml +25 -0
- data/config/initializers/refinery/ckeditor.rb +6 -0
- data/lib/refinery/ckeditor/version.rb +5 -0
- data/lib/refinerycms-ckeditor.rb +7 -0
- data/refinerycms-ckeditor.gemspec +17 -0
- metadata +721 -0
|
@@ -0,0 +1,815 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
|
|
3
|
+
For licensing, see LICENSE.html or http://ckeditor.com/license
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* @fileOverview Defines the {@link CKEDITOR.lang} object, for the
|
|
8
|
+
* Esperanto language.
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
/**#@+
|
|
12
|
+
@type String
|
|
13
|
+
@example
|
|
14
|
+
*/
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* Contains the dictionary of language entries.
|
|
18
|
+
* @namespace
|
|
19
|
+
*/
|
|
20
|
+
CKEDITOR.lang['eo'] =
|
|
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
|
+
toolbars : 'Editor toolbars', // MISSING
|
|
38
|
+
editor : 'Rich Text Editor', // MISSING
|
|
39
|
+
|
|
40
|
+
// Toolbar buttons without dialogs.
|
|
41
|
+
source : 'Fonto',
|
|
42
|
+
newPage : 'Nova Paĝo',
|
|
43
|
+
save : 'Sekurigi',
|
|
44
|
+
preview : 'Vidigi Aspekton',
|
|
45
|
+
cut : 'Eltondi',
|
|
46
|
+
copy : 'Kopii',
|
|
47
|
+
paste : 'Interglui',
|
|
48
|
+
print : 'Presi',
|
|
49
|
+
underline : 'Substreko',
|
|
50
|
+
bold : 'Grasa',
|
|
51
|
+
italic : 'Kursiva',
|
|
52
|
+
selectAll : 'Elekti ĉion',
|
|
53
|
+
removeFormat : 'Forigi Formaton',
|
|
54
|
+
strike : 'Trastreko',
|
|
55
|
+
subscript : 'Subskribo',
|
|
56
|
+
superscript : 'Superskribo',
|
|
57
|
+
horizontalrule : 'Enmeti Horizonta Linio',
|
|
58
|
+
pagebreak : 'Insert Page Break for Printing', // MISSING
|
|
59
|
+
pagebreakAlt : 'Page Break', // MISSING
|
|
60
|
+
unlink : 'Forigi Ligilon',
|
|
61
|
+
undo : 'Malfari',
|
|
62
|
+
redo : 'Refari',
|
|
63
|
+
|
|
64
|
+
// Common messages and labels.
|
|
65
|
+
common :
|
|
66
|
+
{
|
|
67
|
+
browseServer : 'Foliumi en la Servilo',
|
|
68
|
+
url : 'URL',
|
|
69
|
+
protocol : 'Protokolo',
|
|
70
|
+
upload : 'Alŝuti',
|
|
71
|
+
uploadSubmit : 'Sendu al Servilo',
|
|
72
|
+
image : 'Bildo',
|
|
73
|
+
flash : 'Flash', // MISSING
|
|
74
|
+
form : 'Formularo',
|
|
75
|
+
checkbox : 'Markobutono',
|
|
76
|
+
radio : 'Radiobutono',
|
|
77
|
+
textField : 'Teksta kampo',
|
|
78
|
+
textarea : 'Teksta Areo',
|
|
79
|
+
hiddenField : 'Kaŝita Kampo',
|
|
80
|
+
button : 'Butono',
|
|
81
|
+
select : 'Elekta Kampo',
|
|
82
|
+
imageButton : 'Bildbutono',
|
|
83
|
+
notSet : '<Defaŭlta>',
|
|
84
|
+
id : 'Id',
|
|
85
|
+
name : 'Nomo',
|
|
86
|
+
langDir : 'Skribdirekto',
|
|
87
|
+
langDirLtr : 'De maldekstro dekstren (LTR)',
|
|
88
|
+
langDirRtl : 'De dekstro maldekstren (RTL)',
|
|
89
|
+
langCode : 'Lingva Kodo',
|
|
90
|
+
longDescr : 'URL de Longa Priskribo',
|
|
91
|
+
cssClass : 'Klasoj de Stilfolioj',
|
|
92
|
+
advisoryTitle : 'Indika Titolo',
|
|
93
|
+
cssStyle : 'Stilo',
|
|
94
|
+
ok : 'Akcepti',
|
|
95
|
+
cancel : 'Rezigni',
|
|
96
|
+
close : 'Close', // MISSING
|
|
97
|
+
preview : 'Preview', // MISSING
|
|
98
|
+
generalTab : 'General', // MISSING
|
|
99
|
+
advancedTab : 'Speciala',
|
|
100
|
+
validateNumberFailed : 'This value is not a number.', // MISSING
|
|
101
|
+
confirmNewPage : 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
|
|
102
|
+
confirmCancel : 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
|
|
103
|
+
options : 'Options', // MISSING
|
|
104
|
+
target : 'Target', // MISSING
|
|
105
|
+
targetNew : 'New Window (_blank)', // MISSING
|
|
106
|
+
targetTop : 'Topmost Window (_top)', // MISSING
|
|
107
|
+
targetSelf : 'Same Window (_self)', // MISSING
|
|
108
|
+
targetParent : 'Parent Window (_parent)', // MISSING
|
|
109
|
+
langDirLTR : 'Left to Right (LTR)', // MISSING
|
|
110
|
+
langDirRTL : 'Right to Left (RTL)', // MISSING
|
|
111
|
+
styles : 'Style', // MISSING
|
|
112
|
+
cssClasses : 'Stylesheet Classes', // MISSING
|
|
113
|
+
width : 'Larĝo',
|
|
114
|
+
height : 'Alto',
|
|
115
|
+
align : 'Ĝisrandigo',
|
|
116
|
+
alignLeft : 'Maldekstre',
|
|
117
|
+
alignRight : 'Dekstre',
|
|
118
|
+
alignCenter : 'Centre',
|
|
119
|
+
alignTop : 'Supre',
|
|
120
|
+
alignMiddle : 'Centre',
|
|
121
|
+
alignBottom : 'Malsupre',
|
|
122
|
+
invalidHeight : 'Height must be a number.', // MISSING
|
|
123
|
+
invalidWidth : 'Width must be a number.', // MISSING
|
|
124
|
+
invalidCssLength : 'Value specified for the "%1" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).', // MISSING
|
|
125
|
+
invalidHtmlLength : 'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).', // MISSING
|
|
126
|
+
invalidInlineStyle : 'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.', // MISSING
|
|
127
|
+
cssLengthTooltip : 'Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).', // MISSING
|
|
128
|
+
|
|
129
|
+
// Put the voice-only part of the label in the span.
|
|
130
|
+
unavailable : '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
|
|
131
|
+
},
|
|
132
|
+
|
|
133
|
+
contextmenu :
|
|
134
|
+
{
|
|
135
|
+
options : 'Context Menu Options' // MISSING
|
|
136
|
+
},
|
|
137
|
+
|
|
138
|
+
// Special char dialog.
|
|
139
|
+
specialChar :
|
|
140
|
+
{
|
|
141
|
+
toolbar : 'Enmeti Specialan Signon',
|
|
142
|
+
title : 'Enmeti Specialan Signon',
|
|
143
|
+
options : 'Special Character Options' // MISSING
|
|
144
|
+
},
|
|
145
|
+
|
|
146
|
+
// Link dialog.
|
|
147
|
+
link :
|
|
148
|
+
{
|
|
149
|
+
toolbar : 'Enmeti/Ŝanĝi Ligilon',
|
|
150
|
+
other : '<other>', // MISSING
|
|
151
|
+
menu : 'Modifier Ligilon',
|
|
152
|
+
title : 'Ligilo',
|
|
153
|
+
info : 'Informoj pri la Ligilo',
|
|
154
|
+
target : 'Celo',
|
|
155
|
+
upload : 'Alŝuti',
|
|
156
|
+
advanced : 'Speciala',
|
|
157
|
+
type : 'Tipo de Ligilo',
|
|
158
|
+
toUrl : 'URL', // MISSING
|
|
159
|
+
toAnchor : 'Ankri en tiu ĉi paĝo',
|
|
160
|
+
toEmail : 'Retpoŝto',
|
|
161
|
+
targetFrame : '<kadro>',
|
|
162
|
+
targetPopup : '<ŝprucfenestro>',
|
|
163
|
+
targetFrameName : 'Nomo de Kadro',
|
|
164
|
+
targetPopupName : 'Nomo de Ŝprucfenestro',
|
|
165
|
+
popupFeatures : 'Atributoj de la Ŝprucfenestro',
|
|
166
|
+
popupResizable : 'Resizable', // MISSING
|
|
167
|
+
popupStatusBar : 'Statobreto',
|
|
168
|
+
popupLocationBar: 'Adresobreto',
|
|
169
|
+
popupToolbar : 'Ilobreto',
|
|
170
|
+
popupMenuBar : 'Menubreto',
|
|
171
|
+
popupFullScreen : 'Tutekrane (IE)',
|
|
172
|
+
popupScrollBars : 'Rulumlisteloj',
|
|
173
|
+
popupDependent : 'Dependa (Netscape)',
|
|
174
|
+
popupLeft : 'Pozicio de Maldekstro',
|
|
175
|
+
popupTop : 'Pozicio de Supro',
|
|
176
|
+
id : 'Id', // MISSING
|
|
177
|
+
langDir : 'Skribdirekto',
|
|
178
|
+
langDirLTR : 'De maldekstro dekstren (LTR)',
|
|
179
|
+
langDirRTL : 'De dekstro maldekstren (RTL)',
|
|
180
|
+
acccessKey : 'Fulmoklavo',
|
|
181
|
+
name : 'Nomo',
|
|
182
|
+
langCode : 'Skribdirekto',
|
|
183
|
+
tabIndex : 'Taba Ordo',
|
|
184
|
+
advisoryTitle : 'Indika Titolo',
|
|
185
|
+
advisoryContentType : 'Indika Enhavotipo',
|
|
186
|
+
cssClasses : 'Klasoj de Stilfolioj',
|
|
187
|
+
charset : 'Signaro de la Ligita Rimedo',
|
|
188
|
+
styles : 'Stilo',
|
|
189
|
+
rel : 'Relationship', // MISSING
|
|
190
|
+
selectAnchor : 'Elekti Ankron',
|
|
191
|
+
anchorName : 'Per Ankronomo',
|
|
192
|
+
anchorId : 'Per Elementidentigilo',
|
|
193
|
+
emailAddress : 'Retadreso',
|
|
194
|
+
emailSubject : 'Temlinio',
|
|
195
|
+
emailBody : 'Mesaĝa korpo',
|
|
196
|
+
noAnchors : '<Ne disponeblas ankroj en la dokumento>',
|
|
197
|
+
noUrl : 'Bonvolu entajpi la URL-on',
|
|
198
|
+
noEmail : 'Bonvolu entajpi la retadreson'
|
|
199
|
+
},
|
|
200
|
+
|
|
201
|
+
// Anchor dialog
|
|
202
|
+
anchor :
|
|
203
|
+
{
|
|
204
|
+
toolbar : 'Enmeti/Ŝanĝi Ankron',
|
|
205
|
+
menu : 'Ankraj Atributoj',
|
|
206
|
+
title : 'Ankraj Atributoj',
|
|
207
|
+
name : 'Ankra Nomo',
|
|
208
|
+
errorName : 'Bv tajpi la ankran nomon',
|
|
209
|
+
remove : 'Remove Anchor' // MISSING
|
|
210
|
+
},
|
|
211
|
+
|
|
212
|
+
// List style dialog
|
|
213
|
+
list:
|
|
214
|
+
{
|
|
215
|
+
numberedTitle : 'Numbered List Properties', // MISSING
|
|
216
|
+
bulletedTitle : 'Bulleted List Properties', // MISSING
|
|
217
|
+
type : 'Type', // MISSING
|
|
218
|
+
start : 'Start', // MISSING
|
|
219
|
+
validateStartNumber :'List start number must be a whole number.', // MISSING
|
|
220
|
+
circle : 'Circle', // MISSING
|
|
221
|
+
disc : 'Disc', // MISSING
|
|
222
|
+
square : 'Square', // MISSING
|
|
223
|
+
none : 'None', // MISSING
|
|
224
|
+
notset : '<not set>', // MISSING
|
|
225
|
+
armenian : 'Armenian numbering', // MISSING
|
|
226
|
+
georgian : 'Georgian numbering (an, ban, gan, etc.)', // MISSING
|
|
227
|
+
lowerRoman : 'Lower Roman (i, ii, iii, iv, v, etc.)', // MISSING
|
|
228
|
+
upperRoman : 'Upper Roman (I, II, III, IV, V, etc.)', // MISSING
|
|
229
|
+
lowerAlpha : 'Lower Alpha (a, b, c, d, e, etc.)', // MISSING
|
|
230
|
+
upperAlpha : 'Upper Alpha (A, B, C, D, E, etc.)', // MISSING
|
|
231
|
+
lowerGreek : 'Lower Greek (alpha, beta, gamma, etc.)', // MISSING
|
|
232
|
+
decimal : 'Decimal (1, 2, 3, etc.)', // MISSING
|
|
233
|
+
decimalLeadingZero : 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
|
|
234
|
+
},
|
|
235
|
+
|
|
236
|
+
// Find And Replace Dialog
|
|
237
|
+
findAndReplace :
|
|
238
|
+
{
|
|
239
|
+
title : 'Find and Replace', // MISSING
|
|
240
|
+
find : 'Serĉi',
|
|
241
|
+
replace : 'Anstataŭigi',
|
|
242
|
+
findWhat : 'Serĉi:',
|
|
243
|
+
replaceWith : 'Anstataŭigi per:',
|
|
244
|
+
notFoundMsg : 'La celteksto ne estas trovita.',
|
|
245
|
+
findOptions : 'Find Options', // MISSING
|
|
246
|
+
matchCase : 'Kongruigi Usklecon',
|
|
247
|
+
matchWord : 'Tuta Vorto',
|
|
248
|
+
matchCyclic : 'Match cyclic', // MISSING
|
|
249
|
+
replaceAll : 'Anstataŭigi Ĉiun',
|
|
250
|
+
replaceSuccessMsg : '%1 occurrence(s) replaced.' // MISSING
|
|
251
|
+
},
|
|
252
|
+
|
|
253
|
+
// Table Dialog
|
|
254
|
+
table :
|
|
255
|
+
{
|
|
256
|
+
toolbar : 'Tabelo',
|
|
257
|
+
title : 'Atributoj de Tabelo',
|
|
258
|
+
menu : 'Atributoj de Tabelo',
|
|
259
|
+
deleteTable : 'Delete Table', // MISSING
|
|
260
|
+
rows : 'Linioj',
|
|
261
|
+
columns : 'Kolumnoj',
|
|
262
|
+
border : 'Bordero',
|
|
263
|
+
widthPx : 'Bitbilderoj',
|
|
264
|
+
widthPc : 'elcentoj',
|
|
265
|
+
widthUnit : 'width unit', // MISSING
|
|
266
|
+
cellSpace : 'Interspacigo de Ĉeloj',
|
|
267
|
+
cellPad : 'Ĉirkaŭenhava Plenigado',
|
|
268
|
+
caption : 'Titolo',
|
|
269
|
+
summary : 'Summary', // MISSING
|
|
270
|
+
headers : 'Headers', // MISSING
|
|
271
|
+
headersNone : 'None', // MISSING
|
|
272
|
+
headersColumn : 'First column', // MISSING
|
|
273
|
+
headersRow : 'First Row', // MISSING
|
|
274
|
+
headersBoth : 'Both', // MISSING
|
|
275
|
+
invalidRows : 'Number of rows must be a number greater than 0.', // MISSING
|
|
276
|
+
invalidCols : 'Number of columns must be a number greater than 0.', // MISSING
|
|
277
|
+
invalidBorder : 'Border size must be a number.', // MISSING
|
|
278
|
+
invalidWidth : 'Table width must be a number.', // MISSING
|
|
279
|
+
invalidHeight : 'Table height must be a number.', // MISSING
|
|
280
|
+
invalidCellSpacing : 'Cell spacing must be a positive number.', // MISSING
|
|
281
|
+
invalidCellPadding : 'Cell padding must be a positive number.', // MISSING
|
|
282
|
+
|
|
283
|
+
cell :
|
|
284
|
+
{
|
|
285
|
+
menu : 'Cell', // MISSING
|
|
286
|
+
insertBefore : 'Insert Cell Before', // MISSING
|
|
287
|
+
insertAfter : 'Insert Cell After', // MISSING
|
|
288
|
+
deleteCell : 'Forigi Ĉelojn',
|
|
289
|
+
merge : 'Kunfandi Ĉelojn',
|
|
290
|
+
mergeRight : 'Merge Right', // MISSING
|
|
291
|
+
mergeDown : 'Merge Down', // MISSING
|
|
292
|
+
splitHorizontal : 'Split Cell Horizontally', // MISSING
|
|
293
|
+
splitVertical : 'Split Cell Vertically', // MISSING
|
|
294
|
+
title : 'Cell Properties', // MISSING
|
|
295
|
+
cellType : 'Cell Type', // MISSING
|
|
296
|
+
rowSpan : 'Rows Span', // MISSING
|
|
297
|
+
colSpan : 'Columns Span', // MISSING
|
|
298
|
+
wordWrap : 'Word Wrap', // MISSING
|
|
299
|
+
hAlign : 'Horizontal Alignment', // MISSING
|
|
300
|
+
vAlign : 'Vertical Alignment', // MISSING
|
|
301
|
+
alignBaseline : 'Baseline', // MISSING
|
|
302
|
+
bgColor : 'Background Color', // MISSING
|
|
303
|
+
borderColor : 'Border Color', // MISSING
|
|
304
|
+
data : 'Data', // MISSING
|
|
305
|
+
header : 'Header', // MISSING
|
|
306
|
+
yes : 'Yes', // MISSING
|
|
307
|
+
no : 'No', // MISSING
|
|
308
|
+
invalidWidth : 'Cell width must be a number.', // MISSING
|
|
309
|
+
invalidHeight : 'Cell height must be a number.', // MISSING
|
|
310
|
+
invalidRowSpan : 'Rows span must be a whole number.', // MISSING
|
|
311
|
+
invalidColSpan : 'Columns span must be a whole number.', // MISSING
|
|
312
|
+
chooseColor : 'Choose' // MISSING
|
|
313
|
+
},
|
|
314
|
+
|
|
315
|
+
row :
|
|
316
|
+
{
|
|
317
|
+
menu : 'Row', // MISSING
|
|
318
|
+
insertBefore : 'Insert Row Before', // MISSING
|
|
319
|
+
insertAfter : 'Insert Row After', // MISSING
|
|
320
|
+
deleteRow : 'Forigi Liniojn'
|
|
321
|
+
},
|
|
322
|
+
|
|
323
|
+
column :
|
|
324
|
+
{
|
|
325
|
+
menu : 'Column', // MISSING
|
|
326
|
+
insertBefore : 'Insert Column Before', // MISSING
|
|
327
|
+
insertAfter : 'Insert Column After', // MISSING
|
|
328
|
+
deleteColumn : 'Forigi Kolumnojn'
|
|
329
|
+
}
|
|
330
|
+
},
|
|
331
|
+
|
|
332
|
+
// Button Dialog.
|
|
333
|
+
button :
|
|
334
|
+
{
|
|
335
|
+
title : 'Butonaj Atributoj',
|
|
336
|
+
text : 'Teksto (Valoro)',
|
|
337
|
+
type : 'Tipo',
|
|
338
|
+
typeBtn : 'Button', // MISSING
|
|
339
|
+
typeSbm : 'Submit', // MISSING
|
|
340
|
+
typeRst : 'Reset' // MISSING
|
|
341
|
+
},
|
|
342
|
+
|
|
343
|
+
// Checkbox and Radio Button Dialogs.
|
|
344
|
+
checkboxAndRadio :
|
|
345
|
+
{
|
|
346
|
+
checkboxTitle : 'Markobutonaj Atributoj',
|
|
347
|
+
radioTitle : 'Radiobutonaj Atributoj',
|
|
348
|
+
value : 'Valoro',
|
|
349
|
+
selected : 'Elektita'
|
|
350
|
+
},
|
|
351
|
+
|
|
352
|
+
// Form Dialog.
|
|
353
|
+
form :
|
|
354
|
+
{
|
|
355
|
+
title : 'Formularaj Atributoj',
|
|
356
|
+
menu : 'Formularaj Atributoj',
|
|
357
|
+
action : 'Ago',
|
|
358
|
+
method : 'Metodo',
|
|
359
|
+
encoding : 'Encoding' // MISSING
|
|
360
|
+
},
|
|
361
|
+
|
|
362
|
+
// Select Field Dialog.
|
|
363
|
+
select :
|
|
364
|
+
{
|
|
365
|
+
title : 'Atributoj de Elekta Kampo',
|
|
366
|
+
selectInfo : 'Select Info', // MISSING
|
|
367
|
+
opAvail : 'Elektoj Disponeblaj',
|
|
368
|
+
value : 'Valoro',
|
|
369
|
+
size : 'Grando',
|
|
370
|
+
lines : 'Linioj',
|
|
371
|
+
chkMulti : 'Permesi Plurajn Elektojn',
|
|
372
|
+
opText : 'Teksto',
|
|
373
|
+
opValue : 'Valoro',
|
|
374
|
+
btnAdd : 'Aldoni',
|
|
375
|
+
btnModify : 'Modifi',
|
|
376
|
+
btnUp : 'Supren',
|
|
377
|
+
btnDown : 'Malsupren',
|
|
378
|
+
btnSetValue : 'Agordi kiel Elektitan Valoron',
|
|
379
|
+
btnDelete : 'Forigi'
|
|
380
|
+
},
|
|
381
|
+
|
|
382
|
+
// Textarea Dialog.
|
|
383
|
+
textarea :
|
|
384
|
+
{
|
|
385
|
+
title : 'Atributoj de Teksta Areo',
|
|
386
|
+
cols : 'Kolumnoj',
|
|
387
|
+
rows : 'Vicoj'
|
|
388
|
+
},
|
|
389
|
+
|
|
390
|
+
// Text Field Dialog.
|
|
391
|
+
textfield :
|
|
392
|
+
{
|
|
393
|
+
title : 'Atributoj de Teksta Kampo',
|
|
394
|
+
name : 'Nomo',
|
|
395
|
+
value : 'Valoro',
|
|
396
|
+
charWidth : 'Signolarĝo',
|
|
397
|
+
maxChars : 'Maksimuma Nombro da Signoj',
|
|
398
|
+
type : 'Tipo',
|
|
399
|
+
typeText : 'Teksto',
|
|
400
|
+
typePass : 'Pasvorto'
|
|
401
|
+
},
|
|
402
|
+
|
|
403
|
+
// Hidden Field Dialog.
|
|
404
|
+
hidden :
|
|
405
|
+
{
|
|
406
|
+
title : 'Atributoj de Kaŝita Kampo',
|
|
407
|
+
name : 'Nomo',
|
|
408
|
+
value : 'Valoro'
|
|
409
|
+
},
|
|
410
|
+
|
|
411
|
+
// Image Dialog.
|
|
412
|
+
image :
|
|
413
|
+
{
|
|
414
|
+
title : 'Atributoj de Bildo',
|
|
415
|
+
titleButton : 'Bildbutonaj Atributoj',
|
|
416
|
+
menu : 'Atributoj de Bildo',
|
|
417
|
+
infoTab : 'Informoj pri Bildo',
|
|
418
|
+
btnUpload : 'Sendu al Servilo',
|
|
419
|
+
upload : 'Alŝuti',
|
|
420
|
+
alt : 'Anstataŭiga Teksto',
|
|
421
|
+
lockRatio : 'Konservi Proporcion',
|
|
422
|
+
resetSize : 'Origina Grando',
|
|
423
|
+
border : 'Bordero',
|
|
424
|
+
hSpace : 'HSpaco',
|
|
425
|
+
vSpace : 'VSpaco',
|
|
426
|
+
alertUrl : 'Bonvolu tajpi la URL de la bildo',
|
|
427
|
+
linkTab : 'Link', // MISSING
|
|
428
|
+
button2Img : 'Do you want to transform the selected image button on a simple image?', // MISSING
|
|
429
|
+
img2Button : 'Do you want to transform the selected image on a image button?', // MISSING
|
|
430
|
+
urlMissing : 'Image source URL is missing.', // MISSING
|
|
431
|
+
validateBorder : 'Border must be a whole number.', // MISSING
|
|
432
|
+
validateHSpace : 'HSpace must be a whole number.', // MISSING
|
|
433
|
+
validateVSpace : 'VSpace must be a whole number.' // MISSING
|
|
434
|
+
},
|
|
435
|
+
|
|
436
|
+
// Flash Dialog
|
|
437
|
+
flash :
|
|
438
|
+
{
|
|
439
|
+
properties : 'Flash Properties', // MISSING
|
|
440
|
+
propertiesTab : 'Properties', // MISSING
|
|
441
|
+
title : 'Flash Properties', // MISSING
|
|
442
|
+
chkPlay : 'Auto Play', // MISSING
|
|
443
|
+
chkLoop : 'Loop', // MISSING
|
|
444
|
+
chkMenu : 'Enable Flash Menu', // MISSING
|
|
445
|
+
chkFull : 'Allow Fullscreen', // MISSING
|
|
446
|
+
scale : 'Scale', // MISSING
|
|
447
|
+
scaleAll : 'Show all', // MISSING
|
|
448
|
+
scaleNoBorder : 'No Border', // MISSING
|
|
449
|
+
scaleFit : 'Exact Fit', // MISSING
|
|
450
|
+
access : 'Script Access', // MISSING
|
|
451
|
+
accessAlways : 'Always', // MISSING
|
|
452
|
+
accessSameDomain: 'Same domain', // MISSING
|
|
453
|
+
accessNever : 'Never', // MISSING
|
|
454
|
+
alignAbsBottom : 'Abs Malsupre',
|
|
455
|
+
alignAbsMiddle : 'Abs Centre',
|
|
456
|
+
alignBaseline : 'Je Malsupro de Teksto',
|
|
457
|
+
alignTextTop : 'Je Supro de Teksto',
|
|
458
|
+
quality : 'Quality', // MISSING
|
|
459
|
+
qualityBest : 'Best', // MISSING
|
|
460
|
+
qualityHigh : 'High', // MISSING
|
|
461
|
+
qualityAutoHigh : 'Auto High', // MISSING
|
|
462
|
+
qualityMedium : 'Medium', // MISSING
|
|
463
|
+
qualityAutoLow : 'Auto Low', // MISSING
|
|
464
|
+
qualityLow : 'Low', // MISSING
|
|
465
|
+
windowModeWindow: 'Window', // MISSING
|
|
466
|
+
windowModeOpaque: 'Opaque', // MISSING
|
|
467
|
+
windowModeTransparent : 'Transparent', // MISSING
|
|
468
|
+
windowMode : 'Window mode', // MISSING
|
|
469
|
+
flashvars : 'Variables for Flash', // MISSING
|
|
470
|
+
bgcolor : 'Fona Koloro',
|
|
471
|
+
hSpace : 'HSpaco',
|
|
472
|
+
vSpace : 'VSpaco',
|
|
473
|
+
validateSrc : 'Bonvolu entajpi la URL-on',
|
|
474
|
+
validateHSpace : 'HSpace must be a number.', // MISSING
|
|
475
|
+
validateVSpace : 'VSpace must be a number.' // MISSING
|
|
476
|
+
},
|
|
477
|
+
|
|
478
|
+
// Speller Pages Dialog
|
|
479
|
+
spellCheck :
|
|
480
|
+
{
|
|
481
|
+
toolbar : 'Literumada Kontrolilo',
|
|
482
|
+
title : 'Spell Check', // MISSING
|
|
483
|
+
notAvailable : 'Sorry, but service is unavailable now.', // MISSING
|
|
484
|
+
errorLoading : 'Error loading application service host: %s.', // MISSING
|
|
485
|
+
notInDic : 'Ne trovita en la vortaro',
|
|
486
|
+
changeTo : 'Ŝanĝi al',
|
|
487
|
+
btnIgnore : 'Malatenti',
|
|
488
|
+
btnIgnoreAll : 'Malatenti Ĉiun',
|
|
489
|
+
btnReplace : 'Anstataŭigi',
|
|
490
|
+
btnReplaceAll : 'Anstataŭigi Ĉiun',
|
|
491
|
+
btnUndo : 'Malfari',
|
|
492
|
+
noSuggestions : '- Neniu propono -',
|
|
493
|
+
progress : 'Literumkontrolado daŭras...',
|
|
494
|
+
noMispell : 'Literumkontrolado finita: neniu fuŝo trovita',
|
|
495
|
+
noChanges : 'Literumkontrolado finita: neniu vorto ŝanĝita',
|
|
496
|
+
oneChange : 'Literumkontrolado finita: unu vorto ŝanĝita',
|
|
497
|
+
manyChanges : 'Literumkontrolado finita: %1 vortoj ŝanĝitaj',
|
|
498
|
+
ieSpellDownload : 'Literumada Kontrolilo ne instalita. Ĉu vi volas elŝuti ĝin nun?'
|
|
499
|
+
},
|
|
500
|
+
|
|
501
|
+
smiley :
|
|
502
|
+
{
|
|
503
|
+
toolbar : 'Mienvinjeto',
|
|
504
|
+
title : 'Enmeti Mienvinjeton',
|
|
505
|
+
options : 'Smiley Options' // MISSING
|
|
506
|
+
},
|
|
507
|
+
|
|
508
|
+
elementsPath :
|
|
509
|
+
{
|
|
510
|
+
eleLabel : 'Elements path', // MISSING
|
|
511
|
+
eleTitle : '%1 element' // MISSING
|
|
512
|
+
},
|
|
513
|
+
|
|
514
|
+
numberedlist : 'Numera Listo',
|
|
515
|
+
bulletedlist : 'Bula Listo',
|
|
516
|
+
indent : 'Pligrandigi Krommarĝenon',
|
|
517
|
+
outdent : 'Malpligrandigi Krommarĝenon',
|
|
518
|
+
|
|
519
|
+
justify :
|
|
520
|
+
{
|
|
521
|
+
left : 'Maldekstrigi',
|
|
522
|
+
center : 'Centrigi',
|
|
523
|
+
right : 'Dekstrigi',
|
|
524
|
+
block : 'Ĝisrandigi Ambaŭflanke'
|
|
525
|
+
},
|
|
526
|
+
|
|
527
|
+
blockquote : 'Block Quote', // MISSING
|
|
528
|
+
|
|
529
|
+
clipboard :
|
|
530
|
+
{
|
|
531
|
+
title : 'Interglui',
|
|
532
|
+
cutError : 'La sekurecagordo de via TTT-legilo ne permesas, ke la redaktilo faras eltondajn operaciojn. Bonvolu uzi la klavaron por tio (Ctrl/Cmd-X).',
|
|
533
|
+
copyError : 'La sekurecagordo de via TTT-legilo ne permesas, ke la redaktilo faras kopiajn operaciojn. Bonvolu uzi la klavaron por tio (Ctrl/Cmd-C).',
|
|
534
|
+
pasteMsg : 'Please paste inside the following box using the keyboard (<strong>Ctrl/Cmd+V</strong>) and hit OK', // MISSING
|
|
535
|
+
securityMsg : 'Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.', // MISSING
|
|
536
|
+
pasteArea : 'Paste Area' // MISSING
|
|
537
|
+
},
|
|
538
|
+
|
|
539
|
+
pastefromword :
|
|
540
|
+
{
|
|
541
|
+
confirmCleanup : 'The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?', // MISSING
|
|
542
|
+
toolbar : 'Interglui el Word',
|
|
543
|
+
title : 'Interglui el Word',
|
|
544
|
+
error : 'It was not possible to clean up the pasted data due to an internal error' // MISSING
|
|
545
|
+
},
|
|
546
|
+
|
|
547
|
+
pasteText :
|
|
548
|
+
{
|
|
549
|
+
button : 'Interglui kiel Tekston',
|
|
550
|
+
title : 'Interglui kiel Tekston'
|
|
551
|
+
},
|
|
552
|
+
|
|
553
|
+
templates :
|
|
554
|
+
{
|
|
555
|
+
button : 'Templates', // MISSING
|
|
556
|
+
title : 'Content Templates', // MISSING
|
|
557
|
+
options : 'Template Options', // MISSING
|
|
558
|
+
insertOption : 'Replace actual contents', // MISSING
|
|
559
|
+
selectPromptMsg : 'Please select the template to open in the editor', // MISSING
|
|
560
|
+
emptyListMsg : '(No templates defined)' // MISSING
|
|
561
|
+
},
|
|
562
|
+
|
|
563
|
+
showBlocks : 'Show Blocks', // MISSING
|
|
564
|
+
|
|
565
|
+
stylesCombo :
|
|
566
|
+
{
|
|
567
|
+
label : 'Stilo',
|
|
568
|
+
panelTitle : 'Formatting Styles', // MISSING
|
|
569
|
+
panelTitle1 : 'Block Styles', // MISSING
|
|
570
|
+
panelTitle2 : 'Inline Styles', // MISSING
|
|
571
|
+
panelTitle3 : 'Object Styles' // MISSING
|
|
572
|
+
},
|
|
573
|
+
|
|
574
|
+
format :
|
|
575
|
+
{
|
|
576
|
+
label : 'Formato',
|
|
577
|
+
panelTitle : 'Formato',
|
|
578
|
+
|
|
579
|
+
tag_p : 'Normala',
|
|
580
|
+
tag_pre : 'Formatita',
|
|
581
|
+
tag_address : 'Adreso',
|
|
582
|
+
tag_h1 : 'Titolo 1',
|
|
583
|
+
tag_h2 : 'Titolo 2',
|
|
584
|
+
tag_h3 : 'Titolo 3',
|
|
585
|
+
tag_h4 : 'Titolo 4',
|
|
586
|
+
tag_h5 : 'Titolo 5',
|
|
587
|
+
tag_h6 : 'Titolo 6',
|
|
588
|
+
tag_div : 'Paragrafo (DIV)'
|
|
589
|
+
},
|
|
590
|
+
|
|
591
|
+
div :
|
|
592
|
+
{
|
|
593
|
+
title : 'Create Div Container', // MISSING
|
|
594
|
+
toolbar : 'Create Div Container', // MISSING
|
|
595
|
+
cssClassInputLabel : 'Stylesheet Classes', // MISSING
|
|
596
|
+
styleSelectLabel : 'Style', // MISSING
|
|
597
|
+
IdInputLabel : 'Id', // MISSING
|
|
598
|
+
languageCodeInputLabel : ' Language Code', // MISSING
|
|
599
|
+
inlineStyleInputLabel : 'Inline Style', // MISSING
|
|
600
|
+
advisoryTitleInputLabel : 'Advisory Title', // MISSING
|
|
601
|
+
langDirLabel : 'Language Direction', // MISSING
|
|
602
|
+
langDirLTRLabel : 'Left to Right (LTR)', // MISSING
|
|
603
|
+
langDirRTLLabel : 'Right to Left (RTL)', // MISSING
|
|
604
|
+
edit : 'Edit Div', // MISSING
|
|
605
|
+
remove : 'Remove Div' // MISSING
|
|
606
|
+
},
|
|
607
|
+
|
|
608
|
+
iframe :
|
|
609
|
+
{
|
|
610
|
+
title : 'IFrame Properties', // MISSING
|
|
611
|
+
toolbar : 'IFrame', // MISSING
|
|
612
|
+
noUrl : 'Please type the iframe URL', // MISSING
|
|
613
|
+
scrolling : 'Enable scrollbars', // MISSING
|
|
614
|
+
border : 'Show frame border' // MISSING
|
|
615
|
+
},
|
|
616
|
+
|
|
617
|
+
font :
|
|
618
|
+
{
|
|
619
|
+
label : 'Tiparo',
|
|
620
|
+
voiceLabel : 'Font', // MISSING
|
|
621
|
+
panelTitle : 'Tiparo'
|
|
622
|
+
},
|
|
623
|
+
|
|
624
|
+
fontSize :
|
|
625
|
+
{
|
|
626
|
+
label : 'Grando',
|
|
627
|
+
voiceLabel : 'Font Size', // MISSING
|
|
628
|
+
panelTitle : 'Grando'
|
|
629
|
+
},
|
|
630
|
+
|
|
631
|
+
colorButton :
|
|
632
|
+
{
|
|
633
|
+
textColorTitle : 'Teksta Koloro',
|
|
634
|
+
bgColorTitle : 'Fona Koloro',
|
|
635
|
+
panelTitle : 'Colors', // MISSING
|
|
636
|
+
auto : 'Aŭtomata',
|
|
637
|
+
more : 'Pli da Koloroj...'
|
|
638
|
+
},
|
|
639
|
+
|
|
640
|
+
colors :
|
|
641
|
+
{
|
|
642
|
+
'000' : 'Black', // MISSING
|
|
643
|
+
'800000' : 'Maroon', // MISSING
|
|
644
|
+
'8B4513' : 'Saddle Brown', // MISSING
|
|
645
|
+
'2F4F4F' : 'Dark Slate Gray', // MISSING
|
|
646
|
+
'008080' : 'Teal', // MISSING
|
|
647
|
+
'000080' : 'Navy', // MISSING
|
|
648
|
+
'4B0082' : 'Indigo', // MISSING
|
|
649
|
+
'696969' : 'Dark Gray', // MISSING
|
|
650
|
+
'B22222' : 'Fire Brick', // MISSING
|
|
651
|
+
'A52A2A' : 'Brown', // MISSING
|
|
652
|
+
'DAA520' : 'Golden Rod', // MISSING
|
|
653
|
+
'006400' : 'Dark Green', // MISSING
|
|
654
|
+
'40E0D0' : 'Turquoise', // MISSING
|
|
655
|
+
'0000CD' : 'Medium Blue', // MISSING
|
|
656
|
+
'800080' : 'Purple', // MISSING
|
|
657
|
+
'808080' : 'Gray', // MISSING
|
|
658
|
+
'F00' : 'Red', // MISSING
|
|
659
|
+
'FF8C00' : 'Dark Orange', // MISSING
|
|
660
|
+
'FFD700' : 'Gold', // MISSING
|
|
661
|
+
'008000' : 'Green', // MISSING
|
|
662
|
+
'0FF' : 'Cyan', // MISSING
|
|
663
|
+
'00F' : 'Blue', // MISSING
|
|
664
|
+
'EE82EE' : 'Violet', // MISSING
|
|
665
|
+
'A9A9A9' : 'Dim Gray', // MISSING
|
|
666
|
+
'FFA07A' : 'Light Salmon', // MISSING
|
|
667
|
+
'FFA500' : 'Orange', // MISSING
|
|
668
|
+
'FFFF00' : 'Yellow', // MISSING
|
|
669
|
+
'00FF00' : 'Lime', // MISSING
|
|
670
|
+
'AFEEEE' : 'Pale Turquoise', // MISSING
|
|
671
|
+
'ADD8E6' : 'Light Blue', // MISSING
|
|
672
|
+
'DDA0DD' : 'Plum', // MISSING
|
|
673
|
+
'D3D3D3' : 'Light Grey', // MISSING
|
|
674
|
+
'FFF0F5' : 'Lavender Blush', // MISSING
|
|
675
|
+
'FAEBD7' : 'Antique White', // MISSING
|
|
676
|
+
'FFFFE0' : 'Light Yellow', // MISSING
|
|
677
|
+
'F0FFF0' : 'Honeydew', // MISSING
|
|
678
|
+
'F0FFFF' : 'Azure', // MISSING
|
|
679
|
+
'F0F8FF' : 'Alice Blue', // MISSING
|
|
680
|
+
'E6E6FA' : 'Lavender', // MISSING
|
|
681
|
+
'FFF' : 'White' // MISSING
|
|
682
|
+
},
|
|
683
|
+
|
|
684
|
+
scayt :
|
|
685
|
+
{
|
|
686
|
+
title : 'Spell Check As You Type', // MISSING
|
|
687
|
+
opera_title : 'Not supported by Opera', // MISSING
|
|
688
|
+
enable : 'Enable SCAYT', // MISSING
|
|
689
|
+
disable : 'Disable SCAYT', // MISSING
|
|
690
|
+
about : 'About SCAYT', // MISSING
|
|
691
|
+
toggle : 'Toggle SCAYT', // MISSING
|
|
692
|
+
options : 'Options', // MISSING
|
|
693
|
+
langs : 'Languages', // MISSING
|
|
694
|
+
moreSuggestions : 'More suggestions', // MISSING
|
|
695
|
+
ignore : 'Ignore', // MISSING
|
|
696
|
+
ignoreAll : 'Ignore All', // MISSING
|
|
697
|
+
addWord : 'Add Word', // MISSING
|
|
698
|
+
emptyDic : 'Dictionary name should not be empty.', // MISSING
|
|
699
|
+
|
|
700
|
+
optionsTab : 'Options', // MISSING
|
|
701
|
+
allCaps : 'Ignore All-Caps Words', // MISSING
|
|
702
|
+
ignoreDomainNames : 'Ignore Domain Names', // MISSING
|
|
703
|
+
mixedCase : 'Ignore Words with Mixed Case', // MISSING
|
|
704
|
+
mixedWithDigits : 'Ignore Words with Numbers', // MISSING
|
|
705
|
+
|
|
706
|
+
languagesTab : 'Languages', // MISSING
|
|
707
|
+
|
|
708
|
+
dictionariesTab : 'Dictionaries', // MISSING
|
|
709
|
+
dic_field_name : 'Dictionary name', // MISSING
|
|
710
|
+
dic_create : 'Create', // MISSING
|
|
711
|
+
dic_restore : 'Restore', // MISSING
|
|
712
|
+
dic_delete : 'Delete', // MISSING
|
|
713
|
+
dic_rename : 'Rename', // MISSING
|
|
714
|
+
dic_info : 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type its name and click the Restore button.', // MISSING
|
|
715
|
+
|
|
716
|
+
aboutTab : 'About' // MISSING
|
|
717
|
+
},
|
|
718
|
+
|
|
719
|
+
about :
|
|
720
|
+
{
|
|
721
|
+
title : 'About CKEditor', // MISSING
|
|
722
|
+
dlgTitle : 'About CKEditor', // MISSING
|
|
723
|
+
help : 'Check $1 for help.', // MISSING
|
|
724
|
+
userGuide : 'CKEditor User\'s Guide', // MISSING
|
|
725
|
+
moreInfo : 'For licensing information please visit our web site:', // MISSING
|
|
726
|
+
copy : 'Copyright © $1. All rights reserved.' // MISSING
|
|
727
|
+
},
|
|
728
|
+
|
|
729
|
+
maximize : 'Maximize', // MISSING
|
|
730
|
+
minimize : 'Minimize', // MISSING
|
|
731
|
+
|
|
732
|
+
fakeobjects :
|
|
733
|
+
{
|
|
734
|
+
anchor : 'Anchor', // MISSING
|
|
735
|
+
flash : 'Flash Animation', // MISSING
|
|
736
|
+
iframe : 'IFrame', // MISSING
|
|
737
|
+
hiddenfield : 'Hidden Field', // MISSING
|
|
738
|
+
unknown : 'Unknown Object' // MISSING
|
|
739
|
+
},
|
|
740
|
+
|
|
741
|
+
resize : 'Drag to resize', // MISSING
|
|
742
|
+
|
|
743
|
+
colordialog :
|
|
744
|
+
{
|
|
745
|
+
title : 'Select color', // MISSING
|
|
746
|
+
options : 'Color Options', // MISSING
|
|
747
|
+
highlight : 'Highlight', // MISSING
|
|
748
|
+
selected : 'Selected Color', // MISSING
|
|
749
|
+
clear : 'Clear' // MISSING
|
|
750
|
+
},
|
|
751
|
+
|
|
752
|
+
toolbarCollapse : 'Collapse Toolbar', // MISSING
|
|
753
|
+
toolbarExpand : 'Expand Toolbar', // MISSING
|
|
754
|
+
|
|
755
|
+
toolbarGroups :
|
|
756
|
+
{
|
|
757
|
+
document : 'Document', // MISSING
|
|
758
|
+
clipboard : 'Clipboard/Undo', // MISSING
|
|
759
|
+
editing : 'Editing', // MISSING
|
|
760
|
+
forms : 'Forms', // MISSING
|
|
761
|
+
basicstyles : 'Basic Styles', // MISSING
|
|
762
|
+
paragraph : 'Paragraph', // MISSING
|
|
763
|
+
links : 'Links', // MISSING
|
|
764
|
+
insert : 'Insert', // MISSING
|
|
765
|
+
styles : 'Styles', // MISSING
|
|
766
|
+
colors : 'Colors', // MISSING
|
|
767
|
+
tools : 'Tools' // MISSING
|
|
768
|
+
},
|
|
769
|
+
|
|
770
|
+
bidi :
|
|
771
|
+
{
|
|
772
|
+
ltr : 'Text direction from left to right', // MISSING
|
|
773
|
+
rtl : 'Text direction from right to left' // MISSING
|
|
774
|
+
},
|
|
775
|
+
|
|
776
|
+
docprops :
|
|
777
|
+
{
|
|
778
|
+
label : 'Dokumentaj Atributoj',
|
|
779
|
+
title : 'Dokumentaj Atributoj',
|
|
780
|
+
design : 'Design', // MISSING
|
|
781
|
+
meta : 'Metadatumoj',
|
|
782
|
+
chooseColor : 'Choose', // MISSING
|
|
783
|
+
other : '<other>',
|
|
784
|
+
docTitle : 'Paĝotitolo',
|
|
785
|
+
charset : 'Signara Kodo',
|
|
786
|
+
charsetOther : 'Alia Signara Kodo',
|
|
787
|
+
charsetASCII : 'ASCII', // MISSING
|
|
788
|
+
charsetCE : 'Central European', // MISSING
|
|
789
|
+
charsetCT : 'Chinese Traditional (Big5)', // MISSING
|
|
790
|
+
charsetCR : 'Cyrillic', // MISSING
|
|
791
|
+
charsetGR : 'Greek', // MISSING
|
|
792
|
+
charsetJP : 'Japanese', // MISSING
|
|
793
|
+
charsetKR : 'Korean', // MISSING
|
|
794
|
+
charsetTR : 'Turkish', // MISSING
|
|
795
|
+
charsetUN : 'Unicode (UTF-8)', // MISSING
|
|
796
|
+
charsetWE : 'Western European', // MISSING
|
|
797
|
+
docType : 'Dokumenta Tipo',
|
|
798
|
+
docTypeOther : 'Alia Dokumenta Tipo',
|
|
799
|
+
xhtmlDec : 'Inkluzivi XHTML Deklaroj',
|
|
800
|
+
bgColor : 'Fona Koloro',
|
|
801
|
+
bgImage : 'URL de Fona Bildo',
|
|
802
|
+
bgFixed : 'Neruluma Fono',
|
|
803
|
+
txtColor : 'Teksta Koloro',
|
|
804
|
+
margin : 'Paĝaj Marĝenoj',
|
|
805
|
+
marginTop : 'Supra',
|
|
806
|
+
marginLeft : 'Maldekstra',
|
|
807
|
+
marginRight : 'Dekstra',
|
|
808
|
+
marginBottom : 'Malsupra',
|
|
809
|
+
metaKeywords : 'Ŝlosilvortoj de la Dokumento (apartigita de komoj)',
|
|
810
|
+
metaDescription : 'Dokumenta Priskribo',
|
|
811
|
+
metaAuthor : 'Verkinto',
|
|
812
|
+
metaCopyright : 'Kopirajto',
|
|
813
|
+
previewHtml : '<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>' // MISSING
|
|
814
|
+
}
|
|
815
|
+
};
|