From 338ff4fe0e55440b065490667992ffcdf3070a82 Mon Sep 17 00:00:00 2001 From: Carsten Schmitz Date: Fri, 11 Oct 2013 15:58:34 +0200 Subject: [PATCH 01/15] Fixed issue: Survey taking broken on MSSQL --- application/controllers/survey/index.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/application/controllers/survey/index.php b/application/controllers/survey/index.php index 1b9671fb70e..d0888c95b15 100644 --- a/application/controllers/survey/index.php +++ b/application/controllers/survey/index.php @@ -695,9 +695,9 @@ function _loadRequiredHelpersAndLibraries() function _loadLimesurveyLang($mvSurveyIdOrBaseLang) { - if ( is_numeric($mvSurveyIdOrBaseLang) && Survey::model()->find($mvSurveyIdOrBaseLang)) + if ( is_numeric($mvSurveyIdOrBaseLang) && Survey::model()->findByPk($mvSurveyIdOrBaseLang)) { - $baselang = Survey::model()->find($mvSurveyIdOrBaseLang)->language; + $baselang = Survey::model()->findByPk($mvSurveyIdOrBaseLang)->language; } elseif (!empty($mvSurveyIdOrBaseLang)) { @@ -707,7 +707,6 @@ function _loadLimesurveyLang($mvSurveyIdOrBaseLang) { $baselang = Yii::app()->getConfig('defaultlang'); } - Yii::import("application.libraries.Limesurvey_lang"); return new Limesurvey_lang($baselang); From 5fa7da5e24c5810ecc3001293f833458fb5131ae Mon Sep 17 00:00:00 2001 From: Carsten Schmitz Date: Fri, 11 Oct 2013 16:23:43 +0200 Subject: [PATCH 02/15] Fixed issue #8191: Uploader iframe includes admin_core.js --- application/controllers/UploaderController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/controllers/UploaderController.php b/application/controllers/UploaderController.php index 21655df8520..c501ffe5819 100644 --- a/application/controllers/UploaderController.php +++ b/application/controllers/UploaderController.php @@ -13,7 +13,7 @@ * $Id$ */ -class UploaderController extends AdminController { +class UploaderController extends SurveyController { function run($actionID) { $surveyid= $_SESSION['LEMsid']; From adb164b7dc73e4522a27719af05a7b5793f6101b Mon Sep 17 00:00:00 2001 From: Carsten Schmitz Date: Fri, 11 Oct 2013 17:23:02 +0200 Subject: [PATCH 03/15] Fixed issue #8205: Quick translation does mix up answer options of Dual matrix question type --- application/controllers/admin/translate.php | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/application/controllers/admin/translate.php b/application/controllers/admin/translate.php index 05d86ecfbad..f80fda74662 100644 --- a/application/controllers/admin/translate.php +++ b/application/controllers/admin/translate.php @@ -118,8 +118,8 @@ private function _translateSave($iSurveyID, $tolang, $baselang, $tab_names) { $id1 = Yii::app()->getRequest()->getPost("{$type}_id1_{$i}"); $id2 = Yii::app()->getRequest()->getPost("{$type}_id2_{$i}"); - - $this->query($type, 'queryupdate', $iSurveyID, $tolang, $baselang, $id1, $id2, $new); + $iScaleID = Yii::app()->getRequest()->getPost("{$type}_scaleid_{$i}"); + $this->query($type, 'queryupdate', $iSurveyID, $tolang, $baselang, $id1, $id2, $iScaleID, $new); } } $i++; @@ -578,6 +578,7 @@ private function setupTranslateFields($type) 'dbColumn' => 'answer', 'id1' => 'qid', 'id2' => 'code', + 'scaleid' => 'scale_id', 'gid' => FALSE, 'qid' => TRUE, 'description' => $clang->gT("Answer options"), @@ -740,7 +741,7 @@ private function setupTranslateFields($type) return $aData; } - private function query($type, $action, $iSurveyID, $tolang, $baselang, $id1 = "", $id2 = "", $new = "") + private function query($type, $action, $iSurveyID, $tolang, $baselang, $id1 = "", $id2 = "", $iScaleID="", $new = "") { $amTypeOptions = array(); switch ($action) @@ -818,8 +819,7 @@ private function query($type, $action, $iSurveyID, $tolang, $baselang, $id1 = "" case 'subquestion': return Question::model()->updateByPk(array('qid'=>$id1, 'language'=>$tolang),array('question' => $new), 'sid=:sid', array(':sid'=>$iSurveyID)); case 'answer': - return Answer::model()->updateByPk(array('qid'=>$id1, 'code'=>$id2, 'language'=>$tolang, 'scale_id'=>0),array('answer' => $new)); - // @todo: FIXME for dual scale answer options + return Answer::model()->updateByPk(array('qid'=>$id1, 'code'=>$id2, 'language'=>$tolang, 'scale_id'=>$iScaleID),array('answer' => $new)); } } @@ -878,6 +878,7 @@ private function displayTranslateFields($iSurveyID, $gid, $qid, $type, $amTypeOp $value1 = ( ! empty($amTypeOptions["id1"]) ) ? $rowfrom[$amTypeOptions["id1"]] : ""; $value2 = ( ! empty($amTypeOptions["id2"]) ) ? $rowfrom[$amTypeOptions["id2"]] : ""; + $iScaleID = ( ! empty($amTypeOptions["scaleid"]) ) ? $rowfrom[$amTypeOptions["scaleid"]] : ""; // Display text in original language // Display text in foreign language. Save a copy in type_oldvalue_i to identify changes before db update @@ -908,6 +909,7 @@ private function displayTranslateFields($iSurveyID, $gid, $qid, $type, $amTypeOp $translateoutput .= CHtml::openTag('td'); $translateoutput .= CHtml::hiddenField("{$type}_id1_{$i}", $value1); $translateoutput .= CHtml::hiddenField("{$type}_id2_{$i}", $value2); + if ($iScaleID!='') $translateoutput .= CHtml::hiddenField("{$type}_scaleid_{$i}", $iScaleID); $nrows = max($this->calc_nrows($textfrom), $this->calc_nrows($textto)); From e42fe5a01d35a9c699b2889865e919ed4798e8b1 Mon Sep 17 00:00:00 2001 From: Carsten Schmitz Date: Fri, 11 Oct 2013 17:38:17 +0200 Subject: [PATCH 04/15] Fixed issue #8262: Some buttons in the HTML Editor do not work in Internet Explorer 10 Dev CKEditor updated to 3.6.6.1 --- third_party/ckeditor/.htaccess | 2 +- third_party/ckeditor/CHANGES.html | 26 +- third_party/ckeditor/INSTALL.html | 4 +- third_party/ckeditor/LICENSE.html | 4 +- .../_samples/adobeair/application.xml | 4 +- .../ckeditor/_samples/adobeair/run.bat | 2 +- third_party/ckeditor/_samples/adobeair/run.sh | 2 +- .../ckeditor/_samples/adobeair/sample.html | 4 +- third_party/ckeditor/_samples/ajax.html | 4 +- third_party/ckeditor/_samples/api.html | 4 +- third_party/ckeditor/_samples/api_dialog.html | 4 +- .../ckeditor/_samples/api_dialog/my_dialog.js | 2 +- .../ckeditor/_samples/asp/advanced.asp | 4 +- third_party/ckeditor/_samples/asp/events.asp | 4 +- third_party/ckeditor/_samples/asp/index.html | 4 +- third_party/ckeditor/_samples/asp/replace.asp | 4 +- .../ckeditor/_samples/asp/replaceall.asp | 4 +- .../_samples/asp/sample_posteddata.asp | 4 +- .../ckeditor/_samples/asp/standalone.asp | 4 +- .../ckeditor/_samples/assets/_posteddata.php | 118 ++-- .../ckeditor/_samples/assets/output_xhtml.css | 2 +- third_party/ckeditor/_samples/autogrow.html | 4 +- third_party/ckeditor/_samples/bbcode.html | 4 +- third_party/ckeditor/_samples/devtools.html | 4 +- third_party/ckeditor/_samples/divreplace.html | 4 +- third_party/ckeditor/_samples/enterkey.html | 4 +- third_party/ckeditor/_samples/fullpage.html | 4 +- third_party/ckeditor/_samples/index.html | 4 +- .../ckeditor/_samples/jqueryadapter.html | 4 +- .../ckeditor/_samples/output_for_flash.html | 4 +- .../ckeditor/_samples/output_html.html | 4 +- .../ckeditor/_samples/output_xhtml.html | 4 +- .../ckeditor/_samples/php/advanced.php | 4 +- third_party/ckeditor/_samples/php/events.php | 4 +- third_party/ckeditor/_samples/php/index.html | 4 +- third_party/ckeditor/_samples/php/replace.php | 4 +- .../ckeditor/_samples/php/replaceall.php | 4 +- .../ckeditor/_samples/php/standalone.php | 4 +- .../ckeditor/_samples/placeholder.html | 4 +- third_party/ckeditor/_samples/readonly.html | 4 +- .../ckeditor/_samples/replacebyclass.html | 4 +- .../ckeditor/_samples/replacebycode.html | 4 +- third_party/ckeditor/_samples/sample.css | 2 +- third_party/ckeditor/_samples/sample.js | 2 +- .../ckeditor/_samples/sample_posteddata.php | 2 +- .../ckeditor/_samples/sharedspaces.html | 4 +- third_party/ckeditor/_samples/skins.html | 4 +- .../ckeditor/_samples/stylesheetparser.html | 4 +- .../ckeditor/_samples/tableresize.html | 4 +- third_party/ckeditor/_samples/ui_color.html | 4 +- .../ckeditor/_samples/ui_languages.html | 4 +- .../ckeditor/_source/adapters/jquery.js | 2 +- .../ckeditor/_source/core/_bootstrap.js | 2 +- third_party/ckeditor/_source/core/ckeditor.js | 2 +- .../ckeditor/_source/core/ckeditor_base.js | 10 +- .../ckeditor/_source/core/ckeditor_basic.js | 2 +- third_party/ckeditor/_source/core/command.js | 2 +- .../_source/core/commanddefinition.js | 2 +- third_party/ckeditor/_source/core/config.js | 2 +- .../ckeditor/_source/core/dataprocessor.js | 2 +- third_party/ckeditor/_source/core/dom.js | 2 +- .../ckeditor/_source/core/dom/comment.js | 2 +- .../ckeditor/_source/core/dom/document.js | 2 +- .../_source/core/dom/documentfragment.js | 2 +- .../ckeditor/_source/core/dom/domobject.js | 2 +- .../ckeditor/_source/core/dom/element.js | 46 +- .../ckeditor/_source/core/dom/elementpath.js | 2 +- .../ckeditor/_source/core/dom/event.js | 22 +- third_party/ckeditor/_source/core/dom/node.js | 5 +- .../ckeditor/_source/core/dom/nodelist.js | 2 +- .../ckeditor/_source/core/dom/range.js | 141 ++-- .../ckeditor/_source/core/dom/rangelist.js | 2 +- third_party/ckeditor/_source/core/dom/text.js | 2 +- .../ckeditor/_source/core/dom/walker.js | 38 +- .../ckeditor/_source/core/dom/window.js | 2 +- third_party/ckeditor/_source/core/dtd.js | 2 +- third_party/ckeditor/_source/core/editor.js | 2 +- .../ckeditor/_source/core/editor_basic.js | 2 +- third_party/ckeditor/_source/core/env.js | 5 +- third_party/ckeditor/_source/core/event.js | 2 +- .../ckeditor/_source/core/eventInfo.js | 2 +- .../ckeditor/_source/core/focusmanager.js | 2 +- .../ckeditor/_source/core/htmlparser.js | 2 +- .../_source/core/htmlparser/basicwriter.js | 2 +- .../ckeditor/_source/core/htmlparser/cdata.js | 2 +- .../_source/core/htmlparser/comment.js | 2 +- .../_source/core/htmlparser/element.js | 2 +- .../_source/core/htmlparser/filter.js | 2 +- .../_source/core/htmlparser/fragment.js | 4 +- .../ckeditor/_source/core/htmlparser/text.js | 2 +- third_party/ckeditor/_source/core/lang.js | 2 +- third_party/ckeditor/_source/core/loader.js | 4 +- .../ckeditor/_source/core/plugindefinition.js | 2 +- third_party/ckeditor/_source/core/plugins.js | 2 +- .../ckeditor/_source/core/resourcemanager.js | 2 +- .../ckeditor/_source/core/scriptloader.js | 2 +- third_party/ckeditor/_source/core/skins.js | 2 +- third_party/ckeditor/_source/core/themes.js | 2 +- third_party/ckeditor/_source/core/tools.js | 2 +- third_party/ckeditor/_source/core/ui.js | 2 +- .../ckeditor/_source/lang/_languages.js | 2 +- .../_source/lang/_translationstatus.txt | 130 ++-- third_party/ckeditor/_source/lang/af.js | 4 +- third_party/ckeditor/_source/lang/ar.js | 4 +- third_party/ckeditor/_source/lang/bg.js | 4 +- third_party/ckeditor/_source/lang/bn.js | 4 +- third_party/ckeditor/_source/lang/bs.js | 4 +- third_party/ckeditor/_source/lang/ca.js | 4 +- third_party/ckeditor/_source/lang/cs.js | 4 +- third_party/ckeditor/_source/lang/cy.js | 4 +- third_party/ckeditor/_source/lang/da.js | 4 +- third_party/ckeditor/_source/lang/de.js | 4 +- third_party/ckeditor/_source/lang/el.js | 120 ++-- third_party/ckeditor/_source/lang/en-au.js | 4 +- third_party/ckeditor/_source/lang/en-ca.js | 4 +- third_party/ckeditor/_source/lang/en-gb.js | 4 +- third_party/ckeditor/_source/lang/en.js | 4 +- third_party/ckeditor/_source/lang/eo.js | 6 +- third_party/ckeditor/_source/lang/es.js | 4 +- third_party/ckeditor/_source/lang/et.js | 4 +- third_party/ckeditor/_source/lang/eu.js | 4 +- third_party/ckeditor/_source/lang/fa.js | 4 +- third_party/ckeditor/_source/lang/fi.js | 4 +- third_party/ckeditor/_source/lang/fo.js | 4 +- third_party/ckeditor/_source/lang/fr-ca.js | 4 +- third_party/ckeditor/_source/lang/fr.js | 4 +- third_party/ckeditor/_source/lang/gl.js | 4 +- third_party/ckeditor/_source/lang/gu.js | 4 +- third_party/ckeditor/_source/lang/he.js | 4 +- third_party/ckeditor/_source/lang/hi.js | 4 +- third_party/ckeditor/_source/lang/hr.js | 4 +- third_party/ckeditor/_source/lang/hu.js | 4 +- third_party/ckeditor/_source/lang/id.js | 4 +- third_party/ckeditor/_source/lang/is.js | 4 +- third_party/ckeditor/_source/lang/it.js | 4 +- third_party/ckeditor/_source/lang/ja.js | 4 +- third_party/ckeditor/_source/lang/ka.js | 4 +- third_party/ckeditor/_source/lang/km.js | 4 +- third_party/ckeditor/_source/lang/ko.js | 4 +- third_party/ckeditor/_source/lang/ku.js | 4 +- third_party/ckeditor/_source/lang/lt.js | 4 +- third_party/ckeditor/_source/lang/lv.js | 620 +++++++++--------- third_party/ckeditor/_source/lang/mk.js | 4 +- third_party/ckeditor/_source/lang/mn.js | 256 ++++---- third_party/ckeditor/_source/lang/ms.js | 4 +- third_party/ckeditor/_source/lang/nb.js | 4 +- third_party/ckeditor/_source/lang/nl.js | 4 +- third_party/ckeditor/_source/lang/no.js | 4 +- third_party/ckeditor/_source/lang/pl.js | 4 +- third_party/ckeditor/_source/lang/pt-br.js | 4 +- third_party/ckeditor/_source/lang/pt.js | 4 +- third_party/ckeditor/_source/lang/ro.js | 4 +- third_party/ckeditor/_source/lang/ru.js | 4 +- third_party/ckeditor/_source/lang/sk.js | 6 +- third_party/ckeditor/_source/lang/sl.js | 4 +- third_party/ckeditor/_source/lang/sr-latn.js | 4 +- third_party/ckeditor/_source/lang/sr.js | 4 +- third_party/ckeditor/_source/lang/sv.js | 4 +- third_party/ckeditor/_source/lang/th.js | 4 +- third_party/ckeditor/_source/lang/tr.js | 4 +- third_party/ckeditor/_source/lang/ug.js | 4 +- third_party/ckeditor/_source/lang/uk.js | 4 +- third_party/ckeditor/_source/lang/vi.js | 4 +- third_party/ckeditor/_source/lang/zh-cn.js | 6 +- third_party/ckeditor/_source/lang/zh.js | 4 +- .../plugins/a11yhelp/dialogs/a11yhelp.js | 2 +- .../a11yhelp/lang/_translationstatus.txt | 53 +- .../_source/plugins/a11yhelp/lang/cs.js | 2 +- .../_source/plugins/a11yhelp/lang/cy.js | 2 +- .../_source/plugins/a11yhelp/lang/da.js | 2 +- .../_source/plugins/a11yhelp/lang/de.js | 2 +- .../_source/plugins/a11yhelp/lang/el.js | 2 +- .../_source/plugins/a11yhelp/lang/en.js | 2 +- .../_source/plugins/a11yhelp/lang/eo.js | 2 +- .../_source/plugins/a11yhelp/lang/fa.js | 20 +- .../_source/plugins/a11yhelp/lang/fi.js | 2 +- .../_source/plugins/a11yhelp/lang/fr.js | 2 +- .../_source/plugins/a11yhelp/lang/gu.js | 2 +- .../_source/plugins/a11yhelp/lang/he.js | 2 +- .../_source/plugins/a11yhelp/lang/it.js | 2 +- .../_source/plugins/a11yhelp/lang/ku.js | 89 +++ .../_source/plugins/a11yhelp/lang/lv.js | 89 +++ .../_source/plugins/a11yhelp/lang/mk.js | 2 +- .../_source/plugins/a11yhelp/lang/nb.js | 2 +- .../_source/plugins/a11yhelp/lang/nl.js | 2 +- .../_source/plugins/a11yhelp/lang/no.js | 2 +- .../_source/plugins/a11yhelp/lang/pt-br.js | 2 +- .../_source/plugins/a11yhelp/lang/ro.js | 2 +- .../_source/plugins/a11yhelp/lang/sk.js | 89 +++ .../_source/plugins/a11yhelp/lang/tr.js | 2 +- .../_source/plugins/a11yhelp/lang/ug.js | 2 +- .../_source/plugins/a11yhelp/lang/vi.js | 2 +- .../_source/plugins/a11yhelp/lang/zh-cn.js | 10 +- .../_source/plugins/a11yhelp/plugin.js | 4 +- .../_source/plugins/about/dialogs/about.js | 2 +- .../ckeditor/_source/plugins/about/plugin.js | 2 +- .../_source/plugins/adobeair/plugin.js | 2 +- .../ckeditor/_source/plugins/ajax/plugin.js | 2 +- .../_source/plugins/autogrow/plugin.js | 34 +- .../_source/plugins/basicstyles/plugin.js | 2 +- .../ckeditor/_source/plugins/bbcode/plugin.js | 30 +- .../ckeditor/_source/plugins/bidi/plugin.js | 2 +- .../_source/plugins/blockquote/plugin.js | 2 +- .../ckeditor/_source/plugins/button/plugin.js | 2 +- .../plugins/clipboard/dialogs/paste.js | 2 +- .../_source/plugins/clipboard/plugin.js | 2 +- .../_source/plugins/colorbutton/plugin.js | 2 +- .../colordialog/dialogs/colordialog.js | 2 +- .../_source/plugins/colordialog/plugin.js | 2 +- .../_source/plugins/contextmenu/plugin.js | 2 +- .../devtools/lang/_translationstatus.txt | 59 +- .../_source/plugins/devtools/lang/bg.js | 2 +- .../_source/plugins/devtools/lang/cs.js | 2 +- .../_source/plugins/devtools/lang/cy.js | 2 +- .../_source/plugins/devtools/lang/da.js | 2 +- .../_source/plugins/devtools/lang/de.js | 2 +- .../_source/plugins/devtools/lang/el.js | 2 +- .../_source/plugins/devtools/lang/en.js | 2 +- .../_source/plugins/devtools/lang/eo.js | 2 +- .../_source/plugins/devtools/lang/et.js | 2 +- .../_source/plugins/devtools/lang/fa.js | 4 +- .../_source/plugins/devtools/lang/fi.js | 2 +- .../_source/plugins/devtools/lang/fr.js | 2 +- .../_source/plugins/devtools/lang/gu.js | 2 +- .../_source/plugins/devtools/lang/he.js | 2 +- .../_source/plugins/devtools/lang/hr.js | 2 +- .../_source/plugins/devtools/lang/it.js | 2 +- .../_source/plugins/devtools/lang/ku.js | 16 + .../_source/plugins/devtools/lang/lv.js | 16 + .../_source/plugins/devtools/lang/nb.js | 2 +- .../_source/plugins/devtools/lang/nl.js | 2 +- .../_source/plugins/devtools/lang/no.js | 2 +- .../_source/plugins/devtools/lang/pl.js | 2 +- .../_source/plugins/devtools/lang/pt-br.js | 2 +- .../_source/plugins/devtools/lang/sk.js | 16 + .../_source/plugins/devtools/lang/tr.js | 2 +- .../_source/plugins/devtools/lang/ug.js | 2 +- .../_source/plugins/devtools/lang/uk.js | 2 +- .../_source/plugins/devtools/lang/vi.js | 2 +- .../_source/plugins/devtools/lang/zh-cn.js | 2 +- .../_source/plugins/devtools/plugin.js | 4 +- .../plugins/dialog/dialogDefinition.js | 2 +- .../ckeditor/_source/plugins/dialog/plugin.js | 117 ++-- .../_source/plugins/dialogadvtab/plugin.js | 23 +- .../_source/plugins/dialogui/plugin.js | 4 +- .../_source/plugins/div/dialogs/div.js | 2 +- .../ckeditor/_source/plugins/div/plugin.js | 2 +- .../plugins/docprops/dialogs/docprops.js | 2 +- .../_source/plugins/docprops/plugin.js | 2 +- .../_source/plugins/domiterator/plugin.js | 2 +- .../_source/plugins/editingblock/plugin.js | 2 +- .../_source/plugins/elementspath/plugin.js | 2 +- .../_source/plugins/enterkey/plugin.js | 8 +- .../_source/plugins/entities/plugin.js | 2 +- .../_source/plugins/fakeobjects/plugin.js | 2 +- .../_source/plugins/filebrowser/plugin.js | 2 +- .../_source/plugins/find/dialogs/find.js | 2 +- .../ckeditor/_source/plugins/find/plugin.js | 2 +- .../_source/plugins/flash/dialogs/flash.js | 2 +- .../ckeditor/_source/plugins/flash/plugin.js | 2 +- .../_source/plugins/floatpanel/plugin.js | 13 +- .../ckeditor/_source/plugins/font/plugin.js | 2 +- .../ckeditor/_source/plugins/format/plugin.js | 2 +- .../_source/plugins/forms/dialogs/button.js | 2 +- .../_source/plugins/forms/dialogs/checkbox.js | 2 +- .../_source/plugins/forms/dialogs/form.js | 2 +- .../plugins/forms/dialogs/hiddenfield.js | 2 +- .../_source/plugins/forms/dialogs/radio.js | 2 +- .../_source/plugins/forms/dialogs/select.js | 2 +- .../_source/plugins/forms/dialogs/textarea.js | 2 +- .../plugins/forms/dialogs/textfield.js | 2 +- .../ckeditor/_source/plugins/forms/plugin.js | 2 +- .../_source/plugins/horizontalrule/plugin.js | 2 +- .../plugins/htmldataprocessor/plugin.js | 34 +- .../_source/plugins/htmlwriter/plugin.js | 2 +- .../_source/plugins/iframe/dialogs/iframe.js | 2 +- .../ckeditor/_source/plugins/iframe/plugin.js | 2 +- .../_source/plugins/iframedialog/plugin.js | 2 +- .../_source/plugins/image/dialogs/image.js | 8 +- .../ckeditor/_source/plugins/image/plugin.js | 2 +- .../ckeditor/_source/plugins/indent/plugin.js | 2 +- .../_source/plugins/justify/plugin.js | 2 +- .../_source/plugins/keystrokes/plugin.js | 2 +- .../_source/plugins/link/dialogs/anchor.js | 3 +- .../_source/plugins/link/dialogs/link.js | 7 +- .../ckeditor/_source/plugins/link/plugin.js | 2 +- .../ckeditor/_source/plugins/list/plugin.js | 126 +++- .../_source/plugins/listblock/plugin.js | 2 +- .../plugins/liststyle/dialogs/liststyle.js | 2 +- .../_source/plugins/liststyle/plugin.js | 2 +- .../_source/plugins/maximize/plugin.js | 2 +- .../ckeditor/_source/plugins/menu/plugin.js | 13 +- .../_source/plugins/menubutton/plugin.js | 2 +- .../_source/plugins/newpage/plugin.js | 2 +- .../_source/plugins/pagebreak/plugin.js | 2 +- .../ckeditor/_source/plugins/panel/plugin.js | 2 +- .../_source/plugins/panelbutton/plugin.js | 2 +- .../plugins/pastefromword/filter/default.js | 2 +- .../_source/plugins/pastefromword/plugin.js | 2 +- .../plugins/pastetext/dialogs/pastetext.js | 2 +- .../_source/plugins/pastetext/plugin.js | 2 +- .../placeholder/dialogs/placeholder.js | 2 +- .../placeholder/lang/_translationstatus.txt | 57 +- .../_source/plugins/placeholder/lang/bg.js | 2 +- .../_source/plugins/placeholder/lang/cs.js | 2 +- .../_source/plugins/placeholder/lang/cy.js | 2 +- .../_source/plugins/placeholder/lang/da.js | 2 +- .../_source/plugins/placeholder/lang/de.js | 2 +- .../_source/plugins/placeholder/lang/el.js | 2 +- .../_source/plugins/placeholder/lang/en.js | 2 +- .../_source/plugins/placeholder/lang/eo.js | 2 +- .../_source/plugins/placeholder/lang/et.js | 2 +- .../_source/plugins/placeholder/lang/fa.js | 4 +- .../_source/plugins/placeholder/lang/fi.js | 2 +- .../_source/plugins/placeholder/lang/fr.js | 2 +- .../_source/plugins/placeholder/lang/he.js | 2 +- .../_source/plugins/placeholder/lang/hr.js | 2 +- .../_source/plugins/placeholder/lang/it.js | 2 +- .../_source/plugins/placeholder/lang/ku.js | 16 + .../_source/plugins/placeholder/lang/lv.js | 16 + .../_source/plugins/placeholder/lang/nb.js | 2 +- .../_source/plugins/placeholder/lang/nl.js | 2 +- .../_source/plugins/placeholder/lang/no.js | 2 +- .../_source/plugins/placeholder/lang/pl.js | 2 +- .../_source/plugins/placeholder/lang/pt-br.js | 2 +- .../_source/plugins/placeholder/lang/sk.js | 16 + .../_source/plugins/placeholder/lang/tr.js | 2 +- .../_source/plugins/placeholder/lang/ug.js | 2 +- .../_source/plugins/placeholder/lang/uk.js | 2 +- .../_source/plugins/placeholder/lang/vi.js | 2 +- .../_source/plugins/placeholder/lang/zh-cn.js | 4 +- .../_source/plugins/placeholder/plugin.js | 4 +- .../ckeditor/_source/plugins/popup/plugin.js | 2 +- .../_source/plugins/preview/plugin.js | 2 +- .../ckeditor/_source/plugins/print/plugin.js | 2 +- .../_source/plugins/removeformat/plugin.js | 2 +- .../ckeditor/_source/plugins/resize/plugin.js | 2 +- .../_source/plugins/richcombo/plugin.js | 2 +- .../ckeditor/_source/plugins/save/plugin.js | 2 +- .../_source/plugins/scayt/dialogs/options.js | 2 +- .../ckeditor/_source/plugins/scayt/plugin.js | 146 +++-- .../_source/plugins/selection/plugin.js | 203 +++--- .../_source/plugins/showblocks/plugin.js | 2 +- .../_source/plugins/showborders/plugin.js | 2 +- .../_source/plugins/smiley/dialogs/smiley.js | 10 +- .../ckeditor/_source/plugins/smiley/plugin.js | 2 +- .../_source/plugins/sourcearea/plugin.js | 2 +- .../specialchar/dialogs/specialchar.js | 8 +- .../specialchar/lang/_translationstatus.txt | 47 +- .../_source/plugins/specialchar/lang/cs.js | 2 +- .../_source/plugins/specialchar/lang/cy.js | 2 +- .../_source/plugins/specialchar/lang/de.js | 2 +- .../_source/plugins/specialchar/lang/el.js | 2 +- .../_source/plugins/specialchar/lang/en.js | 2 +- .../_source/plugins/specialchar/lang/eo.js | 2 +- .../_source/plugins/specialchar/lang/et.js | 2 +- .../_source/plugins/specialchar/lang/fa.js | 6 +- .../_source/plugins/specialchar/lang/fi.js | 2 +- .../_source/plugins/specialchar/lang/fr.js | 2 +- .../_source/plugins/specialchar/lang/he.js | 2 +- .../_source/plugins/specialchar/lang/hr.js | 2 +- .../_source/plugins/specialchar/lang/it.js | 2 +- .../_source/plugins/specialchar/lang/ku.js | 126 ++++ .../_source/plugins/specialchar/lang/lv.js | 126 ++++ .../_source/plugins/specialchar/lang/nb.js | 2 +- .../_source/plugins/specialchar/lang/nl.js | 2 +- .../_source/plugins/specialchar/lang/no.js | 2 +- .../_source/plugins/specialchar/lang/pt-br.js | 2 +- .../_source/plugins/specialchar/lang/sk.js | 126 ++++ .../_source/plugins/specialchar/lang/tr.js | 2 +- .../_source/plugins/specialchar/lang/ug.js | 2 +- .../_source/plugins/specialchar/lang/zh-cn.js | 2 +- .../_source/plugins/specialchar/plugin.js | 2 +- .../ckeditor/_source/plugins/styles/plugin.js | 12 +- .../_source/plugins/styles/styles/default.js | 2 +- .../_source/plugins/stylescombo/plugin.js | 2 +- .../plugins/stylesheetparser/plugin.js | 2 +- .../ckeditor/_source/plugins/tab/plugin.js | 4 +- .../_source/plugins/table/dialogs/table.js | 2 +- .../ckeditor/_source/plugins/table/plugin.js | 2 +- .../_source/plugins/tableresize/plugin.js | 10 +- .../plugins/tabletools/dialogs/tableCell.js | 2 +- .../_source/plugins/tabletools/plugin.js | 11 +- .../plugins/templates/dialogs/templates.js | 2 +- .../_source/plugins/templates/plugin.js | 2 +- .../plugins/templates/templates/default.js | 2 +- .../_source/plugins/toolbar/plugin.js | 546 +++++++++++++++ .../plugins/uicolor/dialogs/uicolor.js | 2 +- .../uicolor/lang/_translationstatus.txt | 59 +- .../_source/plugins/uicolor/lang/bg.js | 2 +- .../_source/plugins/uicolor/lang/cs.js | 2 +- .../_source/plugins/uicolor/lang/cy.js | 2 +- .../_source/plugins/uicolor/lang/da.js | 2 +- .../_source/plugins/uicolor/lang/de.js | 2 +- .../_source/plugins/uicolor/lang/el.js | 2 +- .../_source/plugins/uicolor/lang/en.js | 2 +- .../_source/plugins/uicolor/lang/eo.js | 2 +- .../_source/plugins/uicolor/lang/et.js | 2 +- .../_source/plugins/uicolor/lang/fa.js | 4 +- .../_source/plugins/uicolor/lang/fi.js | 2 +- .../_source/plugins/uicolor/lang/fr.js | 2 +- .../_source/plugins/uicolor/lang/he.js | 2 +- .../_source/plugins/uicolor/lang/hr.js | 2 +- .../_source/plugins/uicolor/lang/it.js | 2 +- .../_source/plugins/uicolor/lang/ku.js | 15 + .../_source/plugins/uicolor/lang/lv.js | 15 + .../_source/plugins/uicolor/lang/mk.js | 2 +- .../_source/plugins/uicolor/lang/nb.js | 2 +- .../_source/plugins/uicolor/lang/nl.js | 2 +- .../_source/plugins/uicolor/lang/no.js | 2 +- .../_source/plugins/uicolor/lang/pl.js | 2 +- .../_source/plugins/uicolor/lang/pt-br.js | 2 +- .../_source/plugins/uicolor/lang/sk.js | 15 + .../_source/plugins/uicolor/lang/tr.js | 2 +- .../_source/plugins/uicolor/lang/ug.js | 2 +- .../_source/plugins/uicolor/lang/uk.js | 2 +- .../_source/plugins/uicolor/lang/vi.js | 2 +- .../_source/plugins/uicolor/lang/zh-cn.js | 4 +- .../_source/plugins/uicolor/plugin.js | 4 +- .../ckeditor/_source/plugins/undo/plugin.js | 2 +- .../_source/plugins/wsc/dialogs/ciframe.html | 2 +- .../plugins/wsc/dialogs/tmpFrameset.html | 2 +- .../_source/plugins/wsc/dialogs/wsc.css | 2 +- .../_source/plugins/wsc/dialogs/wsc.js | 2 +- .../ckeditor/_source/plugins/wsc/plugin.js | 2 +- .../_source/plugins/wysiwygarea/plugin.js | 35 +- .../ckeditor/_source/plugins/xml/plugin.js | 2 +- .../ckeditor/_source/skins/kama/dialog.css | 2 +- .../ckeditor/_source/skins/kama/editor.css | 2 +- .../_source/skins/kama/elementspath.css | 2 +- .../ckeditor/_source/skins/kama/icons.css | 2 +- .../ckeditor/_source/skins/kama/mainui.css | 2 +- .../ckeditor/_source/skins/kama/menu.css | 2 +- .../ckeditor/_source/skins/kama/panel.css | 2 +- .../ckeditor/_source/skins/kama/presets.css | 2 +- .../ckeditor/_source/skins/kama/reset.css | 2 +- .../ckeditor/_source/skins/kama/richcombo.css | 2 +- .../ckeditor/_source/skins/kama/skin.js | 2 +- .../ckeditor/_source/skins/kama/templates.css | 2 +- .../ckeditor/_source/skins/kama/toolbar.css | 6 +- .../_source/skins/office2003/dialog.css | 2 +- .../_source/skins/office2003/editor.css | 2 +- .../_source/skins/office2003/elementspath.css | 2 +- .../_source/skins/office2003/icons.css | 2 +- .../_source/skins/office2003/mainui.css | 2 +- .../_source/skins/office2003/menu.css | 2 +- .../_source/skins/office2003/panel.css | 2 +- .../_source/skins/office2003/presets.css | 2 +- .../_source/skins/office2003/reset.css | 2 +- .../ckeditor/_source/skins/office2003/skin.js | 2 +- .../_source/skins/office2003/templates.css | 2 +- .../_source/skins/office2003/toolbar.css | 12 +- .../ckeditor/_source/skins/v2/dialog.css | 2 +- .../ckeditor/_source/skins/v2/editor.css | 2 +- .../_source/skins/v2/elementspath.css | 2 +- .../ckeditor/_source/skins/v2/icons.css | 2 +- .../ckeditor/_source/skins/v2/mainui.css | 2 +- .../ckeditor/_source/skins/v2/menu.css | 2 +- .../ckeditor/_source/skins/v2/panel.css | 2 +- .../ckeditor/_source/skins/v2/presets.css | 2 +- .../ckeditor/_source/skins/v2/reset.css | 2 +- third_party/ckeditor/_source/skins/v2/skin.js | 2 +- .../ckeditor/_source/skins/v2/templates.css | 2 +- .../ckeditor/_source/skins/v2/toolbar.css | 12 +- .../ckeditor/_source/themes/default/theme.js | 2 +- third_party/ckeditor/adapters/jquery.js | 2 +- third_party/ckeditor/ckeditor.asp | 8 +- third_party/ckeditor/ckeditor.js | 90 +-- third_party/ckeditor/ckeditor.pack | 2 +- third_party/ckeditor/ckeditor.php | 2 +- third_party/ckeditor/ckeditor_basic.js | 6 +- third_party/ckeditor/ckeditor_basic_source.js | 4 +- third_party/ckeditor/ckeditor_php4.php | 8 +- third_party/ckeditor/ckeditor_php5.php | 8 +- third_party/ckeditor/ckeditor_source.js | 4 +- third_party/ckeditor/config.js | 2 +- third_party/ckeditor/contents.css | 2 +- third_party/ckeditor/lang/_languages.js | 2 +- .../ckeditor/lang/_translationstatus.txt | 130 ++-- third_party/ckeditor/lang/af.js | 4 +- third_party/ckeditor/lang/ar.js | 4 +- third_party/ckeditor/lang/bg.js | 4 +- third_party/ckeditor/lang/bn.js | 4 +- third_party/ckeditor/lang/bs.js | 4 +- third_party/ckeditor/lang/ca.js | 4 +- third_party/ckeditor/lang/cs.js | 4 +- third_party/ckeditor/lang/cy.js | 4 +- third_party/ckeditor/lang/da.js | 4 +- third_party/ckeditor/lang/de.js | 4 +- third_party/ckeditor/lang/el.js | 4 +- third_party/ckeditor/lang/en-au.js | 4 +- third_party/ckeditor/lang/en-ca.js | 4 +- third_party/ckeditor/lang/en-gb.js | 4 +- third_party/ckeditor/lang/en.js | 4 +- third_party/ckeditor/lang/eo.js | 4 +- third_party/ckeditor/lang/es.js | 4 +- third_party/ckeditor/lang/et.js | 4 +- third_party/ckeditor/lang/eu.js | 4 +- third_party/ckeditor/lang/fa.js | 6 +- third_party/ckeditor/lang/fi.js | 4 +- third_party/ckeditor/lang/fo.js | 4 +- third_party/ckeditor/lang/fr-ca.js | 4 +- third_party/ckeditor/lang/fr.js | 4 +- third_party/ckeditor/lang/gl.js | 4 +- third_party/ckeditor/lang/gu.js | 4 +- third_party/ckeditor/lang/he.js | 4 +- third_party/ckeditor/lang/hi.js | 4 +- third_party/ckeditor/lang/hr.js | 4 +- third_party/ckeditor/lang/hu.js | 4 +- third_party/ckeditor/lang/id.js | 4 +- third_party/ckeditor/lang/is.js | 4 +- third_party/ckeditor/lang/it.js | 4 +- third_party/ckeditor/lang/ja.js | 4 +- third_party/ckeditor/lang/ka.js | 4 +- third_party/ckeditor/lang/km.js | 4 +- third_party/ckeditor/lang/ko.js | 4 +- third_party/ckeditor/lang/ku.js | 6 +- third_party/ckeditor/lang/lt.js | 4 +- third_party/ckeditor/lang/lv.js | 4 +- third_party/ckeditor/lang/mk.js | 4 +- third_party/ckeditor/lang/mn.js | 4 +- third_party/ckeditor/lang/ms.js | 4 +- third_party/ckeditor/lang/nb.js | 4 +- third_party/ckeditor/lang/nl.js | 4 +- third_party/ckeditor/lang/no.js | 4 +- third_party/ckeditor/lang/pl.js | 4 +- third_party/ckeditor/lang/pt-br.js | 4 +- third_party/ckeditor/lang/pt.js | 4 +- third_party/ckeditor/lang/ro.js | 4 +- third_party/ckeditor/lang/ru.js | 4 +- third_party/ckeditor/lang/sk.js | 4 +- third_party/ckeditor/lang/sl.js | 4 +- third_party/ckeditor/lang/sr-latn.js | 4 +- third_party/ckeditor/lang/sr.js | 4 +- third_party/ckeditor/lang/sv.js | 4 +- third_party/ckeditor/lang/th.js | 4 +- third_party/ckeditor/lang/tr.js | 4 +- third_party/ckeditor/lang/ug.js | 4 +- third_party/ckeditor/lang/uk.js | 4 +- third_party/ckeditor/lang/vi.js | 4 +- third_party/ckeditor/lang/zh-cn.js | 4 +- third_party/ckeditor/lang/zh.js | 4 +- .../plugins/a11yhelp/dialogs/a11yhelp.js | 2 +- .../a11yhelp/lang/_translationstatus.txt | 53 +- .../ckeditor/plugins/a11yhelp/lang/cs.js | 2 +- .../ckeditor/plugins/a11yhelp/lang/cy.js | 2 +- .../ckeditor/plugins/a11yhelp/lang/da.js | 2 +- .../ckeditor/plugins/a11yhelp/lang/de.js | 2 +- .../ckeditor/plugins/a11yhelp/lang/el.js | 2 +- .../ckeditor/plugins/a11yhelp/lang/en.js | 2 +- .../ckeditor/plugins/a11yhelp/lang/eo.js | 2 +- .../ckeditor/plugins/a11yhelp/lang/fa.js | 92 ++- .../ckeditor/plugins/a11yhelp/lang/fi.js | 2 +- .../ckeditor/plugins/a11yhelp/lang/fr.js | 2 +- .../ckeditor/plugins/a11yhelp/lang/gu.js | 2 +- .../ckeditor/plugins/a11yhelp/lang/he.js | 2 +- .../ckeditor/plugins/a11yhelp/lang/it.js | 2 +- .../ckeditor/plugins/a11yhelp/lang/ku.js | 94 +++ .../ckeditor/plugins/a11yhelp/lang/lv.js | 6 + .../ckeditor/plugins/a11yhelp/lang/mk.js | 2 +- .../ckeditor/plugins/a11yhelp/lang/nb.js | 2 +- .../ckeditor/plugins/a11yhelp/lang/nl.js | 2 +- .../ckeditor/plugins/a11yhelp/lang/no.js | 2 +- .../ckeditor/plugins/a11yhelp/lang/pt-br.js | 2 +- .../ckeditor/plugins/a11yhelp/lang/ro.js | 2 +- .../ckeditor/plugins/a11yhelp/lang/sk.js | 6 + .../ckeditor/plugins/a11yhelp/lang/tr.js | 2 +- .../ckeditor/plugins/a11yhelp/lang/ug.js | 2 +- .../ckeditor/plugins/a11yhelp/lang/vi.js | 2 +- .../ckeditor/plugins/a11yhelp/lang/zh-cn.js | 4 +- .../ckeditor/plugins/about/dialogs/about.js | 2 +- .../ckeditor/plugins/adobeair/plugin.js | 2 +- third_party/ckeditor/plugins/ajax/plugin.js | 2 +- .../ckeditor/plugins/autogrow/plugin.js | 2 +- third_party/ckeditor/plugins/bbcode/plugin.js | 2 +- .../plugins/clipboard/dialogs/paste.js | 2 +- .../colordialog/dialogs/colordialog.js | 2 +- .../devtools/lang/_translationstatus.txt | 59 +- .../ckeditor/plugins/devtools/lang/bg.js | 2 +- .../ckeditor/plugins/devtools/lang/cs.js | 2 +- .../ckeditor/plugins/devtools/lang/cy.js | 2 +- .../ckeditor/plugins/devtools/lang/da.js | 2 +- .../ckeditor/plugins/devtools/lang/de.js | 2 +- .../ckeditor/plugins/devtools/lang/el.js | 2 +- .../ckeditor/plugins/devtools/lang/en.js | 2 +- .../ckeditor/plugins/devtools/lang/eo.js | 2 +- .../ckeditor/plugins/devtools/lang/et.js | 2 +- .../ckeditor/plugins/devtools/lang/fa.js | 19 +- .../ckeditor/plugins/devtools/lang/fi.js | 2 +- .../ckeditor/plugins/devtools/lang/fr.js | 2 +- .../ckeditor/plugins/devtools/lang/gu.js | 2 +- .../ckeditor/plugins/devtools/lang/he.js | 2 +- .../ckeditor/plugins/devtools/lang/hr.js | 2 +- .../ckeditor/plugins/devtools/lang/it.js | 2 +- .../ckeditor/plugins/devtools/lang/ku.js | 21 + .../ckeditor/plugins/devtools/lang/lv.js | 6 + .../ckeditor/plugins/devtools/lang/nb.js | 2 +- .../ckeditor/plugins/devtools/lang/nl.js | 2 +- .../ckeditor/plugins/devtools/lang/no.js | 2 +- .../ckeditor/plugins/devtools/lang/pl.js | 2 +- .../ckeditor/plugins/devtools/lang/pt-br.js | 2 +- .../ckeditor/plugins/devtools/lang/sk.js | 6 + .../ckeditor/plugins/devtools/lang/tr.js | 2 +- .../ckeditor/plugins/devtools/lang/ug.js | 2 +- .../ckeditor/plugins/devtools/lang/uk.js | 2 +- .../ckeditor/plugins/devtools/lang/vi.js | 2 +- .../ckeditor/plugins/devtools/lang/zh-cn.js | 2 +- .../ckeditor/plugins/devtools/plugin.js | 2 +- .../plugins/dialog/dialogDefinition.js | 2 +- .../ckeditor/plugins/div/dialogs/div.js | 2 +- .../plugins/docprops/dialogs/docprops.js | 2 +- .../ckeditor/plugins/docprops/plugin.js | 2 +- .../ckeditor/plugins/find/dialogs/find.js | 2 +- .../ckeditor/plugins/flash/dialogs/flash.js | 2 +- .../ckeditor/plugins/forms/dialogs/button.js | 2 +- .../plugins/forms/dialogs/checkbox.js | 2 +- .../ckeditor/plugins/forms/dialogs/form.js | 2 +- .../plugins/forms/dialogs/hiddenfield.js | 2 +- .../ckeditor/plugins/forms/dialogs/radio.js | 2 +- .../ckeditor/plugins/forms/dialogs/select.js | 2 +- .../plugins/forms/dialogs/textarea.js | 2 +- .../plugins/forms/dialogs/textfield.js | 2 +- .../ckeditor/plugins/iframe/dialogs/iframe.js | 2 +- .../ckeditor/plugins/iframedialog/plugin.js | 2 +- .../ckeditor/plugins/image/dialogs/image.js | 2 +- .../ckeditor/plugins/link/dialogs/anchor.js | 2 +- .../ckeditor/plugins/link/dialogs/link.js | 2 +- .../plugins/liststyle/dialogs/liststyle.js | 2 +- .../plugins/pastefromword/filter/default.js | 2 +- .../plugins/pastetext/dialogs/pastetext.js | 2 +- .../placeholder/dialogs/placeholder.js | 2 +- .../placeholder/lang/_translationstatus.txt | 59 +- .../ckeditor/plugins/placeholder/lang/bg.js | 2 +- .../ckeditor/plugins/placeholder/lang/cs.js | 2 +- .../ckeditor/plugins/placeholder/lang/cy.js | 2 +- .../ckeditor/plugins/placeholder/lang/da.js | 2 +- .../ckeditor/plugins/placeholder/lang/de.js | 2 +- .../ckeditor/plugins/placeholder/lang/el.js | 2 +- .../ckeditor/plugins/placeholder/lang/en.js | 2 +- .../ckeditor/plugins/placeholder/lang/eo.js | 2 +- .../ckeditor/plugins/placeholder/lang/et.js | 2 +- .../ckeditor/plugins/placeholder/lang/fa.js | 4 +- .../ckeditor/plugins/placeholder/lang/fi.js | 2 +- .../ckeditor/plugins/placeholder/lang/fr.js | 2 +- .../ckeditor/plugins/placeholder/lang/he.js | 2 +- .../ckeditor/plugins/placeholder/lang/hr.js | 2 +- .../ckeditor/plugins/placeholder/lang/it.js | 2 +- .../ckeditor/plugins/placeholder/lang/ku.js | 4 +- .../ckeditor/plugins/placeholder/lang/lv.js | 6 + .../ckeditor/plugins/placeholder/lang/nb.js | 2 +- .../ckeditor/plugins/placeholder/lang/nl.js | 2 +- .../ckeditor/plugins/placeholder/lang/no.js | 2 +- .../ckeditor/plugins/placeholder/lang/pl.js | 2 +- .../plugins/placeholder/lang/pt-br.js | 2 +- .../ckeditor/plugins/placeholder/lang/sk.js | 2 +- .../ckeditor/plugins/placeholder/lang/tr.js | 2 +- .../ckeditor/plugins/placeholder/lang/ug.js | 2 +- .../ckeditor/plugins/placeholder/lang/uk.js | 2 +- .../ckeditor/plugins/placeholder/lang/vi.js | 2 +- .../plugins/placeholder/lang/zh-cn.js | 2 +- .../ckeditor/plugins/placeholder/plugin.js | 2 +- .../ckeditor/plugins/scayt/dialogs/options.js | 2 +- .../plugins/scayt/dialogs/toolbar.css | 2 +- .../ckeditor/plugins/smiley/dialogs/smiley.js | 2 +- .../specialchar/dialogs/specialchar.js | 2 +- .../specialchar/lang/_translationstatus.txt | 48 +- .../ckeditor/plugins/specialchar/lang/cs.js | 2 +- .../ckeditor/plugins/specialchar/lang/cy.js | 2 +- .../ckeditor/plugins/specialchar/lang/de.js | 2 +- .../ckeditor/plugins/specialchar/lang/el.js | 2 +- .../ckeditor/plugins/specialchar/lang/en.js | 2 +- .../ckeditor/plugins/specialchar/lang/eo.js | 2 +- .../ckeditor/plugins/specialchar/lang/et.js | 2 +- .../ckeditor/plugins/specialchar/lang/fa.js | 4 +- .../ckeditor/plugins/specialchar/lang/fi.js | 2 +- .../ckeditor/plugins/specialchar/lang/fr.js | 2 +- .../ckeditor/plugins/specialchar/lang/he.js | 2 +- .../ckeditor/plugins/specialchar/lang/hr.js | 2 +- .../ckeditor/plugins/specialchar/lang/it.js | 2 +- .../ckeditor/plugins/specialchar/lang/ku.js | 4 +- .../ckeditor/plugins/specialchar/lang/lv.js | 6 + .../ckeditor/plugins/specialchar/lang/nb.js | 2 +- .../ckeditor/plugins/specialchar/lang/nl.js | 2 +- .../ckeditor/plugins/specialchar/lang/no.js | 2 +- .../plugins/specialchar/lang/pt-br.js | 2 +- .../ckeditor/plugins/specialchar/lang/sk.js | 6 + .../ckeditor/plugins/specialchar/lang/tr.js | 2 +- .../ckeditor/plugins/specialchar/lang/ug.js | 2 +- .../plugins/specialchar/lang/zh-cn.js | 2 +- .../ckeditor/plugins/styles/styles/default.js | 2 +- .../plugins/stylesheetparser/plugin.js | 2 +- .../ckeditor/plugins/table/dialogs/table.js | 2 +- .../ckeditor/plugins/tableresize/plugin.js | 2 +- .../plugins/tabletools/dialogs/tableCell.js | 2 +- .../plugins/templates/dialogs/templates.js | 2 +- .../plugins/templates/templates/default.js | 2 +- .../plugins/uicolor/dialogs/uicolor.js | 2 +- .../uicolor/lang/_translationstatus.txt | 61 +- .../ckeditor/plugins/uicolor/lang/bg.js | 2 +- .../ckeditor/plugins/uicolor/lang/cs.js | 2 +- .../ckeditor/plugins/uicolor/lang/cy.js | 2 +- .../ckeditor/plugins/uicolor/lang/da.js | 2 +- .../ckeditor/plugins/uicolor/lang/de.js | 2 +- .../ckeditor/plugins/uicolor/lang/el.js | 2 +- .../ckeditor/plugins/uicolor/lang/en.js | 2 +- .../ckeditor/plugins/uicolor/lang/eo.js | 2 +- .../ckeditor/plugins/uicolor/lang/et.js | 2 +- .../ckeditor/plugins/uicolor/lang/fa.js | 4 +- .../ckeditor/plugins/uicolor/lang/fi.js | 2 +- .../ckeditor/plugins/uicolor/lang/fr.js | 2 +- .../ckeditor/plugins/uicolor/lang/he.js | 2 +- .../ckeditor/plugins/uicolor/lang/hr.js | 2 +- .../ckeditor/plugins/uicolor/lang/it.js | 2 +- .../ckeditor/plugins/uicolor/lang/ku.js | 4 +- .../ckeditor/plugins/uicolor/lang/lv.js | 6 + .../ckeditor/plugins/uicolor/lang/mk.js | 2 +- .../ckeditor/plugins/uicolor/lang/nb.js | 2 +- .../ckeditor/plugins/uicolor/lang/nl.js | 2 +- .../ckeditor/plugins/uicolor/lang/no.js | 2 +- .../ckeditor/plugins/uicolor/lang/pl.js | 2 +- .../ckeditor/plugins/uicolor/lang/pt-br.js | 2 +- .../ckeditor/plugins/uicolor/lang/sk.js | 2 +- .../ckeditor/plugins/uicolor/lang/tr.js | 2 +- .../ckeditor/plugins/uicolor/lang/ug.js | 2 +- .../ckeditor/plugins/uicolor/lang/uk.js | 2 +- .../ckeditor/plugins/uicolor/lang/vi.js | 2 +- .../ckeditor/plugins/uicolor/lang/zh-cn.js | 2 +- .../ckeditor/plugins/uicolor/plugin.js | 2 +- .../plugins/uicolor/yui/assets/yui.css | 2 +- .../ckeditor/plugins/uicolor/yui/yui.js | 2 +- .../ckeditor/plugins/wsc/dialogs/ciframe.html | 2 +- .../plugins/wsc/dialogs/tmpFrameset.html | 2 +- .../ckeditor/plugins/wsc/dialogs/wsc.css | 2 +- .../ckeditor/plugins/wsc/dialogs/wsc.js | 2 +- third_party/ckeditor/plugins/xml/plugin.js | 2 +- third_party/ckeditor/skins/kama/dialog.css | 2 +- third_party/ckeditor/skins/kama/editor.css | 4 +- third_party/ckeditor/skins/kama/skin.js | 2 +- third_party/ckeditor/skins/kama/templates.css | 2 +- .../ckeditor/skins/office2003/dialog.css | 2 +- .../ckeditor/skins/office2003/editor.css | 16 +- third_party/ckeditor/skins/office2003/skin.js | 2 +- .../ckeditor/skins/office2003/templates.css | 2 +- third_party/ckeditor/skins/v2/dialog.css | 2 +- third_party/ckeditor/skins/v2/editor.css | 6 +- third_party/ckeditor/skins/v2/skin.js | 2 +- third_party/ckeditor/skins/v2/templates.css | 2 +- third_party/ckeditor/themes/default/theme.js | 2 +- 748 files changed, 4288 insertions(+), 2309 deletions(-) create mode 100644 third_party/ckeditor/_source/plugins/a11yhelp/lang/ku.js create mode 100644 third_party/ckeditor/_source/plugins/a11yhelp/lang/lv.js create mode 100644 third_party/ckeditor/_source/plugins/a11yhelp/lang/sk.js create mode 100644 third_party/ckeditor/_source/plugins/devtools/lang/ku.js create mode 100644 third_party/ckeditor/_source/plugins/devtools/lang/lv.js create mode 100644 third_party/ckeditor/_source/plugins/devtools/lang/sk.js create mode 100644 third_party/ckeditor/_source/plugins/placeholder/lang/ku.js create mode 100644 third_party/ckeditor/_source/plugins/placeholder/lang/lv.js create mode 100644 third_party/ckeditor/_source/plugins/placeholder/lang/sk.js create mode 100644 third_party/ckeditor/_source/plugins/specialchar/lang/ku.js create mode 100644 third_party/ckeditor/_source/plugins/specialchar/lang/lv.js create mode 100644 third_party/ckeditor/_source/plugins/specialchar/lang/sk.js create mode 100644 third_party/ckeditor/_source/plugins/toolbar/plugin.js create mode 100644 third_party/ckeditor/_source/plugins/uicolor/lang/ku.js create mode 100644 third_party/ckeditor/_source/plugins/uicolor/lang/lv.js create mode 100644 third_party/ckeditor/_source/plugins/uicolor/lang/sk.js create mode 100644 third_party/ckeditor/plugins/a11yhelp/lang/ku.js create mode 100644 third_party/ckeditor/plugins/a11yhelp/lang/lv.js create mode 100644 third_party/ckeditor/plugins/a11yhelp/lang/sk.js create mode 100644 third_party/ckeditor/plugins/devtools/lang/ku.js create mode 100644 third_party/ckeditor/plugins/devtools/lang/lv.js create mode 100644 third_party/ckeditor/plugins/devtools/lang/sk.js create mode 100644 third_party/ckeditor/plugins/placeholder/lang/lv.js create mode 100644 third_party/ckeditor/plugins/specialchar/lang/lv.js create mode 100644 third_party/ckeditor/plugins/specialchar/lang/sk.js create mode 100644 third_party/ckeditor/plugins/uicolor/lang/lv.js diff --git a/third_party/ckeditor/.htaccess b/third_party/ckeditor/.htaccess index 8d694efa9ed..77f2be131ec 100644 --- a/third_party/ckeditor/.htaccess +++ b/third_party/ckeditor/.htaccess @@ -1,5 +1,5 @@ # -# Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +# Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. # For licensing, see LICENSE.html or http://ckeditor.com/license # diff --git a/third_party/ckeditor/CHANGES.html b/third_party/ckeditor/CHANGES.html index 3eb8f9ef46c..7699f1f2a34 100644 --- a/third_party/ckeditor/CHANGES.html +++ b/third_party/ckeditor/CHANGES.html @@ -1,6 +1,6 @@ @@ -34,6 +34,28 @@

CKEditor Changelog

+

+ CKEditor 3.6.6.1

+

+ Fixed issues:

+
    +
  • Security update: Added protection against XSS attack and possible path disclosure in PHP sample.
  • +
+

+ CKEditor 3.6.6

+

+ Fixed issues:

+
    +
  • #9866 : [IE10] The full toolbar is displayed in two lines in RTL environment.
  • +
  • #9483 : [IE10] Fixed script error on float panel opening.
  • +
  • #6410 : SCAYT will show no suggestions when appropriate, instead of not appearing.
  • +
  • #7533, #9439 : Fixed SCAYT issues with setData().
  • +
  • #9167 : Improper HTML transformations happening on specific cases.
  • +
  • #9553 : Properly handle dash values in the style field of dialogs.
  • +
  • #9787 : [IE9] onChange wasn't fired for checkboxes in dialogs.
  • +
  • #8888 : It was not possible to scroll dialogs on very small viewports.
  • +
  • #9594 : The TAB key was having no effect on focused read-only editor.
  • +

CKEditor 3.6.5

@@ -1568,7 +1590,7 @@

CKEditor - The text editor for Internet - http://ckeditor.com

- Copyright © 2003-2012, CKSource - Frederico + Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

diff --git a/third_party/ckeditor/INSTALL.html b/third_party/ckeditor/INSTALL.html index aed6a4750b0..7ac30d830c7 100644 --- a/third_party/ckeditor/INSTALL.html +++ b/third_party/ckeditor/INSTALL.html @@ -1,6 +1,6 @@ @@ -84,7 +84,7 @@

CKEditor - The text editor for Internet - http://ckeditor.com

- Copyright © 2003-2012, CKSource - Frederico + Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

diff --git a/third_party/ckeditor/LICENSE.html b/third_party/ckeditor/LICENSE.html index 67572d5bbb6..87fede21c57 100644 --- a/third_party/ckeditor/LICENSE.html +++ b/third_party/ckeditor/LICENSE.html @@ -7,7 +7,7 @@ ========================== CKEditor - The text editor for Internet - http://ckeditor.com -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. Licensed under the terms of any of the following licenses at your choice: @@ -1279,7 +1279,7 @@

CKEditor™ - The text editor for Internet™ - http://ckeditor.com
- Copyright © 2003-2012, CKSource - Frederico Knabben. All rights reserved. + Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

Licensed under the terms of any of the following licenses at your choice: diff --git a/third_party/ckeditor/_samples/adobeair/application.xml b/third_party/ckeditor/_samples/adobeair/application.xml index 5ecb4581d31..135a86da101 100644 --- a/third_party/ckeditor/_samples/adobeair/application.xml +++ b/third_party/ckeditor/_samples/adobeair/application.xml @@ -1,6 +1,6 @@ @@ -9,7 +9,7 @@ For licensing, see LICENSE.html or http://ckeditor.com/license 1.0 CKEditor AIR Samples This is a sample AIR application of CKEditor. - Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. + Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. _samples/adobeair/sample.html CKEditor - Adobe AIR Sample diff --git a/third_party/ckeditor/_samples/adobeair/run.bat b/third_party/ckeditor/_samples/adobeair/run.bat index b12039c21ea..f2654d4ad44 100644 --- a/third_party/ckeditor/_samples/adobeair/run.bat +++ b/third_party/ckeditor/_samples/adobeair/run.bat @@ -1,6 +1,6 @@ @ECHO OFF :: -:: Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +:: Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. :: For licensing, see LICENSE.html or http://ckeditor.com/license :: :: Use this file to quickly run the sample in a Windows environment. diff --git a/third_party/ckeditor/_samples/adobeair/run.sh b/third_party/ckeditor/_samples/adobeair/run.sh index 51b73098361..2b01e1e9ab0 100644 --- a/third_party/ckeditor/_samples/adobeair/run.sh +++ b/third_party/ckeditor/_samples/adobeair/run.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -# Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +# Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. # For licensing, see LICENSE.html or http://ckeditor.com/license # Use this file to quickly run the sample under Linux. diff --git a/third_party/ckeditor/_samples/adobeair/sample.html b/third_party/ckeditor/_samples/adobeair/sample.html index 809341d0965..e1c3ec9c7e5 100644 --- a/third_party/ckeditor/_samples/adobeair/sample.html +++ b/third_party/ckeditor/_samples/adobeair/sample.html @@ -1,6 +1,6 @@ @@ -37,7 +37,7 @@

CKEditor - The text editor for Internet - http://ckeditor.com

- Copyright © 2003-2012, CKSource - Frederico + Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

diff --git a/third_party/ckeditor/_samples/ajax.html b/third_party/ckeditor/_samples/ajax.html index 430971f622a..82c0ea25754 100644 --- a/third_party/ckeditor/_samples/ajax.html +++ b/third_party/ckeditor/_samples/ajax.html @@ -1,6 +1,6 @@ @@ -90,7 +90,7 @@

CKEditor - The text editor for the Internet - http://ckeditor.com

- Copyright © 2003-2012, CKSource - Frederico + Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

diff --git a/third_party/ckeditor/_samples/api.html b/third_party/ckeditor/_samples/api.html index aa858cdcd22..a52c938fa3e 100644 --- a/third_party/ckeditor/_samples/api.html +++ b/third_party/ckeditor/_samples/api.html @@ -1,6 +1,6 @@ @@ -184,7 +184,7 @@

CKEditor - The text editor for the Internet - http://ckeditor.com

- Copyright © 2003-2012, CKSource - Frederico + Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

diff --git a/third_party/ckeditor/_samples/api_dialog.html b/third_party/ckeditor/_samples/api_dialog.html index 451d502e708..af6f2a71281 100644 --- a/third_party/ckeditor/_samples/api_dialog.html +++ b/third_party/ckeditor/_samples/api_dialog.html @@ -1,6 +1,6 @@ @@ -190,7 +190,7 @@

CKEditor - The text editor for the Internet - http://ckeditor.com

- Copyright © 2003-2012, CKSource - Frederico + Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

diff --git a/third_party/ckeditor/_samples/api_dialog/my_dialog.js b/third_party/ckeditor/_samples/api_dialog/my_dialog.js index 3873fa065c6..2827a9cac7f 100644 --- a/third_party/ckeditor/_samples/api_dialog/my_dialog.js +++ b/third_party/ckeditor/_samples/api_dialog/my_dialog.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_samples/asp/advanced.asp b/third_party/ckeditor/_samples/asp/advanced.asp index c5c7c1f27b5..511de9136d3 100644 --- a/third_party/ckeditor/_samples/asp/advanced.asp +++ b/third_party/ckeditor/_samples/asp/advanced.asp @@ -10,7 +10,7 @@ %> @@ -97,7 +97,7 @@ response.write editor.editor("editor2", initialValue) CKEditor - The text editor for Internet - http://ckeditor.com

- Copyright © 2003-2012, CKSource - Frederico + Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

diff --git a/third_party/ckeditor/_samples/asp/events.asp b/third_party/ckeditor/_samples/asp/events.asp index 89c56a17aeb..b6e5306e5b8 100644 --- a/third_party/ckeditor/_samples/asp/events.asp +++ b/third_party/ckeditor/_samples/asp/events.asp @@ -10,7 +10,7 @@ %> @@ -128,7 +128,7 @@ editor.editor "editor2", initialValue CKEditor - The text editor for Internet - http://ckeditor.com

- Copyright © 2003-2012, CKSource - Frederico + Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

diff --git a/third_party/ckeditor/_samples/asp/index.html b/third_party/ckeditor/_samples/asp/index.html index b5103c7555f..d0b737caff8 100644 --- a/third_party/ckeditor/_samples/asp/index.html +++ b/third_party/ckeditor/_samples/asp/index.html @@ -1,6 +1,6 @@ @@ -96,7 +96,7 @@

CKEditor - The text editor for the Internet - http://ckeditor.com

- Copyright © 2003-2012, CKSource - Frederico Knabben. All rights reserved. + Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

diff --git a/third_party/ckeditor/_samples/asp/replace.asp b/third_party/ckeditor/_samples/asp/replace.asp index 8e88b19db8c..8191ba63c76 100644 --- a/third_party/ckeditor/_samples/asp/replace.asp +++ b/third_party/ckeditor/_samples/asp/replace.asp @@ -10,7 +10,7 @@ %> @@ -53,7 +53,7 @@ For licensing, see LICENSE.html or http://ckeditor.com/license CKEditor - The text editor for Internet - http://ckeditor.com

- Copyright © 2003-2012, CKSource - Frederico + Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

diff --git a/third_party/ckeditor/_samples/asp/replaceall.asp b/third_party/ckeditor/_samples/asp/replaceall.asp index bc4438beb25..de7b88ad2e0 100644 --- a/third_party/ckeditor/_samples/asp/replaceall.asp +++ b/third_party/ckeditor/_samples/asp/replaceall.asp @@ -10,7 +10,7 @@ %> @@ -58,7 +58,7 @@ For licensing, see LICENSE.html or http://ckeditor.com/license CKEditor - The text editor for Internet - http://ckeditor.com

- Copyright © 2003-2012, CKSource - Frederico + Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

diff --git a/third_party/ckeditor/_samples/asp/sample_posteddata.asp b/third_party/ckeditor/_samples/asp/sample_posteddata.asp index feb025af149..53650f18542 100644 --- a/third_party/ckeditor/_samples/asp/sample_posteddata.asp +++ b/third_party/ckeditor/_samples/asp/sample_posteddata.asp @@ -2,7 +2,7 @@ <% Option Explicit %> @@ -39,7 +39,7 @@ For licensing, see LICENSE.html or http://ckeditor.com/license CKEditor - The text editor for Internet - http://ckeditor.com

- Copyright © 2003-2012, CKSource - Frederico Knabben. All rights reserved. + Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

diff --git a/third_party/ckeditor/_samples/asp/standalone.asp b/third_party/ckeditor/_samples/asp/standalone.asp index 28d8118962b..e937daeeb1f 100644 --- a/third_party/ckeditor/_samples/asp/standalone.asp +++ b/third_party/ckeditor/_samples/asp/standalone.asp @@ -10,7 +10,7 @@ %> @@ -64,7 +64,7 @@ For licensing, see LICENSE.html or http://ckeditor.com/license CKEditor - The text editor for Internet - http://ckeditor.com

- Copyright © 2003-2012, CKSource - Frederico + Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

diff --git a/third_party/ckeditor/_samples/assets/_posteddata.php b/third_party/ckeditor/_samples/assets/_posteddata.php index 51ca7506959..1f7a9d5ce73 100644 --- a/third_party/ckeditor/_samples/assets/_posteddata.php +++ b/third_party/ckeditor/_samples/assets/_posteddata.php @@ -1,59 +1,59 @@ - - - - - Sample — CKEditor - - - - -

- CKEditor — Posted Data -

- - - - - - - - - $value ) -{ - if ( get_magic_quotes_gpc() ) - $postedValue = htmlspecialchars( stripslashes( $value ) ) ; - else - $postedValue = htmlspecialchars( $value ) ; - -?> - - - - - -
Field NameValue
- - - + + + + + Sample — CKEditor + + + + +

+ CKEditor — Posted Data +

+ + + + + + + + + $value ) + { + if ( ( !is_string($value) && !is_numeric($value) ) || !is_string($key) ) + continue; + + if ( get_magic_quotes_gpc() ) + $value = htmlspecialchars( stripslashes((string)$value) ); + else + $value = htmlspecialchars( (string)$value ); +?> + + + + + +
Field NameValue
+ + + diff --git a/third_party/ckeditor/_samples/assets/output_xhtml.css b/third_party/ckeditor/_samples/assets/output_xhtml.css index 817e41d19de..2b15e1c3f46 100644 --- a/third_party/ckeditor/_samples/assets/output_xhtml.css +++ b/third_party/ckeditor/_samples/assets/output_xhtml.css @@ -1,5 +1,5 @@ /* - * Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. + * Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. * For licensing, see LICENSE.html or http://ckeditor.com/license * * Styles used by the XHTML 1.1 sample page (xhtml.html). diff --git a/third_party/ckeditor/_samples/autogrow.html b/third_party/ckeditor/_samples/autogrow.html index 59e3a98eaa8..cd6b84bbf35 100644 --- a/third_party/ckeditor/_samples/autogrow.html +++ b/third_party/ckeditor/_samples/autogrow.html @@ -1,6 +1,6 @@ @@ -100,7 +100,7 @@

CKEditor - The text editor for the Internet - http://ckeditor.com

- Copyright © 2003-2012, CKSource - Frederico + Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

diff --git a/third_party/ckeditor/_samples/bbcode.html b/third_party/ckeditor/_samples/bbcode.html index 8a68c71eee1..8bff6fe95d5 100644 --- a/third_party/ckeditor/_samples/bbcode.html +++ b/third_party/ckeditor/_samples/bbcode.html @@ -1,6 +1,6 @@ @@ -117,7 +117,7 @@

CKEditor - The text editor for the Internet - http://ckeditor.com

- Copyright © 2003-2012, CKSource - Frederico + Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

diff --git a/third_party/ckeditor/_samples/devtools.html b/third_party/ckeditor/_samples/devtools.html index 361b881b5fa..85ae641e5cd 100644 --- a/third_party/ckeditor/_samples/devtools.html +++ b/third_party/ckeditor/_samples/devtools.html @@ -1,6 +1,6 @@ @@ -86,7 +86,7 @@

CKEditor - The text editor for the Internet - http://ckeditor.com

- Copyright © 2003-2012, CKSource - Frederico + Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

diff --git a/third_party/ckeditor/_samples/divreplace.html b/third_party/ckeditor/_samples/divreplace.html index 9985fe2eeee..6f4ff41059d 100644 --- a/third_party/ckeditor/_samples/divreplace.html +++ b/third_party/ckeditor/_samples/divreplace.html @@ -1,6 +1,6 @@ @@ -146,7 +146,7 @@

CKEditor - The text editor for the Internet - http://ckeditor.com

- Copyright © 2003-2012, CKSource - Frederico + Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

diff --git a/third_party/ckeditor/_samples/enterkey.html b/third_party/ckeditor/_samples/enterkey.html index 9b2015bd9e2..52d88d40e6d 100644 --- a/third_party/ckeditor/_samples/enterkey.html +++ b/third_party/ckeditor/_samples/enterkey.html @@ -1,6 +1,6 @@ @@ -107,7 +107,7 @@

CKEditor - The text editor for the Internet - http://ckeditor.com

- Copyright © 2003-2012, CKSource - Frederico + Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

diff --git a/third_party/ckeditor/_samples/fullpage.html b/third_party/ckeditor/_samples/fullpage.html index 7f24f029e07..4315f3b7785 100644 --- a/third_party/ckeditor/_samples/fullpage.html +++ b/third_party/ckeditor/_samples/fullpage.html @@ -1,6 +1,6 @@ @@ -74,7 +74,7 @@

CKEditor - The text editor for the Internet - http://ckeditor.com

- Copyright © 2003-2012, CKSource - Frederico + Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

diff --git a/third_party/ckeditor/_samples/index.html b/third_party/ckeditor/_samples/index.html index f35d8be520d..e5b18e5bad1 100644 --- a/third_party/ckeditor/_samples/index.html +++ b/third_party/ckeditor/_samples/index.html @@ -1,6 +1,6 @@ @@ -109,7 +109,7 @@

CKEditor - The text editor for the Internet - http://ckeditor.com

- Copyright © 2003-2012, CKSource - Frederico Knabben. All rights reserved. + Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

diff --git a/third_party/ckeditor/_samples/jqueryadapter.html b/third_party/ckeditor/_samples/jqueryadapter.html index 37001af6577..a8ba6c5ffd1 100644 --- a/third_party/ckeditor/_samples/jqueryadapter.html +++ b/third_party/ckeditor/_samples/jqueryadapter.html @@ -1,6 +1,6 @@ @@ -91,7 +91,7 @@

CKEditor - The text editor for the Internet - http://ckeditor.com

- Copyright © 2003-2012, CKSource - Frederico + Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

diff --git a/third_party/ckeditor/_samples/output_for_flash.html b/third_party/ckeditor/_samples/output_for_flash.html index 91b10b5bc74..ce0aa90564d 100644 --- a/third_party/ckeditor/_samples/output_for_flash.html +++ b/third_party/ckeditor/_samples/output_for_flash.html @@ -1,6 +1,6 @@ @@ -267,7 +267,7 @@

CKEditor - The text editor for the Internet - http://ckeditor.com

- Copyright © 2003-2012, CKSource - Frederico + Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

diff --git a/third_party/ckeditor/_samples/output_html.html b/third_party/ckeditor/_samples/output_html.html index 8d833d49418..fed1e9c2be0 100644 --- a/third_party/ckeditor/_samples/output_html.html +++ b/third_party/ckeditor/_samples/output_html.html @@ -1,6 +1,6 @@ @@ -277,7 +277,7 @@

CKEditor - The text editor for the Internet - http://ckeditor.com

- Copyright © 2003-2012, CKSource - Frederico + Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

diff --git a/third_party/ckeditor/_samples/output_xhtml.html b/third_party/ckeditor/_samples/output_xhtml.html index ba66a48e1a4..0a87aa3f468 100644 --- a/third_party/ckeditor/_samples/output_xhtml.html +++ b/third_party/ckeditor/_samples/output_xhtml.html @@ -1,6 +1,6 @@ @@ -173,7 +173,7 @@

CKEditor - The text editor for the Internet - http://ckeditor.com

- Copyright © 2003-2012, CKSource - Frederico + Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

diff --git a/third_party/ckeditor/_samples/php/advanced.php b/third_party/ckeditor/_samples/php/advanced.php index 74b87ddfc7f..a27dd4f1d5d 100644 --- a/third_party/ckeditor/_samples/php/advanced.php +++ b/third_party/ckeditor/_samples/php/advanced.php @@ -1,6 +1,6 @@ @@ -112,7 +112,7 @@ CKEditor - The text editor for the Internet - http://ckeditor.com

- Copyright © 2003-2012, CKSource - Frederico + Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

diff --git a/third_party/ckeditor/_samples/php/events.php b/third_party/ckeditor/_samples/php/events.php index de09c5680cf..044b096b2f8 100644 --- a/third_party/ckeditor/_samples/php/events.php +++ b/third_party/ckeditor/_samples/php/events.php @@ -1,6 +1,6 @@ @@ -145,7 +145,7 @@ function CKEditorNotifyAboutOpenedDialog(&$CKEditor) { CKEditor - The text editor for the Internet - http://ckeditor.com

- Copyright © 2003-2012, CKSource - Frederico + Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

diff --git a/third_party/ckeditor/_samples/php/index.html b/third_party/ckeditor/_samples/php/index.html index d5428e6383b..094db7ed841 100644 --- a/third_party/ckeditor/_samples/php/index.html +++ b/third_party/ckeditor/_samples/php/index.html @@ -1,6 +1,6 @@ @@ -40,7 +40,7 @@

CKEditor - The text editor for the Internet - http://ckeditor.com

- Copyright © 2003-2012, CKSource - Frederico Knabben. All rights reserved. + Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

diff --git a/third_party/ckeditor/_samples/php/replace.php b/third_party/ckeditor/_samples/php/replace.php index 36f877bc6c2..dbedd3c73ad 100644 --- a/third_party/ckeditor/_samples/php/replace.php +++ b/third_party/ckeditor/_samples/php/replace.php @@ -1,6 +1,6 @@ @@ -67,7 +67,7 @@ CKEditor - The text editor for the Internet - http://ckeditor.com

- Copyright © 2003-2012, CKSource - Frederico + Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

diff --git a/third_party/ckeditor/_samples/php/replaceall.php b/third_party/ckeditor/_samples/php/replaceall.php index 882a44c0dea..74f4418e13f 100644 --- a/third_party/ckeditor/_samples/php/replaceall.php +++ b/third_party/ckeditor/_samples/php/replaceall.php @@ -1,6 +1,6 @@ @@ -68,7 +68,7 @@ CKEditor - The text editor for the Internet - http://ckeditor.com

- Copyright © 2003-2012, CKSource - Frederico + Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

diff --git a/third_party/ckeditor/_samples/php/standalone.php b/third_party/ckeditor/_samples/php/standalone.php index 586e0c8ed1a..1b02a520577 100644 --- a/third_party/ckeditor/_samples/php/standalone.php +++ b/third_party/ckeditor/_samples/php/standalone.php @@ -1,6 +1,6 @@ @@ -75,7 +75,7 @@ CKEditor - The text editor for the Internet - http://ckeditor.com

- Copyright © 2003-2012, CKSource - Frederico + Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

diff --git a/third_party/ckeditor/_samples/placeholder.html b/third_party/ckeditor/_samples/placeholder.html index d6aceadcd51..bb3d64182c3 100644 --- a/third_party/ckeditor/_samples/placeholder.html +++ b/third_party/ckeditor/_samples/placeholder.html @@ -1,6 +1,6 @@ @@ -73,7 +73,7 @@

CKEditor - The text editor for the Internet - http://ckeditor.com

- Copyright © 2003-2012, CKSource - Frederico + Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

diff --git a/third_party/ckeditor/_samples/readonly.html b/third_party/ckeditor/_samples/readonly.html index 83cf3146000..e462fbdcdeb 100644 --- a/third_party/ckeditor/_samples/readonly.html +++ b/third_party/ckeditor/_samples/readonly.html @@ -1,6 +1,6 @@ @@ -83,7 +83,7 @@

CKEditor - The text editor for the Internet - http://ckeditor.com

- Copyright © 2003-2012, CKSource - Frederico + Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

diff --git a/third_party/ckeditor/_samples/replacebyclass.html b/third_party/ckeditor/_samples/replacebyclass.html index 645e0e0574f..c397193713c 100644 --- a/third_party/ckeditor/_samples/replacebyclass.html +++ b/third_party/ckeditor/_samples/replacebyclass.html @@ -1,6 +1,6 @@ @@ -56,7 +56,7 @@

CKEditor - The text editor for the Internet - http://ckeditor.com

- Copyright © 2003-2012, CKSource - Frederico + Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

diff --git a/third_party/ckeditor/_samples/replacebycode.html b/third_party/ckeditor/_samples/replacebycode.html index fc0bb8c9b98..68398ddb7c5 100644 --- a/third_party/ckeditor/_samples/replacebycode.html +++ b/third_party/ckeditor/_samples/replacebycode.html @@ -1,6 +1,6 @@ @@ -89,7 +89,7 @@

CKEditor - The text editor for the Internet - http://ckeditor.com

- Copyright © 2003-2012, CKSource - Frederico + Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

diff --git a/third_party/ckeditor/_samples/sample.css b/third_party/ckeditor/_samples/sample.css index 9e5d6f7b680..01b930b07d8 100644 --- a/third_party/ckeditor/_samples/sample.css +++ b/third_party/ckeditor/_samples/sample.css @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_samples/sample.js b/third_party/ckeditor/_samples/sample.js index d80646edcac..eb0c578e562 100644 --- a/third_party/ckeditor/_samples/sample.js +++ b/third_party/ckeditor/_samples/sample.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_samples/sample_posteddata.php b/third_party/ckeditor/_samples/sample_posteddata.php index ebefa0daf0b..88815b0f3a9 100644 --- a/third_party/ckeditor/_samples/sample_posteddata.php +++ b/third_party/ckeditor/_samples/sample_posteddata.php @@ -11,7 +11,7 @@ side and write it to a file or a database. - Copyright 2003-2012, CKSource - Frederico Knabben. + Copyright 2003-2013, CKSource - Frederico Knabben. All rights reserved. ------------------------------------------------------------------------------------------- diff --git a/third_party/ckeditor/_samples/sharedspaces.html b/third_party/ckeditor/_samples/sharedspaces.html index d514b1b45d2..c5b70b7584c 100644 --- a/third_party/ckeditor/_samples/sharedspaces.html +++ b/third_party/ckeditor/_samples/sharedspaces.html @@ -1,6 +1,6 @@ @@ -94,7 +94,7 @@

CKEditor - The text editor for the Internet - http://ckeditor.com

- Copyright © 2003-2012, CKSource - Frederico + Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

diff --git a/third_party/ckeditor/_samples/skins.html b/third_party/ckeditor/_samples/skins.html index b73f8b9adf7..737cb0caeca 100644 --- a/third_party/ckeditor/_samples/skins.html +++ b/third_party/ckeditor/_samples/skins.html @@ -1,6 +1,6 @@ @@ -102,7 +102,7 @@

"V2" skin

CKEditor - The text editor for the Internet - http://ckeditor.com

- Copyright © 2003-2012, CKSource - Frederico + Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

diff --git a/third_party/ckeditor/_samples/stylesheetparser.html b/third_party/ckeditor/_samples/stylesheetparser.html index a549f9e8199..c08b005ecc2 100644 --- a/third_party/ckeditor/_samples/stylesheetparser.html +++ b/third_party/ckeditor/_samples/stylesheetparser.html @@ -1,6 +1,6 @@ @@ -85,7 +85,7 @@

CKEditor - The text editor for the Internet - http://ckeditor.com

- Copyright © 2003-2012, CKSource - Frederico + Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

diff --git a/third_party/ckeditor/_samples/tableresize.html b/third_party/ckeditor/_samples/tableresize.html index f337882ea09..2f8573faf32 100644 --- a/third_party/ckeditor/_samples/tableresize.html +++ b/third_party/ckeditor/_samples/tableresize.html @@ -1,6 +1,6 @@ @@ -107,7 +107,7 @@

CKEditor - The text editor for the Internet - http://ckeditor.com

- Copyright © 2003-2012, CKSource - Frederico + Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

diff --git a/third_party/ckeditor/_samples/ui_color.html b/third_party/ckeditor/_samples/ui_color.html index a93b730489a..ed2f07d8c6f 100644 --- a/third_party/ckeditor/_samples/ui_color.html +++ b/third_party/ckeditor/_samples/ui_color.html @@ -1,6 +1,6 @@ @@ -121,7 +121,7 @@

Enabling the Color Picker

CKEditor - The text editor for the Internet - http://ckeditor.com

- Copyright © 2003-2012, CKSource - Frederico + Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

diff --git a/third_party/ckeditor/_samples/ui_languages.html b/third_party/ckeditor/_samples/ui_languages.html index 9fe56efda4f..90b867578dc 100644 --- a/third_party/ckeditor/_samples/ui_languages.html +++ b/third_party/ckeditor/_samples/ui_languages.html @@ -1,6 +1,6 @@ @@ -126,7 +126,7 @@

CKEditor - The text editor for the Internet - http://ckeditor.com

- Copyright © 2003-2012, CKSource - Frederico + Copyright © 2003-2013, CKSource - Frederico Knabben. All rights reserved.

diff --git a/third_party/ckeditor/_source/adapters/jquery.js b/third_party/ckeditor/_source/adapters/jquery.js index d9584264103..fb768ca70df 100644 --- a/third_party/ckeditor/_source/adapters/jquery.js +++ b/third_party/ckeditor/_source/adapters/jquery.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_source/core/_bootstrap.js b/third_party/ckeditor/_source/core/_bootstrap.js index c2a0cf7d179..7ed91debc5b 100644 --- a/third_party/ckeditor/_source/core/_bootstrap.js +++ b/third_party/ckeditor/_source/core/_bootstrap.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_source/core/ckeditor.js b/third_party/ckeditor/_source/core/ckeditor.js index 086a8668cd4..548fd442480 100644 --- a/third_party/ckeditor/_source/core/ckeditor.js +++ b/third_party/ckeditor/_source/core/ckeditor.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_source/core/ckeditor_base.js b/third_party/ckeditor/_source/core/ckeditor_base.js index 2da3a6aa432..fdb4c0d17dd 100644 --- a/third_party/ckeditor/_source/core/ckeditor_base.js +++ b/third_party/ckeditor/_source/core/ckeditor_base.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -12,7 +12,7 @@ For licensing, see LICENSE.html or http://ckeditor.com/license // Must be updated on changes in the script as well as updated in the // ckeditor_source.js and ckeditor_basic_source.js files. -// if(!window.CKEDITOR)window.CKEDITOR=(function(){var a={timestamp:'',version:'3.6.5',revision:'7647',rnd:Math.floor(Math.random()*900)+100,_:{},status:'unloaded',basePath:(function(){var d=window.CKEDITOR_BASEPATH||'';if(!d){var e=document.getElementsByTagName('script');for(var f=0;f=0?'&':'?')+'t='+this.timestamp;return d;}},b=window.CKEDITOR_GETURL;if(b){var c=a.getUrl;a.getUrl=function(d){return b.call(a,d)||c.call(a,d);};}return a;})(); +// if(!window.CKEDITOR)window.CKEDITOR=(function(){var a={timestamp:'',version:'3.6.6',revision:'7689',rnd:Math.floor(Math.random()*900)+100,_:{},status:'unloaded',basePath:(function(){var d=window.CKEDITOR_BASEPATH||'';if(!d){var e=document.getElementsByTagName('script');for(var f=0;f=0?'&':'?')+'t='+this.timestamp;return d;}},b=window.CKEDITOR_GETURL;if(b){var c=a.getUrl;a.getUrl=function(d){return b.call(a,d)||c.call(a,d);};}return a;})(); // #### Raw code // ATTENTION: read the above "Compressed Code" notes when changing this code. @@ -51,7 +51,7 @@ if ( !window.CKEDITOR ) // The production implementation contains a fixed timestamp, unique // for each release and generated by the releaser. // (Base 36 value of each component of YYMMDDHH - 4 chars total - e.g. 87bm == 08071122) - timestamp : 'C9A85WF', + timestamp : 'D03G5XL', /** * Contains the CKEditor version number. @@ -59,7 +59,7 @@ if ( !window.CKEDITOR ) * @example * alert( CKEDITOR.version ); // e.g. 'CKEditor 3.4.1' */ - version : '3.6.5', + version : '3.6.6', /** * Contains the CKEditor revision number. @@ -69,7 +69,7 @@ if ( !window.CKEDITOR ) * @example * alert( CKEDITOR.revision ); // e.g. '3975' */ - revision : '7647', + revision : '7689', /** * A 3-digit random integer, valid for the entire life of the CKEDITOR object. diff --git a/third_party/ckeditor/_source/core/ckeditor_basic.js b/third_party/ckeditor/_source/core/ckeditor_basic.js index 6a2322f20c7..93ce5cf99e4 100644 --- a/third_party/ckeditor/_source/core/ckeditor_basic.js +++ b/third_party/ckeditor/_source/core/ckeditor_basic.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_source/core/command.js b/third_party/ckeditor/_source/core/command.js index d58c684e934..46f8bc68a5a 100644 --- a/third_party/ckeditor/_source/core/command.js +++ b/third_party/ckeditor/_source/core/command.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_source/core/commanddefinition.js b/third_party/ckeditor/_source/core/commanddefinition.js index 15e8118e5f6..4fbdc907ee3 100644 --- a/third_party/ckeditor/_source/core/commanddefinition.js +++ b/third_party/ckeditor/_source/core/commanddefinition.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_source/core/config.js b/third_party/ckeditor/_source/core/config.js index 72599bac0db..c275d6f6ba1 100644 --- a/third_party/ckeditor/_source/core/config.js +++ b/third_party/ckeditor/_source/core/config.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_source/core/dataprocessor.js b/third_party/ckeditor/_source/core/dataprocessor.js index 6efe5a43c94..3b75984ba5a 100644 --- a/third_party/ckeditor/_source/core/dataprocessor.js +++ b/third_party/ckeditor/_source/core/dataprocessor.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_source/core/dom.js b/third_party/ckeditor/_source/core/dom.js index 54832d8fdb6..c01fcd71b3d 100644 --- a/third_party/ckeditor/_source/core/dom.js +++ b/third_party/ckeditor/_source/core/dom.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_source/core/dom/comment.js b/third_party/ckeditor/_source/core/dom/comment.js index 05c13cf147e..1fadd7840af 100644 --- a/third_party/ckeditor/_source/core/dom/comment.js +++ b/third_party/ckeditor/_source/core/dom/comment.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_source/core/dom/document.js b/third_party/ckeditor/_source/core/dom/document.js index 0b421183e53..a959fa5fca0 100644 --- a/third_party/ckeditor/_source/core/dom/document.js +++ b/third_party/ckeditor/_source/core/dom/document.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_source/core/dom/documentfragment.js b/third_party/ckeditor/_source/core/dom/documentfragment.js index c08c640efbe..fa676baba82 100644 --- a/third_party/ckeditor/_source/core/dom/documentfragment.js +++ b/third_party/ckeditor/_source/core/dom/documentfragment.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_source/core/dom/domobject.js b/third_party/ckeditor/_source/core/dom/domobject.js index e342dc893b1..fccad5d59a0 100644 --- a/third_party/ckeditor/_source/core/dom/domobject.js +++ b/third_party/ckeditor/_source/core/dom/domobject.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_source/core/dom/element.js b/third_party/ckeditor/_source/core/dom/element.js index 84498ba72b4..bb315a4b07e 100644 --- a/third_party/ckeditor/_source/core/dom/element.js +++ b/third_party/ckeditor/_source/core/dom/element.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -105,6 +105,9 @@ CKEDITOR.dom.element.clearMarkers = function( database, element, removeFromDatab } }; +( function() +{ + CKEDITOR.tools.extend( CKEDITOR.dom.element.prototype, /** @lends CKEDITOR.dom.element.prototype */ { @@ -504,7 +507,10 @@ CKEDITOR.tools.extend( CKEDITOR.dom.element.prototype, : function( propertyName ) { - return this.getWindow().$.getComputedStyle( this.$, '' ).getPropertyValue( propertyName ); + var style = this.getWindow().$.getComputedStyle( this.$, null ); + + // Firefox may return null if we call the above on a hidden iframe. (#9117) + return style ? style.getPropertyValue( propertyName ) : ''; }, /** @@ -1186,6 +1192,16 @@ CKEDITOR.tools.extend( CKEDITOR.dom.element.prototype, { // Removes the specified property from the current style object. var $ = this.$.style; + + // "removeProperty" need to be specific on the following styles. + if ( !$.removeProperty && ( name == 'border' || name == 'margin' || name == 'padding' ) ) + { + var names = expandedRules( name ); + for ( var i = 0 ; i < names.length ; i++ ) + this.removeStyle( names[ i ] ); + return; + } + $.removeProperty ? $.removeProperty( name ) : $.removeAttribute( CKEDITOR.tools.cssStyleToDomStyle( name ) ); if ( !this.$.style.cssText ) @@ -1752,13 +1768,35 @@ CKEDITOR.tools.extend( CKEDITOR.dom.element.prototype, } }); -( function() -{ var sides = { width : [ "border-left-width", "border-right-width","padding-left", "padding-right" ], height : [ "border-top-width", "border-bottom-width", "padding-top", "padding-bottom" ] }; + // Generate list of specific style rules, applicable to margin/padding/border. + function expandedRules( style ) + { + var sides = [ 'top', 'left', 'right', 'bottom' ], components; + + if ( style == 'border' ) + components = [ 'color', 'style', 'width' ]; + + var styles = []; + for ( var i = 0 ; i < sides.length ; i++ ) + { + + if ( components ) + { + for ( var j = 0 ; j < components.length ; j++ ) + styles.push( [ style, sides[ i ], components[j] ].join( '-' ) ); + } + else + styles.push( [ style, sides[ i ] ].join( '-' ) ); + } + + return styles; + } + function marginAndPaddingSize( type ) { var adjustment = 0; diff --git a/third_party/ckeditor/_source/core/dom/elementpath.js b/third_party/ckeditor/_source/core/dom/elementpath.js index caf4d3811f2..a11d7e3e8c2 100644 --- a/third_party/ckeditor/_source/core/dom/elementpath.js +++ b/third_party/ckeditor/_source/core/dom/elementpath.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_source/core/dom/event.js b/third_party/ckeditor/_source/core/dom/event.js index c63469c68bf..273a5cfdbff 100644 --- a/third_party/ckeditor/_source/core/dom/event.js +++ b/third_party/ckeditor/_source/core/dom/event.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -117,6 +117,26 @@ CKEDITOR.dom.event.prototype = { var rawNode = this.$.target || this.$.srcElement; return rawNode ? new CKEDITOR.dom.node( rawNode ) : null; + }, + + /** + * Retrieves the coordinates of the mouse pointer relative to the top-left + * corner of the document, in mouse related event. + * @returns {Object} The object contains the position. + * @example + * element.on( 'mousemouse', function( ev ) + * { + * var pageOffset = ev.data.getPageOffset(); + * alert( pageOffset.x ); // page offset X + * alert( pageOffset.y ); // page offset Y + * }); + */ + getPageOffset : function() + { + var doc = this.getTarget().getDocument().$; + var pageX = this.$.pageX || this.$.clientX + ( doc.documentElement.scrollLeft || doc.body.scrollLeft ); + var pageY = this.$.pageY || this.$.clientY + ( doc.documentElement.scrollTop || doc.body.scrollTop ); + return { x : pageX, y : pageY }; } }; diff --git a/third_party/ckeditor/_source/core/dom/node.js b/third_party/ckeditor/_source/core/dom/node.js index 90412e4b48e..07bdbfc6af2 100644 --- a/third_party/ckeditor/_source/core/dom/node.js +++ b/third_party/ckeditor/_source/core/dom/node.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -106,7 +106,8 @@ CKEDITOR.tools.extend( CKEDITOR.dom.node.prototype, if ( !cloneId ) node.removeAttribute( 'id', false ); - node.removeAttribute( 'data-cke-expando', false ); + + node[ 'data-cke-expando' ] = undefined; if ( includeChildren ) { diff --git a/third_party/ckeditor/_source/core/dom/nodelist.js b/third_party/ckeditor/_source/core/dom/nodelist.js index 6c394dc2514..b8d59a5872a 100644 --- a/third_party/ckeditor/_source/core/dom/nodelist.js +++ b/third_party/ckeditor/_source/core/dom/nodelist.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_source/core/dom/range.js b/third_party/ckeditor/_source/core/dom/range.js index c8312b749b3..fbbbe357f1b 100644 --- a/third_party/ckeditor/_source/core/dom/range.js +++ b/third_party/ckeditor/_source/core/dom/range.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -347,50 +347,38 @@ CKEDITOR.dom.range = function( document ) // Creates the appropriate node evaluator for the dom walker used inside // check(Start|End)OfBlock. - function getCheckStartEndBlockEvalFunction( isStart ) + function getCheckStartEndBlockEvalFunction() { var skipBogus = false, + whitespaces = CKEDITOR.dom.walker.whitespaces(), bookmarkEvaluator = CKEDITOR.dom.walker.bookmark( true ), - nbspRegExp = /^[\t\r\n ]*(?: |\xa0)$/; + isBogus = CKEDITOR.dom.walker.bogus(); return function( node ) { - // First ignore bookmark nodes. - if ( bookmarkEvaluator( node ) ) + // First skip empty nodes. + if ( bookmarkEvaluator( node ) || whitespaces( node ) ) return true; - if ( node.type == CKEDITOR.NODE_TEXT ) + // Skip the bogus node at the end of block. + if ( isBogus( node ) && + !skipBogus ) { - // Skip the block filler NBSP. - if ( CKEDITOR.env.ie && - nbspRegExp.test( node.getText() ) && - !skipBogus && - !( isStart && node.getNext() ) ) - { - skipBogus = true; - } - // If there's any visible text, then we're not at the start. - else if ( node.hasAscendant( 'pre' ) || CKEDITOR.tools.trim( node.getText() ).length ) - return false; - } - else if ( node.type == CKEDITOR.NODE_ELEMENT ) - { - // If there are non-empty inline elements (e.g. ), then we're not - // at the start. - if ( !inlineChildReqElements[ node.getName() ] ) - { - // Skip the padding block br. - if ( !CKEDITOR.env.ie && - node.is( 'br' ) && - !skipBogus && - !( isStart && node.getNext() ) ) - { - skipBogus = true; - } - else - return false; - } + skipBogus = true; + return true; } + + // If there's any visible text, then we're not at the start. + if ( node.type == CKEDITOR.NODE_TEXT && + ( node.hasAscendant( 'pre' ) || + CKEDITOR.tools.trim( node.getText() ).length ) ) + return false; + + // If there are non-empty inline elements (e.g. ), then we're not + // at the start. + if ( node.type == CKEDITOR.NODE_ELEMENT && !inlineChildReqElements[ node.getName() ] ) + return false; + return true; }; } @@ -401,21 +389,28 @@ CKEDITOR.dom.range = function( document ) // text node and non-empty elements unless it's being bookmark text. function elementBoundaryEval( checkStart ) { + var whitespaces = CKEDITOR.dom.walker.whitespaces(), + bookmark = CKEDITOR.dom.walker.bookmark( 1 ); + return function( node ) { + // First skip empty nodes. + if ( bookmark( node ) || whitespaces( node ) ) + return true; + // Tolerant bogus br when checking at the end of block. // Reject any text node unless it's being bookmark // OR it's spaces. // Reject any element unless it's being invisible empty. (#3883) return !checkStart && isBogus( node ) || - ( node.type == CKEDITOR.NODE_TEXT ? - !CKEDITOR.tools.trim( node.getText() ) || !!node.getParent().data( 'cke-bookmark' ) - : node.getName() in CKEDITOR.dtd.$removeEmpty ); + node.type == CKEDITOR.NODE_ELEMENT && + node.getName() in CKEDITOR.dtd.$removeEmpty; }; } var whitespaceEval = new CKEDITOR.dom.walker.whitespaces(), - bookmarkEval = new CKEDITOR.dom.walker.bookmark(); + bookmarkEval = new CKEDITOR.dom.walker.bookmark(), + nbspRegExp = /^[\t\r\n ]*(?: |\xa0)$/; function nonWhitespaceOrBookmarkEval( node ) { @@ -1834,13 +1829,13 @@ CKEDITOR.dom.range = function( document ) var startContainer = this.startContainer, startOffset = this.startOffset; - // If the starting node is a text node, and non-empty before the offset, - // then we're surely not at the start of block. - if ( startOffset && startContainer.type == CKEDITOR.NODE_TEXT ) + // [IE] Special handling for range start in text with a leading NBSP, + // we it to be isolated, for bogus check. + if ( CKEDITOR.env.ie && startOffset && startContainer.type == CKEDITOR.NODE_TEXT ) { var textBefore = CKEDITOR.tools.ltrim( startContainer.substring( 0, startOffset ) ); - if ( textBefore.length ) - return false; + if ( nbspRegExp.test( textBefore ) ) + this.trim( 0, 1 ); } // We need to grab the block element holding the start boundary, so @@ -1853,7 +1848,7 @@ CKEDITOR.dom.range = function( document ) walkerRange.setStartAt( path.block || path.blockLimit, CKEDITOR.POSITION_AFTER_START ); var walker = new CKEDITOR.dom.walker( walkerRange ); - walker.evaluator = getCheckStartEndBlockEvalFunction( true ); + walker.evaluator = getCheckStartEndBlockEvalFunction(); return walker.checkBackward(); }, @@ -1863,13 +1858,13 @@ CKEDITOR.dom.range = function( document ) var endContainer = this.endContainer, endOffset = this.endOffset; - // If the ending node is a text node, and non-empty after the offset, - // then we're surely not at the end of block. - if ( endContainer.type == CKEDITOR.NODE_TEXT ) + // [IE] Special handling for range end in text with a following NBSP, + // we it to be isolated, for bogus check. + if ( CKEDITOR.env.ie && endContainer.type == CKEDITOR.NODE_TEXT ) { var textAfter = CKEDITOR.tools.rtrim( endContainer.substring( endOffset ) ); - if ( textAfter.length ) - return false; + if ( nbspRegExp.test( textAfter ) ) + this.trim( 1, 0 ); } // We need to grab the block element holding the start boundary, so @@ -1882,15 +1877,53 @@ CKEDITOR.dom.range = function( document ) walkerRange.setEndAt( path.block || path.blockLimit, CKEDITOR.POSITION_BEFORE_END ); var walker = new CKEDITOR.dom.walker( walkerRange ); - walker.evaluator = getCheckStartEndBlockEvalFunction( false ); + walker.evaluator = getCheckStartEndBlockEvalFunction(); return walker.checkForward(); }, /** - * Check if elements at which the range boundaries anchor are read-only, - * with respect to "contenteditable" attribute. + * Traverse with {@link CKEDITOR.dom.walker} to retrieve the previous element before the range start. + * @param {Function} evaluator Function used as the walker's evaluator. + * @param {Function} [guard] Function used as the walker's guard. + * @param {CKEDITOR.dom.element} [boundary] A range ancestor element in which the traversal is limited, + * default to the root editable if not defined. + * + * @return {CKEDITOR.dom.element|null} The returned node from the traversal. + */ + getPreviousNode : function( evaluator, guard, boundary ) { + + var walkerRange = this.clone(); + walkerRange.collapse( 1 ); + walkerRange.setStartAt( boundary || this.document.getBody(), CKEDITOR.POSITION_AFTER_START ); + + var walker = new CKEDITOR.dom.walker( walkerRange ); + walker.evaluator = evaluator; + walker.guard = guard; + return walker.previous(); + }, + + /** + * Traverse with {@link CKEDITOR.dom.walker} to retrieve the next element before the range start. + * @param {Function} evaluator Function used as the walker's evaluator. + * @param {Function} [guard] Function used as the walker's guard. + * @param {CKEDITOR.dom.element} [boundary] A range ancestor element in which the traversal is limited, + * default to the root editable if not defined. + * + * @return {CKEDITOR.dom.element|null} The returned node from the traversal. */ + getNextNode: function( evaluator, guard, boundary ) + { + var walkerRange = this.clone(); + walkerRange.collapse(); + walkerRange.setEndAt( boundary || this.document.getBody(), CKEDITOR.POSITION_BEFORE_END ); + + var walker = new CKEDITOR.dom.walker( walkerRange ); + walker.evaluator = evaluator; + walker.guard = guard; + return walker.next(); + }, + checkReadOnly : ( function() { function checkNodesEditable( node, anotherEnd ) @@ -1939,8 +1972,6 @@ CKEDITOR.dom.range = function( document ) */ moveToElementEditablePosition : function( el, isMoveToEnd ) { - var nbspRegExp = /^[\t\r\n ]*(?: |\xa0)$/; - function nextDFS( node, childOnly ) { var next; diff --git a/third_party/ckeditor/_source/core/dom/rangelist.js b/third_party/ckeditor/_source/core/dom/rangelist.js index 2e5a1b22a8c..38788a8325e 100644 --- a/third_party/ckeditor/_source/core/dom/rangelist.js +++ b/third_party/ckeditor/_source/core/dom/rangelist.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_source/core/dom/text.js b/third_party/ckeditor/_source/core/dom/text.js index dfb46d5037d..4a667438a3d 100644 --- a/third_party/ckeditor/_source/core/dom/text.js +++ b/third_party/ckeditor/_source/core/dom/text.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_source/core/dom/walker.js b/third_party/ckeditor/_source/core/dom/walker.js index a9c4ebacb5b..569ac571904 100644 --- a/third_party/ckeditor/_source/core/dom/walker.js +++ b/third_party/ckeditor/_source/core/dom/walker.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -413,8 +413,14 @@ For licensing, see LICENSE.html or http://ckeditor.com/license { return function( node ) { - var isWhitespace = node && ( node.type == CKEDITOR.NODE_TEXT ) - && !CKEDITOR.tools.trim( node.getText() ); + var isWhitespace; + if ( node && node.type == CKEDITOR.NODE_TEXT ) + { + // whitespace, as well as the text cursor filler node we used in Webkit. (#9384) + isWhitespace = !CKEDITOR.tools.trim( node.getText() ) || + CKEDITOR.env.webkit && node.getText() == '\u200b'; + } + return !! ( isReject ^ isWhitespace ); }; }; @@ -428,13 +434,25 @@ For licensing, see LICENSE.html or http://ckeditor.com/license var whitespace = CKEDITOR.dom.walker.whitespaces(); return function( node ) { - // Nodes that take no spaces in wysiwyg: - // 1. White-spaces but not including NBSP; - // 2. Empty inline elements, e.g. we're checking here - // 'offsetHeight' instead of 'offsetWidth' for properly excluding - // all sorts of empty paragraph, e.g.
. - var isInvisible = whitespace( node ) || node.is && !node.$.offsetHeight; - return !! ( isReject ^ isInvisible ); + var invisible; + + if ( whitespace( node ) ) + invisible = 1; + else + { + // Visibility should be checked on element. + if ( node.type == CKEDITOR.NODE_TEXT ) + node = node.getParent(); + + // Nodes that take no spaces in wysiwyg: + // 1. White-spaces but not including NBSP; + // 2. Empty inline elements, e.g. we're checking here + // 'offsetHeight' instead of 'offsetWidth' for properly excluding + // all sorts of empty paragraph, e.g.
. + invisible = !node.$.offsetHeight; + } + + return !! ( isReject ^ invisible ); }; }; diff --git a/third_party/ckeditor/_source/core/dom/window.js b/third_party/ckeditor/_source/core/dom/window.js index 755b658f7f9..813cd2047e2 100644 --- a/third_party/ckeditor/_source/core/dom/window.js +++ b/third_party/ckeditor/_source/core/dom/window.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_source/core/dtd.js b/third_party/ckeditor/_source/core/dtd.js index 6636dca3d1c..76260b2ee60 100644 --- a/third_party/ckeditor/_source/core/dtd.js +++ b/third_party/ckeditor/_source/core/dtd.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_source/core/editor.js b/third_party/ckeditor/_source/core/editor.js index 20e5d7c0e07..41276a9f4ec 100644 --- a/third_party/ckeditor/_source/core/editor.js +++ b/third_party/ckeditor/_source/core/editor.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_source/core/editor_basic.js b/third_party/ckeditor/_source/core/editor_basic.js index da7ef1ff07d..337238093d7 100644 --- a/third_party/ckeditor/_source/core/editor_basic.js +++ b/third_party/ckeditor/_source/core/editor_basic.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_source/core/env.js b/third_party/ckeditor/_source/core/env.js index e8033716066..9f1f6d65ea2 100644 --- a/third_party/ckeditor/_source/core/env.js +++ b/third_party/ckeditor/_source/core/env.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -289,6 +289,9 @@ if ( !CKEDITOR.env ) if ( env.quirks ) env.cssClass += ' cke_browser_iequirks'; + + if ( document.documentMode && document.documentMode >=9 ) + env.cssClass += ' cke_browser_ie9plus'; } if ( env.gecko && version < 10900 ) diff --git a/third_party/ckeditor/_source/core/event.js b/third_party/ckeditor/_source/core/event.js index 7b2b55750b4..8c1fe96a741 100644 --- a/third_party/ckeditor/_source/core/event.js +++ b/third_party/ckeditor/_source/core/event.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_source/core/eventInfo.js b/third_party/ckeditor/_source/core/eventInfo.js index 2e38828fff7..7e39cf4c1b7 100644 --- a/third_party/ckeditor/_source/core/eventInfo.js +++ b/third_party/ckeditor/_source/core/eventInfo.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_source/core/focusmanager.js b/third_party/ckeditor/_source/core/focusmanager.js index 812bc9b5fde..902920ef2b9 100644 --- a/third_party/ckeditor/_source/core/focusmanager.js +++ b/third_party/ckeditor/_source/core/focusmanager.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_source/core/htmlparser.js b/third_party/ckeditor/_source/core/htmlparser.js index b652c6f5e37..29fee080b7b 100644 --- a/third_party/ckeditor/_source/core/htmlparser.js +++ b/third_party/ckeditor/_source/core/htmlparser.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_source/core/htmlparser/basicwriter.js b/third_party/ckeditor/_source/core/htmlparser/basicwriter.js index 6334e8fe218..269ca8df8d0 100644 --- a/third_party/ckeditor/_source/core/htmlparser/basicwriter.js +++ b/third_party/ckeditor/_source/core/htmlparser/basicwriter.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_source/core/htmlparser/cdata.js b/third_party/ckeditor/_source/core/htmlparser/cdata.js index f8eb01c80ab..b2519cf0e98 100644 --- a/third_party/ckeditor/_source/core/htmlparser/cdata.js +++ b/third_party/ckeditor/_source/core/htmlparser/cdata.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_source/core/htmlparser/comment.js b/third_party/ckeditor/_source/core/htmlparser/comment.js index 0cc5419645d..4ca896db71d 100644 --- a/third_party/ckeditor/_source/core/htmlparser/comment.js +++ b/third_party/ckeditor/_source/core/htmlparser/comment.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_source/core/htmlparser/element.js b/third_party/ckeditor/_source/core/htmlparser/element.js index 2795eb7ce35..9643e0d7ca5 100644 --- a/third_party/ckeditor/_source/core/htmlparser/element.js +++ b/third_party/ckeditor/_source/core/htmlparser/element.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_source/core/htmlparser/filter.js b/third_party/ckeditor/_source/core/htmlparser/filter.js index e4df3613dd1..afe67df6cec 100644 --- a/third_party/ckeditor/_source/core/htmlparser/filter.js +++ b/third_party/ckeditor/_source/core/htmlparser/filter.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_source/core/htmlparser/fragment.js b/third_party/ckeditor/_source/core/htmlparser/fragment.js index 2d7f8ac1a2d..a00ac2e9821 100644 --- a/third_party/ckeditor/_source/core/htmlparser/fragment.js +++ b/third_party/ckeditor/_source/core/htmlparser/fragment.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -127,7 +127,7 @@ CKEDITOR.htmlParser.fragment = function() function sendPendingBRs() { while ( pendingBRs.length ) - addElement( pendingBRs.shift(), currentNode ); + currentNode.add( pendingBRs.shift() ); } /* diff --git a/third_party/ckeditor/_source/core/htmlparser/text.js b/third_party/ckeditor/_source/core/htmlparser/text.js index 4bf5fd6471f..0866ee36fe0 100644 --- a/third_party/ckeditor/_source/core/htmlparser/text.js +++ b/third_party/ckeditor/_source/core/htmlparser/text.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_source/core/lang.js b/third_party/ckeditor/_source/core/lang.js index 55aaf5db021..46fe1292fcc 100644 --- a/third_party/ckeditor/_source/core/lang.js +++ b/third_party/ckeditor/_source/core/lang.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_source/core/loader.js b/third_party/ckeditor/_source/core/loader.js index 0ac24f5041a..5d42ebf3900 100644 --- a/third_party/ckeditor/_source/core/loader.js +++ b/third_party/ckeditor/_source/core/loader.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -105,7 +105,7 @@ if ( !CKEDITOR.loader ) return path; })(); - var timestamp = 'C9A85WF'; + var timestamp = 'D03G5XL'; var getUrl = function( resource ) { diff --git a/third_party/ckeditor/_source/core/plugindefinition.js b/third_party/ckeditor/_source/core/plugindefinition.js index f2cb536e452..e42a38e9032 100644 --- a/third_party/ckeditor/_source/core/plugindefinition.js +++ b/third_party/ckeditor/_source/core/plugindefinition.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_source/core/plugins.js b/third_party/ckeditor/_source/core/plugins.js index 0bbe53f6b7a..fda9c887982 100644 --- a/third_party/ckeditor/_source/core/plugins.js +++ b/third_party/ckeditor/_source/core/plugins.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_source/core/resourcemanager.js b/third_party/ckeditor/_source/core/resourcemanager.js index 53ffba246e4..ac82e829006 100644 --- a/third_party/ckeditor/_source/core/resourcemanager.js +++ b/third_party/ckeditor/_source/core/resourcemanager.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_source/core/scriptloader.js b/third_party/ckeditor/_source/core/scriptloader.js index 3640fcd5df4..a9e48a1c8d3 100644 --- a/third_party/ckeditor/_source/core/scriptloader.js +++ b/third_party/ckeditor/_source/core/scriptloader.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_source/core/skins.js b/third_party/ckeditor/_source/core/skins.js index f91d45c5fbd..2dcdefe36bc 100644 --- a/third_party/ckeditor/_source/core/skins.js +++ b/third_party/ckeditor/_source/core/skins.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_source/core/themes.js b/third_party/ckeditor/_source/core/themes.js index 0ac89526c8a..896fc8cbf46 100644 --- a/third_party/ckeditor/_source/core/themes.js +++ b/third_party/ckeditor/_source/core/themes.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_source/core/tools.js b/third_party/ckeditor/_source/core/tools.js index 4b2a5f77381..a529c6a8b05 100644 --- a/third_party/ckeditor/_source/core/tools.js +++ b/third_party/ckeditor/_source/core/tools.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_source/core/ui.js b/third_party/ckeditor/_source/core/ui.js index 085815c01b2..005dc1377d9 100644 --- a/third_party/ckeditor/_source/core/ui.js +++ b/third_party/ckeditor/_source/core/ui.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_source/lang/_languages.js b/third_party/ckeditor/_source/lang/_languages.js index f6fe9651d2e..d3ed0479fd8 100644 --- a/third_party/ckeditor/_source/lang/_languages.js +++ b/third_party/ckeditor/_source/lang/_languages.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ diff --git a/third_party/ckeditor/_source/lang/_translationstatus.txt b/third_party/ckeditor/_source/lang/_translationstatus.txt index af2f4b997c5..df863e541ed 100644 --- a/third_party/ckeditor/_source/lang/_translationstatus.txt +++ b/third_party/ckeditor/_source/lang/_translationstatus.txt @@ -1,65 +1,65 @@ -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. -For licensing, see LICENSE.html or http://ckeditor.com/license - -af.js Found: 550 Missing: 28 -ar.js Found: 470 Missing: 108 -bg.js Found: 396 Missing: 182 -bn.js Found: 292 Missing: 286 -bs.js Found: 175 Missing: 403 -ca.js Found: 549 Missing: 29 -cs.js Found: 578 Missing: 0 -cy.js Found: 578 Missing: 0 -da.js Found: 576 Missing: 2 -de.js Found: 577 Missing: 1 -el.js Found: 391 Missing: 187 -en-au.js Found: 347 Missing: 231 -en-ca.js Found: 345 Missing: 233 -en-gb.js Found: 517 Missing: 61 -eo.js Found: 577 Missing: 1 -es.js Found: 577 Missing: 1 -et.js Found: 577 Missing: 1 -eu.js Found: 417 Missing: 161 -fa.js Found: 577 Missing: 1 -fi.js Found: 578 Missing: 0 -fo.js Found: 576 Missing: 2 -fr-ca.js Found: 321 Missing: 257 -fr.js Found: 577 Missing: 1 -gl.js Found: 292 Missing: 286 -gu.js Found: 577 Missing: 1 -he.js Found: 577 Missing: 1 -hi.js Found: 329 Missing: 249 -hr.js Found: 577 Missing: 1 -hu.js Found: 573 Missing: 5 -id.js Found: 1 Missing: 577 -is.js Found: 326 Missing: 252 -it.js Found: 578 Missing: 0 -ja.js Found: 495 Missing: 83 -ka.js Found: 570 Missing: 8 -km.js Found: 286 Missing: 292 -ko.js Found: 304 Missing: 274 -ku.js Found: 578 Missing: 0 -lt.js Found: 577 Missing: 1 -lv.js Found: 294 Missing: 284 -mk.js Found: 0 Missing: 578 -mn.js Found: 320 Missing: 258 -ms.js Found: 276 Missing: 302 -nb.js Found: 578 Missing: 0 -nl.js Found: 575 Missing: 3 -no.js Found: 578 Missing: 0 -pl.js Found: 577 Missing: 1 -pt-br.js Found: 578 Missing: 0 -pt.js Found: 326 Missing: 252 -ro.js Found: 433 Missing: 145 -ru.js Found: 577 Missing: 1 -sk.js Found: 577 Missing: 1 -sl.js Found: 426 Missing: 152 -sr-latn.js Found: 287 Missing: 291 -sr.js Found: 286 Missing: 292 -sv.js Found: 551 Missing: 27 -th.js Found: 298 Missing: 280 -tr.js Found: 577 Missing: 1 -ug.js Found: 574 Missing: 4 -uk.js Found: 577 Missing: 1 -vi.js Found: 577 Missing: 1 -zh-cn.js Found: 577 Missing: 1 -zh.js Found: 435 Missing: 143 +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.html or http://ckeditor.com/license + +af.js Found: 551 Missing: 28 +ar.js Found: 471 Missing: 108 +bg.js Found: 397 Missing: 182 +bn.js Found: 293 Missing: 286 +bs.js Found: 176 Missing: 403 +ca.js Found: 550 Missing: 29 +cs.js Found: 579 Missing: 0 +cy.js Found: 579 Missing: 0 +da.js Found: 577 Missing: 2 +de.js Found: 578 Missing: 1 +el.js Found: 449 Missing: 130 +en-au.js Found: 348 Missing: 231 +en-ca.js Found: 346 Missing: 233 +en-gb.js Found: 518 Missing: 61 +eo.js Found: 578 Missing: 1 +es.js Found: 578 Missing: 1 +et.js Found: 577 Missing: 2 +eu.js Found: 418 Missing: 161 +fa.js Found: 577 Missing: 2 +fi.js Found: 579 Missing: 0 +fo.js Found: 577 Missing: 2 +fr-ca.js Found: 322 Missing: 257 +fr.js Found: 578 Missing: 1 +gl.js Found: 293 Missing: 286 +gu.js Found: 577 Missing: 2 +he.js Found: 578 Missing: 1 +hi.js Found: 330 Missing: 249 +hr.js Found: 578 Missing: 1 +hu.js Found: 574 Missing: 5 +id.js Found: 1 Missing: 578 +is.js Found: 327 Missing: 252 +it.js Found: 579 Missing: 0 +ja.js Found: 496 Missing: 83 +ka.js Found: 570 Missing: 9 +km.js Found: 287 Missing: 292 +ko.js Found: 305 Missing: 274 +ku.js Found: 578 Missing: 1 +lt.js Found: 577 Missing: 2 +lv.js Found: 578 Missing: 1 +mk.js Found: 0 Missing: 579 +mn.js Found: 389 Missing: 190 +ms.js Found: 277 Missing: 302 +nb.js Found: 579 Missing: 0 +nl.js Found: 576 Missing: 3 +no.js Found: 579 Missing: 0 +pl.js Found: 578 Missing: 1 +pt-br.js Found: 579 Missing: 0 +pt.js Found: 327 Missing: 252 +ro.js Found: 434 Missing: 145 +ru.js Found: 577 Missing: 2 +sk.js Found: 578 Missing: 1 +sl.js Found: 427 Missing: 152 +sr-latn.js Found: 288 Missing: 291 +sr.js Found: 287 Missing: 292 +sv.js Found: 552 Missing: 27 +th.js Found: 299 Missing: 280 +tr.js Found: 578 Missing: 1 +ug.js Found: 574 Missing: 5 +uk.js Found: 578 Missing: 1 +vi.js Found: 578 Missing: 1 +zh-cn.js Found: 579 Missing: 0 +zh.js Found: 436 Missing: 143 diff --git a/third_party/ckeditor/_source/lang/af.js b/third_party/ckeditor/_source/lang/af.js index 6a8603d5185..83012c926e9 100644 --- a/third_party/ckeditor/_source/lang/af.js +++ b/third_party/ckeditor/_source/lang/af.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -698,7 +698,7 @@ CKEDITOR.lang['af'] = ignoreAll : 'Ignoreer alles', addWord : 'Voeg woord by', emptyDic : 'Woordeboeknaam mag nie leeg wees nie.', - + noSuggestions : 'Geen voorstel', optionsTab : 'Opsies', allCaps : 'Ignoreer woorde in hoofletters', ignoreDomainNames : 'Ignoreer domeinname', diff --git a/third_party/ckeditor/_source/lang/ar.js b/third_party/ckeditor/_source/lang/ar.js index 9a63100746e..4f997ac09ca 100644 --- a/third_party/ckeditor/_source/lang/ar.js +++ b/third_party/ckeditor/_source/lang/ar.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -698,7 +698,7 @@ CKEDITOR.lang['ar'] = ignoreAll : 'تجاهل الكل', addWord : 'إضافة كلمة', emptyDic : 'اسم القاموس يجب ألا يكون فارغاً.', - + noSuggestions : 'لا توجد إقتراحات', optionsTab : 'خيارات', allCaps : 'Ignore All-Caps Words', // MISSING ignoreDomainNames : 'Ignore Domain Names', // MISSING diff --git a/third_party/ckeditor/_source/lang/bg.js b/third_party/ckeditor/_source/lang/bg.js index 4207e121068..219afd547a1 100644 --- a/third_party/ckeditor/_source/lang/bg.js +++ b/third_party/ckeditor/_source/lang/bg.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -698,7 +698,7 @@ CKEDITOR.lang['bg'] = ignoreAll : 'Ignore All', // MISSING addWord : 'Add Word', // MISSING emptyDic : 'Dictionary name should not be empty.', // MISSING - + noSuggestions : 'Няма предложения', optionsTab : 'Options', // MISSING allCaps : 'Ignore All-Caps Words', // MISSING ignoreDomainNames : 'Ignore Domain Names', // MISSING diff --git a/third_party/ckeditor/_source/lang/bn.js b/third_party/ckeditor/_source/lang/bn.js index eeec44721e9..ff257921cc1 100644 --- a/third_party/ckeditor/_source/lang/bn.js +++ b/third_party/ckeditor/_source/lang/bn.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -698,7 +698,7 @@ CKEDITOR.lang['bn'] = ignoreAll : 'Ignore All', // MISSING addWord : 'Add Word', // MISSING emptyDic : 'Dictionary name should not be empty.', // MISSING - + noSuggestions : 'কোন সাজেশন নেই', optionsTab : 'Options', // MISSING allCaps : 'Ignore All-Caps Words', // MISSING ignoreDomainNames : 'Ignore Domain Names', // MISSING diff --git a/third_party/ckeditor/_source/lang/bs.js b/third_party/ckeditor/_source/lang/bs.js index 4515746b8cd..0149a1c918e 100644 --- a/third_party/ckeditor/_source/lang/bs.js +++ b/third_party/ckeditor/_source/lang/bs.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -698,7 +698,7 @@ CKEDITOR.lang['bs'] = ignoreAll : 'Ignore All', // MISSING addWord : 'Add Word', // MISSING emptyDic : 'Dictionary name should not be empty.', // MISSING - + noSuggestions : 'No suggestions', optionsTab : 'Options', // MISSING allCaps : 'Ignore All-Caps Words', // MISSING ignoreDomainNames : 'Ignore Domain Names', // MISSING diff --git a/third_party/ckeditor/_source/lang/ca.js b/third_party/ckeditor/_source/lang/ca.js index dffba548e67..dcc51eb606f 100644 --- a/third_party/ckeditor/_source/lang/ca.js +++ b/third_party/ckeditor/_source/lang/ca.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -698,7 +698,7 @@ CKEDITOR.lang['ca'] = ignoreAll : 'Ignora\'ls tots', addWord : 'Afegeix una paraula', emptyDic : 'El nom del diccionari no hauria d\'estar buit.', - + noSuggestions : 'Cap suggeriment', optionsTab : 'Opcions', allCaps : 'Ignora paraules en majúscules', ignoreDomainNames : 'Ignora els noms de domini', diff --git a/third_party/ckeditor/_source/lang/cs.js b/third_party/ckeditor/_source/lang/cs.js index 5afd04d0b42..851c4b9d1a1 100644 --- a/third_party/ckeditor/_source/lang/cs.js +++ b/third_party/ckeditor/_source/lang/cs.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -698,7 +698,7 @@ CKEDITOR.lang['cs'] = ignoreAll : 'Přeskočit vše', addWord : 'Přidat slovo', emptyDic : 'Název slovníku nesmí být prázdný.', - + noSuggestions : 'Zádné návrhy', optionsTab : 'Nastavení', allCaps : 'Ignorovat slova tvořená velkými písmeny', ignoreDomainNames : 'Ignorovat doménová jména', diff --git a/third_party/ckeditor/_source/lang/cy.js b/third_party/ckeditor/_source/lang/cy.js index 6d1602ae02e..7319ffc6d0a 100644 --- a/third_party/ckeditor/_source/lang/cy.js +++ b/third_party/ckeditor/_source/lang/cy.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -698,7 +698,7 @@ CKEDITOR.lang['cy'] = ignoreAll : 'Anwybyddu pob', addWord : 'Ychwanegu Gair', emptyDic : 'Ni ddylai enw\'r geiriadur fod yn wag.', - + noSuggestions : 'Dim awgrymiadau', optionsTab : 'Opsiynau', allCaps : 'Anwybyddu Geiriau Nodau Uwch i Gyd', ignoreDomainNames : 'Anwybyddu Enwau Parth', diff --git a/third_party/ckeditor/_source/lang/da.js b/third_party/ckeditor/_source/lang/da.js index 6cffc05f347..20c8f193f20 100644 --- a/third_party/ckeditor/_source/lang/da.js +++ b/third_party/ckeditor/_source/lang/da.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -698,7 +698,7 @@ CKEDITOR.lang['da'] = ignoreAll : 'Ignorér alle', addWord : 'Tilføj ord', emptyDic : 'Ordbogsnavn må ikke være tom.', - + noSuggestions : 'Ingen forslag', optionsTab : 'Indstillinger', allCaps : 'Ignorer alle store bogstaver', ignoreDomainNames : 'Ignorér domænenavne', diff --git a/third_party/ckeditor/_source/lang/de.js b/third_party/ckeditor/_source/lang/de.js index c6e3f8bec92..478aa7953cf 100644 --- a/third_party/ckeditor/_source/lang/de.js +++ b/third_party/ckeditor/_source/lang/de.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -698,7 +698,7 @@ CKEDITOR.lang['de'] = ignoreAll : 'Alle ignorieren', addWord : 'Wort hinzufügen', emptyDic : 'Wörterbuchname sollte leer sein.', - + noSuggestions : 'keine Vorschläge', optionsTab : 'Optionen', allCaps : 'Groß geschriebenen Wörter ignorieren', ignoreDomainNames : 'Domain-Namen ignorieren', diff --git a/third_party/ckeditor/_source/lang/el.js b/third_party/ckeditor/_source/lang/el.js index 94912159d43..ed52aec2762 100644 --- a/third_party/ckeditor/_source/lang/el.js +++ b/third_party/ckeditor/_source/lang/el.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -450,25 +450,25 @@ CKEDITOR.lang['el'] = scaleNoBorder : 'Χωρίς Περίγραμμα', scaleFit : 'Ακριβές Μέγεθος', access : 'Script Access', // MISSING - accessAlways : 'Always', // MISSING + accessAlways : 'Πάντα', accessSameDomain: 'Same domain', // MISSING - accessNever : 'Never', // MISSING + accessNever : 'Ποτέ', alignAbsBottom : 'Απόλυτα Κάτω', alignAbsMiddle : 'Απόλυτα στη Μέση', alignBaseline : 'Γραμμή Βάσης', alignTextTop : 'Κορυφή Κειμένου', - quality : 'Quality', // MISSING - qualityBest : 'Best', // MISSING - qualityHigh : 'High', // MISSING - qualityAutoHigh : 'Auto High', // MISSING - qualityMedium : 'Medium', // MISSING - qualityAutoLow : 'Auto Low', // MISSING - qualityLow : 'Low', // MISSING - windowModeWindow: 'Window', // MISSING - windowModeOpaque: 'Opaque', // MISSING - windowModeTransparent : 'Transparent', // MISSING + quality : 'Ποιότητα', + qualityBest : 'Καλύτερη', + qualityHigh : 'Υψηλή', + qualityAutoHigh : 'Αυτόματη Υψηλή', + qualityMedium : 'Μεσαία', + qualityAutoLow : 'Αυτόματη Χαμηλή', + qualityLow : 'Χαμηλή', + windowModeWindow: 'Παράθυρο', + windowModeOpaque: 'Συμπαγές', + windowModeTransparent : 'Διάφανο', windowMode : 'Window mode', // MISSING - flashvars : 'Variables for Flash', // MISSING + flashvars : 'Μεταβλητές για Flash', bgcolor : 'Χρώμα Υποβάθρου', hSpace : 'Οριζόντιο Διάστημα', vSpace : 'Κάθετο Διάστημα', @@ -481,8 +481,8 @@ CKEDITOR.lang['el'] = spellCheck : { toolbar : 'Ορθογραφικός Έλεγχος', - title : 'Spell Check', // MISSING - notAvailable : 'Sorry, but service is unavailable now.', // MISSING + title : 'Ορθογραφικός Έλεγχος', + notAvailable : 'Η υπηρεσία δεν είναι διαθέσιμη αυτήν την στιγμή.', errorLoading : 'Error loading application service host: %s.', // MISSING notInDic : 'Δεν υπάρχει στο λεξικό', changeTo : 'Αλλαγή σε', @@ -504,13 +504,13 @@ CKEDITOR.lang['el'] = { toolbar : 'Smiley', title : 'Επιλέξτε ένα Smiley', - options : 'Smiley Options' // MISSING + options : 'Επιλογές Smiley' }, elementsPath : { eleLabel : 'Elements path', // MISSING - eleTitle : '%1 element' // MISSING + eleTitle : '%1 στοιχείο' }, numberedlist : 'Εισαγωγή/Απομάκρυνση Αριθμημένης Λίστας', @@ -612,21 +612,21 @@ CKEDITOR.lang['el'] = title : 'IFrame Properties', // MISSING toolbar : 'IFrame', // MISSING noUrl : 'Please type the iframe URL', // MISSING - scrolling : 'Enable scrollbars', // MISSING + scrolling : 'Ενεργοποίηση μπαρών κύλισης', border : 'Show frame border' // MISSING }, font : { label : 'Γραμματοσειρά', - voiceLabel : 'Font', // MISSING + voiceLabel : 'Γραμματοσειρά', panelTitle : 'Όνομα Γραμματοσειράς' }, fontSize : { label : 'Μέγεθος', - voiceLabel : 'Font Size', // MISSING + voiceLabel : 'Μέγεθος γραμματοσειράς', panelTitle : 'Μέγεθος Γραμματοσειράς' }, @@ -634,14 +634,14 @@ CKEDITOR.lang['el'] = { textColorTitle : 'Χρώμα Κειμένου', bgColorTitle : 'Χρώμα Φόντου', - panelTitle : 'Colors', // MISSING + panelTitle : 'Χρώματα', auto : 'Αυτόματα', more : 'Περισσότερα χρώματα...' }, colors : { - '000' : 'Black', // MISSING + '000' : 'Μαύρο', '800000' : 'Maroon', // MISSING '8B4513' : 'Saddle Brown', // MISSING '2F4F4F' : 'Dark Slate Gray', // MISSING @@ -655,8 +655,8 @@ CKEDITOR.lang['el'] = '006400' : 'Dark Green', // MISSING '40E0D0' : 'Turquoise', // MISSING '0000CD' : 'Medium Blue', // MISSING - '800080' : 'Purple', // MISSING - '808080' : 'Gray', // MISSING + '800080' : 'Μώβ', + '808080' : 'Γκρί', 'F00' : 'Red', // MISSING 'FF8C00' : 'Dark Orange', // MISSING 'FFD700' : 'Gold', // MISSING @@ -691,37 +691,37 @@ CKEDITOR.lang['el'] = disable : 'Disable SCAYT', // MISSING about : 'About SCAYT', // MISSING toggle : 'Toggle SCAYT', // MISSING - options : 'Options', // MISSING - langs : 'Languages', // MISSING - moreSuggestions : 'More suggestions', // MISSING - ignore : 'Ignore', // MISSING - ignoreAll : 'Ignore All', // MISSING - addWord : 'Add Word', // MISSING - emptyDic : 'Dictionary name should not be empty.', // MISSING - - optionsTab : 'Options', // MISSING - allCaps : 'Ignore All-Caps Words', // MISSING + options : 'Επιλογές', + langs : 'Γλώσσες', + moreSuggestions : 'Περισσότερες προτάσεις', + ignore : 'Αγνόησε το', + ignoreAll : 'Να αγνοηθούν όλα', + addWord : 'Προσθήκη στο λεξικό', + emptyDic : 'Το όνομα του λεξικού δεν πρέπει να είναι κενό.', + noSuggestions : 'No suggestions', // MISSING + optionsTab : 'Επιλογές', + allCaps : 'Να αγνοούνται όλες οι λέξεις σε κεφαλαία', ignoreDomainNames : 'Ignore Domain Names', // MISSING mixedCase : 'Ignore Words with Mixed Case', // MISSING mixedWithDigits : 'Ignore Words with Numbers', // MISSING - languagesTab : 'Languages', // MISSING + languagesTab : 'Γλώσσες', - dictionariesTab : 'Dictionaries', // MISSING - dic_field_name : 'Dictionary name', // MISSING - dic_create : 'Create', // MISSING - dic_restore : 'Restore', // MISSING - dic_delete : 'Delete', // MISSING - dic_rename : 'Rename', // MISSING + dictionariesTab : 'Λεξικά', + dic_field_name : 'Όνομα λεξικού', + dic_create : 'Δημιουργία', + dic_restore : 'Ανάκτηση', + dic_delete : 'Διαγραφή', + dic_rename : 'Μετονομασία', 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 - aboutTab : 'About' // MISSING + aboutTab : 'Περί' }, about : { - title : 'About CKEditor', // MISSING - dlgTitle : 'About CKEditor', // MISSING + title : 'Περί του CKEditor', + dlgTitle : 'Περί του CKEditor', help : 'Check $1 for help.', // MISSING userGuide : 'CKEditor User\'s Guide', // MISSING moreInfo : 'For licensing information please visit our web site:', // MISSING @@ -737,18 +737,18 @@ CKEDITOR.lang['el'] = flash : 'Flash Animation', // MISSING iframe : 'IFrame', // MISSING hiddenfield : 'Hidden Field', // MISSING - unknown : 'Unknown Object' // MISSING + unknown : 'Άγνωστο Αντικείμενο' }, resize : 'Σύρσιμο για αλλαγή μεγέθους', colordialog : { - title : 'Select color', // MISSING - options : 'Color Options', // MISSING + title : 'Επιλογή Χρώματος', + options : 'Επιλογές Χρωμάτων', highlight : 'Highlight', // MISSING - selected : 'Selected Color', // MISSING - clear : 'Clear' // MISSING + selected : 'Επιλεγμένο Χρώμα', + clear : 'Καθαρισμός' }, toolbarCollapse : 'Σύμπτηξη Εργαλειοθήκης', @@ -756,17 +756,17 @@ CKEDITOR.lang['el'] = toolbarGroups : { - document : 'Document', // MISSING + document : 'Έγγραφο', clipboard : 'Clipboard/Undo', // MISSING - editing : 'Editing', // MISSING - forms : 'Forms', // MISSING - basicstyles : 'Basic Styles', // MISSING - paragraph : 'Paragraph', // MISSING - links : 'Links', // MISSING - insert : 'Insert', // MISSING - styles : 'Styles', // MISSING - colors : 'Colors', // MISSING - tools : 'Tools' // MISSING + editing : 'Σε επεξεργασία', + forms : 'Φόρμες', + basicstyles : 'Βασικά στυλ', + paragraph : 'Παράγραφος', + links : 'Συνδέσμοι', + insert : 'Εισαγωγή', + styles : 'Στυλ', + colors : 'Χρώματα', + tools : 'Εργαλεία' }, bidi : diff --git a/third_party/ckeditor/_source/lang/en-au.js b/third_party/ckeditor/_source/lang/en-au.js index a8c3fd4043f..ac8874f39ed 100644 --- a/third_party/ckeditor/_source/lang/en-au.js +++ b/third_party/ckeditor/_source/lang/en-au.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -698,7 +698,7 @@ CKEDITOR.lang['en-au'] = ignoreAll : 'Ignore All', // MISSING addWord : 'Add Word', // MISSING emptyDic : 'Dictionary name should not be empty.', // MISSING - + noSuggestions : 'No suggestions', optionsTab : 'Options', // MISSING allCaps : 'Ignore All-Caps Words', // MISSING ignoreDomainNames : 'Ignore Domain Names', // MISSING diff --git a/third_party/ckeditor/_source/lang/en-ca.js b/third_party/ckeditor/_source/lang/en-ca.js index 73f23ac9717..601d288c0cd 100644 --- a/third_party/ckeditor/_source/lang/en-ca.js +++ b/third_party/ckeditor/_source/lang/en-ca.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -698,7 +698,7 @@ CKEDITOR.lang['en-ca'] = ignoreAll : 'Ignore All', // MISSING addWord : 'Add Word', // MISSING emptyDic : 'Dictionary name should not be empty.', // MISSING - + noSuggestions : 'No suggestions', optionsTab : 'Options', // MISSING allCaps : 'Ignore All-Caps Words', // MISSING ignoreDomainNames : 'Ignore Domain Names', // MISSING diff --git a/third_party/ckeditor/_source/lang/en-gb.js b/third_party/ckeditor/_source/lang/en-gb.js index 4dce7a38c09..79243e52dfa 100644 --- a/third_party/ckeditor/_source/lang/en-gb.js +++ b/third_party/ckeditor/_source/lang/en-gb.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -698,7 +698,7 @@ CKEDITOR.lang['en-gb'] = ignoreAll : 'Ignore All', addWord : 'Add Word', emptyDic : 'Dictionary name should not be empty.', - + noSuggestions : 'No suggestions', optionsTab : 'Options', allCaps : 'Ignore All-Caps Words', ignoreDomainNames : 'Ignore Domain Names', diff --git a/third_party/ckeditor/_source/lang/en.js b/third_party/ckeditor/_source/lang/en.js index d24c278125d..e685e096759 100644 --- a/third_party/ckeditor/_source/lang/en.js +++ b/third_party/ckeditor/_source/lang/en.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -698,7 +698,7 @@ CKEDITOR.lang['en'] = ignoreAll : 'Ignore All', addWord : 'Add Word', emptyDic : 'Dictionary name should not be empty.', - + noSuggestions : 'No suggestions', optionsTab : 'Options', allCaps : 'Ignore All-Caps Words', ignoreDomainNames : 'Ignore Domain Names', diff --git a/third_party/ckeditor/_source/lang/eo.js b/third_party/ckeditor/_source/lang/eo.js index afd232e88ec..4f820e14873 100644 --- a/third_party/ckeditor/_source/lang/eo.js +++ b/third_party/ckeditor/_source/lang/eo.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -120,7 +120,7 @@ CKEDITOR.lang['eo'] = alignTop : 'Supre', alignMiddle : 'Centre', alignBottom : 'Malsupre', - invalidValue : 'Invalid value.', // MISSING + invalidValue : 'Nevalida Valoro', invalidHeight : 'Alto devas esti nombro.', invalidWidth : 'Larĝo devas esti nombro.', invalidCssLength : 'La valoro indikita por la "%1" kampo devas esti pozitiva nombro kun aŭ sen valida CSSmezurunuo (px, %, in, cm, mm, em, ex, pt, or pc).', @@ -698,7 +698,7 @@ CKEDITOR.lang['eo'] = ignoreAll : 'Ignori ĉion', addWord : 'Almeti la vorton', emptyDic : 'La vortaronomo ne devus esti malplena.', - + noSuggestions : 'No suggestions', // MISSING optionsTab : 'Opcioj', allCaps : 'Ignori la vortojn skribitajn nur per ĉefliteroj', ignoreDomainNames : 'Ignori domajnajn nomojn', diff --git a/third_party/ckeditor/_source/lang/es.js b/third_party/ckeditor/_source/lang/es.js index 68e144a85db..53673981673 100644 --- a/third_party/ckeditor/_source/lang/es.js +++ b/third_party/ckeditor/_source/lang/es.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -698,7 +698,7 @@ CKEDITOR.lang['es'] = ignoreAll : 'Ignorar Todas', addWord : 'Añadir palabra', emptyDic : 'El nombre del diccionario no puede estar en blanco.', - + noSuggestions : 'No hay sugerencias', optionsTab : 'Opciones', allCaps : 'Omitir palabras en MAYÚSCULAS', ignoreDomainNames : 'Omitir nombres de dominio', diff --git a/third_party/ckeditor/_source/lang/et.js b/third_party/ckeditor/_source/lang/et.js index 3428df4d2b5..8dd646cc6ac 100644 --- a/third_party/ckeditor/_source/lang/et.js +++ b/third_party/ckeditor/_source/lang/et.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -698,7 +698,7 @@ CKEDITOR.lang['et'] = ignoreAll : 'Eira kõiki', addWord : 'Lisa sõna', emptyDic : 'Sõnaraamatu nimi ei tohi olla tühi.', - + noSuggestions : 'No suggestions', // MISSING optionsTab : 'Valikud', allCaps : 'Läbivate suurtähtedega sõnade eiramine', ignoreDomainNames : 'Domeeninimede eiramine', diff --git a/third_party/ckeditor/_source/lang/eu.js b/third_party/ckeditor/_source/lang/eu.js index cc1973c6a0f..f0ef8eb5046 100644 --- a/third_party/ckeditor/_source/lang/eu.js +++ b/third_party/ckeditor/_source/lang/eu.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -698,7 +698,7 @@ CKEDITOR.lang['eu'] = ignoreAll : 'Denak baztertu', addWord : 'Hitza Gehitu', emptyDic : 'Hiztegiaren izena ezin da hutsik egon.', - + noSuggestions : 'Iradokizunik ez', optionsTab : 'Aukerak', allCaps : 'Ignore All-Caps Words', // MISSING ignoreDomainNames : 'Ignore Domain Names', // MISSING diff --git a/third_party/ckeditor/_source/lang/fa.js b/third_party/ckeditor/_source/lang/fa.js index f184f0bed5c..317e3522a0a 100644 --- a/third_party/ckeditor/_source/lang/fa.js +++ b/third_party/ckeditor/_source/lang/fa.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -698,7 +698,7 @@ CKEDITOR.lang['fa'] = ignoreAll : 'عبور کردن از همه', addWord : 'افزودن Word', emptyDic : 'نام دیکشنری نباید خالی باشد.', - + noSuggestions : 'No suggestions', // MISSING optionsTab : 'گزینهها', allCaps : 'نادیده گرفتن همه کلاه-واژهها', ignoreDomainNames : 'عبور از نامهای دامنه', diff --git a/third_party/ckeditor/_source/lang/fi.js b/third_party/ckeditor/_source/lang/fi.js index 48a6b7b376d..11835a390a5 100644 --- a/third_party/ckeditor/_source/lang/fi.js +++ b/third_party/ckeditor/_source/lang/fi.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -698,7 +698,7 @@ CKEDITOR.lang['fi'] = ignoreAll : 'Ohita kaikki', addWord : 'Lisää sana', emptyDic : 'Sanakirjan nimi on annettava.', - + noSuggestions : 'Ei ehdotuksia', optionsTab : 'Asetukset', allCaps : 'Ohita sanat, jotka on kirjoitettu kokonaan isoilla kirjaimilla', ignoreDomainNames : 'Ohita verkkotunnukset', diff --git a/third_party/ckeditor/_source/lang/fo.js b/third_party/ckeditor/_source/lang/fo.js index 61f26dc857b..96acd3b8c89 100644 --- a/third_party/ckeditor/_source/lang/fo.js +++ b/third_party/ckeditor/_source/lang/fo.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -698,7 +698,7 @@ CKEDITOR.lang['fo'] = ignoreAll : 'Ignorera alt', addWord : 'Legg orð afturat', emptyDic : 'Heiti á orðabók eigur ikki at vera tómt.', - + noSuggestions : 'Einki uppskot', optionsTab : 'Uppseting', allCaps : 'Loyp orð við bert stórum stavum um', ignoreDomainNames : 'loyp økisnøvn um', diff --git a/third_party/ckeditor/_source/lang/fr-ca.js b/third_party/ckeditor/_source/lang/fr-ca.js index 27c6a7501b8..cb091e4f899 100644 --- a/third_party/ckeditor/_source/lang/fr-ca.js +++ b/third_party/ckeditor/_source/lang/fr-ca.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -698,7 +698,7 @@ CKEDITOR.lang['fr-ca'] = ignoreAll : 'Ignore All', // MISSING addWord : 'Add Word', // MISSING emptyDic : 'Dictionary name should not be empty.', // MISSING - + noSuggestions : 'Pas de suggestion', optionsTab : 'Options', // MISSING allCaps : 'Ignore All-Caps Words', // MISSING ignoreDomainNames : 'Ignore Domain Names', // MISSING diff --git a/third_party/ckeditor/_source/lang/fr.js b/third_party/ckeditor/_source/lang/fr.js index beb3befa3df..3a38abe0ff7 100644 --- a/third_party/ckeditor/_source/lang/fr.js +++ b/third_party/ckeditor/_source/lang/fr.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -698,7 +698,7 @@ CKEDITOR.lang['fr'] = ignoreAll : 'Ignorer Tout', addWord : 'Ajouter le mot', emptyDic : 'Le nom du dictionnaire ne devrait pas être vide.', - + noSuggestions : 'Aucune suggestion', optionsTab : 'Options', allCaps : 'Ignorer les mots entièrement en majuscules', ignoreDomainNames : 'Ignorer les noms de domaines', diff --git a/third_party/ckeditor/_source/lang/gl.js b/third_party/ckeditor/_source/lang/gl.js index 7731540f48e..272679b5705 100644 --- a/third_party/ckeditor/_source/lang/gl.js +++ b/third_party/ckeditor/_source/lang/gl.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -698,7 +698,7 @@ CKEDITOR.lang['gl'] = ignoreAll : 'Ignore All', // MISSING addWord : 'Add Word', // MISSING emptyDic : 'Dictionary name should not be empty.', // MISSING - + noSuggestions : 'Sen candidatos', optionsTab : 'Options', // MISSING allCaps : 'Ignore All-Caps Words', // MISSING ignoreDomainNames : 'Ignore Domain Names', // MISSING diff --git a/third_party/ckeditor/_source/lang/gu.js b/third_party/ckeditor/_source/lang/gu.js index 889cdf77067..4a2f471af0b 100644 --- a/third_party/ckeditor/_source/lang/gu.js +++ b/third_party/ckeditor/_source/lang/gu.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -698,7 +698,7 @@ CKEDITOR.lang['gu'] = ignoreAll : 'બધા ઇગ્નોર ', addWord : 'શબ્દ ઉમેરવો', emptyDic : 'ડિક્સનરીનું નામ ખાલી ના હોય.', - + noSuggestions : 'No suggestions', // MISSING optionsTab : 'વિકલ્પો', allCaps : 'ઓલ-કેપ્સ વર્ડ છોડી દો.', ignoreDomainNames : 'ડોમેન નામ છોડી દો.', diff --git a/third_party/ckeditor/_source/lang/he.js b/third_party/ckeditor/_source/lang/he.js index 731e16a6a40..1da1d86f7a3 100644 --- a/third_party/ckeditor/_source/lang/he.js +++ b/third_party/ckeditor/_source/lang/he.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -698,7 +698,7 @@ CKEDITOR.lang['he'] = ignoreAll : 'התעלמות מהכל', addWord : 'הוספת מילה', emptyDic : 'יש לבחור מילון.', - + noSuggestions : 'אין הצעות', optionsTab : 'אפשרויות', allCaps : 'התעלם ממילים שכל אותיותיהן גדולות', ignoreDomainNames : 'התעלם משמות מתחם', diff --git a/third_party/ckeditor/_source/lang/hi.js b/third_party/ckeditor/_source/lang/hi.js index d5a623f22d7..49936a657f3 100644 --- a/third_party/ckeditor/_source/lang/hi.js +++ b/third_party/ckeditor/_source/lang/hi.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -698,7 +698,7 @@ CKEDITOR.lang['hi'] = ignoreAll : 'Ignore All', // MISSING addWord : 'Add Word', // MISSING emptyDic : 'Dictionary name should not be empty.', // MISSING - + noSuggestions : 'कोई सुझाव नहीं', optionsTab : 'Options', // MISSING allCaps : 'Ignore All-Caps Words', // MISSING ignoreDomainNames : 'Ignore Domain Names', // MISSING diff --git a/third_party/ckeditor/_source/lang/hr.js b/third_party/ckeditor/_source/lang/hr.js index 27d87449d4f..912e2427d9f 100644 --- a/third_party/ckeditor/_source/lang/hr.js +++ b/third_party/ckeditor/_source/lang/hr.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -698,7 +698,7 @@ CKEDITOR.lang['hr'] = ignoreAll : 'Zanemari sve', addWord : 'Dodaj riječ', emptyDic : 'Naziv rječnika ne smije biti prazno.', - + noSuggestions : 'Nema preporuke', optionsTab : 'Opcije', allCaps : 'Ignoriraj riječi s velikim slovima', ignoreDomainNames : 'Ignoriraj nazive domena', diff --git a/third_party/ckeditor/_source/lang/hu.js b/third_party/ckeditor/_source/lang/hu.js index fe8cc90a7fc..c8570d02410 100644 --- a/third_party/ckeditor/_source/lang/hu.js +++ b/third_party/ckeditor/_source/lang/hu.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -698,7 +698,7 @@ CKEDITOR.lang['hu'] = ignoreAll : 'Összes kihagyása', addWord : 'Szó hozzáadása', emptyDic : 'A szótár nevét meg kell adni.', - + noSuggestions : 'Nincs javaslat', optionsTab : 'Beállítások', allCaps : 'Nagybetűs szavak kihagyása', ignoreDomainNames : 'Domain nevek kihagyása', diff --git a/third_party/ckeditor/_source/lang/id.js b/third_party/ckeditor/_source/lang/id.js index dbd540b3af1..5d8662d9274 100644 --- a/third_party/ckeditor/_source/lang/id.js +++ b/third_party/ckeditor/_source/lang/id.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -697,7 +697,7 @@ CKEDITOR.lang['id'] = ignoreAll : 'Ignore All', // MISSING addWord : 'Add Word', // MISSING emptyDic : 'Dictionary name should not be empty.', // MISSING - + noSuggestions : 'No suggestions', // MISSING optionsTab : 'Options', // MISSING allCaps : 'Ignore All-Caps Words', // MISSING ignoreDomainNames : 'Ignore Domain Names', // MISSING diff --git a/third_party/ckeditor/_source/lang/is.js b/third_party/ckeditor/_source/lang/is.js index daa21c6fda2..9bfc8b16a57 100644 --- a/third_party/ckeditor/_source/lang/is.js +++ b/third_party/ckeditor/_source/lang/is.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -698,7 +698,7 @@ CKEDITOR.lang['is'] = ignoreAll : 'Ignore All', // MISSING addWord : 'Add Word', // MISSING emptyDic : 'Dictionary name should not be empty.', // MISSING - + noSuggestions : 'engar tillögur', optionsTab : 'Options', // MISSING allCaps : 'Ignore All-Caps Words', // MISSING ignoreDomainNames : 'Ignore Domain Names', // MISSING diff --git a/third_party/ckeditor/_source/lang/it.js b/third_party/ckeditor/_source/lang/it.js index 42f064ff25a..454a442d6ec 100644 --- a/third_party/ckeditor/_source/lang/it.js +++ b/third_party/ckeditor/_source/lang/it.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -698,7 +698,7 @@ CKEDITOR.lang['it'] = ignoreAll : 'Ignora tutti', addWord : 'Aggiungi Parola', emptyDic : 'Il nome del dizionario non può essere vuoto.', - + noSuggestions : 'Nessun suggerimento', optionsTab : 'Opzioni', allCaps : 'Ignora Parole in maiuscolo', ignoreDomainNames : 'Ignora nomi di dominio', diff --git a/third_party/ckeditor/_source/lang/ja.js b/third_party/ckeditor/_source/lang/ja.js index 059411ba2e9..8fc58e520ef 100644 --- a/third_party/ckeditor/_source/lang/ja.js +++ b/third_party/ckeditor/_source/lang/ja.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -698,7 +698,7 @@ CKEDITOR.lang['ja'] = ignoreAll : 'すべて無視', addWord : '語句追加', emptyDic : '辞書名は必ず入力してください', - + noSuggestions : '該当なし', optionsTab : 'オプション', allCaps : '全て大文字の単語を無視', ignoreDomainNames : 'ドメイン名を無視', diff --git a/third_party/ckeditor/_source/lang/ka.js b/third_party/ckeditor/_source/lang/ka.js index 8f11b1f82ea..b9ec3d67bce 100644 --- a/third_party/ckeditor/_source/lang/ka.js +++ b/third_party/ckeditor/_source/lang/ka.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -698,7 +698,7 @@ CKEDITOR.lang['ka'] = ignoreAll : 'ყველას უგულებელყოფა', addWord : 'სიტყვის დამატება', emptyDic : 'ლექსიკონის სიტყვა არ უნდა იყოს ცარიელი.', - + noSuggestions : 'No suggestions', // MISSING optionsTab : 'პარამეტრები', allCaps : 'დიდი ასოებით დაწერილი სიტყვების უგულებელყოფა', ignoreDomainNames : 'დომენური სახელების უგულებელყოფა', diff --git a/third_party/ckeditor/_source/lang/km.js b/third_party/ckeditor/_source/lang/km.js index 3e6eb6d968e..cd2969d17e7 100644 --- a/third_party/ckeditor/_source/lang/km.js +++ b/third_party/ckeditor/_source/lang/km.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -698,7 +698,7 @@ CKEDITOR.lang['km'] = ignoreAll : 'Ignore All', // MISSING addWord : 'Add Word', // MISSING emptyDic : 'Dictionary name should not be empty.', // MISSING - + noSuggestions : ' គ្មានសំណើរ ', optionsTab : 'Options', // MISSING allCaps : 'Ignore All-Caps Words', // MISSING ignoreDomainNames : 'Ignore Domain Names', // MISSING diff --git a/third_party/ckeditor/_source/lang/ko.js b/third_party/ckeditor/_source/lang/ko.js index b44c1e827ac..19d5e1f4012 100644 --- a/third_party/ckeditor/_source/lang/ko.js +++ b/third_party/ckeditor/_source/lang/ko.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -698,7 +698,7 @@ CKEDITOR.lang['ko'] = ignoreAll : 'Ignore All', // MISSING addWord : 'Add Word', // MISSING emptyDic : 'Dictionary name should not be empty.', // MISSING - + noSuggestions : '추천단어 없음', optionsTab : 'Options', // MISSING allCaps : 'Ignore All-Caps Words', // MISSING ignoreDomainNames : 'Ignore Domain Names', // MISSING diff --git a/third_party/ckeditor/_source/lang/ku.js b/third_party/ckeditor/_source/lang/ku.js index e1672f76db1..99b5a2ff45b 100644 --- a/third_party/ckeditor/_source/lang/ku.js +++ b/third_party/ckeditor/_source/lang/ku.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -697,7 +697,7 @@ CKEDITOR.lang['ku'] = ignoreAll : 'پشتگوێخستنی هه‌مووی', addWord : 'زیادکردنی ووشه', emptyDic : 'ناوی فه‌رهه‌نگ نابێت خاڵی بێت.', - + noSuggestions : 'No suggestions', // MISSING optionsTab : 'هه‌ڵبژارده', allCaps : 'پشتگوێخستنی وشانه‌ی پێکهاتووه له‌پیتی گه‌وره‌', ignoreDomainNames : 'پشتگوێخستنی دۆمه‌ین', diff --git a/third_party/ckeditor/_source/lang/lt.js b/third_party/ckeditor/_source/lang/lt.js index c6307a390ae..da57eb63464 100644 --- a/third_party/ckeditor/_source/lang/lt.js +++ b/third_party/ckeditor/_source/lang/lt.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -698,7 +698,7 @@ CKEDITOR.lang['lt'] = ignoreAll : 'Ignoruoti viską', addWord : 'Pridėti žodį', emptyDic : 'Žodyno vardas neturėtų būti tuščias.', - + noSuggestions : 'No suggestions', // MISSING optionsTab : 'Parametrai', allCaps : 'Ignoruoti visas didžiąsias raides', ignoreDomainNames : 'Ignoruoti domenų vardus', diff --git a/third_party/ckeditor/_source/lang/lv.js b/third_party/ckeditor/_source/lang/lv.js index 4fcbdc3fe91..ca6d4ec3baf 100644 --- a/third_party/ckeditor/_source/lang/lv.js +++ b/third_party/ckeditor/_source/lang/lv.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -31,33 +31,33 @@ CKEDITOR.lang['lv'] = * Screenreader titles. Please note that screenreaders are not always capable * of reading non-English words. So be careful while translating it. */ - editorTitle : 'Rich text editor, %1', // MISSING - editorHelp : 'Press ALT 0 for help', // MISSING + editorTitle : 'Bagātinātā teksta redaktors, %1', + editorHelp : 'Palīdzībai, nospiediet ALT 0 ', // ARIA descriptions. - toolbars : 'Editor toolbars', // MISSING - editor : 'Rich Text Editor', // MISSING + toolbars : 'Redaktora rīkjoslas', + editor : 'Bagātinātā teksta redaktors', // Toolbar buttons without dialogs. source : 'HTML kods', newPage : 'Jauna lapa', save : 'Saglabāt', - preview : 'Pārskatīt', + preview : 'Priekšskatīt', cut : 'Izgriezt', copy : 'Kopēt', - paste : 'Ievietot', + paste : 'Ielīmēt', print : 'Drukāt', - underline : 'Apakšsvītra', - bold : 'Treknu šriftu', - italic : 'Slīprakstā', + underline : 'Pasvītrots', + bold : 'Treknināts', + italic : 'Kursīvs', selectAll : 'Iezīmēt visu', removeFormat : 'Noņemt stilus', strike : 'Pārsvītrots', - subscript : 'Zemrakstā', + subscript : 'Apakšrakstā', superscript : 'Augšrakstā', horizontalrule : 'Ievietot horizontālu Atdalītājsvītru', - pagebreak : 'Ievietot lapas pārtraukumu', - pagebreakAlt : 'Page Break', // MISSING + pagebreak : 'Ievietot lapas pārtraukumu drukai', + pagebreakAlt : 'Lapas pārnesums', unlink : 'Noņemt hipersaiti', undo : 'Atcelt', redo : 'Atkārtot', @@ -73,11 +73,11 @@ CKEDITOR.lang['lv'] = image : 'Attēls', flash : 'Flash', form : 'Forma', - checkbox : 'Atzīmēšanas kastīte', - radio : 'Izvēles poga', + checkbox : 'Izvēles rūtiņa', + radio : 'Radio poga', textField : 'Teksta rinda', textarea : 'Teksta laukums', - hiddenField : 'Paslēpta teksta rinda', + hiddenField : 'Paslēpts lauks', button : 'Poga', select : 'Iezīmēšanas lauks', imageButton : 'Attēlpoga', @@ -92,49 +92,49 @@ CKEDITOR.lang['lv'] = cssClass : 'Stilu saraksta klases', advisoryTitle : 'Konsultatīvs virsraksts', cssStyle : 'Stils', - ok : 'Darīts!', + ok : 'Apstiprināt', cancel : 'Atcelt', - close : 'Close', // MISSING - preview : 'Preview', // MISSING - generalTab : 'General', // MISSING + close : 'Aizvērt', + preview : 'Priekšskatījums', + generalTab : 'Vispārīgi', advancedTab : 'Izvērstais', - validateNumberFailed : 'This value is not a number.', // MISSING - confirmNewPage : 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING - confirmCancel : 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING - options : 'Options', // MISSING - target : 'Target', // MISSING - targetNew : 'New Window (_blank)', // MISSING - targetTop : 'Topmost Window (_top)', // MISSING - targetSelf : 'Same Window (_self)', // MISSING - targetParent : 'Parent Window (_parent)', // MISSING - langDirLTR : 'Left to Right (LTR)', // MISSING - langDirRTL : 'Right to Left (RTL)', // MISSING - styles : 'Style', // MISSING - cssClasses : 'Stylesheet Classes', // MISSING + validateNumberFailed : 'Šī vērtība nav skaitlis', + confirmNewPage : 'Jebkuras nesaglabātās izmaiņas tiks zaudētas. Vai tiešām vēlaties atvērt jaunu lapu?', + confirmCancel : 'Daži no uzstādījumiem ir mainīti. Vai tiešām vēlaties aizvērt šo dialogu?', + options : 'Uzstādījumi', + target : 'Mērķis', + targetNew : 'Jauns logs (_blank)', + targetTop : 'Virsējais logs (_top)', + targetSelf : 'Tas pats logs (_self)', + targetParent : 'Avota logs (_parent)', + langDirLTR : 'Kreisais uz Labo (LTR)', + langDirRTL : 'Labais uz Kreiso (RTL)', + styles : 'Stils', + cssClasses : 'Stilu klases', width : 'Platums', height : 'Augstums', - align : 'Nolīdzināt', + align : 'Līdzinājums', alignLeft : 'Pa kreisi', alignRight : 'Pa labi', alignCenter : 'Centrēti', alignTop : 'Augšā', - alignMiddle : 'Vertikāli centrēts', + alignMiddle : 'Pa vidu', alignBottom : 'Apakšā', - invalidValue : 'Invalid value.', // MISSING - invalidHeight : 'Height must be a number.', // MISSING - invalidWidth : 'Width must be a number.', // MISSING - 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 - invalidHtmlLength : 'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).', // MISSING - 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 - cssLengthTooltip : 'Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).', // MISSING + invalidValue : 'Nekorekta vērtība', + invalidHeight : 'Augstumam jābūt skaitlim.', + invalidWidth : 'Platumam jābūt skaitlim', + invalidCssLength : 'Laukam "%1" norādītajai vērtībai jābūt pozitīvam skaitlim ar vai bez korektām CSS mērvienībām (px, %, in, cm, mm, em, ex, pt, vai pc).', + invalidHtmlLength : 'Laukam "%1" norādītajai vērtībai jābūt pozitīvam skaitlim ar vai bez korektām HTML mērvienībām (px vai %).', + invalidInlineStyle : 'Iekļautajā stilā norādītajai vērtībai jāsastāv no viena vai vairākiem pāriem pēc forma\'ta "nosaukums: vērtība", atdalītiem ar semikolu.', + cssLengthTooltip : 'Ievadiet vērtību pikseļos vai skaitli ar derīgu CSS mērvienību (px, %, in, cm, mm, em, ex, pt, vai pc).', // Put the voice-only part of the label in the span. - unavailable : '%1, unavailable' // MISSING + unavailable : '%1, nav pieejams' }, contextmenu : { - options : 'Context Menu Options' // MISSING + options : 'Uznirstošās izvēlnes uzstādījumi' }, // Special char dialog. @@ -142,7 +142,7 @@ CKEDITOR.lang['lv'] = { toolbar : 'Ievietot speciālo simbolu', title : 'Ievietot īpašu simbolu', - options : 'Special Character Options' // MISSING + options : 'Speciālo simbolu uzstādījumi' }, // Link dialog. @@ -157,7 +157,7 @@ CKEDITOR.lang['lv'] = upload : 'Augšupielādēt', advanced : 'Izvērstais', type : 'Hipersaites tips', - toUrl : 'URL', // MISSING + toUrl : 'Adrese', toAnchor : 'Iezīme šajā lapā', toEmail : 'E-pasts', targetFrame : '', @@ -165,7 +165,7 @@ CKEDITOR.lang['lv'] = targetFrameName : 'Mērķa ietvara nosaukums', targetPopupName : 'Uznirstošā loga nosaukums', popupFeatures : 'Uznirstošā loga nosaukums īpašības', - popupResizable : 'Resizable', // MISSING + popupResizable : 'Mērogojams', popupStatusBar : 'Statusa josla', popupLocationBar: 'Atrašanās vietas josla', popupToolbar : 'Rīku josla', @@ -175,20 +175,20 @@ CKEDITOR.lang['lv'] = popupDependent : 'Atkarīgs (Netscape)', popupLeft : 'Kreisā koordināte', popupTop : 'Augšējā koordināte', - id : 'Id', // MISSING + id : 'ID', langDir : 'Valodas lasīšanas virziens', langDirLTR : 'No kreisās uz labo (LTR)', langDirRTL : 'No labās uz kreiso (RTL)', - acccessKey : 'Pieejas kods', + acccessKey : 'Pieejas taustiņš', name : 'Nosaukums', - langCode : 'Valodas lasīšanas virziens', + langCode : 'Valodas kods', tabIndex : 'Ciļņu indekss', advisoryTitle : 'Konsultatīvs virsraksts', advisoryContentType : 'Konsultatīvs satura tips', cssClasses : 'Stilu saraksta klases', - charset : 'Pievienotā resursa kodu tabula', + charset : 'Pievienotā resursa kodējums', styles : 'Stils', - rel : 'Relationship', // MISSING + rel : 'Relācija', selectAnchor : 'Izvēlēties iezīmi', anchorName : 'Pēc iezīmes nosaukuma', anchorId : 'Pēc elementa ID', @@ -204,52 +204,52 @@ CKEDITOR.lang['lv'] = anchor : { toolbar : 'Ievietot/Labot iezīmi', - menu : 'Iezīmes īpašības', - title : 'Iezīmes īpašības', + menu : 'Labot iezīmi', + title : 'Iezīmes uzstādījumi', name : 'Iezīmes nosaukums', errorName : 'Lūdzu norādiet iezīmes nosaukumu', - remove : 'Remove Anchor' // MISSING + remove : 'Noņemt iezīmi' }, // List style dialog list: { - numberedTitle : 'Numbered List Properties', // MISSING - bulletedTitle : 'Bulleted List Properties', // MISSING - type : 'Type', // MISSING - start : 'Start', // MISSING - validateStartNumber :'List start number must be a whole number.', // MISSING - circle : 'Circle', // MISSING - disc : 'Disc', // MISSING - square : 'Square', // MISSING - none : 'None', // MISSING - notset : '', // MISSING - armenian : 'Armenian numbering', // MISSING - georgian : 'Georgian numbering (an, ban, gan, etc.)', // MISSING - lowerRoman : 'Lower Roman (i, ii, iii, iv, v, etc.)', // MISSING - upperRoman : 'Upper Roman (I, II, III, IV, V, etc.)', // MISSING - lowerAlpha : 'Lower Alpha (a, b, c, d, e, etc.)', // MISSING - upperAlpha : 'Upper Alpha (A, B, C, D, E, etc.)', // MISSING - lowerGreek : 'Lower Greek (alpha, beta, gamma, etc.)', // MISSING - decimal : 'Decimal (1, 2, 3, etc.)', // MISSING - decimalLeadingZero : 'Decimal leading zero (01, 02, 03, etc.)' // MISSING + numberedTitle : 'Numurēta saraksta uzstādījumi', + bulletedTitle : 'Vienkārša saraksta uzstādījumi', + type : 'Tips', + start : 'Sākt', + validateStartNumber :'Saraksta sākuma numuram jābūt veselam skaitlim', + circle : 'Aplis', + disc : 'Disks', + square : 'Kvadrāts', + none : 'Nekas', + notset : '