From 1794320dcfdfcd19572fb1676294f9853a6bbc20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isma=C3=ABl=20Bouya?= Date: Mon, 4 Dec 2017 18:55:29 +0100 Subject: Update to 4.7.3 --- sources/plugins/elementspath/lang/es-mx.js | 8 ++++++++ sources/plugins/elementspath/lang/hr.js | 2 +- sources/plugins/elementspath/plugin.js | 10 +++++----- 3 files changed, 14 insertions(+), 6 deletions(-) create mode 100644 sources/plugins/elementspath/lang/es-mx.js (limited to 'sources/plugins/elementspath') diff --git a/sources/plugins/elementspath/lang/es-mx.js b/sources/plugins/elementspath/lang/es-mx.js new file mode 100644 index 0000000..625d951 --- /dev/null +++ b/sources/plugins/elementspath/lang/es-mx.js @@ -0,0 +1,8 @@ +/* +Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'elementspath', 'es-mx', { + eleLabel: 'Ruta de los elementos', + eleTitle: '%1 elemento' +} ); diff --git a/sources/plugins/elementspath/lang/hr.js b/sources/plugins/elementspath/lang/hr.js index 90a7fd0..004182b 100644 --- a/sources/plugins/elementspath/lang/hr.js +++ b/sources/plugins/elementspath/lang/hr.js @@ -3,6 +3,6 @@ Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.md or http://ckeditor.com/license */ CKEDITOR.plugins.setLang( 'elementspath', 'hr', { - eleLabel: 'Putanja elemenata', + eleLabel: 'Putanje elemenata', eleTitle: '%1 element' } ); diff --git a/sources/plugins/elementspath/plugin.js b/sources/plugins/elementspath/plugin.js index 07ba5c2..f66d7ad 100644 --- a/sources/plugins/elementspath/plugin.js +++ b/sources/plugins/elementspath/plugin.js @@ -17,7 +17,7 @@ var idBase = editor._.elementsPath.idBase; var element = CKEDITOR.document.getById( idBase + '0' ); - // Make the first button focus accessible for IE. (#3417) + // Make the first button focus accessible for IE. (http://dev.ckeditor.com/ticket/3417) // Adobe AIR instead need while of delay. element && element.focus( CKEDITOR.env.ie || CKEDITOR.env.air ); } @@ -55,7 +55,7 @@ CKEDITOR.plugins.add( 'elementspath', { // jscs:disable maximumLineLength - lang: 'af,ar,az,bg,bn,bs,ca,cs,cy,da,de,de-ch,el,en,en-au,en-ca,en-gb,eo,es,et,eu,fa,fi,fo,fr,fr-ca,gl,gu,he,hi,hr,hu,is,it,ja,ka,km,ko,ku,lt,lv,mk,mn,ms,nb,nl,no,oc,pl,pt,pt-br,ro,ru,si,sk,sl,sq,sr,sr-latn,sv,th,tr,tt,ug,uk,vi,zh,zh-cn', // %REMOVE_LINE_CORE% + lang: 'af,ar,az,bg,bn,bs,ca,cs,cy,da,de,de-ch,el,en,en-au,en-ca,en-gb,eo,es,es-mx,et,eu,fa,fi,fo,fr,fr-ca,gl,gu,he,hi,hr,hu,is,it,ja,ka,km,ko,ku,lt,lv,mk,mn,ms,nb,nl,no,oc,pl,pt,pt-br,ro,ru,si,sk,sl,sq,sr,sr-latn,sv,th,tr,tt,ug,uk,vi,zh,zh-cn', // %REMOVE_LINE_CORE% // jscs:enable maximumLineLength init: function( editor ) { editor._.elementsPath = { @@ -104,13 +104,13 @@ selection.selectElement( element ); } - // Explicitly fire selectionChange when clicking on an element path button. (#13548) + // Explicitly fire selectionChange when clicking on an element path button. (http://dev.ckeditor.com/ticket/13548) if ( CKEDITOR.env.ie ) { editor.fire( 'selectionChange', { selection: selection, path: new CKEDITOR.dom.elementPath( element ) } ); } // It is important to focus() *after* the above selection - // manipulation, otherwise Firefox will have troubles. #10119 + // manipulation, otherwise Firefox will have troubles. http://dev.ckeditor.com/ticket/10119 editor.focus(); } @@ -160,7 +160,7 @@ filters = elementsPath.filters, isContentEditable = true, - // Use elementPath to consider children of editable only (#11124). + // Use elementPath to consider children of editable only (http://dev.ckeditor.com/ticket/11124). elementsChain = editor.elementPath().elements, name; -- cgit v1.2.3