refinerycms-ckeditor 0.1.4 → 0.2.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/app/assets/javascripts/ckeditor/.htaccess +1 -1
- data/app/assets/javascripts/ckeditor/CHANGES.html +72 -2
- data/app/assets/javascripts/ckeditor/INSTALL.html +2 -2
- data/app/assets/javascripts/ckeditor/LICENSE.html +2 -2
- data/app/assets/javascripts/ckeditor/_samples/adobeair/application.xml +2 -2
- data/app/assets/javascripts/ckeditor/_samples/adobeair/run.bat +1 -1
- data/app/assets/javascripts/ckeditor/_samples/adobeair/run.sh +1 -1
- data/app/assets/javascripts/ckeditor/_samples/adobeair/sample.html +2 -2
- data/app/assets/javascripts/ckeditor/_samples/ajax.html +2 -2
- data/app/assets/javascripts/ckeditor/_samples/api.html +2 -2
- data/app/assets/javascripts/ckeditor/_samples/api_dialog.html +2 -2
- data/app/assets/javascripts/ckeditor/_samples/api_dialog/my_dialog.js +1 -1
- data/app/assets/javascripts/ckeditor/_samples/asp/advanced.asp +2 -2
- data/app/assets/javascripts/ckeditor/_samples/asp/events.asp +2 -2
- data/app/assets/javascripts/ckeditor/_samples/asp/index.html +2 -2
- data/app/assets/javascripts/ckeditor/_samples/asp/replace.asp +2 -2
- data/app/assets/javascripts/ckeditor/_samples/asp/replaceall.asp +2 -2
- data/app/assets/javascripts/ckeditor/_samples/asp/sample_posteddata.asp +2 -2
- data/app/assets/javascripts/ckeditor/_samples/asp/standalone.asp +2 -2
- data/app/assets/javascripts/ckeditor/_samples/assets/_posteddata.php +2 -2
- data/app/assets/javascripts/ckeditor/_samples/assets/output_xhtml.css +1 -1
- data/app/assets/javascripts/ckeditor/_samples/autogrow.html +2 -2
- data/app/assets/javascripts/ckeditor/_samples/bbcode.html +2 -2
- data/app/assets/javascripts/ckeditor/_samples/devtools.html +2 -2
- data/app/assets/javascripts/ckeditor/_samples/divreplace.html +2 -2
- data/app/assets/javascripts/ckeditor/_samples/enterkey.html +2 -2
- data/app/assets/javascripts/ckeditor/_samples/fullpage.html +2 -2
- data/app/assets/javascripts/ckeditor/_samples/index.html +2 -2
- data/app/assets/javascripts/ckeditor/_samples/jqueryadapter.html +2 -2
- data/app/assets/javascripts/ckeditor/_samples/output_for_flash.html +2 -2
- data/app/assets/javascripts/ckeditor/_samples/output_html.html +2 -2
- data/app/assets/javascripts/ckeditor/_samples/output_xhtml.html +10 -6
- data/app/assets/javascripts/ckeditor/_samples/php/advanced.php +2 -2
- data/app/assets/javascripts/ckeditor/_samples/php/events.php +2 -2
- data/app/assets/javascripts/ckeditor/_samples/php/index.html +2 -2
- data/app/assets/javascripts/ckeditor/_samples/php/replace.php +2 -2
- data/app/assets/javascripts/ckeditor/_samples/php/replaceall.php +2 -2
- data/app/assets/javascripts/ckeditor/_samples/php/standalone.php +2 -2
- data/app/assets/javascripts/ckeditor/_samples/placeholder.html +2 -2
- data/app/assets/javascripts/ckeditor/_samples/readonly.html +2 -2
- data/app/assets/javascripts/ckeditor/_samples/replacebyclass.html +2 -2
- data/app/assets/javascripts/ckeditor/_samples/replacebycode.html +2 -2
- data/app/assets/javascripts/ckeditor/_samples/sample.css +1 -1
- data/app/assets/javascripts/ckeditor/_samples/sample.js +1 -1
- data/app/assets/javascripts/ckeditor/_samples/sample_posteddata.php +1 -1
- data/app/assets/javascripts/ckeditor/_samples/sharedspaces.html +2 -2
- data/app/assets/javascripts/ckeditor/_samples/skins.html +2 -2
- data/app/assets/javascripts/ckeditor/_samples/stylesheetparser.html +2 -2
- data/app/assets/javascripts/ckeditor/_samples/tableresize.html +2 -2
- data/app/assets/javascripts/ckeditor/_samples/ui_color.html +2 -2
- data/app/assets/javascripts/ckeditor/_samples/ui_languages.html +2 -2
- data/app/assets/javascripts/ckeditor/_source/adapters/jquery.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/core/_bootstrap.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/core/ckeditor.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/core/ckeditor_base.js +13 -5
- data/app/assets/javascripts/ckeditor/_source/core/ckeditor_basic.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/core/command.js +17 -1
- data/app/assets/javascripts/ckeditor/_source/core/commanddefinition.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/core/config.js +19 -11
- data/app/assets/javascripts/ckeditor/_source/core/dataprocessor.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/core/dom.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/core/dom/comment.js +24 -12
- data/app/assets/javascripts/ckeditor/_source/core/dom/document.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/core/dom/documentfragment.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/core/dom/domobject.js +7 -7
- data/app/assets/javascripts/ckeditor/_source/core/dom/element.js +135 -30
- data/app/assets/javascripts/ckeditor/_source/core/dom/elementpath.js +1 -3
- data/app/assets/javascripts/ckeditor/_source/core/dom/event.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/core/dom/node.js +11 -16
- data/app/assets/javascripts/ckeditor/_source/core/dom/nodelist.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/core/dom/range.js +27 -13
- data/app/assets/javascripts/ckeditor/_source/core/dom/rangelist.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/core/dom/text.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/core/dom/walker.js +69 -35
- data/app/assets/javascripts/ckeditor/_source/core/dom/window.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/core/dtd.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/core/editor.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/core/editor_basic.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/core/env.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/core/event.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/core/eventInfo.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/core/focusmanager.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/core/htmlparser.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/core/htmlparser/basicwriter.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/core/htmlparser/cdata.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/core/htmlparser/comment.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/core/htmlparser/element.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/core/htmlparser/filter.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/core/htmlparser/fragment.js +26 -7
- data/app/assets/javascripts/ckeditor/_source/core/htmlparser/text.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/core/lang.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/core/loader.js +2 -2
- data/app/assets/javascripts/ckeditor/_source/core/plugindefinition.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/core/plugins.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/core/resourcemanager.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/core/scriptloader.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/core/skins.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/core/themes.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/core/tools.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/core/ui.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/lang/_languages.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/lang/_translationstatus.txt +25 -23
- data/app/assets/javascripts/ckeditor/_source/lang/af.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/lang/ar.js +4 -4
- data/app/assets/javascripts/ckeditor/_source/lang/bg.js +403 -403
- data/app/assets/javascripts/ckeditor/_source/lang/bn.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/lang/bs.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/lang/ca.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/lang/cs.js +28 -28
- data/app/assets/javascripts/ckeditor/_source/lang/cy.js +6 -6
- data/app/assets/javascripts/ckeditor/_source/lang/da.js +162 -162
- data/app/assets/javascripts/ckeditor/_source/lang/de.js +2 -2
- data/app/assets/javascripts/ckeditor/_source/lang/el.js +132 -132
- data/app/assets/javascripts/ckeditor/_source/lang/en-au.js +4 -4
- data/app/assets/javascripts/ckeditor/_source/lang/en-ca.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/lang/en-gb.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/lang/en.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/lang/eo.js +376 -376
- data/app/assets/javascripts/ckeditor/_source/lang/es.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/lang/et.js +2 -2
- data/app/assets/javascripts/ckeditor/_source/lang/eu.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/lang/fa.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/lang/fi.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/lang/fo.js +31 -31
- data/app/assets/javascripts/ckeditor/_source/lang/fr-ca.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/lang/fr.js +30 -30
- data/app/assets/javascripts/ckeditor/_source/lang/gl.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/lang/gu.js +261 -261
- data/app/assets/javascripts/ckeditor/_source/lang/he.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/lang/hi.js +7 -7
- data/app/assets/javascripts/ckeditor/_source/lang/hr.js +158 -158
- data/app/assets/javascripts/ckeditor/_source/lang/hu.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/lang/is.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/lang/it.js +4 -4
- data/app/assets/javascripts/ckeditor/_source/lang/ja.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/lang/ka.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/lang/km.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/lang/ko.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/lang/lt.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/lang/lv.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/lang/mk.js +814 -0
- data/app/assets/javascripts/ckeditor/_source/lang/mn.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/lang/ms.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/lang/nb.js +4 -4
- data/app/assets/javascripts/ckeditor/_source/lang/nl.js +35 -35
- data/app/assets/javascripts/ckeditor/_source/lang/no.js +4 -4
- data/app/assets/javascripts/ckeditor/_source/lang/pl.js +3 -3
- data/app/assets/javascripts/ckeditor/_source/lang/pt-br.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/lang/pt.js +34 -34
- data/app/assets/javascripts/ckeditor/_source/lang/ro.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/lang/ru.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/lang/sk.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/lang/sl.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/lang/sr-latn.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/lang/sr.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/lang/sv.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/lang/th.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/lang/tr.js +50 -50
- data/app/assets/javascripts/ckeditor/_source/lang/ug.js +814 -0
- data/app/assets/javascripts/ckeditor/_source/lang/uk.js +35 -35
- data/app/assets/javascripts/ckeditor/_source/lang/vi.js +84 -84
- data/app/assets/javascripts/ckeditor/_source/lang/zh-cn.js +4 -4
- data/app/assets/javascripts/ckeditor/_source/lang/zh.js +16 -16
- data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/dialogs/a11yhelp.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/_translationstatus.txt +23 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/cs.js +89 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/cy.js +89 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/da.js +89 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/de.js +89 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/el.js +89 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/en.js +3 -3
- data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/eo.js +89 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/fa.js +89 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/fi.js +89 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/fr.js +89 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/gu.js +89 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/he.js +6 -133
- data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/it.js +89 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/mk.js +89 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/nb.js +89 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/nl.js +89 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/no.js +89 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/tr.js +89 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/ug.js +89 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/vi.js +89 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/zh-cn.js +89 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/plugin.js +2 -2
- data/app/assets/javascripts/ckeditor/_source/plugins/about/dialogs/about.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/about/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/adobeair/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/ajax/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/autogrow/plugin.js +2 -2
- data/app/assets/javascripts/ckeditor/_source/plugins/basicstyles/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/bbcode/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/bidi/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/blockquote/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/button/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/clipboard/dialogs/paste.js +2 -2
- data/app/assets/javascripts/ckeditor/_source/plugins/clipboard/plugin.js +41 -15
- data/app/assets/javascripts/ckeditor/_source/plugins/colorbutton/plugin.js +5 -6
- data/app/assets/javascripts/ckeditor/_source/plugins/colordialog/dialogs/colordialog.js +140 -93
- data/app/assets/javascripts/ckeditor/_source/plugins/colordialog/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/contextmenu/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/_translationstatus.txt +27 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/bg.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/cs.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/cy.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/da.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/de.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/el.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/en.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/eo.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/et.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/fa.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/fi.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/fr.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/gu.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/he.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/hr.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/it.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/nb.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/nl.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/no.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/pl.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/tr.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/ug.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/uk.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/vi.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/zh-cn.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/devtools/plugin.js +2 -2
- data/app/assets/javascripts/ckeditor/_source/plugins/dialog/dialogDefinition.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/dialog/plugin.js +33 -22
- data/app/assets/javascripts/ckeditor/_source/plugins/dialogadvtab/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/dialogui/plugin.js +12 -4
- data/app/assets/javascripts/ckeditor/_source/plugins/div/dialogs/div.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/div/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/docprops/dialogs/docprops.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/docprops/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/domiterator/plugin.js +41 -36
- data/app/assets/javascripts/ckeditor/_source/plugins/editingblock/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/elementspath/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/enterkey/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/entities/plugin.js +14 -10
- data/app/assets/javascripts/ckeditor/_source/plugins/fakeobjects/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/filebrowser/plugin.js +2 -3
- data/app/assets/javascripts/ckeditor/_source/plugins/find/dialogs/find.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/find/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/flash/dialogs/flash.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/flash/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/floatpanel/plugin.js +67 -19
- data/app/assets/javascripts/ckeditor/_source/plugins/font/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/format/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/forms/dialogs/button.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/forms/dialogs/checkbox.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/forms/dialogs/form.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/forms/dialogs/hiddenfield.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/forms/dialogs/radio.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/forms/dialogs/select.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/forms/dialogs/textarea.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/forms/dialogs/textfield.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/forms/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/horizontalrule/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/htmldataprocessor/plugin.js +6 -2
- data/app/assets/javascripts/ckeditor/_source/plugins/htmlwriter/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/iframe/dialogs/iframe.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/iframe/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/iframedialog/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/image/dialogs/image.js +4 -5
- data/app/assets/javascripts/ckeditor/_source/plugins/image/plugin.js +89 -6
- data/app/assets/javascripts/ckeditor/_source/plugins/indent/plugin.js +20 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/justify/plugin.js +15 -17
- data/app/assets/javascripts/ckeditor/_source/plugins/keystrokes/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/link/dialogs/anchor.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/link/dialogs/link.js +8 -6
- data/app/assets/javascripts/ckeditor/_source/plugins/link/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/list/plugin.js +250 -57
- data/app/assets/javascripts/ckeditor/_source/plugins/listblock/plugin.js +2 -8
- data/app/assets/javascripts/ckeditor/_source/plugins/liststyle/dialogs/liststyle.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/liststyle/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/maximize/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/menu/plugin.js +4 -3
- data/app/assets/javascripts/ckeditor/_source/plugins/menubutton/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/newpage/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/pagebreak/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/panel/plugin.js +7 -11
- data/app/assets/javascripts/ckeditor/_source/plugins/panelbutton/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/pastefromword/filter/default.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/pastefromword/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/pastetext/dialogs/pastetext.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/pastetext/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/dialogs/placeholder.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/_translationstatus.txt +26 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/bg.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/cs.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/cy.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/da.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/de.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/el.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/en.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/eo.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/et.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/fa.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/fi.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/fr.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/he.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/hr.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/it.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/nb.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/nl.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/no.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/pl.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/tr.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/ug.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/uk.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/vi.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/zh-cn.js +16 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/plugin.js +2 -2
- data/app/assets/javascripts/ckeditor/_source/plugins/popup/plugin.js +8 -3
- data/app/assets/javascripts/ckeditor/_source/plugins/preview/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/print/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/removeformat/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/resize/plugin.js +3 -2
- data/app/assets/javascripts/ckeditor/_source/plugins/richcombo/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/save/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/scayt/dialogs/options.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/scayt/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/selection/plugin.js +208 -82
- data/app/assets/javascripts/ckeditor/_source/plugins/showblocks/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/showborders/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/smiley/dialogs/smiley.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/smiley/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/sourcearea/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/dialogs/specialchar.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/lang/_translationstatus.txt +19 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/lang/cs.js +126 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/lang/cy.js +126 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/lang/de.js +126 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/lang/en.js +123 -119
- data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/lang/eo.js +126 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/lang/et.js +126 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/lang/fa.js +126 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/lang/fi.js +126 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/lang/fr.js +126 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/lang/hr.js +126 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/lang/it.js +126 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/lang/nb.js +126 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/lang/nl.js +126 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/lang/no.js +126 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/lang/tr.js +126 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/lang/ug.js +126 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/lang/zh-cn.js +126 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/plugin.js +2 -2
- data/app/assets/javascripts/ckeditor/_source/plugins/styles/plugin.js +10 -4
- data/app/assets/javascripts/ckeditor/_source/plugins/styles/styles/default.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/stylescombo/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/stylesheetparser/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/tab/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/table/dialogs/table.js +23 -28
- data/app/assets/javascripts/ckeditor/_source/plugins/table/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/tableresize/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/tabletools/dialogs/tableCell.js +4 -9
- data/app/assets/javascripts/ckeditor/_source/plugins/tabletools/plugin.js +8 -17
- data/app/assets/javascripts/ckeditor/_source/plugins/templates/dialogs/templates.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/templates/plugin.js +2 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/templates/templates/default.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/toolbar/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/dialogs/uicolor.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/_translationstatus.txt +27 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/bg.js +15 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/cs.js +15 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/cy.js +15 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/da.js +15 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/de.js +15 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/el.js +15 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/en.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/eo.js +15 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/et.js +15 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/fa.js +15 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/fi.js +15 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/fr.js +15 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/he.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/hr.js +15 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/it.js +15 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/mk.js +15 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/nb.js +15 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/nl.js +15 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/no.js +15 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/pl.js +15 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/tr.js +15 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/ug.js +15 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/uk.js +15 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/vi.js +15 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/zh-cn.js +15 -0
- data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/plugin.js +2 -2
- data/app/assets/javascripts/ckeditor/_source/plugins/undo/plugin.js +19 -4
- data/app/assets/javascripts/ckeditor/_source/plugins/wsc/dialogs/ciframe.html +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/wsc/dialogs/tmpFrameset.html +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/wsc/dialogs/wsc.css +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/wsc/dialogs/wsc.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/wsc/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/plugins/wysiwygarea/plugin.js +58 -59
- data/app/assets/javascripts/ckeditor/_source/plugins/xml/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/skins/kama/dialog.css +1 -1
- data/app/assets/javascripts/ckeditor/_source/skins/kama/editor.css +1 -1
- data/app/assets/javascripts/ckeditor/_source/skins/kama/elementspath.css +1 -1
- data/app/assets/javascripts/ckeditor/_source/skins/kama/icons.css +1 -1
- data/app/assets/javascripts/ckeditor/_source/skins/kama/mainui.css +1 -1
- data/app/assets/javascripts/ckeditor/_source/skins/kama/menu.css +1 -1
- data/app/assets/javascripts/ckeditor/_source/skins/kama/panel.css +1 -1
- data/app/assets/javascripts/ckeditor/_source/skins/kama/presets.css +1 -1
- data/app/assets/javascripts/ckeditor/_source/skins/kama/reset.css +1 -1
- data/app/assets/javascripts/ckeditor/_source/skins/kama/richcombo.css +1 -1
- data/app/assets/javascripts/ckeditor/_source/skins/kama/skin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/skins/kama/templates.css +1 -1
- data/app/assets/javascripts/ckeditor/_source/skins/kama/toolbar.css +1 -1
- data/app/assets/javascripts/ckeditor/_source/skins/office2003/dialog.css +1 -1
- data/app/assets/javascripts/ckeditor/_source/skins/office2003/editor.css +1 -1
- data/app/assets/javascripts/ckeditor/_source/skins/office2003/elementspath.css +1 -1
- data/app/assets/javascripts/ckeditor/_source/skins/office2003/icons.css +1 -1
- data/app/assets/javascripts/ckeditor/_source/skins/office2003/mainui.css +1 -1
- data/app/assets/javascripts/ckeditor/_source/skins/office2003/menu.css +1 -1
- data/app/assets/javascripts/ckeditor/_source/skins/office2003/panel.css +1 -1
- data/app/assets/javascripts/ckeditor/_source/skins/office2003/presets.css +1 -1
- data/app/assets/javascripts/ckeditor/_source/skins/office2003/reset.css +1 -1
- data/app/assets/javascripts/ckeditor/_source/skins/office2003/skin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/skins/office2003/templates.css +1 -1
- data/app/assets/javascripts/ckeditor/_source/skins/office2003/toolbar.css +1 -1
- data/app/assets/javascripts/ckeditor/_source/skins/v2/dialog.css +1 -1
- data/app/assets/javascripts/ckeditor/_source/skins/v2/editor.css +1 -1
- data/app/assets/javascripts/ckeditor/_source/skins/v2/elementspath.css +1 -1
- data/app/assets/javascripts/ckeditor/_source/skins/v2/icons.css +1 -1
- data/app/assets/javascripts/ckeditor/_source/skins/v2/mainui.css +1 -1
- data/app/assets/javascripts/ckeditor/_source/skins/v2/menu.css +1 -1
- data/app/assets/javascripts/ckeditor/_source/skins/v2/panel.css +1 -1
- data/app/assets/javascripts/ckeditor/_source/skins/v2/presets.css +1 -1
- data/app/assets/javascripts/ckeditor/_source/skins/v2/reset.css +1 -1
- data/app/assets/javascripts/ckeditor/_source/skins/v2/skin.js +1 -1
- data/app/assets/javascripts/ckeditor/_source/skins/v2/templates.css +1 -1
- data/app/assets/javascripts/ckeditor/_source/skins/v2/toolbar.css +1 -1
- data/app/assets/javascripts/ckeditor/_source/themes/default/theme.js +1 -1
- data/app/assets/javascripts/ckeditor/adapters/jquery.js +1 -1
- data/app/assets/javascripts/ckeditor/ckeditor.asp +4 -4
- data/app/assets/javascripts/ckeditor/ckeditor.js +119 -117
- data/app/assets/javascripts/ckeditor/ckeditor.pack +1 -1
- data/app/assets/javascripts/ckeditor/ckeditor.php +1 -1
- data/app/assets/javascripts/ckeditor/ckeditor_basic.js +3 -3
- data/app/assets/javascripts/ckeditor/ckeditor_basic_source.js +2 -2
- data/app/assets/javascripts/ckeditor/ckeditor_php4.php +4 -4
- data/app/assets/javascripts/ckeditor/ckeditor_php5.php +4 -4
- data/app/assets/javascripts/ckeditor/ckeditor_source.js +2 -2
- data/app/assets/javascripts/ckeditor/config.js +11 -11
- data/app/assets/javascripts/ckeditor/contents.css +1 -1
- data/app/assets/javascripts/ckeditor/lang/_languages.js +1 -1
- data/app/assets/javascripts/ckeditor/lang/_translationstatus.txt +25 -23
- data/app/assets/javascripts/ckeditor/lang/af.js +1 -1
- data/app/assets/javascripts/ckeditor/lang/ar.js +2 -2
- data/app/assets/javascripts/ckeditor/lang/bg.js +2 -2
- data/app/assets/javascripts/ckeditor/lang/bn.js +1 -1
- data/app/assets/javascripts/ckeditor/lang/bs.js +1 -1
- data/app/assets/javascripts/ckeditor/lang/ca.js +1 -1
- data/app/assets/javascripts/ckeditor/lang/cs.js +2 -2
- data/app/assets/javascripts/ckeditor/lang/cy.js +2 -2
- data/app/assets/javascripts/ckeditor/lang/da.js +2 -2
- data/app/assets/javascripts/ckeditor/lang/de.js +2 -2
- data/app/assets/javascripts/ckeditor/lang/el.js +2 -2
- data/app/assets/javascripts/ckeditor/lang/en-au.js +1 -1
- data/app/assets/javascripts/ckeditor/lang/en-ca.js +1 -1
- data/app/assets/javascripts/ckeditor/lang/en-gb.js +1 -1
- data/app/assets/javascripts/ckeditor/lang/en.js +1 -1
- data/app/assets/javascripts/ckeditor/lang/eo.js +2 -2
- data/app/assets/javascripts/ckeditor/lang/es.js +1 -1
- data/app/assets/javascripts/ckeditor/lang/et.js +2 -2
- data/app/assets/javascripts/ckeditor/lang/eu.js +1 -1
- data/app/assets/javascripts/ckeditor/lang/fa.js +1 -1
- data/app/assets/javascripts/ckeditor/lang/fi.js +1 -1
- data/app/assets/javascripts/ckeditor/lang/fo.js +2 -2
- data/app/assets/javascripts/ckeditor/lang/fr-ca.js +1 -1
- data/app/assets/javascripts/ckeditor/lang/fr.js +2 -2
- data/app/assets/javascripts/ckeditor/lang/gl.js +1 -1
- data/app/assets/javascripts/ckeditor/lang/gu.js +2 -2
- data/app/assets/javascripts/ckeditor/lang/he.js +1 -1
- data/app/assets/javascripts/ckeditor/lang/hi.js +2 -2
- data/app/assets/javascripts/ckeditor/lang/hr.js +2 -2
- data/app/assets/javascripts/ckeditor/lang/hu.js +1 -1
- data/app/assets/javascripts/ckeditor/lang/is.js +1 -1
- data/app/assets/javascripts/ckeditor/lang/it.js +2 -2
- data/app/assets/javascripts/ckeditor/lang/ja.js +1 -1
- data/app/assets/javascripts/ckeditor/lang/ka.js +1 -1
- data/app/assets/javascripts/ckeditor/lang/km.js +1 -1
- data/app/assets/javascripts/ckeditor/lang/ko.js +1 -1
- data/app/assets/javascripts/ckeditor/lang/lt.js +1 -1
- data/app/assets/javascripts/ckeditor/lang/lv.js +1 -1
- data/app/assets/javascripts/ckeditor/lang/mk.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/mn.js +1 -1
- data/app/assets/javascripts/ckeditor/lang/ms.js +1 -1
- data/app/assets/javascripts/ckeditor/lang/nb.js +2 -2
- data/app/assets/javascripts/ckeditor/lang/nl.js +2 -2
- data/app/assets/javascripts/ckeditor/lang/no.js +2 -2
- data/app/assets/javascripts/ckeditor/lang/pl.js +2 -2
- data/app/assets/javascripts/ckeditor/lang/pt-br.js +1 -1
- data/app/assets/javascripts/ckeditor/lang/pt.js +2 -2
- data/app/assets/javascripts/ckeditor/lang/ro.js +1 -1
- data/app/assets/javascripts/ckeditor/lang/ru.js +1 -1
- data/app/assets/javascripts/ckeditor/lang/sk.js +1 -1
- data/app/assets/javascripts/ckeditor/lang/sl.js +1 -1
- data/app/assets/javascripts/ckeditor/lang/sr-latn.js +1 -1
- data/app/assets/javascripts/ckeditor/lang/sr.js +1 -1
- data/app/assets/javascripts/ckeditor/lang/sv.js +1 -1
- data/app/assets/javascripts/ckeditor/lang/th.js +1 -1
- data/app/assets/javascripts/ckeditor/lang/tr.js +2 -2
- data/app/assets/javascripts/ckeditor/lang/ug.js +6 -0
- data/app/assets/javascripts/ckeditor/lang/uk.js +2 -2
- data/app/assets/javascripts/ckeditor/lang/vi.js +2 -2
- data/app/assets/javascripts/ckeditor/lang/zh-cn.js +2 -2
- data/app/assets/javascripts/ckeditor/lang/zh.js +2 -2
- data/app/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/_translationstatus.txt +23 -0
- data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/cs.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/cy.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/da.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/de.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/el.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/en.js +2 -2
- data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/eo.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/fa.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/fi.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/fr.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/gu.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/he.js +2 -2
- data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/it.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/mk.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/nb.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/nl.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/no.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/tr.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/ug.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/vi.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/zh-cn.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/about/dialogs/about.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/adobeair/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/ajax/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/autogrow/plugin.js +2 -2
- data/app/assets/javascripts/ckeditor/plugins/bbcode/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/clipboard/dialogs/paste.js +2 -2
- data/app/assets/javascripts/ckeditor/plugins/colordialog/dialogs/colordialog.js +3 -3
- data/app/assets/javascripts/ckeditor/plugins/devtools/lang/_translationstatus.txt +27 -0
- data/app/assets/javascripts/ckeditor/plugins/devtools/lang/bg.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/devtools/lang/cs.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/devtools/lang/cy.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/devtools/lang/da.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/devtools/lang/de.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/devtools/lang/el.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/devtools/lang/en.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/devtools/lang/eo.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/devtools/lang/et.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/devtools/lang/fa.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/devtools/lang/fi.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/devtools/lang/fr.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/devtools/lang/gu.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/devtools/lang/he.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/devtools/lang/hr.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/devtools/lang/it.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/devtools/lang/nb.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/devtools/lang/nl.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/devtools/lang/no.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/devtools/lang/pl.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/devtools/lang/tr.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/devtools/lang/ug.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/devtools/lang/uk.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/devtools/lang/vi.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/devtools/lang/zh-cn.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/devtools/plugin.js +2 -2
- data/app/assets/javascripts/ckeditor/plugins/dialog/dialogDefinition.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/div/dialogs/div.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/docprops/dialogs/docprops.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/docprops/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/find/dialogs/find.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/flash/dialogs/flash.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/forms/dialogs/button.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/forms/dialogs/checkbox.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/forms/dialogs/form.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/forms/dialogs/hiddenfield.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/forms/dialogs/radio.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/forms/dialogs/select.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/forms/dialogs/textarea.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/forms/dialogs/textfield.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/iframe/dialogs/iframe.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/iframedialog/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/image/dialogs/image.js +9 -9
- data/app/assets/javascripts/ckeditor/plugins/link/dialogs/anchor.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/link/dialogs/link.js +5 -5
- data/app/assets/javascripts/ckeditor/plugins/liststyle/dialogs/liststyle.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/pastefromword/filter/default.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/pastetext/dialogs/pastetext.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/placeholder/dialogs/placeholder.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/_translationstatus.txt +26 -0
- data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/bg.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/cs.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/cy.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/da.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/de.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/el.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/en.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/eo.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/et.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/fa.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/fi.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/fr.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/he.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/hr.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/it.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/nb.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/nl.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/no.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/pl.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/tr.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/ug.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/uk.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/vi.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/zh-cn.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/placeholder/plugin.js +2 -2
- data/app/assets/javascripts/ckeditor/plugins/scayt/dialogs/options.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/scayt/dialogs/toolbar.css +1 -1
- data/app/assets/javascripts/ckeditor/plugins/smiley/dialogs/smiley.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/specialchar/dialogs/specialchar.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/specialchar/lang/_translationstatus.txt +19 -0
- data/app/assets/javascripts/ckeditor/plugins/specialchar/lang/cs.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/specialchar/lang/cy.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/specialchar/lang/de.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/specialchar/lang/en.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/specialchar/lang/eo.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/specialchar/lang/et.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/specialchar/lang/fa.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/specialchar/lang/fi.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/specialchar/lang/fr.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/specialchar/lang/hr.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/specialchar/lang/it.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/specialchar/lang/nb.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/specialchar/lang/nl.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/specialchar/lang/no.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/specialchar/lang/tr.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/specialchar/lang/ug.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/specialchar/lang/zh-cn.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/styles/styles/default.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/stylesheetparser/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/table/dialogs/table.js +5 -5
- data/app/assets/javascripts/ckeditor/plugins/tableresize/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/tabletools/dialogs/tableCell.js +3 -3
- data/app/assets/javascripts/ckeditor/plugins/templates/dialogs/templates.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/templates/templates/default.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/uicolor/dialogs/uicolor.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/_translationstatus.txt +27 -0
- data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/bg.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/cs.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/cy.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/da.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/de.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/el.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/en.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/eo.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/et.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/fa.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/fi.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/fr.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/he.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/hr.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/it.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/mk.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/nb.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/nl.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/no.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/pl.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/tr.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/ug.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/uk.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/vi.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/zh-cn.js +6 -0
- data/app/assets/javascripts/ckeditor/plugins/uicolor/plugin.js +2 -2
- data/app/assets/javascripts/ckeditor/plugins/uicolor/yui/assets/yui.css +1 -1
- data/app/assets/javascripts/ckeditor/plugins/uicolor/yui/yui.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/wsc/dialogs/ciframe.html +1 -1
- data/app/assets/javascripts/ckeditor/plugins/wsc/dialogs/tmpFrameset.html +1 -1
- data/app/assets/javascripts/ckeditor/plugins/wsc/dialogs/wsc.css +1 -1
- data/app/assets/javascripts/ckeditor/plugins/wsc/dialogs/wsc.js +1 -1
- data/app/assets/javascripts/ckeditor/plugins/xml/plugin.js +1 -1
- data/app/assets/javascripts/ckeditor/skins/kama/dialog.css +2 -2
- data/app/assets/javascripts/ckeditor/skins/kama/editor.css +3 -3
- data/app/assets/javascripts/ckeditor/skins/kama/skin.js +1 -1
- data/app/assets/javascripts/ckeditor/skins/kama/templates.css +1 -1
- data/app/assets/javascripts/ckeditor/skins/office2003/dialog.css +1 -1
- data/app/assets/javascripts/ckeditor/skins/office2003/editor.css +1 -1
- data/app/assets/javascripts/ckeditor/skins/office2003/skin.js +1 -1
- data/app/assets/javascripts/ckeditor/skins/office2003/templates.css +1 -1
- data/app/assets/javascripts/ckeditor/skins/v2/dialog.css +1 -1
- data/app/assets/javascripts/ckeditor/skins/v2/editor.css +1 -1
- data/app/assets/javascripts/ckeditor/skins/v2/skin.js +1 -1
- data/app/assets/javascripts/ckeditor/skins/v2/templates.css +1 -1
- data/app/assets/javascripts/ckeditor/themes/default/theme.js +1 -1
- data/lib/refinery/ckeditor/version.rb +1 -1
- metadata +262 -21
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
Copyright (c) 2003-
|
|
2
|
+
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
|
3
3
|
For licensing, see LICENSE.html or http://ckeditor.com/license
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -194,6 +194,13 @@ CKEDITOR.htmlParser.fragment = function()
|
|
|
194
194
|
|
|
195
195
|
target.add( element );
|
|
196
196
|
|
|
197
|
+
if ( element.name == 'pre' )
|
|
198
|
+
inPre = false;
|
|
199
|
+
|
|
200
|
+
if ( element.name == 'textarea' )
|
|
201
|
+
inTextarea = false;
|
|
202
|
+
|
|
203
|
+
|
|
197
204
|
if ( element.returnPoint )
|
|
198
205
|
{
|
|
199
206
|
currentNode = element.returnPoint;
|
|
@@ -360,12 +367,6 @@ CKEDITOR.htmlParser.fragment = function()
|
|
|
360
367
|
|
|
361
368
|
currentNode = candidate;
|
|
362
369
|
|
|
363
|
-
if ( currentNode.name == 'pre' )
|
|
364
|
-
inPre = false;
|
|
365
|
-
|
|
366
|
-
if ( currentNode.name == 'textarea' )
|
|
367
|
-
inTextarea = false;
|
|
368
|
-
|
|
369
370
|
if ( candidate._.isBlockLike )
|
|
370
371
|
sendPendingBRs();
|
|
371
372
|
|
|
@@ -394,6 +395,24 @@ CKEDITOR.htmlParser.fragment = function()
|
|
|
394
395
|
return;
|
|
395
396
|
}
|
|
396
397
|
|
|
398
|
+
var currentName = currentNode.name,
|
|
399
|
+
currentDtd = currentName ? ( CKEDITOR.dtd[ currentName ]
|
|
400
|
+
|| ( currentNode._.isBlockLike ?
|
|
401
|
+
CKEDITOR.dtd.div : CKEDITOR.dtd.span ) ) : rootDtd;
|
|
402
|
+
|
|
403
|
+
// Fix orphan text in list/table. (#8540) (#8870)
|
|
404
|
+
if ( !inTextarea &&
|
|
405
|
+
!currentDtd [ '#' ] &&
|
|
406
|
+
currentName in nonBreakingBlocks )
|
|
407
|
+
{
|
|
408
|
+
parser.onTagOpen( currentName in listBlocks ? 'li' :
|
|
409
|
+
currentName == 'dl' ? 'dd' :
|
|
410
|
+
currentName == 'table' ? 'tr' :
|
|
411
|
+
currentName == 'tr' ? 'td' : '' );
|
|
412
|
+
parser.onText( text );
|
|
413
|
+
return;
|
|
414
|
+
}
|
|
415
|
+
|
|
397
416
|
sendPendingBRs();
|
|
398
417
|
checkPending();
|
|
399
418
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
Copyright (c) 2003-
|
|
2
|
+
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
|
3
3
|
For licensing, see LICENSE.html or http://ckeditor.com/license
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -105,7 +105,7 @@ if ( !CKEDITOR.loader )
|
|
|
105
105
|
return path;
|
|
106
106
|
})();
|
|
107
107
|
|
|
108
|
-
var timestamp = '
|
|
108
|
+
var timestamp = 'C3HA5RM';
|
|
109
109
|
|
|
110
110
|
var getUrl = function( resource )
|
|
111
111
|
{
|
|
@@ -1,51 +1,52 @@
|
|
|
1
|
-
Copyright (c) 2003-
|
|
1
|
+
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
|
2
2
|
For licensing, see LICENSE.html or http://ckeditor.com/license
|
|
3
3
|
|
|
4
4
|
af.js Found: 549 Missing: 27
|
|
5
|
-
ar.js Found:
|
|
6
|
-
bg.js Found:
|
|
5
|
+
ar.js Found: 470 Missing: 106
|
|
6
|
+
bg.js Found: 394 Missing: 182
|
|
7
7
|
bn.js Found: 292 Missing: 284
|
|
8
8
|
bs.js Found: 175 Missing: 401
|
|
9
9
|
ca.js Found: 550 Missing: 26
|
|
10
|
-
cs.js Found:
|
|
11
|
-
cy.js Found:
|
|
12
|
-
da.js Found:
|
|
10
|
+
cs.js Found: 576 Missing: 0
|
|
11
|
+
cy.js Found: 576 Missing: 0
|
|
12
|
+
da.js Found: 576 Missing: 0
|
|
13
13
|
de.js Found: 576 Missing: 0
|
|
14
|
-
el.js Found:
|
|
15
|
-
en-au.js Found:
|
|
14
|
+
el.js Found: 329 Missing: 247
|
|
15
|
+
en-au.js Found: 348 Missing: 228
|
|
16
16
|
en-ca.js Found: 345 Missing: 231
|
|
17
17
|
en-gb.js Found: 518 Missing: 58
|
|
18
|
-
eo.js Found:
|
|
18
|
+
eo.js Found: 576 Missing: 0
|
|
19
19
|
es.js Found: 576 Missing: 0
|
|
20
|
-
et.js Found:
|
|
20
|
+
et.js Found: 576 Missing: 0
|
|
21
21
|
eu.js Found: 417 Missing: 159
|
|
22
22
|
fa.js Found: 576 Missing: 0
|
|
23
23
|
fi.js Found: 576 Missing: 0
|
|
24
|
-
fo.js Found:
|
|
24
|
+
fo.js Found: 576 Missing: 0
|
|
25
25
|
fr-ca.js Found: 319 Missing: 257
|
|
26
|
-
fr.js Found:
|
|
26
|
+
fr.js Found: 576 Missing: 0
|
|
27
27
|
gl.js Found: 292 Missing: 284
|
|
28
|
-
gu.js Found:
|
|
28
|
+
gu.js Found: 576 Missing: 0
|
|
29
29
|
he.js Found: 576 Missing: 0
|
|
30
|
-
hi.js Found:
|
|
31
|
-
hr.js Found:
|
|
30
|
+
hi.js Found: 328 Missing: 248
|
|
31
|
+
hr.js Found: 576 Missing: 0
|
|
32
32
|
hu.js Found: 573 Missing: 3
|
|
33
33
|
is.js Found: 326 Missing: 250
|
|
34
|
-
it.js Found:
|
|
34
|
+
it.js Found: 576 Missing: 0
|
|
35
35
|
ja.js Found: 494 Missing: 82
|
|
36
36
|
ka.js Found: 569 Missing: 7
|
|
37
37
|
km.js Found: 286 Missing: 290
|
|
38
38
|
ko.js Found: 304 Missing: 272
|
|
39
39
|
lt.js Found: 576 Missing: 0
|
|
40
40
|
lv.js Found: 294 Missing: 282
|
|
41
|
+
mk.js Found: 1 Missing: 575
|
|
41
42
|
mn.js Found: 320 Missing: 256
|
|
42
43
|
ms.js Found: 276 Missing: 300
|
|
43
|
-
nb.js Found:
|
|
44
|
+
nb.js Found: 576 Missing: 0
|
|
44
45
|
nl.js Found: 576 Missing: 0
|
|
45
|
-
no.js Found:
|
|
46
|
+
no.js Found: 576 Missing: 0
|
|
46
47
|
pl.js Found: 576 Missing: 0
|
|
47
48
|
pt-br.js Found: 576 Missing: 0
|
|
48
|
-
pt.js Found:
|
|
49
|
+
pt.js Found: 326 Missing: 250
|
|
49
50
|
ro.js Found: 317 Missing: 259
|
|
50
51
|
ru.js Found: 576 Missing: 0
|
|
51
52
|
sk.js Found: 365 Missing: 211
|
|
@@ -54,8 +55,9 @@ sr-latn.js Found: 287 Missing: 289
|
|
|
54
55
|
sr.js Found: 286 Missing: 290
|
|
55
56
|
sv.js Found: 551 Missing: 25
|
|
56
57
|
th.js Found: 298 Missing: 278
|
|
57
|
-
tr.js Found:
|
|
58
|
-
|
|
59
|
-
|
|
58
|
+
tr.js Found: 576 Missing: 0
|
|
59
|
+
ug.js Found: 573 Missing: 3
|
|
60
|
+
uk.js Found: 576 Missing: 0
|
|
61
|
+
vi.js Found: 576 Missing: 0
|
|
60
62
|
zh-cn.js Found: 576 Missing: 0
|
|
61
|
-
zh.js Found:
|
|
63
|
+
zh.js Found: 434 Missing: 142
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
Copyright (c) 2003-
|
|
2
|
+
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
|
3
3
|
For licensing, see LICENSE.html or http://ckeditor.com/license
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -93,14 +93,14 @@ CKEDITOR.lang['ar'] =
|
|
|
93
93
|
cssStyle : 'نمط',
|
|
94
94
|
ok : 'موافق',
|
|
95
95
|
cancel : 'إلغاء الأمر',
|
|
96
|
-
close : '
|
|
97
|
-
preview : '
|
|
96
|
+
close : 'أغلق',
|
|
97
|
+
preview : 'استعراض',
|
|
98
98
|
generalTab : 'عام',
|
|
99
99
|
advancedTab : 'متقدم',
|
|
100
100
|
validateNumberFailed : 'لايوجد نتيجة',
|
|
101
101
|
confirmNewPage : 'ستفقد أي متغييرات اذا لم تقم بحفظها اولا. هل أنت متأكد أنك تريد صفحة جديدة؟',
|
|
102
102
|
confirmCancel : 'بعض الخيارات قد تغيرت. هل أنت متأكد من إغلاق مربع النص؟',
|
|
103
|
-
options : '
|
|
103
|
+
options : 'خيارات',
|
|
104
104
|
target : 'Target', // MISSING
|
|
105
105
|
targetNew : 'New Window (_blank)', // MISSING
|
|
106
106
|
targetTop : 'Topmost Window (_top)', // MISSING
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
Copyright (c) 2003-
|
|
2
|
+
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
|
|
3
3
|
For licensing, see LICENSE.html or http://ckeditor.com/license
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -31,96 +31,96 @@ CKEDITOR.lang['bg'] =
|
|
|
31
31
|
* Screenreader titles. Please note that screenreaders are not always capable
|
|
32
32
|
* of reading non-English words. So be careful while translating it.
|
|
33
33
|
*/
|
|
34
|
-
editorTitle : '
|
|
34
|
+
editorTitle : 'Текстов редактор за форматиран текст, %1, натиснете ALT 0 за помощ.',
|
|
35
35
|
|
|
36
36
|
// ARIA descriptions.
|
|
37
|
-
toolbars : '
|
|
38
|
-
editor : '
|
|
37
|
+
toolbars : 'Ленти с инструменти',
|
|
38
|
+
editor : 'Текстов редактор за форматиран текст',
|
|
39
39
|
|
|
40
40
|
// Toolbar buttons without dialogs.
|
|
41
|
-
source : '
|
|
41
|
+
source : 'Източник',
|
|
42
42
|
newPage : 'Нова страница',
|
|
43
|
-
save : '
|
|
44
|
-
preview : '
|
|
45
|
-
cut : '
|
|
46
|
-
copy : '
|
|
43
|
+
save : 'Запис',
|
|
44
|
+
preview : 'Преглед',
|
|
45
|
+
cut : 'Отрежи',
|
|
46
|
+
copy : 'Копирай',
|
|
47
47
|
paste : 'Вмъкни',
|
|
48
48
|
print : 'Печат',
|
|
49
49
|
underline : 'Подчертан',
|
|
50
50
|
bold : 'Удебелен',
|
|
51
|
-
italic : '
|
|
52
|
-
selectAll : '
|
|
53
|
-
removeFormat : '
|
|
54
|
-
strike : 'Зачертан',
|
|
55
|
-
subscript : '
|
|
56
|
-
superscript : '
|
|
57
|
-
horizontalrule : '
|
|
58
|
-
pagebreak : '
|
|
59
|
-
pagebreakAlt : '
|
|
60
|
-
unlink : '
|
|
61
|
-
undo : '
|
|
62
|
-
redo : '
|
|
51
|
+
italic : 'Наклонен',
|
|
52
|
+
selectAll : 'Избери всичко',
|
|
53
|
+
removeFormat : 'Премахване на форматирането',
|
|
54
|
+
strike : 'Зачертан текст',
|
|
55
|
+
subscript : 'Индексиран текст',
|
|
56
|
+
superscript : 'Суперскрипт',
|
|
57
|
+
horizontalrule : 'Вмъкване на хоризонтална линия',
|
|
58
|
+
pagebreak : 'Вмъкване на нова страница при печат',
|
|
59
|
+
pagebreakAlt : 'Разделяне на страници',
|
|
60
|
+
unlink : 'Премахни връзката',
|
|
61
|
+
undo : 'Възтанови',
|
|
62
|
+
redo : 'Връщане на предишен статус',
|
|
63
63
|
|
|
64
64
|
// Common messages and labels.
|
|
65
65
|
common :
|
|
66
66
|
{
|
|
67
|
-
browseServer : '
|
|
68
|
-
url : '
|
|
67
|
+
browseServer : 'Избор ор сървъра',
|
|
68
|
+
url : 'URL',
|
|
69
69
|
protocol : 'Протокол',
|
|
70
|
-
upload : '
|
|
71
|
-
uploadSubmit : '
|
|
72
|
-
image : '
|
|
73
|
-
flash : '
|
|
74
|
-
form : '
|
|
75
|
-
checkbox : 'Поле за
|
|
76
|
-
radio : '
|
|
70
|
+
upload : 'Качване',
|
|
71
|
+
uploadSubmit : 'Изпращане към сървъра',
|
|
72
|
+
image : 'Снимка',
|
|
73
|
+
flash : 'Флаш',
|
|
74
|
+
form : 'Форма',
|
|
75
|
+
checkbox : 'Поле за избор',
|
|
76
|
+
radio : 'Радио бутон',
|
|
77
77
|
textField : 'Текстово поле',
|
|
78
|
-
textarea : 'Текстова
|
|
78
|
+
textarea : 'Текстова зона',
|
|
79
79
|
hiddenField : 'Скрито поле',
|
|
80
80
|
button : 'Бутон',
|
|
81
|
-
select : '
|
|
82
|
-
imageButton : '
|
|
83
|
-
notSet : '<не е
|
|
84
|
-
id : '
|
|
81
|
+
select : 'Поле за избор',
|
|
82
|
+
imageButton : 'Бутон за снимка',
|
|
83
|
+
notSet : '<не е избрано>',
|
|
84
|
+
id : 'ID',
|
|
85
85
|
name : 'Име',
|
|
86
|
-
langDir : '
|
|
87
|
-
langDirLtr : '
|
|
88
|
-
langDirRtl : '
|
|
86
|
+
langDir : 'Посока на езика',
|
|
87
|
+
langDirLtr : 'Ляво на дясно (ЛнД)',
|
|
88
|
+
langDirRtl : 'Дясно на ляво (ДнЛ)',
|
|
89
89
|
langCode : 'Код на езика',
|
|
90
|
-
longDescr : '
|
|
91
|
-
cssClass : '
|
|
92
|
-
advisoryTitle : '
|
|
90
|
+
longDescr : 'Уеб адрес за дълго описание',
|
|
91
|
+
cssClass : 'Класове за CSS',
|
|
92
|
+
advisoryTitle : 'Advisory Title', // MISSING
|
|
93
93
|
cssStyle : 'Стил',
|
|
94
94
|
ok : 'ОК',
|
|
95
95
|
cancel : 'Отказ',
|
|
96
|
-
close : '
|
|
97
|
-
preview : '
|
|
98
|
-
generalTab : '
|
|
99
|
-
advancedTab : '
|
|
100
|
-
validateNumberFailed : '
|
|
96
|
+
close : 'Затвори',
|
|
97
|
+
preview : 'Преглед',
|
|
98
|
+
generalTab : 'Общо',
|
|
99
|
+
advancedTab : 'Разширено',
|
|
100
|
+
validateNumberFailed : 'Тази стойност не е число',
|
|
101
101
|
confirmNewPage : 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
|
|
102
102
|
confirmCancel : 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
|
|
103
|
-
options : '
|
|
104
|
-
target : '
|
|
105
|
-
targetNew : '
|
|
106
|
-
targetTop : '
|
|
107
|
-
targetSelf : '
|
|
108
|
-
targetParent : '
|
|
109
|
-
langDirLTR : '
|
|
110
|
-
langDirRTL : '
|
|
111
|
-
styles : '
|
|
112
|
-
cssClasses : '
|
|
103
|
+
options : 'Опции',
|
|
104
|
+
target : 'Цел',
|
|
105
|
+
targetNew : 'Нов прозорец (_blank)',
|
|
106
|
+
targetTop : 'Горна позиция (_top)',
|
|
107
|
+
targetSelf : 'Текущия прозорец (_self)',
|
|
108
|
+
targetParent : 'Основен прозорец (_parent)',
|
|
109
|
+
langDirLTR : 'Ляво на дясно (ЛнД)',
|
|
110
|
+
langDirRTL : 'Дясно на ляво (ДнЛ)',
|
|
111
|
+
styles : 'Стил',
|
|
112
|
+
cssClasses : 'Класове за CSS',
|
|
113
113
|
width : 'Ширина',
|
|
114
114
|
height : 'Височина',
|
|
115
115
|
align : 'Подравняване',
|
|
116
116
|
alignLeft : 'Ляво',
|
|
117
117
|
alignRight : 'Дясно',
|
|
118
118
|
alignCenter : 'Център',
|
|
119
|
-
alignTop : '
|
|
119
|
+
alignTop : 'Горе',
|
|
120
120
|
alignMiddle : 'По средата',
|
|
121
121
|
alignBottom : 'Долу',
|
|
122
|
-
invalidHeight : '
|
|
123
|
-
invalidWidth : '
|
|
122
|
+
invalidHeight : 'Височината трябва да е число.',
|
|
123
|
+
invalidWidth : 'Ширина требе да е число.',
|
|
124
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
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
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
|
|
@@ -132,81 +132,81 @@ CKEDITOR.lang['bg'] =
|
|
|
132
132
|
|
|
133
133
|
contextmenu :
|
|
134
134
|
{
|
|
135
|
-
options : '
|
|
135
|
+
options : 'Опции на контекстното меню'
|
|
136
136
|
},
|
|
137
137
|
|
|
138
138
|
// Special char dialog.
|
|
139
139
|
specialChar :
|
|
140
140
|
{
|
|
141
|
-
toolbar : '
|
|
142
|
-
title : '
|
|
143
|
-
options : '
|
|
141
|
+
toolbar : 'Вмъкване на специален знак',
|
|
142
|
+
title : 'Избор на специален знак',
|
|
143
|
+
options : 'Опции за специален знак'
|
|
144
144
|
},
|
|
145
145
|
|
|
146
146
|
// Link dialog.
|
|
147
147
|
link :
|
|
148
148
|
{
|
|
149
|
-
toolbar : '
|
|
150
|
-
other : '
|
|
151
|
-
menu : '
|
|
149
|
+
toolbar : 'Връзка',
|
|
150
|
+
other : '<друго>',
|
|
151
|
+
menu : 'Промяна на връзка',
|
|
152
152
|
title : 'Връзка',
|
|
153
|
-
info : '
|
|
153
|
+
info : 'Инфо за връзката',
|
|
154
154
|
target : 'Цел',
|
|
155
|
-
upload : '
|
|
156
|
-
advanced : '
|
|
157
|
-
type : '
|
|
158
|
-
toUrl : '
|
|
159
|
-
toAnchor : '
|
|
160
|
-
toEmail : '
|
|
161
|
-
targetFrame : '
|
|
162
|
-
targetPopup : '
|
|
163
|
-
targetFrameName : 'Име на
|
|
164
|
-
targetPopupName : 'Име на
|
|
165
|
-
popupFeatures : '
|
|
166
|
-
popupResizable : '
|
|
167
|
-
popupStatusBar : '
|
|
168
|
-
popupLocationBar: '
|
|
169
|
-
popupToolbar : '
|
|
170
|
-
popupMenuBar : '
|
|
171
|
-
popupFullScreen : '
|
|
172
|
-
popupScrollBars : '
|
|
173
|
-
popupDependent : '
|
|
174
|
-
popupLeft : '
|
|
175
|
-
popupTop : '
|
|
176
|
-
id : '
|
|
177
|
-
langDir : '
|
|
178
|
-
langDirLTR : '
|
|
179
|
-
langDirRTL : '
|
|
180
|
-
acccessKey : '
|
|
155
|
+
upload : 'Качване',
|
|
156
|
+
advanced : 'Разширено',
|
|
157
|
+
type : 'Тип на връзката',
|
|
158
|
+
toUrl : 'Уеб адрес',
|
|
159
|
+
toAnchor : 'Връзка към котва в текста',
|
|
160
|
+
toEmail : 'E-mail',
|
|
161
|
+
targetFrame : '<frame>',
|
|
162
|
+
targetPopup : '<изкачащ прозорец>',
|
|
163
|
+
targetFrameName : 'Име на целевият прозорец',
|
|
164
|
+
targetPopupName : 'Име на изкачащ прозорец',
|
|
165
|
+
popupFeatures : 'Функции на изкачащ прозорец',
|
|
166
|
+
popupResizable : 'Оразмеряем',
|
|
167
|
+
popupStatusBar : 'Статусна лента',
|
|
168
|
+
popupLocationBar: 'Лента с локацията',
|
|
169
|
+
popupToolbar : 'Лента с инструменти',
|
|
170
|
+
popupMenuBar : 'Лента за меню',
|
|
171
|
+
popupFullScreen : 'Цял екран (IE)',
|
|
172
|
+
popupScrollBars : 'Скролери',
|
|
173
|
+
popupDependent : 'Зависимост (Netscape)',
|
|
174
|
+
popupLeft : 'Лява позиция',
|
|
175
|
+
popupTop : 'Горна позиция',
|
|
176
|
+
id : 'ID',
|
|
177
|
+
langDir : 'Посока на езика',
|
|
178
|
+
langDirLTR : 'Ляво на Дясно (ЛнД)',
|
|
179
|
+
langDirRTL : 'Дясно на Ляво (ДнЛ)',
|
|
180
|
+
acccessKey : 'Ключ за достъп',
|
|
181
181
|
name : 'Име',
|
|
182
|
-
langCode : '
|
|
183
|
-
tabIndex : '
|
|
184
|
-
advisoryTitle : '
|
|
185
|
-
advisoryContentType : '
|
|
186
|
-
cssClasses : '
|
|
187
|
-
charset : '
|
|
182
|
+
langCode : 'Код за езика',
|
|
183
|
+
tabIndex : 'Tab Index', // MISSING
|
|
184
|
+
advisoryTitle : 'Advisory Title', // MISSING
|
|
185
|
+
advisoryContentType : 'Advisory Content Type', // MISSING
|
|
186
|
+
cssClasses : 'Класове за CSS',
|
|
187
|
+
charset : 'Linked Resource Charset', // MISSING
|
|
188
188
|
styles : 'Стил',
|
|
189
|
-
rel : '
|
|
189
|
+
rel : 'Връзка',
|
|
190
190
|
selectAnchor : 'Изберете котва',
|
|
191
|
-
anchorName : 'По име на
|
|
192
|
-
anchorId : 'По
|
|
193
|
-
emailAddress : '
|
|
194
|
-
emailSubject : 'Тема
|
|
195
|
-
emailBody : '
|
|
196
|
-
noAnchors : '(
|
|
197
|
-
noUrl : '
|
|
198
|
-
noEmail : '
|
|
191
|
+
anchorName : 'По име на котва',
|
|
192
|
+
anchorId : 'По ID на елемент',
|
|
193
|
+
emailAddress : 'E-mail aдрес',
|
|
194
|
+
emailSubject : 'Тема',
|
|
195
|
+
emailBody : 'Съдържание',
|
|
196
|
+
noAnchors : '(No anchors available in the document)', // MISSING
|
|
197
|
+
noUrl : 'Please type the link URL', // MISSING
|
|
198
|
+
noEmail : 'Моля въведете e-mail aдрес'
|
|
199
199
|
},
|
|
200
200
|
|
|
201
201
|
// Anchor dialog
|
|
202
202
|
anchor :
|
|
203
203
|
{
|
|
204
|
-
toolbar : '
|
|
205
|
-
menu : '
|
|
206
|
-
title : '
|
|
207
|
-
name : 'Име на
|
|
208
|
-
errorName : '
|
|
209
|
-
remove : '
|
|
204
|
+
toolbar : 'Котва',
|
|
205
|
+
menu : 'Промяна на котва',
|
|
206
|
+
title : 'Настройки на котва',
|
|
207
|
+
name : 'Име на котва',
|
|
208
|
+
errorName : 'Моля въведете име на котвата',
|
|
209
|
+
remove : 'Премахване на котва'
|
|
210
210
|
},
|
|
211
211
|
|
|
212
212
|
// List style dialog
|
|
@@ -214,39 +214,39 @@ CKEDITOR.lang['bg'] =
|
|
|
214
214
|
{
|
|
215
215
|
numberedTitle : 'Numbered List Properties', // MISSING
|
|
216
216
|
bulletedTitle : 'Bulleted List Properties', // MISSING
|
|
217
|
-
type : '
|
|
218
|
-
start : '
|
|
217
|
+
type : 'Тип',
|
|
218
|
+
start : 'Старт',
|
|
219
219
|
validateStartNumber :'List start number must be a whole number.', // MISSING
|
|
220
|
-
circle : '
|
|
221
|
-
disc : '
|
|
222
|
-
square : '
|
|
223
|
-
none : '
|
|
224
|
-
notset : '
|
|
225
|
-
armenian : '
|
|
226
|
-
georgian : '
|
|
227
|
-
lowerRoman : '
|
|
228
|
-
upperRoman : '
|
|
229
|
-
lowerAlpha : '
|
|
230
|
-
upperAlpha : '
|
|
231
|
-
lowerGreek : '
|
|
232
|
-
decimal : '
|
|
233
|
-
decimalLeadingZero : '
|
|
220
|
+
circle : 'Кръг',
|
|
221
|
+
disc : 'Диск',
|
|
222
|
+
square : 'Квадрат',
|
|
223
|
+
none : 'Няма',
|
|
224
|
+
notset : '<не е указано>',
|
|
225
|
+
armenian : 'Арменско номериране',
|
|
226
|
+
georgian : 'Грузинско номериране (an, ban, gan, и т.н.)',
|
|
227
|
+
lowerRoman : 'Малки римски числа (i, ii, iii, iv, v и т.н.)',
|
|
228
|
+
upperRoman : 'Големи римски числа (I, II, III, IV, V и т.н.)',
|
|
229
|
+
lowerAlpha : 'Малки букви (а, б, в, г, д и т.н.)',
|
|
230
|
+
upperAlpha : 'Големи букви (А, Б, В, Г, Д и т.н.)',
|
|
231
|
+
lowerGreek : 'Малки гръцки букви (алфа, бета, гама и т.н.)',
|
|
232
|
+
decimal : 'Числа (1, 2, 3 и др.)',
|
|
233
|
+
decimalLeadingZero : 'Числа с водеща нула (01, 02, 03 и т.н.)'
|
|
234
234
|
},
|
|
235
235
|
|
|
236
236
|
// Find And Replace Dialog
|
|
237
237
|
findAndReplace :
|
|
238
238
|
{
|
|
239
|
-
title : '
|
|
240
|
-
find : '
|
|
241
|
-
replace : '
|
|
242
|
-
findWhat : '
|
|
243
|
-
replaceWith : '
|
|
244
|
-
notFoundMsg : '
|
|
239
|
+
title : 'Търсене и препокриване',
|
|
240
|
+
find : 'Търсене',
|
|
241
|
+
replace : 'Препокриване',
|
|
242
|
+
findWhat : 'Търси за:',
|
|
243
|
+
replaceWith : 'Препокрива с:',
|
|
244
|
+
notFoundMsg : 'Указаният текст не е намерен.',
|
|
245
245
|
findOptions : 'Find Options', // MISSING
|
|
246
|
-
matchCase : '
|
|
247
|
-
matchWord : '
|
|
248
|
-
matchCyclic : '
|
|
249
|
-
replaceAll : '
|
|
246
|
+
matchCase : 'Съвпадение',
|
|
247
|
+
matchWord : 'Съвпадение с дума',
|
|
248
|
+
matchCyclic : 'Циклично съвпадение',
|
|
249
|
+
replaceAll : 'Препокрий всички',
|
|
250
250
|
replaceSuccessMsg : '%1 occurrence(s) replaced.' // MISSING
|
|
251
251
|
},
|
|
252
252
|
|
|
@@ -254,26 +254,26 @@ CKEDITOR.lang['bg'] =
|
|
|
254
254
|
table :
|
|
255
255
|
{
|
|
256
256
|
toolbar : 'Таблица',
|
|
257
|
-
title : '
|
|
258
|
-
menu : '
|
|
259
|
-
deleteTable : '
|
|
257
|
+
title : 'Настройки на таблицата',
|
|
258
|
+
menu : 'Настройки на таблицата',
|
|
259
|
+
deleteTable : 'Изтриване на таблица',
|
|
260
260
|
rows : 'Редове',
|
|
261
261
|
columns : 'Колони',
|
|
262
262
|
border : 'Размер на рамката',
|
|
263
|
-
widthPx : '
|
|
264
|
-
widthPc : '
|
|
265
|
-
widthUnit : '
|
|
266
|
-
cellSpace : '
|
|
267
|
-
cellPad : '
|
|
263
|
+
widthPx : 'пиксела',
|
|
264
|
+
widthPc : 'процент',
|
|
265
|
+
widthUnit : 'единица за ширина',
|
|
266
|
+
cellSpace : 'Разтояние между клетките',
|
|
267
|
+
cellPad : 'Отделяне на клетките',
|
|
268
268
|
caption : 'Заглавие',
|
|
269
|
-
summary : '
|
|
270
|
-
headers : '
|
|
271
|
-
headersNone : '
|
|
272
|
-
headersColumn : '
|
|
273
|
-
headersRow : '
|
|
274
|
-
headersBoth : '
|
|
275
|
-
invalidRows : '
|
|
276
|
-
invalidCols : '
|
|
269
|
+
summary : 'Обща информация',
|
|
270
|
+
headers : 'Хедъри',
|
|
271
|
+
headersNone : 'Няма',
|
|
272
|
+
headersColumn : 'Първа колона',
|
|
273
|
+
headersRow : 'Първи ред',
|
|
274
|
+
headersBoth : 'Заедно',
|
|
275
|
+
invalidRows : 'Броят редове трябва да е по-голям от 0.',
|
|
276
|
+
invalidCols : 'Броят колони трябва да е по-голям от 0.',
|
|
277
277
|
invalidBorder : 'Border size must be a number.', // MISSING
|
|
278
278
|
invalidWidth : 'Table width must be a number.', // MISSING
|
|
279
279
|
invalidHeight : 'Table height must be a number.', // MISSING
|
|
@@ -282,107 +282,107 @@ CKEDITOR.lang['bg'] =
|
|
|
282
282
|
|
|
283
283
|
cell :
|
|
284
284
|
{
|
|
285
|
-
menu : '
|
|
286
|
-
insertBefore : '
|
|
287
|
-
insertAfter : '
|
|
288
|
-
deleteCell : '
|
|
289
|
-
merge : '
|
|
290
|
-
mergeRight : '
|
|
285
|
+
menu : 'Клетка',
|
|
286
|
+
insertBefore : 'Вмъкване на клетка преди',
|
|
287
|
+
insertAfter : 'Вмъкване на клетка след',
|
|
288
|
+
deleteCell : 'Изтриване на клетки',
|
|
289
|
+
merge : 'Сливане на клетки',
|
|
290
|
+
mergeRight : 'Сливане в дясно',
|
|
291
291
|
mergeDown : 'Merge Down', // MISSING
|
|
292
292
|
splitHorizontal : 'Split Cell Horizontally', // MISSING
|
|
293
293
|
splitVertical : 'Split Cell Vertically', // MISSING
|
|
294
|
-
title : '
|
|
295
|
-
cellType : '
|
|
294
|
+
title : 'Настройки на клетката',
|
|
295
|
+
cellType : 'Тип на клетката',
|
|
296
296
|
rowSpan : 'Rows Span', // MISSING
|
|
297
297
|
colSpan : 'Columns Span', // MISSING
|
|
298
|
-
wordWrap : '
|
|
299
|
-
hAlign : '
|
|
300
|
-
vAlign : '
|
|
301
|
-
alignBaseline : '
|
|
302
|
-
bgColor : '
|
|
303
|
-
borderColor : '
|
|
304
|
-
data : '
|
|
305
|
-
header : '
|
|
306
|
-
yes : '
|
|
307
|
-
no : '
|
|
298
|
+
wordWrap : 'Авто. пренос',
|
|
299
|
+
hAlign : 'Хоризонтално подравняване',
|
|
300
|
+
vAlign : 'Вертикално подравняване',
|
|
301
|
+
alignBaseline : 'Базова линия',
|
|
302
|
+
bgColor : 'Фон',
|
|
303
|
+
borderColor : 'Цвят на рамката',
|
|
304
|
+
data : 'Данни',
|
|
305
|
+
header : 'Хедър',
|
|
306
|
+
yes : 'Да',
|
|
307
|
+
no : 'Не',
|
|
308
308
|
invalidWidth : 'Cell width must be a number.', // MISSING
|
|
309
309
|
invalidHeight : 'Cell height must be a number.', // MISSING
|
|
310
310
|
invalidRowSpan : 'Rows span must be a whole number.', // MISSING
|
|
311
311
|
invalidColSpan : 'Columns span must be a whole number.', // MISSING
|
|
312
|
-
chooseColor : '
|
|
312
|
+
chooseColor : 'Изберете'
|
|
313
313
|
},
|
|
314
314
|
|
|
315
315
|
row :
|
|
316
316
|
{
|
|
317
|
-
menu : '
|
|
317
|
+
menu : 'Ред',
|
|
318
318
|
insertBefore : 'Insert Row Before', // MISSING
|
|
319
|
-
insertAfter : '
|
|
320
|
-
deleteRow : '
|
|
319
|
+
insertAfter : 'Вмъкване на ред след',
|
|
320
|
+
deleteRow : 'Изтриване на редове'
|
|
321
321
|
},
|
|
322
322
|
|
|
323
323
|
column :
|
|
324
324
|
{
|
|
325
|
-
menu : '
|
|
326
|
-
insertBefore : '
|
|
327
|
-
insertAfter : '
|
|
328
|
-
deleteColumn : '
|
|
325
|
+
menu : 'Колона',
|
|
326
|
+
insertBefore : 'Вмъкване на колона преди',
|
|
327
|
+
insertAfter : 'Вмъкване на колона след',
|
|
328
|
+
deleteColumn : 'Изтриване на колони'
|
|
329
329
|
}
|
|
330
330
|
},
|
|
331
331
|
|
|
332
332
|
// Button Dialog.
|
|
333
333
|
button :
|
|
334
334
|
{
|
|
335
|
-
title : '
|
|
336
|
-
text : 'Текст (
|
|
335
|
+
title : 'Настройки на бутона',
|
|
336
|
+
text : 'Текст (стойност)',
|
|
337
337
|
type : 'Тип',
|
|
338
|
-
typeBtn : '
|
|
339
|
-
typeSbm : '
|
|
340
|
-
typeRst : '
|
|
338
|
+
typeBtn : 'Бутон',
|
|
339
|
+
typeSbm : 'Добави',
|
|
340
|
+
typeRst : 'Нулиране'
|
|
341
341
|
},
|
|
342
342
|
|
|
343
343
|
// Checkbox and Radio Button Dialogs.
|
|
344
344
|
checkboxAndRadio :
|
|
345
345
|
{
|
|
346
|
-
checkboxTitle : '
|
|
347
|
-
radioTitle : '
|
|
346
|
+
checkboxTitle : 'Checkbox Properties', // MISSING
|
|
347
|
+
radioTitle : 'Настройки на радиобутон',
|
|
348
348
|
value : 'Стойност',
|
|
349
|
-
selected : '
|
|
349
|
+
selected : 'Избрано'
|
|
350
350
|
},
|
|
351
351
|
|
|
352
352
|
// Form Dialog.
|
|
353
353
|
form :
|
|
354
354
|
{
|
|
355
|
-
title : '
|
|
356
|
-
menu : '
|
|
355
|
+
title : 'Настройки на формата',
|
|
356
|
+
menu : 'Настройки на формата',
|
|
357
357
|
action : 'Действие',
|
|
358
358
|
method : 'Метод',
|
|
359
|
-
encoding : '
|
|
359
|
+
encoding : 'Кодиране'
|
|
360
360
|
},
|
|
361
361
|
|
|
362
362
|
// Select Field Dialog.
|
|
363
363
|
select :
|
|
364
364
|
{
|
|
365
|
-
title : '
|
|
366
|
-
selectInfo : '
|
|
367
|
-
opAvail : '
|
|
365
|
+
title : 'Selection Field Properties', // MISSING
|
|
366
|
+
selectInfo : 'Select Info', // MISSING
|
|
367
|
+
opAvail : 'Налични опции',
|
|
368
368
|
value : 'Стойност',
|
|
369
369
|
size : 'Размер',
|
|
370
370
|
lines : 'линии',
|
|
371
|
-
chkMulti : '
|
|
371
|
+
chkMulti : 'Allow multiple selections', // MISSING
|
|
372
372
|
opText : 'Текст',
|
|
373
373
|
opValue : 'Стойност',
|
|
374
374
|
btnAdd : 'Добави',
|
|
375
375
|
btnModify : 'Промени',
|
|
376
|
-
btnUp : '
|
|
377
|
-
btnDown : '
|
|
378
|
-
btnSetValue : '
|
|
379
|
-
btnDelete : '
|
|
376
|
+
btnUp : 'На горе',
|
|
377
|
+
btnDown : 'На долу',
|
|
378
|
+
btnSetValue : 'Set as selected value', // MISSING
|
|
379
|
+
btnDelete : 'Изтриване'
|
|
380
380
|
},
|
|
381
381
|
|
|
382
382
|
// Textarea Dialog.
|
|
383
383
|
textarea :
|
|
384
384
|
{
|
|
385
|
-
title : '
|
|
385
|
+
title : 'Опции за текстовата зона',
|
|
386
386
|
cols : 'Колони',
|
|
387
387
|
rows : 'Редове'
|
|
388
388
|
},
|
|
@@ -390,11 +390,11 @@ CKEDITOR.lang['bg'] =
|
|
|
390
390
|
// Text Field Dialog.
|
|
391
391
|
textfield :
|
|
392
392
|
{
|
|
393
|
-
title : '
|
|
393
|
+
title : 'Настройки за текстово поле',
|
|
394
394
|
name : 'Име',
|
|
395
395
|
value : 'Стойност',
|
|
396
|
-
charWidth : 'Ширина на
|
|
397
|
-
maxChars : '
|
|
396
|
+
charWidth : 'Ширина на знаците',
|
|
397
|
+
maxChars : 'Макс. знаци',
|
|
398
398
|
type : 'Тип',
|
|
399
399
|
typeText : 'Текст',
|
|
400
400
|
typePass : 'Парола'
|
|
@@ -403,7 +403,7 @@ CKEDITOR.lang['bg'] =
|
|
|
403
403
|
// Hidden Field Dialog.
|
|
404
404
|
hidden :
|
|
405
405
|
{
|
|
406
|
-
title : '
|
|
406
|
+
title : 'Настройки за скрито поле',
|
|
407
407
|
name : 'Име',
|
|
408
408
|
value : 'Стойност'
|
|
409
409
|
},
|
|
@@ -411,19 +411,19 @@ CKEDITOR.lang['bg'] =
|
|
|
411
411
|
// Image Dialog.
|
|
412
412
|
image :
|
|
413
413
|
{
|
|
414
|
-
title : '
|
|
415
|
-
titleButton : '
|
|
416
|
-
menu : '
|
|
417
|
-
infoTab : '
|
|
418
|
-
btnUpload : '
|
|
419
|
-
upload : '
|
|
414
|
+
title : 'Настройки за снимка',
|
|
415
|
+
titleButton : 'Настойки за бутон за снимка',
|
|
416
|
+
menu : 'Настройки за снимка',
|
|
417
|
+
infoTab : 'Инфо за снимка',
|
|
418
|
+
btnUpload : 'Изпрати я на сървъра',
|
|
419
|
+
upload : 'Качване',
|
|
420
420
|
alt : 'Алтернативен текст',
|
|
421
|
-
lockRatio : '
|
|
422
|
-
resetSize : '
|
|
421
|
+
lockRatio : 'Заключване на съотношението',
|
|
422
|
+
resetSize : 'Нулиране на размер',
|
|
423
423
|
border : 'Рамка',
|
|
424
|
-
hSpace : '
|
|
425
|
-
vSpace : '
|
|
426
|
-
alertUrl : '
|
|
424
|
+
hSpace : 'HSpace', // MISSING
|
|
425
|
+
vSpace : 'VSpace', // MISSING
|
|
426
|
+
alertUrl : 'Please type the image URL', // MISSING
|
|
427
427
|
linkTab : 'Връзка',
|
|
428
428
|
button2Img : 'Do you want to transform the selected image button on a simple image?', // MISSING
|
|
429
429
|
img2Button : 'Do you want to transform the selected image on a image button?', // MISSING
|
|
@@ -436,41 +436,41 @@ CKEDITOR.lang['bg'] =
|
|
|
436
436
|
// Flash Dialog
|
|
437
437
|
flash :
|
|
438
438
|
{
|
|
439
|
-
properties : '
|
|
440
|
-
propertiesTab : '
|
|
441
|
-
title : '
|
|
442
|
-
chkPlay : '
|
|
443
|
-
chkLoop : '
|
|
444
|
-
chkMenu : '
|
|
439
|
+
properties : 'Настройки за флаш',
|
|
440
|
+
propertiesTab : 'Настройки',
|
|
441
|
+
title : 'Настройки за флаш',
|
|
442
|
+
chkPlay : 'Авто. пускане',
|
|
443
|
+
chkLoop : 'Цикъл',
|
|
444
|
+
chkMenu : 'Enable Flash Menu', // MISSING
|
|
445
445
|
chkFull : 'Allow Fullscreen', // MISSING
|
|
446
|
-
scale : '
|
|
447
|
-
scaleAll : '
|
|
446
|
+
scale : 'Scale', // MISSING
|
|
447
|
+
scaleAll : 'Показва всичко',
|
|
448
448
|
scaleNoBorder : 'Без рамка',
|
|
449
|
-
scaleFit : '
|
|
449
|
+
scaleFit : 'Exact Fit', // MISSING
|
|
450
450
|
access : 'Script Access', // MISSING
|
|
451
|
-
accessAlways : '
|
|
452
|
-
accessSameDomain: '
|
|
453
|
-
accessNever : '
|
|
454
|
-
alignAbsBottom : '
|
|
455
|
-
alignAbsMiddle : '
|
|
456
|
-
alignBaseline : '
|
|
457
|
-
alignTextTop : '
|
|
458
|
-
quality : '
|
|
459
|
-
qualityBest : '
|
|
460
|
-
qualityHigh : '
|
|
461
|
-
qualityAutoHigh : '
|
|
462
|
-
qualityMedium : '
|
|
463
|
-
qualityAutoLow : '
|
|
464
|
-
qualityLow : '
|
|
465
|
-
windowModeWindow: '
|
|
466
|
-
windowModeOpaque: '
|
|
467
|
-
windowModeTransparent : '
|
|
468
|
-
windowMode : '
|
|
469
|
-
flashvars : '
|
|
470
|
-
bgcolor : '
|
|
471
|
-
hSpace : '
|
|
472
|
-
vSpace : '
|
|
473
|
-
validateSrc : '
|
|
451
|
+
accessAlways : 'Винаги',
|
|
452
|
+
accessSameDomain: 'Същият домейн',
|
|
453
|
+
accessNever : 'Никога',
|
|
454
|
+
alignAbsBottom : 'Abs Bottom', // MISSING
|
|
455
|
+
alignAbsMiddle : 'Abs Middle', // MISSING
|
|
456
|
+
alignBaseline : 'Baseline', // MISSING
|
|
457
|
+
alignTextTop : 'Text Top', // MISSING
|
|
458
|
+
quality : 'Качество',
|
|
459
|
+
qualityBest : 'Отлично',
|
|
460
|
+
qualityHigh : 'Високо',
|
|
461
|
+
qualityAutoHigh : 'Авто. високо',
|
|
462
|
+
qualityMedium : 'Средно',
|
|
463
|
+
qualityAutoLow : 'Авто. ниско',
|
|
464
|
+
qualityLow : 'Ниско',
|
|
465
|
+
windowModeWindow: 'Прозорец',
|
|
466
|
+
windowModeOpaque: 'Плътност',
|
|
467
|
+
windowModeTransparent : 'Прозрачност',
|
|
468
|
+
windowMode : 'Режим на прозореца',
|
|
469
|
+
flashvars : 'Променливи за Флаш',
|
|
470
|
+
bgcolor : 'Background color', // MISSING
|
|
471
|
+
hSpace : 'HSpace', // MISSING
|
|
472
|
+
vSpace : 'VSpace', // MISSING
|
|
473
|
+
validateSrc : 'Уеб адреса не трябва да е празен.',
|
|
474
474
|
validateHSpace : 'HSpace must be a number.', // MISSING
|
|
475
475
|
validateVSpace : 'VSpace must be a number.' // MISSING
|
|
476
476
|
},
|
|
@@ -478,60 +478,60 @@ CKEDITOR.lang['bg'] =
|
|
|
478
478
|
// Speller Pages Dialog
|
|
479
479
|
spellCheck :
|
|
480
480
|
{
|
|
481
|
-
toolbar : '
|
|
482
|
-
title : '
|
|
483
|
-
notAvailable : '
|
|
481
|
+
toolbar : 'Проверка на правопис',
|
|
482
|
+
title : 'Проверка на правопис',
|
|
483
|
+
notAvailable : 'Съжаляваме, но услугата не е достъпна за момента',
|
|
484
484
|
errorLoading : 'Error loading application service host: %s.', // MISSING
|
|
485
|
-
notInDic : '
|
|
485
|
+
notInDic : 'Не е в речника',
|
|
486
486
|
changeTo : 'Промени на',
|
|
487
487
|
btnIgnore : 'Игнорирай',
|
|
488
|
-
btnIgnoreAll : 'Игнорирай
|
|
489
|
-
btnReplace : '
|
|
490
|
-
btnReplaceAll : '
|
|
491
|
-
btnUndo : '
|
|
492
|
-
noSuggestions : '- Няма
|
|
493
|
-
progress : '
|
|
494
|
-
noMispell : '
|
|
495
|
-
noChanges : '
|
|
496
|
-
oneChange : '
|
|
497
|
-
manyChanges : '
|
|
498
|
-
ieSpellDownload : '
|
|
488
|
+
btnIgnoreAll : 'Игнорирай всичко',
|
|
489
|
+
btnReplace : 'Препокриване',
|
|
490
|
+
btnReplaceAll : 'Препокрий всичко',
|
|
491
|
+
btnUndo : 'Възтанови',
|
|
492
|
+
noSuggestions : '- Няма препоръчани -',
|
|
493
|
+
progress : 'Проверява се правописа...',
|
|
494
|
+
noMispell : 'Spell check complete: No misspellings found', // MISSING
|
|
495
|
+
noChanges : 'Spell check complete: No words changed', // MISSING
|
|
496
|
+
oneChange : 'Spell check complete: One word changed', // MISSING
|
|
497
|
+
manyChanges : 'Spell check complete: %1 words changed', // MISSING
|
|
498
|
+
ieSpellDownload : 'Spell checker not installed. Do you want to download it now?' // MISSING
|
|
499
499
|
},
|
|
500
500
|
|
|
501
501
|
smiley :
|
|
502
502
|
{
|
|
503
503
|
toolbar : 'Усмивка',
|
|
504
|
-
title : '
|
|
505
|
-
options : '
|
|
504
|
+
title : 'Вмъкване на усмивка',
|
|
505
|
+
options : 'Опции за усмивката'
|
|
506
506
|
},
|
|
507
507
|
|
|
508
508
|
elementsPath :
|
|
509
509
|
{
|
|
510
|
-
eleLabel : '
|
|
511
|
-
eleTitle : '%1
|
|
510
|
+
eleLabel : 'Път за елементите',
|
|
511
|
+
eleTitle : '%1 елемент'
|
|
512
512
|
},
|
|
513
513
|
|
|
514
|
-
numberedlist : '
|
|
515
|
-
bulletedlist : '
|
|
516
|
-
indent : '
|
|
517
|
-
outdent : '
|
|
514
|
+
numberedlist : 'Вмъкване/Премахване на номериран списък',
|
|
515
|
+
bulletedlist : 'Вмъкване/Премахване на точков списък',
|
|
516
|
+
indent : 'Увеличаване на отстъпа',
|
|
517
|
+
outdent : 'Намаляване на отстъпа',
|
|
518
518
|
|
|
519
519
|
justify :
|
|
520
520
|
{
|
|
521
|
-
left : '
|
|
522
|
-
center : '
|
|
523
|
-
right : '
|
|
524
|
-
block : '
|
|
521
|
+
left : 'Подравни в ляво',
|
|
522
|
+
center : 'Център',
|
|
523
|
+
right : 'Подравни в дясно',
|
|
524
|
+
block : 'Justify' // MISSING
|
|
525
525
|
},
|
|
526
526
|
|
|
527
|
-
blockquote : '
|
|
527
|
+
blockquote : 'Блок за цитат',
|
|
528
528
|
|
|
529
529
|
clipboard :
|
|
530
530
|
{
|
|
531
|
-
title : '
|
|
532
|
-
cutError : 'Настройките за сигурност на
|
|
533
|
-
copyError : '
|
|
534
|
-
pasteMsg : '
|
|
531
|
+
title : 'Paste', // MISSING
|
|
532
|
+
cutError : 'Настройките за сигурност на Вашия браузър не позволяват на редактора автоматично да изъплни действията за отрязване. Моля ползвайте клавиатурните команди за целта (ctrl+x).',
|
|
533
|
+
copyError : 'Your browser security settings don\'t permit the editor to automatically execute copying operations. Please use the keyboard for that (Ctrl/Cmd+C).', // MISSING
|
|
534
|
+
pasteMsg : 'Please paste inside the following box using the keyboard (<strong>Ctrl/Cmd+V</strong>) and hit OK', // MISSING
|
|
535
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
536
|
pasteArea : 'Paste Area' // MISSING
|
|
537
537
|
},
|
|
@@ -539,32 +539,32 @@ CKEDITOR.lang['bg'] =
|
|
|
539
539
|
pastefromword :
|
|
540
540
|
{
|
|
541
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 : '
|
|
543
|
-
title : '
|
|
542
|
+
toolbar : 'Paste from Word', // MISSING
|
|
543
|
+
title : 'Paste from Word', // MISSING
|
|
544
544
|
error : 'It was not possible to clean up the pasted data due to an internal error' // MISSING
|
|
545
545
|
},
|
|
546
546
|
|
|
547
547
|
pasteText :
|
|
548
548
|
{
|
|
549
|
-
button : '
|
|
550
|
-
title : '
|
|
549
|
+
button : 'Paste as plain text', // MISSING
|
|
550
|
+
title : 'Paste as Plain Text' // MISSING
|
|
551
551
|
},
|
|
552
552
|
|
|
553
553
|
templates :
|
|
554
554
|
{
|
|
555
|
-
button : '
|
|
556
|
-
title : '
|
|
555
|
+
button : 'Templates', // MISSING
|
|
556
|
+
title : 'Content Templates', // MISSING
|
|
557
557
|
options : 'Template Options', // MISSING
|
|
558
558
|
insertOption : 'Replace actual contents', // MISSING
|
|
559
|
-
selectPromptMsg : '
|
|
560
|
-
emptyListMsg : '(
|
|
559
|
+
selectPromptMsg : 'Please select the template to open in the editor', // MISSING
|
|
560
|
+
emptyListMsg : '(No templates defined)' // MISSING
|
|
561
561
|
},
|
|
562
562
|
|
|
563
|
-
showBlocks : '
|
|
563
|
+
showBlocks : 'Показва блокове',
|
|
564
564
|
|
|
565
565
|
stylesCombo :
|
|
566
566
|
{
|
|
567
|
-
label : '
|
|
567
|
+
label : 'Styles', // MISSING
|
|
568
568
|
panelTitle : 'Formatting Styles', // MISSING
|
|
569
569
|
panelTitle1 : 'Block Styles', // MISSING
|
|
570
570
|
panelTitle2 : 'Inline Styles', // MISSING
|
|
@@ -573,19 +573,19 @@ CKEDITOR.lang['bg'] =
|
|
|
573
573
|
|
|
574
574
|
format :
|
|
575
575
|
{
|
|
576
|
-
label : '
|
|
577
|
-
panelTitle : '
|
|
576
|
+
label : 'Format', // MISSING
|
|
577
|
+
panelTitle : 'Paragraph Format', // MISSING
|
|
578
578
|
|
|
579
|
-
tag_p : '
|
|
580
|
-
tag_pre : '
|
|
581
|
-
tag_address : '
|
|
582
|
-
tag_h1 : '
|
|
583
|
-
tag_h2 : '
|
|
584
|
-
tag_h3 : '
|
|
585
|
-
tag_h4 : '
|
|
586
|
-
tag_h5 : '
|
|
587
|
-
tag_h6 : '
|
|
588
|
-
tag_div : '
|
|
579
|
+
tag_p : 'Normal', // MISSING
|
|
580
|
+
tag_pre : 'Formatted', // MISSING
|
|
581
|
+
tag_address : 'Address', // MISSING
|
|
582
|
+
tag_h1 : 'Heading 1', // MISSING
|
|
583
|
+
tag_h2 : 'Heading 2', // MISSING
|
|
584
|
+
tag_h3 : 'Heading 3', // MISSING
|
|
585
|
+
tag_h4 : 'Heading 4', // MISSING
|
|
586
|
+
tag_h5 : 'Heading 5', // MISSING
|
|
587
|
+
tag_h6 : 'Heading 6', // MISSING
|
|
588
|
+
tag_div : 'Normal (DIV)' // MISSING
|
|
589
589
|
},
|
|
590
590
|
|
|
591
591
|
div :
|
|
@@ -593,22 +593,22 @@ CKEDITOR.lang['bg'] =
|
|
|
593
593
|
title : 'Create Div Container', // MISSING
|
|
594
594
|
toolbar : 'Create Div Container', // MISSING
|
|
595
595
|
cssClassInputLabel : 'Stylesheet Classes', // MISSING
|
|
596
|
-
styleSelectLabel : '
|
|
597
|
-
IdInputLabel : '
|
|
598
|
-
languageCodeInputLabel : '
|
|
596
|
+
styleSelectLabel : 'Стил',
|
|
597
|
+
IdInputLabel : 'ID',
|
|
598
|
+
languageCodeInputLabel : ' Код на езика',
|
|
599
599
|
inlineStyleInputLabel : 'Inline Style', // MISSING
|
|
600
600
|
advisoryTitleInputLabel : 'Advisory Title', // MISSING
|
|
601
601
|
langDirLabel : 'Language Direction', // MISSING
|
|
602
602
|
langDirLTRLabel : 'Left to Right (LTR)', // MISSING
|
|
603
603
|
langDirRTLLabel : 'Right to Left (RTL)', // MISSING
|
|
604
|
-
edit : '
|
|
605
|
-
remove : '
|
|
604
|
+
edit : 'Промяна на Div',
|
|
605
|
+
remove : 'Премахване на Div'
|
|
606
606
|
},
|
|
607
607
|
|
|
608
608
|
iframe :
|
|
609
609
|
{
|
|
610
|
-
title : 'IFrame
|
|
611
|
-
toolbar : 'IFrame',
|
|
610
|
+
title : 'IFrame настройки',
|
|
611
|
+
toolbar : 'IFrame',
|
|
612
612
|
noUrl : 'Please type the iframe URL', // MISSING
|
|
613
613
|
scrolling : 'Enable scrollbars', // MISSING
|
|
614
614
|
border : 'Show frame border' // MISSING
|
|
@@ -617,49 +617,49 @@ CKEDITOR.lang['bg'] =
|
|
|
617
617
|
font :
|
|
618
618
|
{
|
|
619
619
|
label : 'Шрифт',
|
|
620
|
-
voiceLabel : '
|
|
621
|
-
panelTitle : '
|
|
620
|
+
voiceLabel : 'Шрифт',
|
|
621
|
+
panelTitle : 'Име на шрифт'
|
|
622
622
|
},
|
|
623
623
|
|
|
624
624
|
fontSize :
|
|
625
625
|
{
|
|
626
626
|
label : 'Размер',
|
|
627
|
-
voiceLabel : '
|
|
628
|
-
panelTitle : 'Размер'
|
|
627
|
+
voiceLabel : 'Размер на шрифт',
|
|
628
|
+
panelTitle : 'Размер на шрифт'
|
|
629
629
|
},
|
|
630
630
|
|
|
631
631
|
colorButton :
|
|
632
632
|
{
|
|
633
|
-
textColorTitle : 'Цвят на
|
|
634
|
-
bgColorTitle : '
|
|
635
|
-
panelTitle : '
|
|
636
|
-
auto : '
|
|
637
|
-
more : '
|
|
633
|
+
textColorTitle : 'Цвят на шрифт',
|
|
634
|
+
bgColorTitle : 'Фонов цвят',
|
|
635
|
+
panelTitle : 'Цветове',
|
|
636
|
+
auto : 'Автоматично',
|
|
637
|
+
more : 'Още цветове'
|
|
638
638
|
},
|
|
639
639
|
|
|
640
640
|
colors :
|
|
641
641
|
{
|
|
642
|
-
'000' : '
|
|
643
|
-
'800000' : '
|
|
644
|
-
'8B4513' : '
|
|
642
|
+
'000' : 'Черно',
|
|
643
|
+
'800000' : 'Кестеняво',
|
|
644
|
+
'8B4513' : 'Светлокафяво',
|
|
645
645
|
'2F4F4F' : 'Dark Slate Gray', // MISSING
|
|
646
646
|
'008080' : 'Teal', // MISSING
|
|
647
647
|
'000080' : 'Navy', // MISSING
|
|
648
|
-
'4B0082' : '
|
|
649
|
-
'696969' : '
|
|
650
|
-
'B22222' : '
|
|
651
|
-
'A52A2A' : '
|
|
652
|
-
'DAA520' : '
|
|
653
|
-
'006400' : '
|
|
654
|
-
'40E0D0' : '
|
|
655
|
-
'0000CD' : '
|
|
656
|
-
'800080' : '
|
|
657
|
-
'808080' : '
|
|
658
|
-
'F00' : '
|
|
659
|
-
'FF8C00' : '
|
|
660
|
-
'FFD700' : '
|
|
661
|
-
'008000' : '
|
|
662
|
-
'0FF' : '
|
|
648
|
+
'4B0082' : 'Индиго',
|
|
649
|
+
'696969' : 'Тъмно сиво',
|
|
650
|
+
'B22222' : 'Огнено червено',
|
|
651
|
+
'A52A2A' : 'Кафяво',
|
|
652
|
+
'DAA520' : 'Златисто',
|
|
653
|
+
'006400' : 'Тъмно зелено',
|
|
654
|
+
'40E0D0' : 'Тюркуазено',
|
|
655
|
+
'0000CD' : 'Средно синьо',
|
|
656
|
+
'800080' : 'Пурпурно',
|
|
657
|
+
'808080' : 'Сиво',
|
|
658
|
+
'F00' : 'Червено',
|
|
659
|
+
'FF8C00' : 'Тъмно оранжево',
|
|
660
|
+
'FFD700' : 'Златно',
|
|
661
|
+
'008000' : 'Зелено',
|
|
662
|
+
'0FF' : 'Светло синьо',
|
|
663
663
|
'00F' : 'Blue', // MISSING
|
|
664
664
|
'EE82EE' : 'Violet', // MISSING
|
|
665
665
|
'A9A9A9' : 'Dim Gray', // MISSING
|
|
@@ -701,70 +701,70 @@ CKEDITOR.lang['bg'] =
|
|
|
701
701
|
allCaps : 'Ignore All-Caps Words', // MISSING
|
|
702
702
|
ignoreDomainNames : 'Ignore Domain Names', // MISSING
|
|
703
703
|
mixedCase : 'Ignore Words with Mixed Case', // MISSING
|
|
704
|
-
mixedWithDigits : '
|
|
704
|
+
mixedWithDigits : 'Игнорирани думи и цифри',
|
|
705
705
|
|
|
706
|
-
languagesTab : '
|
|
706
|
+
languagesTab : 'Езици',
|
|
707
707
|
|
|
708
|
-
dictionariesTab : '
|
|
709
|
-
dic_field_name : '
|
|
710
|
-
dic_create : '
|
|
711
|
-
dic_restore : '
|
|
712
|
-
dic_delete : '
|
|
713
|
-
dic_rename : '
|
|
708
|
+
dictionariesTab : 'Речници',
|
|
709
|
+
dic_field_name : 'Име на речнк',
|
|
710
|
+
dic_create : 'Нов',
|
|
711
|
+
dic_restore : 'Възтановяване',
|
|
712
|
+
dic_delete : 'Изтриване',
|
|
713
|
+
dic_rename : 'Преименуване',
|
|
714
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
715
|
|
|
716
|
-
aboutTab : '
|
|
716
|
+
aboutTab : 'Относно'
|
|
717
717
|
},
|
|
718
718
|
|
|
719
719
|
about :
|
|
720
720
|
{
|
|
721
|
-
title : '
|
|
722
|
-
dlgTitle : '
|
|
723
|
-
help : '
|
|
721
|
+
title : 'Относно CKEditor',
|
|
722
|
+
dlgTitle : 'Относно CKEditor',
|
|
723
|
+
help : 'Проверете $1 за помощ.',
|
|
724
724
|
userGuide : 'CKEditor User\'s Guide', // MISSING
|
|
725
|
-
moreInfo : '
|
|
726
|
-
copy : 'Copyright © $1. All rights reserved.'
|
|
725
|
+
moreInfo : 'За лицензионна информация моля посетете сайта ни:',
|
|
726
|
+
copy : 'Copyright © $1. All rights reserved.'
|
|
727
727
|
},
|
|
728
728
|
|
|
729
|
-
maximize : '
|
|
730
|
-
minimize : '
|
|
729
|
+
maximize : 'Максимизиране',
|
|
730
|
+
minimize : 'Минимизиране',
|
|
731
731
|
|
|
732
732
|
fakeobjects :
|
|
733
733
|
{
|
|
734
|
-
anchor : '
|
|
735
|
-
flash : '
|
|
736
|
-
iframe : 'IFrame',
|
|
737
|
-
hiddenfield : '
|
|
738
|
-
unknown : '
|
|
734
|
+
anchor : 'Кука',
|
|
735
|
+
flash : 'Флаш анимация',
|
|
736
|
+
iframe : 'IFrame',
|
|
737
|
+
hiddenfield : 'Скрито поле',
|
|
738
|
+
unknown : 'Неизвестен обект'
|
|
739
739
|
},
|
|
740
740
|
|
|
741
|
-
resize : '
|
|
741
|
+
resize : 'Влачете за да оразмерите',
|
|
742
742
|
|
|
743
743
|
colordialog :
|
|
744
744
|
{
|
|
745
|
-
title : '
|
|
746
|
-
options : '
|
|
747
|
-
highlight : '
|
|
748
|
-
selected : '
|
|
749
|
-
clear : '
|
|
745
|
+
title : 'Изберете цвят',
|
|
746
|
+
options : 'Цветови опции',
|
|
747
|
+
highlight : 'Осветяване',
|
|
748
|
+
selected : 'Изберете цвят',
|
|
749
|
+
clear : 'Изчистване'
|
|
750
750
|
},
|
|
751
751
|
|
|
752
|
-
toolbarCollapse : '
|
|
753
|
-
toolbarExpand : '
|
|
752
|
+
toolbarCollapse : 'Свиване на лентата с инструменти',
|
|
753
|
+
toolbarExpand : 'Разширяване на лентата с инструменти',
|
|
754
754
|
|
|
755
755
|
toolbarGroups :
|
|
756
756
|
{
|
|
757
|
-
document : '
|
|
757
|
+
document : 'Документ',
|
|
758
758
|
clipboard : 'Clipboard/Undo', // MISSING
|
|
759
|
-
editing : '
|
|
760
|
-
forms : '
|
|
761
|
-
basicstyles : '
|
|
762
|
-
paragraph : '
|
|
763
|
-
links : '
|
|
764
|
-
insert : '
|
|
765
|
-
styles : '
|
|
766
|
-
colors : '
|
|
767
|
-
tools : '
|
|
759
|
+
editing : 'Промяна',
|
|
760
|
+
forms : 'Форми',
|
|
761
|
+
basicstyles : 'Базови стилове',
|
|
762
|
+
paragraph : 'Параграф',
|
|
763
|
+
links : 'Връзки',
|
|
764
|
+
insert : 'Вмъкване',
|
|
765
|
+
styles : 'Стилове',
|
|
766
|
+
colors : 'Цветове',
|
|
767
|
+
tools : 'Инструменти'
|
|
768
768
|
},
|
|
769
769
|
|
|
770
770
|
bidi :
|
|
@@ -775,18 +775,18 @@ CKEDITOR.lang['bg'] =
|
|
|
775
775
|
|
|
776
776
|
docprops :
|
|
777
777
|
{
|
|
778
|
-
label : '
|
|
779
|
-
title : '
|
|
780
|
-
design : '
|
|
781
|
-
meta : 'Мета
|
|
782
|
-
chooseColor : '
|
|
783
|
-
other : '
|
|
778
|
+
label : 'Настройки на документа',
|
|
779
|
+
title : 'Настройки на документа',
|
|
780
|
+
design : 'Дизайн',
|
|
781
|
+
meta : 'Мета етикети',
|
|
782
|
+
chooseColor : 'Изберете',
|
|
783
|
+
other : 'Други...',
|
|
784
784
|
docTitle : 'Заглавие на страницата',
|
|
785
|
-
charset : '
|
|
786
|
-
charsetOther : '
|
|
787
|
-
charsetASCII : 'ASCII',
|
|
788
|
-
charsetCE : '
|
|
789
|
-
charsetCT : '
|
|
785
|
+
charset : 'Кодова таблица',
|
|
786
|
+
charsetOther : 'Друга кодова таблица',
|
|
787
|
+
charsetASCII : 'ASCII',
|
|
788
|
+
charsetCE : 'Централна европейска',
|
|
789
|
+
charsetCT : 'Китайски традиционен',
|
|
790
790
|
charsetCR : 'Cyrillic', // MISSING
|
|
791
791
|
charsetGR : 'Greek', // MISSING
|
|
792
792
|
charsetJP : 'Japanese', // MISSING
|
|
@@ -794,22 +794,22 @@ CKEDITOR.lang['bg'] =
|
|
|
794
794
|
charsetTR : 'Turkish', // MISSING
|
|
795
795
|
charsetUN : 'Unicode (UTF-8)', // MISSING
|
|
796
796
|
charsetWE : 'Western European', // MISSING
|
|
797
|
-
docType : '
|
|
798
|
-
docTypeOther : '
|
|
799
|
-
xhtmlDec : '
|
|
800
|
-
bgColor : '
|
|
801
|
-
bgImage : '
|
|
802
|
-
bgFixed : '
|
|
803
|
-
txtColor : '
|
|
804
|
-
margin : '
|
|
805
|
-
marginTop : '
|
|
806
|
-
marginLeft : '
|
|
807
|
-
marginRight : '
|
|
808
|
-
marginBottom : '
|
|
809
|
-
metaKeywords : '
|
|
810
|
-
metaDescription : '
|
|
811
|
-
metaAuthor : '
|
|
812
|
-
metaCopyright : '
|
|
797
|
+
docType : 'Document Type Heading', // MISSING
|
|
798
|
+
docTypeOther : 'Other Document Type Heading', // MISSING
|
|
799
|
+
xhtmlDec : 'Include XHTML Declarations', // MISSING
|
|
800
|
+
bgColor : 'Background Color', // MISSING
|
|
801
|
+
bgImage : 'Background Image URL', // MISSING
|
|
802
|
+
bgFixed : 'Non-scrolling (Fixed) Background', // MISSING
|
|
803
|
+
txtColor : 'Text Color', // MISSING
|
|
804
|
+
margin : 'Page Margins', // MISSING
|
|
805
|
+
marginTop : 'Top', // MISSING
|
|
806
|
+
marginLeft : 'Left', // MISSING
|
|
807
|
+
marginRight : 'Right', // MISSING
|
|
808
|
+
marginBottom : 'Bottom', // MISSING
|
|
809
|
+
metaKeywords : 'Document Indexing Keywords (comma separated)', // MISSING
|
|
810
|
+
metaDescription : 'Document Description', // MISSING
|
|
811
|
+
metaAuthor : 'Author', // MISSING
|
|
812
|
+
metaCopyright : 'Copyright', // MISSING
|
|
813
813
|
previewHtml : '<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>' // MISSING
|
|
814
814
|
}
|
|
815
815
|
};
|