first commit
This commit is contained in:
49
libraries/ckeditor/plugins/bootstrapCarousel/ckeditor.html
Normal file
49
libraries/ckeditor/plugins/bootstrapCarousel/ckeditor.html
Normal file
@@ -0,0 +1,49 @@
|
||||
<textarea id="ckContent"></textarea>
|
||||
<div id="buttons_container">
|
||||
<input type="button" value="Save Changes" id="saveChanges" onClick="save()" />
|
||||
<input type="button" value="Cancel" id="cancel" onClick="window.close()" />
|
||||
</div>
|
||||
|
||||
|
||||
<style type="text/css">
|
||||
* {margin:0; padding:0;}
|
||||
input {outline:none; padding:6px 9px; margin:2px; cursor:pointer; font-family:Arial, Helvetica, sans-serif; -webkit-border-radius:3px; border-radius:3px; -webkit-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.15); box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.15); background-color:#e0e0e0; color:#666; text-shadow:none; border:1px solid #ababab;}
|
||||
#saveChanges {background-color:#63a730; color:#fff; border:1px solid #62a62f; background-image:-webkit-linear-gradient(#7ebe4c,#63a730); background-image:linear-gradient(#7ebe4c,#63a730);}
|
||||
#cancel {background-image:-webkit-linear-gradient(#e8e5e5,#e0e0e0); background-image:linear-gradient(#e8e5e5,#e0e0e0);}
|
||||
input:active {-webkit-box-shadow:inset 0 0 6px rgba(0, 0, 0, 0.2); box-shadow:inset 0 0 6px rgba(0, 0, 0, 0.2)}
|
||||
#buttons_container {position:fixed; width:100%; height:35px; bottom:.5em; right:.5em; text-align:right; z-index:9999;}
|
||||
</style>
|
||||
|
||||
<script type="text/javascript" src="//cdn.ckeditor.com/4.5.9/standard/ckeditor.js"></script>
|
||||
<script type="text/javascript">
|
||||
// configure your editor here and pass it to "editor" variable
|
||||
var editor = CKEDITOR.replace('ckContent', {
|
||||
on : {
|
||||
'instanceReady': function(evt){
|
||||
evt.editor.execCommand('maximize');
|
||||
document.getElementById('buttons_container')
|
||||
}
|
||||
},
|
||||
contentsCss : 'https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css'
|
||||
});
|
||||
|
||||
// do not alter codes below
|
||||
var param = Array();
|
||||
param = queryString();
|
||||
document.getElementById('ckContent').innerHTML = window.opener.CKEDITOR.dialog.getCurrent()._.element.$.getElementsByClassName(param['edit'])[param['content']].value;
|
||||
|
||||
function save(){
|
||||
window.opener.CKEDITOR.dialog.getCurrent()._.element.$.getElementsByClassName(param['edit'])[param['content']].value = editor.getData();
|
||||
window.close();
|
||||
};
|
||||
|
||||
function queryString(){
|
||||
var qs = (location.search).replace('?', '').split('&');
|
||||
var par = Array();
|
||||
for(var i in qs){
|
||||
var tmp = qs[i].split('=');
|
||||
par[tmp[0]] = tmp[1];
|
||||
}
|
||||
return par;
|
||||
};
|
||||
</script>
|
||||
29
libraries/ckeditor/plugins/bootstrapCarousel/css/style.css
Normal file
29
libraries/ckeditor/plugins/bootstrapCarousel/css/style.css
Normal file
@@ -0,0 +1,29 @@
|
||||
/*
|
||||
Plugin : Bootstrap Carousel
|
||||
Author : Michael Janea (www.michaeljanea.com)
|
||||
Version : 1.9
|
||||
*/
|
||||
|
||||
#bootstrapCarousel {}
|
||||
#bootstrapCarousel_Container {height:350px; overflow:auto; margin-bottom:1em;}
|
||||
#bootstrapCarousel table {width:100%; border-collapse:collapse;}
|
||||
#bootstrapCarousel th, #bootstrapCarousel td {padding:.5em;}
|
||||
#bootstrapCarousel th {font-weight:bold;}
|
||||
#bootstrapCarousel td {vertical-align:top; position:relative;}
|
||||
#bootstrapCarousel td:nth-child(1) {width:40px;}
|
||||
#bootstrapCarousel td:nth-child(2), #bootstrapCarousel td:nth-child(3) {width:260px;}
|
||||
#bootstrapCarousel td:nth-child(4) {width:280px;}
|
||||
#bootstrapCarousel input[type=text], #bootstrapCarousel textarea {padding:.3em; border:1px solid #ddd; -webkit-border-radius:3px; border-radius:3px; -webkit-box-shadow:inset 0 2px 2px rgba(0,0,0,0.075); box-shadow:inset 0 2px 2px rgba(0,0,0,0.075); background:rgba(0, 0, 0, .01); outline:none;}
|
||||
#bootstrapCarousel input[type=text] {width:150px;}
|
||||
#bootstrapCarousel input[type=text]:focus, #bootstrapCarousel textarea:focus {border:1px solid #139ff7;}
|
||||
#bootstrapCarousel textarea {resize:none; width:95%; height:100px; white-space:pre-wrap;}
|
||||
#bootstrapCarousel .bootstrapCarousel_remove, #bootstrapCarousel .bootstrapCarousel_addNew, #bootstrapCarousel .bootstrapCarousel_up, #bootstrapCarousel .bootstrapCarousel_down, #bootstrapCarousel .bootstrapCarousel_browse, #bootstrapCarousel .bootstrapCarousel_move {font-weight:bold; -webkit-border-radius:3px; border-radius:3px; cursor:pointer;}
|
||||
#bootstrapCarousel .bootstrapCarousel_remove {background:#A94442; padding:.3em .5em; color:#fff;}
|
||||
#bootstrapCarousel .bootstrapCarousel_remove:hover {text-decoration:none;}
|
||||
#bootstrapCarousel .bootstrapCarousel_addNew, #bootstrapCarousel .bootstrapCarousel_up, #bootstrapCarousel .bootstrapCarousel_down, #bootstrapCarousel .bootstrapCarousel_browse, #bootstrapCarousel .bootstrapCarousel_move {float:right; padding:.5em; background:#f3f3f3; border:1px solid #ddd;}
|
||||
#bootstrapCarousel .bootstrapCarousel_browse {padding:.27em .5em; position:absolute; top:.5em; right:.5em;}
|
||||
#bootstrapCarousel .bootstrapCarousel_addNew:hover {text-decoration:underline;}
|
||||
#bootstrapCarousel .bootstrapCarousel_up, #bootstrapCarousel .bootstrapCarousel_down {float:none; padding:.13em .4em;}
|
||||
#bootstrapCarousel .bootstrapCarousel_hidden {display:none;}
|
||||
#bootstrapCarousel img {max-height:100px; max-width:250px;}
|
||||
#bootstrapCarousel .bootstrapCarousel_move {background:url('../icons/move.png') center center no-repeat #f3f3f3; width:13px; height:18px; cursor:move;}
|
||||
7
libraries/ckeditor/plugins/bootstrapCarousel/dialogs/bootstrapCarousel.js
vendored
Normal file
7
libraries/ckeditor/plugins/bootstrapCarousel/dialogs/bootstrapCarousel.js
vendored
Normal file
File diff suppressed because one or more lines are too long
Binary file not shown.
|
After Width: | Height: | Size: 1005 B |
BIN
libraries/ckeditor/plugins/bootstrapCarousel/icons/move.png
Normal file
BIN
libraries/ckeditor/plugins/bootstrapCarousel/icons/move.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 993 B |
BIN
libraries/ckeditor/plugins/bootstrapCarousel/images/img.jpg
Normal file
BIN
libraries/ckeditor/plugins/bootstrapCarousel/images/img.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.6 KiB |
1255
libraries/ckeditor/plugins/bootstrapCarousel/js/Sortable.min.js
vendored
Normal file
1255
libraries/ckeditor/plugins/bootstrapCarousel/js/Sortable.min.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/af.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/af.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'af', {//afrikaans
|
||||
plugin : 'Bootstrap Carousel',
|
||||
title : 'Titel',
|
||||
content : 'Inhoud',
|
||||
htmlIsAllowed : 'HTML Word Toegelaat',
|
||||
addNewItem : 'Voeg Nuwe Item',
|
||||
minimum : 'Plugin moet ten minste 1 item bevat',
|
||||
link : 'Link',
|
||||
style : 'Style',
|
||||
type : 'Tipe',
|
||||
size : 'Grootte',
|
||||
blockLevel : 'Blok Vlak',
|
||||
active : 'Aktiewe',
|
||||
enabled : 'In Staat Gestel Om',
|
||||
text : 'Teks',
|
||||
preview : 'Voorskou',
|
||||
optional : 'Opsionele',
|
||||
badge : 'Badge',
|
||||
caption : 'Onderskrif',
|
||||
image : 'Image',
|
||||
delete : 'Is jy seker jy wil hierdie item uitvee?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/ar.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/ar.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'ar', { //arabic
|
||||
plugin : 'التمهيد كاروسيل',
|
||||
title : 'لقب',
|
||||
content : 'مضمون',
|
||||
htmlIsAllowed : 'يسمح HTML',
|
||||
addNewItem : 'إضافة عنصر جديد',
|
||||
minimum : 'يجب أن يحتوي على البرنامج المساعد على الأقل 1 البند',
|
||||
link : 'صلة',
|
||||
style : 'أسلوب',
|
||||
type : 'نوع',
|
||||
size : 'حجم',
|
||||
blockLevel : 'كتلة المستوى',
|
||||
active : 'نشط',
|
||||
enabled : 'تمكين',
|
||||
text : 'نص',
|
||||
preview : 'معاينة',
|
||||
optional : 'اختياري',
|
||||
badge : 'شارة',
|
||||
caption : 'شرح',
|
||||
image : 'صورة',
|
||||
delete : 'هل أنت متأكد أنك تريد حذف هذا البند؟'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/bg.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/bg.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'bg', {//bulgarian
|
||||
plugin : 'Bootstrap Carousel',
|
||||
title : 'заглавие',
|
||||
content : 'съдържание',
|
||||
htmlIsAllowed : 'HTML е позволено',
|
||||
addNewItem : 'Нова позиция',
|
||||
minimum : 'Plugin трябва да съдържа най-малко 1 брой',
|
||||
link : 'връзка',
|
||||
style : 'стил',
|
||||
type : 'тип',
|
||||
size : 'размер',
|
||||
blockLevel : 'Block Level',
|
||||
active : 'активен',
|
||||
enabled : 'Enabled',
|
||||
text : 'текст',
|
||||
preview : 'предварителен преглед',
|
||||
optional : 'по избор',
|
||||
badge : 'значка',
|
||||
caption : 'Надпис',
|
||||
image : 'изображение',
|
||||
delete : 'Сигурни ли сте, че искате да изтриете този елемент?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/bn.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/bn.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'bn', {//bengali
|
||||
plugin : 'বুটস্ট্র্যাপ Carousel',
|
||||
title : 'খেতাব',
|
||||
content : 'বিষয়বস্তু',
|
||||
htmlIsAllowed : 'এইচটিএমএল অনুমতি দেওয়া হয়',
|
||||
addNewItem : 'নতুন আইটেম যোগ করুন',
|
||||
minimum : 'প্লাগইন অন্তত 1 আইটেম ধারণ করতে হবে',
|
||||
link : 'লিংক',
|
||||
style : 'শৈলী',
|
||||
type : 'আদর্শ',
|
||||
size : 'আয়তন',
|
||||
blockLevel : 'ব্লক শ্রেনী',
|
||||
active : 'সক্রিয়',
|
||||
enabled : 'সক্রিয়',
|
||||
text : 'পাঠ',
|
||||
preview : 'সম্পূর্ণ বিবরণের পূর্বরূপ দেখুন',
|
||||
optional : 'ঐচ্ছিক',
|
||||
badge : 'ব্যাজ',
|
||||
caption : 'ক্যাপশন',
|
||||
image : 'ভাবমূর্তি',
|
||||
delete : 'আপনি এই আইটেমটি মুছে ফেলতে চান আপনি কি নিশ্চিত?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/bs.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/bs.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'bs', {//bosnian
|
||||
plugin : 'Bootstrap Carousel',
|
||||
title : 'Naslov',
|
||||
content : 'Sadržaj',
|
||||
htmlIsAllowed : 'HTML je dozvoljeno',
|
||||
addNewItem : 'Dodaj Novi Item',
|
||||
minimum : 'Plugin mora sadržavati najmanje 1 stavka',
|
||||
link : 'Link',
|
||||
style : 'Stil',
|
||||
type : 'Tip',
|
||||
size : 'Veličina',
|
||||
blockLevel : 'Blok Level',
|
||||
active : 'Aktivan',
|
||||
enabled : 'Omogućeno',
|
||||
text : 'Tekst',
|
||||
preview : 'Preview',
|
||||
optional : 'Neobavezan',
|
||||
badge : 'Značka',
|
||||
caption : 'Naslov',
|
||||
image : 'Slika',
|
||||
delete : 'Jeste li sigurni da želite obrisati ovu stavku?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/ca.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/ca.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'ca', {//catalan
|
||||
plugin : 'Bootstrap Carrusel',
|
||||
title : 'Títol',
|
||||
content : 'Contingut',
|
||||
htmlIsAllowed : 'HTML és Permès',
|
||||
addNewItem : 'Afegir Nou Element',
|
||||
minimum : 'Plugin ha de contenir almenys 1 membre',
|
||||
link : 'Enllaç',
|
||||
style : 'Estil',
|
||||
type : 'Tipus',
|
||||
size : 'Mida',
|
||||
blockLevel : 'Nivell De Bloc',
|
||||
active : 'Actiu',
|
||||
enabled : 'Activat',
|
||||
text : 'Text',
|
||||
preview : 'Preestrena',
|
||||
optional : 'Opcional',
|
||||
badge : 'Divisa',
|
||||
caption : 'Subtítol',
|
||||
image : 'Imatge',
|
||||
delete : 'Segur que vols esborrar aquest article?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/cs.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/cs.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'cs', {//czech
|
||||
plugin : 'Bootstrap Carousel',
|
||||
title : 'Název',
|
||||
content : 'Obsah',
|
||||
htmlIsAllowed : 'HTML Je Povoleno',
|
||||
addNewItem : 'Přidat Novou Položku',
|
||||
minimum : 'Plugin musí obsahovat alespoň 1 položka',
|
||||
link : 'Odkaz',
|
||||
style : 'Styl',
|
||||
type : 'Typ',
|
||||
size : 'Velikost',
|
||||
blockLevel : 'Block Level',
|
||||
active : 'Aktivní',
|
||||
enabled : 'Povoleno',
|
||||
text : 'Text',
|
||||
preview : 'Preview',
|
||||
optional : 'Volitelný',
|
||||
badge : 'Odznak',
|
||||
caption : 'Titulek',
|
||||
image : 'Obraz',
|
||||
delete : 'Jste si jisti, že chcete tuto položku smazat?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/cy.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/cy.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'cy', {//welsh
|
||||
plugin : 'Bootstrap Carousel',
|
||||
title : 'Teitl',
|
||||
content : 'cynnwys',
|
||||
htmlIsAllowed : 'HTML Yn Cael Ei Allowed',
|
||||
addNewItem : 'Ychwanegu Eitem Newydd',
|
||||
minimum : 'Rhaid ategyn gynnwys o leiaf 1 eitem',
|
||||
link : 'Cyswllt',
|
||||
style : 'Arddull',
|
||||
type : 'Math',
|
||||
size : 'Maint',
|
||||
blockLevel : 'Bloc Lefel',
|
||||
active : 'Active',
|
||||
enabled : 'Galluogwyd',
|
||||
text : 'Testun',
|
||||
preview : 'Rhagolwg',
|
||||
optional : 'Dewisol',
|
||||
badge : 'Bathodyn',
|
||||
caption : 'Geiriad',
|
||||
image : 'Delwedd',
|
||||
delete : 'Ydych chi\'n siŵr eich bod am ddileu\'r eitem hon?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/da.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/da.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'da', {//danish
|
||||
plugin : 'Bootstrap Carousel',
|
||||
title : 'Titel',
|
||||
content : 'Indhold',
|
||||
htmlIsAllowed : 'HTML er tilladt',
|
||||
addNewItem : 'Tilføj nyt element',
|
||||
minimum : 'Plugin skal indeholde mindst 1 emne',
|
||||
link : 'Link',
|
||||
style : 'Stil',
|
||||
type : 'Type',
|
||||
size : 'Størrelse',
|
||||
blockLevel : 'Block Level',
|
||||
active : 'Aktiv',
|
||||
enabled : 'Aktiveret',
|
||||
text : 'Tekst',
|
||||
preview : 'Eksempel',
|
||||
optional : 'Valgfri',
|
||||
badge : 'Badge',
|
||||
caption : 'Caption',
|
||||
image : 'Billede',
|
||||
delete : 'Er du sikker på du vil slette denne genstand?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/de.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/de.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'de', {//german
|
||||
plugin : 'Bootstrap Carousel',
|
||||
title : 'Titel',
|
||||
content : 'Inhalt',
|
||||
htmlIsAllowed : 'HTML ist erlaubt',
|
||||
addNewItem : 'Neues Element hinzufügen',
|
||||
minimum : 'Plugin muss mindestens 1 Artikel enthalten',
|
||||
link : 'Link',
|
||||
style : 'Stil',
|
||||
type : 'Art',
|
||||
size : 'Größe',
|
||||
blockLevel : 'Block Level',
|
||||
active : 'Aktiv',
|
||||
enabled : 'Aktiviert',
|
||||
text : 'Text',
|
||||
preview : 'Vorschau',
|
||||
optional : 'Fakultativ',
|
||||
badge : 'Abzeichen',
|
||||
caption : 'Bildunterschrift',
|
||||
image : 'Bild',
|
||||
delete : 'Sind Sie sicher, Sie wollen diesen Inhalt löschen?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/el.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/el.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'el', {//greek
|
||||
plugin : 'Bootstrap Carousel',
|
||||
title : 'Τίτλος',
|
||||
content : 'Περιεχόμενο',
|
||||
htmlIsAllowed : 'Επιτρέπεται HTML κώδικας',
|
||||
addNewItem : 'Προσθήκη νέου στοιχείου',
|
||||
minimum : 'Το Plugin πρέπει να περιέχει τουλάχιστον 1 στοιχείο',
|
||||
link : 'Σύνδεσμος',
|
||||
style : 'Στυλ',
|
||||
type : 'Τύπος',
|
||||
size : 'Μέγεθος',
|
||||
blockLevel : 'Block Επίπεδο',
|
||||
active : 'Ενεργό',
|
||||
enabled : 'Ενεργοποιήθηκε',
|
||||
text : 'Κείμενο',
|
||||
preview : 'Προεπισκόπηση',
|
||||
optional : 'Προαιρετικό',
|
||||
badge : 'Σήμα',
|
||||
caption : 'Λεζάντα',
|
||||
image : 'Εικόνα',
|
||||
delete : 'Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το στοιχείο;'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/en-au.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/en-au.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'en-au', {
|
||||
plugin : 'Bootstrap Carousel',
|
||||
title : 'Title',
|
||||
content : 'Content',
|
||||
htmlIsAllowed : 'HTML is Allowed',
|
||||
addNewItem : 'Add New Item',
|
||||
minimum : 'Plugin must contain at least 1 item',
|
||||
link : 'Link',
|
||||
style : 'Style',
|
||||
type : 'Type',
|
||||
size : 'Size',
|
||||
blockLevel : 'Block Level',
|
||||
active : 'Active',
|
||||
enabled : 'Enabled',
|
||||
text : 'Text',
|
||||
preview : 'Preview',
|
||||
optional : 'Optional',
|
||||
badge : 'Badge',
|
||||
caption : 'Caption',
|
||||
image : 'Image',
|
||||
delete : 'Are you sure you want to delete this item?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/en-ca.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/en-ca.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'en-ca', {
|
||||
plugin : 'Bootstrap Carousel',
|
||||
title : 'Title',
|
||||
content : 'Content',
|
||||
htmlIsAllowed : 'HTML is Allowed',
|
||||
addNewItem : 'Add New Item',
|
||||
minimum : 'Plugin must contain at least 1 item',
|
||||
link : 'Link',
|
||||
style : 'Style',
|
||||
type : 'Type',
|
||||
size : 'Size',
|
||||
blockLevel : 'Block Level',
|
||||
active : 'Active',
|
||||
enabled : 'Enabled',
|
||||
text : 'Text',
|
||||
preview : 'Preview',
|
||||
optional : 'Optional',
|
||||
badge : 'Badge',
|
||||
caption : 'Caption',
|
||||
image : 'Image',
|
||||
delete : 'Are you sure you want to delete this item?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/en-gb.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/en-gb.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'en-gb', {
|
||||
plugin : 'Bootstrap Carousel',
|
||||
title : 'Title',
|
||||
content : 'Content',
|
||||
htmlIsAllowed : 'HTML is Allowed',
|
||||
addNewItem : 'Add New Item',
|
||||
minimum : 'Plugin must contain at least 1 item',
|
||||
link : 'Link',
|
||||
style : 'Style',
|
||||
type : 'Type',
|
||||
size : 'Size',
|
||||
blockLevel : 'Block Level',
|
||||
active : 'Active',
|
||||
enabled : 'Enabled',
|
||||
text : 'Text',
|
||||
preview : 'Preview',
|
||||
optional : 'Optional',
|
||||
badge : 'Badge',
|
||||
caption : 'Caption',
|
||||
image : 'Image',
|
||||
delete : 'Are you sure you want to delete this item?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/en.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/en.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'en', {
|
||||
plugin : 'Bootstrap Carousel',
|
||||
title : 'Title',
|
||||
content : 'Content',
|
||||
htmlIsAllowed : 'HTML is Allowed',
|
||||
addNewItem : 'Add New Item',
|
||||
minimum : 'Plugin must contain at least 1 item',
|
||||
link : 'Link',
|
||||
style : 'Style',
|
||||
type : 'Type',
|
||||
size : 'Size',
|
||||
blockLevel : 'Block Level',
|
||||
active : 'Active',
|
||||
enabled : 'Enabled',
|
||||
text : 'Text',
|
||||
preview : 'Preview',
|
||||
optional : 'Optional',
|
||||
badge : 'Badge',
|
||||
caption : 'Caption',
|
||||
image : 'Image',
|
||||
delete : 'Are you sure you want to delete this item?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/eo.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/eo.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'eo', {//Esperanto
|
||||
plugin : 'Bootstrap Carrousel',
|
||||
title : 'titolo',
|
||||
content : 'Enhavo',
|
||||
htmlIsAllowed : 'HTML Estas Permesitaj',
|
||||
addNewItem : 'Aldoni Novan Eron',
|
||||
minimum : 'Plugin devas enhavi almenaŭ 1 ero',
|
||||
link : 'Ligilo',
|
||||
style : 'Stilo',
|
||||
type : 'Tipo',
|
||||
size : 'Grandeco',
|
||||
blockLevel : 'Bloko-Nivelo',
|
||||
active : 'Aktivaj',
|
||||
enabled : 'Enabled',
|
||||
text : 'Teksto',
|
||||
preview : 'Antaŭrigardo',
|
||||
optional : 'Laŭvola',
|
||||
badge : 'Badge',
|
||||
caption : 'Apudskribo',
|
||||
image : 'Dosiero',
|
||||
delete : 'Ĉu vi vere volas forigi tiun artikolon?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/es.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/es.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'es', {//spanish
|
||||
plugin : 'MJ Carrusel',
|
||||
title : 'Título',
|
||||
content : 'Eontenido',
|
||||
htmlIsAllowed : 'HTML Es Permitido',
|
||||
addNewItem : 'Agregar Nuevo Elemento',
|
||||
minimum : 'Plugin debe contener al menos 1 artículo',
|
||||
link : 'Enlace',
|
||||
style : 'Estilo',
|
||||
type : 'Tipo',
|
||||
size : 'Tamaño',
|
||||
blockLevel : 'Nivel De Bloque',
|
||||
active : 'Activo',
|
||||
enabled : 'Activado',
|
||||
text : 'Texto',
|
||||
preview : 'Preestreno',
|
||||
optional : 'Opcional',
|
||||
badge : 'Divisa',
|
||||
caption : 'Subtítulo',
|
||||
image : 'Imagen',
|
||||
delete : '¿Seguro que quieres borrar este artículo?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/et.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/et.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'et', {//estonian
|
||||
plugin : 'Bootstrap Karusselli',
|
||||
title : 'pealkiri',
|
||||
content : 'sisu',
|
||||
htmlIsAllowed : 'HTML on lubatud',
|
||||
addNewItem : 'Lisa uus üksus',
|
||||
minimum : 'Plugin peab sisaldama vähemalt 1 kirje',
|
||||
link : 'Link',
|
||||
style : 'Stiil',
|
||||
type : 'Ttüüp',
|
||||
size : 'Suurus',
|
||||
blockLevel : 'Block Level',
|
||||
active : 'Aktiivne',
|
||||
enabled : 'Lubatud',
|
||||
text : 'Tekst',
|
||||
preview : 'Eelvaade',
|
||||
optional : 'Vabatahtlik',
|
||||
badge : 'Rinnamärk',
|
||||
caption : 'Pealkiri',
|
||||
image : 'Pilt',
|
||||
delete : 'Olete kindel, et soovite kustutada selle kirje?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/eu.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/eu.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'eu', {//Basque
|
||||
plugin : 'Bootstrap Kanpaina',
|
||||
title : 'Izenburua',
|
||||
content : 'Edukia',
|
||||
htmlIsAllowed : 'HTML onartzen da',
|
||||
addNewItem : 'Gehitu Elementu berria',
|
||||
minimum : 'Plugin gutxienez 1 elementua eduki behar',
|
||||
link : 'Link',
|
||||
style : 'Style',
|
||||
type : 'Mota',
|
||||
size : 'Tamaina',
|
||||
blockLevel : 'Bloke Maila',
|
||||
active : 'Aktiboak',
|
||||
enabled : 'Gaituta',
|
||||
text : 'Testua',
|
||||
preview : 'Aurreikusi',
|
||||
optional : 'Aukerako',
|
||||
badge : 'Badge',
|
||||
caption : 'Argazki-oina',
|
||||
image : 'Image',
|
||||
delete : 'Ziur zaude elementu hau ezabatu nahi duzula?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/fa.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/fa.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'fa', {//Persian
|
||||
plugin : 'بوت استرپ چرخ فلک',
|
||||
title : 'عنوان',
|
||||
content : 'مقدار',
|
||||
htmlIsAllowed : 'HTML مجاز است',
|
||||
addNewItem : 'اضافه کردن آیتم جدید',
|
||||
minimum : 'پلاگین باید حداقل 1 مورد شامل',
|
||||
link : 'پیوند',
|
||||
style : 'اندازه',
|
||||
type : 'نوع',
|
||||
size : 'اندازه',
|
||||
blockLevel : 'بلوک سطح',
|
||||
active : 'فعال',
|
||||
enabled : 'فعال',
|
||||
text : 'متن',
|
||||
preview : 'پیش دید',
|
||||
optional : 'اختیاری',
|
||||
badge : 'نشان',
|
||||
caption : 'عنوان',
|
||||
image : 'تصویر',
|
||||
delete : 'آیا شما مطمئن هستید که میخواهید این آیتم را حذف کنید؟'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/fi.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/fi.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'fi', {//Finnish
|
||||
plugin : 'Bootstrap Carousel',
|
||||
title : 'Otsikko',
|
||||
content : 'Pitoisuus',
|
||||
htmlIsAllowed : 'HTML On Sallittu',
|
||||
addNewItem : 'Lisää Uusi Osa',
|
||||
minimum : 'Plugin on oltava vähintään 1 kohde',
|
||||
link : 'Linkki',
|
||||
style : 'Tyyli',
|
||||
type : 'Tyyppi',
|
||||
size : 'Koko',
|
||||
blockLevel : 'Block Level',
|
||||
active : 'Aktiivinen',
|
||||
enabled : 'Käytössä',
|
||||
text : 'Teksti',
|
||||
preview : 'Preview',
|
||||
optional : 'Valinnainen',
|
||||
badge : 'Kunniamerkki',
|
||||
caption : 'Kuvateksti',
|
||||
image : 'Kuva',
|
||||
delete : 'Oletko varma, että haluat poistaa tämän kohteen?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/fo.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/fo.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'fo', {//Faroese
|
||||
plugin : 'Bootstrap Carousel',
|
||||
title : 'Title',
|
||||
content : 'Content',
|
||||
htmlIsAllowed : 'HTML is Allowed',
|
||||
addNewItem : 'Add New Item',
|
||||
minimum : 'Plugin must contain at least 1 item',
|
||||
link : 'Link',
|
||||
style : 'Stlye',
|
||||
type : 'Type',
|
||||
size : 'Size',
|
||||
blockLevel : 'Block Level',
|
||||
active : 'Active',
|
||||
enabled : 'Enabled',
|
||||
text : 'Text',
|
||||
preview : 'Preview',
|
||||
optional : 'Optional',
|
||||
badge : 'Badge',
|
||||
caption : 'Caption',
|
||||
image : 'Image',
|
||||
delete : 'Are you sure you want to delete this item?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/fr-ca.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/fr-ca.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'fr-ca', {//french
|
||||
plugin : 'Bootstrap Carousel',
|
||||
title : 'titre',
|
||||
content : 'content',
|
||||
htmlIsAllowed : 'HTML est autorisé',
|
||||
addNewItem : 'Ajouter un nouvel élément',
|
||||
minimum : 'Plugin doit contenir au moins 1 article',
|
||||
link : 'Lien',
|
||||
style : 'Style',
|
||||
type : 'Type',
|
||||
size : 'Taille',
|
||||
blockLevel : 'Bloquer Niveau',
|
||||
active : 'Actif',
|
||||
enabled : 'Activé',
|
||||
text : 'Texte',
|
||||
preview : 'Avant-Première',
|
||||
optional : 'En Option',
|
||||
badge : 'Badge',
|
||||
caption : 'Légende',
|
||||
image : 'Image',
|
||||
delete : 'Êtes-vous sûr de vouloir supprimer cet article?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/fr.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/fr.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'fr', {//french
|
||||
plugin : 'Bootstrap Carousel',
|
||||
title : 'titre',
|
||||
content : 'content',
|
||||
htmlIsAllowed : 'HTML est autorisé',
|
||||
addNewItem : 'Ajouter un nouvel élément',
|
||||
minimum : 'Plugin doit contenir au moins 1 article',
|
||||
link : 'Lien',
|
||||
style : 'Style',
|
||||
type : 'Type',
|
||||
size : 'Taille',
|
||||
blockLevel : 'Bloquer Niveau',
|
||||
active : 'Actif',
|
||||
enabled : 'Activé',
|
||||
text : 'Texte',
|
||||
preview : 'Avant-Première',
|
||||
optional : 'En Option',
|
||||
badge : 'Badge',
|
||||
caption : 'Légende',
|
||||
image : 'Image',
|
||||
delete : 'Êtes-vous sûr de vouloir supprimer cet article?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/gl.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/gl.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'gl', {//Galician
|
||||
plugin : 'Bootstrap Carousel',
|
||||
title : 'Título',
|
||||
content : 'Contido',
|
||||
htmlIsAllowed : 'HTML se admite',
|
||||
addNewItem : 'Add New Item',
|
||||
minimum : 'Plugin debe conter polo menos 1 artigo',
|
||||
link : 'Ligazón',
|
||||
style : 'Estilo',
|
||||
type : 'Tipo',
|
||||
size : 'Tamaño',
|
||||
blockLevel : 'Bloque de Nivel',
|
||||
active : 'Activo',
|
||||
enabled : 'Activado',
|
||||
text : 'Texto',
|
||||
preview : 'Visualización',
|
||||
optional : 'Opcional',
|
||||
badge : 'Crachá',
|
||||
caption : 'Subtítulo',
|
||||
image : 'Imaxe',
|
||||
delete : 'Está seguro de que quere eliminar este elemento?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/gu.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/gu.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'gu', {//Gujarati
|
||||
plugin : 'બુટસ્ટ્રેપ કેરોયુઝલ',
|
||||
title : 'શીર્ષક',
|
||||
content : 'સામગ્રી',
|
||||
htmlIsAllowed : 'એચટીએમએલ મંજૂર થયેલ',
|
||||
addNewItem : 'ન્યૂ વસ્તુ ઉમેરો',
|
||||
minimum : 'પ્લગઇન ઓછામાં ઓછા 1 આઇટમ હોવો જરૂરી છે',
|
||||
link : 'લિંક',
|
||||
style : 'પ્રકાર',
|
||||
type : 'પ્રકાર',
|
||||
size : 'કદ',
|
||||
blockLevel : 'બ્લોક લેવલ',
|
||||
active : 'સક્રિય',
|
||||
enabled : 'જો સક્રિય',
|
||||
text : 'લખાણ',
|
||||
preview : 'પૂર્વાવલોકન',
|
||||
optional : 'વૈકલ્પિક',
|
||||
badge : 'બેજ',
|
||||
caption : 'કૅપ્શન',
|
||||
image : 'છબી',
|
||||
delete : 'તમે આ આઇટમ કાઢી નાખવા માંગો તમે ખાતરી રહ્યાં છો?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/he.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/he.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'he', {//hebrew
|
||||
plugin : 'Bootstrap קרוסלה',
|
||||
title : 'כותרת',
|
||||
content : 'תוכן',
|
||||
htmlIsAllowed : 'HTML הוא מחמד',
|
||||
addNewItem : 'הוסף פריט חדש',
|
||||
minimum : 'תוסף חייב לכלול לפחות פריט 1',
|
||||
link : 'קישור',
|
||||
style : 'סגנון',
|
||||
type : 'סוג',
|
||||
size : 'גודל',
|
||||
blockLevel : 'בלוק רמה',
|
||||
active : 'פעיל',
|
||||
enabled : 'מופעל',
|
||||
text : 'טקסט',
|
||||
preview : 'תצוגה מקדימה',
|
||||
optional : 'אופציונאלי',
|
||||
badge : 'תג',
|
||||
caption : 'כיתוב',
|
||||
image : 'תמונה',
|
||||
delete : 'האם אתה בטוח שאתה רוצה למחוק פריט זה?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/hi.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/hi.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'hi', {//Hindi
|
||||
plugin : 'बूटस्ट्रैप हिंडोला',
|
||||
title : 'शीर्षक',
|
||||
content : 'सामग्री',
|
||||
htmlIsAllowed : 'एचटीएमएल अनुमति दी है',
|
||||
addNewItem : 'नया आइटम जोड़ें',
|
||||
minimum : 'प्लगइन कम से कम एक आइटम शामिल होना चाहिए',
|
||||
link : 'लिंक',
|
||||
style : 'अंदाज',
|
||||
type : 'प्रकार',
|
||||
size : 'आकार',
|
||||
blockLevel : 'ब्लॉक स्तर',
|
||||
active : 'सक्रिय',
|
||||
enabled : 'सक्षम होना चाहिए',
|
||||
text : 'टेक्स्ट',
|
||||
preview : 'पूर्वावलोकन',
|
||||
optional : 'ऐच्छिक',
|
||||
badge : 'बिल्ला',
|
||||
caption : 'शीर्षक',
|
||||
image : 'छवि',
|
||||
delete : 'क्या आप सुनिश्चित रूप से इस आइटम को मिटाना चाहते हैं?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/hr.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/hr.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'hr', {//Croatian
|
||||
plugin : 'Bootstrap Vrtuljak',
|
||||
title : 'Naslov',
|
||||
content : 'Sadržaj',
|
||||
htmlIsAllowed : 'HTML Dopušteno',
|
||||
addNewItem : 'Dodaj Novu Stavku',
|
||||
minimum : 'Plugin mora sadržavati najmanje 1 predmet',
|
||||
link : 'Link',
|
||||
style : 'Stil',
|
||||
type : 'Vrsta',
|
||||
size : 'Veličina',
|
||||
blockLevel : 'Blok Razina',
|
||||
active : 'Aktivan',
|
||||
enabled : 'Omogućeno',
|
||||
text : 'Tekst',
|
||||
preview : 'Pregled',
|
||||
optional : 'Izborni',
|
||||
badge : 'Značka',
|
||||
caption : 'Naslov',
|
||||
image : 'Slika',
|
||||
delete : 'Jeste li sigurni da želite obrisati ovu stavku?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/hu.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/hu.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'hu', {//Hungarian
|
||||
plugin : 'Bootstrap Carousel',
|
||||
title : 'cím',
|
||||
content : 'tartalom',
|
||||
htmlIsAllowed : 'HTML Engedélyezett',
|
||||
addNewItem : 'Új elem hozzáadása',
|
||||
minimum : 'Plugin tartalmaznia kell legalább 1 db',
|
||||
link : 'Link',
|
||||
style : 'Stílus',
|
||||
type : 'Típus',
|
||||
size : 'Méret',
|
||||
blockLevel : 'Blokk Szintű',
|
||||
active : 'Aktív',
|
||||
enabled : 'Engedélyezve',
|
||||
text : 'Szöveg',
|
||||
preview : 'Preview',
|
||||
optional : 'Választható',
|
||||
badge : 'Jelvény',
|
||||
caption : 'Képaláírás',
|
||||
image : 'Kép',
|
||||
delete : 'Biztos, hogy törölni szeretné ezt az elemet?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/id.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/id.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'id', {//Indonesian
|
||||
plugin : 'Bootstrap Carousel',
|
||||
title : 'judul',
|
||||
content : 'kadar',
|
||||
htmlIsAllowed : 'HTML Diizinkan',
|
||||
addNewItem : 'Add New Item',
|
||||
minimum : 'Plugin harus mengandung setidaknya 1 item',
|
||||
link : 'Mata Rantai',
|
||||
style : 'Gaya',
|
||||
type : 'Jenis',
|
||||
size : 'Ukuran',
|
||||
blockLevel : 'Blok Tingkat',
|
||||
active : 'Aktif',
|
||||
enabled : 'Diaktifkan',
|
||||
text : 'Teks',
|
||||
preview : 'Preview',
|
||||
optional : 'Opsional',
|
||||
badge : 'Badge',
|
||||
caption : 'Keterangan Gambar',
|
||||
image : 'Gambar',
|
||||
delete : 'Apakah Anda yakin ingin menghapus item ini?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/is.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/is.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'is', {//Icelandic
|
||||
plugin : 'ræsi Carousel',
|
||||
title : 'Title',
|
||||
content : 'Content',
|
||||
htmlIsAllowed : 'HTML er Leyft',
|
||||
addNewItem : 'Bæta Við Nýjum Lið',
|
||||
minimum : 'Plugin verður að innihalda að minnsta kosti 1 atriði',
|
||||
link : 'Link',
|
||||
style : 'Style',
|
||||
type : 'Gerð',
|
||||
size : 'Size',
|
||||
blockLevel : 'Block Level',
|
||||
active : 'Active',
|
||||
enabled : 'Virkt',
|
||||
text : 'Texti',
|
||||
preview : 'Preview',
|
||||
optional : 'Valfrjálst',
|
||||
badge : 'Badge',
|
||||
caption : 'Caption',
|
||||
image : 'Mynd',
|
||||
delete : 'Ert þú viss um að þú viljir eyða þessu atriði?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/it.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/it.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'it', {//Italian
|
||||
plugin : 'Bootstrap Carousel',
|
||||
title : 'titolo',
|
||||
content : 'contenuto',
|
||||
htmlIsAllowed : 'HTML è ammessi',
|
||||
addNewItem : 'Aggiungi nuovo elemento',
|
||||
minimum : 'Plugin deve contenere almeno 1 articolo',
|
||||
link : 'Collegamento',
|
||||
style : 'Stile',
|
||||
type : 'Tipo',
|
||||
size : 'Dimensione',
|
||||
blockLevel : 'A Livello Di Blocco',
|
||||
active : 'Attivo',
|
||||
enabled : 'Abilitato',
|
||||
text : 'Testo',
|
||||
preview : 'Anteprima',
|
||||
optional : 'Opzionale',
|
||||
badge : 'Distintivo',
|
||||
caption : 'Didascalia',
|
||||
image : 'Immagine',
|
||||
delete : 'Sei sicuro di voler eliminare questo articolo?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/ja.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/ja.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'ja', {//japanese
|
||||
plugin : 'ブートストラップカルーセル',
|
||||
title : 'タイトル',
|
||||
content : 'コンテンツ',
|
||||
htmlIsAllowed : 'HTMLが許可されます',
|
||||
addNewItem : '[新しい項目の追加',
|
||||
minimum : 'プラグインは、少なくとも1つのアイテムを含んでいなければなりません',
|
||||
link : 'リンク',
|
||||
style : 'スタイル',
|
||||
type : 'タイプ',
|
||||
size : 'サイズ',
|
||||
blockLevel : 'ブロックレベル',
|
||||
active : 'アクティブ',
|
||||
enabled : '使用可能',
|
||||
text : 'テキスト',
|
||||
preview : 'プレビュー',
|
||||
optional : 'オプショナル',
|
||||
badge : 'バッジ',
|
||||
caption : 'キャプション',
|
||||
image : '画像',
|
||||
delete : 'あなたはこの項目を削除してもよろしいていますか?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/ka.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/ka.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'ka', {//Georgian
|
||||
plugin : 'ჩატვირთვის Carousel',
|
||||
title : 'სათაური',
|
||||
content : 'შინაარსი',
|
||||
htmlIsAllowed : 'HTML ნებადართულია',
|
||||
addNewItem : 'სანიშნეს New Item',
|
||||
minimum : 'მოდული უნდა შეიცავდეს მინიმუმ 1 ცალი',
|
||||
link : 'ლინკი',
|
||||
style : 'სტილი',
|
||||
type : 'ტიპი',
|
||||
size : 'ზომა',
|
||||
blockLevel : 'Block დონე',
|
||||
active : 'აქტიური',
|
||||
enabled : 'ჩართულია',
|
||||
text : 'ტექსტი',
|
||||
preview : 'Preview',
|
||||
optional : 'სურვილისამებრ',
|
||||
badge : 'სამკერდე',
|
||||
caption : 'წარწერა',
|
||||
image : 'Image',
|
||||
delete : 'დარწმუნებული ხართ, რომ გსურთ წაშალოთ ეს ნივთი?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/km.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/km.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'km', {//Khmer
|
||||
plugin : 'ចាប់ផ្ដើម Carousel',
|
||||
title : 'ចំណងជើង',
|
||||
content : 'មាតិកា',
|
||||
htmlIsAllowed : 'HTML ដែលត្រូវបានអនុញ្ញាត',
|
||||
addNewItem : 'បន្ថែមធាតុថ្មី',
|
||||
minimum : 'កម្មវិធីជំនួយត្រូវតែមានយ៉ាងហោចណាស់ 1 ធាតុ',
|
||||
link : 'តំណភ្ជាប់',
|
||||
style : 'រចនាប័ទ្ម',
|
||||
type : 'ប្រភេទ',
|
||||
size : 'ទំហំ',
|
||||
blockLevel : 'ប្លុកកម្រិត',
|
||||
active : 'ដែលសកម្ម',
|
||||
enabled : 'បានបើក',
|
||||
text : 'អត្ថបទ',
|
||||
preview : 'ការមើលជាមុន',
|
||||
optional : 'ជម្រើស',
|
||||
badge : 'ផ្លាកសញ្ញា',
|
||||
caption : 'ចំណងជើង',
|
||||
image : 'រូបភាព',
|
||||
delete : 'តើអ្នកប្រាកដជាចង់លុបធាតុនេះឬ?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/ko.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/ko.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'ko', {//Korean
|
||||
plugin : '부트 스트랩 회전 목마',
|
||||
title : '이름',
|
||||
content : '함유량',
|
||||
htmlIsAllowed : 'HTML이 허용됩니다',
|
||||
addNewItem : '새 항목 추가',
|
||||
minimum : '플러그인은 적어도 1 개 항목을 포함해야',
|
||||
link : '링크',
|
||||
style : '스타일',
|
||||
type : '유형',
|
||||
size : '크기',
|
||||
blockLevel : '블록 레벨',
|
||||
active : '활동적인',
|
||||
enabled : '사용',
|
||||
text : '본문',
|
||||
preview : '시사',
|
||||
optional : '선택',
|
||||
badge : '배지',
|
||||
caption : '표제',
|
||||
image : '영상',
|
||||
delete : '이 항목을 삭제 하시겠습니까?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/ku.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/ku.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'ku', {//Kurdish
|
||||
plugin : 'Bootstrap Carousel',
|
||||
title : 'Title',
|
||||
content : 'Content',
|
||||
htmlIsAllowed : 'HTML is Allowed',
|
||||
addNewItem : 'Add New Item',
|
||||
minimum : 'Plugin must contain at least 1 item',
|
||||
link : 'Link',
|
||||
style : 'Style',
|
||||
type : 'Type',
|
||||
size : 'Size',
|
||||
blockLevel : 'Block Level',
|
||||
active : 'Active',
|
||||
enabled : 'Enabled',
|
||||
text : 'Text',
|
||||
preview : 'Preview',
|
||||
optional : 'Optional',
|
||||
badge : 'Badge',
|
||||
caption : 'Caption',
|
||||
image : 'Image',
|
||||
delete : 'Are you sure you want to delete this item?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/lt.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/lt.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'lt', {//Lithuanian
|
||||
plugin : 'Bootstrap Karuselė',
|
||||
title : 'Pavadinimas',
|
||||
content : 'Turinys',
|
||||
htmlIsAllowed : 'HTML Leidžiamas',
|
||||
addNewItem : 'Pridėti Naują Elementą',
|
||||
minimum : 'Įskiepis turi būti bent 1 punktą',
|
||||
link : 'Ryšys',
|
||||
style : 'Stilius',
|
||||
type : 'Tipas',
|
||||
size : 'Dydis',
|
||||
blockLevel : 'Blokuoti Lygis',
|
||||
active : 'Aktyvus',
|
||||
enabled : 'Įjungta',
|
||||
text : 'Tekstas',
|
||||
preview : 'Peržiūrėti',
|
||||
optional : 'Neprivalomas',
|
||||
badge : 'ženklelis',
|
||||
caption : 'Antraštė',
|
||||
image : 'Vaizdas',
|
||||
delete : 'Ar tikrai norite ištrinti šį elementą?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/lv.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/lv.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'lv', {//Latvian
|
||||
plugin : 'Bootstrap Carousel',
|
||||
title : 'Virsraksts',
|
||||
content : 'Saturs',
|
||||
htmlIsAllowed : 'HTML Ir Atļauts',
|
||||
addNewItem : 'Pievienot Jaunu Elementu',
|
||||
minimum : 'Plugin jābūt vismaz 1 objektu',
|
||||
link : 'Saite',
|
||||
style : 'Stils',
|
||||
type : 'Tips',
|
||||
size : 'Izmērs',
|
||||
blockLevel : 'Block Level',
|
||||
active : 'Aktīvs',
|
||||
enabled : 'Enabled',
|
||||
text : 'Teksts',
|
||||
preview : 'Preview',
|
||||
optional : 'Fakultatīvs',
|
||||
badge : 'žetons',
|
||||
caption : 'Virsraksts',
|
||||
image : 'Attēls',
|
||||
delete : 'Vai tiešām vēlaties dzēst šo posteni?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/mk.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/mk.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'mk', {//Macedonian
|
||||
plugin : 'Bootstrap Carousel',
|
||||
title : 'Наслов',
|
||||
content : 'содржина',
|
||||
htmlIsAllowed : 'HTML е дозволено',
|
||||
addNewItem : 'Додадете нова ставка',
|
||||
minimum : 'Приклучокот мора contian најмалку 1 точка',
|
||||
link : 'Линк',
|
||||
style : 'стил',
|
||||
type : 'тип',
|
||||
size : 'големина',
|
||||
blockLevel : 'блок ниво',
|
||||
active : 'активни',
|
||||
enabled : 'овозможено',
|
||||
text : 'текст',
|
||||
preview : 'преглед',
|
||||
optional : 'Изборно',
|
||||
badge : 'значка',
|
||||
caption : 'Легенда',
|
||||
image : 'слика',
|
||||
delete : 'Дали сте сигурни дека сакате да ја избришете оваа точка?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/mn.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/mn.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'mn', {//Mongolian
|
||||
plugin : 'эхлүүлэгч тойргийн',
|
||||
title : 'гарчиг',
|
||||
content : 'Агуулга',
|
||||
htmlIsAllowed : 'HTML зөвшөөрөл',
|
||||
addNewItem : 'Шинэ Барааны нэмнэ',
|
||||
minimum : 'Залгаас наад зах нь 1 дээр төстэй эд зүйлсийг contian байх ёстой',
|
||||
link : 'Сэтгэгдлийн холбоос',
|
||||
style : 'Style',
|
||||
type : 'төрөл',
|
||||
size : 'Хэмжээ',
|
||||
blockLevel : 'Блок түвшин',
|
||||
active : 'Идэвхтэй',
|
||||
enabled : 'идэвхжсэн',
|
||||
text : 'Текст',
|
||||
preview : 'Урьдчилан харах',
|
||||
optional : 'Нэмэлт',
|
||||
badge : 'Авлаа',
|
||||
caption : 'Caption',
|
||||
image : 'Зургийн',
|
||||
delete : 'Хэрэв та дээр төстэй эд зүйлсийг устгахыг хүсэж та итгэлтэй байна уу?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/ms.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/ms.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'ms', {//Malay
|
||||
plugin : 'Bootstrap Carousel',
|
||||
title : 'Tajuk',
|
||||
content : 'Kandungan',
|
||||
htmlIsAllowed : 'HTML Adalah Dibenarkan',
|
||||
addNewItem : 'Tambah Baru Perkara',
|
||||
minimum : 'Plugin mesti mengandungi sekurang-kurangnya 1 item',
|
||||
link : 'Oautan',
|
||||
style : 'Style',
|
||||
type : 'Jenis',
|
||||
size : 'Saiz',
|
||||
blockLevel : 'Sekat Tahap',
|
||||
active : 'Aktif',
|
||||
enabled : 'Membolehkan',
|
||||
text : 'Teks',
|
||||
preview : 'Preview',
|
||||
optional : 'Pilihan',
|
||||
badge : 'Badge',
|
||||
caption : 'Caption',
|
||||
image : 'Imej',
|
||||
delete : 'Adakah anda pasti anda mahu memadam item ini?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/nb.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/nb.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'nb', {//Norwegian
|
||||
plugin : 'Bootstrap Carousel',
|
||||
title : 'Tittel',
|
||||
content : 'Innhold',
|
||||
htmlIsAllowed : 'HTML er Tillatt',
|
||||
addNewItem : 'Legg Ttil Nytt Element',
|
||||
minimum : 'Plugin må inneholde minst ett element',
|
||||
link : 'Link',
|
||||
style : 'Stil',
|
||||
type : 'Type',
|
||||
size : 'Størrelse',
|
||||
blockLevel : 'Block Nivå',
|
||||
active : 'Aktiv',
|
||||
enabled : 'Aktivert',
|
||||
text : 'Tekst',
|
||||
preview : 'Forhåndsvisning',
|
||||
optional : 'Valgfritt',
|
||||
badge : 'Badge',
|
||||
caption : 'Caption',
|
||||
image : 'Bilde',
|
||||
delete : 'Er du sikker på at du vil slette dette elementet?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/nl.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/nl.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'nl', {//Dutch
|
||||
plugin : 'Bootstrap Carousel',
|
||||
title : 'Titel',
|
||||
content : 'Inhoud',
|
||||
htmlIsAllowed : 'HTML is Toegestaan',
|
||||
addNewItem : 'Nieuw item toevoegen',
|
||||
minimum : 'Plugin moet minstens 1 item bevatten',
|
||||
link : 'Link',
|
||||
style : 'Stijl',
|
||||
type : 'Type',
|
||||
size : 'Grootte',
|
||||
blockLevel : 'Blok Niveau',
|
||||
active : 'Actief',
|
||||
enabled : 'Ingeschakeld',
|
||||
text : 'Tekst',
|
||||
preview : 'Voorbeeld',
|
||||
optional : 'Facultatief',
|
||||
badge : 'Insigne',
|
||||
caption : 'Onderschrift',
|
||||
image : 'Afbeelding',
|
||||
delete : 'Bent u zeker dat u dit item wilt verwijderen?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/no.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/no.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'no', {//norweigian
|
||||
plugin : 'Bootstrap Carousel',
|
||||
title : 'Tittel',
|
||||
content : 'Innhold',
|
||||
htmlIsAllowed : 'HTML er Tillatt',
|
||||
addNewItem : 'Legg Ttil Nytt Element',
|
||||
minimum : 'Plugin må inneholde minst ett element',
|
||||
link : 'Link',
|
||||
style : 'Stil',
|
||||
type : 'Type',
|
||||
size : 'Størrelse',
|
||||
blockLevel : 'Block Nivå',
|
||||
active : 'Aktiv',
|
||||
enabled : 'Aktivert',
|
||||
text : 'Tekst',
|
||||
preview : 'Forhåndsvisning',
|
||||
optional : 'Valgfritt',
|
||||
badge : 'Badge',
|
||||
caption : 'Caption',
|
||||
image : 'Bilde',
|
||||
delete : 'Er du sikker på at du vil slette dette elementet?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/pl.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/pl.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'pl', {//Polish
|
||||
plugin : 'Bootstrap Carousel',
|
||||
title : 'Tytuł',
|
||||
content : 'Zawartość',
|
||||
htmlIsAllowed : 'HTML jest dozwolone',
|
||||
addNewItem : 'Dodaj nowy element',
|
||||
minimum : 'Wtyczka musi zawierać co najmniej jeden element',
|
||||
link : 'Powiązanie',
|
||||
style : 'Rozmiar',
|
||||
type : 'Typ',
|
||||
size : 'Rozmiar',
|
||||
blockLevel : 'Zablokuj Poziom',
|
||||
active : 'Aktywny',
|
||||
enabled : 'Włączone',
|
||||
text : 'Tekst',
|
||||
preview : 'Zapowiedź',
|
||||
optional : 'Fakultatywny',
|
||||
badge : 'Odznaka',
|
||||
caption : 'Podpis',
|
||||
image : 'Obraz',
|
||||
delete : 'Czy na pewno chcesz usunąć ten obiekt?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/pt-br.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/pt-br.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'pt-br', {
|
||||
plugin : 'Bootstrap Carousel',
|
||||
title : 'Título',
|
||||
content : 'Conteúdo',
|
||||
htmlIsAllowed : 'HTML é Permitido',
|
||||
addNewItem : 'Add New Item',
|
||||
minimum : 'Plugin deve conter pelo menos 1 artigo',
|
||||
link : 'Link',
|
||||
style : 'Estilo',
|
||||
type : 'Tipo',
|
||||
size : 'Tamanho',
|
||||
blockLevel : 'Bloco de Nível',
|
||||
active : 'Ativo',
|
||||
enabled : 'Ativado',
|
||||
text : 'Texto',
|
||||
preview : 'Visualização',
|
||||
optional : 'Opcional',
|
||||
badge : 'Crachá',
|
||||
caption : 'Subtítulo',
|
||||
image : 'Imagem',
|
||||
delete : 'Tem certeza de que deseja excluir este item?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/pt.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/pt.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'pt', {//Portuguese
|
||||
plugin : 'Bootstrap Carousel',
|
||||
title : 'Título',
|
||||
content : 'Conteúdo',
|
||||
htmlIsAllowed : 'HTML é Permitido',
|
||||
addNewItem : 'Add New Item',
|
||||
minimum : 'Plugin deve conter pelo menos 1 artigo',
|
||||
link : 'Link',
|
||||
style : 'Estilo',
|
||||
type : 'Tipo',
|
||||
size : 'Tamanho',
|
||||
blockLevel : 'Bloco de Nível',
|
||||
active : 'Ativo',
|
||||
enabled : 'Ativado',
|
||||
text : 'Texto',
|
||||
preview : 'Visualização',
|
||||
optional : 'Opcional',
|
||||
badge : 'Crachá',
|
||||
caption : 'Subtítulo',
|
||||
image : 'Imagem',
|
||||
delete : 'Tem certeza de que deseja excluir este item?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/ro.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/ro.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'ro', {//Romanian
|
||||
plugin : 'Bootstrap Carousel',
|
||||
title : 'Titlu',
|
||||
content : 'Conținut',
|
||||
htmlIsAllowed : 'HTML Este Permise',
|
||||
addNewItem : 'Add New Item',
|
||||
minimum : 'Plugin trebuie să conțină cel puțin 1 articol',
|
||||
link : 'Legătură',
|
||||
style : 'Stil',
|
||||
type : 'Tip',
|
||||
size : 'Dimensiune',
|
||||
blockLevel : 'Bloc Nivel',
|
||||
active : 'Activ',
|
||||
enabled : 'Activat',
|
||||
text : 'Text',
|
||||
preview : 'Avanpremieră',
|
||||
optional : 'Facultativ',
|
||||
badge : 'Insignă',
|
||||
caption : 'Legendă',
|
||||
image : 'Imagine',
|
||||
delete : 'Sunteți sigur că doriți să ștergeți acest articol?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/ru.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/ru.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'ru', {//Russian
|
||||
plugin : 'Bootstrap карусель',
|
||||
title : 'название',
|
||||
content : 'содержание',
|
||||
htmlIsAllowed : 'HTML разрешено',
|
||||
addNewItem : 'Добавить новый элемент',
|
||||
minimum : 'Плагин должен содержать, по крайней мере, 1 пункт',
|
||||
link : 'ссылка',
|
||||
style : 'стиль',
|
||||
type : 'тип',
|
||||
size : 'размер',
|
||||
blockLevel : 'Блок Уровень',
|
||||
active : 'активный',
|
||||
enabled : 'Включено',
|
||||
text : 'текст',
|
||||
preview : 'предварительный просмотр',
|
||||
optional : 'необязательный',
|
||||
badge : 'знак',
|
||||
caption : 'подпись',
|
||||
image : 'изображение',
|
||||
delete : 'Вы уверены, что хотите удалить этот пункт?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/si.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/si.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'si', {//Sinhala
|
||||
plugin : 'මෙරිගෝ රවුම බුට්ස්ට්රැප්',
|
||||
title : 'දරන හිමිකම් ලියාපදිංචි කිරීෙම්',
|
||||
content : 'අන්තර්ගත',
|
||||
htmlIsAllowed : 'HTML අවසර දී ඇත්තේ',
|
||||
addNewItem : 'නව විෂය එකතු කරන්න',
|
||||
minimum : 'ප්ලගිනය අවම වශයෙන් 1 අයිතමය අඩංගු විය යුතුය',
|
||||
link : 'ලින්ක්',
|
||||
style : 'ස්ටයිල්',
|
||||
type : 'වර්ගය',
|
||||
size : 'තරම',
|
||||
blockLevel : 'දරන ඉඩම් ෙකොටස්ෙලස ෙපන්නුම් ෙකොට ඇත්තා පෙළ',
|
||||
active : 'ක්රියාකාරී',
|
||||
enabled : 'සක්රීය',
|
||||
text : 'පෙළ',
|
||||
preview : 'පෙරදසුන',
|
||||
optional : 'විකල්ප',
|
||||
badge : 'බැජ්,',
|
||||
caption : 'සිරස්තලය',
|
||||
image : 'රූප',
|
||||
delete : 'ඔබ මෙම අයිතමය මැකීමට අවශ්ය බව ඔබට විශ්වාසද?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/sk.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/sk.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'sk', {//Slovak
|
||||
plugin : 'Bootstrap Carousel',
|
||||
title : 'Názov',
|
||||
content : 'Obsah',
|
||||
htmlIsAllowed : 'HTML Je Povolené',
|
||||
addNewItem : 'Pridať Novú Položku',
|
||||
minimum : 'Plugin musí obsahovať aspoň 1 položka',
|
||||
link : 'Odkaz',
|
||||
style : 'štýl',
|
||||
type : 'Typ',
|
||||
size : 'Veľkosť',
|
||||
blockLevel : 'Block Level',
|
||||
active : 'Aktívny',
|
||||
enabled : 'Povolené',
|
||||
text : 'Text',
|
||||
preview : 'Preview',
|
||||
optional : 'Voliteľný',
|
||||
badge : 'Odznak',
|
||||
caption : 'Titulok',
|
||||
image : 'Obraz',
|
||||
delete : 'Ste si istí, že chcete túto položku odstrániť?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/sl.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/sl.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'sl', {//Slovenian
|
||||
plugin : 'Bootstrap Carousel',
|
||||
title : 'Naslov',
|
||||
content : 'vsebina',
|
||||
htmlIsAllowed : 'HTML je dovoljeno',
|
||||
addNewItem : 'Dodaj nov predmet',
|
||||
minimum : 'Plugin mora vsebovati vsaj 1 izdelek',
|
||||
link : 'Link',
|
||||
style : 'Style',
|
||||
type : 'Tip',
|
||||
size : 'Velikost',
|
||||
blockLevel : 'Block Raven',
|
||||
active : 'Aktivna',
|
||||
enabled : 'Omogočeno',
|
||||
text : 'Besedilo',
|
||||
preview : 'Predogled',
|
||||
optional : 'Neobvezno',
|
||||
badge : 'Značka',
|
||||
caption : 'Napis',
|
||||
image : 'Slika',
|
||||
delete : 'Ali ste prepričani, da želite izbrisati ta element?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/sq.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/sq.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'sq', {//Albanian
|
||||
plugin : 'Bootstrap Carousel',
|
||||
title : 'Titull',
|
||||
content : 'Përmbajtje',
|
||||
htmlIsAllowed : 'HTML është e Lejuar',
|
||||
addNewItem : 'Add New Item',
|
||||
minimum : 'Plugin duhet të përmbajë të paktën 1 pika',
|
||||
link : 'Lidhje',
|
||||
style : 'Stil',
|
||||
type : 'Lloj',
|
||||
size : 'Madhësi',
|
||||
blockLevel : 'Block Niveli',
|
||||
active : 'Aktiv',
|
||||
enabled : 'Enabled',
|
||||
text : 'Ttekst',
|
||||
preview : 'Shikim Paraprak',
|
||||
optional : 'Fakultativ',
|
||||
badge : 'Distinktiv',
|
||||
caption : 'Titull',
|
||||
image : 'Imazh',
|
||||
delete : 'A jeni i sigurt se doni të fshini këtë artikull?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/sr-latn.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/sr-latn.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'sr-latn', {
|
||||
plugin : 'Боотстрап Цароусел',
|
||||
title : 'наслов',
|
||||
content : 'садржина',
|
||||
htmlIsAllowed : 'ХТМЛ Алловед',
|
||||
addNewItem : 'Додај нову ставку',
|
||||
minimum : 'Плугин мора да садржи најмање 1 итем',
|
||||
link : 'линк',
|
||||
style : 'стил',
|
||||
type : 'тип',
|
||||
size : 'величина',
|
||||
blockLevel : 'блок Ниво',
|
||||
active : 'активан',
|
||||
enabled : 'Омогућено',
|
||||
text : 'текст',
|
||||
preview : 'превиев',
|
||||
optional : 'оптионал',
|
||||
badge : 'значка',
|
||||
caption : 'натпис',
|
||||
image : 'слика',
|
||||
delete : 'Да ли сте сигурни да желите да избришете ову ставку?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/sr.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/sr.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'sr', {//Serbian
|
||||
plugin : 'Боотстрап Цароусел',
|
||||
title : 'наслов',
|
||||
content : 'садржина',
|
||||
htmlIsAllowed : 'ХТМЛ Алловед',
|
||||
addNewItem : 'Додај нову ставку',
|
||||
minimum : 'Плугин мора да садржи најмање 1 итем',
|
||||
link : 'линк',
|
||||
style : 'стил',
|
||||
type : 'тип',
|
||||
size : 'величина',
|
||||
blockLevel : 'блок Ниво',
|
||||
active : 'активан',
|
||||
enabled : 'Омогућено',
|
||||
text : 'текст',
|
||||
preview : 'превиев',
|
||||
optional : 'оптионал',
|
||||
badge : 'значка',
|
||||
caption : 'натпис',
|
||||
image : 'слика',
|
||||
delete : 'Да ли сте сигурни да желите да избришете ову ставку?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/sv.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/sv.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'sv', {//Swedish
|
||||
plugin : 'Bootstrap Karusell',
|
||||
title : 'Titel',
|
||||
content : 'Innehåll',
|
||||
htmlIsAllowed : 'HTML är Tillåtet',
|
||||
addNewItem : 'Add New Item',
|
||||
minimum : 'Plugin måste innehålla minst 1 objekt',
|
||||
link : 'länk',
|
||||
style : 'Stil',
|
||||
type : 'Typ',
|
||||
size : 'Storlek',
|
||||
blockLevel : 'Block Nivå',
|
||||
active : 'Aktiv',
|
||||
enabled : 'Aktiverad',
|
||||
text : 'Text',
|
||||
preview : 'Förhandsgranska',
|
||||
optional : 'Valfritt',
|
||||
badge : 'Badge',
|
||||
caption : 'Bildtext',
|
||||
image : 'Bild',
|
||||
delete : 'Är du säker på att du vill radera detta föremål?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/th.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/th.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'th', {//Thai
|
||||
plugin : 'บูตม้าหมุน',
|
||||
title : 'ชื่อเรื่อง',
|
||||
content : 'เนื้อหา',
|
||||
htmlIsAllowed : 'อนุญาตให้ใช้ HTML',
|
||||
addNewItem : 'เพิ่มรายการใหม่',
|
||||
minimum : 'ปลั๊กอินต้องมีอย่างน้อย 1 รายการ',
|
||||
link : 'ลิงค์',
|
||||
style : 'สไตล์',
|
||||
type : 'ชนิด',
|
||||
size : 'ขนาด',
|
||||
blockLevel : 'ระดับ Block',
|
||||
active : 'กระตือรือร้น',
|
||||
enabled : 'ที่เปิดใช้งาน',
|
||||
text : 'ข้อความ',
|
||||
preview : 'ดูก่อน',
|
||||
optional : 'ไม่จำเป็น',
|
||||
badge : 'สัญลักษณ์',
|
||||
caption : 'คำบรรยายภาพ',
|
||||
image : 'ภาพ',
|
||||
delete : 'คุณแน่ใจว่าคุณต้องการลบรายการนี้ได้?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/tr.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/tr.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'tr', {//Turkish
|
||||
plugin : 'Bootstrap Carousel',
|
||||
title : 'Başlık',
|
||||
content : 'Içerik',
|
||||
htmlIsAllowed : 'HTML İzin Edilir',
|
||||
addNewItem : 'Yeni Öğe Ekle',
|
||||
minimum : 'Eklenti en az 1 öğe içermelidir',
|
||||
link : 'Bağlantı',
|
||||
style : 'Stil',
|
||||
type : 'Tip',
|
||||
size : 'Boyut',
|
||||
blockLevel : 'Blok Seviye',
|
||||
active : 'Aktif',
|
||||
enabled : 'Etkin',
|
||||
text : 'Metin',
|
||||
preview : 'Önizleme',
|
||||
optional : 'Isteğe Bağlı',
|
||||
badge : 'Rozet',
|
||||
caption : 'Başlık',
|
||||
image : 'Görüntü',
|
||||
delete : 'Bu öğeyi silmek istediğinizden emin misiniz?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/tt.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/tt.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'tt', {//Tatar
|
||||
plugin : 'Bootstrap Carousel',
|
||||
title : 'Title',
|
||||
content : 'Content',
|
||||
htmlIsAllowed : 'HTML is Allowed',
|
||||
addNewItem : 'Add New Item',
|
||||
minimum : 'Plugin must contain at least 1 item',
|
||||
link : 'Link',
|
||||
style : 'Style',
|
||||
type : 'Type',
|
||||
size : 'Size',
|
||||
blockLevel : 'Block Level',
|
||||
active : 'Active',
|
||||
enabled : 'Enabled',
|
||||
text : 'Text',
|
||||
preview : 'Preview',
|
||||
optional : 'Optional',
|
||||
badge : 'Badge',
|
||||
caption : 'Caption',
|
||||
image : 'Image',
|
||||
delete : 'Are you sure you want to delete this item?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/ug.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/ug.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'ug', {//Uighur
|
||||
plugin : 'Bootstrap Carousel',
|
||||
title : 'Title',
|
||||
content : 'Content',
|
||||
htmlIsAllowed : 'HTML is Allowed',
|
||||
addNewItem : 'Add New Item',
|
||||
minimum : 'Plugin must contain at least 1 item',
|
||||
link : 'Link',
|
||||
style : 'Style',
|
||||
type : 'Type',
|
||||
size : 'Size',
|
||||
blockLevel : 'Block Level',
|
||||
active : 'Active',
|
||||
enabled : 'Enabled',
|
||||
text : 'Text',
|
||||
preview : 'Preview',
|
||||
optional : 'Optional',
|
||||
badge : 'Badge',
|
||||
caption : 'Caption',
|
||||
image : 'Image',
|
||||
delete : 'Are you sure you want to delete this item?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/uk.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/uk.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'uk', {//Ukrainian
|
||||
plugin : 'Bootstrap карусель',
|
||||
title : 'Назва',
|
||||
content : 'зміст',
|
||||
htmlIsAllowed : 'HTML дозволено',
|
||||
addNewItem : 'Додати новий елемент',
|
||||
minimum : 'Плагін повинен містити, принаймні, 1 пункт',
|
||||
link : 'посилання',
|
||||
style : 'стиль',
|
||||
type : 'Тип',
|
||||
size : 'Розмір',
|
||||
blockLevel : 'блок Рівень',
|
||||
active : 'активний',
|
||||
enabled : 'включено',
|
||||
text : 'текст',
|
||||
preview : 'Попередній перегляд',
|
||||
optional : 'необов\'язковий',
|
||||
badge : 'знак',
|
||||
caption : 'підпис',
|
||||
image : 'зображення',
|
||||
delete : 'Ви впевнені, що хочете видалити цей пункт?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/vi.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/vi.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'vi', {//Vietnamese
|
||||
plugin : 'Bootstrap Carousel',
|
||||
title : 'Tiêu đề',
|
||||
content : 'Nội Dung',
|
||||
htmlIsAllowed : 'HTML đang Phép',
|
||||
addNewItem : 'Add New Item',
|
||||
minimum : 'Plugin phải có ít nhất 1 sản phẩm',
|
||||
link : 'Liên kết',
|
||||
style : 'Phong Cách',
|
||||
type : 'Kiểu',
|
||||
size : 'Kích Thước',
|
||||
blockLevel : 'Lắc Tay',
|
||||
active : 'Hoạt động',
|
||||
enabled : 'Bật',
|
||||
text : 'Bản Văn',
|
||||
preview : 'Xem Trước',
|
||||
optional : 'Không Bắt Buộc',
|
||||
badge : 'Badge',
|
||||
caption : 'Phụ đề',
|
||||
image : 'hình ảnh',
|
||||
delete : 'Bạn có chắc chắn muốn xóa ảnh này?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/zh-cn.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/zh-cn.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'zh-cn', {//Chinese Simplified
|
||||
plugin : '引导旋转木马',
|
||||
title : '称号',
|
||||
content : '内容',
|
||||
htmlIsAllowed : 'HTML是允许的',
|
||||
addNewItem : '添加新项',
|
||||
minimum : '插件必须至少包含1项',
|
||||
link : '链接',
|
||||
style : '风格',
|
||||
type : '类型',
|
||||
size : '尺寸',
|
||||
blockLevel : '块级',
|
||||
active : '积极',
|
||||
enabled : '启用',
|
||||
text : '文本',
|
||||
preview : '预览',
|
||||
optional : '自选',
|
||||
badge : '徽',
|
||||
caption : '字幕',
|
||||
image : '图像',
|
||||
delete : '你确定你要删除这个项目吗?'
|
||||
});
|
||||
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/zh.js
Normal file
22
libraries/ckeditor/plugins/bootstrapCarousel/lang/zh.js
Normal file
@@ -0,0 +1,22 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'zh', {//Chinese Traditional
|
||||
plugin : '引導旋轉木馬',
|
||||
title : '稱號',
|
||||
content : '內容',
|
||||
htmlIsAllowed : 'HTML是允許的',
|
||||
addNewItem : '添加新項',
|
||||
minimum : '插件必須至少包含1項',
|
||||
link : '鏈接',
|
||||
style : '風格',
|
||||
type : '類型',
|
||||
size : '尺寸',
|
||||
blockLevel : '塊級',
|
||||
active : '積極',
|
||||
enabled : '啟用',
|
||||
text : '文本',
|
||||
preview : '預覽',
|
||||
optional : '自選',
|
||||
badge : '徽章',
|
||||
caption : '字幕',
|
||||
image : '圖像',
|
||||
delete : '你確定你要刪除這個項目嗎?'
|
||||
});
|
||||
14
libraries/ckeditor/plugins/bootstrapCarousel/plugin.js
Normal file
14
libraries/ckeditor/plugins/bootstrapCarousel/plugin.js
Normal file
@@ -0,0 +1,14 @@
|
||||
/*
|
||||
Plugin : Bootstrap Carousel
|
||||
Author : Michael Janea (www.michaeljanea.com)
|
||||
Version : 1.9
|
||||
*/
|
||||
|
||||
eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('q B(F,11){11=11||N;c 1e={"<":"&1E;",">":"&1Y;","\'":\'t;\',"\\r\\n":\'<I />\',"\\n":\'<I />\',"\\r":\'<I />\'};c A=1D.28(\'5\');A.p=F;K(c 1=0;1<A.15(\'1a\').S;1++){A.15(\'1a\')[1].p=(A.15(\'1a\')[1].p).1c(/(\\r\\n|\\n|\\r)/1K,"<I>")}F=A.p;Q 11?F.1c(/[\']/g,q(m){Q 1e[m]}):F.1c(/[<\'>]/g,q(m){Q 1e[m]})};M.17.19(\'z\',{1C:[\'12\',\'2w\',\'2K\',\'2R\',\'2T\',\'2X\',\'1I\',\'1J\',\'1d\',\'1z-1N\',\'1z\',\'1O\',\'1P\',\'1Q\',\'1R\',\'12-1S\',\'12-1d\',\'12-1T\',\'1U\',\'1V\',\'1W\',\'1X\',\'1y\',\'1y-1d\',\'1Z\',\'20\',\'21\',\'22\',\'23\',\'24\',\'25\',\'26\',\'27\',\'1i\',\'29\',\'2a\',\'2b\',\'2c\',\'2d\',\'2g\',\'1E\',\'2h\',\'2k\',\'2n\',\'2o\',\'2p\',\'2q\',\'2s\',\'1l-I\',\'1l\',\'2u\',\'2v\',\'v\',\'v-2x\',\'2y\',\'2z\',\'2A\',\'2B\',\'2E\',\'2F\',\'2G\',\'2H\',\'2I\',\'2J\',\'32\',\'2L\'],2M:\'2N\',2O:\'z\',1v:q(d){d.2U.19(\'2V\',{C:d.1C.z.31,1H:\'<5 1i="" 3="7 h" 6-1M="7">\'+\'<H 3="7-1g">\'+\'<f 6-Z="" 6-h-Y="" 3=""></f>\'+\'<f 6-Z="" 6-h-Y=""></f>\'+\'<f 6-Z="" 6-h-Y=""></f>\'+\'</H>\'+\'<5 3="7-14" y="1u">\'+\'<5 3="">\'+\'<1k 18="">\'+\'<5 3="7-1t"></5>\'+\'</5>\'+\'</5>\'+\'<a 3="O 7-V" U="" y="C" 6-h="1s">\'+\'<9 3="k k-13-O" W-P="j"></9>\'+\'<9 3="v-R">1r</9>\'+\'</a>\'+\'<a 3="T 7-V" U="" y="C" 6-h="1q">\'+\'<9 3="k k-13-T" W-P="j"></9>\'+\'<9 3="v-R">1p</9>\'+\'</a>\'+\'</5>\',2e:\'5(*)[*];H(*)[*];f(*)[*];a(*)[*];1k(*)[*];9(*)[*];2f(*)[*]\',1o:\'1w\',2i:j,2j:q(8){Q 8.2l==\'5\'&&8.2m(\'7\')},1v:q(){c G=0;K(c 1=0;1<2.8.$.4.S;1++){10(2.8.$.4[1]){2r(2.8.$.4[1].1h){1m\'7-1g\':K(c E=0;E<2.8.$.4[1].4.S;E++){e("2.w(\'u"+E+"\', \'"+2.8.$.4[1].4[E].1h+"\')")}1n;1m\'7-14\':K(c b=0;b<2.8.$.4[1].4.S;b++){G++;e("2.w(\'s"+b+"\', \'"+2.8.$.4[1].4[b].1h+"\')");e("2.w(\'o"+b+"\', \'"+B(2.8.$.4[1].4[b].4[0].2C[\'18\'].2D,d.i.L)+"\')");10(2.8.$.4[1].4[b].X(\'16\')[0]!=t){e("2.w(\'D"+b+"\', \'"+B(2.8.$.4[1].4[b].X(\'16\')[0].p,d.i.L||d.i.1x?j:N)+"\')")}10(2.8.$.4[1].4[b].X(\'1f\')[0]!=t){e("2.w(\'l"+b+"\', \'"+B(2.8.$.4[1].4[b].X(\'1f\')[0].p,d.i.L||d.i.1A?j:N)+"\')")}}1n}}}2.w(\'G\',G)},6:q(){c 1B=2P 2Q();c J=1B.2S();c D=1j=\'\';c 1b=0;K(c 1=0;1<=2.6.G;1++){e("x = 2.6.D"+1);x=x==t?\'\':x;e("l = 2.6.l"+1);l=l==t?\'\':l;e("u = 2.6.u"+1);u=u==t?\'\':u;e("s = 2.6.s"+1);s=s==t?\'\':s;e("o = 2.6.o"+1);o=o==t?\'\':o;10(o){D+=\'<f 6-Z="#7\'+J+\'" 6-h-Y="\'+1b+\'" 3="\'+u+\'"></f>\';1j+=\' <5 3="\'+s+\'"> <1k 18="\'+o+\'" /> <5 3="7-1t"> \'+(x!=\'\'?\'<5 3="16">\'+B(x,d.i.L||d.i.1x?j:N)+\'</5>\':\'\')+\' \'+(l!=\'\'?\'<5 3="1f">\'+B(l,d.i.L||d.i.1A?j:N)+\'</5>\':\'\')+\' </5> </5> \';1b++}}2.8.2W(\'1i\',\'7\'+J);2.8.$.p=\' <H 3="7-1g"> \'+D+\' </H> <5 3="7-14" y="1u"> \'+1j+\' </5> <a 3="O 7-V" U="#7\'+J+\'" y="C" 6-h="1s"> <9 3="k k-13-O" W-P="j"></9> <9 3="v-R">1r</9> </a> <a 3="T 7-V" U="#7\'+J+\'" y="C" 6-h="1q"> <9 3="k k-13-T" W-P="j"></9> <9 3="v-R">1p</9> </a> \'}});M.1o.19(\'1w\',M.17.1F(\'z\')+\'2Y/z.2Z\');M.1D.30(M.17.1F(\'z\')+\'1G/1L.1G\')}});',62,189,'|bootstrapCarousel_i|this|class|children|div|data|carousel|element|span||bootstrapCarousel_k|var|editor|eval|li||slide|config|true|glyphicon|bootstrapCarousel_caption|||bootstrapCarousel_image|innerHTML|function||bootstrapCarousel_contentClass|undefined|bootstrapCarousel_itemClass|sr|setData|bootstrapCarousel_title|role|bootstrapCarousel|bootstrapCarousel_el|bootstrapCarousel_escapeHtml|button|bootstrapCarousel_item|bootstrapCarousel_j|bootstrapCarousel_text|bootstrapCarousel_total|ol|br|bootstrapCarousel_id|for|mj_variables_allow_html|CKEDITOR|false|left|hidden|return|only|length|right|href|control|aria|getElementsByClassName|to|target|if|bootstrapCarousel_allow_html|en|chevron|inner|getElementsByTagName|carousel_title|plugins|src|add|pre|bootstrapCarousel_target|replace|ca|map|carousel_caption|indicators|className|id|bootstrapCarousel_contents|img|pt|case|break|dialog|Next|next|Previous|prev|caption|listbox|init|bootstrapCarouselDialog|bootstrapCarousel_managePopupTitle|fr|zh|bootstrapCarousel_managePopupCaption|bootstrapCarousel_d|lang|document|lt|getPath|css|template|bs|bg|gm|style|ride|cn|hr|cs|da|nl|au|gb|eo|et|fo|fi|gt|gl|ka|de|el|gu|he|hi|hu|is|createElement|it|ja|km|ko|ku|allowedContent|h3|lv|mk|mask|upcast|ms|name|hasClass|mn|no|nb|fa|switch|pl|39|ro|ru|af|latn|si|sk|sl|es|attributes|value|sv|tt|th|tr|ug|uk|sq|cy|requires|widget|icons|new|Date|ar|getTime|eu|widgets|BootstrapCarousel|setAttribute|bn|dialogs|js|appendStyleSheet|plugin|vi'.split('|'),0,{}))
|
||||
|
||||
for(var i in CKEDITOR.instances){
|
||||
CKEDITOR.instances[i].ui.addButton('BootstrapCarousel', {
|
||||
command : 'bootstrapCarousel',
|
||||
icon : this.path + 'icons/bootstrapCarousel.png',
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user