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

@@ -1,7 +1,73 @@
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.dialog.add("about",function(a){var a=a.lang.about,b=CKEDITOR.plugins.get("about").path+"dialogs/"+(CKEDITOR.env.hidpi?"hidpi/":"")+"logo_ckeditor.png";return{title:CKEDITOR.env.ie?a.dlgTitle:a.title,minWidth:390,minHeight:230,contents:[{id:"tab1",label:"",title:"",expand:!0,padding:0,elements:[{type:"html",html:'<style type="text/css">.cke_about_container{color:#000 !important;padding:10px 10px 0;margin-top:5px}.cke_about_container p{margin: 0 0 10px;}.cke_about_container .cke_about_logo{height:81px;background-color:#fff;background-image:url('+
b+");"+(CKEDITOR.env.hidpi?"background-size:163px 58px;":"")+'background-position:center; background-repeat:no-repeat;margin-bottom:10px;}.cke_about_container a{cursor:pointer !important;color:#00B2CE !important;text-decoration:underline !important;}</style><div class="cke_about_container"><div class="cke_about_logo"></div><p>CKEditor '+CKEDITOR.version+" (revision "+CKEDITOR.revision+')<br><a href="http://ckeditor.com/">http://ckeditor.com</a></p><p>'+a.help.replace("$1",'<a href="http://docs.ckeditor.com/user">'+
a.userGuide+"</a>")+"</p><p>"+a.moreInfo+'<br><a href="http://ckeditor.com/about/license">http://ckeditor.com/about/license</a></p><p>'+a.copy.replace("$1",'<a href="http://cksource.com/">CKSource</a> - Frederico Knabben')+"</p></div>"}]}],buttons:[CKEDITOR.dialog.cancelButton]}});
/**
* @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.dialog.add( 'about', function( editor ) {
var lang = editor.lang.about,
imagePath = CKEDITOR.getUrl( CKEDITOR.plugins.get( 'about' ).path + 'dialogs/' + ( CKEDITOR.env.hidpi ? 'hidpi/' : '' ) + 'logo_ckeditor.png' );
return {
title: CKEDITOR.env.ie ? lang.dlgTitle : lang.title,
minWidth: 390,
minHeight: 230,
contents: [ {
id: 'tab1',
label: '',
title: '',
expand: true,
padding: 0,
elements: [
{
type: 'html',
html: '<style type="text/css">' +
'.cke_about_container' +
'{' +
'color:#000 !important;' +
'padding:10px 10px 0;' +
'margin-top:5px' +
'}' +
'.cke_about_container p' +
'{' +
'margin: 0 0 10px;' +
'}' +
'.cke_about_container .cke_about_logo' +
'{' +
'height:81px;' +
'background-color:#fff;' +
'background-image:url(' + imagePath + ');' +
( CKEDITOR.env.hidpi ? 'background-size:163px 58px;' : '' ) +
'background-position:center; ' +
'background-repeat:no-repeat;' +
'margin-bottom:10px;' +
'}' +
'.cke_about_container a' +
'{' +
'cursor:pointer !important;' +
'color:#00B2CE !important;' +
'text-decoration:underline !important;' +
'}' +
'</style>' +
'<div class="cke_about_container">' +
'<div class="cke_about_logo"></div>' +
'<p>' +
'CKEditor ' + CKEDITOR.version + ' (revision ' + CKEDITOR.revision + ')<br>' +
'<a target="_blank" rel="noopener noreferrer" href="http://ckeditor.com/">http://ckeditor.com</a>' +
'</p>' +
'<p>' +
lang.help.replace( '$1', '<a target="_blank" rel="noopener noreferrer" href="http://docs.ckeditor.com/user">' + lang.userGuide + '</a>' ) +
'</p>' +
'<p>' +
lang.moreInfo + '<br>' +
'<a target="_blank" rel="noopener noreferrer" href="http://ckeditor.com/about/license">http://ckeditor.com/about/license</a>' +
'</p>' +
'<p>' +
lang.copy.replace( '$1', '<a target="_blank" rel="noopener noreferrer" href="http://cksource.com/">CKSource</a> - Frederico Knabben' ) +
'</p>' +
'</div>'
}
]
} ],
buttons: [ CKEDITOR.dialog.cancelButton ]
};
} );

Binary file not shown.

After

Width:  |  Height:  |  Size: 725 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'af', {
copy: 'Kopiereg &copy; $1. Alle regte voorbehou.',
dlgTitle: 'Meer oor CKEditor',
help: 'Slaan $1 na vir hulp.',
moreInfo: 'Vir lisensie-informasie, besoek asb. ons webwerf:',
title: 'Meer oor CKEditor',
userGuide: 'CKEditor Gebruikers gits'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'ar', {
copy: 'حقوق النشر &copy; $1. جميع الحقوق محفوظة.',
dlgTitle: 'عن CKEditor',
help: 'راجع $1 من أجل المساعدة',
moreInfo: 'للحصول على معلومات الترخيص ، يرجى زيارة موقعنا:',
title: 'عن CKEditor',
userGuide: 'دليل مستخدم CKEditor.'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'az', {
copy: 'Copyright &copy; $1. Bütün hüquqlar qorunur.',
dlgTitle: 'CKEditor haqqında',
help: 'Kömək üçün $1 seçin',
moreInfo: 'Lisenziya informasiyası üçün zəhmət olmasa saytımızı ziyarət edin:',
title: 'CKEditor haqqında',
userGuide: 'CKEditor İstifadəçilər üçün kitabça'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'bg', {
copy: 'Copyright &copy; $1. All rights reserved.',
dlgTitle: 'Относно CKEditor',
help: 'Проверете $1 за помощ.',
moreInfo: 'За лицензионна информация моля посетете сайта ни:',
title: 'Относно CKEditor',
userGuide: 'CKEditor User\'s Guide'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'bn', {
copy: 'Copyright &copy; $1. All rights reserved.', // MISSING
dlgTitle: 'About CKEditor', // MISSING
help: 'Check $1 for help.', // MISSING
moreInfo: 'For licensing information please visit our web site:', // MISSING
title: 'About CKEditor', // MISSING
userGuide: 'CKEditor User\'s Guide' // MISSING
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'bs', {
copy: 'Copyright &copy; $1. All rights reserved.', // MISSING
dlgTitle: 'About CKEditor', // MISSING
help: 'Check $1 for help.', // MISSING
moreInfo: 'For licensing information please visit our web site:', // MISSING
title: 'About CKEditor', // MISSING
userGuide: 'CKEditor User\'s Guide'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'ca', {
copy: 'Copyright &copy; $1. Tots els drets reservats.',
dlgTitle: 'Quant al CKEditor',
help: 'Premi $1 per obtenir ajuda.',
moreInfo: 'Per informació sobre llicències visiteu el nostre lloc web:',
title: 'Quant al CKEditor',
userGuide: 'Manual d\'usuari de CKEditor'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'cs', {
copy: 'Copyright &copy; $1. All rights reserved.',
dlgTitle: 'O aplikaci CKEditor',
help: 'Prohlédněte si $1 pro nápovědu.',
moreInfo: 'Pro informace o lincenci navštivte naši webovou stránku:',
title: 'O aplikaci CKEditor',
userGuide: 'Uživatelská příručka CKEditor'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'cy', {
copy: 'Hawlfraint &copy; $1. Cedwir pob hawl.',
dlgTitle: 'Ynghylch CKEditor',
help: 'Gwirio $1 am gymorth.',
moreInfo: 'Am wybodaeth ynghylch trwyddedau, ewch i\'n gwefan:',
title: 'Ynghylch CKEditor',
userGuide: 'Canllawiau Defnyddiwr CKEditor'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'da', {
copy: 'Copyright &copy; $1. Alle rettigheder forbeholdes.',
dlgTitle: 'Om CKEditor',
help: 'Se $1 for at få hjælp.',
moreInfo: 'For informationer omkring licens, se venligst vores hjemmeside (på engelsk):',
title: 'Om CKEditor',
userGuide: 'CKEditor-brugermanual'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'de-ch', {
copy: 'Copyright &copy; $1. Alle Rechte vorbehalten.',
dlgTitle: 'Über CKEditor',
help: 'Prüfen Sie $1 für Hilfe.',
moreInfo: 'Für Informationen über unsere Lizenzbestimmungen besuchen sie bitte unsere Webseite:',
title: 'Über CKEditor',
userGuide: 'CKEditor Benutzerhandbuch'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'de', {
copy: 'Copyright &copy; $1. Alle Rechte vorbehalten.',
dlgTitle: 'Über CKEditor',
help: 'Prüfen Sie $1 für Hilfe.',
moreInfo: 'Für Informationen über unsere Lizenzbestimmungen besuchen sie bitte unsere Webseite:',
title: 'Über CKEditor',
userGuide: 'CKEditor Benutzerhandbuch'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'el', {
copy: 'Πνευματικά δικαιώματα &copy; $1 Με επιφύλαξη παντός δικαιώματος.',
dlgTitle: 'Περί του CKEditor',
help: 'Ελέγξτε τις $1 για βοήθεια.',
moreInfo: 'Για πληροφορίες σχετικές με την άδεια χρήσης, παρακαλούμε επισκεφθείτε την ιστοσελίδα μας:',
title: 'Περί του CKEditor',
userGuide: 'Οδηγίες Χρήστη CKEditor'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'en-au', {
copy: 'Copyright &copy; $1. All rights reserved.',
dlgTitle: 'About CKEditor',
help: 'Check $1 for help.', // MISSING
moreInfo: 'For licensing information please visit our web site:',
title: 'About CKEditor',
userGuide: 'CKEditor User\'s Guide'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'en-ca', {
copy: 'Copyright &copy; $1. All rights reserved.',
dlgTitle: 'About CKEditor',
help: 'Check $1 for help.', // MISSING
moreInfo: 'For licensing information please visit our web site:',
title: 'About CKEditor',
userGuide: 'CKEditor User\'s Guide'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'en-gb', {
copy: 'Copyright &copy; $1. All rights reserved.',
dlgTitle: 'About CKEditor',
help: 'Check $1 for help.',
moreInfo: 'For licensing information please visit our web site:',
title: 'About CKEditor',
userGuide: 'CKEditor User\'s Guide'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'en', {
copy: 'Copyright &copy; $1. All rights reserved.',
dlgTitle: 'About CKEditor',
help: 'Check $1 for help.',
moreInfo: 'For licensing information please visit our web site:',
title: 'About CKEditor',
userGuide: 'CKEditor User\'s Guide'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'eo', {
copy: 'Copyright &copy; $1. Ĉiuj rajtoj rezervitaj.',
dlgTitle: 'Pri CKEditor',
help: 'Kontroli $1 por helpo.',
moreInfo: 'Por informoj pri licenco, bonvolu viziti nian retpaĝaron:',
title: 'Pri CKEditor',
userGuide: 'CKEditor Uzindikoj'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'es', {
copy: 'Copyright &copy; $1. Todos los derechos reservados.',
dlgTitle: 'Acerca de CKEditor',
help: 'Lea la $1 para resolver sus dudas.',
moreInfo: 'Para información de licencia, por favor visite nuestro sitio web:',
title: 'Acerca de CKEditor',
userGuide: 'Guía de usuario de CKEditor'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'et', {
copy: 'Copyright &copy; $1. Kõik õigused kaitstud.',
dlgTitle: 'CKEditorist',
help: 'Abi jaoks vaata $1.',
moreInfo: 'Litsentsi andmed leiab meie veebilehelt:',
title: 'CKEditorist',
userGuide: 'CKEditori kasutusjuhendit'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'eu', {
copy: 'Copyright &copy; $1. Eskubide guztiak erreserbaturik.',
dlgTitle: 'CKEditor-i buruz',
help: 'Begiratu $1 laguntzarako.',
moreInfo: 'Lizentziari buruzko informazioa gure webgunean:',
title: 'CKEditor-i buruz',
userGuide: 'CKEditor-en erabiltzaile-gida'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'fa', {
copy: 'حق نشر &copy; $1. کلیه حقوق محفوظ است.',
dlgTitle: 'درباره CKEditor',
help: ' برای راهنمایی $1 را ملاحظه کنید.',
moreInfo: 'برای کسب اطلاعات مجوز لطفا به وب سایت ما مراجعه کنید:',
title: 'درباره CKEditor',
userGuide: 'راهنمای کاربران CKEditor'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'fi', {
copy: 'Copyright &copy; $1. Kaikki oikeuden pidätetään.',
dlgTitle: 'Tietoa CKEditorista',
help: 'Katso ohjeet: $1.',
moreInfo: 'Lisenssitiedot löytyvät kotisivuiltamme:',
title: 'Tietoa CKEditorista',
userGuide: 'CKEditorin käyttäjäopas'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'fo', {
copy: 'Copyright &copy; $1. All rights reserved.',
dlgTitle: 'Um CKEditor',
help: 'Kekka $1 fyri hjálp.',
moreInfo: 'Licens upplýsingar finnast á heimasíðu okkara:',
title: 'Um CKEditor',
userGuide: 'CKEditor Brúkaravegleiðing'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'fr-ca', {
copy: 'Copyright &copy; $1. Tous droits réservés.',
dlgTitle: 'À propos de CKEditor',
help: 'Consulter $1 pour l\'aide.',
moreInfo: 'Pour les informations de licence, consulter notre site internet:',
title: 'À propos de CKEditor',
userGuide: 'Guide utilisateur de CKEditor'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'fr', {
copy: 'Copyright &copy; $1. Tous droits réservés.',
dlgTitle: 'À propos de CKEditor',
help: 'Consulter $1 pour obtenir de l\'aide.',
moreInfo: 'Pour les informations de licence, veuillez visiter notre site web :',
title: 'À propos de CKEditor',
userGuide: 'Guide de l\'utilisateur CKEditor (en anglais)'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'gl', {
copy: 'Copyright &copy; $1. Todos os dereitos reservados.',
dlgTitle: 'Sobre o CKEditor',
help: 'Consulte $1 para obter axuda.',
moreInfo: 'Para obter información sobre a licenza, visite o noso sitio web:',
title: 'Sobre o CKEditor',
userGuide: 'Guía do usuario do CKEditor'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'gu', {
copy: 'કોપીરાઈટ &copy; $1. ઓલ રાઈટ્સ ',
dlgTitle: 'CKEditor વિષે',
help: 'મદદ માટે $1 તપાસો',
moreInfo: 'લાયસનસની માહિતી માટે અમારી વેબ સાઈટ',
title: 'CKEditor વિષે',
userGuide: 'CKEditor યુઝર્સ ગાઈડ'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'he', {
copy: 'Copyright &copy; $1. כל הזכויות שמורות.',
dlgTitle: 'אודות CKEditor',
help: 'היכנסו ל$1 לעזרה.',
moreInfo: 'למידע נוסף בקרו באתרנו:',
title: 'אודות CKEditor',
userGuide: 'מדריך המשתמש של CKEditor'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'hi', {
copy: 'Copyright &copy; $1. All rights reserved.', // MISSING
dlgTitle: 'About CKEditor', // MISSING
help: 'Check $1 for help.', // MISSING
moreInfo: 'For licensing information please visit our web site:', // MISSING
title: 'About CKEditor', // MISSING
userGuide: 'CKEditor User\'s Guide'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'hr', {
copy: 'Copyright &copy; $1. All rights reserved.',
dlgTitle: 'O CKEditoru',
help: 'Provjeri $1 za pomoć.',
moreInfo: 'Za informacije o licencama posjetite našu web stranicu:',
title: 'O CKEditoru',
userGuide: 'Vodič za CKEditor korisnike'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'hu', {
copy: 'Copyright &copy; $1. Minden jog fenntartva.',
dlgTitle: 'CKEditor névjegy',
help: 'Itt találsz segítséget: $1',
moreInfo: 'Licenszelési információkért kérjük látogassa meg weboldalunkat:',
title: 'CKEditor névjegy',
userGuide: 'CKEditor Felhasználói útmutató'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'id', {
copy: 'Hak cipta &copy; $1. All rights reserved.',
dlgTitle: 'Tentang CKEditor',
help: 'Cel $1 untuk bantuan.',
moreInfo: 'Untuk informasi lisensi silahkan kunjungi web site kami:',
title: 'Tentang CKEditor',
userGuide: 'Petunjuk Pengguna CKEditor'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'is', {
copy: 'Copyright &copy; $1. All rights reserved.', // MISSING
dlgTitle: 'About CKEditor', // MISSING
help: 'Check $1 for help.', // MISSING
moreInfo: 'For licensing information please visit our web site:', // MISSING
title: 'About CKEditor', // MISSING
userGuide: 'CKEditor User\'s Guide' // MISSING
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'it', {
copy: 'Copyright &copy; $1. Tutti i diritti riservati.',
dlgTitle: 'Riguardo CKEditor',
help: 'Vedi $1 per l\'aiuto.',
moreInfo: 'Per le informazioni sulla licenza si prega di visitare il nostro sito:',
title: 'Riguardo CKEditor',
userGuide: 'Guida Utente CKEditor'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'ja', {
copy: 'Copyright &copy; $1. All rights reserved.',
dlgTitle: 'CKEditorについて',
help: '$1 のヘルプを見てください。',
moreInfo: 'ライセンス情報の詳細はウェブサイトにて確認してください:',
title: 'CKEditorについて',
userGuide: 'CKEditor User\'s Guide'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'ka', {
copy: 'Copyright &copy; $1. ყველა უფლება დაცულია.',
dlgTitle: 'CKEditor-ის შესახებ',
help: 'დახმარებისთვის იხილეთ $1.',
moreInfo: 'ლიცენზიის ინფორმაციისთვის ეწვიეთ ჩვენს საიტს:',
title: 'CKEditor-ის შესახებ',
userGuide: 'CKEditor-ის მომხმარებლის სახელმძღვანელო'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'km', {
copy: 'រក្សាសិទ្ធិ &copy; $1។ រក្សា​សិទ្ធិ​គ្រប់​បែប​យ៉ាង។',
dlgTitle: 'អំពី CKEditor',
help: 'ពិនិត្យ $1 សម្រាប់​ជំនួយ។',
moreInfo: 'សម្រាប់​ព័ត៌មាន​អំពី​អាជ្ញាបណញណ សូម​មើល​ក្នុង​គេហទំព័រ​របស់​យើង៖',
title: 'អំពី CKEditor',
userGuide: 'វិធី​ប្រើ​ប្រាស់ CKEditor'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'ko', {
copy: '저작권 &copy; $1 . 판권 소유.',
dlgTitle: 'CKEditor 에 대하여',
help: '도움이 필요하시면 $1 를 확인하세요.',
moreInfo: '라이선스에 대한 정보는 저희 웹 사이트를 참고하세요:',
title: 'CKEditor에 대하여',
userGuide: 'CKEditor 사용설명서'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'ku', {
copy: 'مافی لەبەرگەرتنەوەی &copy; $1. گشتی پارێزراوه. ورگێڕانی بۆ کوردی لەلایەن هۆژە کۆیی.',
dlgTitle: 'دەربارەی CKEditor',
help: 'سەیری $1 بکه بۆ یارمەتی.',
moreInfo: 'بۆ زانیاری زیاتر دەربارەی مۆڵەتی بەکارهێنان، تکایه سەردانی ماڵپەڕەکەمان بکه:',
title: 'دەربارەی CKEditor',
userGuide: 'ڕێپیشاندەری CKEditors'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'lt', {
copy: 'Copyright &copy; $1. Visos teiss saugomos.',
dlgTitle: 'Apie CKEditor',
help: 'Patikrinkite $1 dėl pagalbos.',
moreInfo: 'Dėl licencijavimo apsilankykite mūsų svetainėje:',
title: 'Apie CKEditor',
userGuide: 'CKEditor Vartotojo Gidas'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'lv', {
copy: 'Kopēšanas tiesības &copy; $1. Visas tiesības rezervētas.',
dlgTitle: 'Par CKEditor',
help: 'Pārbaudiet $1 palīdzībai.',
moreInfo: 'Informācijai par licenzēšanu apmeklējiet mūsu mājas lapu:',
title: 'Par CKEditor',
userGuide: 'CKEditor Lietotāja pamācība'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'mk', {
copy: 'Авторски права &copy; $1. Сите права се задржани.',
dlgTitle: 'За CKEditor',
help: 'Отворете $1 за помош.',
moreInfo: 'За информации околу лиценцата, ве молиме посетете го нашиот веб-сајт: ',
title: 'За CKEditor',
userGuide: 'CKEditor упатство за корисници'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'mn', {
copy: 'Copyright &copy; $1. All rights reserved.', // MISSING
dlgTitle: 'About CKEditor', // MISSING
help: 'Check $1 for help.', // MISSING
moreInfo: 'For licensing information please visit our web site:', // MISSING
title: 'About CKEditor', // MISSING
userGuide: 'CKEditor User\'s Guide'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'ms', {
copy: 'Copyright &copy; $1. All rights reserved.', // MISSING
dlgTitle: 'About CKEditor', // MISSING
help: 'Check $1 for help.', // MISSING
moreInfo: 'For licensing information please visit our web site:', // MISSING
title: 'About CKEditor', // MISSING
userGuide: 'CKEditor User\'s Guide' // MISSING
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'nb', {
copy: 'Copyright &copy; $1. Alle rettigheter reservert.',
dlgTitle: 'Om CKEditor',
help: 'Se $1 for hjelp.',
moreInfo: 'For lisensieringsinformasjon, vennligst besøk vårt nettsted:',
title: 'Om CKEditor',
userGuide: 'CKEditors brukerveiledning'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'nl', {
copy: 'Copyright &copy; $1. Alle rechten voorbehouden.',
dlgTitle: 'Over CKEditor',
help: 'Bekijk de $1 voor hulp.',
moreInfo: 'Bezoek onze website voor licentieinformatie:',
title: 'Over CKEditor',
userGuide: 'CKEditor gebruiksaanwijzing'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'no', {
copy: 'Copyright &copy; $1. Alle rettigheter reservert.',
dlgTitle: 'Om CKEditor',
help: 'Se $1 for hjelp.',
moreInfo: 'For lisensieringsinformasjon, vennligst besøk vårt nettsted:',
title: 'Om CKEditor',
userGuide: 'CKEditors brukerveiledning'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'oc', {
copy: 'Copyright &copy; $1. Totes los dreits reservats.',
dlgTitle: 'A prepaus de CKEditor',
help: 'Consultar $1 per obténer d\'ajuda.',
moreInfo: 'Per las informacions de licéncia, visitatz nòstre site web :',
title: 'A prepaus de CKEditor',
userGuide: 'Guida de l\'utilizaire CKEditor (en anglés)'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'pl', {
copy: 'Copyright &copy; $1. Wszelkie prawa zastrzeżone.',
dlgTitle: 'Informacje o programie CKEditor',
help: 'Pomoc znajdziesz w $1.',
moreInfo: 'Informacje na temat licencji można znaleźć na naszej stronie:',
title: 'Informacje o programie CKEditor',
userGuide: 'podręczniku użytkownika programu CKEditor'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'pt-br', {
copy: 'Copyright &copy; $1. Todos os direitos reservados.',
dlgTitle: 'Sobre o CKEditor',
help: 'Verifique o $1 para obter ajuda.',
moreInfo: 'Para informações sobre a licença por favor visite o nosso site:',
title: 'Sobre o CKEditor',
userGuide: 'Guia do Usuário do CKEditor'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'pt', {
copy: 'Direitos de Autor &copy; $1. Todos os direitos reservados.',
dlgTitle: 'Sobre o CKEditor',
help: 'Doar $1 para ajudar.',
moreInfo: 'Para informação sobre licenciamento visite o nosso sítio web:',
title: 'Sobre o CKEditor',
userGuide: 'CKEditor - Guia do utilizador'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'ro', {
copy: 'Copyright &copy; $1. Toate drepturile rezervate.',
dlgTitle: 'Despre CKEeditor',
help: 'Citește $1 pentru ajutor.',
moreInfo: 'Pentru informații despre licență, vă rugăm vizitați web site-ul nostru:',
title: 'Despre CKEditor',
userGuide: 'CKEditor Ghid Utilizator'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'ru', {
copy: 'Copyright &copy; $1. Все права защищены.',
dlgTitle: 'О CKEditor',
help: '$1 содержит подробную справку по использованию.',
moreInfo: 'Для получения информации о лицензии, пожалуйста, перейдите на наш сайт:',
title: 'О CKEditor',
userGuide: 'Руководство пользователя CKEditor'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'si', {
copy: 'පිටපත් අයිතිය සහ පිටපත් කිරීම;$1 .සියලුම හිමිකම් ඇවිරිණි.',
dlgTitle: 'CKEditor ගැන විස්තර',
help: 'උදව් සඳහා $1 ',
moreInfo: 'බලපත්‍ර තොරතුරු සදහා කරුණාකර අපගේ විද්‍යුත් ලිපිනයට පිවිසෙන්න:',
title: 'CKEditor ගැන විස්තර',
userGuide: 'CKEditor භාවිතා කිරීම පිළිබඳ '
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'sk', {
copy: 'Copyright &copy; $1. Všetky práva vyhradené.',
dlgTitle: 'O CKEditor-e',
help: 'Zaškrtnite $1 pre pomoc.',
moreInfo: 'Pre informácie o licenciách, prosíme, navštívte našu web stránku:',
title: 'O CKEditor-e',
userGuide: 'Používateľská príručka KCEditor-a'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'sl', {
copy: 'Copyright &copy; $1. Vse pravice pridržane.',
dlgTitle: 'O programu CKEditor',
help: 'Oglejte si $1 za pomoč.',
moreInfo: 'Za informacije o licenciranju prosimo obiščite našo spletno stran:',
title: 'O programu CKEditor',
userGuide: 'Uporabniški vodnik CKEditor'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'sq', {
copy: 'Të drejtat e kopjimit &copy; $1. Të gjitha të drejtat e rezervuara.',
dlgTitle: 'Rreth CKEditor',
help: 'Kontrollo $1 për ndihmë.',
moreInfo: 'Për informacione rreth licencave shih faqen tonë:',
title: 'Rreth CKEditor',
userGuide: 'Udhëzuesi i Shfrytëzuesit të CKEditor'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'sr-latn', {
copy: 'Copyright &copy; $1. All rights reserved.', // MISSING
dlgTitle: 'About CKEditor', // MISSING
help: 'Check $1 for help.', // MISSING
moreInfo: 'For licensing information please visit our web site:', // MISSING
title: 'About CKEditor', // MISSING
userGuide: 'CKEditor User\'s Guide' // MISSING
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'sr', {
copy: 'Copyright &copy; $1. All rights reserved.', // MISSING
dlgTitle: 'About CKEditor', // MISSING
help: 'Check $1 for help.', // MISSING
moreInfo: 'For licensing information please visit our web site:', // MISSING
title: 'About CKEditor', // MISSING
userGuide: 'CKEditor User\'s Guide' // MISSING
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'sv', {
copy: 'Copyright &copy; $1. Alla rättigheter reserverade.',
dlgTitle: 'Om CKEditor',
help: 'Se $1 för hjälp.',
moreInfo: 'För information om licensiering besök vår hemsida:',
title: 'Om CKEditor',
userGuide: 'CKEditor användarmanual'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'th', {
copy: 'Copyright &copy; $1. All rights reserved.', // MISSING
dlgTitle: 'About CKEditor', // MISSING
help: 'Check $1 for help.', // MISSING
moreInfo: 'For licensing information please visit our web site:', // MISSING
title: 'About CKEditor', // MISSING
userGuide: 'CKEditor User\'s Guide'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'tr', {
copy: 'Copyright &copy; $1. Tüm hakları saklıdır.',
dlgTitle: 'CKEditor Hakkında',
help: 'Yardım için $1 kontrol edin.',
moreInfo: 'Lisanslama hakkında daha fazla bilgi almak için lütfen sitemizi ziyaret edin:',
title: 'CKEditor Hakkında',
userGuide: 'CKEditor Kullanıcı Kılavuzu'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'tt', {
copy: 'Copyright &copy; $1. Бар хокуклар сакланган',
dlgTitle: 'CKEditor турында',
help: 'Ярдәм өчен $1 тикшереп карагыз.',
moreInfo: 'For licensing information please visit our web site:', // MISSING
title: 'CKEditor турында',
userGuide: 'CKEditor кулланмасы'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'ug', {
copy: 'Copyright &copy; $1. نەشر ھوقۇقىغا ئىگە',
dlgTitle: 'CKEditor ھەققىدە',
help: '$1 نى زىيارەت قىلىپ ياردەمگە ئېرىشىڭ',
moreInfo: 'تور تۇرايىمىزنى زىيارەت قىلىپ كېلىشىمگە ئائىت تېخىمۇ كۆپ ئۇچۇرغا ئېرىشىڭ',
title: 'CKEditor ھەققىدە',
userGuide: 'CKEditor ئىشلەتكۈچى قوللانمىسى'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'uk', {
copy: 'Copyright &copy; $1. Всі права застережено.',
dlgTitle: 'Про CKEditor',
help: 'Перевірте $1 для допомоги.',
moreInfo: 'Щодо інформації з ліцензування завітайте на наш сайт:',
title: 'Про CKEditor',
userGuide: 'Інструкція Користувача для CKEditor'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'vi', {
copy: 'Bản quyền &copy; $1. Giữ toàn quyền.',
dlgTitle: 'Thông tin về CKEditor',
help: 'Kiểm tra $1 để được giúp đỡ.',
moreInfo: 'Vui lòng ghé thăm trang web của chúng tôi để có thông tin về giấy phép:',
title: 'Thông tin về CKEditor',
userGuide: 'Hướng dẫn sử dụng CKEditor'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'zh-cn', {
copy: '版权所有 &copy; $1。<br />保留所有权利。',
dlgTitle: '关于 CKEditor',
help: '访问 $1 以获取帮助。',
moreInfo: '相关授权许可信息请访问我们的网站:',
title: '关于 CKEditor',
userGuide: 'CKEditor 用户向导'
} );

View File

@@ -0,0 +1,12 @@
/*
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'about', 'zh', {
copy: 'Copyright &copy; $1. All rights reserved.',
dlgTitle: '關於 CKEditor',
help: '檢閱 $1 尋求幫助。',
moreInfo: '關於授權資訊,請參閱我們的網站:',
title: '關於 CKEditor',
userGuide: 'CKEditor 使用者手冊'
} );

View File

@@ -0,0 +1,27 @@
/**
* @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.add( 'about', {
requires: 'dialog',
// jscs:disable maximumLineLength
lang: 'af,ar,az,bg,bn,bs,ca,cs,cy,da,de,de-ch,el,en,en-au,en-ca,en-gb,eo,es,et,eu,fa,fi,fo,fr,fr-ca,gl,gu,he,hi,hr,hu,id,is,it,ja,ka,km,ko,ku,lt,lv,mk,mn,ms,nb,nl,no,oc,pl,pt,pt-br,ro,ru,si,sk,sl,sq,sr,sr-latn,sv,th,tr,tt,ug,uk,vi,zh,zh-cn', // %REMOVE_LINE_CORE%
// jscs:enable maximumLineLength
icons: 'about', // %REMOVE_LINE_CORE%
hidpi: true, // %REMOVE_LINE_CORE%
init: function( editor ) {
var command = editor.addCommand( 'about', new CKEDITOR.dialogCommand( 'about' ) );
command.modes = { wysiwyg: 1, source: 1 };
command.canUndo = false;
command.readOnly = 1;
editor.ui.addButton && editor.ui.addButton( 'About', {
label: editor.lang.about.title,
command: 'about',
toolbar: 'about'
} );
CKEDITOR.dialog.add( 'about', this.path + 'dialogs/about.js' );
}
} );