+ background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(black)), -webkit-gradient(linear, left top, right top, from(white), to(rgba(255, 255, 255, 0)));
+ background: linear-gradient(to bottom, transparent 0%, black 100%), linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
+function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
+function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
+
+/**
+ * HSVA color data class, containing the hue, saturation, value and alpha
+function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
+
+function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
+
+function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
+
+var defaults = {
+ /**
+ * Key-value pairs defining a color alias and its CSS color representation.
+ *
+ * They can also be just an array of values. In that case, no special names are used, only the real colors.
+ *
+ * @type {Object|Array}
+ * @default null
+ * @example
+ * {
+ * 'black': '#000000',
+ * 'white': '#ffffff',
+ * 'red': '#FF0000',
+ * 'default': '#777777',
+ * 'primary': '#337ab7',
+ * 'success': '#5cb85c',
+ * 'info': '#5bc0de',
+ * 'warning': '#f0ad4e',
+ * 'danger': '#d9534f'
+ * }
+ *
+ * @example ['#f0ad4e', '#337ab7', '#5cb85c']
+ */
+ colors: null,
+ /**
+ * If true, when a color swatch is selected the name (alias) will be used as input value,
+ * otherwise the swatch real color value will be used.
+function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
+function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
+
+function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
+
+function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
+function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
+
+function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
+
+function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
+function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
+
+function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
+
+function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
+function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
+
+/**
+ * Class that handles all configured sliders on mouse or touch events.
+function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
+
+/**
+ * Handles everything related to the UI of the colorpicker popup: show, hide, position,...
+ * @ignore
+ */
+var PopupHandler = function () {
+ /**
+ * @param {Colorpicker} colorpicker
+ * @param {Window} root
+ */
+ function PopupHandler(colorpicker, root) {
+ _classCallCheck(this, PopupHandler);
+
+ /**
+ * @type {Window}
+ */
+ this.root = root;
+ /**
+ * @type {Colorpicker}
+ */
+ this.colorpicker = colorpicker;
+ /**
+ * @type {jQuery}
+ */
+ this.popoverTarget = null;
+ /**
+ * @type {jQuery}
+ */
+ this.popoverTip = null;
+
+ /**
+ * If true, the latest click was inside the popover
+ * @type {boolean}
+ */
+ this.clicking = false;
+ /**
+ * @type {boolean}
+ */
+ this.hidding = false;
+ /**
+ * @type {boolean}
+ */
+ this.showing = false;
+ }
+
+ /**
+ * @private
+ * @returns {jQuery|false}
+ */
+
+
+ _createClass(PopupHandler, [{
+ key: 'bind',
+
+
+ /**
+ * Binds the different colorpicker elements to the focus/mouse/touch events so it reacts in order to show or
+ * hide the colorpicker popup accordingly. It also adds the proper classes.
+function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
+
+/**
+ * Handles everything related to the colorpicker input
+function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
+
+/**
+ * Handles everything related to the colorpicker color
+function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
+
+/**
+ * Handles everything related to the colorpicker UI
+ * @ignore
+ */
+var PickerHandler = function () {
+ /**
+ * @param {Colorpicker} colorpicker
+ */
+ function PickerHandler(colorpicker) {
+ _classCallCheck(this, PickerHandler);
+
+ /**
+ * @type {Colorpicker}
+ */
+ this.colorpicker = colorpicker;
+ /**
+ * @type {jQuery}
+ */
+ this.picker = null;
+ }
+
+ _createClass(PickerHandler, [{
+ key: 'bind',
+ value: function bind() {
+ /**
+ * @type {jQuery|HTMLElement}
+ */
+ var picker = this.picker = (0, _jquery2.default)(this.options.template);
+
+ if (this.options.customClass) {
+ picker.addClass(this.options.customClass);
+ }
+
+ if (this.options.horizontal) {
+ picker.addClass('colorpicker-horizontal');
+ }
+
+ if (this._supportsAlphaBar()) {
+ this.options.useAlpha = true;
+ picker.addClass('colorpicker-with-alpha');
+ } else {
+ this.options.useAlpha = false;
+ }
+ }
+ }, {
+ key: 'attach',
+ value: function attach() {
+ // Inject the colorpicker element into the DOM
+ var pickerParent = this.colorpicker.container ? this.colorpicker.container : null;
+ * Handles everything related to the colorpicker addon
+ * @ignore
+ */
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+
+var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
+
+function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-(function(d){d['ar']=Object.assign(d['ar']||{},{a:"لا يمكن رفع الملف:",b:"Block quote",c:"Italic",d:"Bold",e:"image widget",f:"Full size image",g:"Side image",h:"Left aligned image",i:"Centered image",j:"Right aligned image",k:"Enter image caption",l:"Insert image",m:"رابط",n:"Upload failed",o:"Choose heading",p:"Heading",q:"قائمة مرقمة",r:"Bulleted List",s:"Change image text alternative",t:"Paragraph",u:"Heading 1",v:"Heading 2",w:"Heading 3",x:"Unlink",y:"تحرير الرابط",z:"فتح الرابط في تبويب جديد",aa:"This link has no URL",ab:"Rich Text Editor, %0",ac:"Rich Text Editor",ad:"تراجع",ae:"Redo",af:"حفظ",ag:"إلغاء",ah:"Text alternative",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
-(function(d){d['ast']=Object.assign(d['ast']||{},{a:"Cannot upload file:",b:"Block quote",c:"Cursiva",d:"Negrina",e:"complementu d'imaxen",f:"Imaxen a tamañu completu",g:"Imaxen llateral",h:"Left aligned image",i:"Centered image",j:"Right aligned image",k:"Enter image caption",l:"Insert image",m:"Enllazar",n:"Upload failed",o:"Choose heading",p:"Heading",q:"Llista numberada",r:"Llista con viñetes",s:"Change image text alternative",t:"Paragraph",u:"Heading 1",v:"Heading 2",w:"Heading 3",x:"Desenllazar",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"Editor de testu arriquecíu, %0",ac:"Editor de testu arriquecíu",ad:"Desfacer",ae:"Refacer",af:"Guardar",ag:"Encaboxar",ah:"Text alternative",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
-(function(d){d['bg']=Object.assign(d['bg']||{},{a:"Cannot upload file:",b:"Цитат",c:"Курсив",d:"Удебелен",e:"image widget",f:"Full size image",g:"Side image",h:"Left aligned image",i:"Centered image",j:"Right aligned image",k:"Enter image caption",l:"Insert image",m:"Link",n:"Upload failed",o:"Choose heading",p:"Heading",q:"Numbered List",r:"Bulleted List",s:"Change image text alternative",t:"Параграф",u:"Heading 1",v:"Heading 2",w:"Heading 3",x:"Unlink",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"Rich Text Editor, %0",ac:"Rich Text Editor",ad:"Undo",ae:"Redo",af:"Запазване",ag:"Отказ",ah:"Text alternative",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
-(function(d){d['cs']=Object.assign(d['cs']||{},{a:"Soubor nelze nahrát:",b:"Citace",c:"Kurzíva",d:"Tučné",e:"ovládací prvek obrázku",f:"Obrázek v plné velikosti",g:"Postranní obrázek",h:"Obrázek zarovnaný vlevo",i:"Obrázek zarovnaný na střed",j:"Obrázek zarovnaný vpravo",k:"Zadejte popis obrázku",l:"Vložit obrázek",m:"Odkaz",n:"Nahrání selhalo",o:"Zvolte nadpis",p:"Nadpis",q:"Číslování",r:"Odrážky",s:"Změnit alternativní text obrázku",t:"Odstavec",u:"Nadpis 1",v:"Nadpis 2",w:"Nadpis 3",x:"Odstranit odkaz",y:"Upravit odkaz",z:"Otevřít odkaz v nové kartě",aa:"Tento odkaz nemá žádnou URL",ab:"Textový editor, %0",ac:"Textový editor",ad:"Zpět",ae:"Znovu",af:"Uložit",ag:"Zrušit",ah:"Alternativní text",ai:"URL odkazu"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
-(function(d){d['da']=Object.assign(d['da']||{},{a:"Kan ikke uploade fil:",b:"Blot citat",c:"Kursiv",d:"Fed",e:"billed widget",f:"Fuld billedstørrelse",g:"Sidebillede",h:"Venstrestillet billede",i:"Centreret billede",j:"Højrestillet billede",k:"Indtast billedoverskrift",l:"Indsæt billede",m:"Link",n:"Upload fejlede",o:"Vælg overskrift",p:"Overskrift",q:"Opstilling med tal",r:"Punktopstilling",s:"Skift alternativ billedtekst",t:"Formattering",u:"Overskrift 1",v:"Overskrift 2",w:"Overskrift 3",x:"Fjern link",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"Wysiwyg editor, %0",ac:"Wysiwyg editor",ad:"Fortryd",ae:"Gentag",af:"Gem",ag:"Annullér",ah:"Alternativ tekst",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
-(function(d){d['de']=Object.assign(d['de']||{},{a:"Datei kann nicht hochgeladen werden:",b:"Blockzitat",c:"Kursiv",d:"Fett",e:"Bild-Steuerelement",f:"Bild in voller Größe",g:"Seitenbild",h:"linksbündiges Bild",i:"zentriertes Bild",j:"rechtsbündiges Bild",k:"Bildunterschrift eingeben",l:"Bild einfügen",m:"Link",n:"Hochladen fehlgeschlagen",o:"Überschrift auswählen",p:"Überschrift",q:"Nummerierte Liste",r:"Aufzählungsliste",s:"Alternativ Text ändern",t:"Absatz",u:"Überschrift 1",v:"Überschrift 2",w:"Überschrift 3",x:"Link entfernen",y:"Link bearbeiten",z:"Link im neuen Tab öffnen",aa:"Dieser Link hat keine Adresse",ab:"Rich-Text-Editor, %0",ac:"Rich Text Editor",ad:"Rückgängig",ae:"Wiederherstellen",af:"Speichern",ag:"Abbrechen",ah:"Textalternative",ai:"Link Adresse"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
-(function(d){d['en-au']=Object.assign(d['en-au']||{},{a:"Cannot upload file:",b:"Block quote",c:"Italic",d:"Bold",e:"image widget",f:"Full size image",g:"Side image",h:"Left aligned image",i:"Centred image",j:"Right aligned image",k:"Enter image caption",l:"Insert image",m:"Link",n:"Upload failed",o:"Choose heading",p:"Heading",q:"Numbered List",r:"Bulleted List",s:"Change image text alternative",t:"Paragraph",u:"Heading 1",v:"Heading 2",w:"Heading 3",x:"Unlink",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"Rich Text Editor, %0",ac:"Rich Text Editor",ad:"Undo",ae:"Redo",af:"Save",ag:"Cancel",ah:"Text alternative",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
-(function(d){d['eo']=Object.assign(d['eo']||{},{a:"Cannot upload file:",b:"Block quote",c:"kursiva",d:"grasa",e:"bilda fenestraĵo",f:"Bildo kun reala dimensio",g:"Flanka biildo",h:"Left aligned image",i:"Centered image",j:"Right aligned image",k:"Skribu klarigon pri la bildo",l:"Enmetu bildon",m:"Ligilo",n:"Upload failed",o:"Elektu ĉapon",p:"Ĉapo",q:"Numerita Listo",r:"Bula Listo",s:"Ŝanĝu la alternativan tekston de la bildo",t:"Paragrafo",u:"Ĉapo 1",v:"Ĉapo 2",w:"Ĉapo 3",x:"Malligi",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"Redaktilo de Riĉa Teksto, %0",ac:"Redaktilo de Riĉa Teksto",ad:"Malfari",ae:"Refari",af:"Konservi",ag:"Nuligi",ah:"Alternativa teksto",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
-(function(d){d['es']=Object.assign(d['es']||{},{a:"No se pudo cargar el archivo:",b:"Entrecomillado",c:"Cursiva",d:"Negrita",e:"Widget de imagen",f:"Imagen a tamaño completo",g:"Imagen lateral",h:"Imagen alineada a la izquierda",i:"Imagen centrada",j:"Imagen alineada a la derecha",k:"Introducir título de la imagen",l:"Insertar imagen",m:"Enlace",n:"Fallo en la subida",o:"Elegir Encabezado",p:"Encabezado",q:"Lista numerada",r:"Lista de puntos",s:"Cambiar el texto alternativo de la imagen",t:"Párrafo",u:"Encabezado 1",v:"Encabezado 2",w:"Encabezado 3",x:"Quitar enlace",y:"Editar enlace",z:"Abrir enlace en una pestaña nueva",aa:"Este enlace no tiene URL",ab:"Editor de Texto Enriquecido, %0",ac:"Editor de Texto Enriquecido",ad:"Deshacer",ae:"Rehacer",af:"Guardar",ag:"Cancelar",ah:"Texto alternativo",ai:"URL del enlace"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
-(function(d){d['eu']=Object.assign(d['eu']||{},{a:"Ezin da fitxategia kargatu:",b:"Aipua",c:"Etzana",d:"Lodia",e:"irudi widgeta",f:"Tamaina osoko irudia",g:"Alboko irudia",h:"Ezkerrean lerrokatutako irudia",i:"Zentratutako irudia",j:"Eskuinean lerrokatutako irudia",k:"Sartu irudiaren epigrafea",l:"Txertatu irudia",m:"Esteka",n:"Kargatzeak huts egin du",o:"Aukeratu izenburua",p:"Izenburua",q:"Zenbakidun zerrenda",r:"Buletdun zerrenda",s:"Aldatu irudiaren ordezko testua",t:"Paragrafoa",u:"Izenburua 1",v:"Izenburua 2",w:"Izenburua 3",x:"Desestekatu",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"Testu aberastuaren editorea, %0",ac:"Testu aberastuaren editorea",ad:"Desegin",ae:"Berregin",af:"Gorde",ag:"Utzi",ah:"Ordezko testua",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
-(function(d){d['fi']=Object.assign(d['fi']||{},{a:"Tiedostoa ei voitu ladata:",b:"Lainaus",c:"Kursivointi",d:"Lihavointi",e:"Kuvavimpain",f:"Täysikokoinen kuva",g:"Pieni kuva",h:"Vasemmalle tasattu kuva",i:"Keskitetty kuva",j:"Oikealle tasattu kuva",k:"Syötä kuvateksti",l:"Lisää kuva",m:"Linkki",n:"Lataus epäonnistui",o:"Valitse tyyli",p:"Otsikkotyyli",q:"Numeroitu lista",r:"Lista",s:"Vaihda kuvan vaihtoehtoinen teksti",t:"Kappale",u:"Otsikko 1",v:"Otsikko 2",w:"Otsikko 3",x:"Poista linkki",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"Rikas tekstieditori, %0",ac:"Rikas tekstieditori",ad:"Peru",ae:"Tee uudelleen",af:"Tallenna",ag:"Peruuta",ah:"Vaihtoehtoinen teksti",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
-(function(d){d['fr']=Object.assign(d['fr']||{},{a:"Envoi du fichier échoué :",b:"Citation",c:"Italique",d:"Gras",e:"Objet image",f:"Image taille réelle",g:"Image sur le côté",h:"Image alignée à gauche",i:"Image centrée",j:"Image alignée a droite",k:"Saisissez la légende de l’image",l:"Insérer une image",m:"Lien",n:"Échec de l'envoi",o:"Choisir le titre",p:"En-tête",q:"Liste numérotée",r:"Liste à puces",s:"Changer le texte alternatif à l’image",t:"Paragraphe",u:"Titre 1",v:"Titre 2",w:"Titre 3",x:"Supprimer le lien",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"Éditeur de texte enrichi, %0",ac:"Éditeur de texte enrichi",ad:"Annuler",ae:"Restaurer",af:"Enregistrer",ag:"Annuler",ah:"Texte alternatif",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
-(function(d){d['gl']=Object.assign(d['gl']||{},{a:"Non é posíbel cargar o ficheiro:",b:"Cita de bloque",c:"Itálica",d:"Negra",e:"Trebello de imaxe",f:"Imaxe a tamaño completo",g:"Lado da imaxe",h:"Imaxe aliñada á esquerda",i:"Imaxe centrada horizontalmente",j:"Imaxe aliñada á dereita",k:"Introduza o título da imaxe",l:"Inserir imaxe",m:"Ligar",n:"Fallou o envío",o:"Escolla o título",p:"Título",q:"Lista numerada",r:"Lista viñeteada",s:"Cambiar o texto alternativo da imaxe",t:"Parágrafo",u:"Título 1",v:"Título 2",w:"Título 3",x:"Desligar",y:"Editar a ligazón",z:"Abrir a ligazón nunha nova lapela",aa:"Esta ligazón non ten URL",ab:"Editor de texto mellorado, %0",ac:"Editor de texto mellorado",ad:"Desfacer",ae:"Refacer",af:"Gardar",ag:"Cancelar",ah:"Texto alternativo",ai:"URL de ligazón"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
-(function(d){d['gu']=Object.assign(d['gu']||{},{a:"ફાઇલ અપલોડ ન થઇ શકી",b:" વિચાર ટાંકો",c:"ત્રાંસુ - ઇટલિક્",d:"ઘાટુ - બોલ્ડ્",e:"image widget",f:"Full size image",g:"Side image",h:"Left aligned image",i:"Centered image",j:"Right aligned image",k:"Enter image caption",l:"Insert image",m:"Link",n:"Upload failed",o:"Choose heading",p:"Heading",q:"Numbered List",r:"Bulleted List",s:"Change image text alternative",t:"Paragraph",u:"Heading 1",v:"Heading 2",w:"Heading 3",x:"Unlink",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"Rich Text Editor, %0",ac:"Rich Text Editor",ad:"Undo",ae:"Redo",af:"Save",ag:"Cancel",ah:"Text alternative",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
-(function(d){d['hr']=Object.assign(d['hr']||{},{a:"Datoteku nije moguće poslati:",b:"Blok citat",c:"Ukošeno",d:"Podebljano",e:"Slika widget",f:"Slika pune veličine",g:"Slika sa strane",h:"Lijevo poravnata slika",i:"Centrirana slika",j:"Slika poravnata desno",k:"Unesite naslov slike",l:"Umetni sliku",m:"Veza",n:"Slanje nije uspjelo",o:"Odaberite naslov",p:"Naslov",q:"Brojčana lista",r:"Obična lista",s:"Promijeni alternativni tekst slike",t:"Paragraf",u:"Naslov 1",v:"Naslov 2",w:"Naslov 3",x:"Ukloni vezu",y:"Uredi vezu",z:"Otvori vezu u novoj kartici",aa:"Ova veza nema URL",ab:"Rich Text Editor, %0",ac:"Rich Text Editor",ad:"Poništi",ae:"Ponovi",af:"Snimi",ag:"Poništi",ah:"Alternativni tekst",ai:"URL veze"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
-(function(d){d['hu']=Object.assign(d['hu']||{},{a:"Nem sikerült a fájl feltöltése:",b:"Idézet",c:"Dőlt",d:"Félkövér",e:"képmodul",f:"Teljes méretű kép",g:"Oldalsó kép",h:"Left aligned image",i:"Centered image",j:"Right aligned image",k:"Képaláírás megadása",l:"Kép beszúrása",m:"Link",n:"A feltöltés nem sikerült",o:"Stílus megadása",p:"Stílusok",q:"Számozott lista",r:"Pontozott lista",s:"Helyettesítő szöveg módosítása",t:"Bekezdés",u:"Címsor 1",v:"Címsor 2",w:"Címsor 3",x:"Link eltávolítása",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"Bővített szövegszerkesztő, %0",ac:"Bővített szövegszerkesztő",ad:"Visszavonás",ae:"Újra",af:"Mentés",ag:"Mégsem",ah:"Helyettesítő szöveg",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
-(function(d){d['it']=Object.assign(d['it']||{},{a:"Impossibile caricare il file:",b:"Blocco citazione",c:"Corsivo",d:"Grassetto",e:"Widget immagine",f:"Immagine a dimensione intera",g:"Immagine laterale",h:"Immagine allineata a sinistra",i:"Immagine centrata",j:"Immagine allineata a destra",k:"inserire didascalia dell'immagine",l:"Inserisci immagine",m:"Collegamento",n:"Caricamento fallito",o:"Seleziona intestazione",p:"Intestazione",q:"Elenco numerato",r:"Elenco puntato",s:"Cambia testo alternativo dell'immagine",t:"Paragrafo",u:"Intestazione 1",v:"Intestazione 2",w:"Intestazione 3",x:"Elimina collegamento",y:"Modifica collegamento",z:"Apri collegamento in nuova scheda",aa:"Questo collegamento non ha un URL",ab:"Editor di testo Rich Text, %0",ac:"Editor di testo Rich Text",ad:"Annulla",ae:"Ripristina",af:"Salva",ag:"Annulla",ah:"Testo alternativo",ai:"URL del collegamento"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
-(function(d){d['ja']=Object.assign(d['ja']||{},{a:"ファイルをアップロードできません:",b:"ブロッククオート(引用)",c:"イタリック",d:"ボールド",e:"画像ウィジェット",f:"フルサイズ画像",g:"サイドイメージ",h:"Left aligned image",i:"Centered image",j:"Right aligned image",k:"画像の注釈を入力",l:"画像挿入",m:"リンク",n:"アップロード失敗",o:"見出しを選択",p:"見出し",q:"番号付きリスト",r:"箇条書きリスト",s:"画像の代替テキストを変更",t:"パラグラフ",u:"見出し1",v:"見出し2",w:"見出し3 ",x:"リンク解除",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"リッチテキストエディター, %0",ac:"リッチテキストエディター",ad:"元に戻す",ae:"やり直し",af:"保存",ag:"キャンセル",ah:"代替テキスト",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
-(function(d){d['km']=Object.assign(d['km']||{},{a:"មិនអាចអាប់ឡូតឯកសារ៖",b:"ប្លុកពាក្យសម្រង់",c:"ទ្រេត",d:"ដិត",e:"វិដជិតរូបភាព",f:"រូបភាពពេញទំហំ",g:"រូបភាពនៅខាង",h:"Left aligned image",i:"Centered image",j:"Right aligned image",k:"បញ្ចូលពាក្យពណ៌នារូបភាព",l:"បញ្ចូលរូបភាព",m:"តំណ",n:"អាប់ឡូតមិនបាន",o:"ជ្រើសរើសក្បាលអត្ថបទ",p:"ក្បាលអត្ថបទ",q:"បញ្ជីជាលេខ",r:"បញ្ជីជាចំណុច",s:"Change image text alternative",t:"កថាខណ្ឌ",u:"ក្បាលអត្ថបទ 1",v:"ក្បាលអត្ថបទ 2",w:"ក្បាលអត្ថបទ 3",x:"ផ្ដាច់តំណ",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"កម្មវិធីកែសម្រួលអត្ថបទសម្បូរបែប, %0",ac:"កម្មវិធីកែសម្រួលអត្ថបទសម្បូរបែប",ad:"លែងធ្វើវិញ",ae:"ធ្វើវិញ",af:"រក្សាទុ",ag:"បោះបង់",ah:"Text alternative",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
-(function(d){d['kn']=Object.assign(d['kn']||{},{a:"Cannot upload file:",b:"ಗುರುತಿಸಲಾದ ಉಲ್ಲೇಖ",c:"ಇಟಾಲಿಕ್",d:"ದಪ್ಪ",e:"ಚಿತ್ರ ವಿಜೆಟ್",f:"ಪೂರ್ಣ ಅಳತೆಯ ಚಿತ್ರ",g:"ಪಕ್ಕದ ಚಿತ್ರ",h:"Left aligned image",i:"Centered image",j:"Right aligned image",k:"ಚಿತ್ರದ ಶೀರ್ಷಿಕೆ ಸೇರಿಸು",l:"Insert image",m:"ಕೊಂಡಿ",n:"Upload failed",o:"ಶೀರ್ಷಿಕೆ ಆಯ್ಕೆಮಾಡು",p:"ಶೀರ್ಷಿಕೆ",q:"ಸಂಖ್ಯೆಯ ಪಟ್ಟಿ",r:"ಬುಲೆಟ್ ಪಟ್ಟಿ",s:"ಚಿತ್ರದ ಬದಲಿ ಪಠ್ಯ ಬದಲಾಯಿಸು",t:"ಪ್ಯಾರಾಗ್ರಾಫ್",u:"ಶೀರ್ಷಿಕೆ 1",v:"ಶೀರ್ಷಿಕೆ 2",w:"ಶೀರ್ಷಿಕೆ 3",x:"ಕೊಂಡಿ ತೆಗೆ",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"ಸಮೃದ್ಧ ಪಠ್ಯ ಸಂಪಾದಕ, %0",ac:"ಸಮೃದ್ಧ ಪಠ್ಯ ಸಂಪಾದಕ",ad:"ರದ್ದು",ae:"ಮತ್ತೆ ಮಾಡು",af:"ಉಳಿಸು",ag:"ರದ್ದುಮಾಡು",ah:"ಪಠ್ಯದ ಬದಲಿ",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
-(function(d){d['ko']=Object.assign(d['ko']||{},{a:"Cannot upload file:",b:"인용 단락",c:"기울임꼴",d:"굵게",e:"이미지 위젯",f:"문서 너비",g:"내부 우측 정렬",h:"왼쪽 정렬",i:"가운데 정렬",j:"오른쪽 정렬",k:"이미지 설명을 입력하세요",l:"Insert image",m:"링크",n:"Upload failed",o:"제목 선택",p:"제목",q:"번호매기기",r:"글머리기호",s:"대체 텍스트 변경",t:"문단",u:"제목1",v:"제목2",w:"제목3",x:"링크 삭제",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"Rich Text Editor, %0",ac:"Rich Text Editor",ad:"실행 취소",ae:"다시 실행",af:"저장",ag:"취소",ah:"대체 텍스트",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
-(function(d){d['nb']=Object.assign(d['nb']||{},{a:"Kan ikke laste opp fil:",b:"Blokksitat",c:"Kursiv",d:"Fet",e:"Bilde-widget",f:"Bilde i full størrelse",g:"Sidebilde",h:"Venstrejustert bilde",i:"Midtstilt bilde",j:"Høyrejustert bilde",k:"Skriv inn bildetekst",l:"Sett inn bilde",m:"Lenke",n:"Opplasting feilet",o:"Velg overskrift",p:"Overskrift",q:"Nummerert liste",r:"Punktmerket liste",s:"Endre tekstalternativ for bilde",t:"Avsnitt",u:"Overskrift 1",v:"Overskrift 2",w:"Overskrift 3",x:"Fjern lenke",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"Rikteksteditor, %0",ac:"Rikteksteditor",ad:"Angre",ae:"Gjør om",af:"Lagre",ag:"Avbryt",ah:"Tekstalternativ for bilde",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
-(function(d){d['ne']=Object.assign(d['ne']||{},{a:"Cannot upload file:",b:"Block quote",c:"Italic",d:"Bold",e:"image widget",f:"Full size image",g:"Side image",h:"Left aligned image",i:"Centered image",j:"Right aligned image",k:"Enter image caption",l:"तस्वीर सम्मिलित गर्नुहोस्",m:"Link",n:"Upload failed",o:"Choose heading",p:"Heading",q:"Numbered List",r:"Bulleted List",s:"Change image text alternative",t:"Paragraph",u:"Heading 1",v:"Heading 2",w:"Heading 3",x:"Unlink",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"Rich Text Editor, %0",ac:"Rich Text Editor",ad:"Undo",ae:"Redo",af:"सुरक्षित गर्नुहोस्",ag:"रद्द गर्नुहोस्",ah:"Text alternative",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
-(function(d){d['nl']=Object.assign(d['nl']||{},{a:"Kan bestand niet opladen:",b:"Blok citaat",c:"Cursief",d:"Vet",e:"Afbeeldingswidget",f:"Afbeelding op volledige grootte",g:"Afbeelding naast tekst",h:"Links uitgelijnde afbeelding",i:"Gecentreerde afbeelding",j:"Rechts uitgelijnde afbeelding",k:"Typ een afbeeldingsbijschrift",l:"Afbeelding toevoegen",m:"Link",n:"Opladen afbeelding mislukt",o:"Kies kop",p:"Koppen",q:"Genummerde lijst",r:"Ongenummerde lijst",s:"Verander alt-tekst van de afbeelding",t:"Paragraaf",u:"Kop 1",v:"Kop 2",w:"Kop 3",x:"Verwijder link",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"Tekstbewerker, 0%",ac:"Tekstbewerker",ad:"Ongedaan maken",ae:"Opnieuw",af:"Opslaan",ag:"Annuleren",ah:"Alt-tekst",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
-(function(d){d['oc']=Object.assign(d['oc']||{},{a:"Cannot upload file:",b:"Block quote",c:"Italica",d:"Gras",e:"image widget",f:"Full size image",g:"Side image",h:"Left aligned image",i:"Centered image",j:"Right aligned image",k:"Enter image caption",l:"Insert image",m:"Link",n:"Upload failed",o:"Choose heading",p:"Heading",q:"Numbered List",r:"Bulleted List",s:"Change image text alternative",t:"Paragraph",u:"Heading 1",v:"Heading 2",w:"Heading 3",x:"Unlink",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"Rich Text Editor, %0",ac:"Rich Text Editor",ad:"Undo",ae:"Redo",af:"Enregistrar",ag:"Anullar",ah:"Text alternative",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
-(function(d){d['pl']=Object.assign(d['pl']||{},{a:"Nie można przesłać pliku:",b:"Cytat blokowy",c:"Kursywa",d:"Pogrubienie",e:"image widget",f:"Full size image",g:"Side image",h:"Left aligned image",i:"Centered image",j:"Right aligned image",k:"Enter image caption",l:"Wstaw obraz",m:"Wstaw odnośnik",n:"Upload failed",o:"Wybierz nagłówek",p:"Nagłówek",q:"Lista numerowana",r:"Lista wypunktowana",s:"Change image text alternative",t:"Akapit",u:"Nagłówek 1",v:"Nagłówek 2",w:"Nagłówek 3",x:"Usuń odnośnik",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"Rich Text Editor, %0",ac:"Rich Text Editor",ad:"Cofnij",ae:"Ponów",af:"Zapisz",ag:"Anuluj",ah:"Text alternative",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
-(function(d){d['pt-br']=Object.assign(d['pt-br']||{},{a:"Não foi possível enviar o arquivo:",b:"Bloco de citação",c:"Itálico",d:"Negrito",e:"Ferramenta de imagem",f:"Imagem completa",g:"Imagem lateral",h:"Imagem alinhada à esquerda",i:"Imagem centralizada",j:"Imagem alinhada à direita",k:"Inserir legenda da imagem",l:"Inserir imagem",m:"Link",n:"Falha ao subir arquivo",o:"Escolha o título",p:"Titulo",q:"Lista numerada",r:"Lista com marcadores",s:"Alterar texto alternativo da imagem",t:"Parágrafo",u:"Título 1",v:"Título 2",w:"Título 3",x:"Remover link",y:"Editar link",z:"Abrir link em nova aba",aa:"Este link não possui uma URL",ab:"Editor de Formatação, %0",ac:"Editor de Formatação",ad:"Desfazer",ae:"Refazer",af:"Salvar",ag:"Cancelar",ah:"Texto alternativo",ai:"URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
-(function(d){d['pt']=Object.assign(d['pt']||{},{a:"Não foi possível carregar o ficheiro:",b:"Block quote",c:"Itálico",d:"Negrito",e:"módulo de imagem",f:"Imagem em tamanho completo",g:"Imagem lateral",h:"Left aligned image",i:"Imagem centrada",j:"Right aligned image",k:"Indicar legenda da imagem",l:"Inserir imagem",m:"Hiperligação",n:"Falha ao carregar",o:"Choose heading",p:"Título",q:"Lista ordenada",r:"Lista não ordenada",s:"Change image text alternative",t:"Parágrafo",u:"Título 1",v:"Título 2",w:"Título 3",x:"Desligar",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"Editor de texto avançado, %0",ac:"Editor de texto avançado",ad:"Desfazer",ae:"Refazer",af:"Guardar",ag:"Cancelar",ah:"Texto alternativo",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
-(function(d){d['ro']=Object.assign(d['ro']||{},{a:"Nu pot încărca fișierul:",b:"Bloc citat",c:"Oblic",d:"Îngroșat",e:"widget imagine",f:"Imagine mărime completă",g:"Imagine laterală",h:"Imagine aliniată stângă",i:"Imagine aliniată pe centru",j:"Imagine aliniată dreapta",k:"Introdu titlul descriptiv al imaginii",l:"Inserează imagine",m:"Link",n:"Încărcare eșuată",o:"Alege titlu rubrică",p:"Titlu rubrică",q:"Listă numerotată",r:"Listă cu puncte",s:"Schimbă textul alternativ al imaginii",t:"Paragraf",u:"Titlu rubrică 1",v:"Titlu rubrică 2",w:"Titlu rubrică 3",x:"Șterge link",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"Editor de text îmbunătățit, %0",ac:"Editor de text îmbunătățit",ad:"Anulează",ae:"Revenire",af:"Salvare",ag:"Anulare",ah:"Text alternativ",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
-(function(d){d['ru']=Object.assign(d['ru']||{},{a:"Невозможно загрузить файл",b:"Цитата",c:"Курсив",d:"Жирный",e:"Виджет изображений",f:"Оригинальный размер изображения",g:"Боковое изображение",h:"Выравнивание по левому краю",i:"Выравнивание по центру",j:"Выравнивание по правому краю",k:"Подпись к изображению",l:"Вставить изображение",m:"Ссылка",n:"Загрузка не выполнена",o:"Выбрать заголовок",p:"Заголовок",q:"Нумерованный список",r:"Маркированный список",s:"Редактировать альтернативный текст",t:"Параграф",u:"Заголовок 1",v:"Заголовок 2",w:"Заголовок 3",x:"Убрать ссылку",y:"Редактировать ссылку",z:"Открыть ссылку в новой вкладке",aa:"Для этой ссылки не установлен адрес URL",ab:"Редактор, %0",ac:"Редактор",ad:"Отменить",ae:"Повторить",af:"Сохранить",ag:"Отмена",ah:"Альтернативный текст",ai:"Ссылка URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
-(function(d){d['sk']=Object.assign(d['sk']||{},{a:"Nie je možné nahrať súbor:",b:"Citát",c:"Kurzíva",d:"Tučné",e:"widget obrázka",f:"Obrázok v plnej veľkosti",g:"Bočný obrázok",h:"Zarovnať vľavo",i:"Zarovnať na stred",j:"Zarovnať vpravo",k:"Vložte popis obrázka",l:"Vložiť obrázok",m:"Odkaz",n:"Nahrávanie zlyhalo",o:"Vyberte nadpis",p:"Nadpis",q:"Číslovaný zoznam",r:"Zoznam s odrážkami",s:"Zmeňte alternatívny text obrázka",t:"Paragraf",u:"Nadpis 1",v:"Nadpis 2",w:"Nadpis 3",x:"Zrušiť odkaz",y:"Upraviť odkaz",z:"Otvoriť odkaz v novom okne",aa:"Tento odkaz nemá nastavenú URL adresu",ab:"Editor s formátovaním, %0",ac:"Editor s formátovaním",ad:"Späť",ae:"Znova",af:"Uložiť",ag:"Zrušiť",ah:"Alternatívny text",ai:"URL adresa"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
-(function(d){d['sq']=Object.assign(d['sq']||{},{a:"Nuk mund të ngarkojë skedën:",b:"Thonjëzat",c:"Pjerrtë",d:"Trash",e:"Vegla e fotos",f:"Foto me madhësi të plotë",g:"Foto anësore",h:"Foto e vendosur majtas",i:"Foto e vendosur në mes",j:"Foto e vendosur djathtas",k:"Shto përshkrimin e fotos",l:"Shto Foto",m:"Shto Nyjën",n:"Ngarkimi dishtoi",o:"Përzgjidh nëntitullin",p:"Nëntitulli",q:"Listë me Numra",r:"Listë me Pika",s:"Ndrysho tekstin alternativ të fotos",t:"Paragrafi",u:"Nëntitulli 1",v:"Nëntitulli 2",w:"Nëntitulli 3",x:"Largo Nyjën",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"Redaktues i Tekstit të Pasur, %0",ac:"Redaktues i Tekstit të Pasur",ad:"Rikthe",ae:"Ribëje",af:"Ruaje",ag:"Anulo",ah:"Teksti alternativ",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
-(function(d){d['tt']=Object.assign(d['tt']||{},{a:"Cannot upload file:",b:"Block quote",c:"Italic",d:"Калын",e:"image widget",f:"Full size image",g:"Side image",h:"Left aligned image",i:"Centered image",j:"Right aligned image",k:"Enter image caption",l:"Insert image",m:"Link",n:"Upload failed",o:"Choose heading",p:"Heading",q:"Numbered List",r:"Bulleted List",s:"Change image text alternative",t:"Paragraph",u:"Heading 1",v:"Heading 2",w:"Heading 3",x:"Unlink",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"Rich Text Editor, %0",ac:"Rich Text Editor",ad:"Undo",ae:"Кабатла",af:"Сакла",ag:"Cancel",ah:"Text alternative",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
-(function(d){d['uk']=Object.assign(d['uk']||{},{a:"Cannot upload file:",b:"Block quote",c:"Курсив",d:"Жирний",e:"Віджет зображення",f:"Повний розмір зображення",g:"Бокове зображення",h:"Left aligned image",i:"Centered image",j:"Right aligned image",k:"Enter image caption",l:"Insert image",m:"Посилання",n:"Upload failed",o:"Choose heading",p:"Heading",q:"Нумерований список",r:"Маркерний список",s:"Change image text alternative",t:"Paragraph",u:"Heading 1",v:"Heading 2",w:"Heading 3",x:"Видалити посилання",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"Розширений текстовий редактор, %0",ac:"Rich Text Editor",ad:"Відміна",ae:"Повтор",af:"Зберегти",ag:"Відміна",ah:"Text alternative",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));