new ckeditor

New ckeditor
This commit is contained in:
Francesco Malagrino
2017-03-26 21:10:58 +02:00
parent 87a8e6920e
commit f9caa9759b
4418 changed files with 209667 additions and 2801 deletions

View File

@@ -0,0 +1,193 @@
/**
* @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.dialog.add( 'smiley', function( editor ) {
var config = editor.config,
lang = editor.lang.smiley,
images = config.smiley_images,
columns = config.smiley_columns || 8,
i;
// Simulate "this" of a dialog for non-dialog events.
// @type {CKEDITOR.dialog}
var dialog;
var onClick = function( evt ) {
var target = evt.data.getTarget(),
targetName = target.getName();
if ( targetName == 'a' )
target = target.getChild( 0 );
else if ( targetName != 'img' )
return;
var src = target.getAttribute( 'cke_src' ),
title = target.getAttribute( 'title' );
var img = editor.document.createElement( 'img', {
attributes: {
src: src,
'data-cke-saved-src': src,
title: title,
alt: title,
width: target.$.width,
height: target.$.height
}
} );
editor.insertElement( img );
dialog.hide();
evt.data.preventDefault();
};
var onKeydown = CKEDITOR.tools.addFunction( function( ev, element ) {
ev = new CKEDITOR.dom.event( ev );
element = new CKEDITOR.dom.element( element );
var relative, nodeToMove;
var keystroke = ev.getKeystroke(),
rtl = editor.lang.dir == 'rtl';
switch ( keystroke ) {
// UP-ARROW
case 38:
// relative is TR
if ( ( relative = element.getParent().getParent().getPrevious() ) ) {
nodeToMove = relative.getChild( [ element.getParent().getIndex(), 0 ] );
nodeToMove.focus();
}
ev.preventDefault();
break;
// DOWN-ARROW
case 40:
// relative is TR
if ( ( relative = element.getParent().getParent().getNext() ) ) {
nodeToMove = relative.getChild( [ element.getParent().getIndex(), 0 ] );
if ( nodeToMove )
nodeToMove.focus();
}
ev.preventDefault();
break;
// ENTER
// SPACE
case 32:
onClick( { data: ev } );
ev.preventDefault();
break;
// RIGHT-ARROW
case rtl ? 37 : 39:
// relative is TD
if ( ( relative = element.getParent().getNext() ) ) {
nodeToMove = relative.getChild( 0 );
nodeToMove.focus();
ev.preventDefault( true );
}
// relative is TR
else if ( ( relative = element.getParent().getParent().getNext() ) ) {
nodeToMove = relative.getChild( [ 0, 0 ] );
if ( nodeToMove )
nodeToMove.focus();
ev.preventDefault( true );
}
break;
// LEFT-ARROW
case rtl ? 39 : 37:
// relative is TD
if ( ( relative = element.getParent().getPrevious() ) ) {
nodeToMove = relative.getChild( 0 );
nodeToMove.focus();
ev.preventDefault( true );
}
// relative is TR
else if ( ( relative = element.getParent().getParent().getPrevious() ) ) {
nodeToMove = relative.getLast().getChild( 0 );
nodeToMove.focus();
ev.preventDefault( true );
}
break;
default:
// Do not stop not handled events.
return;
}
} );
// Build the HTML for the smiley images table.
var labelId = CKEDITOR.tools.getNextId() + '_smiley_emtions_label';
var html = [
'<div>' +
'<span id="' + labelId + '" class="cke_voice_label">' + lang.options + '</span>',
'<table role="listbox" aria-labelledby="' + labelId + '" style="width:100%;height:100%;border-collapse:separate;" cellspacing="2" cellpadding="2"',
CKEDITOR.env.ie && CKEDITOR.env.quirks ? ' style="position:absolute;"' : '',
'><tbody>'
];
var size = images.length;
for ( i = 0; i < size; i++ ) {
if ( i % columns === 0 )
html.push( '<tr role="presentation">' );
var smileyLabelId = 'cke_smile_label_' + i + '_' + CKEDITOR.tools.getNextNumber();
html.push(
'<td class="cke_dark_background cke_centered" style="vertical-align: middle;" role="presentation">' +
'<a href="javascript:void(0)" role="option"', ' aria-posinset="' + ( i + 1 ) + '"', ' aria-setsize="' + size + '"', ' aria-labelledby="' + smileyLabelId + '"',
' class="cke_smile cke_hand" tabindex="-1" onkeydown="CKEDITOR.tools.callFunction( ', onKeydown, ', event, this );">',
'<img class="cke_hand" title="', config.smiley_descriptions[ i ], '"' +
' cke_src="', CKEDITOR.tools.htmlEncode( config.smiley_path + images[ i ] ), '" alt="', config.smiley_descriptions[ i ], '"',
' src="', CKEDITOR.tools.htmlEncode( config.smiley_path + images[ i ] ), '"',
// IE BUG: Below is a workaround to an IE image loading bug to ensure the image sizes are correct.
( CKEDITOR.env.ie ? ' onload="this.setAttribute(\'width\', 2); this.removeAttribute(\'width\');" ' : '' ), '>' +
'<span id="' + smileyLabelId + '" class="cke_voice_label">' + config.smiley_descriptions[ i ] + '</span>' +
'</a>', '</td>'
);
if ( i % columns == columns - 1 )
html.push( '</tr>' );
}
if ( i < columns - 1 ) {
for ( ; i < columns - 1; i++ )
html.push( '<td></td>' );
html.push( '</tr>' );
}
html.push( '</tbody></table></div>' );
var smileySelector = {
type: 'html',
id: 'smileySelector',
html: html.join( '' ),
onLoad: function( event ) {
dialog = event.sender;
},
focus: function() {
var self = this;
// IE need a while to move the focus (#6539).
setTimeout( function() {
var firstSmile = self.getElement().getElementsByTag( 'a' ).getItem( 0 );
firstSmile.focus();
}, 0 );
},
onClick: onClick,
style: 'width: 100%; border-collapse: separate;'
};
return {
title: editor.lang.smiley.title,
minWidth: 270,
minHeight: 120,
contents: [ {
id: 'tab1',
label: '',
title: '',
expand: true,
padding: 0,
elements: [
smileySelector
]
} ],
buttons: [ CKEDITOR.dialog.cancelButton ]
};
} );

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 783 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 732 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 795 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 786 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 786 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 506 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 760 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 692 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 999 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 683 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1003 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 660 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 919 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 820 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 782 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 715 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 985 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 714 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 959 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 775 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'af', {
options: 'Lagbekkie opsies',
title: 'Voeg lagbekkie by',
toolbar: 'Lagbekkie'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'ar', {
options: 'خصائص الإبتسامات',
title: 'إدراج ابتسامات',
toolbar: 'ابتسامات'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'az', {
options: 'Smayli-nin seçimləri',
title: 'Smayli-ni daxil et',
toolbar: 'Smayli'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'bg', {
options: 'Опции за усмивката',
title: 'Вмъкване на усмивка',
toolbar: 'Усмивка'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'bn', {
options: 'Smiley Options', // MISSING
title: 'স্মাইলী যুক্ত কর',
toolbar: 'স্মাইলী'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'bs', {
options: 'Smiley Options', // MISSING
title: 'Ubaci smješka',
toolbar: 'Smješko'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'ca', {
options: 'Opcions d\'emoticones',
title: 'Insereix una icona',
toolbar: 'Icona'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'cs', {
options: 'Nastavení smajlíků',
title: 'Vkládání smajlíků',
toolbar: 'Smajlíci'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'cy', {
options: 'Opsiynau Gwenogluniau',
title: 'Mewnosod Gwenoglun',
toolbar: 'Gwenoglun'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'da', {
options: 'Smileymuligheder',
title: 'Vælg smiley',
toolbar: 'Smiley'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'de-ch', {
options: 'Smiley-Optionen',
title: 'Smiley auswählen',
toolbar: 'Smiley'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'de', {
options: 'Smiley-Optionen',
title: 'Smiley auswählen',
toolbar: 'Smiley'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'el', {
options: 'Επιλογές Φατσούλων',
title: 'Εισάγετε μια Φατσούλα',
toolbar: 'Φατσούλα'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'en-au', {
options: 'Smiley Options', // MISSING
title: 'Insert a Smiley',
toolbar: 'Smiley'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'en-ca', {
options: 'Smiley Options', // MISSING
title: 'Insert a Smiley',
toolbar: 'Smiley'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'en-gb', {
options: 'Smiley Options',
title: 'Insert a Smiley',
toolbar: 'Smiley'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'en', {
options: 'Smiley Options',
title: 'Insert a Smiley',
toolbar: 'Smiley'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'eo', {
options: 'Opcioj pri mienvinjetoj',
title: 'Enmeti Mienvinjeton',
toolbar: 'Mienvinjeto'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'es', {
options: 'Opciones de emoticonos',
title: 'Insertar un Emoticon',
toolbar: 'Emoticonos'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'et', {
options: 'Emotikonide valikud',
title: 'Sisesta emotikon',
toolbar: 'Emotikon'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'eu', {
options: 'Aurpegieren aukerak',
title: 'Txertatu aurpegiera',
toolbar: 'Aurpegierak'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'fa', {
options: 'گزینه​های خندانک',
title: 'گنجاندن خندانک',
toolbar: 'خندانک'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'fi', {
options: 'Hymiön ominaisuudet',
title: 'Lisää hymiö',
toolbar: 'Hymiö'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'fo', {
options: 'Møguleikar fyri Smiley',
title: 'Vel Smiley',
toolbar: 'Smiley'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'fr-ca', {
options: 'Options d\'émoticônes',
title: 'Insérer un émoticône',
toolbar: 'Émoticône'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'fr', {
options: 'Options des frimousses',
title: 'Insérer une frimousse',
toolbar: 'Frimousse'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'gl', {
options: 'Opcións de emoticonas',
title: 'Inserir unha emoticona',
toolbar: 'Emoticona'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'gu', {
options: 'સમ્ય્લી વિકલ્પો',
title: 'સ્માઇલી પસંદ કરો',
toolbar: 'સ્માઇલી'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'he', {
options: 'אפשרויות סמיילים',
title: 'הוספת סמיילי',
toolbar: 'סמיילי'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'hi', {
options: 'Smiley Options', // MISSING
title: 'स्माइली इन्सर्ट करें',
toolbar: 'स्माइली'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'hr', {
options: 'Opcije smješka',
title: 'Ubaci smješka',
toolbar: 'Smješko'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'hu', {
options: 'Hangulatjel opciók',
title: 'Hangulatjel beszúrása',
toolbar: 'Hangulatjelek'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'id', {
options: 'Opsi Smiley',
title: 'Sisip sebuah Smiley',
toolbar: 'Smiley'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'is', {
options: 'Smiley Options', // MISSING
title: 'Velja svip',
toolbar: 'Svipur'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'it', {
options: 'Opzioni Smiley',
title: 'Inserisci emoticon',
toolbar: 'Emoticon'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'ja', {
options: '絵文字オプション',
title: '顔文字挿入',
toolbar: '絵文字'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'ka', {
options: 'სიცილაკის პარამეტრები',
title: 'სიცილაკის ჩასმა',
toolbar: 'სიცილაკები'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'km', {
options: 'ជម្រើស​រូប​សញ្ញា​អារម្មណ៍',
title: 'បញ្ចូល​រូប​សញ្ញា​អារម្មណ៍',
toolbar: 'រូប​សញ្ញ​អារម្មណ៍'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'ko', {
options: '이모티콘 옵션',
title: '이모티콘 삽입',
toolbar: '이모티콘'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'ku', {
options: 'هەڵبژاردەی زەردەخەنه',
title: 'دانانی زەردەخەنەیەك',
toolbar: 'زەردەخەنه'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'lt', {
options: 'Šypsenėlių nustatymai',
title: 'Įterpti veidelį',
toolbar: 'Veideliai'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'lv', {
options: 'Smaidiņu uzstādījumi',
title: 'Ievietot smaidiņu',
toolbar: 'Smaidiņi'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'mk', {
options: 'Smiley Options', // MISSING
title: 'Insert a Smiley', // MISSING
toolbar: 'Smiley' // MISSING
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'mn', {
options: 'Smiley Options', // MISSING
title: 'Тодорхойлолт оруулах',
toolbar: 'Тодорхойлолт'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'ms', {
options: 'Smiley Options', // MISSING
title: 'Masukkan Smiley',
toolbar: 'Smiley'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'nb', {
options: 'Alternativer for smil',
title: 'Sett inn smil',
toolbar: 'Smil'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'nl', {
options: 'Smiley opties',
title: 'Smiley invoegen',
toolbar: 'Smiley'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'no', {
options: 'Alternativer for smil',
title: 'Sett inn smil',
toolbar: 'Smil'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'oc', {
options: 'Opcions dels morrons',
title: 'Inserir un morron',
toolbar: 'Morron'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'pl', {
options: 'Opcje emotikonów',
title: 'Wstaw emotikona',
toolbar: 'Emotikony'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'pt-br', {
options: 'Opções de Emoticons',
title: 'Inserir Emoticon',
toolbar: 'Emoticon'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'pt', {
options: 'Opções de Emoticons',
title: 'Inserir um Emoticon',
toolbar: 'Emoticons'
} );

View File

@@ -0,0 +1,9 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'smiley', 'ro', {
options: 'Opțiuni figuri expresive',
title: 'Inserează o figură expresivă (Emoticon)',
toolbar: 'Figură expresivă (Emoticon)'
} );

Some files were not shown because too many files have changed in this diff Show More