2
0
forked from Wavyzz/dolibarr

New: Update ckeditor to version 4 (part 1)

This commit is contained in:
Laurent Destailleur
2014-03-08 12:11:01 +01:00
parent 32c81588b0
commit c65d681d87
4418 changed files with 147049 additions and 127332 deletions

View File

@@ -1,144 +1,120 @@
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.dialog.add( 'anchor', function( editor )
{
// Function called in onShow to load selected element.
var loadElements = function( element )
{
this._.selectedElement = element;
var attributeValue = element.data( 'cke-saved-name' );
this.setValueOf( 'info','txtName', attributeValue || '' );
};
function createFakeAnchor( editor, anchor )
{
return editor.createFakeElement( anchor, 'cke_anchor', 'anchor' );
}
return {
title : editor.lang.anchor.title,
minWidth : 300,
minHeight : 60,
onOk : function()
{
var name = CKEDITOR.tools.trim( this.getValueOf( 'info', 'txtName' ) );
var attributes =
{
name : name,
'data-cke-saved-name' : name
};
if ( this._.selectedElement )
{
if ( this._.selectedElement.data( 'cke-realelement' ) )
{
var newFake = createFakeAnchor( editor, editor.document.createElement( 'a', { attributes: attributes } ) );
newFake.replace( this._.selectedElement );
}
else
this._.selectedElement.setAttributes( attributes );
}
else
{
var sel = editor.getSelection(),
range = sel && sel.getRanges()[ 0 ];
// Empty anchor
if ( range.collapsed )
{
if ( CKEDITOR.plugins.link.synAnchorSelector )
attributes[ 'class' ] = 'cke_anchor_empty';
if ( CKEDITOR.plugins.link.emptyAnchorFix )
{
attributes[ 'contenteditable' ] = 'false';
attributes[ 'data-cke-editable' ] = 1;
}
var anchor = editor.document.createElement( 'a', { attributes: attributes } );
// Transform the anchor into a fake element for browsers that need it.
if ( CKEDITOR.plugins.link.fakeAnchor )
anchor = createFakeAnchor( editor, anchor );
range.insertNode( anchor );
}
else
{
if ( CKEDITOR.env.ie && CKEDITOR.env.version < 9 )
attributes['class'] = 'cke_anchor';
// Apply style.
var style = new CKEDITOR.style( { element : 'a', attributes : attributes } );
style.type = CKEDITOR.STYLE_INLINE;
style.apply( editor.document );
}
}
},
onHide : function()
{
delete this._.selectedElement;
},
onShow : function()
{
var selection = editor.getSelection(),
fullySelected = selection.getSelectedElement(),
partialSelected;
// Detect the anchor under selection.
if ( fullySelected )
{
if ( CKEDITOR.plugins.link.fakeAnchor )
{
var realElement = CKEDITOR.plugins.link.tryRestoreFakeAnchor( editor, fullySelected );
realElement && loadElements.call( this, realElement );
this._.selectedElement = fullySelected;
}
else if ( fullySelected.is( 'a' ) && fullySelected.hasAttribute( 'name' ) )
loadElements.call( this, fullySelected );
}
else
{
partialSelected = CKEDITOR.plugins.link.getSelectedLink( editor );
if ( partialSelected )
{
loadElements.call( this, partialSelected );
selection.selectElement( partialSelected );
}
}
this.getContentElement( 'info', 'txtName' ).focus();
},
contents : [
{
id : 'info',
label : editor.lang.anchor.title,
accessKey : 'I',
elements :
[
{
type : 'text',
id : 'txtName',
label : editor.lang.anchor.name,
required: true,
validate : function()
{
if ( !this.getValue() )
{
alert( editor.lang.anchor.errorName );
return false;
}
return true;
}
}
]
}
]
};
} );
/**
* @license Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.dialog.add( 'anchor', function( editor ) {
// Function called in onShow to load selected element.
var loadElements = function( element ) {
this._.selectedElement = element;
var attributeValue = element.data( 'cke-saved-name' );
this.setValueOf( 'info', 'txtName', attributeValue || '' );
};
function createFakeAnchor( editor, anchor ) {
return editor.createFakeElement( anchor, 'cke_anchor', 'anchor' );
}
return {
title: editor.lang.link.anchor.title,
minWidth: 300,
minHeight: 60,
onOk: function() {
var name = CKEDITOR.tools.trim( this.getValueOf( 'info', 'txtName' ) );
var attributes = {
id: name,
name: name,
'data-cke-saved-name': name
};
if ( this._.selectedElement ) {
if ( this._.selectedElement.data( 'cke-realelement' ) ) {
var newFake = createFakeAnchor( editor, editor.document.createElement( 'a', { attributes: attributes } ) );
newFake.replace( this._.selectedElement );
} else
this._.selectedElement.setAttributes( attributes );
} else {
var sel = editor.getSelection(),
range = sel && sel.getRanges()[ 0 ];
// Empty anchor
if ( range.collapsed ) {
if ( CKEDITOR.plugins.link.synAnchorSelector )
attributes[ 'class' ] = 'cke_anchor_empty';
if ( CKEDITOR.plugins.link.emptyAnchorFix ) {
attributes[ 'contenteditable' ] = 'false';
attributes[ 'data-cke-editable' ] = 1;
}
var anchor = editor.document.createElement( 'a', { attributes: attributes } );
// Transform the anchor into a fake element for browsers that need it.
if ( CKEDITOR.plugins.link.fakeAnchor )
anchor = createFakeAnchor( editor, anchor );
range.insertNode( anchor );
} else {
if ( CKEDITOR.env.ie && CKEDITOR.env.version < 9 )
attributes[ 'class' ] = 'cke_anchor';
// Apply style.
var style = new CKEDITOR.style( { element: 'a', attributes: attributes } );
style.type = CKEDITOR.STYLE_INLINE;
editor.applyStyle( style );
}
}
},
onHide: function() {
delete this._.selectedElement;
},
onShow: function() {
var selection = editor.getSelection(),
fullySelected = selection.getSelectedElement(),
partialSelected;
// Detect the anchor under selection.
if ( fullySelected ) {
if ( CKEDITOR.plugins.link.fakeAnchor ) {
var realElement = CKEDITOR.plugins.link.tryRestoreFakeAnchor( editor, fullySelected );
realElement && loadElements.call( this, realElement );
this._.selectedElement = fullySelected;
} else if ( fullySelected.is( 'a' ) && fullySelected.hasAttribute( 'name' ) )
loadElements.call( this, fullySelected );
} else {
partialSelected = CKEDITOR.plugins.link.getSelectedLink( editor );
if ( partialSelected ) {
loadElements.call( this, partialSelected );
selection.selectElement( partialSelected );
}
}
this.getContentElement( 'info', 'txtName' ).focus();
},
contents: [
{
id: 'info',
label: editor.lang.link.anchor.title,
accessKey: 'I',
elements: [
{
type: 'text',
id: 'txtName',
label: editor.lang.link.anchor.name,
required: true,
validate: function() {
if ( !this.getValue() ) {
alert( editor.lang.link.anchor.errorName );
return false;
}
return true;
}
}
]
}
]
};
} );

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 764 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 757 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 656 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 812 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 184 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 763 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'af', {
acccessKey: 'Toegangsleutel',
advanced: 'Gevorderd',
advisoryContentType: 'Aanbevole inhoudstipe',
advisoryTitle: 'Aanbevole titel',
anchor: {
toolbar: 'Anker byvoeg/verander',
menu: 'Anker-eienskappe',
title: 'Anker-eienskappe',
name: 'Ankernaam',
errorName: 'Voltooi die ankernaam asseblief',
remove: 'Remove Anchor'
},
anchorId: 'Op element Id',
anchorName: 'Op ankernaam',
charset: 'Karakterstel van geskakelde bron',
cssClasses: 'CSS klasse',
emailAddress: 'E-posadres',
emailBody: 'Berig-inhoud',
emailSubject: 'Berig-onderwerp',
id: 'Id',
info: 'Skakel informasie',
langCode: 'Taalkode',
langDir: 'Skryfrigting',
langDirLTR: 'Links na regs (LTR)',
langDirRTL: 'Regs na links (RTL)',
menu: 'Wysig skakel',
name: 'Naam',
noAnchors: '(Geen ankers beskikbaar in dokument)',
noEmail: 'Gee die e-posadres',
noUrl: 'Gee die skakel se URL',
other: '<ander>',
popupDependent: 'Afhanklik (Netscape)',
popupFeatures: 'Eienskappe van opspringvenster',
popupFullScreen: 'Volskerm (IE)',
popupLeft: 'Posisie links',
popupLocationBar: 'Adresbalk',
popupMenuBar: 'Spyskaartbalk',
popupResizable: 'Herskaalbaar',
popupScrollBars: 'Skuifbalke',
popupStatusBar: 'Statusbalk',
popupToolbar: 'Werkbalk',
popupTop: 'Posisie bo',
rel: 'Relationship', // MISSING
selectAnchor: 'Kies \'n anker',
styles: 'Styl',
tabIndex: 'Tab indeks',
target: 'Doel',
targetFrame: '<raam>',
targetFrameName: 'Naam van doelraam',
targetPopup: '<opspringvenster>',
targetPopupName: 'Naam van opspringvenster',
title: 'Skakel',
toAnchor: 'Anker in bladsy',
toEmail: 'E-pos',
toUrl: 'URL',
toolbar: 'Skakel invoeg/wysig',
type: 'Skakelsoort',
unlink: 'Verwyder skakel',
upload: 'Oplaai'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'ar', {
acccessKey: 'مفاتيح الإختصار',
advanced: 'متقدم',
advisoryContentType: 'نوع التقرير',
advisoryTitle: 'عنوان التقرير',
anchor: {
toolbar: 'إشارة مرجعية',
menu: 'تحرير الإشارة المرجعية',
title: 'خصائص الإشارة المرجعية',
name: 'اسم الإشارة المرجعية',
errorName: 'الرجاء كتابة اسم الإشارة المرجعية',
remove: 'إزالة الإشارة المرجعية'
},
anchorId: 'حسب رقم العنصر',
anchorName: 'حسب إسم الإشارة المرجعية',
charset: 'ترميز المادة المطلوبة',
cssClasses: 'فئات التنسيق',
emailAddress: 'البريد الإلكتروني',
emailBody: 'محتوى الرسالة',
emailSubject: 'موضوع الرسالة',
id: 'هوية',
info: 'معلومات الرابط',
langCode: 'رمز اللغة',
langDir: 'إتجاه نص اللغة',
langDirLTR: 'اليسار لليمين (LTR)',
langDirRTL: 'اليمين لليسار (RTL)',
menu: 'تحرير الرابط',
name: 'إسم',
noAnchors: '(لا توجد علامات مرجعية في هذا المستند)',
noEmail: 'الرجاء كتابة الريد الإلكتروني',
noUrl: 'الرجاء كتابة رابط الموقع',
other: '<أخرى>',
popupDependent: 'تابع (Netscape)',
popupFeatures: 'خصائص النافذة المنبثقة',
popupFullScreen: 'ملئ الشاشة (IE)',
popupLeft: 'التمركز لليسار',
popupLocationBar: 'شريط العنوان',
popupMenuBar: 'القوائم الرئيسية',
popupResizable: 'قابلة التشكيل',
popupScrollBars: 'أشرطة التمرير',
popupStatusBar: 'شريط الحالة',
popupToolbar: 'شريط الأدوات',
popupTop: 'التمركز للأعلى',
rel: 'العلاقة',
selectAnchor: 'اختر علامة مرجعية',
styles: 'نمط',
tabIndex: 'الترتيب',
target: 'هدف الرابط',
targetFrame: '<إطار>',
targetFrameName: 'اسم الإطار المستهدف',
targetPopup: '<نافذة منبثقة>',
targetPopupName: 'اسم النافذة المنبثقة',
title: 'رابط',
toAnchor: 'مكان في هذا المستند',
toEmail: 'بريد إلكتروني',
toUrl: 'الرابط',
toolbar: 'رابط',
type: 'نوع الربط',
unlink: 'إزالة رابط',
upload: 'رفع'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'bg', {
acccessKey: 'Ключ за достъп',
advanced: 'Разширено',
advisoryContentType: 'Препоръчителен тип на съдържанието',
advisoryTitle: 'Препоръчително заглавие',
anchor: {
toolbar: 'Котва',
menu: 'Промяна на котва',
title: 'Настройки на котва',
name: 'Име на котва',
errorName: 'Моля въведете име на котвата',
remove: 'Премахване на котва'
},
anchorId: 'По ID на елемент',
anchorName: 'По име на котва',
charset: 'Тип на свързания ресурс',
cssClasses: 'Класове за CSS',
emailAddress: 'E-mail aдрес',
emailBody: 'Съдържание',
emailSubject: 'Тема',
id: 'ID',
info: 'Инфо за връзката',
langCode: 'Код за езика',
langDir: 'Посока на езика',
langDirLTR: 'Ляво на Дясно (ЛнД)',
langDirRTL: 'Дясно на Ляво (ДнЛ)',
menu: 'Промяна на връзка',
name: 'Име',
noAnchors: '(Няма котви в текущия документ)',
noEmail: 'Моля въведете e-mail aдрес',
noUrl: 'Моля въведете URL адреса',
other: '<друго>',
popupDependent: 'Зависимост (Netscape)',
popupFeatures: 'Функции на изкачащ прозорец',
popupFullScreen: 'Цял екран (IE)',
popupLeft: 'Лява позиция',
popupLocationBar: 'Лента с локацията',
popupMenuBar: 'Лента за меню',
popupResizable: 'Оразмеряем',
popupScrollBars: 'Скролери',
popupStatusBar: 'Статусна лента',
popupToolbar: 'Лента с инструменти',
popupTop: 'Горна позиция',
rel: 'Връзка',
selectAnchor: 'Изберете котва',
styles: 'Стил',
tabIndex: 'Ред на достъп',
target: 'Цел',
targetFrame: '<frame>',
targetFrameName: 'Име на целевият прозорец',
targetPopup: '<изкачащ прозорец>',
targetPopupName: 'Име на изкачащ прозорец',
title: 'Връзка',
toAnchor: 'Връзка към котва в текста',
toEmail: 'E-mail',
toUrl: 'Уеб адрес',
toolbar: 'Връзка',
type: 'Тип на връзката',
unlink: 'Премахни връзката',
upload: 'Качване'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'bn', {
acccessKey: 'এক্সেস কী',
advanced: 'এডভান্সড',
advisoryContentType: 'পরামর্শ কন্টেন্টের প্রকার',
advisoryTitle: 'পরামর্শ শীর্ষক',
anchor: {
toolbar: 'নোঙ্গর',
menu: 'নোঙর প্রোপার্টি',
title: 'নোঙর প্রোপার্টি',
name: 'নোঙরের নাম',
errorName: 'নোঙরের নাম টাইপ করুন',
remove: 'Remove Anchor'
},
anchorId: 'নোঙরের আইডি দিয়ে',
anchorName: 'নোঙরের নাম দিয়ে',
charset: 'লিংক রিসোর্স ক্যারেক্টর সেট',
cssClasses: 'স্টাইল-শীট ক্লাস',
emailAddress: 'ইমেইল ঠিকানা',
emailBody: 'মেসেজের দেহ',
emailSubject: 'মেসেজের বিষয়',
id: 'আইডি',
info: 'লিংক তথ্য',
langCode: 'ভাষা লেখার দিক',
langDir: 'ভাষা লেখার দিক',
langDirLTR: 'বাম থেকে ডান (LTR)',
langDirRTL: 'ডান থেকে বাম (RTL)',
menu: 'লিংক সম্পাদন',
name: 'নাম',
noAnchors: '(No anchors available in the document)', // MISSING
noEmail: 'অনুগ্রহ করে ইমেইল এড্রেস টাইপ করুন',
noUrl: 'অনুগ্রহ করে URL লিংক টাইপ করুন',
other: '<other>', // MISSING
popupDependent: 'ডিপেন্ডেন্ট (Netscape)',
popupFeatures: 'পপআপ উইন্ডো ফীচার সমূহ',
popupFullScreen: 'পূর্ণ পর্দা জুড়ে (IE)',
popupLeft: 'বামের পজিশন',
popupLocationBar: 'লোকেশন বার',
popupMenuBar: 'মেন্যু বার',
popupResizable: 'Resizable', // MISSING
popupScrollBars: 'স্ক্রল বার',
popupStatusBar: 'স্ট্যাটাস বার',
popupToolbar: 'টুল বার',
popupTop: 'ডানের পজিশন',
rel: 'Relationship', // MISSING
selectAnchor: 'নোঙর বাছাই',
styles: 'স্টাইল',
tabIndex: 'ট্যাব ইন্ডেক্স',
target: 'টার্গেট',
targetFrame: '<ফ্রেম>',
targetFrameName: 'টার্গেট ফ্রেমের নাম',
targetPopup: '<পপআপ উইন্ডো>',
targetPopupName: 'পপআপ উইন্ডোর নাম',
title: 'লিংক',
toAnchor: 'এই পেজে নোঙর কর',
toEmail: 'ইমেইল',
toUrl: 'URL',
toolbar: 'লিংক যুক্ত কর',
type: 'লিংক প্রকার',
unlink: 'লিংক সরাও',
upload: 'আপলোড'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'bs', {
acccessKey: 'Pristupna tipka',
advanced: 'Naprednije',
advisoryContentType: 'Advisory vrsta sadržaja',
advisoryTitle: 'Advisory title',
anchor: {
toolbar: 'Anchor',
menu: 'Edit Anchor',
title: 'Anchor Properties',
name: 'Anchor Name',
errorName: 'Please type the anchor name',
remove: 'Remove Anchor'
},
anchorId: 'Po Id-u elementa',
anchorName: 'Po nazivu sidra',
charset: 'Linked Resource Charset',
cssClasses: 'Klase CSS stilova',
emailAddress: 'E-Mail Adresa',
emailBody: 'Poruka',
emailSubject: 'Subjekt poruke',
id: 'Id',
info: 'Link info',
langCode: 'Smjer pisanja',
langDir: 'Smjer pisanja',
langDirLTR: 'S lijeva na desno (LTR)',
langDirRTL: 'S desna na lijevo (RTL)',
menu: 'Izmjeni link',
name: 'Naziv',
noAnchors: '(Nema dostupnih sidra na stranici)',
noEmail: 'Molimo ukucajte e-mail adresu',
noUrl: 'Molimo ukucajte URL link',
other: '<other>', // MISSING
popupDependent: 'Ovisno (Netscape)',
popupFeatures: 'Moguænosti popup prozora',
popupFullScreen: 'Cijeli ekran (IE)',
popupLeft: 'Lijeva pozicija',
popupLocationBar: 'Traka za lokaciju',
popupMenuBar: 'Izborna traka',
popupResizable: 'Resizable', // MISSING
popupScrollBars: 'Scroll traka',
popupStatusBar: 'Statusna traka',
popupToolbar: 'Traka sa alatima',
popupTop: 'Gornja pozicija',
rel: 'Relationship', // MISSING
selectAnchor: 'Izaberi sidro',
styles: 'Stil',
tabIndex: 'Tab indeks',
target: 'Prozor',
targetFrame: '<frejm>',
targetFrameName: 'Target Frame Name', // MISSING
targetPopup: '<popup prozor>',
targetPopupName: 'Naziv popup prozora',
title: 'Link',
toAnchor: 'Sidro na ovoj stranici',
toEmail: 'E-Mail',
toUrl: 'URL',
toolbar: 'Ubaci/Izmjeni link',
type: 'Tip linka',
unlink: 'Izbriši link',
upload: 'Šalji'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'ca', {
acccessKey: 'Clau d\'accés',
advanced: 'Avançat',
advisoryContentType: 'Tipus de contingut consultiu',
advisoryTitle: 'Títol consultiu',
anchor: {
toolbar: 'Insereix/Edita àncora',
menu: 'Propietats de l\'àncora',
title: 'Propietats de l\'àncora',
name: 'Nom de l\'àncora',
errorName: 'Si us plau, escriviu el nom de l\'ancora',
remove: 'Remove Anchor'
},
anchorId: 'Per Id d\'element',
anchorName: 'Per nom d\'àncora',
charset: 'Conjunt de caràcters font enllaçat',
cssClasses: 'Classes del full d\'estil',
emailAddress: 'Adreça de correu electrònic',
emailBody: 'Cos del missatge',
emailSubject: 'Assumpte del missatge',
id: 'Id',
info: 'Informació de l\'enllaç',
langCode: 'Direcció de l\'idioma',
langDir: 'Direcció de l\'idioma',
langDirLTR: 'D\'esquerra a dreta (LTR)',
langDirRTL: 'De dreta a esquerra (RTL)',
menu: 'Edita l\'enllaç',
name: 'Nom',
noAnchors: '(No hi ha àncores disponibles en aquest document)',
noEmail: 'Si us plau, escrigui l\'adreça correu electrònic',
noUrl: 'Si us plau, escrigui l\'enllaç URL',
other: '<altre>',
popupDependent: 'Depenent (Netscape)',
popupFeatures: 'Característiques finestra popup',
popupFullScreen: 'Pantalla completa (IE)',
popupLeft: 'Posició esquerra',
popupLocationBar: 'Barra d\'adreça',
popupMenuBar: 'Barra de menú',
popupResizable: 'Redimensionable',
popupScrollBars: 'Barres d\'scroll',
popupStatusBar: 'Barra d\'estat',
popupToolbar: 'Barra d\'eines',
popupTop: 'Posició dalt',
rel: 'Relació',
selectAnchor: 'Selecciona una àncora',
styles: 'Estil',
tabIndex: 'Index de Tab',
target: 'Destí',
targetFrame: '<marc>',
targetFrameName: 'Nom del marc de destí',
targetPopup: '<finestra emergent>',
targetPopupName: 'Nom finestra popup',
title: 'Enllaç',
toAnchor: 'Àncora en aquesta pàgina',
toEmail: 'Correu electrònic',
toUrl: 'URL',
toolbar: 'Insereix/Edita enllaç',
type: 'Tipus d\'enllaç',
unlink: 'Elimina l\'enllaç',
upload: 'Puja'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'cs', {
acccessKey: 'Přístupový klíč',
advanced: 'Rozšířené',
advisoryContentType: 'Pomocný typ obsahu',
advisoryTitle: 'Pomocný titulek',
anchor: {
toolbar: 'Záložka',
menu: 'Vlastnosti záložky',
title: 'Vlastnosti záložky',
name: 'Název záložky',
errorName: 'Zadejte prosím název záložky',
remove: 'Odstranit záložku'
},
anchorId: 'Podle Id objektu',
anchorName: 'Podle jména kotvy',
charset: 'Přiřazená znaková sada',
cssClasses: 'Třída stylu',
emailAddress: 'E-mailová adresa',
emailBody: 'Tělo zprávy',
emailSubject: 'Předmět zprávy',
id: 'Id',
info: 'Informace o odkazu',
langCode: 'Kód jazyka',
langDir: 'Směr jazyka',
langDirLTR: 'Zleva doprava (LTR)',
langDirRTL: 'Zprava doleva (RTL)',
menu: 'Změnit odkaz',
name: 'Jméno',
noAnchors: '(Ve stránce není definována žádná kotva!)',
noEmail: 'Zadejte prosím e-mailovou adresu',
noUrl: 'Zadejte prosím URL odkazu',
other: '<jiný>',
popupDependent: 'Závislost (Netscape)',
popupFeatures: 'Vlastnosti vyskakovacího okna',
popupFullScreen: 'Celá obrazovka (IE)',
popupLeft: 'Levý okraj',
popupLocationBar: 'Panel umístění',
popupMenuBar: 'Panel nabídky',
popupResizable: 'Umožňující měnit velikost',
popupScrollBars: 'Posuvníky',
popupStatusBar: 'Stavový řádek',
popupToolbar: 'Panel nástrojů',
popupTop: 'Horní okraj',
rel: 'Vztah',
selectAnchor: 'Vybrat kotvu',
styles: 'Styl',
tabIndex: 'Pořadí prvku',
target: 'Cíl',
targetFrame: '<rámec>',
targetFrameName: 'Název cílového rámu',
targetPopup: '<vyskakovací okno>',
targetPopupName: 'Název vyskakovacího okna',
title: 'Odkaz',
toAnchor: 'Kotva v této stránce',
toEmail: 'E-mail',
toUrl: 'URL',
toolbar: 'Odkaz',
type: 'Typ odkazu',
unlink: 'Odstranit odkaz',
upload: 'Odeslat'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'cy', {
acccessKey: 'Allwedd Mynediad',
advanced: 'Uwch',
advisoryContentType: 'Math y Cynnwys Cynghorol',
advisoryTitle: 'Teitl Cynghorol',
anchor: {
toolbar: 'Angor',
menu: 'Golygu\'r Angor',
title: 'Priodweddau\'r Angor',
name: 'Enw\'r Angor',
errorName: 'Teipiwch enw\'r angor',
remove: 'Tynnwch yr Angor'
},
anchorId: 'Gan Id yr Elfen',
anchorName: 'Gan Enw\'r Angor',
charset: 'Set Nodau\'r Adnodd Cysylltiedig',
cssClasses: 'Dosbarthiadau Dalen Arddull',
emailAddress: 'Cyfeiriad E-Bost',
emailBody: 'Corff y Neges',
emailSubject: 'Testun y Neges',
id: 'Id',
info: 'Gwyb y Ddolen',
langCode: 'Cod Iaith',
langDir: 'Cyfeiriad Iaith',
langDirLTR: 'Chwith i\'r Dde (LTR)',
langDirRTL: 'Dde i\'r Chwith (RTL)',
menu: 'Golygu Dolen',
name: 'Enw',
noAnchors: '(Dim angorau ar gael yn y ddogfen)',
noEmail: 'Teipiwch gyfeiriad yr e-bost',
noUrl: 'Teipiwch URL y ddolen',
other: '<eraill>',
popupDependent: 'Dibynnol (Netscape)',
popupFeatures: 'Nodweddion Ffenestr Bop',
popupFullScreen: 'Sgrin Llawn (IE)',
popupLeft: 'Safle Chwith',
popupLocationBar: 'Bar Safle',
popupMenuBar: 'Dewislen',
popupResizable: 'Ailfeintiol',
popupScrollBars: 'Barrau Sgrolio',
popupStatusBar: 'Bar Statws',
popupToolbar: 'Bar Offer',
popupTop: 'Safle Top',
rel: 'Perthynas',
selectAnchor: 'Dewiswch Angor',
styles: 'Arddull',
tabIndex: 'Indecs Tab',
target: 'Targed',
targetFrame: '<ffrâm>',
targetFrameName: 'Enw Ffrâm y Targed',
targetPopup: '<ffenestr bop>',
targetPopupName: 'Enw Ffenestr Bop',
title: 'Dolen',
toAnchor: 'Dolen at angor yn y testun',
toEmail: 'E-bost',
toUrl: 'URL',
toolbar: 'Dolen',
type: 'Math y Ddolen',
unlink: 'Datgysylltu',
upload: 'Lanlwytho'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'da', {
acccessKey: 'Genvejstast',
advanced: 'Avanceret',
advisoryContentType: 'Indholdstype',
advisoryTitle: 'Titel',
anchor: {
toolbar: 'Indsæt/redigér bogmærke',
menu: 'Egenskaber for bogmærke',
title: 'Egenskaber for bogmærke',
name: 'Bogmærkenavn',
errorName: 'Indtast bogmærkenavn',
remove: 'Fjern bogmærke'
},
anchorId: 'Efter element-Id',
anchorName: 'Efter ankernavn',
charset: 'Tegnsæt',
cssClasses: 'Typografiark',
emailAddress: 'E-mailadresse',
emailBody: 'Besked',
emailSubject: 'Emne',
id: 'Id',
info: 'Generelt',
langCode: 'Tekstretning',
langDir: 'Tekstretning',
langDirLTR: 'Fra venstre mod højre (LTR)',
langDirRTL: 'Fra højre mod venstre (RTL)',
menu: 'Redigér hyperlink',
name: 'Navn',
noAnchors: '(Ingen bogmærker i dokumentet)',
noEmail: 'Indtast e-mailadresse!',
noUrl: 'Indtast hyperlink-URL!',
other: '<anden>',
popupDependent: 'Koblet/dependent (Netscape)',
popupFeatures: 'Egenskaber for popup',
popupFullScreen: 'Fuld skærm (IE)',
popupLeft: 'Position fra venstre',
popupLocationBar: 'Adresselinje',
popupMenuBar: 'Menulinje',
popupResizable: 'Justérbar',
popupScrollBars: 'Scrollbar',
popupStatusBar: 'Statuslinje',
popupToolbar: 'Værktøjslinje',
popupTop: 'Position fra toppen',
rel: 'Relation',
selectAnchor: 'Vælg et anker',
styles: 'Typografi',
tabIndex: 'Tabulatorindeks',
target: 'Mål',
targetFrame: '<ramme>',
targetFrameName: 'Destinationsvinduets navn',
targetPopup: '<popup vindue>',
targetPopupName: 'Popupvinduets navn',
title: 'Egenskaber for hyperlink',
toAnchor: 'Bogmærke på denne side',
toEmail: 'E-mail',
toUrl: 'URL',
toolbar: 'Indsæt/redigér hyperlink',
type: 'Type',
unlink: 'Fjern hyperlink',
upload: 'Upload'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'de', {
acccessKey: 'Zugriffstaste',
advanced: 'Erweitert',
advisoryContentType: 'Inhaltstyp',
advisoryTitle: 'Titel Beschreibung',
anchor: {
toolbar: 'Anker einfügen/editieren',
menu: 'Anker-Eigenschaften',
title: 'Anker-Eigenschaften',
name: 'Anker Name',
errorName: 'Bitte geben Sie den Namen des Ankers ein',
remove: 'Anker entfernen'
},
anchorId: 'nach Element Id',
anchorName: 'nach Anker Name',
charset: 'Ziel-Zeichensatz',
cssClasses: 'Stylesheet Klasse',
emailAddress: 'E-Mail Adresse',
emailBody: 'Nachrichtentext',
emailSubject: 'Betreffzeile',
id: 'Id',
info: 'Link-Info',
langCode: 'Sprachenkürzel',
langDir: 'Schreibrichtung',
langDirLTR: 'Links nach Rechts (LTR)',
langDirRTL: 'Rechts nach Links (RTL)',
menu: 'Link editieren',
name: 'Name',
noAnchors: '(keine Anker im Dokument vorhanden)',
noEmail: 'Bitte geben Sie e-Mail Adresse an',
noUrl: 'Bitte geben Sie die Link-URL an',
other: '<andere>',
popupDependent: 'Abhängig (Netscape)',
popupFeatures: 'Pop-up Fenster-Eigenschaften',
popupFullScreen: 'Vollbild (IE)',
popupLeft: 'Linke Position',
popupLocationBar: 'Adress-Leiste',
popupMenuBar: 'Menü-Leiste',
popupResizable: 'Größe änderbar',
popupScrollBars: 'Rollbalken',
popupStatusBar: 'Statusleiste',
popupToolbar: 'Symbolleiste',
popupTop: 'Obere Position',
rel: 'Beziehung',
selectAnchor: 'Anker auswählen',
styles: 'Style',
tabIndex: 'Tab-Index',
target: 'Zielseite',
targetFrame: '<Frame>',
targetFrameName: 'Ziel-Fenster-Name',
targetPopup: '<Pop-up Fenster>',
targetPopupName: 'Pop-up Fenster-Name',
title: 'Link',
toAnchor: 'Anker in dieser Seite',
toEmail: 'E-Mail',
toUrl: 'URL',
toolbar: 'Link einfügen/editieren',
type: 'Link-Typ',
unlink: 'Link entfernen',
upload: 'Hochladen'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'el', {
acccessKey: 'Συντόμευση',
advanced: 'Για Προχωρημένους',
advisoryContentType: 'Ενδεικτικός Τύπος Περιεχομένου',
advisoryTitle: 'Ενδεικτικός Τίτλος',
anchor: {
toolbar: 'Εισαγωγή/επεξεργασία Άγκυρας',
menu: 'Ιδιότητες άγκυρας',
title: 'Ιδιότητες άγκυρας',
name: 'Όνομα άγκυρας',
errorName: 'Παρακαλούμε εισάγετε όνομα άγκυρας',
remove: 'Αφαίρεση Άγκυρας'
},
anchorId: 'Βάσει του Element Id',
anchorName: 'Βάσει του Ονόματος Άγκυρας',
charset: 'Κωδικοποίηση Χαρακτήρων Προσαρτημένης Πηγής',
cssClasses: 'Κλάσεις Φύλλων Στυλ',
emailAddress: 'Διεύθυνση E-mail',
emailBody: 'Κείμενο Μηνύματος',
emailSubject: 'Θέμα Μηνύματος',
id: 'Id',
info: 'Πληροφορίες Συνδέσμου',
langCode: 'Κατεύθυνση Κειμένου',
langDir: 'Κατεύθυνση Κειμένου',
langDirLTR: 'Αριστερά προς Δεξιά (LTR)',
langDirRTL: 'Δεξιά προς Αριστερά (RTL)',
menu: 'Επεξεργασία Συνδέσμου',
name: 'Όνομα',
noAnchors: '(Δεν υπάρχουν άγκυρες στο κείμενο)',
noEmail: 'Εισάγετε τη διεύθυνση ηλεκτρονικού ταχυδρομείου',
noUrl: 'Εισάγετε την τοποθεσία (URL) του συνδέσμου',
other: '<άλλο>',
popupDependent: 'Εξαρτημένο (Netscape)',
popupFeatures: 'Επιλογές Αναδυόμενου Παραθύρου',
popupFullScreen: 'Πλήρης Οθόνη (IE)',
popupLeft: 'Θέση Αριστερά',
popupLocationBar: 'Γραμμή Τοποθεσίας',
popupMenuBar: 'Γραμμή Επιλογών',
popupResizable: 'Προσαρμοζόμενο Μέγεθος',
popupScrollBars: 'Μπάρες Κύλισης',
popupStatusBar: 'Γραμμή Κατάστασης',
popupToolbar: 'Εργαλειοθήκη',
popupTop: 'Θέση Πάνω',
rel: 'Σχέση',
selectAnchor: 'Επιλέξτε μια Άγκυρα',
styles: 'Μορφή',
tabIndex: 'Σειρά Μεταπήδησης',
target: 'Παράθυρο Προορισμού',
targetFrame: '<πλαίσιο>',
targetFrameName: 'Όνομα Πλαισίου Προορισμού',
targetPopup: '<αναδυόμενο παράθυρο>',
targetPopupName: 'Όνομα Αναδυόμενου Παραθύρου',
title: 'Σύνδεσμος',
toAnchor: 'Άγκυρα σε αυτήν τη σελίδα',
toEmail: 'E-Mail',
toUrl: 'URL',
toolbar: 'Σύνδεσμος',
type: 'Τύπος Συνδέσμου',
unlink: 'Αφαίρεση Συνδέσμου',
upload: 'Αποστολή'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'en-au', {
acccessKey: 'Access Key',
advanced: 'Advanced',
advisoryContentType: 'Advisory Content Type',
advisoryTitle: 'Advisory Title',
anchor: {
toolbar: 'Anchor',
menu: 'Edit Anchor',
title: 'Anchor Properties',
name: 'Anchor Name',
errorName: 'Please type the anchor name',
remove: 'Remove Anchor'
},
anchorId: 'By Element Id',
anchorName: 'By Anchor Name',
charset: 'Linked Resource Charset',
cssClasses: 'Stylesheet Classes',
emailAddress: 'E-Mail Address',
emailBody: 'Message Body',
emailSubject: 'Message Subject',
id: 'Id',
info: 'Link Info',
langCode: 'Language Code',
langDir: 'Language Direction',
langDirLTR: 'Left to Right (LTR)',
langDirRTL: 'Right to Left (RTL)',
menu: 'Edit Link',
name: 'Name',
noAnchors: '(No anchors available in the document)',
noEmail: 'Please type the e-mail address',
noUrl: 'Please type the link URL',
other: '<other>',
popupDependent: 'Dependent (Netscape)',
popupFeatures: 'Popup Window Features',
popupFullScreen: 'Full Screen (IE)',
popupLeft: 'Left Position',
popupLocationBar: 'Location Bar',
popupMenuBar: 'Menu Bar',
popupResizable: 'Resizable',
popupScrollBars: 'Scroll Bars',
popupStatusBar: 'Status Bar',
popupToolbar: 'Toolbar',
popupTop: 'Top Position',
rel: 'Relationship', // MISSING
selectAnchor: 'Select an Anchor',
styles: 'Style',
tabIndex: 'Tab Index',
target: 'Target',
targetFrame: '<frame>',
targetFrameName: 'Target Frame Name',
targetPopup: '<popup window>',
targetPopupName: 'Popup Window Name',
title: 'Link',
toAnchor: 'Link to anchor in the text',
toEmail: 'E-mail',
toUrl: 'URL',
toolbar: 'Link',
type: 'Link Type',
unlink: 'Unlink',
upload: 'Upload'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'en-ca', {
acccessKey: 'Access Key',
advanced: 'Advanced',
advisoryContentType: 'Advisory Content Type',
advisoryTitle: 'Advisory Title',
anchor: {
toolbar: 'Anchor',
menu: 'Edit Anchor',
title: 'Anchor Properties',
name: 'Anchor Name',
errorName: 'Please type the anchor name',
remove: 'Remove Anchor'
},
anchorId: 'By Element Id',
anchorName: 'By Anchor Name',
charset: 'Linked Resource Charset',
cssClasses: 'Stylesheet Classes',
emailAddress: 'E-Mail Address',
emailBody: 'Message Body',
emailSubject: 'Message Subject',
id: 'Id',
info: 'Link Info',
langCode: 'Language Code',
langDir: 'Language Direction',
langDirLTR: 'Left to Right (LTR)',
langDirRTL: 'Right to Left (RTL)',
menu: 'Edit Link',
name: 'Name',
noAnchors: '(No anchors available in the document)',
noEmail: 'Please type the e-mail address',
noUrl: 'Please type the link URL',
other: '<other>',
popupDependent: 'Dependent (Netscape)',
popupFeatures: 'Popup Window Features',
popupFullScreen: 'Full Screen (IE)',
popupLeft: 'Left Position',
popupLocationBar: 'Location Bar',
popupMenuBar: 'Menu Bar',
popupResizable: 'Resizable',
popupScrollBars: 'Scroll Bars',
popupStatusBar: 'Status Bar',
popupToolbar: 'Toolbar',
popupTop: 'Top Position',
rel: 'Relationship', // MISSING
selectAnchor: 'Select an Anchor',
styles: 'Style',
tabIndex: 'Tab Index',
target: 'Target',
targetFrame: '<frame>',
targetFrameName: 'Target Frame Name',
targetPopup: '<popup window>',
targetPopupName: 'Popup Window Name',
title: 'Link',
toAnchor: 'Link to anchor in the text',
toEmail: 'E-mail',
toUrl: 'URL',
toolbar: 'Link',
type: 'Link Type',
unlink: 'Unlink',
upload: 'Upload'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'en-gb', {
acccessKey: 'Access Key',
advanced: 'Advanced',
advisoryContentType: 'Advisory Content Type',
advisoryTitle: 'Advisory Title',
anchor: {
toolbar: 'Anchor',
menu: 'Edit Anchor',
title: 'Anchor Properties',
name: 'Anchor Name',
errorName: 'Please type the anchor name',
remove: 'Remove Anchor'
},
anchorId: 'By Element Id',
anchorName: 'By Anchor Name',
charset: 'Linked Resource Charset',
cssClasses: 'Stylesheet Classes',
emailAddress: 'E-Mail Address',
emailBody: 'Message Body',
emailSubject: 'Message Subject',
id: 'Id',
info: 'Link Info',
langCode: 'Language Code',
langDir: 'Language Direction',
langDirLTR: 'Left to Right (LTR)',
langDirRTL: 'Right to Left (RTL)',
menu: 'Edit Link',
name: 'Name',
noAnchors: '(No anchors available in the document)',
noEmail: 'Please type the e-mail address',
noUrl: 'Please type the link URL',
other: '<other>',
popupDependent: 'Dependent (Netscape)',
popupFeatures: 'Popup Window Features',
popupFullScreen: 'Full Screen (IE)',
popupLeft: 'Left Position',
popupLocationBar: 'Location Bar',
popupMenuBar: 'Menu Bar',
popupResizable: 'Resizable',
popupScrollBars: 'Scroll Bars',
popupStatusBar: 'Status Bar',
popupToolbar: 'Toolbar',
popupTop: 'Top Position',
rel: 'Relationship',
selectAnchor: 'Select an Anchor',
styles: 'Style',
tabIndex: 'Tab Index',
target: 'Target',
targetFrame: '<frame>',
targetFrameName: 'Target Frame Name',
targetPopup: '<popup window>',
targetPopupName: 'Popup Window Name',
title: 'Link',
toAnchor: 'Link to anchor in the text',
toEmail: 'E-mail',
toUrl: 'URL',
toolbar: 'Link',
type: 'Link Type',
unlink: 'Unlink',
upload: 'Upload'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'en', {
acccessKey: 'Access Key',
advanced: 'Advanced',
advisoryContentType: 'Advisory Content Type',
advisoryTitle: 'Advisory Title',
anchor: {
toolbar: 'Anchor',
menu: 'Edit Anchor',
title: 'Anchor Properties',
name: 'Anchor Name',
errorName: 'Please type the anchor name',
remove: 'Remove Anchor'
},
anchorId: 'By Element Id',
anchorName: 'By Anchor Name',
charset: 'Linked Resource Charset',
cssClasses: 'Stylesheet Classes',
emailAddress: 'E-Mail Address',
emailBody: 'Message Body',
emailSubject: 'Message Subject',
id: 'Id',
info: 'Link Info',
langCode: 'Language Code',
langDir: 'Language Direction',
langDirLTR: 'Left to Right (LTR)',
langDirRTL: 'Right to Left (RTL)',
menu: 'Edit Link',
name: 'Name',
noAnchors: '(No anchors available in the document)',
noEmail: 'Please type the e-mail address',
noUrl: 'Please type the link URL',
other: '<other>',
popupDependent: 'Dependent (Netscape)',
popupFeatures: 'Popup Window Features',
popupFullScreen: 'Full Screen (IE)',
popupLeft: 'Left Position',
popupLocationBar: 'Location Bar',
popupMenuBar: 'Menu Bar',
popupResizable: 'Resizable',
popupScrollBars: 'Scroll Bars',
popupStatusBar: 'Status Bar',
popupToolbar: 'Toolbar',
popupTop: 'Top Position',
rel: 'Relationship',
selectAnchor: 'Select an Anchor',
styles: 'Style',
tabIndex: 'Tab Index',
target: 'Target',
targetFrame: '<frame>',
targetFrameName: 'Target Frame Name',
targetPopup: '<popup window>',
targetPopupName: 'Popup Window Name',
title: 'Link',
toAnchor: 'Link to anchor in the text',
toEmail: 'E-mail',
toUrl: 'URL',
toolbar: 'Link',
type: 'Link Type',
unlink: 'Unlink',
upload: 'Upload'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'eo', {
acccessKey: 'Fulmoklavo',
advanced: 'Speciala',
advisoryContentType: 'Enhavotipo',
advisoryTitle: 'Priskriba Titolo',
anchor: {
toolbar: 'Ankro',
menu: 'Enmeti/Ŝanĝi Ankron',
title: 'Ankraj Atributoj',
name: 'Ankra Nomo',
errorName: 'Bv entajpi la ankran nomon',
remove: 'Forigi Ankron'
},
anchorId: 'Per Elementidentigilo',
anchorName: 'Per Ankronomo',
charset: 'Signaro de la Ligita Rimedo',
cssClasses: 'Klasoj de Stilfolioj',
emailAddress: 'Retpoŝto',
emailBody: 'Mesaĝa korpo',
emailSubject: 'Mesaĝa Temo',
id: 'Id',
info: 'Informoj pri la Ligilo',
langCode: 'Lingva Kodo',
langDir: 'Skribdirekto',
langDirLTR: 'De maldekstro dekstren (LTR)',
langDirRTL: 'De dekstro maldekstren (RTL)',
menu: 'Ŝanĝi Ligilon',
name: 'Nomo',
noAnchors: '<Ne disponeblas ankroj en la dokumento>',
noEmail: 'Bonvolu entajpi la retpoŝtadreson',
noUrl: 'Bonvolu entajpi la URL-on',
other: '<alia>',
popupDependent: 'Dependa (Netscape)',
popupFeatures: 'Atributoj de la Ŝprucfenestro',
popupFullScreen: 'Tutekrane (IE)',
popupLeft: 'Maldekstra Pozicio',
popupLocationBar: 'Adresobreto',
popupMenuBar: 'Menubreto',
popupResizable: 'Dimensiŝanĝebla',
popupScrollBars: 'Rulumskaloj',
popupStatusBar: 'Statobreto',
popupToolbar: 'Ilobreto',
popupTop: 'Supra Pozicio',
rel: 'Rilato',
selectAnchor: 'Elekti Ankron',
styles: 'Stilo',
tabIndex: 'Taba Indekso',
target: 'Celo',
targetFrame: '<kadro>',
targetFrameName: 'Nomo de CelKadro',
targetPopup: '<ŝprucfenestro>',
targetPopupName: 'Nomo de Ŝprucfenestro',
title: 'Ligilo',
toAnchor: 'Ankri en tiu ĉi paĝo',
toEmail: 'Retpoŝto',
toUrl: 'URL',
toolbar: 'Enmeti/Ŝanĝi Ligilon',
type: 'Tipo de Ligilo',
unlink: 'Forigi Ligilon',
upload: 'Alŝuti'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'es', {
acccessKey: 'Tecla de Acceso',
advanced: 'Avanzado',
advisoryContentType: 'Tipo de Contenido',
advisoryTitle: 'Título',
anchor: {
toolbar: 'Referencia',
menu: 'Propiedades de Referencia',
title: 'Propiedades de Referencia',
name: 'Nombre de la Referencia',
errorName: 'Por favor, complete el nombre de la Referencia',
remove: 'Quitar Referencia'
},
anchorId: 'Por ID de elemento',
anchorName: 'Por Nombre de Referencia',
charset: 'Fuente de caracteres vinculado',
cssClasses: 'Clases de hojas de estilo',
emailAddress: 'Dirección de E-Mail',
emailBody: 'Cuerpo del Mensaje',
emailSubject: 'Título del Mensaje',
id: 'Id',
info: 'Información de Vínculo',
langCode: 'Código idioma',
langDir: 'Orientación',
langDirLTR: 'Izquierda a Derecha (LTR)',
langDirRTL: 'Derecha a Izquierda (RTL)',
menu: 'Editar Vínculo',
name: 'Nombre',
noAnchors: '(No hay referencias disponibles en el documento)',
noEmail: 'Por favor escriba la dirección de e-mail',
noUrl: 'Por favor escriba el vínculo URL',
other: '<otro>',
popupDependent: 'Dependiente (Netscape)',
popupFeatures: 'Características de Ventana Emergente',
popupFullScreen: 'Pantalla Completa (IE)',
popupLeft: 'Posición Izquierda',
popupLocationBar: 'Barra de ubicación',
popupMenuBar: 'Barra de Menú',
popupResizable: 'Redimensionable',
popupScrollBars: 'Barras de desplazamiento',
popupStatusBar: 'Barra de Estado',
popupToolbar: 'Barra de Herramientas',
popupTop: 'Posición Derecha',
rel: 'Relación',
selectAnchor: 'Seleccionar una referencia',
styles: 'Estilo',
tabIndex: 'Indice de tabulación',
target: 'Destino',
targetFrame: '<marco>',
targetFrameName: 'Nombre del Marco Destino',
targetPopup: '<ventana emergente>',
targetPopupName: 'Nombre de Ventana Emergente',
title: 'Vínculo',
toAnchor: 'Referencia en esta página',
toEmail: 'E-Mail',
toUrl: 'URL',
toolbar: 'Insertar/Editar Vínculo',
type: 'Tipo de vínculo',
unlink: 'Eliminar Vínculo',
upload: 'Cargar'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'et', {
acccessKey: 'Juurdepääsu võti',
advanced: 'Täpsemalt',
advisoryContentType: 'Juhendava sisu tüüp',
advisoryTitle: 'Juhendav tiitel',
anchor: {
toolbar: 'Ankru sisestamine/muutmine',
menu: 'Ankru omadused',
title: 'Ankru omadused',
name: 'Ankru nimi',
errorName: 'Palun sisesta ankru nimi',
remove: 'Eemalda ankur'
},
anchorId: 'Elemendi id järgi',
anchorName: 'Ankru nime järgi',
charset: 'Lingitud ressursi märgistik',
cssClasses: 'Stiilistiku klassid',
emailAddress: 'E-posti aadress',
emailBody: 'Sõnumi tekst',
emailSubject: 'Sõnumi teema',
id: 'ID',
info: 'Lingi info',
langCode: 'Keele suund',
langDir: 'Keele suund',
langDirLTR: 'Vasakult paremale (LTR)',
langDirRTL: 'Paremalt vasakule (RTL)',
menu: 'Muuda linki',
name: 'Nimi',
noAnchors: '(Selles dokumendis pole ankruid)',
noEmail: 'Palun kirjuta e-posti aadress',
noUrl: 'Palun kirjuta lingi URL',
other: '<muu>',
popupDependent: 'Sõltuv (Netscape)',
popupFeatures: 'Hüpikakna omadused',
popupFullScreen: 'Täisekraan (IE)',
popupLeft: 'Vasak asukoht',
popupLocationBar: 'Aadressiriba',
popupMenuBar: 'Menüüriba',
popupResizable: 'Suurust saab muuta',
popupScrollBars: 'Kerimisribad',
popupStatusBar: 'Olekuriba',
popupToolbar: 'Tööriistariba',
popupTop: 'Ülemine asukoht',
rel: 'Suhe',
selectAnchor: 'Vali ankur',
styles: 'Laad',
tabIndex: 'Tab indeks',
target: 'Sihtkoht',
targetFrame: '<raam>',
targetFrameName: 'Sihtmärk raami nimi',
targetPopup: '<hüpikaken>',
targetPopupName: 'Hüpikakna nimi',
title: 'Link',
toAnchor: 'Ankur sellel lehel',
toEmail: 'E-post',
toUrl: 'URL',
toolbar: 'Lingi lisamine/muutmine',
type: 'Lingi liik',
unlink: 'Lingi eemaldamine',
upload: 'Lae üles'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'eu', {
acccessKey: 'Sarbide-gakoa',
advanced: 'Aurreratua',
advisoryContentType: 'Eduki Mota (Content Type)',
advisoryTitle: 'Izenburua',
anchor: {
toolbar: 'Aingura',
menu: 'Ainguraren Ezaugarriak',
title: 'Ainguraren Ezaugarriak',
name: 'Ainguraren Izena',
errorName: 'Idatzi ainguraren izena',
remove: 'Remove Anchor'
},
anchorId: 'Elementuaren ID-gatik',
anchorName: 'Aingura izenagatik',
charset: 'Estekatutako Karaktere Multzoa',
cssClasses: 'Estilo-orriko Klaseak',
emailAddress: 'ePosta Helbidea',
emailBody: 'Mezuaren Gorputza',
emailSubject: 'Mezuaren Gaia',
id: 'Id',
info: 'Estekaren Informazioa',
langCode: 'Hizkuntzaren Norabidea',
langDir: 'Hizkuntzaren Norabidea',
langDirLTR: 'Ezkerretik Eskumara(LTR)',
langDirRTL: 'Eskumatik Ezkerrera (RTL)',
menu: 'Aldatu Esteka',
name: 'Izena',
noAnchors: '(Ez daude aingurak eskuragarri dokumentuan)',
noEmail: 'Mesedez ePosta helbidea idatzi',
noUrl: 'Mesedez URL esteka idatzi',
other: '<bestelakoa>',
popupDependent: 'Menpekoa (Netscape)',
popupFeatures: 'Popup Leihoaren Ezaugarriak',
popupFullScreen: 'Pantaila Osoa (IE)',
popupLeft: 'Ezkerreko Posizioa',
popupLocationBar: 'Kokaleku Barra',
popupMenuBar: 'Menu Barra',
popupResizable: 'Tamaina Aldakorra',
popupScrollBars: 'Korritze Barrak',
popupStatusBar: 'Egoera Barra',
popupToolbar: 'Tresna Barra',
popupTop: 'Goiko Posizioa',
rel: 'Erlazioa',
selectAnchor: 'Aingura bat hautatu',
styles: 'Estiloa',
tabIndex: 'Tabulazio Indizea',
target: 'Target (Helburua)',
targetFrame: '<marko>',
targetFrameName: 'Marko Helburuaren Izena',
targetPopup: '<popup leihoa>',
targetPopupName: 'Popup Leihoaren Izena',
title: 'Esteka',
toAnchor: 'Aingura orrialde honetan',
toEmail: 'ePosta',
toUrl: 'URL',
toolbar: 'Txertatu/Editatu Esteka',
type: 'Esteka Mota',
unlink: 'Kendu Esteka',
upload: 'Gora kargatu'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'fa', {
acccessKey: 'کلید دستیابی',
advanced: 'پیشرفته',
advisoryContentType: 'نوع محتوای کمکی',
advisoryTitle: 'عنوان کمکی',
anchor: {
toolbar: 'گنجاندن/ویرایش لنگر',
menu: 'ویژگی​های لنگر',
title: 'ویژگی​های لنگر',
name: 'نام لنگر',
errorName: 'لطفا نام لنگر را بنویسید',
remove: 'حذف لنگر'
},
anchorId: 'با شناسهٴ المان',
anchorName: 'با نام لنگر',
charset: 'نویسه​گان منبع پیوند شده',
cssClasses: 'کلاس​های شیوه​نامه(Stylesheet)',
emailAddress: 'نشانی پست الکترونیکی',
emailBody: 'متن پیام',
emailSubject: 'موضوع پیام',
id: 'شناسه',
info: 'اطلاعات پیوند',
langCode: 'جهت​نمای زبان',
langDir: 'جهت​نمای زبان',
langDirLTR: 'چپ به راست (LTR)',
langDirRTL: 'راست به چپ (RTL)',
menu: 'ویرایش پیوند',
name: 'نام',
noAnchors: '(در این سند لنگری دردسترس نیست)',
noEmail: 'لطفا نشانی پست الکترونیکی را بنویسید',
noUrl: 'لطفا URL پیوند را بنویسید',
other: '<سایر>',
popupDependent: 'وابسته (Netscape)',
popupFeatures: 'ویژگی​های پنجرهٴ پاپاپ',
popupFullScreen: 'تمام صفحه (IE)',
popupLeft: 'موقعیت چپ',
popupLocationBar: 'نوار موقعیت',
popupMenuBar: 'نوار منو',
popupResizable: 'قابل تغییر اندازه',
popupScrollBars: 'میله​های پیمایش',
popupStatusBar: 'نوار وضعیت',
popupToolbar: 'نوار ابزار',
popupTop: 'موقعیت بالا',
rel: 'وابستگی',
selectAnchor: 'یک لنگر برگزینید',
styles: 'شیوه (style)',
tabIndex: 'نمایهٴ دسترسی با برگه',
target: 'مقصد',
targetFrame: '<فریم>',
targetFrameName: 'نام فریم مقصد',
targetPopup: '<پنجرهٴ پاپاپ>',
targetPopupName: 'نام پنجرهٴ پاپاپ',
title: 'پیوند',
toAnchor: 'لنگر در همین صفحه',
toEmail: 'پست الکترونیکی',
toUrl: 'URL',
toolbar: 'گنجاندن/ویرایش پیوند',
type: 'نوع پیوند',
unlink: 'برداشتن پیوند',
upload: 'انتقال به سرور'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'fi', {
acccessKey: 'Pikanäppäin',
advanced: 'Lisäominaisuudet',
advisoryContentType: 'Avustava sisällön tyyppi',
advisoryTitle: 'Avustava otsikko',
anchor: {
toolbar: 'Lisää ankkuri/muokkaa ankkuria',
menu: 'Ankkurin ominaisuudet',
title: 'Ankkurin ominaisuudet',
name: 'Nimi',
errorName: 'Ankkurille on kirjoitettava nimi',
remove: 'Poista ankkuri'
},
anchorId: 'Ankkurin ID:n mukaan',
anchorName: 'Ankkurin nimen mukaan',
charset: 'Linkitetty kirjaimisto',
cssClasses: 'Tyyliluokat',
emailAddress: 'Sähköpostiosoite',
emailBody: 'Viesti',
emailSubject: 'Aihe',
id: 'Tunniste',
info: 'Linkin tiedot',
langCode: 'Kielen suunta',
langDir: 'Kielen suunta',
langDirLTR: 'Vasemmalta oikealle (LTR)',
langDirRTL: 'Oikealta vasemmalle (RTL)',
menu: 'Muokkaa linkkiä',
name: 'Nimi',
noAnchors: '(Ei ankkureita tässä dokumentissa)',
noEmail: 'Kirjoita sähköpostiosoite',
noUrl: 'Linkille on kirjoitettava URL',
other: '<muu>',
popupDependent: 'Riippuva (Netscape)',
popupFeatures: 'Popup ikkunan ominaisuudet',
popupFullScreen: 'Täysi ikkuna (IE)',
popupLeft: 'Vasemmalta (px)',
popupLocationBar: 'Osoiterivi',
popupMenuBar: 'Valikkorivi',
popupResizable: 'Venytettävä',
popupScrollBars: 'Vierityspalkit',
popupStatusBar: 'Tilarivi',
popupToolbar: 'Vakiopainikkeet',
popupTop: 'Ylhäältä (px)',
rel: 'Suhde',
selectAnchor: 'Valitse ankkuri',
styles: 'Tyyli',
tabIndex: 'Tabulaattori indeksi',
target: 'Kohde',
targetFrame: '<kehys>',
targetFrameName: 'Kohdekehyksen nimi',
targetPopup: '<popup ikkuna>',
targetPopupName: 'Popup ikkunan nimi',
title: 'Linkki',
toAnchor: 'Ankkuri tässä sivussa',
toEmail: 'Sähköposti',
toUrl: 'Osoite',
toolbar: 'Lisää linkki/muokkaa linkkiä',
type: 'Linkkityyppi',
unlink: 'Poista linkki',
upload: 'Lisää tiedosto'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'fo', {
acccessKey: 'Snarvegisknöttur',
advanced: 'Fjølbroytt',
advisoryContentType: 'Vegleiðandi innihaldsslag',
advisoryTitle: 'Vegleiðandi heiti',
anchor: {
toolbar: 'Ger/broyt marknastein',
menu: 'Eginleikar fyri marknastein',
title: 'Eginleikar fyri marknastein',
name: 'Heiti marknasteinsins',
errorName: 'Vinarliga rita marknasteinsins heiti',
remove: 'Strika marknastein'
},
anchorId: 'Eftir element Id',
anchorName: 'Eftir navni á marknasteini',
charset: 'Atknýtt teknsett',
cssClasses: 'Typografi klassar',
emailAddress: 'Teldupost-adressa',
emailBody: 'Breyðtekstur',
emailSubject: 'Evni',
id: 'Id',
info: 'Tilknýtis upplýsingar',
langCode: 'Tekstkós',
langDir: 'Tekstkós',
langDirLTR: 'Frá vinstru til høgru (LTR)',
langDirRTL: 'Frá høgru til vinstru (RTL)',
menu: 'Broyt tilknýti',
name: 'Navn',
noAnchors: '(Eingir marknasteinar eru í hesum dokumentið)',
noEmail: 'Vinarliga skriva teldupost-adressu',
noUrl: 'Vinarliga skriva tilknýti (URL)',
other: '<annað>',
popupDependent: 'Bundið (Netscape)',
popupFeatures: 'Popup vindeygans víðkaðu eginleikar',
popupFullScreen: 'Fullur skermur (IE)',
popupLeft: 'Frástøða frá vinstru',
popupLocationBar: 'Adressulinja',
popupMenuBar: 'Skrábjálki',
popupResizable: 'Stødd kann broytast',
popupScrollBars: 'Rullibjálki',
popupStatusBar: 'Støðufrágreiðingarbjálki',
popupToolbar: 'Amboðsbjálki',
popupTop: 'Frástøða frá íerva',
rel: 'Relatión',
selectAnchor: 'Vel ein marknastein',
styles: 'Typografi',
tabIndex: 'Tabulator indeks',
target: 'Target',
targetFrame: '<ramma>',
targetFrameName: 'Vís navn vindeygans',
targetPopup: '<popup vindeyga>',
targetPopupName: 'Popup vindeygans navn',
title: 'Tilknýti',
toAnchor: 'Tilknýti til marknastein í tekstinum',
toEmail: 'Teldupostur',
toUrl: 'URL',
toolbar: 'Ger/broyt tilknýti',
type: 'Tilknýtisslag',
unlink: 'Strika tilknýti',
upload: 'Send til ambætaran'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'fr-ca', {
acccessKey: 'Touche d\'accessibilité',
advanced: 'Avancé',
advisoryContentType: 'Type de contenu',
advisoryTitle: 'Description',
anchor: {
toolbar: 'Ancre',
menu: 'Modifier l\'ancre',
title: 'Propriétés de l\'ancre',
name: 'Nom de l\'ancre',
errorName: 'Veuillez saisir le nom de l\'ancre',
remove: 'Supprimer l\'ancre'
},
anchorId: 'Par ID',
anchorName: 'Par nom',
charset: 'Encodage de la cible',
cssClasses: 'Classes CSS',
emailAddress: 'Courriel',
emailBody: 'Corps du message',
emailSubject: 'Objet du message',
id: 'ID',
info: 'Informations sur le lien',
langCode: 'Code de langue',
langDir: 'Sens d\'écriture',
langDirLTR: 'De gauche à droite (LTR)',
langDirRTL: 'De droite à gauche (RTL)',
menu: 'Modifier le lien',
name: 'Nom',
noAnchors: '(Pas d\'ancre disponible dans le document)',
noEmail: 'Veuillez saisir le courriel',
noUrl: 'Veuillez saisir l\'URL',
other: '<autre>',
popupDependent: 'Dépendante (Netscape)',
popupFeatures: 'Caractéristiques de la fenêtre popup',
popupFullScreen: 'Plein écran (IE)',
popupLeft: 'Position de la gauche',
popupLocationBar: 'Barre d\'adresse',
popupMenuBar: 'Barre de menu',
popupResizable: 'Redimensionnable',
popupScrollBars: 'Barres de défilement',
popupStatusBar: 'Barre d\'état',
popupToolbar: 'Barre d\'outils',
popupTop: 'Position à partir du haut',
rel: 'Relation',
selectAnchor: 'Sélectionner une ancre',
styles: 'Style',
tabIndex: 'Ordre de tabulation',
target: 'Destination',
targetFrame: '<Cadre>',
targetFrameName: 'Nom du cadre de destination',
targetPopup: '<fenêtre popup>',
targetPopupName: 'Nom de la fenêtre popup',
title: 'Lien',
toAnchor: 'Ancre dans cette page',
toEmail: 'Courriel',
toUrl: 'URL',
toolbar: 'Lien',
type: 'Type de lien',
unlink: 'Supprimer le lien',
upload: 'Téléverser'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'fr', {
acccessKey: 'Touche d\'accessibilité',
advanced: 'Avancé',
advisoryContentType: 'Type de contenu (ex: text/html)',
advisoryTitle: 'Description (title)',
anchor: {
toolbar: 'Ancre',
menu: 'Editer l\'ancre',
title: 'Propriétés de l\'ancre',
name: 'Nom de l\'ancre',
errorName: 'Veuillez entrer le nom de l\'ancre.',
remove: 'Supprimer l\'ancre'
},
anchorId: 'Par ID d\'élément',
anchorName: 'Par nom d\'ancre',
charset: 'Charset de la cible',
cssClasses: 'Classe CSS',
emailAddress: 'Adresse E-Mail',
emailBody: 'Corps du message',
emailSubject: 'Sujet du message',
id: 'Id',
info: 'Infos sur le lien',
langCode: 'Code de langue',
langDir: 'Sens d\'écriture',
langDirLTR: 'Gauche à droite',
langDirRTL: 'Droite à gauche',
menu: 'Editer le lien',
name: 'Nom',
noAnchors: '(Aucune ancre disponible dans ce document)',
noEmail: 'Veuillez entrer l\'adresse e-mail',
noUrl: 'Veuillez entrer l\'adresse du lien',
other: '<autre>',
popupDependent: 'Dépendante (Netscape)',
popupFeatures: 'Options de la fenêtre popup',
popupFullScreen: 'Plein écran (IE)',
popupLeft: 'Position gauche',
popupLocationBar: 'Barre d\'adresse',
popupMenuBar: 'Barre de menu',
popupResizable: 'Redimensionnable',
popupScrollBars: 'Barres de défilement',
popupStatusBar: 'Barre de status',
popupToolbar: 'Barre d\'outils',
popupTop: 'Position haute',
rel: 'Relation',
selectAnchor: 'Sélectionner l\'ancre',
styles: 'Style',
tabIndex: 'Index de tabulation',
target: 'Cible',
targetFrame: '<cadre>',
targetFrameName: 'Nom du Cadre destination',
targetPopup: '<fenêtre popup>',
targetPopupName: 'Nom de la fenêtre popup',
title: 'Lien',
toAnchor: 'Transformer le lien en ancre dans le texte',
toEmail: 'E-mail',
toUrl: 'URL',
toolbar: 'Lien',
type: 'Type de lien',
unlink: 'Supprimer le lien',
upload: 'Envoyer'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'gl', {
acccessKey: 'Chave de acceso',
advanced: 'Avanzado',
advisoryContentType: 'Tipo de contido informativo',
advisoryTitle: 'Título',
anchor: {
toolbar: 'Ancoraxe',
menu: 'Editar a ancoraxe',
title: 'Propiedades da ancoraxe',
name: 'Nome da ancoraxe',
errorName: 'Escriba o nome da ancoraxe',
remove: 'Retirar a ancoraxe'
},
anchorId: 'Polo ID do elemento',
anchorName: 'Polo nome da ancoraxe',
charset: 'Codificación do recurso ligado',
cssClasses: 'Clases da folla de estilos',
emailAddress: 'Enderezo de correo',
emailBody: 'Corpo da mensaxe',
emailSubject: 'Asunto da mensaxe',
id: 'ID',
info: 'Información da ligazón',
langCode: 'Código do idioma',
langDir: 'Dirección de escritura do idioma',
langDirLTR: 'Esquerda a dereita (LTR)',
langDirRTL: 'Dereita a esquerda (RTL)',
menu: 'Editar a ligazón',
name: 'Nome',
noAnchors: '(Non hai ancoraxes dispoñíbeis no documento)',
noEmail: 'Escriba o enderezo de correo',
noUrl: 'Escriba a ligazón URL',
other: '<outro>',
popupDependent: 'Dependente (Netscape)',
popupFeatures: 'Características da xanela emerxente',
popupFullScreen: 'Pantalla completa (IE)',
popupLeft: 'Posición esquerda',
popupLocationBar: 'Barra de localización',
popupMenuBar: 'Barra do menú',
popupResizable: 'Redimensionábel',
popupScrollBars: 'Barras de desprazamento',
popupStatusBar: 'Barra de estado',
popupToolbar: 'Barra de ferramentas',
popupTop: 'Posición superior',
rel: 'Relación',
selectAnchor: 'Seleccionar unha ancoraxe',
styles: 'Estilo',
tabIndex: 'Índice de tabulación',
target: 'Destino',
targetFrame: '<marco>',
targetFrameName: 'Nome do marco de destino',
targetPopup: '<xanela emerxente>',
targetPopupName: 'Nome da xanela emerxente',
title: 'Ligazón',
toAnchor: 'Ligar coa ancoraxe no testo',
toEmail: 'Correo',
toUrl: 'URL',
toolbar: 'Ligazón',
type: 'Tipo de ligazón',
unlink: 'Eliminar a ligazón',
upload: 'Enviar'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'gu', {
acccessKey: 'ઍક્સેસ કી',
advanced: 'અડ્વાન્સડ',
advisoryContentType: 'મુખ્ય કન્ટેન્ટ પ્રકાર',
advisoryTitle: 'મુખ્ય મથાળું',
anchor: {
toolbar: 'ઍંકર ઇન્સર્ટ/દાખલ કરવી',
menu: 'ઍંકરના ગુણ',
title: 'ઍંકરના ગુણ',
name: 'ઍંકરનું નામ',
errorName: 'ઍંકરનું નામ ટાઈપ કરો',
remove: 'સ્થિર નકરવું'
},
anchorId: 'ઍંકર એલિમન્ટ Id થી પસંદ કરો',
anchorName: 'ઍંકર નામથી પસંદ કરો',
charset: 'લિંક રિસૉર્સ કૅરિક્ટર સેટ',
cssClasses: 'સ્ટાઇલ-શીટ ક્લાસ',
emailAddress: 'ઈ-મેલ સરનામું',
emailBody: 'સંદેશ',
emailSubject: 'ઈ-મેલ વિષય',
id: 'Id',
info: 'લિંક ઇન્ફૉ ટૅબ',
langCode: 'ભાષા લેખવાની પદ્ધતિ',
langDir: 'ભાષા લેખવાની પદ્ધતિ',
langDirLTR: 'ડાબે થી જમણે (LTR)',
langDirRTL: 'જમણે થી ડાબે (RTL)',
menu: ' લિંક એડિટ/માં ફેરફાર કરવો',
name: 'નામ',
noAnchors: '(ડૉક્યુમન્ટમાં ઍંકરની સંખ્યા)',
noEmail: 'ઈ-મેલ સરનામું ટાઇપ કરો',
noUrl: 'લિંક URL ટાઇપ કરો',
other: '<other> <અન્ય>',
popupDependent: 'ડિપેન્ડન્ટ (Netscape)',
popupFeatures: 'પૉપ-અપ વિન્ડો ફીચરસૅ',
popupFullScreen: 'ફુલ સ્ક્રીન (IE)',
popupLeft: 'ડાબી બાજુ',
popupLocationBar: 'લોકેશન બાર',
popupMenuBar: 'મેન્યૂ બાર',
popupResizable: 'રીસાઈઝએબલ',
popupScrollBars: 'સ્ક્રોલ બાર',
popupStatusBar: 'સ્ટૅટસ બાર',
popupToolbar: 'ટૂલ બાર',
popupTop: 'જમણી બાજુ',
rel: 'સંબંધની સ્થિતિ',
selectAnchor: 'ઍંકર પસંદ કરો',
styles: 'સ્ટાઇલ',
tabIndex: 'ટૅબ ઇન્ડેક્સ',
target: 'ટાર્ગેટ/લક્ષ્ય',
targetFrame: '<ફ્રેમ>',
targetFrameName: 'ટાર્ગેટ ફ્રેમ નું નામ',
targetPopup: '<પૉપ-અપ વિન્ડો>',
targetPopupName: 'પૉપ-અપ વિન્ડો નું નામ',
title: 'લિંક',
toAnchor: 'આ પેજનો ઍંકર',
toEmail: 'ઈ-મેલ',
toUrl: 'URL',
toolbar: 'લિંક ઇન્સર્ટ/દાખલ કરવી',
type: 'લિંક પ્રકાર',
unlink: 'લિંક કાઢવી',
upload: 'અપલોડ'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'he', {
acccessKey: 'מקש גישה',
advanced: 'אפשרויות מתקדמות',
advisoryContentType: 'Content Type מוצע',
advisoryTitle: 'כותרת מוצעת',
anchor: {
toolbar: 'הוספת/עריכת נקודת עיגון',
menu: 'מאפייני נקודת עיגון',
title: 'מאפייני נקודת עיגון',
name: 'שם לנקודת עיגון',
errorName: 'יש להקליד שם לנקודת עיגון',
remove: 'מחיקת נקודת עיגון'
},
anchorId: 'עפ"י זיהוי (ID) האלמנט',
anchorName: 'עפ"י שם העוגן',
charset: 'קידוד המשאב המקושר',
cssClasses: 'גיליונות עיצוב קבוצות',
emailAddress: 'כתובת הדוא"ל',
emailBody: 'גוף ההודעה',
emailSubject: 'נושא ההודעה',
id: 'זיהוי (ID)',
info: 'מידע על הקישור',
langCode: 'קוד שפה',
langDir: 'כיוון שפה',
langDirLTR: 'שמאל לימין (LTR)',
langDirRTL: 'ימין לשמאל (RTL)',
menu: 'מאפייני קישור',
name: 'שם',
noAnchors: '(אין עוגנים זמינים בדף)',
noEmail: 'יש להקליד את כתובת הדוא"ל',
noUrl: 'יש להקליד את כתובת הקישור (URL)',
other: '<אחר>',
popupDependent: 'תלוי (Netscape)',
popupFeatures: 'תכונות החלון הקופץ',
popupFullScreen: 'מסך מלא (IE)',
popupLeft: 'מיקום צד שמאל',
popupLocationBar: 'סרגל כתובת',
popupMenuBar: 'סרגל תפריט',
popupResizable: 'שינוי גודל',
popupScrollBars: 'ניתן לגלילה',
popupStatusBar: 'סרגל חיווי',
popupToolbar: 'סרגל הכלים',
popupTop: 'מיקום צד עליון',
rel: 'קשר גומלין',
selectAnchor: 'בחירת עוגן',
styles: 'סגנון',
tabIndex: 'מספר טאב',
target: 'מטרה',
targetFrame: '<מסגרת>',
targetFrameName: 'שם מסגרת היעד',
targetPopup: '<חלון קופץ>',
targetPopupName: 'שם החלון הקופץ',
title: 'קישור',
toAnchor: 'עוגן בעמוד זה',
toEmail: 'דוא"ל',
toUrl: 'כתובת (URL)',
toolbar: 'הוספת/עריכת קישור',
type: 'סוג קישור',
unlink: 'הסרת הקישור',
upload: 'העלאה'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'hi', {
acccessKey: 'ऍक्सॅस की',
advanced: 'ऍड्वान्स्ड',
advisoryContentType: 'परामर्श कन्टॅन्ट प्रकार',
advisoryTitle: 'परामर्श शीर्शक',
anchor: {
toolbar: 'ऐंकर इन्सर्ट/संपादन',
menu: 'ऐंकर प्रॉपर्टीज़',
title: 'ऐंकर प्रॉपर्टीज़',
name: 'ऐंकर का नाम',
errorName: 'ऐंकर का नाम टाइप करें',
remove: 'Remove Anchor'
},
anchorId: 'ऍलीमॅन्ट Id से',
anchorName: 'ऐंकर नाम से',
charset: 'लिंक रिसोर्स करॅक्टर सॅट',
cssClasses: 'स्टाइल-शीट क्लास',
emailAddress: 'ई-मेल पता',
emailBody: 'संदेश',
emailSubject: 'संदेश विषय',
id: 'Id',
info: 'लिंक ',
langCode: 'भाषा लिखने की दिशा',
langDir: 'भाषा लिखने की दिशा',
langDirLTR: 'बायें से दायें (LTR)',
langDirRTL: 'दायें से बायें (RTL)',
menu: 'लिंक संपादन',
name: 'नाम',
noAnchors: '(डॉक्यूमॅन्ट में ऐंकर्स की संख्या)',
noEmail: 'ई-मेल पता टाइप करें',
noUrl: 'लिंक URL टाइप करें',
other: '<अन्य>',
popupDependent: 'डिपेन्डॅन्ट (Netscape)',
popupFeatures: 'पॉप-अप विन्डो फ़ीचर्स',
popupFullScreen: 'फ़ुल स्क्रीन (IE)',
popupLeft: 'बायीं तरफ',
popupLocationBar: 'लोकेशन बार',
popupMenuBar: 'मॅन्यू बार',
popupResizable: 'Resizable', // MISSING
popupScrollBars: 'स्क्रॉल बार',
popupStatusBar: 'स्टेटस बार',
popupToolbar: 'टूल बार',
popupTop: 'दायीं तरफ',
rel: 'Relationship', // MISSING
selectAnchor: 'ऐंकर चुनें',
styles: 'स्टाइल',
tabIndex: 'टैब इन्डॅक्स',
target: 'टार्गेट',
targetFrame: '<फ़्रेम>',
targetFrameName: 'टार्गेट फ़्रेम का नाम',
targetPopup: '<पॉप-अप विन्डो>',
targetPopupName: 'पॉप-अप विन्डो का नाम',
title: 'लिंक',
toAnchor: 'इस पेज का ऐंकर',
toEmail: 'ई-मेल',
toUrl: 'URL',
toolbar: 'लिंक इन्सर्ट/संपादन',
type: 'लिंक प्रकार',
unlink: 'लिंक हटायें',
upload: 'अपलोड'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'hr', {
acccessKey: 'Pristupna tipka',
advanced: 'Napredno',
advisoryContentType: 'Advisory vrsta sadržaja',
advisoryTitle: 'Advisory naslov',
anchor: {
toolbar: 'Ubaci/promijeni sidro',
menu: 'Svojstva sidra',
title: 'Svojstva sidra',
name: 'Ime sidra',
errorName: 'Molimo unesite ime sidra',
remove: 'Ukloni sidro'
},
anchorId: 'Po Id elementa',
anchorName: 'Po nazivu sidra',
charset: 'Kodna stranica povezanih resursa',
cssClasses: 'Stylesheet klase',
emailAddress: 'E-Mail adresa',
emailBody: 'Sadržaj poruke',
emailSubject: 'Naslov',
id: 'Id',
info: 'Link Info',
langCode: 'Smjer jezika',
langDir: 'Smjer jezika',
langDirLTR: 'S lijeva na desno (LTR)',
langDirRTL: 'S desna na lijevo (RTL)',
menu: 'Promijeni link',
name: 'Naziv',
noAnchors: '(Nema dostupnih sidra)',
noEmail: 'Molimo upišite e-mail adresu',
noUrl: 'Molimo upišite URL link',
other: '<drugi>',
popupDependent: 'Ovisno (Netscape)',
popupFeatures: 'Mogućnosti popup prozora',
popupFullScreen: 'Cijeli ekran (IE)',
popupLeft: 'Lijeva pozicija',
popupLocationBar: 'Traka za lokaciju',
popupMenuBar: 'Izborna traka',
popupResizable: 'Promjenjiva veličina',
popupScrollBars: 'Scroll traka',
popupStatusBar: 'Statusna traka',
popupToolbar: 'Traka s alatima',
popupTop: 'Gornja pozicija',
rel: 'Veza',
selectAnchor: 'Odaberi sidro',
styles: 'Stil',
tabIndex: 'Tab Indeks',
target: 'Meta',
targetFrame: '<okvir>',
targetFrameName: 'Ime ciljnog okvira',
targetPopup: '<popup prozor>',
targetPopupName: 'Naziv popup prozora',
title: 'Link',
toAnchor: 'Sidro na ovoj stranici',
toEmail: 'E-Mail',
toUrl: 'URL',
toolbar: 'Ubaci/promijeni link',
type: 'Link vrsta',
unlink: 'Ukloni link',
upload: 'Pošalji'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'hu', {
acccessKey: 'Billentyűkombináció',
advanced: 'További opciók',
advisoryContentType: 'Súgó tartalomtípusa',
advisoryTitle: 'Súgócimke',
anchor: {
toolbar: 'Horgony beillesztése/szerkesztése',
menu: 'Horgony tulajdonságai',
title: 'Horgony tulajdonságai',
name: 'Horgony neve',
errorName: 'Kérem adja meg a horgony nevét',
remove: 'Horgony eltávolítása'
},
anchorId: 'Azonosító szerint',
anchorName: 'Horgony név szerint',
charset: 'Hivatkozott tartalom kódlapja',
cssClasses: 'Stíluskészlet',
emailAddress: 'E-Mail cím',
emailBody: 'Üzenet',
emailSubject: 'Üzenet tárgya',
id: 'Id',
info: 'Alaptulajdonságok',
langCode: 'Írás iránya',
langDir: 'Írás iránya',
langDirLTR: 'Balról jobbra',
langDirRTL: 'Jobbról balra',
menu: 'Hivatkozás módosítása',
name: 'Név',
noAnchors: '(Nincs horgony a dokumentumban)',
noEmail: 'Adja meg az E-Mail címet',
noUrl: 'Adja meg a hivatkozás webcímét',
other: '<más>',
popupDependent: 'Szülőhöz kapcsolt (csak Netscape)',
popupFeatures: 'Felugró ablak jellemzői',
popupFullScreen: 'Teljes képernyő (csak IE)',
popupLeft: 'Bal pozíció',
popupLocationBar: 'Címsor',
popupMenuBar: 'Menü sor',
popupResizable: 'Átméretezés',
popupScrollBars: 'Gördítősáv',
popupStatusBar: 'Állapotsor',
popupToolbar: 'Eszköztár',
popupTop: 'Felső pozíció',
rel: 'Kapcsolat típusa',
selectAnchor: 'Horgony választása',
styles: 'Stílus',
tabIndex: 'Tabulátor index',
target: 'Tartalom megjelenítése',
targetFrame: '<keretben>',
targetFrameName: 'Keret neve',
targetPopup: '<felugró ablakban>',
targetPopupName: 'Felugró ablak neve',
title: 'Hivatkozás tulajdonságai',
toAnchor: 'Horgony az oldalon',
toEmail: 'E-Mail',
toUrl: 'URL',
toolbar: 'Hivatkozás beillesztése/módosítása',
type: 'Hivatkozás típusa',
unlink: 'Hivatkozás törlése',
upload: 'Feltöltés'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'id', {
acccessKey: 'Access Key', // MISSING
advanced: 'Advanced', // MISSING
advisoryContentType: 'Advisory Content Type', // MISSING
advisoryTitle: 'Penasehat Judul',
anchor: {
toolbar: 'Anchor', // MISSING
menu: 'Edit Anchor', // MISSING
title: 'Anchor Properties', // MISSING
name: 'Anchor Name', // MISSING
errorName: 'Please type the anchor name', // MISSING
remove: 'Remove Anchor' // MISSING
},
anchorId: 'By Element Id', // MISSING
anchorName: 'By Anchor Name', // MISSING
charset: 'Linked Resource Charset', // MISSING
cssClasses: 'Kelas Stylesheet',
emailAddress: 'E-Mail Address', // MISSING
emailBody: 'Message Body', // MISSING
emailSubject: 'Message Subject', // MISSING
id: 'Id',
info: 'Link Info', // MISSING
langCode: 'Kode Bahasa',
langDir: 'Arah Bahasa',
langDirLTR: 'Kiri ke Kanan (LTR)',
langDirRTL: 'Kanan ke Kiri (RTL)',
menu: 'Edit Link', // MISSING
name: 'Nama',
noAnchors: '(No anchors available in the document)', // MISSING
noEmail: 'Please type the e-mail address', // MISSING
noUrl: 'Please type the link URL', // MISSING
other: '<other>', // MISSING
popupDependent: 'Dependent (Netscape)', // MISSING
popupFeatures: 'Popup Window Features', // MISSING
popupFullScreen: 'Full Screen (IE)', // MISSING
popupLeft: 'Left Position', // MISSING
popupLocationBar: 'Location Bar', // MISSING
popupMenuBar: 'Menu Bar', // MISSING
popupResizable: 'Resizable', // MISSING
popupScrollBars: 'Scroll Bars', // MISSING
popupStatusBar: 'Status Bar', // MISSING
popupToolbar: 'Toolbar', // MISSING
popupTop: 'Top Position', // MISSING
rel: 'Relationship', // MISSING
selectAnchor: 'Select an Anchor', // MISSING
styles: 'Gaya',
tabIndex: 'Tab Index', // MISSING
target: 'Sasaran',
targetFrame: '<frame>', // MISSING
targetFrameName: 'Target Frame Name', // MISSING
targetPopup: '<popup window>', // MISSING
targetPopupName: 'Popup Window Name', // MISSING
title: 'Tautan',
toAnchor: 'Link to anchor in the text', // MISSING
toEmail: 'E-mail', // MISSING
toUrl: 'URL',
toolbar: 'Tautan',
type: 'Link Type', // MISSING
unlink: 'Unlink', // MISSING
upload: 'Unggah'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'is', {
acccessKey: 'Skammvalshnappur',
advanced: 'Tæknilegt',
advisoryContentType: 'Tegund innihalds',
advisoryTitle: 'Titill',
anchor: {
toolbar: 'Stofna/breyta kaflamerki',
menu: 'Eigindi kaflamerkis',
title: 'Eigindi kaflamerkis',
name: 'Nafn bókamerkis',
errorName: 'Sláðu inn nafn bókamerkis!',
remove: 'Remove Anchor'
},
anchorId: 'Eftir auðkenni einingar',
anchorName: 'Eftir akkerisnafni',
charset: 'Táknróf',
cssClasses: 'Stílsniðsflokkur',
emailAddress: 'Netfang',
emailBody: 'Meginmál',
emailSubject: 'Efni',
id: 'Auðkenni',
info: 'Almennt',
langCode: 'Lesstefna',
langDir: 'Lesstefna',
langDirLTR: 'Frá vinstri til hægri (LTR)',
langDirRTL: 'Frá hægri til vinstri (RTL)',
menu: 'Breyta stiklu',
name: 'Nafn',
noAnchors: '<Engin bókamerki á skrá>',
noEmail: 'Sláðu inn netfang!',
noUrl: 'Sláðu inn veffang stiklunnar!',
other: '<annar>',
popupDependent: 'Háð venslum (Netscape)',
popupFeatures: 'Eigindi sprettiglugga',
popupFullScreen: 'Heilskjár (IE)',
popupLeft: 'Fjarlægð frá vinstri',
popupLocationBar: 'Fanglína',
popupMenuBar: 'Vallína',
popupResizable: 'Resizable', // MISSING
popupScrollBars: 'Skrunstikur',
popupStatusBar: 'Stöðustika',
popupToolbar: 'Verkfærastika',
popupTop: 'Fjarlægð frá efri brún',
rel: 'Relationship', // MISSING
selectAnchor: 'Veldu akkeri',
styles: 'Stíll',
tabIndex: 'Raðnúmer innsláttarreits',
target: 'Mark',
targetFrame: '<rammi>',
targetFrameName: 'Nafn markglugga',
targetPopup: '<sprettigluggi>',
targetPopupName: 'Nafn sprettiglugga',
title: 'Stikla',
toAnchor: 'Bókamerki á þessari síðu',
toEmail: 'Netfang',
toUrl: 'Vefslóð',
toolbar: 'Stofna/breyta stiklu',
type: 'Stikluflokkur',
unlink: 'Fjarlægja stiklu',
upload: 'Senda upp'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'it', {
acccessKey: 'Scorciatoia da tastiera',
advanced: 'Avanzate',
advisoryContentType: 'Tipo della risorsa collegata',
advisoryTitle: 'Titolo',
anchor: {
toolbar: 'Inserisci/Modifica Ancora',
menu: 'Proprietà ancora',
title: 'Proprietà ancora',
name: 'Nome ancora',
errorName: 'Inserici il nome dell\'ancora',
remove: 'Rimuovi l\'ancora'
},
anchorId: 'Per id elemento',
anchorName: 'Per Nome',
charset: 'Set di caretteri della risorsa collegata',
cssClasses: 'Nome classe CSS',
emailAddress: 'Indirizzo E-Mail',
emailBody: 'Corpo del messaggio',
emailSubject: 'Oggetto del messaggio',
id: 'Id',
info: 'Informazioni collegamento',
langCode: 'Direzione scrittura',
langDir: 'Direzione scrittura',
langDirLTR: 'Da Sinistra a Destra (LTR)',
langDirRTL: 'Da Destra a Sinistra (RTL)',
menu: 'Modifica collegamento',
name: 'Nome',
noAnchors: '(Nessuna ancora disponibile nel documento)',
noEmail: 'Devi inserire un\'indirizzo e-mail',
noUrl: 'Devi inserire l\'URL del collegamento',
other: '<altro>',
popupDependent: 'Dipendente (Netscape)',
popupFeatures: 'Caratteristiche finestra popup',
popupFullScreen: 'A tutto schermo (IE)',
popupLeft: 'Posizione da sinistra',
popupLocationBar: 'Barra degli indirizzi',
popupMenuBar: 'Barra del menu',
popupResizable: 'Ridimensionabile',
popupScrollBars: 'Barre di scorrimento',
popupStatusBar: 'Barra di stato',
popupToolbar: 'Barra degli strumenti',
popupTop: 'Posizione dall\'alto',
rel: 'Relazioni',
selectAnchor: 'Scegli Ancora',
styles: 'Stile',
tabIndex: 'Ordine di tabulazione',
target: 'Destinazione',
targetFrame: '<riquadro>',
targetFrameName: 'Nome del riquadro di destinazione',
targetPopup: '<finestra popup>',
targetPopupName: 'Nome finestra popup',
title: 'Collegamento',
toAnchor: 'Ancora nel testo',
toEmail: 'E-Mail',
toUrl: 'URL',
toolbar: 'Collegamento',
type: 'Tipo di Collegamento',
unlink: 'Elimina collegamento',
upload: 'Carica'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'ja', {
acccessKey: 'アクセスキー',
advanced: '高度な設定',
advisoryContentType: 'Content Type属性',
advisoryTitle: 'Title属性',
anchor: {
toolbar: 'アンカー挿入/編集',
menu: 'アンカーの編集',
title: 'アンカーのプロパティ',
name: 'アンカー名',
errorName: 'アンカー名を入力してください。',
remove: 'アンカーを削除'
},
anchorId: 'エレメントID',
anchorName: 'アンカー名',
charset: 'リンク先のcharset',
cssClasses: 'スタイルシートクラス',
emailAddress: 'E-Mail アドレス',
emailBody: '本文',
emailSubject: '件名',
id: 'Id',
info: 'ハイパーリンク情報',
langCode: '言語コード',
langDir: '文字表記の方向',
langDirLTR: '左から右 (LTR)',
langDirRTL: '右から左 (RTL)',
menu: 'リンクを編集',
name: 'Name属性',
noAnchors: '(このドキュメント内にアンカーはありません)',
noEmail: 'メールアドレスを入力してください。',
noUrl: 'リンクURLを入力してください。',
other: '<その他の>',
popupDependent: '開いたウィンドウに連動して閉じる (Netscape)',
popupFeatures: 'ポップアップウィンドウ特徴',
popupFullScreen: '全画面モード(IE)',
popupLeft: '左端からの座標で指定',
popupLocationBar: 'ロケーションバー',
popupMenuBar: 'メニューバー',
popupResizable: 'サイズ可変',
popupScrollBars: 'スクロールバー',
popupStatusBar: 'ステータスバー',
popupToolbar: 'ツールバー',
popupTop: '上端からの座標で指定',
rel: '関連リンク',
selectAnchor: 'アンカーを選択',
styles: 'スタイルシート',
tabIndex: 'タブインデックス',
target: 'ターゲット',
targetFrame: '<フレーム>',
targetFrameName: 'ターゲットのフレーム名',
targetPopup: '<ポップアップウィンドウ>',
targetPopupName: 'ポップアップウィンドウ名',
title: 'ハイパーリンク',
toAnchor: 'ページ内のアンカー',
toEmail: 'E-Mail',
toUrl: 'URL',
toolbar: 'リンク挿入/編集',
type: 'リンクタイプ',
unlink: 'リンクを削除',
upload: 'アップロード'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'ka', {
acccessKey: 'წვდომის ღილაკი',
advanced: 'დაწვრილებით',
advisoryContentType: 'შიგთავსის ტიპი',
advisoryTitle: 'სათაური',
anchor: {
toolbar: 'ღუზა',
menu: 'ღუზის რედაქტირება',
title: 'ღუზის პარამეტრები',
name: 'ღუზუს სახელი',
errorName: 'აკრიფეთ ღუზის სახელი',
remove: 'Remove Anchor'
},
anchorId: 'ელემენტის Id-თ',
anchorName: 'ღუზის სახელით',
charset: 'კოდირება',
cssClasses: 'CSS კლასი',
emailAddress: 'ელფოსტის მისამართები',
emailBody: 'წერილის ტექსტი',
emailSubject: 'წერილის სათაური',
id: 'Id',
info: 'ბმულის ინფორმაცია',
langCode: 'ენის კოდი',
langDir: 'ენის მიმართულება',
langDirLTR: 'მარცხნიდან მარჯვნივ (LTR)',
langDirRTL: 'მარჯვნიდან მარცხნივ (RTL)',
menu: 'ბმულის რედაქტირება',
name: 'სახელი',
noAnchors: '(ამ დოკუმენტში ღუზა არაა)',
noEmail: 'აკრიფეთ ელფოსტის მისამართი',
noUrl: 'აკრიფეთ ბმულის URL',
other: '<სხვა>',
popupDependent: 'დამოკიდებული (Netscape)',
popupFeatures: 'Popup ფანჯრის პარამეტრები',
popupFullScreen: 'მთელი ეკრანი (IE)',
popupLeft: 'მარცხენა პოზიცია',
popupLocationBar: 'ნავიგაციის ზოლი',
popupMenuBar: 'მენიუს ზოლი',
popupResizable: 'ცვალებადი ზომით',
popupScrollBars: 'გადახვევის ზოლები',
popupStatusBar: 'სტატუსის ზოლი',
popupToolbar: 'ხელსაწყოთა ზოლი',
popupTop: 'ზედა პოზიცია',
rel: 'კავშირი',
selectAnchor: 'აირჩიეთ ღუზა',
styles: 'CSS სტილი',
tabIndex: 'Tab-ის ინდექსი',
target: 'გახსნის ადგილი',
targetFrame: '<frame>',
targetFrameName: 'Frame-ის სახელი',
targetPopup: '<popup ფანჯარა>',
targetPopupName: 'Popup ფანჯრის სახელი',
title: 'ბმული',
toAnchor: 'ბმული ტექსტში ღუზაზე',
toEmail: 'ელფოსტა',
toUrl: 'URL',
toolbar: 'ბმული',
type: 'ბმულის ტიპი',
unlink: 'ბმულის მოხსნა',
upload: 'აქაჩვა'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'km', {
acccessKey: 'សោរ​ចូល',
advanced: 'កម្រិត​ខ្ពស់',
advisoryContentType: 'ប្រភេទអត្ថបទ​ប្រឹក្សា',
advisoryTitle: 'ចំណងជើង​ប្រឹក្សា',
anchor: {
toolbar: 'យុថ្កា',
menu: 'កែ​យុថ្កា',
title: 'លក្ខណៈ​យុថ្កា',
name: 'ឈ្មោះ​យុថ្កា',
errorName: 'សូម​បញ្ចូល​ឈ្មោះ​យុថ្កា',
remove: 'ដក​យុថ្កា​ចេញ'
},
anchorId: 'តាម ID ធាតុ',
anchorName: 'តាម​ឈ្មោះ​យុថ្កា',
charset: 'Linked Resource Charset', // MISSING
cssClasses: 'Stylesheet Classes',
emailAddress: 'អាសយដ្ឋាន​អ៊ីមែល',
emailBody: 'តួ​អត្ថបទ',
emailSubject: 'ប្រធានបទ​សារ',
id: 'Id',
info: 'ព័ត៌មាន​ពី​តំណ',
langCode: 'កូដ​ភាសា',
langDir: 'ទិសដៅភាសា',
langDirLTR: 'ពីឆ្វេងទៅស្តាំ(LTR)',
langDirRTL: 'ពីស្តាំទៅឆ្វេង(RTL)',
menu: 'កែ​តំណ',
name: 'ឈ្មោះ',
noAnchors: '(មិន​មាន​យុថ្កា​នៅ​ក្នុង​ឯកសារ​អត្ថថបទ​ទេ)',
noEmail: 'សូម​បញ្ចូល​អាសយដ្ឋាន​អ៊ីមែល',
noUrl: 'សូម​បញ្ចូល​តំណ URL',
other: '<ផ្សេង​ទៀត>',
popupDependent: 'Dependent (Netscape)',
popupFeatures: 'Popup Window Features', // MISSING
popupFullScreen: 'ពេញ​អេក្រង់ (IE)',
popupLeft: 'ទីតាំងខាងឆ្វេង',
popupLocationBar: 'របារ​ទីតាំង',
popupMenuBar: 'របារ​ម៉ឺនុយ',
popupResizable: 'អាច​ប្ដូរ​ទំហំ',
popupScrollBars: 'របារ​រំកិល',
popupStatusBar: 'របារ​ស្ថានភាព',
popupToolbar: 'របារ​ឧបករណ៍',
popupTop: 'ទីតាំង​កំពូល',
rel: 'សម្ពន្ធ​ភាព',
selectAnchor: 'រើស​យក​យុថ្កា​មួយ',
styles: 'ស្ទីល',
tabIndex: 'Tab Index', // MISSING
target: 'គោលដៅ',
targetFrame: '<ស៊ុម>',
targetFrameName: 'ឈ្មោះ​ស៊ុម​ជា​គោល​ដៅ',
targetPopup: '<វីនដូ​ផុស​ឡើង>',
targetPopupName: 'ឈ្មោះ​វីនដូត​ផុស​ឡើង',
title: 'តំណ',
toAnchor: 'ត​ភ្ជាប់​ទៅ​យុថ្កា​ក្នុង​អត្ថបទ',
toEmail: 'អ៊ីមែល',
toUrl: 'URL',
toolbar: 'តំណ',
type: 'ប្រភេទ​តំណ',
unlink: 'ផ្ដាច់​តំណ',
upload: 'ផ្ទុក​ឡើង'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'ko', {
acccessKey: '엑세스 키',
advanced: '자세히',
advisoryContentType: 'Advisory Content Type',
advisoryTitle: 'Advisory Title',
anchor: {
toolbar: '책갈피 삽입/변경',
menu: '책갈피 속성',
title: '책갈피 속성',
name: '책갈피 이름',
errorName: '책갈피 이름을 입력하십시요.',
remove: 'Remove Anchor'
},
anchorId: '책갈피 ID',
anchorName: '책갈피 이름',
charset: 'Linked Resource Charset',
cssClasses: 'Stylesheet Classes',
emailAddress: '이메일 주소',
emailBody: '내용',
emailSubject: '제목',
id: 'ID',
info: '링크 정보',
langCode: '쓰기 방향',
langDir: '쓰기 방향',
langDirLTR: '왼쪽에서 오른쪽 (LTR)',
langDirRTL: '오른쪽에서 왼쪽 (RTL)',
menu: '링크 수정',
name: 'Name',
noAnchors: '(문서에 책갈피가 없습니다.)',
noEmail: '이메일주소를 입력하십시요.',
noUrl: '링크 URL을 입력하십시요.',
other: '<기타>',
popupDependent: 'Dependent (Netscape)',
popupFeatures: '팝업창 설정',
popupFullScreen: '전체화면 (IE)',
popupLeft: '왼쪽 위치',
popupLocationBar: '주소표시줄',
popupMenuBar: '메뉴바',
popupResizable: '크기 조절 가능',
popupScrollBars: '스크롤바',
popupStatusBar: '상태바',
popupToolbar: '툴바',
popupTop: '윗쪽 위치',
rel: '관계',
selectAnchor: '책갈피 선택',
styles: 'Style',
tabIndex: '탭 순서',
target: '타겟',
targetFrame: '<프레임>',
targetFrameName: '타겟 프레임 이름',
targetPopup: '<팝업창>',
targetPopupName: '팝업창 이름',
title: '링크',
toAnchor: '책갈피',
toEmail: '이메일',
toUrl: 'URL',
toolbar: '링크 삽입/변경',
type: '링크 종류',
unlink: '링크 삭제',
upload: '업로드'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'ku', {
acccessKey: 'کلیلی دەستپێگەیشتن',
advanced: 'پێشکەوتوو',
advisoryContentType: 'جۆری ناوەڕۆکی ڕاویژکار',
advisoryTitle: 'ڕاوێژکاری سەردێڕ',
anchor: {
toolbar: 'دانان/چاکسازی لەنگەر',
menu: 'چاکسازی لەنگەر',
title: 'خاسیەتی لەنگەر',
name: 'ناوی لەنگەر',
errorName: 'تکایه ناوی لەنگەر بنووسه',
remove: 'لابردنی لەنگەر'
},
anchorId: 'بەپێی ناسنامەی توخم',
anchorName: 'بەپێی ناوی لەنگەر',
charset: 'بەستەری سەرچاوەی نووسە',
cssClasses: 'شێوازی چینی پەڕه',
emailAddress: 'ناونیشانی ئیمەیل',
emailBody: 'ناوەڕۆکی نامە',
emailSubject: 'بابەتی نامە',
id: 'ناسنامە',
info: 'زانیاری بەستەر',
langCode: 'هێمای زمان',
langDir: 'ئاراستەی زمان',
langDirLTR: 'چەپ بۆ ڕاست (LTR)',
langDirRTL: 'ڕاست بۆ چەپ (RTL)',
menu: 'چاکسازی بەستەر',
name: 'ناو',
noAnchors: '(هیچ جۆرێکی لەنگەر ئامادە نیە لەم پەڕەیه)',
noEmail: 'تکایە ناونیشانی ئیمەیل بنووسە',
noUrl: 'تکایە ناونیشانی بەستەر بنووسە',
other: '<هیتر>',
popupDependent: 'پێوەبەستراو (Netscape)',
popupFeatures: 'خاسیەتی پەنجەرەی سەرهەڵدەر',
popupFullScreen: 'پڕ بەپڕی شاشە (IE)',
popupLeft: 'جێگای چەپ',
popupLocationBar: 'هێڵی ناونیشانی بەستەر',
popupMenuBar: 'هێڵی لیسته',
popupResizable: 'توانای گۆڕینی قەباره',
popupScrollBars: 'هێڵی هاتووچۆپێکردن',
popupStatusBar: 'هێڵی دۆخ',
popupToolbar: 'هێڵی تووڵامراز',
popupTop: 'جێگای سەرەوە',
rel: 'پەیوەندی',
selectAnchor: 'هەڵبژاردنی لەنگەرێك',
styles: 'شێواز',
tabIndex: 'بازدەری تابی ئیندێکس',
target: 'ئامانج',
targetFrame: '<چووارچێوە>',
targetFrameName: 'ناوی ئامانجی چووارچێوە',
targetPopup: '<پەنجەرەی سەرهەڵدەر>',
targetPopupName: 'ناوی پەنجەرەی سەرهەڵدەر',
title: 'بەستەر',
toAnchor: 'بەستەر بۆ لەنگەر له دەق',
toEmail: 'ئیمەیل',
toUrl: 'ناونیشانی بەستەر',
toolbar: 'دانان/ڕێکخستنی بەستەر',
type: 'جۆری بەستەر',
unlink: 'لابردنی بەستەر',
upload: 'بارکردن'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'lt', {
acccessKey: 'Prieigos raktas',
advanced: 'Papildomas',
advisoryContentType: 'Konsultacinio turinio tipas',
advisoryTitle: 'Konsultacinė antraštė',
anchor: {
toolbar: 'Įterpti/modifikuoti žymę',
menu: 'Žymės savybės',
title: 'Žymės savybės',
name: 'Žymės vardas',
errorName: 'Prašome įvesti žymės vardą',
remove: 'Pašalinti žymę'
},
anchorId: 'Pagal žymės Id',
anchorName: 'Pagal žymės vardą',
charset: 'Susietų išteklių simbolių lentelė',
cssClasses: 'Stilių lentelės klasės',
emailAddress: 'El.pašto adresas',
emailBody: 'Žinutės turinys',
emailSubject: 'Žinutės tema',
id: 'Id',
info: 'Nuorodos informacija',
langCode: 'Teksto kryptis',
langDir: 'Teksto kryptis',
langDirLTR: 'Iš kairės į dešinę (LTR)',
langDirRTL: 'Iš dešinės į kairę (RTL)',
menu: 'Taisyti nuorodą',
name: 'Vardas',
noAnchors: '(Šiame dokumente žymių nėra)',
noEmail: 'Prašome įvesti el.pašto adresą',
noUrl: 'Prašome įvesti nuorodos URL',
other: '<kitas>',
popupDependent: 'Priklausomas (Netscape)',
popupFeatures: 'Išskleidžiamo lango savybės',
popupFullScreen: 'Visas ekranas (IE)',
popupLeft: 'Kairė pozicija',
popupLocationBar: 'Adreso juosta',
popupMenuBar: 'Meniu juosta',
popupResizable: 'Kintamas dydis',
popupScrollBars: 'Slinkties juostos',
popupStatusBar: 'Būsenos juosta',
popupToolbar: 'Mygtukų juosta',
popupTop: 'Viršutinė pozicija',
rel: 'Sąsajos',
selectAnchor: 'Pasirinkite žymę',
styles: 'Stilius',
tabIndex: 'Tabuliavimo indeksas',
target: 'Paskirties vieta',
targetFrame: '<kadras>',
targetFrameName: 'Paskirties kadro vardas',
targetPopup: '<išskleidžiamas langas>',
targetPopupName: 'Paskirties lango vardas',
title: 'Nuoroda',
toAnchor: 'Žymė šiame puslapyje',
toEmail: 'El.paštas',
toUrl: 'Nuoroda',
toolbar: 'Įterpti/taisyti nuorodą',
type: 'Nuorodos tipas',
unlink: 'Panaikinti nuorodą',
upload: 'Siųsti'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'lv', {
acccessKey: 'Pieejas taustiņš',
advanced: 'Izvērstais',
advisoryContentType: 'Konsultatīvs satura tips',
advisoryTitle: 'Konsultatīvs virsraksts',
anchor: {
toolbar: 'Ievietot/Labot iezīmi',
menu: 'Labot iezīmi',
title: 'Iezīmes uzstādījumi',
name: 'Iezīmes nosaukums',
errorName: 'Lūdzu norādiet iezīmes nosaukumu',
remove: 'Noņemt iezīmi'
},
anchorId: 'Pēc elementa ID',
anchorName: 'Pēc iezīmes nosaukuma',
charset: 'Pievienotā resursa kodējums',
cssClasses: 'Stilu saraksta klases',
emailAddress: 'E-pasta adrese',
emailBody: 'Ziņas saturs',
emailSubject: 'Ziņas tēma',
id: 'ID',
info: 'Hipersaites informācija',
langCode: 'Valodas kods',
langDir: 'Valodas lasīšanas virziens',
langDirLTR: 'No kreisās uz labo (LTR)',
langDirRTL: 'No labās uz kreiso (RTL)',
menu: 'Labot hipersaiti',
name: 'Nosaukums',
noAnchors: '(Šajā dokumentā nav iezīmju)',
noEmail: 'Lūdzu norādi e-pasta adresi',
noUrl: 'Lūdzu norādi hipersaiti',
other: '<cits>',
popupDependent: 'Atkarīgs (Netscape)',
popupFeatures: 'Uznirstošā loga nosaukums īpašības',
popupFullScreen: 'Pilnā ekrānā (IE)',
popupLeft: 'Kreisā koordināte',
popupLocationBar: 'Atrašanās vietas josla',
popupMenuBar: 'Izvēlnes josla',
popupResizable: 'Mērogojams',
popupScrollBars: 'Ritjoslas',
popupStatusBar: 'Statusa josla',
popupToolbar: 'Rīku josla',
popupTop: 'Augšējā koordināte',
rel: 'Relācija',
selectAnchor: 'Izvēlēties iezīmi',
styles: 'Stils',
tabIndex: 'Ciļņu indekss',
target: 'Mērķis',
targetFrame: '<ietvars>',
targetFrameName: 'Mērķa ietvara nosaukums',
targetPopup: '<uznirstošā logā>',
targetPopupName: 'Uznirstošā loga nosaukums',
title: 'Hipersaite',
toAnchor: 'Iezīme šajā lapā',
toEmail: 'E-pasts',
toUrl: 'Adrese',
toolbar: 'Ievietot/Labot hipersaiti',
type: 'Hipersaites tips',
unlink: 'Noņemt hipersaiti',
upload: 'Augšupielādēt'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'mk', {
acccessKey: 'Access Key', // MISSING
advanced: 'Advanced', // MISSING
advisoryContentType: 'Advisory Content Type', // MISSING
advisoryTitle: 'Advisory Title', // MISSING
anchor: {
toolbar: 'Anchor',
menu: 'Edit Anchor',
title: 'Anchor Properties',
name: 'Anchor Name',
errorName: 'Please type the anchor name',
remove: 'Remove Anchor'
},
anchorId: 'By Element Id', // MISSING
anchorName: 'By Anchor Name', // MISSING
charset: 'Linked Resource Charset', // MISSING
cssClasses: 'Stylesheet Classes', // MISSING
emailAddress: 'E-Mail Address', // MISSING
emailBody: 'Message Body', // MISSING
emailSubject: 'Message Subject', // MISSING
id: 'Id', // MISSING
info: 'Link Info', // MISSING
langCode: 'Language Code', // MISSING
langDir: 'Language Direction', // MISSING
langDirLTR: 'Left to Right (LTR)', // MISSING
langDirRTL: 'Right to Left (RTL)', // MISSING
menu: 'Edit Link', // MISSING
name: 'Name',
noAnchors: '(No anchors available in the document)', // MISSING
noEmail: 'Please type the e-mail address', // MISSING
noUrl: 'Please type the link URL', // MISSING
other: '<other>', // MISSING
popupDependent: 'Dependent (Netscape)', // MISSING
popupFeatures: 'Popup Window Features', // MISSING
popupFullScreen: 'Full Screen (IE)', // MISSING
popupLeft: 'Left Position', // MISSING
popupLocationBar: 'Location Bar', // MISSING
popupMenuBar: 'Menu Bar', // MISSING
popupResizable: 'Resizable', // MISSING
popupScrollBars: 'Scroll Bars', // MISSING
popupStatusBar: 'Status Bar', // MISSING
popupToolbar: 'Toolbar', // MISSING
popupTop: 'Top Position', // MISSING
rel: 'Relationship', // MISSING
selectAnchor: 'Select an Anchor', // MISSING
styles: 'Style', // MISSING
tabIndex: 'Tab Index', // MISSING
target: 'Target', // MISSING
targetFrame: '<frame>', // MISSING
targetFrameName: 'Target Frame Name', // MISSING
targetPopup: '<popup window>', // MISSING
targetPopupName: 'Popup Window Name', // MISSING
title: 'Link', // MISSING
toAnchor: 'Link to anchor in the text', // MISSING
toEmail: 'E-mail', // MISSING
toUrl: 'URL', // MISSING
toolbar: 'Link', // MISSING
type: 'Link Type', // MISSING
unlink: 'Unlink', // MISSING
upload: 'Upload' // MISSING
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'mn', {
acccessKey: 'Холбох түлхүүр',
advanced: 'Нэмэлт',
advisoryContentType: 'Зөвлөлдөх төрлийн агуулга',
advisoryTitle: 'Зөвлөлдөх гарчиг',
anchor: {
toolbar: 'Зангуу',
menu: 'Зангууг болосруулах',
title: 'Зангуугийн шинж чанар',
name: 'Зангуугийн нэр',
errorName: 'Зангуугийн нэрийг оруулна уу',
remove: 'Зангууг устгах'
},
anchorId: 'Элемэнтйн Id нэрээр',
anchorName: 'Зангуугийн нэрээр',
charset: 'Тэмдэгт оноох нөөцөд холбогдсон',
cssClasses: 'Stylesheet классууд',
emailAddress: 'Э-шуудангийн хаяг',
emailBody: 'Зурвасны их бие',
emailSubject: 'Зурвасны гарчиг',
id: 'Id',
info: 'Холбоосын тухай мэдээлэл',
langCode: 'Хэлний код',
langDir: 'Хэлний чиглэл',
langDirLTR: 'Зүүнээс баруун (LTR)',
langDirRTL: 'Баруунаас зүүн (RTL)',
menu: 'Холбоос засварлах',
name: 'Нэр',
noAnchors: '(Баримт бичиг зангуугүй байна)',
noEmail: 'Э-шуудангий хаягаа шивнэ үү',
noUrl: 'Холбоосны URL хаягийг шивнэ үү',
other: '<other>', // MISSING
popupDependent: 'Хамаатай (Netscape)',
popupFeatures: 'Popup цонхны онцлог',
popupFullScreen: 'Цонх дүүргэх (Internet Explorer)',
popupLeft: 'Зүүн байрлал',
popupLocationBar: 'Location хэсэг',
popupMenuBar: 'Цэсний самбар',
popupResizable: 'Resizable', // MISSING
popupScrollBars: 'Скрол хэсэгүүд',
popupStatusBar: 'Статус хэсэг',
popupToolbar: 'Багажны самбар',
popupTop: 'Дээд байрлал',
rel: 'Relationship', // MISSING
selectAnchor: 'Нэг зангууг сонгоно уу',
styles: 'Загвар',
tabIndex: 'Tab индекс',
target: 'Байрлал',
targetFrame: '<Агуулах хүрээ>',
targetFrameName: 'Очих фремын нэр',
targetPopup: '<popup цонх>',
targetPopupName: 'Popup цонхны нэр',
title: 'Холбоос',
toAnchor: 'Энэ бичвэр дэх зангуу руу очих холбоос',
toEmail: 'Э-захиа',
toUrl: 'цахим хуудасны хаяг (URL)',
toolbar: 'Холбоос',
type: 'Линкийн төрөл',
unlink: 'Холбоос авч хаях',
upload: 'Хуулах'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'ms', {
acccessKey: 'Kunci Akses',
advanced: 'Advanced',
advisoryContentType: 'Jenis Kandungan Makluman',
advisoryTitle: 'Tajuk Makluman',
anchor: {
toolbar: 'Masukkan/Sunting Pautan',
menu: 'Ciri-ciri Pautan',
title: 'Ciri-ciri Pautan',
name: 'Nama Pautan',
errorName: 'Sila taip nama pautan',
remove: 'Remove Anchor'
},
anchorId: 'dengan menggunakan ID elemen',
anchorName: 'dengan menggunakan nama pautan',
charset: 'Linked Resource Charset',
cssClasses: 'Kelas-kelas Stylesheet',
emailAddress: 'Alamat E-Mail',
emailBody: 'Isi Kandungan Mesej',
emailSubject: 'Subjek Mesej',
id: 'Id',
info: 'Butiran Sambungan',
langCode: 'Arah Tulisan',
langDir: 'Arah Tulisan',
langDirLTR: 'Kiri ke Kanan (LTR)',
langDirRTL: 'Kanan ke Kiri (RTL)',
menu: 'Sunting Sambungan',
name: 'Nama',
noAnchors: '(Tiada pautan terdapat dalam dokumen ini)',
noEmail: 'Sila taip alamat e-mail',
noUrl: 'Sila taip sambungan URL',
other: '<lain>',
popupDependent: 'Bergantungan (Netscape)',
popupFeatures: 'Ciri Tetingkap Popup',
popupFullScreen: 'Skrin Penuh (IE)',
popupLeft: 'Posisi Kiri',
popupLocationBar: 'Bar Lokasi',
popupMenuBar: 'Bar Menu',
popupResizable: 'Resizable', // MISSING
popupScrollBars: 'Bar-bar skrol',
popupStatusBar: 'Bar Status',
popupToolbar: 'Toolbar',
popupTop: 'Posisi Atas',
rel: 'Relationship', // MISSING
selectAnchor: 'Sila pilih pautan',
styles: 'Stail',
tabIndex: 'Indeks Tab ',
target: 'Sasaran',
targetFrame: '<bingkai>',
targetFrameName: 'Nama Bingkai Sasaran',
targetPopup: '<tetingkap popup>',
targetPopupName: 'Nama Tetingkap Popup',
title: 'Sambungan',
toAnchor: 'Pautan dalam muka surat ini',
toEmail: 'E-Mail',
toUrl: 'URL',
toolbar: 'Masukkan/Sunting Sambungan',
type: 'Jenis Sambungan',
unlink: 'Buang Sambungan',
upload: 'Muat Naik'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'nb', {
acccessKey: 'Aksessknapp',
advanced: 'Avansert',
advisoryContentType: 'Type',
advisoryTitle: 'Tittel',
anchor: {
toolbar: 'Sett inn/Rediger anker',
menu: 'Egenskaper for anker',
title: 'Egenskaper for anker',
name: 'Ankernavn',
errorName: 'Vennligst skriv inn ankernavnet',
remove: 'Fjern anker'
},
anchorId: 'Element etter ID',
anchorName: 'Anker etter navn',
charset: 'Lenket tegnsett',
cssClasses: 'Stilarkklasser',
emailAddress: 'E-postadresse',
emailBody: 'Melding',
emailSubject: 'Meldingsemne',
id: 'Id',
info: 'Lenkeinfo',
langCode: 'Språkkode',
langDir: 'Språkretning',
langDirLTR: 'Venstre til høyre (VTH)',
langDirRTL: 'Høyre til venstre (HTV)',
menu: 'Rediger lenke',
name: 'Navn',
noAnchors: '(Ingen anker i dokumentet)',
noEmail: 'Vennligst skriv inn e-postadressen',
noUrl: 'Vennligst skriv inn lenkens URL',
other: '<annen>',
popupDependent: 'Avhenging (Netscape)',
popupFeatures: 'Egenskaper for popup-vindu',
popupFullScreen: 'Fullskjerm (IE)',
popupLeft: 'Venstre posisjon',
popupLocationBar: 'Adresselinje',
popupMenuBar: 'Menylinje',
popupResizable: 'Skalerbar',
popupScrollBars: 'Scrollbar',
popupStatusBar: 'Statuslinje',
popupToolbar: 'Verktøylinje',
popupTop: 'Topp-posisjon',
rel: 'Relasjon (rel)',
selectAnchor: 'Velg et anker',
styles: 'Stil',
tabIndex: 'Tabindeks',
target: 'Mål',
targetFrame: '<ramme>',
targetFrameName: 'Målramme',
targetPopup: '<popup-vindu>',
targetPopupName: 'Navn på popup-vindu',
title: 'Lenke',
toAnchor: 'Lenke til anker i teksten',
toEmail: 'E-post',
toUrl: 'URL',
toolbar: 'Sett inn/Rediger lenke',
type: 'Lenketype',
unlink: 'Fjern lenke',
upload: 'Last opp'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'nl', {
acccessKey: 'Toegangstoets',
advanced: 'Geavanceerd',
advisoryContentType: 'Aanbevolen content-type',
advisoryTitle: 'Adviserende titel',
anchor: {
toolbar: 'Interne link',
menu: 'Eigenschappen interne link',
title: 'Eigenschappen interne link',
name: 'Naam interne link',
errorName: 'Geef de naam van de interne link op',
remove: 'Interne link verwijderen'
},
anchorId: 'Op kenmerk interne link',
anchorName: 'Op naam interne link',
charset: 'Karakterset van gelinkte bron',
cssClasses: 'Stylesheet-klassen',
emailAddress: 'E-mailadres',
emailBody: 'Inhoud bericht',
emailSubject: 'Onderwerp bericht',
id: 'Id',
info: 'Linkomschrijving',
langCode: 'Taalcode',
langDir: 'Schrijfrichting',
langDirLTR: 'Links naar rechts (LTR)',
langDirRTL: 'Rechts naar links (RTL)',
menu: 'Link wijzigen',
name: 'Naam',
noAnchors: '(Geen interne links in document gevonden)',
noEmail: 'Geef een e-mailadres',
noUrl: 'Geef de link van de URL',
other: '<ander>',
popupDependent: 'Afhankelijk (Netscape)',
popupFeatures: 'Instellingen popupvenster',
popupFullScreen: 'Volledig scherm (IE)',
popupLeft: 'Positie links',
popupLocationBar: 'Locatiemenu',
popupMenuBar: 'Menubalk',
popupResizable: 'Herschaalbaar',
popupScrollBars: 'Schuifbalken',
popupStatusBar: 'Statusbalk',
popupToolbar: 'Werkbalk',
popupTop: 'Positie boven',
rel: 'Relatie',
selectAnchor: 'Kies een interne link',
styles: 'Stijl',
tabIndex: 'Tabvolgorde',
target: 'Doelvenster',
targetFrame: '<frame>',
targetFrameName: 'Naam doelframe',
targetPopup: '<popupvenster>',
targetPopupName: 'Naam popupvenster',
title: 'Link',
toAnchor: 'Interne link in pagina',
toEmail: 'E-mail',
toUrl: 'URL',
toolbar: 'Link invoegen/wijzigen',
type: 'Linktype',
unlink: 'Link verwijderen',
upload: 'Upload'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'no', {
acccessKey: 'Aksessknapp',
advanced: 'Avansert',
advisoryContentType: 'Type',
advisoryTitle: 'Tittel',
anchor: {
toolbar: 'Sett inn/Rediger anker',
menu: 'Egenskaper for anker',
title: 'Egenskaper for anker',
name: 'Ankernavn',
errorName: 'Vennligst skriv inn ankernavnet',
remove: 'Fjern anker'
},
anchorId: 'Element etter ID',
anchorName: 'Anker etter navn',
charset: 'Lenket tegnsett',
cssClasses: 'Stilarkklasser',
emailAddress: 'E-postadresse',
emailBody: 'Melding',
emailSubject: 'Meldingsemne',
id: 'Id',
info: 'Lenkeinfo',
langCode: 'Språkkode',
langDir: 'Språkretning',
langDirLTR: 'Venstre til høyre (VTH)',
langDirRTL: 'Høyre til venstre (HTV)',
menu: 'Rediger lenke',
name: 'Navn',
noAnchors: '(Ingen anker i dokumentet)',
noEmail: 'Vennligst skriv inn e-postadressen',
noUrl: 'Vennligst skriv inn lenkens URL',
other: '<annen>',
popupDependent: 'Avhenging (Netscape)',
popupFeatures: 'Egenskaper for popup-vindu',
popupFullScreen: 'Fullskjerm (IE)',
popupLeft: 'Venstre posisjon',
popupLocationBar: 'Adresselinje',
popupMenuBar: 'Menylinje',
popupResizable: 'Skalerbar',
popupScrollBars: 'Scrollbar',
popupStatusBar: 'Statuslinje',
popupToolbar: 'Verktøylinje',
popupTop: 'Topp-posisjon',
rel: 'Relasjon (rel)',
selectAnchor: 'Velg et anker',
styles: 'Stil',
tabIndex: 'Tabindeks',
target: 'Mål',
targetFrame: '<ramme>',
targetFrameName: 'Målramme',
targetPopup: '<popup-vindu>',
targetPopupName: 'Navn på popup-vindu',
title: 'Lenke',
toAnchor: 'Lenke til anker i teksten',
toEmail: 'E-post',
toUrl: 'URL',
toolbar: 'Sett inn/Rediger lenke',
type: 'Lenketype',
unlink: 'Fjern lenke',
upload: 'Last opp'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'pl', {
acccessKey: 'Klawisz dostępu',
advanced: 'Zaawansowane',
advisoryContentType: 'Typ MIME obiektu docelowego',
advisoryTitle: 'Opis obiektu docelowego',
anchor: {
toolbar: 'Wstaw/edytuj kotwicę',
menu: 'Właściwości kotwicy',
title: 'Właściwości kotwicy',
name: 'Nazwa kotwicy',
errorName: 'Wpisz nazwę kotwicy',
remove: 'Usuń kotwicę'
},
anchorId: 'Wg identyfikatora',
anchorName: 'Wg nazwy',
charset: 'Kodowanie znaków obiektu docelowego',
cssClasses: 'Nazwa klasy CSS',
emailAddress: 'Adres e-mail',
emailBody: 'Treść',
emailSubject: 'Temat',
id: 'Id',
info: 'Informacje ',
langCode: 'Kod języka',
langDir: 'Kierunek tekstu',
langDirLTR: 'Od lewej do prawej (LTR)',
langDirRTL: 'Od prawej do lewej (RTL)',
menu: 'Edytuj odnośnik',
name: 'Nazwa',
noAnchors: '(W dokumencie nie zdefiniowano żadnych kotwic)',
noEmail: 'Podaj adres e-mail',
noUrl: 'Podaj adres URL',
other: '<inny>',
popupDependent: 'Okno zależne (Netscape)',
popupFeatures: 'Właściwości wyskakującego okna',
popupFullScreen: 'Pełny ekran (IE)',
popupLeft: 'Pozycja w poziomie',
popupLocationBar: 'Pasek adresu',
popupMenuBar: 'Pasek menu',
popupResizable: 'Skalowalny',
popupScrollBars: 'Paski przewijania',
popupStatusBar: 'Pasek statusu',
popupToolbar: 'Pasek narzędzi',
popupTop: 'Pozycja w pionie',
rel: 'Relacja',
selectAnchor: 'Wybierz kotwicę',
styles: 'Styl',
tabIndex: 'Indeks kolejności',
target: 'Obiekt docelowy',
targetFrame: '<ramka>',
targetFrameName: 'Nazwa ramki docelowej',
targetPopup: '<wyskakujące okno>',
targetPopupName: 'Nazwa wyskakującego okna',
title: 'Odnośnik',
toAnchor: 'Odnośnik wewnątrz strony (kotwica)',
toEmail: 'Adres e-mail',
toUrl: 'Adres URL',
toolbar: 'Wstaw/edytuj odnośnik',
type: 'Typ odnośnika',
unlink: 'Usuń odnośnik',
upload: 'Wyślij'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'pt-br', {
acccessKey: 'Chave de Acesso',
advanced: 'Avançado',
advisoryContentType: 'Tipo de Conteúdo',
advisoryTitle: 'Título',
anchor: {
toolbar: 'Inserir/Editar Âncora',
menu: 'Formatar Âncora',
title: 'Formatar Âncora',
name: 'Nome da Âncora',
errorName: 'Por favor, digite o nome da âncora',
remove: 'Remover Âncora'
},
anchorId: 'Id da âncora',
anchorName: 'Nome da âncora',
charset: 'Charset do Link',
cssClasses: 'Classe de CSS',
emailAddress: 'Endereço E-Mail',
emailBody: 'Corpo da Mensagem',
emailSubject: 'Assunto da Mensagem',
id: 'Id',
info: 'Informações',
langCode: 'Direção do idioma',
langDir: 'Direção do idioma',
langDirLTR: 'Esquerda para Direita (LTR)',
langDirRTL: 'Direita para Esquerda (RTL)',
menu: 'Editar Link',
name: 'Nome',
noAnchors: '(Não há âncoras no documento)',
noEmail: 'Por favor, digite o endereço de e-mail',
noUrl: 'Por favor, digite o endereço do Link',
other: '<outro>',
popupDependent: 'Dependente (Netscape)',
popupFeatures: 'Propriedades da Janela Pop-up',
popupFullScreen: 'Modo Tela Cheia (IE)',
popupLeft: 'Esquerda',
popupLocationBar: 'Barra de Endereços',
popupMenuBar: 'Barra de Menus',
popupResizable: 'Redimensionável',
popupScrollBars: 'Barras de Rolagem',
popupStatusBar: 'Barra de Status',
popupToolbar: 'Barra de Ferramentas',
popupTop: 'Topo',
rel: 'Tipo de Relação',
selectAnchor: 'Selecione uma âncora',
styles: 'Estilos',
tabIndex: 'Índice de Tabulação',
target: 'Destino',
targetFrame: '<frame>',
targetFrameName: 'Nome do Frame de Destino',
targetPopup: '<janela popup>',
targetPopupName: 'Nome da Janela Pop-up',
title: 'Editar Link',
toAnchor: 'Âncora nesta página',
toEmail: 'E-Mail',
toUrl: 'URL',
toolbar: 'Inserir/Editar Link',
type: 'Tipo de hiperlink',
unlink: 'Remover Link',
upload: 'Enviar ao Servidor'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'pt', {
acccessKey: 'Chave de Acesso',
advanced: 'Avançado',
advisoryContentType: 'Tipo de Conteúdo',
advisoryTitle: 'Título',
anchor: {
toolbar: ' Inserir/Editar Âncora',
menu: 'Propriedades da Âncora',
title: 'Propriedades da Âncora',
name: 'Nome da Âncora',
errorName: 'Por favor, introduza o nome da âncora',
remove: 'Remove Anchor'
},
anchorId: 'Por ID de elemento',
anchorName: 'Por Nome de Referência',
charset: 'Fonte de caracteres vinculado',
cssClasses: 'Classes de Estilo de Folhas Classes',
emailAddress: 'Endereço de E-Mail',
emailBody: 'Corpo da Mensagem',
emailSubject: 'Título de Mensagem',
id: 'ID',
info: 'Informação de Hiperligação',
langCode: 'Orientação de idioma',
langDir: 'Orientação de idioma',
langDirLTR: 'Esquerda à Direita (LTR)',
langDirRTL: 'Direita a Esquerda (RTL)',
menu: 'Editar Hiperligação',
name: 'Nome',
noAnchors: '(Não há referências disponíveis no documento)',
noEmail: 'Por favor introduza o endereço de e-mail',
noUrl: 'Por favor introduza a hiperligação URL',
other: '<outro>',
popupDependent: 'Dependente (Netscape)',
popupFeatures: 'Características de Janela de Popup',
popupFullScreen: 'Janela Completa (IE)',
popupLeft: 'Posição Esquerda',
popupLocationBar: 'Barra de localização',
popupMenuBar: 'Barra de Menu',
popupResizable: 'Redimensionável',
popupScrollBars: 'Barras de deslocamento',
popupStatusBar: 'Barra de Estado',
popupToolbar: 'Barra de Ferramentas',
popupTop: 'Posição Direita',
rel: 'Relação',
selectAnchor: 'Seleccionar una referência',
styles: 'Estilo',
tabIndex: 'Índice de Tubulação',
target: 'Destino',
targetFrame: '<Frame>',
targetFrameName: 'Nome do Frame Destino',
targetPopup: '<Janela de popup>',
targetPopupName: 'Nome da Janela de Popup',
title: 'Hiperligação',
toAnchor: 'Referência a esta página',
toEmail: 'E-Mail',
toUrl: 'URL',
toolbar: 'Inserir/Editar Hiperligação',
type: 'Tipo de Hiperligação',
unlink: 'Eliminar Hiperligação',
upload: 'Carregar'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'ro', {
acccessKey: 'Tasta de acces',
advanced: 'Avansat',
advisoryContentType: 'Tipul consultativ al titlului',
advisoryTitle: 'Titlul consultativ',
anchor: {
toolbar: 'Inserează/Editează ancoră',
menu: 'Proprietăţi ancoră',
title: 'Proprietăţi ancoră',
name: 'Numele ancorei',
errorName: 'Vă rugăm scrieţi numele ancorei',
remove: 'Elimină ancora'
},
anchorId: 'după Id-ul elementului',
anchorName: 'după numele ancorei',
charset: 'Setul de caractere al resursei legate',
cssClasses: 'Clasele cu stilul paginii (CSS)',
emailAddress: 'Adresă de e-mail',
emailBody: 'Opțiuni Meniu Contextual',
emailSubject: 'Subiectul mesajului',
id: 'Id',
info: 'Informaţii despre link (Legătură web)',
langCode: 'Direcţia cuvintelor',
langDir: 'Direcţia cuvintelor',
langDirLTR: 'stânga-dreapta (LTR)',
langDirRTL: 'dreapta-stânga (RTL)',
menu: 'Editează Link',
name: 'Nume',
noAnchors: '(Nicio ancoră disponibilă în document)',
noEmail: 'Vă rugăm să scrieţi adresa de e-mail',
noUrl: 'Vă rugăm să scrieţi URL-ul',
other: '<alt>',
popupDependent: 'Dependent (Netscape)',
popupFeatures: 'Proprietăţile ferestrei popup',
popupFullScreen: 'Tot ecranul (Full Screen)(IE)',
popupLeft: 'Poziţia la stânga',
popupLocationBar: 'Bara de locaţie',
popupMenuBar: 'Bara de meniu',
popupResizable: 'Redimensionabil',
popupScrollBars: 'Bare de derulare',
popupStatusBar: 'Bara de status',
popupToolbar: 'Bara de opţiuni',
popupTop: 'Poziţia la dreapta',
rel: 'Relație',
selectAnchor: 'Selectaţi o ancoră',
styles: 'Stil',
tabIndex: 'Indexul tabului',
target: 'Ţintă (Target)',
targetFrame: '<frame>',
targetFrameName: 'Numele frameului ţintă',
targetPopup: '<fereastra popup>',
targetPopupName: 'Numele ferestrei popup',
title: 'Link (Legătură web)',
toAnchor: 'Ancoră în această pagină',
toEmail: 'E-Mail',
toUrl: 'URL',
toolbar: 'Inserează/Editează link (legătură web)',
type: 'Tipul link-ului (al legăturii web)',
unlink: 'Înlătură link (legătură web)',
upload: 'Încarcă'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'ru', {
acccessKey: 'Клавиша доступа',
advanced: 'Дополнительно',
advisoryContentType: 'Тип содержимого',
advisoryTitle: 'Заголовок',
anchor: {
toolbar: 'Вставить / редактировать якорь',
menu: 'Изменить якорь',
title: 'Свойства якоря',
name: 'Имя якоря',
errorName: 'Пожалуйста, введите имя якоря',
remove: 'Удалить якорь'
},
anchorId: 'По идентификатору',
anchorName: 'По имени',
charset: 'Кодировка ресурса',
cssClasses: 'Классы CSS',
emailAddress: 'Email адрес',
emailBody: 'Текст сообщения',
emailSubject: 'Тема сообщения',
id: 'Идентификатор',
info: 'Информация о ссылке',
langCode: 'Код языка',
langDir: 'Направление текста',
langDirLTR: 'Слева направо (LTR)',
langDirRTL: 'Справа налево (RTL)',
menu: 'Редактировать ссылку',
name: 'Имя',
noAnchors: '(В документе нет ни одного якоря)',
noEmail: 'Пожалуйста, введите email адрес',
noUrl: 'Пожалуйста, введите ссылку',
other: '<другой>',
popupDependent: 'Зависимое (Netscape)',
popupFeatures: 'Параметры всплывающего окна',
popupFullScreen: 'Полноэкранное (IE)',
popupLeft: 'Отступ слева',
popupLocationBar: 'Панель адреса',
popupMenuBar: 'Панель меню',
popupResizable: 'Изменяемый размер',
popupScrollBars: 'Полосы прокрутки',
popupStatusBar: 'Строка состояния',
popupToolbar: 'Панель инструментов',
popupTop: 'Отступ сверху',
rel: 'Отношение',
selectAnchor: 'Выберите якорь',
styles: 'Стиль',
tabIndex: 'Последовательность перехода',
target: 'Цель',
targetFrame: '<фрейм>',
targetFrameName: 'Имя целевого фрейма',
targetPopup: '<всплывающее окно>',
targetPopupName: 'Имя всплывающего окна',
title: 'Ссылка',
toAnchor: 'Ссылка на якорь в тексте',
toEmail: 'Email',
toUrl: 'Ссылка',
toolbar: 'Вставить/Редактировать ссылку',
type: 'Тип ссылки',
unlink: 'Убрать ссылку',
upload: 'Загрузка'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'si', {
acccessKey: 'ප්‍රවේශ යතුර',
advanced: 'දීය',
advisoryContentType: 'උපදේශාත්මක අන්තර්ගත ආකාරය',
advisoryTitle: 'උපදේශාත්මක නාමය',
anchor: {
toolbar: 'ආධාරය',
menu: 'ආධාරය වෙනස් කිරීම',
title: 'ආධාරක ',
name: 'ආධාරකයේ නාමය',
errorName: 'කරුණාකර ආධාරකයේ නාමය ඇතුල් කරන්න',
remove: 'ආධාරකය ඉවත් කිරීම'
},
anchorId: 'By Element Id', // MISSING
anchorName: 'By Anchor Name', // MISSING
charset: 'Linked Resource Charset', // MISSING
cssClasses: 'විලාසපත්‍ර පන්තිය',
emailAddress: 'E-Mail Address', // MISSING
emailBody: 'Message Body', // MISSING
emailSubject: 'Message Subject', // MISSING
id: 'අංකය',
info: 'Link Info', // MISSING
langCode: 'භාෂා කේතය',
langDir: 'භාෂා දිශාව',
langDirLTR: 'වමේසිට දකුණුට',
langDirRTL: 'දකුණේ සිට වමට',
menu: 'Edit Link', // MISSING
name: 'නම',
noAnchors: '(No anchors available in the document)', // MISSING
noEmail: 'Please type the e-mail address', // MISSING
noUrl: 'Please type the link URL', // MISSING
other: '<other>', // MISSING
popupDependent: 'Dependent (Netscape)', // MISSING
popupFeatures: 'Popup Window Features', // MISSING
popupFullScreen: 'Full Screen (IE)', // MISSING
popupLeft: 'Left Position', // MISSING
popupLocationBar: 'Location Bar', // MISSING
popupMenuBar: 'Menu Bar', // MISSING
popupResizable: 'Resizable', // MISSING
popupScrollBars: 'Scroll Bars', // MISSING
popupStatusBar: 'Status Bar', // MISSING
popupToolbar: 'Toolbar', // MISSING
popupTop: 'Top Position', // MISSING
rel: 'Relationship', // MISSING
selectAnchor: 'Select an Anchor', // MISSING
styles: 'විලාසය',
tabIndex: 'Tab Index', // MISSING
target: 'අරමුණ',
targetFrame: '<frame>', // MISSING
targetFrameName: 'Target Frame Name', // MISSING
targetPopup: '<popup window>', // MISSING
targetPopupName: 'Popup Window Name', // MISSING
title: 'සබැඳිය',
toAnchor: 'Link to anchor in the text', // MISSING
toEmail: 'E-mail', // MISSING
toUrl: 'URL',
toolbar: 'සබැඳිය',
type: 'Link Type', // MISSING
unlink: 'Unlink', // MISSING
upload: 'උඩුගතකිරීම'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'sk', {
acccessKey: 'Prístupový kľúč',
advanced: 'Rozšírené',
advisoryContentType: 'Pomocný typ obsahu',
advisoryTitle: 'Pomocný titulok',
anchor: {
toolbar: 'Kotva',
menu: 'Upraviť kotvu',
title: 'Vlastnosti kotvy',
name: 'Názov kotvy',
errorName: 'Zadajte prosím názov kotvy',
remove: 'Odstrániť kotvu'
},
anchorId: 'Podľa Id objektu',
anchorName: 'Podľa mena kotvy',
charset: 'Priradená znaková sada',
cssClasses: 'Triedy štýlu',
emailAddress: 'E-Mailová adresa',
emailBody: 'Telo správy',
emailSubject: 'Predmet správy',
id: 'Id',
info: 'Informácie o odkaze',
langCode: 'Orientácia jazyka',
langDir: 'Orientácia jazyka',
langDirLTR: 'Zľava doprava (LTR)',
langDirRTL: 'Sprava doľava (RTL)',
menu: 'Upraviť odkaz',
name: 'Názov',
noAnchors: '(V dokumente nie sú dostupné žiadne kotvy)',
noEmail: 'Zadajte prosím e-mailovú adresu',
noUrl: 'Zadajte prosím URL odkazu',
other: '<iný>',
popupDependent: 'Závislosť (Netscape)',
popupFeatures: 'Vlastnosti vyskakovacieho okna',
popupFullScreen: 'Celá obrazovka (IE)',
popupLeft: 'Ľavý okraj',
popupLocationBar: 'Panel umiestnenia (location bar)',
popupMenuBar: 'Panel ponuky (menu bar)',
popupResizable: 'Meniteľná veľkosť (resizable)',
popupScrollBars: 'Posuvníky (scroll bars)',
popupStatusBar: 'Stavový riadok (status bar)',
popupToolbar: 'Panel nástrojov (toolbar)',
popupTop: 'Horný okraj',
rel: 'Vzťah (rel)',
selectAnchor: 'Vybrať kotvu',
styles: 'Štýl',
tabIndex: 'Poradie prvku (tab index)',
target: 'Cieľ',
targetFrame: '<rámec>',
targetFrameName: 'Názov rámu cieľa',
targetPopup: '<vyskakovacie okno>',
targetPopupName: 'Názov vyskakovacieho okna',
title: 'Odkaz',
toAnchor: 'Odkaz na kotvu v texte',
toEmail: 'E-mail',
toUrl: 'URL',
toolbar: 'Odkaz',
type: 'Typ odkazu',
unlink: 'Odstrániť odkaz',
upload: 'Nahrať'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'sl', {
acccessKey: 'Dostopno Geslo',
advanced: 'Napredno',
advisoryContentType: 'Predlagani tip vsebine (content-type)',
advisoryTitle: 'Predlagani naslov',
anchor: {
toolbar: 'Vstavi/uredi zaznamek',
menu: 'Lastnosti zaznamka',
title: 'Lastnosti zaznamka',
name: 'Ime zaznamka',
errorName: 'Prosim vnesite ime zaznamka',
remove: 'Remove Anchor'
},
anchorId: 'Po ID-ju elementa',
anchorName: 'Po imenu zaznamka',
charset: 'Kodna tabela povezanega vira',
cssClasses: 'Razred stilne predloge',
emailAddress: 'Elektronski naslov',
emailBody: 'Vsebina sporočila',
emailSubject: 'Predmet sporočila',
id: 'Id',
info: 'Podatki o povezavi',
langCode: 'Smer jezika',
langDir: 'Smer jezika',
langDirLTR: 'Od leve proti desni (LTR)',
langDirRTL: 'Od desne proti levi (RTL)',
menu: 'Uredi povezavo',
name: 'Ime',
noAnchors: '(V tem dokumentu ni zaznamkov)',
noEmail: 'Vnesite elektronski naslov',
noUrl: 'Vnesite URL povezave',
other: '<drug>',
popupDependent: 'Podokno (Netscape)',
popupFeatures: 'Značilnosti pojavnega okna',
popupFullScreen: 'Celozaslonska slika (IE)',
popupLeft: 'Lega levo',
popupLocationBar: 'Naslovna vrstica',
popupMenuBar: 'Menijska vrstica',
popupResizable: 'Spremenljive velikosti',
popupScrollBars: 'Drsniki',
popupStatusBar: 'Vrstica stanja',
popupToolbar: 'Orodna vrstica',
popupTop: 'Lega na vrhu',
rel: 'Odnos',
selectAnchor: 'Izberi zaznamek',
styles: 'Slog',
tabIndex: 'Številka tabulatorja',
target: 'Cilj',
targetFrame: '<okvir>',
targetFrameName: 'Ime ciljnega okvirja',
targetPopup: '<pojavno okno>',
targetPopupName: 'Ime pojavnega okna',
title: 'Povezava',
toAnchor: 'Zaznamek na tej strani',
toEmail: 'Elektronski naslov',
toUrl: 'URL',
toolbar: 'Vstavi/uredi povezavo',
type: 'Vrsta povezave',
unlink: 'Odstrani povezavo',
upload: 'Prenesi'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'sq', {
acccessKey: 'Sipas ID-së së Elementit',
advanced: 'Të përparuara',
advisoryContentType: 'Lloji i Përmbajtjes Këshillimore',
advisoryTitle: 'Titull',
anchor: {
toolbar: 'Spirancë',
menu: 'Redakto Spirancën',
title: 'Anchor Properties', // MISSING
name: 'Emri i Spirancës',
errorName: 'Ju lutemi shkruani emrin e spirancës',
remove: 'Largo Spirancën'
},
anchorId: 'Sipas ID-së së Elementit',
anchorName: 'Sipas Emrit të Spirancës',
charset: 'Seti i Karaktereve të Burimeve të Nëdlidhura',
cssClasses: 'Klasa stili CSS',
emailAddress: 'Posta Elektronike',
emailBody: 'Trupi i Porosisë',
emailSubject: 'Titulli i Porosisë',
id: 'Id',
info: 'Informacione të Nyjes',
langCode: 'Kod gjuhe',
langDir: 'Drejtim teksti',
langDirLTR: 'Nga e majta në të djathë (LTR)',
langDirRTL: 'Nga e djathta në të majtë (RTL)',
menu: 'Redakto Nyjen',
name: 'Emër',
noAnchors: '(Nuk ka asnjë spirancë në dokument)',
noEmail: 'Ju lutemi shkruani postën elektronike',
noUrl: 'Ju lutemi shkruani URL-në e nyjes',
other: '<tjetër>',
popupDependent: 'E Varur (Netscape)',
popupFeatures: 'Karakteristikat e Dritares së Dialogut',
popupFullScreen: 'Ekran i Plotë (IE)',
popupLeft: 'Pozita Majtas',
popupLocationBar: 'Shiriti i Lokacionit',
popupMenuBar: 'Shiriti i Menysë',
popupResizable: 'I ndryshueshëm',
popupScrollBars: 'Scroll Bars', // MISSING
popupStatusBar: 'Shiriti i Statutit',
popupToolbar: 'Shiriti i Mejteve',
popupTop: 'Top Pozita',
rel: 'Marrëdhëniet',
selectAnchor: 'Përzgjidh një Spirancë',
styles: 'Stil',
tabIndex: 'Tab Index', // MISSING
target: 'Objektivi',
targetFrame: '<frame>',
targetFrameName: 'Emri i Kornizës së Synuar',
targetPopup: '<popup window>',
targetPopupName: 'Emri i Dritares së Dialogut',
title: 'Nyja',
toAnchor: 'Lidhu me spirancën në tekst',
toEmail: 'Posta Elektronike',
toUrl: 'URL',
toolbar: 'Nyja',
type: 'Lloji i Nyjes',
unlink: 'Largo Nyjen',
upload: 'Ngarko'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'sr-latn', {
acccessKey: 'Pristupni taster',
advanced: 'Napredni tagovi',
advisoryContentType: 'Advisory vrsta sadržaja',
advisoryTitle: 'Advisory naslov',
anchor: {
toolbar: 'Unesi/izmeni sidro',
menu: 'Osobine sidra',
title: 'Osobine sidra',
name: 'Naziv sidra',
errorName: 'Unesite naziv sidra',
remove: 'Ukloni sidro'
},
anchorId: 'Po Id-u elementa',
anchorName: 'Po nazivu sidra',
charset: 'Linked Resource Charset',
cssClasses: 'Stylesheet klase',
emailAddress: 'E-Mail adresa',
emailBody: 'Sadržaj poruke',
emailSubject: 'Naslov',
id: 'Id',
info: 'Link Info',
langCode: 'Smer jezika',
langDir: 'Smer jezika',
langDirLTR: 'S leva na desno (LTR)',
langDirRTL: 'S desna na levo (RTL)',
menu: 'Izmeni link',
name: 'Naziv',
noAnchors: '(Nema dostupnih sidra)',
noEmail: 'Otkucajte adresu elektronske pote',
noUrl: 'Unesite URL linka',
other: '<остало>',
popupDependent: 'Zavisno (Netscape)',
popupFeatures: 'Mogućnosti popup prozora',
popupFullScreen: 'Prikaz preko celog ekrana (IE)',
popupLeft: 'Od leve ivice ekrana (px)',
popupLocationBar: 'Lokacija',
popupMenuBar: 'Kontekstni meni',
popupResizable: 'Promenljive veličine',
popupScrollBars: 'Scroll bar',
popupStatusBar: 'Statusna linija',
popupToolbar: 'Toolbar',
popupTop: 'Od vrha ekrana (px)',
rel: 'Odnos',
selectAnchor: 'Odaberi sidro',
styles: 'Stil',
tabIndex: 'Tab indeks',
target: 'Meta',
targetFrame: '<okvir>',
targetFrameName: 'Naziv odredišnog frejma',
targetPopup: '<popup prozor>',
targetPopupName: 'Naziv popup prozora',
title: 'Link',
toAnchor: 'Sidro na ovoj stranici',
toEmail: 'E-Mail',
toUrl: 'URL',
toolbar: 'Unesi/izmeni link',
type: 'Vrsta linka',
unlink: 'Ukloni link',
upload: 'Pošalji'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'sr', {
acccessKey: 'Приступни тастер',
advanced: 'Напредни тагови',
advisoryContentType: 'Advisory врста садржаја',
advisoryTitle: 'Advisory наслов',
anchor: {
toolbar: 'Унеси/измени сидро',
menu: 'Особине сидра',
title: 'Особине сидра',
name: 'Име сидра',
errorName: 'Молимо Вас да унесете име сидра',
remove: 'Remove Anchor'
},
anchorId: 'Пo Ид-jу елемента',
anchorName: 'По називу сидра',
charset: 'Linked Resource Charset',
cssClasses: 'Stylesheet класе',
emailAddress: 'Адреса електронске поште',
emailBody: 'Садржај поруке',
emailSubject: 'Наслов',
id: 'Ид',
info: 'Линк инфо',
langCode: 'Смер језика',
langDir: 'Смер језика',
langDirLTR: 'С лева на десно (LTR)',
langDirRTL: 'С десна на лево (RTL)',
menu: 'Промени линк',
name: 'Назив',
noAnchors: '(Нема доступних сидра)',
noEmail: 'Откуцајте адресу електронске поште',
noUrl: 'Унесите УРЛ линка',
other: '<друго>',
popupDependent: 'Зависно (Netscape)',
popupFeatures: 'Могућности искачућег прозора',
popupFullScreen: 'Приказ преко целог екрана (ИE)',
popupLeft: 'Од леве ивице екрана (пиксела)',
popupLocationBar: 'Локација',
popupMenuBar: 'Контекстни мени',
popupResizable: 'Величина се мења',
popupScrollBars: 'Скрол бар',
popupStatusBar: 'Статусна линија',
popupToolbar: 'Toolbar',
popupTop: 'Од врха екрана (пиксела)',
rel: 'Однос',
selectAnchor: 'Одабери сидро',
styles: 'Стил',
tabIndex: 'Таб индекс',
target: 'Meтa',
targetFrame: '<оквир>',
targetFrameName: 'Назив одредишног фрејма',
targetPopup: '<искачући прозор>',
targetPopupName: 'Назив искачућег прозора',
title: 'Линк',
toAnchor: 'Сидро на овој страници',
toEmail: 'Eлектронска пошта',
toUrl: 'УРЛ',
toolbar: 'Унеси/измени линк',
type: 'Врста линка',
unlink: 'Уклони линк',
upload: 'Пошаљи'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'sv', {
acccessKey: 'Behörighetsnyckel',
advanced: 'Avancerad',
advisoryContentType: 'Innehållstyp',
advisoryTitle: 'Titel',
anchor: {
toolbar: 'Infoga/Redigera ankarlänk',
menu: 'Egenskaper för ankarlänk',
title: 'Egenskaper för ankarlänk',
name: 'Ankarnamn',
errorName: 'Var god ange ett ankarnamn',
remove: 'Radera ankare'
},
anchorId: 'Efter element-id',
anchorName: 'Efter ankarnamn',
charset: 'Teckenuppställning',
cssClasses: 'Stilmall',
emailAddress: 'E-postadress',
emailBody: 'Innehåll',
emailSubject: 'Ämne',
id: 'Id',
info: 'Länkinformation',
langCode: 'Språkkod',
langDir: 'Språkriktning',
langDirLTR: 'Vänster till höger (VTH)',
langDirRTL: 'Höger till vänster (HTV)',
menu: 'Redigera länk',
name: 'Namn',
noAnchors: '(Inga ankare kunde hittas)',
noEmail: 'Var god ange e-postadress',
noUrl: 'Var god ange länkens URL',
other: '<annan>',
popupDependent: 'Beroende (endast Netscape)',
popupFeatures: 'Popup-fönstrets egenskaper',
popupFullScreen: 'Helskärm (endast IE)',
popupLeft: 'Position från vänster',
popupLocationBar: 'Adressfält',
popupMenuBar: 'Menyfält',
popupResizable: 'Resizable',
popupScrollBars: 'Scrolllista',
popupStatusBar: 'Statusfält',
popupToolbar: 'Verktygsfält',
popupTop: 'Position från sidans topp',
rel: 'Förhållande',
selectAnchor: 'Välj ett ankare',
styles: 'Stilmall',
tabIndex: 'Tabindex',
target: 'Mål',
targetFrame: '<ram>',
targetFrameName: 'Målets ramnamn',
targetPopup: '<popup-fönster>',
targetPopupName: 'Popup-fönstrets namn',
title: 'Länk',
toAnchor: 'Länk till ankare i texten',
toEmail: 'E-post',
toUrl: 'URL',
toolbar: 'Infoga/Redigera länk',
type: 'Länktyp',
unlink: 'Radera länk',
upload: 'Ladda upp'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'th', {
acccessKey: 'แอคเซส คีย์',
advanced: 'ขั้นสูง',
advisoryContentType: 'ชนิดของคำเกริ่นนำ',
advisoryTitle: 'คำเกริ่นนำ',
anchor: {
toolbar: 'แทรก/แก้ไข Anchor',
menu: 'รายละเอียด Anchor',
title: 'รายละเอียด Anchor',
name: 'ชื่อ Anchor',
errorName: 'กรุณาระบุชื่อของ Anchor',
remove: 'Remove Anchor'
},
anchorId: 'ไอดี',
anchorName: 'ชื่อ',
charset: 'ลิงค์เชื่อมโยงไปยังชุดตัวอักษร',
cssClasses: 'คลาสของไฟล์กำหนดลักษณะการแสดงผล',
emailAddress: 'อีเมล์ (E-Mail)',
emailBody: 'ข้อความ',
emailSubject: 'หัวเรื่อง',
id: 'ไอดี',
info: 'รายละเอียด',
langCode: 'การเขียน-อ่านภาษา',
langDir: 'การเขียน-อ่านภาษา',
langDirLTR: 'จากซ้ายไปขวา (LTR)',
langDirRTL: 'จากขวามาซ้าย (RTL)',
menu: 'แก้ไข ลิงค์',
name: 'ชื่อ',
noAnchors: '(ยังไม่มีจุดเชื่อมโยงภายในหน้าเอกสารนี้)',
noEmail: 'กรุณาระบุอีเมล์ (E-mail)',
noUrl: 'กรุณาระบุที่อยู่อ้างอิงออนไลน์ (URL)',
other: '<อื่น ๆ>',
popupDependent: 'แสดงเต็มหน้าจอ (Netscape)',
popupFeatures: 'คุณสมบัติของหน้าจอเล็ก (Pop-up)',
popupFullScreen: 'แสดงเต็มหน้าจอ (IE5.5++ เท่านั้น)',
popupLeft: 'พิกัดซ้าย (Left Position)',
popupLocationBar: 'แสดงที่อยู่ของไฟล์',
popupMenuBar: 'แสดงแถบเมนู',
popupResizable: 'สามารถปรับขนาดได้',
popupScrollBars: 'แสดงแถบเลื่อน',
popupStatusBar: 'แสดงแถบสถานะ',
popupToolbar: 'แสดงแถบเครื่องมือ',
popupTop: 'พิกัดบน (Top Position)',
rel: 'ความสัมพันธ์',
selectAnchor: 'ระบุข้อมูลของจุดเชื่อมโยง (Anchor)',
styles: 'ลักษณะการแสดงผล',
tabIndex: 'ลำดับของ แท็บ',
target: 'การเปิดหน้าลิงค์',
targetFrame: '<เปิดในเฟรม>',
targetFrameName: 'ชื่อทาร์เก็ตเฟรม',
targetPopup: '<เปิดหน้าจอเล็ก (Pop-up)>',
targetPopupName: 'ระบุชื่อหน้าจอเล็ก (Pop-up)',
title: 'ลิงค์เชื่อมโยงเว็บ อีเมล์ รูปภาพ หรือไฟล์อื่นๆ',
toAnchor: 'จุดเชื่อมโยง (Anchor)',
toEmail: 'ส่งอีเมล์ (E-Mail)',
toUrl: 'ที่อยู่อ้างอิง URL',
toolbar: 'แทรก/แก้ไข ลิงค์',
type: 'ประเภทของลิงค์',
unlink: 'ลบ ลิงค์',
upload: 'อัพโหลดไฟล์'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'tr', {
acccessKey: 'Erişim Tuşu',
advanced: 'Gelişmiş',
advisoryContentType: 'Danışma İçerik Türü',
advisoryTitle: 'Danışma Başlığı',
anchor: {
toolbar: 'Bağlantı Ekle/Düzenle',
menu: 'Bağlantı Özellikleri',
title: 'Bağlantı Özellikleri',
name: 'Bağlantı Adı',
errorName: 'Lütfen bağlantı için ad giriniz',
remove: 'Bağlantıyı Kaldır'
},
anchorId: 'Eleman Kimlik Numarası ile',
anchorName: 'Bağlantı Adı ile',
charset: 'Bağlı Kaynak Karakter Gurubu',
cssClasses: 'Biçem Sayfası Sınıfları',
emailAddress: 'E-Posta Adresi',
emailBody: 'İleti Gövdesi',
emailSubject: 'İleti Konusu',
id: 'Id',
info: 'Link Bilgisi',
langCode: 'Dil Yönü',
langDir: 'Dil Yönü',
langDirLTR: 'Soldan Sağa (LTR)',
langDirRTL: 'Sağdan Sola (RTL)',
menu: 'Link Düzenle',
name: 'Ad',
noAnchors: '(Bu belgede hiç çapa yok)',
noEmail: 'Lütfen E-posta adresini yazın',
noUrl: 'Lütfen Link URL\'sini yazın',
other: '<diğer>',
popupDependent: 'Bağımlı (Netscape)',
popupFeatures: 'Yeni Açılan Pencere Özellikleri',
popupFullScreen: 'Tam Ekran (IE)',
popupLeft: 'Sola Göre Konum',
popupLocationBar: 'Yer Çubuğu',
popupMenuBar: 'Menü Çubuğu',
popupResizable: 'Resizable',
popupScrollBars: 'Kaydırma Çubukları',
popupStatusBar: 'Durum Çubuğu',
popupToolbar: 'Araç Çubuğu',
popupTop: 'Yukarıya Göre Konum',
rel: 'İlişki',
selectAnchor: 'Bağlantı Seç',
styles: 'Biçem',
tabIndex: 'Sekme İndeksi',
target: 'Hedef',
targetFrame: '<çerçeve>',
targetFrameName: 'Hedef Çerçeve Adı',
targetPopup: '<yeni açılan pencere>',
targetPopupName: 'Yeni Açılan Pencere Adı',
title: 'Link',
toAnchor: 'Bu sayfada çapa',
toEmail: 'E-Posta',
toUrl: 'URL',
toolbar: 'Link Ekle/Düzenle',
type: 'Link Türü',
unlink: 'Köprü Kaldır',
upload: 'Karşıya Yükle'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'ug', {
acccessKey: 'زىيارەت كۇنۇپكا',
advanced: 'ئالىي',
advisoryContentType: 'مەزمۇن تىپى',
advisoryTitle: 'ماۋزۇ',
anchor: {
toolbar: 'لەڭگەرلىك نۇقتا ئۇلانمىسى قىستۇر/تەھرىرلە',
menu: 'لەڭگەرلىك نۇقتا ئۇلانما خاسلىقى',
title: 'لەڭگەرلىك نۇقتا ئۇلانما خاسلىقى',
name: 'لەڭگەرلىك نۇقتا ئاتى',
errorName: 'لەڭگەرلىك نۇقتا ئاتىنى كىرگۈزۈڭ',
remove: 'لەڭگەرلىك نۇقتا ئۆچۈر'
},
anchorId: 'لەڭگەرلىك نۇقتا ID سى بويىچە',
anchorName: 'لەڭگەرلىك نۇقتا ئاتى بويىچە',
charset: 'ھەرپ كودلىنىشى',
cssClasses: 'ئۇسلۇب خىلى ئاتى',
emailAddress: 'ئادرېس',
emailBody: 'مەزمۇن',
emailSubject: 'ماۋزۇ',
id: 'ID',
info: 'ئۇلانما ئۇچۇرى',
langCode: 'تىل كودى',
langDir: 'تىل يۆنىلىشى',
langDirLTR: 'سولدىن ئوڭغا (LTR)',
langDirRTL: 'ئوڭدىن سولغا (RTL)',
menu: 'ئۇلانما تەھرىر',
name: 'ئات',
noAnchors: '(بۇ پۈتۈكتە ئىشلەتكىلى بولىدىغان لەڭگەرلىك نۇقتا يوق)',
noEmail: 'ئېلخەت ئادرېسىنى كىرگۈزۈڭ',
noUrl: 'ئۇلانما ئادرېسىنى كىرگۈزۈڭ',
other: '‹باشقا›',
popupDependent: 'تەۋە (NS)',
popupFeatures: 'قاڭقىش كۆزنەك خاسلىقى',
popupFullScreen: 'پۈتۈن ئېكران (IE)',
popupLeft: 'سول',
popupLocationBar: 'ئادرېس بالداق',
popupMenuBar: 'تىزىملىك بالداق',
popupResizable: 'چوڭلۇقى ئۆزگەرتىشچان',
popupScrollBars: 'دومىلىما سۈرگۈچ',
popupStatusBar: 'ھالەت بالداق',
popupToolbar: 'قورال بالداق',
popupTop: 'ئوڭ',
rel: 'باغلىنىش',
selectAnchor: 'بىر لەڭگەرلىك نۇقتا تاللاڭ',
styles: 'قۇر ئىچىدىكى ئۇسلۇبى',
tabIndex: 'Tab تەرتىپى',
target: 'نىشان',
targetFrame: '‹كاندۇك›',
targetFrameName: 'نىشان كاندۇك ئاتى',
targetPopup: '‹قاڭقىش كۆزنەك›',
targetPopupName: 'قاڭقىش كۆزنەك ئاتى',
title: 'ئۇلانما',
toAnchor: 'بەت ئىچىدىكى لەڭگەرلىك نۇقتا ئۇلانمىسى',
toEmail: 'ئېلخەت',
toUrl: 'ئادرېس',
toolbar: 'ئۇلانما قىستۇر/تەھرىرلە',
type: 'ئۇلانما تىپى',
unlink: 'ئۇلانما بىكار قىل',
upload: 'يۈكلە'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'uk', {
acccessKey: 'Гаряча клавіша',
advanced: 'Додаткове',
advisoryContentType: 'Тип вмісту',
advisoryTitle: 'Заголовок',
anchor: {
toolbar: 'Вставити/Редагувати якір',
menu: 'Властивості якоря',
title: 'Властивості якоря',
name: 'Ім\'я якоря',
errorName: 'Будь ласка, вкажіть ім\'я якоря',
remove: 'Прибрати якір'
},
anchorId: 'За ідентифікатором елементу',
anchorName: 'За ім\'ям елементу',
charset: 'Кодування',
cssClasses: 'Клас CSS',
emailAddress: 'Адреса ел. пошти',
emailBody: 'Тіло повідомлення',
emailSubject: 'Тема листа',
id: 'Ідентифікатор',
info: 'Інформація посилання',
langCode: 'Код мови',
langDir: 'Напрямок мови',
langDirLTR: 'Зліва направо (LTR)',
langDirRTL: 'Справа наліво (RTL)',
menu: 'Вставити посилання',
name: 'Ім\'я',
noAnchors: '(В цьому документі немає якорів)',
noEmail: 'Будь ласка, вкажіть адрес ел. пошти',
noUrl: 'Будь ласка, вкажіть URL посилання',
other: '<інший>',
popupDependent: 'Залежний (Netscape)',
popupFeatures: 'Властивості випливаючого вікна',
popupFullScreen: 'Повний екран (IE)',
popupLeft: 'Позиція зліва',
popupLocationBar: 'Панель локації',
popupMenuBar: 'Панель меню',
popupResizable: 'Масштабоване',
popupScrollBars: 'Стрічки прокрутки',
popupStatusBar: 'Рядок статусу',
popupToolbar: 'Панель інструментів',
popupTop: 'Позиція зверху',
rel: 'Зв\'язок',
selectAnchor: 'Оберіть якір',
styles: 'Стиль CSS',
tabIndex: 'Послідовність переходу',
target: 'Ціль',
targetFrame: '<фрейм>',
targetFrameName: 'Ім\'я цільового фрейму',
targetPopup: '<випливаюче вікно>',
targetPopupName: 'Ім\'я випливаючого вікна',
title: 'Посилання',
toAnchor: 'Якір на цю сторінку',
toEmail: 'Ел. пошта',
toUrl: 'URL',
toolbar: 'Вставити/Редагувати посилання',
type: 'Тип посилання',
unlink: 'Видалити посилання',
upload: 'Надіслати'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'vi', {
acccessKey: 'Phím hỗ trợ truy cập',
advanced: 'Mở rộng',
advisoryContentType: 'Nội dung hướng dẫn',
advisoryTitle: 'Nhan đề hướng dẫn',
anchor: {
toolbar: 'Chèn/Sửa điểm neo',
menu: 'Thuộc tính điểm neo',
title: 'Thuộc tính điểm neo',
name: 'Tên của điểm neo',
errorName: 'Hãy nhập vào tên của điểm neo',
remove: 'Xóa neo'
},
anchorId: 'Theo định danh thành phần',
anchorName: 'Theo tên điểm neo',
charset: 'Bảng mã của tài nguyên được liên kết đến',
cssClasses: 'Lớp Stylesheet',
emailAddress: 'Thư điện tử',
emailBody: 'Nội dung thông điệp',
emailSubject: 'Tiêu đề thông điệp',
id: 'Định danh',
info: 'Thông tin liên kết',
langCode: 'Mã ngôn ngữ',
langDir: 'Hướng ngôn ngữ',
langDirLTR: 'Trái sang phải (LTR)',
langDirRTL: 'Phải sang trái (RTL)',
menu: 'Sửa liên kết',
name: 'Tên',
noAnchors: '(Không có điểm neo nào trong tài liệu)',
noEmail: 'Hãy đưa vào địa chỉ thư điện tử',
noUrl: 'Hãy đưa vào đường dẫn liên kết (URL)',
other: '<khác>',
popupDependent: 'Phụ thuộc (Netscape)',
popupFeatures: 'Đặc điểm của cửa sổ Popup',
popupFullScreen: 'Toàn màn hình (IE)',
popupLeft: 'Vị trí bên trái',
popupLocationBar: 'Thanh vị trí',
popupMenuBar: 'Thanh Menu',
popupResizable: 'Có thể thay đổi kích cỡ',
popupScrollBars: 'Thanh cuộn',
popupStatusBar: 'Thanh trạng thái',
popupToolbar: 'Thanh công cụ',
popupTop: 'Vị trí phía trên',
rel: 'Quan hệ',
selectAnchor: 'Chọn một điểm neo',
styles: 'Kiểu (style)',
tabIndex: 'Chỉ số của Tab',
target: 'Đích',
targetFrame: '<khung>',
targetFrameName: 'Tên khung đích',
targetPopup: '<cửa sổ popup>',
targetPopupName: 'Tên cửa sổ Popup',
title: 'Liên kết',
toAnchor: 'Neo trong trang này',
toEmail: 'Thư điện tử',
toUrl: 'URL',
toolbar: 'Chèn/Sửa liên kết',
type: 'Kiểu liên kết',
unlink: 'Xoá liên kết',
upload: 'Tải lên'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'zh-cn', {
acccessKey: '访问键',
advanced: '高级',
advisoryContentType: '内容类型',
advisoryTitle: '标题',
anchor: {
toolbar: '插入/编辑锚点链接',
menu: '锚点链接属性',
title: '锚点链接属性',
name: '锚点名称',
errorName: '请输入锚点名称',
remove: '删除锚点'
},
anchorId: '按锚点 ID',
anchorName: '按锚点名称',
charset: '字符编码',
cssClasses: '样式类名称',
emailAddress: '地址',
emailBody: '内容',
emailSubject: '主题',
id: 'ID',
info: '超链接信息',
langCode: '语言代码',
langDir: '语言方向',
langDirLTR: '从左到右 (LTR)',
langDirRTL: '从右到左 (RTL)',
menu: '编辑超链接',
name: '名称',
noAnchors: '(此文档没有可用的锚点)',
noEmail: '请输入电子邮件地址',
noUrl: '请输入超链接地址',
other: '<其他>',
popupDependent: '依附 (NS)',
popupFeatures: '弹出窗口属性',
popupFullScreen: '全屏 (IE)',
popupLeft: '左',
popupLocationBar: '地址栏',
popupMenuBar: '菜单栏',
popupResizable: '可缩放',
popupScrollBars: '滚动条',
popupStatusBar: '状态栏',
popupToolbar: '工具栏',
popupTop: '右',
rel: '关联',
selectAnchor: '选择一个锚点',
styles: '行内样式',
tabIndex: 'Tab 键次序',
target: '目标',
targetFrame: '<框架>',
targetFrameName: '目标框架名称',
targetPopup: '<弹出窗口>',
targetPopupName: '弹出窗口名称',
title: '超链接',
toAnchor: '页内锚点链接',
toEmail: '电子邮件',
toUrl: '地址',
toolbar: '插入/编辑超链接',
type: '超链接类型',
unlink: '取消超链接',
upload: '上传'
} );

View File

@@ -0,0 +1,65 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'link', 'zh', {
acccessKey: '便捷鍵',
advanced: '進階',
advisoryContentType: '建議內容類型',
advisoryTitle: '標題',
anchor: {
toolbar: '錨點',
menu: '編輯錨點',
title: '錨點內容',
name: '錨點名稱',
errorName: '請輸入錨點名稱',
remove: '移除錨點'
},
anchorId: '依元件編號',
anchorName: '依錨點名稱',
charset: '連結資源的字元集',
cssClasses: '樣式表類別',
emailAddress: '電子郵件地址',
emailBody: '郵件本文',
emailSubject: '郵件主旨',
id: 'ID',
info: '連結資訊',
langCode: '語言碼',
langDir: '語言方向',
langDirLTR: '由左至右 (LTR)',
langDirRTL: '由右至左 (RTL)',
menu: '編輯連結',
name: '名稱',
noAnchors: '(本文件中無可用之錨點)',
noEmail: '請輸入電子郵件',
noUrl: '請輸入連結 URL',
other: '<其他>',
popupDependent: '獨立 (Netscape)',
popupFeatures: '快顯視窗功能',
popupFullScreen: '全螢幕 (IE)',
popupLeft: '左側位置',
popupLocationBar: '位置列',
popupMenuBar: '功能表列',
popupResizable: '可調大小',
popupScrollBars: '捲軸',
popupStatusBar: '狀態列',
popupToolbar: '工具列',
popupTop: '頂端位置',
rel: '關係',
selectAnchor: '選取一個錨點',
styles: '樣式',
tabIndex: '定位順序',
target: '目標',
targetFrame: '<框架>',
targetFrameName: '目標框架名稱',
targetPopup: '<快顯視窗>',
targetPopupName: '快顯視窗名稱',
title: '連結',
toAnchor: '文字中的錨點連結',
toEmail: '電子郵件',
toUrl: '網址',
toolbar: '連結',
type: '連結類型',
unlink: '取消連結',
upload: '上傳'
} );

View File

@@ -1,373 +1,422 @@
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.add( 'link',
{
requires : [ 'fakeobjects', 'dialog' ],
init : function( editor )
{
// Add the link and unlink buttons.
editor.addCommand( 'link', new CKEDITOR.dialogCommand( 'link' ) );
editor.addCommand( 'anchor', new CKEDITOR.dialogCommand( 'anchor' ) );
editor.addCommand( 'unlink', new CKEDITOR.unlinkCommand() );
editor.addCommand( 'removeAnchor', new CKEDITOR.removeAnchorCommand() );
editor.ui.addButton( 'Link',
{
label : editor.lang.link.toolbar,
command : 'link'
} );
editor.ui.addButton( 'Unlink',
{
label : editor.lang.unlink,
command : 'unlink'
} );
editor.ui.addButton( 'Anchor',
{
label : editor.lang.anchor.toolbar,
command : 'anchor'
} );
CKEDITOR.dialog.add( 'link', this.path + 'dialogs/link.js' );
CKEDITOR.dialog.add( 'anchor', this.path + 'dialogs/anchor.js' );
// Add the CSS styles for anchor placeholders.
var side = ( editor.lang.dir == 'rtl' ? 'right' : 'left' );
var basicCss =
'background:url(' + CKEDITOR.getUrl( this.path + 'images/anchor.gif' ) + ') no-repeat ' + side + ' center;' +
'border:1px dotted #00f;';
editor.addCss(
'a.cke_anchor,a.cke_anchor_empty' +
// IE6 breaks with the following selectors.
( ( CKEDITOR.env.ie && CKEDITOR.env.version < 7 ) ? '' :
',a[name],a[data-cke-saved-name]' ) +
'{' +
basicCss +
'padding-' + side + ':18px;' +
// Show the arrow cursor for the anchor image (FF at least).
'cursor:auto;' +
'}' +
( CKEDITOR.env.ie ? (
'a.cke_anchor_empty' +
'{' +
// Make empty anchor selectable on IE.
'display:inline-block;' +
'}'
) : '' ) +
'img.cke_anchor' +
'{' +
basicCss +
'width:16px;' +
'min-height:15px;' +
// The default line-height on IE.
'height:1.15em;' +
// Opera works better with "middle" (even if not perfect)
'vertical-align:' + ( CKEDITOR.env.opera ? 'middle' : 'text-bottom' ) + ';' +
'}');
// Register selection change handler for the unlink button.
editor.on( 'selectionChange', function( evt )
{
if ( editor.readOnly )
return;
/*
* Despite our initial hope, document.queryCommandEnabled() does not work
* for this in Firefox. So we must detect the state by element paths.
*/
var command = editor.getCommand( 'unlink' ),
element = evt.data.path.lastElement && evt.data.path.lastElement.getAscendant( 'a', true );
if ( element && element.getName() == 'a' && element.getAttribute( 'href' ) && element.getChildCount() )
command.setState( CKEDITOR.TRISTATE_OFF );
else
command.setState( CKEDITOR.TRISTATE_DISABLED );
} );
editor.on( 'doubleclick', function( evt )
{
var element = CKEDITOR.plugins.link.getSelectedLink( editor ) || evt.data.element;
if ( !element.isReadOnly() )
{
if ( element.is( 'a' ) )
{
evt.data.dialog = ( element.getAttribute( 'name' ) && ( !element.getAttribute( 'href' ) || !element.getChildCount() ) ) ? 'anchor' : 'link';
editor.getSelection().selectElement( element );
}
else if ( CKEDITOR.plugins.link.tryRestoreFakeAnchor( editor, element ) )
evt.data.dialog = 'anchor';
}
});
// If the "menu" plugin is loaded, register the menu items.
if ( editor.addMenuItems )
{
editor.addMenuItems(
{
anchor :
{
label : editor.lang.anchor.menu,
command : 'anchor',
group : 'anchor',
order : 1
},
removeAnchor :
{
label : editor.lang.anchor.remove,
command : 'removeAnchor',
group : 'anchor',
order : 5
},
link :
{
label : editor.lang.link.menu,
command : 'link',
group : 'link',
order : 1
},
unlink :
{
label : editor.lang.unlink,
command : 'unlink',
group : 'link',
order : 5
}
});
}
// If the "contextmenu" plugin is loaded, register the listeners.
if ( editor.contextMenu )
{
editor.contextMenu.addListener( function( element, selection )
{
if ( !element || element.isReadOnly() )
return null;
var anchor = CKEDITOR.plugins.link.tryRestoreFakeAnchor( editor, element );
if ( !anchor && !( anchor = CKEDITOR.plugins.link.getSelectedLink( editor ) ) )
return null;
var menu = {};
if ( anchor.getAttribute( 'href' ) && anchor.getChildCount() )
menu = { link : CKEDITOR.TRISTATE_OFF, unlink : CKEDITOR.TRISTATE_OFF };
if ( anchor && anchor.hasAttribute( 'name' ) )
menu.anchor = menu.removeAnchor = CKEDITOR.TRISTATE_OFF;
return menu;
});
}
},
afterInit : function( editor )
{
// Register a filter to displaying placeholders after mode change.
var dataProcessor = editor.dataProcessor,
dataFilter = dataProcessor && dataProcessor.dataFilter,
htmlFilter = dataProcessor && dataProcessor.htmlFilter,
pathFilters = editor._.elementsPath && editor._.elementsPath.filters;
if ( dataFilter )
{
dataFilter.addRules(
{
elements :
{
a : function( element )
{
var attributes = element.attributes;
if ( !attributes.name )
return null;
var isEmpty = !element.children.length;
if ( CKEDITOR.plugins.link.synAnchorSelector )
{
// IE needs a specific class name to be applied
// to the anchors, for appropriate styling.
var ieClass = isEmpty ? 'cke_anchor_empty' : 'cke_anchor';
var cls = attributes[ 'class' ];
if ( attributes.name && ( !cls || cls.indexOf( ieClass ) < 0 ) )
attributes[ 'class' ] = ( cls || '' ) + ' ' + ieClass;
if ( isEmpty && CKEDITOR.plugins.link.emptyAnchorFix )
{
attributes.contenteditable = 'false';
attributes[ 'data-cke-editable' ] = 1;
}
}
else if ( CKEDITOR.plugins.link.fakeAnchor && isEmpty )
return editor.createFakeParserElement( element, 'cke_anchor', 'anchor' );
return null;
}
}
});
}
if ( CKEDITOR.plugins.link.emptyAnchorFix && htmlFilter )
{
htmlFilter.addRules(
{
elements :
{
a : function( element )
{
delete element.attributes.contenteditable;
}
}
});
}
if ( pathFilters )
{
pathFilters.push( function( element, name )
{
if ( name == 'a' )
{
if ( CKEDITOR.plugins.link.tryRestoreFakeAnchor( editor, element ) ||
( element.getAttribute( 'name' ) && ( !element.getAttribute( 'href' ) || !element.getChildCount() ) ) )
{
return 'anchor';
}
}
});
}
}
} );
CKEDITOR.plugins.link =
{
/**
* Get the surrounding link element of current selection.
* @param editor
* @example CKEDITOR.plugins.link.getSelectedLink( editor );
* @since 3.2.1
* The following selection will all return the link element.
* <pre>
* <a href="#">li^nk</a>
* <a href="#">[link]</a>
* text[<a href="#">link]</a>
* <a href="#">li[nk</a>]
* [<b><a href="#">li]nk</a></b>]
* [<a href="#"><b>li]nk</b></a>
* </pre>
*/
getSelectedLink : function( editor )
{
try
{
var selection = editor.getSelection();
if ( selection.getType() == CKEDITOR.SELECTION_ELEMENT )
{
var selectedElement = selection.getSelectedElement();
if ( selectedElement.is( 'a' ) )
return selectedElement;
}
var range = selection.getRanges( true )[ 0 ];
range.shrink( CKEDITOR.SHRINK_TEXT );
var root = range.getCommonAncestor();
return root.getAscendant( 'a', true );
}
catch( e ) { return null; }
},
// Opera and WebKit don't make it possible to select empty anchors. Fake
// elements must be used for them.
fakeAnchor : CKEDITOR.env.opera || CKEDITOR.env.webkit,
// For browsers that don't support CSS3 a[name]:empty(), note IE9 is included because of #7783.
synAnchorSelector : CKEDITOR.env.ie,
// For browsers that have editing issue with empty anchor.
emptyAnchorFix : CKEDITOR.env.ie && CKEDITOR.env.version < 8,
tryRestoreFakeAnchor : function( editor, element )
{
if ( element && element.data( 'cke-real-element-type' ) && element.data( 'cke-real-element-type' ) == 'anchor' )
{
var link = editor.restoreRealElement( element );
if ( link.data( 'cke-saved-name' ) )
return link;
}
}
};
CKEDITOR.unlinkCommand = function(){};
CKEDITOR.unlinkCommand.prototype =
{
/** @ignore */
exec : function( editor )
{
/*
* execCommand( 'unlink', ... ) in Firefox leaves behind <span> tags at where
* the <a> was, so again we have to remove the link ourselves. (See #430)
*
* TODO: Use the style system when it's complete. Let's use execCommand()
* as a stopgap solution for now.
*/
var selection = editor.getSelection(),
bookmarks = selection.createBookmarks(),
ranges = selection.getRanges(),
rangeRoot,
element;
for ( var i = 0 ; i < ranges.length ; i++ )
{
rangeRoot = ranges[i].getCommonAncestor( true );
element = rangeRoot.getAscendant( 'a', true );
if ( !element )
continue;
ranges[i].selectNodeContents( element );
}
selection.selectRanges( ranges );
editor.document.$.execCommand( 'unlink', false, null );
selection.selectBookmarks( bookmarks );
},
startDisabled : true
};
CKEDITOR.removeAnchorCommand = function(){};
CKEDITOR.removeAnchorCommand.prototype =
{
/** @ignore */
exec : function( editor )
{
var sel = editor.getSelection(),
bms = sel.createBookmarks(),
anchor;
if ( sel && ( anchor = sel.getSelectedElement() ) && ( CKEDITOR.plugins.link.fakeAnchor && !anchor.getChildCount() ? CKEDITOR.plugins.link.tryRestoreFakeAnchor( editor, anchor ) : anchor.is( 'a' ) ) )
anchor.remove( 1 );
else
{
if ( ( anchor = CKEDITOR.plugins.link.getSelectedLink( editor ) ) )
{
if ( anchor.hasAttribute( 'href' ) )
{
anchor.removeAttributes( { name : 1, 'data-cke-saved-name' : 1 } );
anchor.removeClass( 'cke_anchor' );
}
else
anchor.remove( 1 );
}
}
sel.selectBookmarks( bms );
}
};
CKEDITOR.tools.extend( CKEDITOR.config,
{
linkShowAdvancedTab : true,
linkShowTargetTab : true
} );
/**
* @license Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.add( 'link', {
requires: 'dialog,fakeobjects',
lang: 'af,ar,bg,bn,bs,ca,cs,cy,da,de,el,en,en-au,en-ca,en-gb,eo,es,et,eu,fa,fi,fo,fr,fr-ca,gl,gu,he,hi,hr,hu,id,is,it,ja,ka,km,ko,ku,lt,lv,mk,mn,ms,nb,nl,no,pl,pt,pt-br,ro,ru,si,sk,sl,sq,sr,sr-latn,sv,th,tr,ug,uk,vi,zh,zh-cn', // %REMOVE_LINE_CORE%
icons: 'anchor,anchor-rtl,link,unlink', // %REMOVE_LINE_CORE%
hidpi: true, // %REMOVE_LINE_CORE%
onLoad: function() {
// Add the CSS styles for anchor placeholders.
var iconPath = CKEDITOR.getUrl( this.path + 'images' + ( CKEDITOR.env.hidpi ? '/hidpi' : '' ) + '/anchor.png' ),
baseStyle = 'background:url(' + iconPath + ') no-repeat %1 center;border:1px dotted #00f;background-size:16px;';
var template = '.%2 a.cke_anchor,' +
'.%2 a.cke_anchor_empty' +
',.cke_editable.%2 a[name]' +
',.cke_editable.%2 a[data-cke-saved-name]' +
'{' +
baseStyle +
'padding-%1:18px;' +
// Show the arrow cursor for the anchor image (FF at least).
'cursor:auto;' +
'}' +
( CKEDITOR.plugins.link.synAnchorSelector ? ( 'a.cke_anchor_empty' +
'{' +
// Make empty anchor selectable on IE.
'display:inline-block;' +
// IE11 doesn't display empty inline-block elements.
( CKEDITOR.env.ie && CKEDITOR.env.version > 10 ? 'min-height:16px;vertical-align:middle' : '' ) +
'}'
) : '' ) +
'.%2 img.cke_anchor' +
'{' +
baseStyle +
'width:16px;' +
'min-height:15px;' +
// The default line-height on IE.
'height:1.15em;' +
// Opera works better with "middle" (even if not perfect)
'vertical-align:' + ( CKEDITOR.env.opera ? 'middle' : 'text-bottom' ) + ';' +
'}';
// Styles with contents direction awareness.
function cssWithDir( dir ) {
return template.replace( /%1/g, dir == 'rtl' ? 'right' : 'left' ).replace( /%2/g, 'cke_contents_' + dir );
}
CKEDITOR.addCss( cssWithDir( 'ltr' ) + cssWithDir( 'rtl' ) );
},
init: function( editor ) {
var allowed = 'a[!href]',
required = 'a[href]';
if ( CKEDITOR.dialog.isTabEnabled( editor, 'link', 'advanced' ) )
allowed = allowed.replace( ']', ',accesskey,charset,dir,id,lang,name,rel,tabindex,title,type]{*}(*)' );
if ( CKEDITOR.dialog.isTabEnabled( editor, 'link', 'target' ) )
allowed = allowed.replace( ']', ',target,onclick]' );
// Add the link and unlink buttons.
editor.addCommand( 'link', new CKEDITOR.dialogCommand( 'link', {
allowedContent: allowed,
requiredContent: required
} ) );
editor.addCommand( 'anchor', new CKEDITOR.dialogCommand( 'anchor', {
allowedContent: 'a[!name,id]',
requiredContent: 'a[name]'
} ) );
editor.addCommand( 'unlink', new CKEDITOR.unlinkCommand() );
editor.addCommand( 'removeAnchor', new CKEDITOR.removeAnchorCommand() );
editor.setKeystroke( CKEDITOR.CTRL + 76 /*L*/, 'link' );
if ( editor.ui.addButton ) {
editor.ui.addButton( 'Link', {
label: editor.lang.link.toolbar,
command: 'link',
toolbar: 'links,10'
} );
editor.ui.addButton( 'Unlink', {
label: editor.lang.link.unlink,
command: 'unlink',
toolbar: 'links,20'
} );
editor.ui.addButton( 'Anchor', {
label: editor.lang.link.anchor.toolbar,
command: 'anchor',
toolbar: 'links,30'
} );
}
CKEDITOR.dialog.add( 'link', this.path + 'dialogs/link.js' );
CKEDITOR.dialog.add( 'anchor', this.path + 'dialogs/anchor.js' );
editor.on( 'doubleclick', function( evt ) {
var element = CKEDITOR.plugins.link.getSelectedLink( editor ) || evt.data.element;
if ( !element.isReadOnly() ) {
if ( element.is( 'a' ) ) {
evt.data.dialog = ( element.getAttribute( 'name' ) && ( !element.getAttribute( 'href' ) || !element.getChildCount() ) ) ? 'anchor' : 'link';
editor.getSelection().selectElement( element );
} else if ( CKEDITOR.plugins.link.tryRestoreFakeAnchor( editor, element ) )
evt.data.dialog = 'anchor';
}
} );
// If the "menu" plugin is loaded, register the menu items.
if ( editor.addMenuItems ) {
editor.addMenuItems( {
anchor: {
label: editor.lang.link.anchor.menu,
command: 'anchor',
group: 'anchor',
order: 1
},
removeAnchor: {
label: editor.lang.link.anchor.remove,
command: 'removeAnchor',
group: 'anchor',
order: 5
},
link: {
label: editor.lang.link.menu,
command: 'link',
group: 'link',
order: 1
},
unlink: {
label: editor.lang.link.unlink,
command: 'unlink',
group: 'link',
order: 5
}
} );
}
// If the "contextmenu" plugin is loaded, register the listeners.
if ( editor.contextMenu ) {
editor.contextMenu.addListener( function( element, selection ) {
if ( !element || element.isReadOnly() )
return null;
var anchor = CKEDITOR.plugins.link.tryRestoreFakeAnchor( editor, element );
if ( !anchor && !( anchor = CKEDITOR.plugins.link.getSelectedLink( editor ) ) )
return null;
var menu = {};
if ( anchor.getAttribute( 'href' ) && anchor.getChildCount() )
menu = { link: CKEDITOR.TRISTATE_OFF, unlink: CKEDITOR.TRISTATE_OFF };
if ( anchor && anchor.hasAttribute( 'name' ) )
menu.anchor = menu.removeAnchor = CKEDITOR.TRISTATE_OFF;
return menu;
} );
}
},
afterInit: function( editor ) {
// Register a filter to displaying placeholders after mode change.
var dataProcessor = editor.dataProcessor,
dataFilter = dataProcessor && dataProcessor.dataFilter,
htmlFilter = dataProcessor && dataProcessor.htmlFilter,
pathFilters = editor._.elementsPath && editor._.elementsPath.filters;
if ( dataFilter ) {
dataFilter.addRules( {
elements: {
a: function( element ) {
var attributes = element.attributes;
if ( !attributes.name )
return null;
var isEmpty = !element.children.length;
if ( CKEDITOR.plugins.link.synAnchorSelector ) {
// IE needs a specific class name to be applied
// to the anchors, for appropriate styling.
var ieClass = isEmpty ? 'cke_anchor_empty' : 'cke_anchor';
var cls = attributes[ 'class' ];
if ( attributes.name && ( !cls || cls.indexOf( ieClass ) < 0 ) )
attributes[ 'class' ] = ( cls || '' ) + ' ' + ieClass;
if ( isEmpty && CKEDITOR.plugins.link.emptyAnchorFix ) {
attributes.contenteditable = 'false';
attributes[ 'data-cke-editable' ] = 1;
}
} else if ( CKEDITOR.plugins.link.fakeAnchor && isEmpty )
return editor.createFakeParserElement( element, 'cke_anchor', 'anchor' );
return null;
}
}
} );
}
if ( CKEDITOR.plugins.link.emptyAnchorFix && htmlFilter ) {
htmlFilter.addRules( {
elements: {
a: function( element ) {
delete element.attributes.contenteditable;
}
}
} );
}
if ( pathFilters ) {
pathFilters.push( function( element, name ) {
if ( name == 'a' ) {
if ( CKEDITOR.plugins.link.tryRestoreFakeAnchor( editor, element ) || ( element.getAttribute( 'name' ) && ( !element.getAttribute( 'href' ) || !element.getChildCount() ) ) )
return 'anchor';
}
} );
}
}
} );
/**
* Set of Link plugin helpers.
*
* @class
* @singleton
*/
CKEDITOR.plugins.link = {
/**
* Get the surrounding link element of the current selection.
*
* CKEDITOR.plugins.link.getSelectedLink( editor );
*
* // The following selections will all return the link element.
*
* <a href="#">li^nk</a>
* <a href="#">[link]</a>
* text[<a href="#">link]</a>
* <a href="#">li[nk</a>]
* [<b><a href="#">li]nk</a></b>]
* [<a href="#"><b>li]nk</b></a>
*
* @since 3.2.1
* @param {CKEDITOR.editor} editor
*/
getSelectedLink: function( editor ) {
var selection = editor.getSelection();
var selectedElement = selection.getSelectedElement();
if ( selectedElement && selectedElement.is( 'a' ) )
return selectedElement;
var range = selection.getRanges()[ 0 ];
if ( range ) {
range.shrink( CKEDITOR.SHRINK_TEXT );
return editor.elementPath( range.getCommonAncestor() ).contains( 'a', 1 );
}
return null;
},
/**
* Collects anchors available in the editor (i.e. used by the Link plugin).
* Note that the scope of search is different for inline (the "global" document) and
* classic (`iframe`-based) editors (the "inner" document).
*
* @since 4.3.3
* @param {CKEDITOR.editor} editor
* @returns {CKEDITOR.dom.element[]} An array of anchor elements.
*/
getEditorAnchors: function( editor ) {
var editable = editor.editable(),
// The scope of search for anchors is the entire document for inline editors
// and editor's editable for classic editor/divarea (#11359).
scope = ( editable.isInline() && !editor.plugins.divarea ) ? editor.document : editable,
links = scope.getElementsByTag( 'a' ),
anchors = [],
i = 0,
item;
// Retrieve all anchors within the scope.
while ( ( item = links.getItem( i++ ) ) ) {
if ( item.data( 'cke-saved-name' ) || item.hasAttribute( 'name' ) ) {
anchors.push( {
name: item.data( 'cke-saved-name' ) || item.getAttribute( 'name' ),
id: item.getAttribute( 'id' )
} );
}
}
// Retrieve all "fake anchors" within the scope.
if ( this.fakeAnchor ) {
var imgs = scope.getElementsByTag( 'img' );
i = 0;
while ( ( item = imgs.getItem( i++ ) ) ) {
if ( ( item = this.tryRestoreFakeAnchor( editor, item ) ) ) {
anchors.push( {
name: item.getAttribute( 'name' ),
id: item.getAttribute( 'id' )
} );
}
}
}
return anchors;
},
/**
* Opera and WebKit do not make it possible to select empty anchors. Fake
* elements must be used for them.
*
* @readonly
* @property {Boolean}
*/
fakeAnchor: CKEDITOR.env.opera || CKEDITOR.env.webkit,
/**
* For browsers that do not support CSS3 `a[name]:empty()`. Note that IE9 is included because of #7783.
*
* @readonly
* @property {Boolean}
*/
synAnchorSelector: CKEDITOR.env.ie,
/**
* For browsers that have editing issues with an empty anchor.
*
* @readonly
* @property {Boolean}
*/
emptyAnchorFix: CKEDITOR.env.ie && CKEDITOR.env.version < 8,
/**
* Returns an element representing a real anchor restored from a fake anchor.
*
* @param {CKEDITOR.editor} editor
* @param {CKEDITOR.dom.element} element
* @returns {CKEDITOR.dom.element} Restored anchor element or nothing if the
* passed element was not a fake anchor.
*/
tryRestoreFakeAnchor: function( editor, element ) {
if ( element && element.data( 'cke-real-element-type' ) && element.data( 'cke-real-element-type' ) == 'anchor' ) {
var link = editor.restoreRealElement( element );
if ( link.data( 'cke-saved-name' ) )
return link;
}
}
};
// TODO Much probably there's no need to expose these as public objects.
CKEDITOR.unlinkCommand = function() {};
CKEDITOR.unlinkCommand.prototype = {
exec: function( editor ) {
var style = new CKEDITOR.style( { element: 'a', type: CKEDITOR.STYLE_INLINE, alwaysRemoveElement: 1 } );
editor.removeStyle( style );
},
refresh: function( editor, path ) {
// Despite our initial hope, document.queryCommandEnabled() does not work
// for this in Firefox. So we must detect the state by element paths.
var element = path.lastElement && path.lastElement.getAscendant( 'a', true );
if ( element && element.getName() == 'a' && element.getAttribute( 'href' ) && element.getChildCount() )
this.setState( CKEDITOR.TRISTATE_OFF );
else
this.setState( CKEDITOR.TRISTATE_DISABLED );
},
contextSensitive: 1,
startDisabled: 1,
requiredContent: 'a[href]'
};
CKEDITOR.removeAnchorCommand = function() {};
CKEDITOR.removeAnchorCommand.prototype = {
exec: function( editor ) {
var sel = editor.getSelection(),
bms = sel.createBookmarks(),
anchor;
if ( sel && ( anchor = sel.getSelectedElement() ) && ( CKEDITOR.plugins.link.fakeAnchor && !anchor.getChildCount() ? CKEDITOR.plugins.link.tryRestoreFakeAnchor( editor, anchor ) : anchor.is( 'a' ) ) )
anchor.remove( 1 );
else {
if ( ( anchor = CKEDITOR.plugins.link.getSelectedLink( editor ) ) ) {
if ( anchor.hasAttribute( 'href' ) ) {
anchor.removeAttributes( { name: 1, 'data-cke-saved-name': 1 } );
anchor.removeClass( 'cke_anchor' );
} else
anchor.remove( 1 );
}
}
sel.selectBookmarks( bms );
},
requiredContent: 'a[name]'
};
CKEDITOR.tools.extend( CKEDITOR.config, {
/**
* Whether to show the Advanced tab in the Link dialog window.
*
* @cfg {Boolean} [linkShowAdvancedTab=true]
* @member CKEDITOR.config
*/
linkShowAdvancedTab: true,
/**
* Whether to show the Target tab in the Link dialog window.
*
* @cfg {Boolean} [linkShowTargetTab=true]
* @member CKEDITOR.config
*/
linkShowTargetTab: true
} );