new ckeditor
New ckeditor
193
ckeditor/plugins/smiley/dialogs/smiley.js
Normal 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 ]
|
||||
};
|
||||
} );
|
||||
BIN
ckeditor/plugins/smiley/icons/hidpi/smiley.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
ckeditor/plugins/smiley/icons/smiley.png
Normal file
|
After Width: | Height: | Size: 783 B |
BIN
ckeditor/plugins/smiley/images/angel_smile.gif
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
ckeditor/plugins/smiley/images/angel_smile.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
ckeditor/plugins/smiley/images/angry_smile.gif
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
ckeditor/plugins/smiley/images/angry_smile.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
ckeditor/plugins/smiley/images/broken_heart.gif
Normal file
|
After Width: | Height: | Size: 732 B |
BIN
ckeditor/plugins/smiley/images/broken_heart.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
ckeditor/plugins/smiley/images/confused_smile.gif
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
ckeditor/plugins/smiley/images/confused_smile.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
ckeditor/plugins/smiley/images/cry_smile.gif
Normal file
|
After Width: | Height: | Size: 795 B |
BIN
ckeditor/plugins/smiley/images/cry_smile.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
ckeditor/plugins/smiley/images/devil_smile.gif
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
ckeditor/plugins/smiley/images/devil_smile.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
ckeditor/plugins/smiley/images/embaressed_smile.gif
Normal file
|
After Width: | Height: | Size: 786 B |
BIN
ckeditor/plugins/smiley/images/embarrassed_smile.gif
Normal file
|
After Width: | Height: | Size: 786 B |
BIN
ckeditor/plugins/smiley/images/embarrassed_smile.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
ckeditor/plugins/smiley/images/envelope.gif
Normal file
|
After Width: | Height: | Size: 506 B |
BIN
ckeditor/plugins/smiley/images/envelope.png
Normal file
|
After Width: | Height: | Size: 760 B |
BIN
ckeditor/plugins/smiley/images/heart.gif
Normal file
|
After Width: | Height: | Size: 692 B |
BIN
ckeditor/plugins/smiley/images/heart.png
Normal file
|
After Width: | Height: | Size: 999 B |
BIN
ckeditor/plugins/smiley/images/kiss.gif
Normal file
|
After Width: | Height: | Size: 683 B |
BIN
ckeditor/plugins/smiley/images/kiss.png
Normal file
|
After Width: | Height: | Size: 1003 B |
BIN
ckeditor/plugins/smiley/images/lightbulb.gif
Normal file
|
After Width: | Height: | Size: 660 B |
BIN
ckeditor/plugins/smiley/images/lightbulb.png
Normal file
|
After Width: | Height: | Size: 919 B |
BIN
ckeditor/plugins/smiley/images/omg_smile.gif
Normal file
|
After Width: | Height: | Size: 820 B |
BIN
ckeditor/plugins/smiley/images/omg_smile.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
ckeditor/plugins/smiley/images/regular_smile.gif
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
ckeditor/plugins/smiley/images/regular_smile.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
ckeditor/plugins/smiley/images/sad_smile.gif
Normal file
|
After Width: | Height: | Size: 782 B |
BIN
ckeditor/plugins/smiley/images/sad_smile.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
ckeditor/plugins/smiley/images/shades_smile.gif
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
ckeditor/plugins/smiley/images/shades_smile.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
ckeditor/plugins/smiley/images/teeth_smile.gif
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
ckeditor/plugins/smiley/images/teeth_smile.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
ckeditor/plugins/smiley/images/thumbs_down.gif
Normal file
|
After Width: | Height: | Size: 715 B |
BIN
ckeditor/plugins/smiley/images/thumbs_down.png
Normal file
|
After Width: | Height: | Size: 985 B |
BIN
ckeditor/plugins/smiley/images/thumbs_up.gif
Normal file
|
After Width: | Height: | Size: 714 B |
BIN
ckeditor/plugins/smiley/images/thumbs_up.png
Normal file
|
After Width: | Height: | Size: 959 B |
BIN
ckeditor/plugins/smiley/images/tongue_smile.gif
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
ckeditor/plugins/smiley/images/tongue_smile.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
ckeditor/plugins/smiley/images/tounge_smile.gif
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif
Normal file
|
After Width: | Height: | Size: 775 B |
BIN
ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
ckeditor/plugins/smiley/images/wink_smile.gif
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
ckeditor/plugins/smiley/images/wink_smile.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
9
ckeditor/plugins/smiley/lang/af.js
Normal 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'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/ar.js
Normal 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: 'ابتسامات'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/az.js
Normal 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'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/bg.js
Normal 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: 'Усмивка'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/bn.js
Normal 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: 'স্মাইলী'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/bs.js
Normal 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'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/ca.js
Normal 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'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/cs.js
Normal 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'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/cy.js
Normal 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'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/da.js
Normal 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'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/de-ch.js
Normal 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'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/de.js
Normal 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'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/el.js
Normal 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: 'Φατσούλα'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/en-au.js
Normal 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'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/en-ca.js
Normal 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'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/en-gb.js
Normal 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'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/en.js
Normal 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'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/eo.js
Normal 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'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/es.js
Normal 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'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/et.js
Normal 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'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/eu.js
Normal 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'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/fa.js
Normal 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: 'خندانک'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/fi.js
Normal 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ö'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/fo.js
Normal 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'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/fr-ca.js
Normal 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'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/fr.js
Normal 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'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/gl.js
Normal 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'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/gu.js
Normal 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: 'સ્માઇલી'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/he.js
Normal 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: 'סמיילי'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/hi.js
Normal 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: 'स्माइली'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/hr.js
Normal 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'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/hu.js
Normal 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'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/id.js
Normal 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'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/is.js
Normal 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'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/it.js
Normal 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'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/ja.js
Normal 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: '絵文字'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/ka.js
Normal 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: 'სიცილაკები'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/km.js
Normal 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: 'រូបសញ្ញអារម្មណ៍'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/ko.js
Normal 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: '이모티콘'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/ku.js
Normal 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: 'زەردەخەنه'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/lt.js
Normal 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'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/lv.js
Normal 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'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/mk.js
Normal 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
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/mn.js
Normal 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: 'Тодорхойлолт'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/ms.js
Normal 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'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/nb.js
Normal 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'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/nl.js
Normal 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'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/no.js
Normal 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'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/oc.js
Normal 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'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/pl.js
Normal 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'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/pt-br.js
Normal 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'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/pt.js
Normal 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'
|
||||
} );
|
||||
9
ckeditor/plugins/smiley/lang/ro.js
Normal 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)'
|
||||
} );
|
||||