diff options
Diffstat (limited to 'sources/plugins/image')
74 files changed, 186 insertions, 108 deletions
diff --git a/sources/plugins/image/dialogs/image.js b/sources/plugins/image/dialogs/image.js index 4f62f99..5302a7c 100644 --- a/sources/plugins/image/dialogs/image.js +++ b/sources/plugins/image/dialogs/image.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /** | 1 | /** |
2 | * @license Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | * For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | 5 | ||
@@ -107,7 +107,7 @@ | |||
107 | 107 | ||
108 | var oImageOriginal = dialog.originalElement; | 108 | var oImageOriginal = dialog.originalElement; |
109 | 109 | ||
110 | // Dialog may already closed. (#5505) | 110 | // Dialog may already closed. (http://dev.ckeditor.com/ticket/5505) |
111 | if ( !oImageOriginal ) | 111 | if ( !oImageOriginal ) |
112 | return null; | 112 | return null; |
113 | 113 | ||
@@ -233,7 +233,7 @@ | |||
233 | this.firstLoad = false; | 233 | this.firstLoad = false; |
234 | this.dontResetSize = false; | 234 | this.dontResetSize = false; |
235 | 235 | ||
236 | // Possible fix for #12818. | 236 | // Possible fix for http://dev.ckeditor.com/ticket/12818. |
237 | updatePreview( this ); | 237 | updatePreview( this ); |
238 | }; | 238 | }; |
239 | 239 | ||
@@ -270,7 +270,7 @@ | |||
270 | 270 | ||
271 | return { | 271 | return { |
272 | title: editor.lang.image[ dialogType == 'image' ? 'title' : 'titleButton' ], | 272 | title: editor.lang.image[ dialogType == 'image' ? 'title' : 'titleButton' ], |
273 | minWidth: 420, | 273 | minWidth: ( CKEDITOR.skinName || editor.config.skin ) == 'moono-lisa' ? 500 : 420, |
274 | minHeight: 360, | 274 | minHeight: 360, |
275 | onShow: function() { | 275 | onShow: function() { |
276 | this.imageElement = false; | 276 | this.imageElement = false; |
@@ -310,7 +310,7 @@ | |||
310 | this.linkEditMode = true; | 310 | this.linkEditMode = true; |
311 | 311 | ||
312 | // If there is an existing link, by default keep it (true). | 312 | // If there is an existing link, by default keep it (true). |
313 | // It will be removed if certain conditions are met and Link tab is enabled. (#13351) | 313 | // It will be removed if certain conditions are met and Link tab is enabled. (http://dev.ckeditor.com/ticket/13351) |
314 | this.addLink = true; | 314 | this.addLink = true; |
315 | 315 | ||
316 | // Look for Image element. | 316 | // Look for Image element. |
@@ -490,6 +490,7 @@ | |||
490 | type: 'hbox', | 490 | type: 'hbox', |
491 | widths: [ '280px', '110px' ], | 491 | widths: [ '280px', '110px' ], |
492 | align: 'right', | 492 | align: 'right', |
493 | className: 'cke_dialog_image_url', | ||
493 | children: [ { | 494 | children: [ { |
494 | id: 'txtUrl', | 495 | id: 'txtUrl', |
495 | type: 'text', | 496 | type: 'text', |
@@ -541,7 +542,7 @@ | |||
541 | this.getDialog().dontResetSize = true; | 542 | this.getDialog().dontResetSize = true; |
542 | 543 | ||
543 | field.setValue( url ); // And call this.onChange() | 544 | field.setValue( url ); // And call this.onChange() |
544 | // Manually set the initial value.(#4191) | 545 | // Manually set the initial value.(http://dev.ckeditor.com/ticket/4191) |
545 | field.setInitValue(); | 546 | field.setInitValue(); |
546 | } | 547 | } |
547 | }, | 548 | }, |
@@ -692,6 +693,7 @@ | |||
692 | { | 693 | { |
693 | id: 'ratioLock', | 694 | id: 'ratioLock', |
694 | type: 'html', | 695 | type: 'html', |
696 | className: 'cke_dialog_image_ratiolock', | ||
695 | style: 'margin-top:30px;width:40px;height:40px;', | 697 | style: 'margin-top:30px;width:40px;height:40px;', |
696 | onLoad: function() { | 698 | onLoad: function() { |
697 | // Activate Reset button | 699 | // Activate Reset button |
@@ -1014,6 +1016,7 @@ | |||
1014 | { | 1016 | { |
1015 | type: 'button', | 1017 | type: 'button', |
1016 | id: 'browse', | 1018 | id: 'browse', |
1019 | className: 'cke_dialog_image_browse', | ||
1017 | filebrowser: { | 1020 | filebrowser: { |
1018 | action: 'Browse', | 1021 | action: 'Browse', |
1019 | target: 'Link:txtUrl', | 1022 | target: 'Link:txtUrl', |
diff --git a/sources/plugins/image/icons/hidpi/image.png b/sources/plugins/image/icons/hidpi/image.png index b3c7ade..d0f21ae 100644 --- a/sources/plugins/image/icons/hidpi/image.png +++ b/sources/plugins/image/icons/hidpi/image.png | |||
Binary files differ | |||
diff --git a/sources/plugins/image/icons/image.png b/sources/plugins/image/icons/image.png index fcf61b5..8ea9725 100644 --- a/sources/plugins/image/icons/image.png +++ b/sources/plugins/image/icons/image.png | |||
Binary files differ | |||
diff --git a/sources/plugins/image/lang/af.js b/sources/plugins/image/lang/af.js index c3cf354..8cc5b5f 100644 --- a/sources/plugins/image/lang/af.js +++ b/sources/plugins/image/lang/af.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'af', { | 5 | CKEDITOR.plugins.setLang( 'image', 'af', { |
diff --git a/sources/plugins/image/lang/ar.js b/sources/plugins/image/lang/ar.js index 1a0fb7a..a755b3e 100644 --- a/sources/plugins/image/lang/ar.js +++ b/sources/plugins/image/lang/ar.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'ar', { | 5 | CKEDITOR.plugins.setLang( 'image', 'ar', { |
diff --git a/sources/plugins/image/lang/az.js b/sources/plugins/image/lang/az.js new file mode 100644 index 0000000..79009fa --- /dev/null +++ b/sources/plugins/image/lang/az.js | |||
@@ -0,0 +1,25 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'image', 'az', { | ||
6 | alt: 'Alternativ mətn', | ||
7 | border: 'Sərhəd', | ||
8 | btnUpload: 'Serverə yüklə', | ||
9 | button2Img: 'Şəkil tipli düyməni şəklə çevirmək istədiyinizə əminsinizmi?', | ||
10 | hSpace: 'Üfüqi boşluq', | ||
11 | img2Button: 'Şəkli şəkil tipli düyməyə çevirmək istədiyinizə əminsinizmi?', | ||
12 | infoTab: 'Şəkil haqqında məlumat', | ||
13 | linkTab: 'Link', | ||
14 | lockRatio: 'Ölçülərin uyğunluğu saxla', | ||
15 | menu: 'Şəklin seçimləri', | ||
16 | resetSize: 'Ölçüləri qaytar', | ||
17 | title: 'Şəklin seçimləri', | ||
18 | titleButton: 'Şəkil tipli düyməsinin seçimləri', | ||
19 | upload: 'Serverə yüklə', | ||
20 | urlMissing: 'Şəklin ünvanı yanlışdır.', | ||
21 | vSpace: 'Şaquli boşluq', | ||
22 | validateBorder: 'Sərhədin eni rəqəm olmalıdır.', | ||
23 | validateHSpace: 'Üfüqi boşluq rəqəm olmalıdır.', | ||
24 | validateVSpace: 'Şaquli boşluq rəqəm olmalıdır.' | ||
25 | } ); | ||
diff --git a/sources/plugins/image/lang/bg.js b/sources/plugins/image/lang/bg.js index ecc7cd7..6c0b064 100644 --- a/sources/plugins/image/lang/bg.js +++ b/sources/plugins/image/lang/bg.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'bg', { | 5 | CKEDITOR.plugins.setLang( 'image', 'bg', { |
diff --git a/sources/plugins/image/lang/bn.js b/sources/plugins/image/lang/bn.js index 1f39349..bbecfc6 100644 --- a/sources/plugins/image/lang/bn.js +++ b/sources/plugins/image/lang/bn.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'bn', { | 5 | CKEDITOR.plugins.setLang( 'image', 'bn', { |
@@ -15,7 +15,7 @@ CKEDITOR.plugins.setLang( 'image', 'bn', { | |||
15 | menu: 'ছবির প্রোপার্টি', | 15 | menu: 'ছবির প্রোপার্টি', |
16 | resetSize: 'সাইজ পূর্বাবস্থায় ফিরিয়ে দাও', | 16 | resetSize: 'সাইজ পূর্বাবস্থায় ফিরিয়ে দাও', |
17 | title: 'ছবির প্রোপার্টি', | 17 | title: 'ছবির প্রোপার্টি', |
18 | titleButton: 'ছবি বাটন ', | 18 | titleButton: 'ছবির বাটন ্য়', |
19 | upload: 'আপলোড', | 19 | upload: 'আপলোড', |
20 | urlMissing: 'Image source URL is missing.', // MISSING | 20 | urlMissing: 'Image source URL is missing.', // MISSING |
21 | vSpace: 'ভার্টিকেল স্পেস', | 21 | vSpace: 'ভার্টিকেল স্পেস', |
diff --git a/sources/plugins/image/lang/bs.js b/sources/plugins/image/lang/bs.js index 8470e8f..06dd8bf 100644 --- a/sources/plugins/image/lang/bs.js +++ b/sources/plugins/image/lang/bs.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'bs', { | 5 | CKEDITOR.plugins.setLang( 'image', 'bs', { |
diff --git a/sources/plugins/image/lang/ca.js b/sources/plugins/image/lang/ca.js index 8464dbf..858013e 100644 --- a/sources/plugins/image/lang/ca.js +++ b/sources/plugins/image/lang/ca.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'ca', { | 5 | CKEDITOR.plugins.setLang( 'image', 'ca', { |
diff --git a/sources/plugins/image/lang/cs.js b/sources/plugins/image/lang/cs.js index 2f870f8..a18a753 100644 --- a/sources/plugins/image/lang/cs.js +++ b/sources/plugins/image/lang/cs.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'cs', { | 5 | CKEDITOR.plugins.setLang( 'image', 'cs', { |
diff --git a/sources/plugins/image/lang/cy.js b/sources/plugins/image/lang/cy.js index 6310b5b..7407310 100644 --- a/sources/plugins/image/lang/cy.js +++ b/sources/plugins/image/lang/cy.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'cy', { | 5 | CKEDITOR.plugins.setLang( 'image', 'cy', { |
diff --git a/sources/plugins/image/lang/da.js b/sources/plugins/image/lang/da.js index 82f591d..bec69ba 100644 --- a/sources/plugins/image/lang/da.js +++ b/sources/plugins/image/lang/da.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'da', { | 5 | CKEDITOR.plugins.setLang( 'image', 'da', { |
diff --git a/sources/plugins/image/lang/de-ch.js b/sources/plugins/image/lang/de-ch.js index 9237c1a..6ba1570 100644 --- a/sources/plugins/image/lang/de-ch.js +++ b/sources/plugins/image/lang/de-ch.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'de-ch', { | 5 | CKEDITOR.plugins.setLang( 'image', 'de-ch', { |
diff --git a/sources/plugins/image/lang/de.js b/sources/plugins/image/lang/de.js index 4827329..a391934 100644 --- a/sources/plugins/image/lang/de.js +++ b/sources/plugins/image/lang/de.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'de', { | 5 | CKEDITOR.plugins.setLang( 'image', 'de', { |
diff --git a/sources/plugins/image/lang/el.js b/sources/plugins/image/lang/el.js index 9e515e7..3453c3d 100644 --- a/sources/plugins/image/lang/el.js +++ b/sources/plugins/image/lang/el.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'el', { | 5 | CKEDITOR.plugins.setLang( 'image', 'el', { |
diff --git a/sources/plugins/image/lang/en-au.js b/sources/plugins/image/lang/en-au.js index 6e7ce12..dba29c7 100644 --- a/sources/plugins/image/lang/en-au.js +++ b/sources/plugins/image/lang/en-au.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'en-au', { | 5 | CKEDITOR.plugins.setLang( 'image', 'en-au', { |
diff --git a/sources/plugins/image/lang/en-ca.js b/sources/plugins/image/lang/en-ca.js index 2f3992f..e78f83e 100644 --- a/sources/plugins/image/lang/en-ca.js +++ b/sources/plugins/image/lang/en-ca.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'en-ca', { | 5 | CKEDITOR.plugins.setLang( 'image', 'en-ca', { |
diff --git a/sources/plugins/image/lang/en-gb.js b/sources/plugins/image/lang/en-gb.js index e60b38a..dcf335e 100644 --- a/sources/plugins/image/lang/en-gb.js +++ b/sources/plugins/image/lang/en-gb.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'en-gb', { | 5 | CKEDITOR.plugins.setLang( 'image', 'en-gb', { |
diff --git a/sources/plugins/image/lang/en.js b/sources/plugins/image/lang/en.js index d6cb43a..4d0f50b 100644 --- a/sources/plugins/image/lang/en.js +++ b/sources/plugins/image/lang/en.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'en', { | 5 | CKEDITOR.plugins.setLang( 'image', 'en', { |
diff --git a/sources/plugins/image/lang/eo.js b/sources/plugins/image/lang/eo.js index 9ef3115..276ef33 100644 --- a/sources/plugins/image/lang/eo.js +++ b/sources/plugins/image/lang/eo.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'eo', { | 5 | CKEDITOR.plugins.setLang( 'image', 'eo', { |
diff --git a/sources/plugins/image/lang/es-mx.js b/sources/plugins/image/lang/es-mx.js new file mode 100644 index 0000000..dc9b24c --- /dev/null +++ b/sources/plugins/image/lang/es-mx.js | |||
@@ -0,0 +1,25 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'image', 'es-mx', { | ||
6 | alt: 'Texto alternativo', | ||
7 | border: 'Borde', | ||
8 | btnUpload: 'Enviar al servidor', | ||
9 | button2Img: '¿Desea transformar el botón de imagen seleccionado en una imagen simple?', | ||
10 | hSpace: 'Espacio horizontal', | ||
11 | img2Button: '¿Desea transformar la imagen seleccionada en un botón de imagen?', | ||
12 | infoTab: 'Información de imagen', | ||
13 | linkTab: 'Enlace', | ||
14 | lockRatio: 'Bloquear aspecto', | ||
15 | menu: 'Propiedades de la imagen', | ||
16 | resetSize: 'Reiniciar tamaño', | ||
17 | title: 'Propiedades de la imagen', | ||
18 | titleButton: 'Propiedades del botón de imagen', | ||
19 | upload: 'Cargar', | ||
20 | urlMissing: 'Falta la URL de origen de la imagen.', | ||
21 | vSpace: 'Espacio vertical', | ||
22 | validateBorder: 'El borde debe ser un número entero.', | ||
23 | validateHSpace: 'El espacio horizontal debe ser un número entero.', | ||
24 | validateVSpace: 'El espacio vertical debe ser un número entero.' | ||
25 | } ); | ||
diff --git a/sources/plugins/image/lang/es.js b/sources/plugins/image/lang/es.js index 12e1748..1302a19 100644 --- a/sources/plugins/image/lang/es.js +++ b/sources/plugins/image/lang/es.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'es', { | 5 | CKEDITOR.plugins.setLang( 'image', 'es', { |
diff --git a/sources/plugins/image/lang/et.js b/sources/plugins/image/lang/et.js index e02591f..4c7153a 100644 --- a/sources/plugins/image/lang/et.js +++ b/sources/plugins/image/lang/et.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'et', { | 5 | CKEDITOR.plugins.setLang( 'image', 'et', { |
diff --git a/sources/plugins/image/lang/eu.js b/sources/plugins/image/lang/eu.js index f288398..52f8289 100644 --- a/sources/plugins/image/lang/eu.js +++ b/sources/plugins/image/lang/eu.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'eu', { | 5 | CKEDITOR.plugins.setLang( 'image', 'eu', { |
diff --git a/sources/plugins/image/lang/fa.js b/sources/plugins/image/lang/fa.js index 00eb831..6628e99 100644 --- a/sources/plugins/image/lang/fa.js +++ b/sources/plugins/image/lang/fa.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'fa', { | 5 | CKEDITOR.plugins.setLang( 'image', 'fa', { |
diff --git a/sources/plugins/image/lang/fi.js b/sources/plugins/image/lang/fi.js index e264d72..665b615 100644 --- a/sources/plugins/image/lang/fi.js +++ b/sources/plugins/image/lang/fi.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'fi', { | 5 | CKEDITOR.plugins.setLang( 'image', 'fi', { |
diff --git a/sources/plugins/image/lang/fo.js b/sources/plugins/image/lang/fo.js index 6073e0c..8332a38 100644 --- a/sources/plugins/image/lang/fo.js +++ b/sources/plugins/image/lang/fo.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'fo', { | 5 | CKEDITOR.plugins.setLang( 'image', 'fo', { |
diff --git a/sources/plugins/image/lang/fr-ca.js b/sources/plugins/image/lang/fr-ca.js index ebeddb2..644a9f3 100644 --- a/sources/plugins/image/lang/fr-ca.js +++ b/sources/plugins/image/lang/fr-ca.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'fr-ca', { | 5 | CKEDITOR.plugins.setLang( 'image', 'fr-ca', { |
diff --git a/sources/plugins/image/lang/fr.js b/sources/plugins/image/lang/fr.js index e06d095..299c379 100644 --- a/sources/plugins/image/lang/fr.js +++ b/sources/plugins/image/lang/fr.js | |||
@@ -1,25 +1,25 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'fr', { | 5 | CKEDITOR.plugins.setLang( 'image', 'fr', { |
6 | alt: 'Texte de remplacement', | 6 | alt: 'Texte alternatif', |
7 | border: 'Bordure', | 7 | border: 'Bordure', |
8 | btnUpload: 'Envoyer sur le serveur', | 8 | btnUpload: 'Envoyer sur le serveur', |
9 | button2Img: 'Voulez-vous transformer le bouton image sélectionné en simple image?', | 9 | button2Img: 'Voulez-vous transformer le bouton avec image sélectionné en simple image ?', |
10 | hSpace: 'Espacement horizontal', | 10 | hSpace: 'Espacement horizontal', |
11 | img2Button: 'Voulez-vous transformer l\'image en bouton image?', | 11 | img2Button: 'Voulez-vous transformer l\'image sélectionnée en bouton avec image ?', |
12 | infoTab: 'Informations sur l\'image', | 12 | infoTab: 'Informations sur l\'image', |
13 | linkTab: 'Lien', | 13 | linkTab: 'Lien', |
14 | lockRatio: 'Conserver les proportions', | 14 | lockRatio: 'Conserver les proportions', |
15 | menu: 'Propriétés de l\'image', | 15 | menu: 'Propriétés de l\'image', |
16 | resetSize: 'Taille d\'origine', | 16 | resetSize: 'Réinitialiser la taille', |
17 | title: 'Propriétés de l\'image', | 17 | title: 'Propriétés de l\'image', |
18 | titleButton: 'Propriétés du bouton image', | 18 | titleButton: 'Propriétés du bouton avec image', |
19 | upload: 'Envoyer', | 19 | upload: 'Téléverser', |
20 | urlMissing: 'L\'adresse source de l\'image est manquante.', | 20 | urlMissing: 'L\'URL source de l\'image est manquante.', |
21 | vSpace: 'Espacement vertical', | 21 | vSpace: 'Espacement vertical', |
22 | validateBorder: 'Bordure doit être un entier.', | 22 | validateBorder: 'La bordure doit être un nombre entier.', |
23 | validateHSpace: 'HSpace doit être un entier.', | 23 | validateHSpace: 'L\'espacement horizontal doit être un nombre entier.', |
24 | validateVSpace: 'VSpace doit être un entier.' | 24 | validateVSpace: 'L\'espacement vertical doit être un nombre entier.' |
25 | } ); | 25 | } ); |
diff --git a/sources/plugins/image/lang/gl.js b/sources/plugins/image/lang/gl.js index 22f1f41..ba632b8 100644 --- a/sources/plugins/image/lang/gl.js +++ b/sources/plugins/image/lang/gl.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'gl', { | 5 | CKEDITOR.plugins.setLang( 'image', 'gl', { |
diff --git a/sources/plugins/image/lang/gu.js b/sources/plugins/image/lang/gu.js index 36e26fc..f70ae28 100644 --- a/sources/plugins/image/lang/gu.js +++ b/sources/plugins/image/lang/gu.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'gu', { | 5 | CKEDITOR.plugins.setLang( 'image', 'gu', { |
diff --git a/sources/plugins/image/lang/he.js b/sources/plugins/image/lang/he.js index 5b8e18d..41f207a 100644 --- a/sources/plugins/image/lang/he.js +++ b/sources/plugins/image/lang/he.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'he', { | 5 | CKEDITOR.plugins.setLang( 'image', 'he', { |
diff --git a/sources/plugins/image/lang/hi.js b/sources/plugins/image/lang/hi.js index 158c188..d4604b3 100644 --- a/sources/plugins/image/lang/hi.js +++ b/sources/plugins/image/lang/hi.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'hi', { | 5 | CKEDITOR.plugins.setLang( 'image', 'hi', { |
diff --git a/sources/plugins/image/lang/hr.js b/sources/plugins/image/lang/hr.js index 6c3aade..962533a 100644 --- a/sources/plugins/image/lang/hr.js +++ b/sources/plugins/image/lang/hr.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'hr', { | 5 | CKEDITOR.plugins.setLang( 'image', 'hr', { |
@@ -10,7 +10,7 @@ CKEDITOR.plugins.setLang( 'image', 'hr', { | |||
10 | hSpace: 'HSpace', | 10 | hSpace: 'HSpace', |
11 | img2Button: 'Želite li promijeniti odabranu sliku u gumb?', | 11 | img2Button: 'Želite li promijeniti odabranu sliku u gumb?', |
12 | infoTab: 'Info slike', | 12 | infoTab: 'Info slike', |
13 | linkTab: 'Link', | 13 | linkTab: 'Veza', |
14 | lockRatio: 'Zaključaj odnos', | 14 | lockRatio: 'Zaključaj odnos', |
15 | menu: 'Svojstva slika', | 15 | menu: 'Svojstva slika', |
16 | resetSize: 'Obriši veličinu', | 16 | resetSize: 'Obriši veličinu', |
diff --git a/sources/plugins/image/lang/hu.js b/sources/plugins/image/lang/hu.js index ed4c356..5a9e990 100644 --- a/sources/plugins/image/lang/hu.js +++ b/sources/plugins/image/lang/hu.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'hu', { | 5 | CKEDITOR.plugins.setLang( 'image', 'hu', { |
diff --git a/sources/plugins/image/lang/id.js b/sources/plugins/image/lang/id.js index 68ccd52..8d27ad6 100644 --- a/sources/plugins/image/lang/id.js +++ b/sources/plugins/image/lang/id.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'id', { | 5 | CKEDITOR.plugins.setLang( 'image', 'id', { |
diff --git a/sources/plugins/image/lang/is.js b/sources/plugins/image/lang/is.js index f55c69c..fc02308 100644 --- a/sources/plugins/image/lang/is.js +++ b/sources/plugins/image/lang/is.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'is', { | 5 | CKEDITOR.plugins.setLang( 'image', 'is', { |
diff --git a/sources/plugins/image/lang/it.js b/sources/plugins/image/lang/it.js index 3aeb017..7b066ca 100644 --- a/sources/plugins/image/lang/it.js +++ b/sources/plugins/image/lang/it.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'it', { | 5 | CKEDITOR.plugins.setLang( 'image', 'it', { |
diff --git a/sources/plugins/image/lang/ja.js b/sources/plugins/image/lang/ja.js index 86d54c8..a2d500c 100644 --- a/sources/plugins/image/lang/ja.js +++ b/sources/plugins/image/lang/ja.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'ja', { | 5 | CKEDITOR.plugins.setLang( 'image', 'ja', { |
diff --git a/sources/plugins/image/lang/ka.js b/sources/plugins/image/lang/ka.js index fe0f8f4..0a634f0 100644 --- a/sources/plugins/image/lang/ka.js +++ b/sources/plugins/image/lang/ka.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'ka', { | 5 | CKEDITOR.plugins.setLang( 'image', 'ka', { |
diff --git a/sources/plugins/image/lang/km.js b/sources/plugins/image/lang/km.js index f3236ee..d60562a 100644 --- a/sources/plugins/image/lang/km.js +++ b/sources/plugins/image/lang/km.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'km', { | 5 | CKEDITOR.plugins.setLang( 'image', 'km', { |
diff --git a/sources/plugins/image/lang/ko.js b/sources/plugins/image/lang/ko.js index 30e7e45..75e5252 100644 --- a/sources/plugins/image/lang/ko.js +++ b/sources/plugins/image/lang/ko.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'ko', { | 5 | CKEDITOR.plugins.setLang( 'image', 'ko', { |
diff --git a/sources/plugins/image/lang/ku.js b/sources/plugins/image/lang/ku.js index 9a8678a..2b70145 100644 --- a/sources/plugins/image/lang/ku.js +++ b/sources/plugins/image/lang/ku.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'ku', { | 5 | CKEDITOR.plugins.setLang( 'image', 'ku', { |
diff --git a/sources/plugins/image/lang/lt.js b/sources/plugins/image/lang/lt.js index 0261413..2343934 100644 --- a/sources/plugins/image/lang/lt.js +++ b/sources/plugins/image/lang/lt.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'lt', { | 5 | CKEDITOR.plugins.setLang( 'image', 'lt', { |
diff --git a/sources/plugins/image/lang/lv.js b/sources/plugins/image/lang/lv.js index f4e6aef..cf20166 100644 --- a/sources/plugins/image/lang/lv.js +++ b/sources/plugins/image/lang/lv.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'lv', { | 5 | CKEDITOR.plugins.setLang( 'image', 'lv', { |
diff --git a/sources/plugins/image/lang/mk.js b/sources/plugins/image/lang/mk.js index 062f94f..9dd01cc 100644 --- a/sources/plugins/image/lang/mk.js +++ b/sources/plugins/image/lang/mk.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'mk', { | 5 | CKEDITOR.plugins.setLang( 'image', 'mk', { |
diff --git a/sources/plugins/image/lang/mn.js b/sources/plugins/image/lang/mn.js index 7923ec6..4daf38a 100644 --- a/sources/plugins/image/lang/mn.js +++ b/sources/plugins/image/lang/mn.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'mn', { | 5 | CKEDITOR.plugins.setLang( 'image', 'mn', { |
diff --git a/sources/plugins/image/lang/ms.js b/sources/plugins/image/lang/ms.js index 98adf09..28511d0 100644 --- a/sources/plugins/image/lang/ms.js +++ b/sources/plugins/image/lang/ms.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'ms', { | 5 | CKEDITOR.plugins.setLang( 'image', 'ms', { |
diff --git a/sources/plugins/image/lang/nb.js b/sources/plugins/image/lang/nb.js index ac94f30..87208af 100644 --- a/sources/plugins/image/lang/nb.js +++ b/sources/plugins/image/lang/nb.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'nb', { | 5 | CKEDITOR.plugins.setLang( 'image', 'nb', { |
diff --git a/sources/plugins/image/lang/nl.js b/sources/plugins/image/lang/nl.js index 8755503..bbe4943 100644 --- a/sources/plugins/image/lang/nl.js +++ b/sources/plugins/image/lang/nl.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'nl', { | 5 | CKEDITOR.plugins.setLang( 'image', 'nl', { |
diff --git a/sources/plugins/image/lang/no.js b/sources/plugins/image/lang/no.js index 5f220cb..9d4898a 100644 --- a/sources/plugins/image/lang/no.js +++ b/sources/plugins/image/lang/no.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'no', { | 5 | CKEDITOR.plugins.setLang( 'image', 'no', { |
diff --git a/sources/plugins/image/lang/oc.js b/sources/plugins/image/lang/oc.js new file mode 100644 index 0000000..fa595c6 --- /dev/null +++ b/sources/plugins/image/lang/oc.js | |||
@@ -0,0 +1,25 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'image', 'oc', { | ||
6 | alt: 'Tèxte alternatiu', | ||
7 | border: 'Bordadura', | ||
8 | btnUpload: 'Mandar sul servidor', | ||
9 | button2Img: 'Volètz transformar lo boton amb imatge seleccionat en imatge simple ?', | ||
10 | hSpace: 'Espaçament orizontal', | ||
11 | img2Button: 'Volètz transformar l\'imatge seleccionat en boton amb imatge ?', | ||
12 | infoTab: 'Informacions sus l\'imatge', | ||
13 | linkTab: 'Ligam', | ||
14 | lockRatio: 'Conservar las proporcions', | ||
15 | menu: 'Proprietats de l\'imatge', | ||
16 | resetSize: 'Reïnicializar la talha', | ||
17 | title: 'Proprietats de l\'imatge', | ||
18 | titleButton: 'Proprietats del boton amb imatge', | ||
19 | upload: 'Mandar', | ||
20 | urlMissing: 'L\'URL font de l\'imatge es mancanta.', | ||
21 | vSpace: 'Espaçament vertical', | ||
22 | validateBorder: 'La bordadura deu èsser un nombre entièr.', | ||
23 | validateHSpace: 'L\'espaçament orizontal deu èsser un nombre entièr.', | ||
24 | validateVSpace: 'L\'espaçament vertical deu èsser un nombre entièr.' | ||
25 | } ); | ||
diff --git a/sources/plugins/image/lang/pl.js b/sources/plugins/image/lang/pl.js index ba55b74..93afb85 100644 --- a/sources/plugins/image/lang/pl.js +++ b/sources/plugins/image/lang/pl.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'pl', { | 5 | CKEDITOR.plugins.setLang( 'image', 'pl', { |
diff --git a/sources/plugins/image/lang/pt-br.js b/sources/plugins/image/lang/pt-br.js index 8ac3753..0d13a9a 100644 --- a/sources/plugins/image/lang/pt-br.js +++ b/sources/plugins/image/lang/pt-br.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'pt-br', { | 5 | CKEDITOR.plugins.setLang( 'image', 'pt-br', { |
diff --git a/sources/plugins/image/lang/pt.js b/sources/plugins/image/lang/pt.js index c152d81..729c48e 100644 --- a/sources/plugins/image/lang/pt.js +++ b/sources/plugins/image/lang/pt.js | |||
@@ -1,25 +1,25 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'pt', { | 5 | CKEDITOR.plugins.setLang( 'image', 'pt', { |
6 | alt: 'Texto Alternativo', | 6 | alt: 'Texto alternativo', |
7 | border: 'Limite', | 7 | border: 'Limite', |
8 | btnUpload: 'Enviar para o servidor', | 8 | btnUpload: 'Enviar para o servidor', |
9 | button2Img: 'Deseja transformar o botão com imagem selecionado em uma imagem?', | 9 | button2Img: 'Deseja transformar o botão com imagem selecionado numa imagem simples?', |
10 | hSpace: 'Esp.Horiz', | 10 | hSpace: 'Esp. Horiz', |
11 | img2Button: 'Deseja transformar a imagem selecionada em um botão com imagem?', | 11 | img2Button: 'Deseja transformar a imagem selecionada num botão com imagem?', |
12 | infoTab: 'Informação da Imagem', | 12 | infoTab: 'Informação da imagem', |
13 | linkTab: 'Hiperligação', | 13 | linkTab: 'Hiperligação', |
14 | lockRatio: 'Proporcional', | 14 | lockRatio: 'Proporcional', |
15 | menu: 'Propriedades da Imagem', | 15 | menu: 'Propriedades da Imagem', |
16 | resetSize: 'Tamanho Original', | 16 | resetSize: 'Tamanho original', |
17 | title: 'Propriedades da Imagem', | 17 | title: 'Propriedades da imagem', |
18 | titleButton: 'Propriedades do Botão de imagens', | 18 | titleButton: 'Propriedades do botão de imagem', |
19 | upload: 'Carregar', | 19 | upload: 'Carregar', |
20 | urlMissing: 'O URL da fonte da imagem está em falta.', | 20 | urlMissing: 'O URL de origem da imagem está em falta.', |
21 | vSpace: 'Esp.Vert', | 21 | vSpace: 'Esp. Vert', |
22 | validateBorder: 'A borda tem de ser um numero.', | 22 | validateBorder: 'A borda tem de ser um número inteiro.', |
23 | validateHSpace: 'HSpace tem de ser um numero.', | 23 | validateHSpace: 'HSpace tem de ser um numero.', |
24 | validateVSpace: 'VSpace tem de ser um numero.' | 24 | validateVSpace: 'VSpace tem de ser um numero.' |
25 | } ); | 25 | } ); |
diff --git a/sources/plugins/image/lang/ro.js b/sources/plugins/image/lang/ro.js index c45929a..067dee2 100644 --- a/sources/plugins/image/lang/ro.js +++ b/sources/plugins/image/lang/ro.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'ro', { | 5 | CKEDITOR.plugins.setLang( 'image', 'ro', { |
diff --git a/sources/plugins/image/lang/ru.js b/sources/plugins/image/lang/ru.js index 1ea84d2..cb937c9 100644 --- a/sources/plugins/image/lang/ru.js +++ b/sources/plugins/image/lang/ru.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'ru', { | 5 | CKEDITOR.plugins.setLang( 'image', 'ru', { |
diff --git a/sources/plugins/image/lang/si.js b/sources/plugins/image/lang/si.js index 7a15196..84cbace 100644 --- a/sources/plugins/image/lang/si.js +++ b/sources/plugins/image/lang/si.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'si', { | 5 | CKEDITOR.plugins.setLang( 'image', 'si', { |
diff --git a/sources/plugins/image/lang/sk.js b/sources/plugins/image/lang/sk.js index 1384f6b..38bc38a 100644 --- a/sources/plugins/image/lang/sk.js +++ b/sources/plugins/image/lang/sk.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'sk', { | 5 | CKEDITOR.plugins.setLang( 'image', 'sk', { |
diff --git a/sources/plugins/image/lang/sl.js b/sources/plugins/image/lang/sl.js index 4c7ba8f..29c440f 100644 --- a/sources/plugins/image/lang/sl.js +++ b/sources/plugins/image/lang/sl.js | |||
@@ -1,14 +1,14 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'sl', { | 5 | CKEDITOR.plugins.setLang( 'image', 'sl', { |
6 | alt: 'Nadomestno besedilo', | 6 | alt: 'Nadomestno besedilo', |
7 | border: 'Obroba', | 7 | border: 'Obroba', |
8 | btnUpload: 'Pošlji na strežnik', | 8 | btnUpload: 'Pošlji na strežnik', |
9 | button2Img: 'Želiš pretvoriti izbrani gumb s sliko v preprosto sliko?', | 9 | button2Img: 'Želite pretvoriti izbrani gumb s sliko v preprosto sliko?', |
10 | hSpace: 'Vodoravni razmik', | 10 | hSpace: 'Vodoravni odmik', |
11 | img2Button: 'Želiš pretvoriti izbrano sliko v gumb s sliko?', | 11 | img2Button: 'Želite pretvoriti izbrano sliko v gumb s sliko?', |
12 | infoTab: 'Podatki o sliki', | 12 | infoTab: 'Podatki o sliki', |
13 | linkTab: 'Povezava', | 13 | linkTab: 'Povezava', |
14 | lockRatio: 'Zakleni razmerje', | 14 | lockRatio: 'Zakleni razmerje', |
@@ -16,10 +16,10 @@ CKEDITOR.plugins.setLang( 'image', 'sl', { | |||
16 | resetSize: 'Ponastavi velikost', | 16 | resetSize: 'Ponastavi velikost', |
17 | title: 'Lastnosti slike', | 17 | title: 'Lastnosti slike', |
18 | titleButton: 'Lastnosti gumba s sliko', | 18 | titleButton: 'Lastnosti gumba s sliko', |
19 | upload: 'Polji', | 19 | upload: 'Naloi', |
20 | urlMissing: 'Manjka vir (URL) slike.', | 20 | urlMissing: 'Manjka URL vira slike.', |
21 | vSpace: 'Navpični razmik', | 21 | vSpace: 'Navpični odmik', |
22 | validateBorder: 'Meja mora biti celo število.', | 22 | validateBorder: 'Meja mora biti celo število.', |
23 | validateHSpace: 'HSpace mora biti celo število.', | 23 | validateHSpace: 'Vodoravni odmik mora biti celo število.', |
24 | validateVSpace: 'VSpace mora biti celo število.' | 24 | validateVSpace: 'VSpace mora biti celo število.' |
25 | } ); | 25 | } ); |
diff --git a/sources/plugins/image/lang/sq.js b/sources/plugins/image/lang/sq.js index a851819..072a96d 100644 --- a/sources/plugins/image/lang/sq.js +++ b/sources/plugins/image/lang/sq.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'sq', { | 5 | CKEDITOR.plugins.setLang( 'image', 'sq', { |
diff --git a/sources/plugins/image/lang/sr-latn.js b/sources/plugins/image/lang/sr-latn.js index 25c39c3..b3c2a98 100644 --- a/sources/plugins/image/lang/sr-latn.js +++ b/sources/plugins/image/lang/sr-latn.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'sr-latn', { | 5 | CKEDITOR.plugins.setLang( 'image', 'sr-latn', { |
diff --git a/sources/plugins/image/lang/sr.js b/sources/plugins/image/lang/sr.js index 25b44c5..4a269d9 100644 --- a/sources/plugins/image/lang/sr.js +++ b/sources/plugins/image/lang/sr.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'sr', { | 5 | CKEDITOR.plugins.setLang( 'image', 'sr', { |
diff --git a/sources/plugins/image/lang/sv.js b/sources/plugins/image/lang/sv.js index bc11f09..db07c37 100644 --- a/sources/plugins/image/lang/sv.js +++ b/sources/plugins/image/lang/sv.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'sv', { | 5 | CKEDITOR.plugins.setLang( 'image', 'sv', { |
diff --git a/sources/plugins/image/lang/th.js b/sources/plugins/image/lang/th.js index f9f8023..0d33bb3 100644 --- a/sources/plugins/image/lang/th.js +++ b/sources/plugins/image/lang/th.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'th', { | 5 | CKEDITOR.plugins.setLang( 'image', 'th', { |
diff --git a/sources/plugins/image/lang/tr.js b/sources/plugins/image/lang/tr.js index 5a668f2..2f707a1 100644 --- a/sources/plugins/image/lang/tr.js +++ b/sources/plugins/image/lang/tr.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'tr', { | 5 | CKEDITOR.plugins.setLang( 'image', 'tr', { |
diff --git a/sources/plugins/image/lang/tt.js b/sources/plugins/image/lang/tt.js index 8daf0af..e659066 100644 --- a/sources/plugins/image/lang/tt.js +++ b/sources/plugins/image/lang/tt.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'tt', { | 5 | CKEDITOR.plugins.setLang( 'image', 'tt', { |
diff --git a/sources/plugins/image/lang/ug.js b/sources/plugins/image/lang/ug.js index 70382ec..d2a28ef 100644 --- a/sources/plugins/image/lang/ug.js +++ b/sources/plugins/image/lang/ug.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'ug', { | 5 | CKEDITOR.plugins.setLang( 'image', 'ug', { |
diff --git a/sources/plugins/image/lang/uk.js b/sources/plugins/image/lang/uk.js index c32c230..ace2eea 100644 --- a/sources/plugins/image/lang/uk.js +++ b/sources/plugins/image/lang/uk.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'uk', { | 5 | CKEDITOR.plugins.setLang( 'image', 'uk', { |
diff --git a/sources/plugins/image/lang/vi.js b/sources/plugins/image/lang/vi.js index 70d7578..4c33fd5 100644 --- a/sources/plugins/image/lang/vi.js +++ b/sources/plugins/image/lang/vi.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'vi', { | 5 | CKEDITOR.plugins.setLang( 'image', 'vi', { |
diff --git a/sources/plugins/image/lang/zh-cn.js b/sources/plugins/image/lang/zh-cn.js index 651468f..287a362 100644 --- a/sources/plugins/image/lang/zh-cn.js +++ b/sources/plugins/image/lang/zh-cn.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'zh-cn', { | 5 | CKEDITOR.plugins.setLang( 'image', 'zh-cn', { |
diff --git a/sources/plugins/image/lang/zh.js b/sources/plugins/image/lang/zh.js index 0859d26..920b554 100644 --- a/sources/plugins/image/lang/zh.js +++ b/sources/plugins/image/lang/zh.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | CKEDITOR.plugins.setLang( 'image', 'zh', { | 5 | CKEDITOR.plugins.setLang( 'image', 'zh', { |
diff --git a/sources/plugins/image/plugin.js b/sources/plugins/image/plugin.js index 8bed8ec..507ce0a 100644 --- a/sources/plugins/image/plugin.js +++ b/sources/plugins/image/plugin.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /** | 1 | /** |
2 | * @license Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. |
3 | * For licensing, see LICENSE.md or http://ckeditor.com/license | 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license |
4 | */ | 4 | */ |
5 | 5 | ||
@@ -12,13 +12,13 @@ | |||
12 | CKEDITOR.plugins.add( 'image', { | 12 | CKEDITOR.plugins.add( 'image', { |
13 | requires: 'dialog', | 13 | requires: 'dialog', |
14 | // jscs:disable maximumLineLength | 14 | // jscs:disable maximumLineLength |
15 | lang: 'af,ar,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,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% | 15 | 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% |
16 | // jscs:enable maximumLineLength | 16 | // jscs:enable maximumLineLength |
17 | icons: 'image', // %REMOVE_LINE_CORE% | 17 | icons: 'image', // %REMOVE_LINE_CORE% |
18 | hidpi: true, // %REMOVE_LINE_CORE% | 18 | hidpi: true, // %REMOVE_LINE_CORE% |
19 | init: function( editor ) { | 19 | init: function( editor ) { |
20 | // Abort when Image2 is to be loaded since both plugins | 20 | // Abort when Image2 is to be loaded since both plugins |
21 | // share the same button, command, etc. names (#11222). | 21 | // share the same button, command, etc. names (http://dev.ckeditor.com/ticket/11222). |
22 | if ( editor.plugins.image2 ) | 22 | if ( editor.plugins.image2 ) |
23 | return; | 23 | return; |
24 | 24 | ||
@@ -78,11 +78,11 @@ | |||
78 | }, | 78 | }, |
79 | afterInit: function( editor ) { | 79 | afterInit: function( editor ) { |
80 | // Abort when Image2 is to be loaded since both plugins | 80 | // Abort when Image2 is to be loaded since both plugins |
81 | // share the same button, command, etc. names (#11222). | 81 | // share the same button, command, etc. names (http://dev.ckeditor.com/ticket/11222). |
82 | if ( editor.plugins.image2 ) | 82 | if ( editor.plugins.image2 ) |
83 | return; | 83 | return; |
84 | 84 | ||
85 | // Customize the behavior of the alignment commands. (#7430) | 85 | // Customize the behavior of the alignment commands. (http://dev.ckeditor.com/ticket/7430) |
86 | setupAlignCommand( 'left' ); | 86 | setupAlignCommand( 'left' ); |
87 | setupAlignCommand( 'right' ); | 87 | setupAlignCommand( 'right' ); |
88 | setupAlignCommand( 'center' ); | 88 | setupAlignCommand( 'center' ); |