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/format/lang/es-mx.js | 18 ++++++++++++++++++ sources/plugins/format/lang/hr.js | 20 ++++++++++---------- sources/plugins/format/plugin.js | 4 ++-- 3 files changed, 30 insertions(+), 12 deletions(-) create mode 100644 sources/plugins/format/lang/es-mx.js (limited to 'sources/plugins/format') diff --git a/sources/plugins/format/lang/es-mx.js b/sources/plugins/format/lang/es-mx.js new file mode 100644 index 0000000..d311012 --- /dev/null +++ b/sources/plugins/format/lang/es-mx.js @@ -0,0 +1,18 @@ +/* +Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'format', 'es-mx', { + label: 'Formato', + panelTitle: 'Formato de párrafo', + tag_address: 'Dirección', + tag_div: 'Normal (DIV)', + tag_h1: 'Encabezado 1', + tag_h2: 'Encabezado 2', + tag_h3: 'Encabezado 3', + tag_h4: 'Encabezado 4', + tag_h5: 'Encabezado 5', + tag_h6: 'Encabezado 6', + tag_p: 'Normal', + tag_pre: 'Formateado' +} ); diff --git a/sources/plugins/format/lang/hr.js b/sources/plugins/format/lang/hr.js index 2d6ec21..fbafb0e 100644 --- a/sources/plugins/format/lang/hr.js +++ b/sources/plugins/format/lang/hr.js @@ -4,15 +4,15 @@ For licensing, see LICENSE.md or http://ckeditor.com/license */ CKEDITOR.plugins.setLang( 'format', 'hr', { label: 'Format', - panelTitle: 'Format', - tag_address: 'Address', - tag_div: 'Normal (DIV)', - tag_h1: 'Heading 1', - tag_h2: 'Heading 2', - tag_h3: 'Heading 3', - tag_h4: 'Heading 4', - tag_h5: 'Heading 5', - tag_h6: 'Heading 6', - tag_p: 'Normal', + panelTitle: 'Format paragrafa', + tag_address: 'Adresa', + tag_div: 'Normalno (DIV)', + tag_h1: 'Naslov 1', + tag_h2: 'Naslov 2', + tag_h3: 'Naslov 3', + tag_h4: 'Naslov 4', + tag_h5: 'Naslov 5', + tag_h6: 'Naslov 6', + tag_p: 'Normalno', tag_pre: 'Formatirano' } ); diff --git a/sources/plugins/format/plugin.js b/sources/plugins/format/plugin.js index 826cbcf..54d43ca 100644 --- a/sources/plugins/format/plugin.js +++ b/sources/plugins/format/plugin.js @@ -6,7 +6,7 @@ CKEDITOR.plugins.add( 'format', { requires: 'richcombo', // 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,id,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,id,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 ) { if ( editor.blockless ) @@ -69,7 +69,7 @@ CKEDITOR.plugins.add( 'format', { editor[ style.checkActive( elementPath, editor ) ? 'removeStyle' : 'applyStyle' ]( style ); - // Save the undo snapshot after all changes are affected. (#4899) + // Save the undo snapshot after all changes are affected. (http://dev.ckeditor.com/ticket/4899) setTimeout( function() { editor.fire( 'saveSnapshot' ); }, 0 ); -- cgit v1.2.3