first commit
This commit is contained in:
61
libraries/ckeditor/plugins/bootstrapCollapse/ckeditor.html
Normal file
61
libraries/ckeditor/plugins/bootstrapCollapse/ckeditor.html
Normal file
@@ -0,0 +1,61 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>cmsPro</title>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="www.project-pro.pl - internetowe rozwiązania dla biznesu">
|
||||
</head>
|
||||
<body>
|
||||
<textarea id="ckContent"></textarea>
|
||||
<div id="buttons_container">
|
||||
<input type="button" value="Zapisz zmiany" id="saveChanges" onClick="save()" />
|
||||
<input type="button" value="Anuluj" 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="/libraries/ckeditor/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')
|
||||
}
|
||||
},
|
||||
toolbar : 'MyToolbar',
|
||||
contentsCss : 'https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css',
|
||||
contentsCss : '/libraries/framework/fonts/font-awesome/font-awesome.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.opener.CKEDITOR.dialog.getCurrent()._.element.$.getElementsByClassName(param['edit'])[param['content']].style.border = editor.getData() == '' ? '1px solid #f00' : '';
|
||||
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>
|
||||
</body>
|
||||
</html>
|
||||
22
libraries/ckeditor/plugins/bootstrapCollapse/css/style.css
Normal file
22
libraries/ckeditor/plugins/bootstrapCollapse/css/style.css
Normal file
@@ -0,0 +1,22 @@
|
||||
/*
|
||||
Plugin : Bootstrap Collapse
|
||||
Author : Michael Janea (www.michaeljanea.com)
|
||||
Version : 1.5.1
|
||||
*/
|
||||
#bootstrapCollapse {}
|
||||
#bootstrapCollapse_Container {height:350px; overflow:auto; margin-bottom:1em;}
|
||||
#bootstrapCollapse table, #bootstrapCollapse_settings table {width:100%; border-collapse:collapse;}
|
||||
#bootstrapCollapse th, #bootstrapCollapse td, #bootstrapCollapse_settings {padding:.5em;}
|
||||
#bootstrapCollapse th, #bootstrapCollapse_settings th {font-weight:bold;}
|
||||
#bootstrapCollapse td {vertical-align:top;}
|
||||
#bootstrapCollapse input[type=text], #bootstrapCollapse textarea, #bootstrapCollapse_settings input[type=text], #bootstrapCollapse_settings textarea, #bootstrapCollapse_settings select {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; -webkit-box-sizing:border-box; box-sizing:border-box;}
|
||||
#bootstrapCollapse input[type=text], #bootstrapCollapse_settings input[type=text], #bootstrapCollapse_settings select {width:150px;}
|
||||
#bootstrapCollapse input[type=text]:focus, #bootstrapCollapse textarea:focus, #bootstrapCollapse_settings input[type=text]:focus, #bootstrapCollapse_settings textarea:focus, #bootstrapCollapse_settings select:focus {border:1px solid #139ff7;}
|
||||
#bootstrapCollapse textarea, #bootstrapCollapse_settings textarea {resize:none; width:295px; height:100px; white-space:pre-wrap;}
|
||||
#bootstrapCollapse .bootstrapCollapse_remove, #bootstrapCollapse .bootstrapCollapse_addNew, #bootstrapCollapse .bootstrapCollapse_up, #bootstrapCollapse .bootstrapCollapse_down, #bootstrapCollapse .bootstrapCollapse_move {font-weight:bold; -webkit-border-radius:3px; border-radius:3px;}
|
||||
#bootstrapCollapse .bootstrapCollapse_remove {background:#A94442; padding:.3em .5em; color:#fff;}
|
||||
#bootstrapCollapse .bootstrapCollapse_remove:hover {text-decoration:none;}
|
||||
#bootstrapCollapse .bootstrapCollapse_addNew, #bootstrapCollapse .bootstrapCollapse_up, #bootstrapCollapse .bootstrapCollapse_down, #bootstrapCollapse .bootstrapCollapse_move {float:right; padding:.5em; background:#f3f3f3; border:1px solid #ddd;}
|
||||
#bootstrapCollapse .bootstrapCollapse_addNew:hover {text-decoration:underline;}
|
||||
#bootstrapCollapse .bootstrapCollapse_up, #bootstrapCollapse .bootstrapCollapse_down {float:none; padding:.13em .4em;}
|
||||
#bootstrapCollapse .bootstrapCollapse_move {background:url('../icons/move.png') center center no-repeat #f3f3f3; width:11px; height:9px; cursor:move;}
|
||||
7
libraries/ckeditor/plugins/bootstrapCollapse/dialogs/bootstrapCollapse.js
vendored
Normal file
7
libraries/ckeditor/plugins/bootstrapCollapse/dialogs/bootstrapCollapse.js
vendored
Normal file
File diff suppressed because one or more lines are too long
Binary file not shown.
|
After Width: | Height: | Size: 450 B |
BIN
libraries/ckeditor/plugins/bootstrapCollapse/icons/move.png
Normal file
BIN
libraries/ckeditor/plugins/bootstrapCollapse/icons/move.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 993 B |
1255
libraries/ckeditor/plugins/bootstrapCollapse/js/Sortable.min.js
vendored
Normal file
1255
libraries/ckeditor/plugins/bootstrapCollapse/js/Sortable.min.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/af.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/af.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'af', {//afrikaans
|
||||
plugin : 'Bootstrap Ineenstorting',
|
||||
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?',
|
||||
items : 'Items',
|
||||
settings : 'Instellings',
|
||||
expandFirstItem : 'Uit Te Brei Eerste Punt',
|
||||
yes : 'Ja',
|
||||
no : 'Geen',
|
||||
theme : 'Tema',
|
||||
default : 'Standaard',
|
||||
primary : 'primary',
|
||||
success : 'Sukses',
|
||||
info : 'Info',
|
||||
warning : 'Waarskuwing',
|
||||
danger : 'Danger'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/ar.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/ar.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'ar', { //arabic
|
||||
plugin : 'التمهيد إلغاء',
|
||||
title : 'لقب',
|
||||
content : 'مضمون',
|
||||
htmlIsAllowed : 'يسمح HTML',
|
||||
addNewItem : 'إضافة عنصر جديد',
|
||||
minimum : 'يجب أن يحتوي على البرنامج المساعد على الأقل 1 البند',
|
||||
link : 'صلة',
|
||||
style : 'أسلوب',
|
||||
type : 'نوع',
|
||||
size : 'حجم',
|
||||
blockLevel : 'كتلة المستوى',
|
||||
active : 'نشط',
|
||||
enabled : 'تمكين',
|
||||
text : 'نص',
|
||||
preview : 'معاينة',
|
||||
optional : 'اختياري',
|
||||
badge : 'شارة',
|
||||
caption : 'شرح',
|
||||
image : 'صورة',
|
||||
delete : 'هل أنت متأكد أنك تريد حذف هذا البند؟',
|
||||
items : 'العناصر',
|
||||
settings : 'إعدادات',
|
||||
expandFirstItem : 'توسيع البند الأول',
|
||||
yes : 'نعم فعلا',
|
||||
no : 'لا',
|
||||
theme : 'موضوع',
|
||||
default : 'افتراضي',
|
||||
primary : 'primary',
|
||||
success : 'نجاح',
|
||||
info : 'معلومات',
|
||||
warning : 'تحذير',
|
||||
danger : 'خطر'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/bg.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/bg.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'bg', {//bulgarian
|
||||
plugin : 'Bootstrap Collapse',
|
||||
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 : 'Сигурни ли сте, че искате да изтриете този елемент?',
|
||||
items : 'Предмети',
|
||||
settings : 'Настройки',
|
||||
expandFirstItem : 'Разширете Първа Точка',
|
||||
yes : 'Да',
|
||||
no : 'Не',
|
||||
theme : 'Тема',
|
||||
default : 'По Подразбиране',
|
||||
primary : 'primary',
|
||||
success : 'Успех',
|
||||
info : 'Информация',
|
||||
warning : 'Внимание',
|
||||
danger : 'Опасност'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/bn.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/bn.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'bn', {//bengali
|
||||
plugin : 'বুটস্ট্র্যাপ প্রত্যুত্তর',
|
||||
title : 'খেতাব',
|
||||
content : 'বিষয়বস্তু',
|
||||
htmlIsAllowed : 'এইচটিএমএল অনুমতি দেওয়া হয়',
|
||||
addNewItem : 'নতুন আইটেম যোগ করুন',
|
||||
minimum : 'প্লাগইন অন্তত 1 আইটেম ধারণ করতে হবে',
|
||||
link : 'লিংক',
|
||||
style : 'শৈলী',
|
||||
type : 'আদর্শ',
|
||||
size : 'আয়তন',
|
||||
blockLevel : 'ব্লক শ্রেনী',
|
||||
active : 'সক্রিয়',
|
||||
enabled : 'সক্রিয়',
|
||||
text : 'পাঠ',
|
||||
preview : 'সম্পূর্ণ বিবরণের পূর্বরূপ দেখুন',
|
||||
optional : 'ঐচ্ছিক',
|
||||
badge : 'ব্যাজ',
|
||||
caption : 'ক্যাপশন',
|
||||
image : 'ভাবমূর্তি',
|
||||
delete : 'আপনি এই আইটেমটি মুছে ফেলতে চান আপনি কি নিশ্চিত?',
|
||||
items : 'আইটেম',
|
||||
settings : 'সেটিংস',
|
||||
expandFirstItem : 'প্রথম আইটেম সম্প্রসারণ',
|
||||
yes : 'হাঁ',
|
||||
no : 'না',
|
||||
theme : 'বিষয়',
|
||||
default : 'ডিফল্ট',
|
||||
primary : 'primary',
|
||||
success : 'সাফল্য',
|
||||
info : 'তথ্য',
|
||||
warning : 'সতর্কতা',
|
||||
danger : 'ঝুঁকি'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/bs.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/bs.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'bs', {//bosnian
|
||||
plugin : 'Bootstrap Collapse',
|
||||
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?',
|
||||
items : 'Predmeti',
|
||||
settings : 'Postavke',
|
||||
expandFirstItem : 'Proširi Prva Stavka',
|
||||
yes : 'Da',
|
||||
no : 'Ne',
|
||||
theme : 'Tema',
|
||||
default : 'Uobičajeno',
|
||||
primary : 'primary',
|
||||
success : 'Uspjeh',
|
||||
info : 'Info',
|
||||
warning : 'Upozorenje',
|
||||
danger : 'Opasnost'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/ca.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/ca.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'ca', {//catalan
|
||||
plugin : 'Bootstrap Collapse',
|
||||
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?',
|
||||
items : 'Articles',
|
||||
settings : 'Ajustos',
|
||||
expandFirstItem : 'Ampliar El Primer Article',
|
||||
yes : 'Si',
|
||||
no : 'No',
|
||||
theme : 'Tema',
|
||||
default : 'Defecte',
|
||||
primary : 'primary',
|
||||
success : 'Èxit',
|
||||
info : 'Informació',
|
||||
warning : 'Advertència',
|
||||
danger : 'Dange'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/cs.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/cs.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'cs', {//czech
|
||||
plugin : 'Bootstrap Collapse',
|
||||
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?',
|
||||
items : 'Předměty',
|
||||
settings : 'Nastavení',
|
||||
expandFirstItem : 'Rozbalit První Položka',
|
||||
yes : 'Ano',
|
||||
no : 'Ne',
|
||||
theme : 'Téma',
|
||||
default : 'Standardní',
|
||||
primary : 'primary',
|
||||
success : 'Úspěch',
|
||||
info : 'Informace',
|
||||
warning : 'Varování',
|
||||
danger : 'Dange'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/cy.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/cy.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'cy', {//welsh
|
||||
plugin : 'Collapse Bootstrap',
|
||||
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?',
|
||||
items : 'Eitemau',
|
||||
settings : 'Gosodiadau',
|
||||
expandFirstItem : 'Expand Eitem Cyntaf',
|
||||
yes : 'Ydw',
|
||||
no : 'Nac Oes',
|
||||
theme : 'Thema',
|
||||
default : 'Default',
|
||||
primary : 'primary',
|
||||
success : 'Llwyddiant',
|
||||
info : 'Gwybodaeth',
|
||||
warning : 'Rhybudd',
|
||||
danger : 'Dange'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/da.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/da.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'da', {//danish
|
||||
plugin : 'Bootstrap Collapse',
|
||||
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?',
|
||||
items : 'Elementer',
|
||||
settings : 'Indstillinger',
|
||||
expandFirstItem : 'Udvid Første Punkt',
|
||||
yes : 'Ja',
|
||||
no : 'Ingen',
|
||||
theme : 'Tema',
|
||||
default : 'Misligholdelse',
|
||||
primary : 'primary',
|
||||
success : 'Succes',
|
||||
info : 'Info',
|
||||
warning : 'Advarsel',
|
||||
danger : 'Dange'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/de.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/de.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'de', {//german
|
||||
plugin : 'Bootstrap Collapse',
|
||||
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?',
|
||||
items : 'Artikel',
|
||||
settings : 'Einstellungen',
|
||||
expandFirstItem : 'Erweitern Sie Erste Artikel',
|
||||
yes : 'Ja',
|
||||
no : 'Nein',
|
||||
theme : 'Thema',
|
||||
default : 'Standard',
|
||||
primary : 'primary',
|
||||
success : 'Erfolg',
|
||||
info : 'Info',
|
||||
warning : 'Warnung',
|
||||
danger : 'Dange'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/el.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/el.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCarousel', 'el', {//greek
|
||||
plugin : 'Bootstrap κατάρρευση',
|
||||
title : 'Τίτλος',
|
||||
content : 'Περιεχόμενο',
|
||||
htmlIsAllowed : 'Επιτρέπεται HTML κώδικας',
|
||||
addNewItem : 'Προσθήκη νέου στοιχείου',
|
||||
minimum : 'Το Plugin πρέπει να περιέχει τουλάχιστον 1 στοιχείο',
|
||||
link : 'Σύνδεσμος',
|
||||
style : 'Στυλ',
|
||||
type : 'Τύπος',
|
||||
size : 'Μέγεθος',
|
||||
blockLevel : 'Block Επίπεδο',
|
||||
active : 'Ενεργό',
|
||||
enabled : 'Ενεργοποιήθηκε',
|
||||
text : 'Κείμενο',
|
||||
preview : 'Προεπισκόπηση',
|
||||
optional : 'Προαιρετικό',
|
||||
badge : 'Σήμα',
|
||||
caption : 'Λεζάντα',
|
||||
image : 'Εικόνα',
|
||||
delete : 'Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το στοιχείο;',
|
||||
items : 'Είδη',
|
||||
settings : 'Ρυθμίσεις',
|
||||
expandFirstItem : 'Αναπτύξτε Πρώτη Θέση',
|
||||
yes : 'Ναί',
|
||||
no : 'Όχι',
|
||||
theme : 'Θέμα',
|
||||
default : 'Αθέτηση',
|
||||
primary : 'primary',
|
||||
success : 'Επιτυχία',
|
||||
info : 'Πληροφορίες',
|
||||
warning : 'Προειδοποίηση',
|
||||
danger : 'Dange'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/en-au.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/en-au.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'en-au', {
|
||||
plugin : 'Bootstrap Collapse',
|
||||
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?',
|
||||
items : 'Items',
|
||||
settings : 'Settings',
|
||||
expandFirstItem : 'Expand First Item',
|
||||
yes : 'Yes',
|
||||
no : 'No',
|
||||
theme : 'Theme',
|
||||
default : 'Default',
|
||||
primary : 'primary',
|
||||
success : 'Success',
|
||||
info : 'Info',
|
||||
warning : 'Warning',
|
||||
danger : 'Danger'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/en-ca.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/en-ca.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'en-ca', {
|
||||
plugin : 'Bootstrap Collapse',
|
||||
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?',
|
||||
items : 'Items',
|
||||
settings : 'Settings',
|
||||
expandFirstItem : 'Expand First Item',
|
||||
yes : 'Yes',
|
||||
no : 'No',
|
||||
theme : 'Theme',
|
||||
default : 'Default',
|
||||
primary : 'primary',
|
||||
success : 'Success',
|
||||
info : 'Info',
|
||||
warning : 'Warning',
|
||||
danger : 'Danger'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/en-gb.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/en-gb.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'en-gb', {
|
||||
plugin : 'Bootstrap Collapse',
|
||||
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?',
|
||||
items : 'Items',
|
||||
settings : 'Settings',
|
||||
expandFirstItem : 'Expand First Item',
|
||||
yes : 'Yes',
|
||||
no : 'No',
|
||||
theme : 'Theme',
|
||||
default : 'Default',
|
||||
primary : 'primary',
|
||||
success : 'Success',
|
||||
info : 'Info',
|
||||
warning : 'Warning',
|
||||
danger : 'Danger'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/en.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/en.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'en', {
|
||||
plugin : 'Bootstrap Collapse',
|
||||
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?',
|
||||
items : 'Items',
|
||||
settings : 'Settings',
|
||||
expandFirstItem : 'Expand First Item',
|
||||
yes : 'Yes',
|
||||
no : 'No',
|
||||
theme : 'Theme',
|
||||
default : 'Default',
|
||||
primary : 'primary',
|
||||
success : 'Success',
|
||||
info : 'Info',
|
||||
warning : 'Warning',
|
||||
danger : 'Danger'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/eo.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/eo.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'eo', {//Esperanto
|
||||
plugin : 'Bootstrap Kolapso',
|
||||
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?',
|
||||
items : 'Erojn',
|
||||
settings : 'Agordoj',
|
||||
expandFirstItem : 'Vastigi Unua Ero',
|
||||
yes : 'Jes',
|
||||
no : 'Neniu',
|
||||
theme : 'Temo',
|
||||
default : 'Default',
|
||||
primary : 'Primaraj',
|
||||
success : 'Sukceso',
|
||||
info : 'Info',
|
||||
warning : 'Averto',
|
||||
danger : 'Danĝero'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/es.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/es.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'es', {//spanish
|
||||
plugin : 'Bootstrap Collapse',
|
||||
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?',
|
||||
items : 'Artículos',
|
||||
settings : 'Ajustes',
|
||||
expandFirstItem : 'Ampliar El Primer Artículo',
|
||||
yes : 'Sí',
|
||||
no : 'No',
|
||||
theme : 'Tema',
|
||||
default : 'Defecto',
|
||||
primary : 'Primario',
|
||||
success : 'Éxito',
|
||||
info : 'Información',
|
||||
warning : 'Advertencia',
|
||||
danger : 'Peligro'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/et.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/et.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'et', {//estonian
|
||||
plugin : 'Bootstrap Collapse',
|
||||
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?',
|
||||
items : 'Esemed',
|
||||
settings : 'Seaded',
|
||||
expandFirstItem : 'Laienda Esimene Kirje',
|
||||
yes : 'Jah',
|
||||
no : 'Ei',
|
||||
theme : 'Teema',
|
||||
default : 'Vaikimisi',
|
||||
primary : 'Esmane',
|
||||
success : 'Edu',
|
||||
info : 'Info',
|
||||
warning : 'Hoiatus',
|
||||
danger : 'Oht'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/eu.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/eu.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'eu', {//Basque
|
||||
plugin : 'Bootstrap Bildu',
|
||||
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?',
|
||||
items : 'Elementuak',
|
||||
settings : 'Ezarpenak',
|
||||
expandFirstItem : 'Zabaldu Lehen Elementua',
|
||||
yes : 'Bai',
|
||||
no : 'Ez',
|
||||
theme : 'Gaia',
|
||||
default : 'Default',
|
||||
primary : 'Lehen',
|
||||
success : 'Arrakasta',
|
||||
info : 'Info',
|
||||
warning : 'Abisua',
|
||||
danger : 'Danger'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/fa.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/fa.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'fa', {//Persian
|
||||
plugin : 'بازتوییت بوت استرپ',
|
||||
title : 'عنوان',
|
||||
content : 'مقدار',
|
||||
htmlIsAllowed : 'HTML مجاز است',
|
||||
addNewItem : 'اضافه کردن آیتم جدید',
|
||||
minimum : 'پلاگین باید حداقل 1 مورد شامل',
|
||||
link : 'پیوند',
|
||||
style : 'اندازه',
|
||||
type : 'نوع',
|
||||
size : 'اندازه',
|
||||
blockLevel : 'بلوک سطح',
|
||||
active : 'فعال',
|
||||
enabled : 'فعال',
|
||||
text : 'متن',
|
||||
preview : 'پیش دید',
|
||||
optional : 'اختیاری',
|
||||
badge : 'نشان',
|
||||
caption : 'عنوان',
|
||||
image : 'تصویر',
|
||||
delete : 'آیا شما مطمئن هستید که میخواهید این آیتم را حذف کنید؟',
|
||||
items : 'موارد',
|
||||
settings : 'تنظیمات',
|
||||
expandFirstItem : 'گسترش گزینه اول',
|
||||
yes : 'بله',
|
||||
no : 'خیر',
|
||||
theme : 'موضوع',
|
||||
default : 'به طور پیش فرض',
|
||||
primary : 'اولیه',
|
||||
success : 'موفقیت',
|
||||
info : 'اطلاعات',
|
||||
warning : 'هشدار',
|
||||
danger : 'خطر'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/fi.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/fi.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'fi', {//Finnish
|
||||
plugin : 'Bootstrap Collapse',
|
||||
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?',
|
||||
items : 'Tuotteet',
|
||||
settings : 'Asetukset',
|
||||
expandFirstItem : 'Laajenna First Item',
|
||||
yes : 'Kyllä',
|
||||
no : 'Ei',
|
||||
theme : 'Teema',
|
||||
default : 'Oletusarvo',
|
||||
primary : 'Ensisijainen',
|
||||
success : 'Menestys',
|
||||
info : 'Tiedot',
|
||||
warning : 'Varoitus',
|
||||
danger : 'Vaara'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/fo.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/fo.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'fo', {//Faroese
|
||||
plugin : 'Bootstrap Collapse',
|
||||
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?',
|
||||
items : 'Items',
|
||||
settings : 'Settings',
|
||||
expandFirstItem : 'Expand First Item',
|
||||
yes : 'Yes',
|
||||
no : 'No',
|
||||
theme : 'Theme',
|
||||
default : 'Default',
|
||||
primary : 'primary',
|
||||
success : 'Success',
|
||||
info : 'Info',
|
||||
warning : 'Warning',
|
||||
danger : 'Danger'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/fr-ca.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/fr-ca.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'fr-ca', {//french
|
||||
plugin : 'Bootstrap Collapse',
|
||||
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?',
|
||||
items : 'Articles',
|
||||
settings : 'Paramètres',
|
||||
expandFirstItem : 'Développez Premier Élément',
|
||||
yes : 'Oui',
|
||||
no : 'Non',
|
||||
theme : 'Thème',
|
||||
default : 'Défaut',
|
||||
primary : 'Primaire',
|
||||
success : 'Le Succès',
|
||||
info : 'Info',
|
||||
warning : 'Attention',
|
||||
danger : 'Danger'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/fr.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/fr.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'fr', {//french
|
||||
plugin : 'Bootstrap Collapse',
|
||||
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?',
|
||||
items : 'Articles',
|
||||
settings : 'Paramètres',
|
||||
expandFirstItem : 'Développez Premier Élément',
|
||||
yes : 'Oui',
|
||||
no : 'Non',
|
||||
theme : 'Thème',
|
||||
default : 'Défaut',
|
||||
primary : 'Primaire',
|
||||
success : 'Le Succès',
|
||||
info : 'Info',
|
||||
warning : 'Attention',
|
||||
danger : 'Danger'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/gl.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/gl.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'gl', {//Galician
|
||||
plugin : 'Bootstrap Collapse',
|
||||
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?'
|
||||
items : 'Elementos',
|
||||
settings : 'Configuración',
|
||||
expandFirstItem : 'Ampliar O Primeiro Elemento',
|
||||
yes : 'Si',
|
||||
no : 'Non',
|
||||
theme : 'Tema',
|
||||
default : 'Defecto',
|
||||
primary : 'Fondo',
|
||||
success : 'Éxito',
|
||||
info : 'Información',
|
||||
warning : 'Aviso',
|
||||
danger : 'Perigo'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/gu.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/gu.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'gu', {//Gujarati
|
||||
plugin : 'બુટસ્ટ્રેપ સંકુચિત',
|
||||
title : 'શીર્ષક',
|
||||
content : 'સામગ્રી',
|
||||
htmlIsAllowed : 'એચટીએમએલ મંજૂર થયેલ',
|
||||
addNewItem : 'ન્યૂ વસ્તુ ઉમેરો',
|
||||
minimum : 'પ્લગઇન ઓછામાં ઓછા 1 આઇટમ હોવો જરૂરી છે',
|
||||
link : 'લિંક',
|
||||
style : 'પ્રકાર',
|
||||
type : 'પ્રકાર',
|
||||
size : 'કદ',
|
||||
blockLevel : 'બ્લોક લેવલ',
|
||||
active : 'સક્રિય',
|
||||
enabled : 'જો સક્રિય',
|
||||
text : 'લખાણ',
|
||||
preview : 'પૂર્વાવલોકન',
|
||||
optional : 'વૈકલ્પિક',
|
||||
badge : 'બેજ',
|
||||
caption : 'કૅપ્શન',
|
||||
image : 'છબી',
|
||||
delete : 'તમે આ આઇટમ કાઢી નાખવા માંગો તમે ખાતરી રહ્યાં છો?',
|
||||
items : 'વસ્તુઓ',
|
||||
settings : 'સેટિંગ્સ',
|
||||
expandFirstItem : 'પ્રથમ વસ્તુ વિસ્તૃત',
|
||||
yes : 'હા',
|
||||
no : 'કોઈ',
|
||||
theme : 'થીમ',
|
||||
default : 'મૂળભૂત',
|
||||
primary : 'પ્રાથમિક',
|
||||
success : 'સફળતા',
|
||||
info : 'માહિતી',
|
||||
warning : 'ચેતવણી',
|
||||
danger : 'ડેન્જર'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/he.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/he.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', '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 : 'האם אתה בטוח שאתה רוצה למחוק פריט זה?',
|
||||
items : 'פריטים',
|
||||
settings : 'הגדרות',
|
||||
expandFirstItem : 'להרחיב פריט ראשון',
|
||||
yes : 'כן',
|
||||
no : 'לא',
|
||||
theme : 'נושא',
|
||||
default : 'בְּרִירַת מֶחדָל',
|
||||
primary : 'יְסוֹדִי',
|
||||
success : 'הַצלָחָה',
|
||||
info : 'מידע',
|
||||
warning : 'אַזהָרָה',
|
||||
danger : 'סַכָּנָה'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/hi.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/hi.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'hi', {//Hindi
|
||||
plugin : 'बूटस्ट्रैप को संकुचित',
|
||||
title : 'शीर्षक',
|
||||
content : 'सामग्री',
|
||||
htmlIsAllowed : 'एचटीएमएल अनुमति दी है',
|
||||
addNewItem : 'नया आइटम जोड़ें',
|
||||
minimum : 'प्लगइन कम से कम एक आइटम शामिल होना चाहिए',
|
||||
link : 'लिंक',
|
||||
style : 'अंदाज',
|
||||
type : 'प्रकार',
|
||||
size : 'आकार',
|
||||
blockLevel : 'ब्लॉक स्तर',
|
||||
active : 'सक्रिय',
|
||||
enabled : 'सक्षम होना चाहिए',
|
||||
text : 'टेक्स्ट',
|
||||
preview : 'पूर्वावलोकन',
|
||||
optional : 'ऐच्छिक',
|
||||
badge : 'बिल्ला',
|
||||
caption : 'शीर्षक',
|
||||
image : 'छवि',
|
||||
delete : 'क्या आप सुनिश्चित रूप से इस आइटम को मिटाना चाहते हैं?',
|
||||
items : 'आइटम',
|
||||
settings : 'सेटिंग्स',
|
||||
expandFirstItem : 'पहले आइटम को विस्तृत',
|
||||
yes : 'हाँ',
|
||||
no : 'नहीं',
|
||||
theme : 'विषय',
|
||||
default : 'चूक',
|
||||
primary : 'मुख्य',
|
||||
success : 'सफलता',
|
||||
info : 'जानकारी',
|
||||
warning : 'चेतावनी',
|
||||
danger : 'खतरा'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/hr.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/hr.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'hr', {//Croatian
|
||||
plugin : 'Bootstrap Kolaps',
|
||||
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?',
|
||||
items : 'Stavke',
|
||||
settings : 'Postavke',
|
||||
expandFirstItem : 'Proširite Prva Točka',
|
||||
yes : 'Da',
|
||||
no : 'Ne',
|
||||
theme : 'Tema',
|
||||
default : 'Zadano',
|
||||
primary : 'Osnovni',
|
||||
success : 'Uspjeh',
|
||||
info : 'Info',
|
||||
warning : 'Upozorenje',
|
||||
danger : 'Opasnost'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/hu.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/hu.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'hu', {//Hungarian
|
||||
plugin : 'Bootstrap Collapse',
|
||||
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?'
|
||||
items : 'Tételek',
|
||||
settings : 'Beállítások',
|
||||
expandFirstItem : 'Kibontása Első Elem',
|
||||
yes : 'Igen',
|
||||
no : 'Nem',
|
||||
theme : 'Téma',
|
||||
default : 'Alapértelmezett',
|
||||
primary : 'Elsődleges',
|
||||
success : 'Siker',
|
||||
info : 'Info',
|
||||
warning : 'Figyelem',
|
||||
danger : 'Veszély'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/id.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/id.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'id', {//Indonesian
|
||||
plugin : 'Collapse Bootstrap',
|
||||
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?',
|
||||
items : 'Item',
|
||||
settings : 'Pengaturan',
|
||||
expandFirstItem : 'Memperluas Barang Pertama',
|
||||
yes : 'Iya Nih',
|
||||
no : 'Tidak',
|
||||
theme : 'Tema',
|
||||
default : 'Kegagalan',
|
||||
primary : 'Utama',
|
||||
success : 'Keberhasilan',
|
||||
info : 'Info',
|
||||
warning : 'Peringatan',
|
||||
danger : 'Bahaya'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/is.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/is.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'is', {//Icelandic
|
||||
plugin : 'ræsi Collapse',
|
||||
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?',
|
||||
items : 'Atriði',
|
||||
settings : 'Stillingar',
|
||||
expandFirstItem : 'Stækka Fyrsta Atriðið',
|
||||
yes : 'Já',
|
||||
no : 'Engin',
|
||||
theme : 'Þema',
|
||||
default : 'Sjálfgefið',
|
||||
primary : 'Primary',
|
||||
success : 'Velgengni',
|
||||
info : 'Upplýsingar',
|
||||
warning : 'Viðvörun',
|
||||
danger : 'Danger'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/it.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/it.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'it', {//Italian
|
||||
plugin : 'Bootstrap Collapse',
|
||||
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?',
|
||||
items : 'Elementi',
|
||||
settings : 'Impostazioni',
|
||||
expandFirstItem : 'Espandere Primo Articolo',
|
||||
yes : 'Sì',
|
||||
no : 'No',
|
||||
theme : 'Tema',
|
||||
default : 'Predefinito',
|
||||
primary : 'Primario',
|
||||
success : 'Successo',
|
||||
info : 'Informazioni',
|
||||
warning : 'Avvertimento',
|
||||
danger : 'Pericolo'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/ja.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/ja.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'ja', {//Japanese
|
||||
plugin : 'ブートストラップ折りたたみます',
|
||||
title : 'タイトル',
|
||||
content : 'コンテンツ',
|
||||
htmlIsAllowed : 'HTMLが許可されます',
|
||||
addNewItem : '[新しい項目の追加',
|
||||
minimum : 'プラグインは、少なくとも1つのアイテムを含んでいなければなりません',
|
||||
link : 'リンク',
|
||||
style : 'スタイル',
|
||||
type : 'タイプ',
|
||||
size : 'サイズ',
|
||||
blockLevel : 'ブロックレベル',
|
||||
active : 'アクティブ',
|
||||
enabled : '使用可能',
|
||||
text : 'テキスト',
|
||||
preview : 'プレビュー',
|
||||
optional : 'オプショナル',
|
||||
badge : 'バッジ',
|
||||
caption : 'キャプション',
|
||||
image : '画像',
|
||||
delete : 'あなたはこの項目を削除してもよろしいていますか?',
|
||||
items : 'アイテム',
|
||||
settings : '設定',
|
||||
expandFirstItem : '最初のアイテムを展開',
|
||||
yes : 'はい',
|
||||
no : 'いいえ',
|
||||
theme : 'テーマ',
|
||||
default : 'デフォルト',
|
||||
primary : 'プライマリー',
|
||||
success : '成功',
|
||||
info : 'インフォ',
|
||||
warning : '警告',
|
||||
danger : '危険'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/ka.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/ka.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'ka', {//Georgian
|
||||
plugin : 'ჩატვირთვის Collapse',
|
||||
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 : 'დარწმუნებული ხართ, რომ გსურთ წაშალოთ ეს ნივთი?'
|
||||
items : 'Items',
|
||||
settings : 'პარამეტრები',
|
||||
expandFirstItem : 'Expand პირველი პუნქტის',
|
||||
yes : 'დიახ',
|
||||
no : 'არარის',
|
||||
theme : 'თემა',
|
||||
default : 'Default',
|
||||
primary : 'ძირითადი',
|
||||
success : 'წარმატება',
|
||||
info : 'ინფორმაცია',
|
||||
warning : 'გაფრთხილება',
|
||||
danger : 'Danger'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/km.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/km.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'km', {//Khmer
|
||||
plugin : 'ការដួលរលំចាប់ផ្ដើម',
|
||||
title : 'ចំណងជើង',
|
||||
content : 'មាតិកា',
|
||||
htmlIsAllowed : 'HTML ដែលត្រូវបានអនុញ្ញាត',
|
||||
addNewItem : 'បន្ថែមធាតុថ្មី',
|
||||
minimum : 'កម្មវិធីជំនួយត្រូវតែមានយ៉ាងហោចណាស់ 1 ធាតុ',
|
||||
link : 'តំណភ្ជាប់',
|
||||
style : 'រចនាប័ទ្ម',
|
||||
type : 'ប្រភេទ',
|
||||
size : 'ទំហំ',
|
||||
blockLevel : 'ប្លុកកម្រិត',
|
||||
active : 'ដែលសកម្ម',
|
||||
enabled : 'បានបើក',
|
||||
text : 'អត្ថបទ',
|
||||
preview : 'ការមើលជាមុន',
|
||||
optional : 'ជម្រើស',
|
||||
badge : 'ផ្លាកសញ្ញា',
|
||||
caption : 'ចំណងជើង',
|
||||
image : 'រូបភាព',
|
||||
delete : 'តើអ្នកប្រាកដជាចង់លុបធាតុនេះឬ?',
|
||||
items : 'ធាតុ',
|
||||
settings : 'ការកំណត់',
|
||||
expandFirstItem : 'ពង្រីកធាតុដំបូង',
|
||||
yes : 'ចាស',
|
||||
no : 'គ្មាន',
|
||||
theme : 'ស្បែក',
|
||||
default : 'លំនាំដើម',
|
||||
primary : 'primary',
|
||||
success : 'ភាពជោគជ័យ',
|
||||
info : 'Info',
|
||||
warning : 'ព្រមាន & ‧;',
|
||||
danger : 'គ្រោះថ្នាក់'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/ko.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/ko.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'ko', {//Korean
|
||||
plugin : '부트 스트랩 축소',
|
||||
title : '이름',
|
||||
content : '함유량',
|
||||
htmlIsAllowed : 'HTML이 허용됩니다',
|
||||
addNewItem : '새 항목 추가',
|
||||
minimum : '플러그인은 적어도 1 개 항목을 포함해야',
|
||||
link : '링크',
|
||||
style : '스타일',
|
||||
type : '유형',
|
||||
size : '크기',
|
||||
blockLevel : '블록 레벨',
|
||||
active : '활동적인',
|
||||
enabled : '사용',
|
||||
text : '본문',
|
||||
preview : '시사',
|
||||
optional : '선택',
|
||||
badge : '배지',
|
||||
caption : '표제',
|
||||
image : '영상',
|
||||
delete : '이 항목을 삭제 하시겠습니까?',
|
||||
items : '항목',
|
||||
settings : '설정',
|
||||
expandFirstItem : '첫 번째 항목을 확장',
|
||||
yes : '예',
|
||||
no : '아니',
|
||||
theme : '테마',
|
||||
default : '태만',
|
||||
primary : '행성',
|
||||
success : '성공',
|
||||
info : '정보',
|
||||
warning : '경고',
|
||||
danger : '위험'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/ku.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/ku.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'ku', {//Kurdish
|
||||
plugin : 'Bootstrap Collapse',
|
||||
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?',
|
||||
items : 'Items',
|
||||
settings : 'Settings',
|
||||
expandFirstItem : 'Expand First Item',
|
||||
yes : 'Yes',
|
||||
no : 'No',
|
||||
theme : 'Theme',
|
||||
default : 'Default',
|
||||
primary : 'primary',
|
||||
success : 'Success',
|
||||
info : 'Info',
|
||||
warning : 'Warning',
|
||||
danger : 'Danger'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/lt.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/lt.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'lt', {//Lithuanian
|
||||
plugin : 'Bootstrap Nėra',
|
||||
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ą?',
|
||||
items : 'Daiktai',
|
||||
settings : 'Nustatymai',
|
||||
expandFirstItem : 'Išplėsti Pirmas Elementas',
|
||||
yes : 'Taip',
|
||||
no : 'Ne',
|
||||
theme : 'Tema',
|
||||
default : 'Numatytas',
|
||||
primary : 'primary',
|
||||
success : 'Sėkmė',
|
||||
info : 'Informacija',
|
||||
warning : 'Įspėjimas',
|
||||
danger : 'Pavojus'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/lv.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/lv.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'lv', {//Latvian
|
||||
plugin : 'Bootstrap Collapse',
|
||||
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?',
|
||||
items : 'Priekšmeti',
|
||||
settings : 'Iestatījumi',
|
||||
expandFirstItem : 'Izvērst Pirmais Elements',
|
||||
yes : 'Jā',
|
||||
no : 'Nē',
|
||||
theme : 'Tēma',
|
||||
default : 'Default',
|
||||
primary : 'primary',
|
||||
success : 'Veiksme',
|
||||
info : 'Info',
|
||||
warning : 'Brīdinājums',
|
||||
danger : 'Briesmas'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/mk.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/mk.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'mk', {//Macedonian
|
||||
plugin : 'Bootstrap колапс',
|
||||
title : 'Наслов',
|
||||
content : 'содржина',
|
||||
htmlIsAllowed : 'HTML е дозволено',
|
||||
addNewItem : 'Додадете нова ставка',
|
||||
minimum : 'Приклучокот мора contian најмалку 1 точка',
|
||||
link : 'Линк',
|
||||
style : 'стил',
|
||||
type : 'тип',
|
||||
size : 'големина',
|
||||
blockLevel : 'блок ниво',
|
||||
active : 'активни',
|
||||
enabled : 'овозможено',
|
||||
text : 'текст',
|
||||
preview : 'преглед',
|
||||
optional : 'Изборно',
|
||||
badge : 'значка',
|
||||
caption : 'Легенда',
|
||||
image : 'слика',
|
||||
delete : 'Дали сте сигурни дека сакате да ја избришете оваа точка?',
|
||||
items : 'Предмети',
|
||||
settings : 'Подесувања',
|
||||
expandFirstItem : 'Проширете Прв Елемент',
|
||||
yes : 'Да',
|
||||
no : 'Не',
|
||||
theme : 'Тема',
|
||||
default : 'Стандардно',
|
||||
primary : 'Примарните',
|
||||
success : 'Успех',
|
||||
info : 'Инфо',
|
||||
warning : 'Предупредување',
|
||||
danger : 'Опасност'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/mn.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/mn.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', '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 : 'Хэрэв та дээр төстэй эд зүйлсийг устгахыг хүсэж та итгэлтэй байна уу?',
|
||||
items : 'Зүйлс',
|
||||
settings : 'Тохиргоо',
|
||||
expandFirstItem : 'Эхний Зүйл Өргөжүүлэх',
|
||||
yes : 'Тийм',
|
||||
no : 'Ямар Ч',
|
||||
theme : 'Сэдэв',
|
||||
default : 'Default Утга Нь',
|
||||
primary : 'primary',
|
||||
success : 'Амжилтын',
|
||||
info : 'Мэдээлэл',
|
||||
warning : 'Warning',
|
||||
danger : 'Аюул'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/ms.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/ms.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'ms', {//Malay
|
||||
plugin : 'Tutup Bootstrap',
|
||||
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?',
|
||||
items : 'Item',
|
||||
settings : 'Tetapan',
|
||||
expandFirstItem : 'Buka Perkara Pertama',
|
||||
yes : 'Ya',
|
||||
no : 'Tiada',
|
||||
theme : 'Tema',
|
||||
default : 'Lalai',
|
||||
primary : 'primary',
|
||||
success : 'Kejayaan',
|
||||
info : 'Maklumat',
|
||||
warning : 'Amaran',
|
||||
danger : 'Bahaya'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/nb.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/nb.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'nb', {//Norwegian
|
||||
plugin : 'Bootstrap Collapse',
|
||||
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?',
|
||||
items : 'Elementer',
|
||||
settings : 'Innstillinger',
|
||||
expandFirstItem : 'Utvid Første Element',
|
||||
yes : 'Ja',
|
||||
no : 'Nei',
|
||||
theme : 'Tema',
|
||||
default : 'Misligholde',
|
||||
primary : 'primary',
|
||||
success : 'Suksess',
|
||||
info : 'Info',
|
||||
warning : 'Advarsel',
|
||||
danger : 'Fare'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/nl.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/nl.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'nl', {//Dutch
|
||||
plugin : 'Bootstrap Sluiten',
|
||||
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?',
|
||||
items : 'Items',
|
||||
settings : 'Instellingen',
|
||||
expandFirstItem : 'Expand Eerste Item',
|
||||
yes : 'Ja',
|
||||
no : 'Nee',
|
||||
theme : 'Thema',
|
||||
default : 'Standaard',
|
||||
primary : 'primary',
|
||||
success : 'Succes',
|
||||
info : 'Info',
|
||||
warning : 'Waarschuwing',
|
||||
danger : 'Gevaar'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/no.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/no.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'no', {
|
||||
plugin : 'Bootstrap Collapse',
|
||||
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?',
|
||||
items : 'Elementer',
|
||||
settings : 'Innstillinger',
|
||||
expandFirstItem : 'Utvid Første Element',
|
||||
yes : 'Ja',
|
||||
no : 'Nei',
|
||||
theme : 'Tema',
|
||||
default : 'Misligholde',
|
||||
primary : 'primary',
|
||||
success : 'Suksess',
|
||||
info : 'Info',
|
||||
warning : 'Advarsel',
|
||||
danger : 'Fare'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/pl.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/pl.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'pl', {//Polish
|
||||
plugin : 'Lista rozwijana',
|
||||
title : 'Tytuł',
|
||||
content : 'Zawartość',
|
||||
htmlIsAllowed : 'dozwolony jest HTML',
|
||||
addNewItem : 'Dodaj nowy element',
|
||||
minimum : 'Lista rozwijana 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?',
|
||||
items : 'Przedmiotów',
|
||||
settings : 'Ustawienia',
|
||||
expandFirstItem : 'Rozwiń pierwszy element',
|
||||
yes : 'Tak',
|
||||
no : 'Nie',
|
||||
theme : 'Motyw',
|
||||
default : 'Domyślny',
|
||||
primary : 'Primary',
|
||||
success : 'Success',
|
||||
info : 'Info',
|
||||
warning : 'Warning',
|
||||
danger : 'Danger'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/pt-br.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/pt-br.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'pt-br', {
|
||||
plugin : 'Bootstrap Collapse',
|
||||
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?',
|
||||
items : 'Unid',
|
||||
settings : 'Configurações',
|
||||
expandFirstItem : 'Expandir O Primeiro Item',
|
||||
yes : 'Sim',
|
||||
no : 'Não',
|
||||
theme : 'Tema',
|
||||
default : 'Padrão',
|
||||
primary : 'primary',
|
||||
success : 'Sucesso',
|
||||
info : 'Informações',
|
||||
warning : 'Atenção',
|
||||
danger : 'Perigo'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/pt.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/pt.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'pt', {//Portuguese
|
||||
plugin : 'Bootstrap Collapse',
|
||||
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?',
|
||||
items : 'Unid',
|
||||
settings : 'Configurações',
|
||||
expandFirstItem : 'Expandir O Primeiro Item',
|
||||
yes : 'Sim',
|
||||
no : 'Não',
|
||||
theme : 'Tema',
|
||||
default : 'Padrão',
|
||||
primary : 'primary',
|
||||
success : 'Sucesso',
|
||||
info : 'Informações',
|
||||
warning : 'Atenção',
|
||||
danger : 'Perigo'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/ro.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/ro.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'ro', {//Romanian
|
||||
plugin : 'Reducere Bootstrap',
|
||||
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?',
|
||||
items : 'Articole',
|
||||
settings : 'Setările',
|
||||
expandFirstItem : 'Extinde Primul Articol',
|
||||
yes : 'Da',
|
||||
no : 'Nu',
|
||||
theme : 'Temă',
|
||||
default : 'Mod Implicit',
|
||||
primary : 'primary',
|
||||
success : 'Succes',
|
||||
info : 'Info',
|
||||
warning : 'Avertizare',
|
||||
danger : 'Pericol'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/ru.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/ru.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', '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 : 'Вы уверены, что хотите удалить этот пункт?',
|
||||
items : 'Предметы',
|
||||
settings : 'Настройки',
|
||||
expandFirstItem : 'Развернуть Первый Деталь',
|
||||
yes : 'Да',
|
||||
no : 'Нет',
|
||||
theme : 'Тема',
|
||||
default : 'По Умолчанию',
|
||||
primary : 'primary',
|
||||
success : 'Успех',
|
||||
info : 'Информация',
|
||||
warning : 'Предупреждение',
|
||||
danger : 'Опасность'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/si.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/si.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'si', {//Sinhala
|
||||
plugin : 'බිඳ වැටීම බුට්ස්ට්රැප්',
|
||||
title : 'දරන හිමිකම් ලියාපදිංචි කිරීෙම්',
|
||||
content : 'අන්තර්ගත',
|
||||
htmlIsAllowed : 'HTML අවසර දී ඇත්තේ',
|
||||
addNewItem : 'නව විෂය එකතු කරන්න',
|
||||
minimum : 'ප්ලගිනය අවම වශයෙන් 1 අයිතමය අඩංගු විය යුතුය',
|
||||
link : 'ලින්ක්',
|
||||
style : 'ස්ටයිල්',
|
||||
type : 'වර්ගය',
|
||||
size : 'තරම',
|
||||
blockLevel : 'දරන ඉඩම් ෙකොටස්ෙලස ෙපන්නුම් ෙකොට ඇත්තා පෙළ',
|
||||
active : 'ක්රියාකාරී',
|
||||
enabled : 'සක්රීය',
|
||||
text : 'පෙළ',
|
||||
preview : 'පෙරදසුන',
|
||||
optional : 'විකල්ප',
|
||||
badge : 'බැජ්,',
|
||||
caption : 'සිරස්තලය',
|
||||
image : 'රූප',
|
||||
delete : 'ඔබ මෙම අයිතමය මැකීමට අවශ්ය බව ඔබට විශ්වාසද?',
|
||||
items : 'අයිතම',
|
||||
settings : 'සැකසුම්',
|
||||
expandFirstItem : 'පළමු අයිතමය පුළුල්',
|
||||
yes : 'ඔව්',
|
||||
no : 'නැත',
|
||||
theme : 'තේමාව',
|
||||
default : 'පෙරනිමි',
|
||||
primary : 'primary',
|
||||
success : 'සාර්ථකත්වය',
|
||||
info : 'තොරතුරු',
|
||||
warning : 'අවවාදයයි',
|
||||
danger : 'අනතුර'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/sk.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/sk.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'sk', {//Slovak
|
||||
plugin : 'Bootstrap Collapse',
|
||||
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ť?',
|
||||
items : 'Predmety',
|
||||
settings : 'Nastavenie',
|
||||
expandFirstItem : 'Rozbaliť Prvá Položka',
|
||||
yes : 'Áno',
|
||||
no : 'Nie',
|
||||
theme : 'Téma',
|
||||
default : 'Štandardné',
|
||||
primary : 'Primate',
|
||||
success : 'Úspech',
|
||||
info : 'Info',
|
||||
warning : 'Výstraha',
|
||||
danger : 'Nebezpečenstvo'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/sl.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/sl.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'sl', {//Slovenian
|
||||
plugin : 'Bootstrap Collapse',
|
||||
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?'
|
||||
items : 'Predmeti',
|
||||
settings : 'Nastavitve',
|
||||
expandFirstItem : 'Razširi Prvi Element',
|
||||
yes : 'Da',
|
||||
no : 'No',
|
||||
theme : 'Tema',
|
||||
default : 'Privzeto',
|
||||
primary : 'primary',
|
||||
success : 'Uspeh',
|
||||
info : 'Informacije',
|
||||
warning : 'Opozorilo',
|
||||
danger : 'Nevarnost'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/sq.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/sq.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'sq', {//Albanian
|
||||
plugin : 'Collapse Bootstrap',
|
||||
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?',
|
||||
items : 'Artikuj',
|
||||
settings : 'Cilësimet',
|
||||
expandFirstItem : 'Expand Item Parë',
|
||||
yes : 'Po',
|
||||
no : 'Jo',
|
||||
theme : 'Temë',
|
||||
default : 'Default',
|
||||
primary : 'primary',
|
||||
success : 'Sukses',
|
||||
info : 'Info',
|
||||
warning : 'Paralajmërim',
|
||||
danger : 'Rrezik'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/sr-latn.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/sr-latn.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'sr-latn', {
|
||||
plugin : 'Боотстрап Цоллапсе',
|
||||
title : 'наслов',
|
||||
content : 'садржина',
|
||||
htmlIsAllowed : 'ХТМЛ Алловед',
|
||||
addNewItem : 'Додај нову ставку',
|
||||
minimum : 'Плугин мора да садржи најмање 1 итем',
|
||||
link : 'линк',
|
||||
style : 'стил',
|
||||
type : 'тип',
|
||||
size : 'величина',
|
||||
blockLevel : 'блок Ниво',
|
||||
active : 'активан',
|
||||
enabled : 'Омогућено',
|
||||
text : 'текст',
|
||||
preview : 'превиев',
|
||||
optional : 'оптионал',
|
||||
badge : 'значка',
|
||||
caption : 'натпис',
|
||||
image : 'слика',
|
||||
delete : 'Да ли сте сигурни да желите да избришете ову ставку?',
|
||||
items : 'Предмети',
|
||||
settings : 'Подешавања',
|
||||
expandFirstItem : 'Проширити Прву Ставку',
|
||||
yes : 'Да',
|
||||
no : 'Не',
|
||||
theme : 'Тема',
|
||||
default : 'Уобичајено',
|
||||
primary : 'Примаи',
|
||||
success : 'Успех',
|
||||
info : 'Инфо',
|
||||
warning : 'Упозорење',
|
||||
danger : 'Опасност'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/sr.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/sr.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'sr', {//Serbian
|
||||
plugin : 'Боотстрап Цоллапсе',
|
||||
title : 'наслов',
|
||||
content : 'садржина',
|
||||
htmlIsAllowed : 'ХТМЛ Алловед',
|
||||
addNewItem : 'Додај нову ставку',
|
||||
minimum : 'Плугин мора да садржи најмање 1 итем',
|
||||
link : 'линк',
|
||||
style : 'стил',
|
||||
type : 'тип',
|
||||
size : 'величина',
|
||||
blockLevel : 'блок Ниво',
|
||||
active : 'активан',
|
||||
enabled : 'Омогућено',
|
||||
text : 'текст',
|
||||
preview : 'превиев',
|
||||
optional : 'оптионал',
|
||||
badge : 'значка',
|
||||
caption : 'натпис',
|
||||
image : 'слика',
|
||||
delete : 'Да ли сте сигурни да желите да избришете ову ставку?',
|
||||
items : 'Предмети',
|
||||
settings : 'Подешавања',
|
||||
expandFirstItem : 'Проширити Прву Ставку',
|
||||
yes : 'Да',
|
||||
no : 'Не',
|
||||
theme : 'Тема',
|
||||
default : 'Уобичајено',
|
||||
primary : 'Примаи',
|
||||
success : 'Успех',
|
||||
info : 'Инфо',
|
||||
warning : 'Упозорење',
|
||||
danger : 'Опасност'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/sv.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/sv.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'sv', {//Swedish
|
||||
plugin : 'Bootstrap Minimera',
|
||||
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?',
|
||||
items : 'Objekt',
|
||||
settings : 'Inställningar',
|
||||
expandFirstItem : 'Expandera Första Punkt',
|
||||
yes : 'Ja',
|
||||
no : 'Nej',
|
||||
theme : 'Tema',
|
||||
default : 'Standard',
|
||||
primary : 'primary',
|
||||
success : 'Framgång',
|
||||
info : 'Info',
|
||||
warning : 'Varning',
|
||||
danger : 'Fara'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/th.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/th.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', '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 : 'คุณแน่ใจว่าคุณต้องการลบรายการนี้ได้?',
|
||||
items : 'รายการ',
|
||||
settings : 'การตั้งค่า',
|
||||
expandFirstItem : 'ขยายรายการแรก',
|
||||
yes : 'ใช่',
|
||||
no : 'ไม่',
|
||||
theme : 'กระทู้',
|
||||
default : 'ค่าเริ่มต้น',
|
||||
primary : 'primary',
|
||||
success : 'ความสำเร็จ',
|
||||
info : 'ข้อมูล',
|
||||
warning : 'การเตือน',
|
||||
danger : 'อันตราย'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/tr.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/tr.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'tr', {//Turkish
|
||||
plugin : 'Bootstrap Çöküşü',
|
||||
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?'
|
||||
items : 'Öğeler',
|
||||
settings : 'Ayarlar',
|
||||
expandFirstItem : 'Ilk Öğe Expand',
|
||||
yes : 'Evet',
|
||||
no : 'Yok Hayır',
|
||||
theme : 'Tema',
|
||||
default : 'Varsayılan',
|
||||
primary : 'primary',
|
||||
success : 'Başarı',
|
||||
info : 'Bilgi',
|
||||
warning : 'Uyarı',
|
||||
danger : 'Tehlike'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/tt.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/tt.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'tt', {//Tatar
|
||||
plugin : 'Bootstrap Collapse',
|
||||
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?',
|
||||
items : 'Items',
|
||||
settings : 'Settings',
|
||||
expandFirstItem : 'Expand First Item',
|
||||
yes : 'Yes',
|
||||
no : 'No',
|
||||
theme : 'Theme',
|
||||
default : 'Default',
|
||||
primary : 'primary',
|
||||
success : 'Success',
|
||||
info : 'Info',
|
||||
warning : 'Warning',
|
||||
danger : 'Danger'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/ug.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/ug.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'ug', {//Uighur
|
||||
plugin : 'Bootstrap Collapse',
|
||||
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?',
|
||||
items : 'Items',
|
||||
settings : 'Settings',
|
||||
expandFirstItem : 'Expand First Item',
|
||||
yes : 'Yes',
|
||||
no : 'No',
|
||||
theme : 'Theme',
|
||||
default : 'Default',
|
||||
primary : 'primary',
|
||||
success : 'Success',
|
||||
info : 'Info',
|
||||
warning : 'Warning',
|
||||
danger : 'Danger'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/uk.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/uk.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', '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 : 'Ви впевнені, що хочете видалити цей пункт?',
|
||||
items : 'Предмети',
|
||||
settings : 'Настройки',
|
||||
expandFirstItem : 'Розгорнути Перший Деталь',
|
||||
yes : 'Так',
|
||||
no : 'Немає',
|
||||
theme : 'Тема',
|
||||
default : 'Дефолт',
|
||||
Primary : 'Primary',
|
||||
success : 'Успіх',
|
||||
info : 'Інформація',
|
||||
warning : 'Увага',
|
||||
danger : 'Небезпека'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/vi.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/vi.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', 'vi', {//Vietnamese
|
||||
plugin : 'Collapse Bootstrap',
|
||||
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?',
|
||||
items : 'Hạng Mục',
|
||||
settings : 'Cài Đặt',
|
||||
expandFirstItem : 'Mở Rộng Trước Mục',
|
||||
yes : 'Vâng',
|
||||
no : 'Không',
|
||||
theme : 'Chủ Đề',
|
||||
default : 'Mặc Định',
|
||||
primary : 'Primary',
|
||||
success : 'Sự Thành Công',
|
||||
info : 'Thông Tin',
|
||||
warning : 'Cảnh Báo',
|
||||
danger : 'Nguy Hiểm'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/zh-cn.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/zh-cn.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', '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 : '你确定你要删除这个项目吗?',
|
||||
items : '项目',
|
||||
settings : '设置',
|
||||
expandFirstItem : '展开第一个项目',
|
||||
yes : '是',
|
||||
no : '没有',
|
||||
theme : '主题',
|
||||
default : '默认',
|
||||
primary : '主',
|
||||
success : '成功',
|
||||
info : '信息',
|
||||
warning : '警告',
|
||||
danger : '危险'
|
||||
});
|
||||
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/zh.js
Normal file
34
libraries/ckeditor/plugins/bootstrapCollapse/lang/zh.js
Normal file
@@ -0,0 +1,34 @@
|
||||
CKEDITOR.plugins.setLang('bootstrapCollapse', '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 : '你確定你要刪除這個項目嗎?',
|
||||
items : '項目',
|
||||
settings : '設置',
|
||||
expandFirstItem : '展開第一個項目',
|
||||
yes : '是',
|
||||
no : '沒有',
|
||||
theme : '主題',
|
||||
default : '默認',
|
||||
primary : '主',
|
||||
success : '成功',
|
||||
info : '信息',
|
||||
warning : '警告',
|
||||
danger : '危險'
|
||||
});
|
||||
14
libraries/ckeditor/plugins/bootstrapCollapse/plugin.js
Normal file
14
libraries/ckeditor/plugins/bootstrapCollapse/plugin.js
Normal file
@@ -0,0 +1,14 @@
|
||||
/*
|
||||
Plugin : Bootstrap Collapse
|
||||
Author : Michael Janea (www.michaeljanea.com)
|
||||
Version : 1.5.1
|
||||
*/
|
||||
|
||||
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}('d p(x,q){q=q==2S?D:q;b R={"<":"&W;",">":"&2O;","\'":\'J;\',"\\r\\n":\'<z />\',"\\n":\'<z />\',"\\r":\'<z />\'};b l=1r.2I(\'2\');l.f=x;H(b 3=0;3<l.L(\'O\').K;3++){l.L(\'O\')[3].f=(l.L(\'O\')[3].f).B(/(\\r\\n|\\n|\\r)/2G,"<z>")}x=l.f;k q?x.B(/[\']/g,d(m){k R[m]}):x.B(/[<\'>]/g,d(m){k R[m]})};d Y(10,M){H(b i N M){U(M[i]==10)k P}k D};A.Q.T(\'o\',{Z:[\'I\',\'2D\',\'2C\',\'2B\',\'2A\',\'2y\',\'2x\',\'2w\',\'S\',\'1n-2v\',\'1n\',\'2t\',\'2s\',\'2r\',\'2q\',\'I-2p\',\'I-S\',\'I-2o\',\'2n\',\'2m\',\'2j\',\'2h\',\'12\',\'12-S\',\'2g\',\'2c\',\'1s\',\'2a\',\'29\',\'28\',\'27\',\'26\',\'25\',\'e\',\'24\',\'23\',\'22\',\'21\',\'20\',\'1Z\',\'W\',\'1Y\',\'1V\',\'1T\',\'1S\',\'1R\',\'1Q\',\'1K\',\'1p-z\',\'1p\',\'1J\',\'1t\',\'V\',\'V-2b\',\'1u\',\'1v\',\'1w\',\'1x\',\'1y\',\'1z\',\'1A\',\'1B\',\'1C\',\'1D\',\'1E\',\'1F\'],1G:\'1H\',1I:\'o\',1q:d(t){t.1L.T(\'1M\',{1N:t.Z.o.1O,1P:\'<2 6="5-1m" u="1U" h-1W="P" e="">\'+\'<2 6="5 5-1X">\'+\'<2 6="5-G" u="1i" e="">\'+\'<2 6="5-1h">\'+\'<a 6="1f" 8-1d="7" 8-1a="" 19="" h-18="D" h-17=""></a>\'+\'</2>\'+\'</2>\'+\'<2 e="" 6="5-7 7" u="16" h-15="">\'+\'<2 6="5-14"></2>\'+\'</2>\'+\'</2>\'+\'</2>\',2d:P,2e:\'2(*)[*];2f(*);a(*)[*]\',13:\'11\',2i:d(9){k 9.2k==\'2\'&&9.2l(\'5-1m\')},1q:d(){H(b 3=0;3<4.9.$.j.K;3++){v("4.w(\'y"+(3+1)+"\', \'"+p(4.9.$.j[3].F.F.F.f)+"\')");v("4.w(\'E"+(3+1)+"\', \'"+p(4.9.$.j[3].2u.F.f,t.1o.1l)+"\')");b 1k=(4.9.$.j[3].j[1].1j).2z(\' \');4.w(\'C\'+(3+1),Y(\'N\',1k)?\'5-7 7 N\':\'5-7 7\')}4.w(\'1e\',4.9.$.j.K);4.w(\'1c\',(4.9.$.j[0].1j).B(\'5 \',\'\'))},8:d(){b 1b=2E 2F();b c=1b.2H();b y=\'\';H(b 3=0;3<=4.8.1e;3++){v("J = 4.8.y"+3);v("E = 4.8.E"+3);v("C = 4.8.C"+3);U(J){y+=\' <2 6="5 \'+4.8.1c+\'"> <2 6="5-G" u="1i" e="G\'+c+\'s\'+3+\'"> <2 6="5-1h"> <a 6="1f" 8-1d="7" 8-1a="#7\'+c+\'" 8-2K="#7\'+c+\'s\'+3+\'" h-18="D" h-17="7\'+c+\'s\'+3+\'" 19="2L:2M(0)"> \'+p(J)+\' </a> </2> </2> <2 e="7\'+c+\'s\'+3+\'" 6="\'+C+\'" u="16" h-15="G\'+c+\'s\'+3+\'"> <2 6="5-14"> \'+p(E,t.1o.1l)+\' </2> </2> </2> \'}}4.9.2N(\'e\',\'7\'+c);4.9.$.f=y}});A.13.T(\'11\',A.Q.X(\'o\')+\'2P/o.2Q\');A.1r.2R(A.Q.X(\'o\')+\'1g/2T.1g\')}});',62,180,'||div|bootstrapCollapse_i|this|panel|class|collapse|data|element||var|bootstrapCollapse_id|function|id|innerHTML||aria||children|return|bootstrapCollapse_el|||bootstrapCollapse|bootstrapCollapse_escapeHtml|bootstrapCollapse_allow_html||_|editor|role|eval|setData|bootstrapCollapse_text|bootstrapCollapse_item|br|CKEDITOR|replace|bootstrapCollapse_expandFirstItem|false|bootstrapCollapse_content|firstChild|heading|for|en|bootstrapCollapse_title|length|getElementsByTagName|bootstrapCollapse_haystack|in|pre|true|plugins|map|ca|add|if|sr|lt|getPath|bootstrapCollapse_in_array|lang|bootstrapCollapse_needle|bootstrapCollapseDialog|fr|dialog|body|labelledby|tabpanel|controls|expanded|href|parent|bootstrapCollapse_d|bootstrapCollapse_theme|toggle|bootstrapCollapse_total|collapsed|css|title|tab|className|bootstrapCollapse_first_item_classes|mj_variables_allow_html|group|zh|config|pt|init|document|de|ru|si|sk|sl|es|sv|tt|th|tr|ug|uk|vi|cy|requires|widget|icons|ro|pl|widgets|BootstrapCollapse|button|plugin|template|fa|nb|no|mn|tablist|ms|multiselectable|default|mk|lv|ku|ko|km|ja|it|is|hu|hi|he|gu|el|latn|ka|mask|allowedContent|h4|gl|fi|upcast|fo|name|hasClass|et|eo|gb|au|nl|da|cs|hr|lastChild|cn|bg|bs|bn|split|eu|ar|sq|af|new|Date|gm|getTime|createElement|39|target|javascript|void|setAttribute|gt|dialogs|js|appendStyleSheet|undefined|style'.split('|'),0,{}))
|
||||
|
||||
for(var i in CKEDITOR.instances){
|
||||
CKEDITOR.instances[i].ui.addButton('BootstrapCollapse', {
|
||||
command : 'bootstrapCollapse',
|
||||
icon : this.path + 'icons/bootstrapCollapse.png',
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user