Index: lams_central/web/ckeditor/plugins/iframe/dialogs/iframe.js =================================================================== diff -u -rd309e31cb215e844f41d2579964ffdc0a62124fa -rd6f46c0c7b5236b78d0f6ca27dbe517202d6fc95 --- lams_central/web/ckeditor/plugins/iframe/dialogs/iframe.js (.../iframe.js) (revision d309e31cb215e844f41d2579964ffdc0a62124fa) +++ lams_central/web/ckeditor/plugins/iframe/dialogs/iframe.js (.../iframe.js) (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -1,10 +1,207 @@ -/* - Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. - For licensing, see LICENSE.md or http://ckeditor.com/license -*/ -(function(){function c(b){var c=this instanceof CKEDITOR.ui.dialog.checkbox;b.hasAttribute(this.id)&&(b=b.getAttribute(this.id),c?this.setValue(e[this.id]["true"]==b.toLowerCase()):this.setValue(b))}function d(b){var c=""===this.getValue(),a=this instanceof CKEDITOR.ui.dialog.checkbox,d=this.getValue();c?b.removeAttribute(this.att||this.id):a?b.setAttribute(this.id,e[this.id][d]):b.setAttribute(this.att||this.id,d)}var e={scrolling:{"true":"yes","false":"no"},frameborder:{"true":"1","false":"0"}}; -CKEDITOR.dialog.add("iframe",function(b){var f=b.lang.iframe,a=b.lang.common,e=b.plugins.dialogadvtab;return{title:f.title,minWidth:350,minHeight:260,onShow:function(){this.fakeImage=this.iframeNode=null;var a=this.getSelectedElement();a&&(a.data("cke-real-element-type")&&"iframe"==a.data("cke-real-element-type"))&&(this.fakeImage=a,this.iframeNode=a=b.restoreRealElement(a),this.setupContent(a))},onOk:function(){var a;a=this.fakeImage?this.iframeNode:new CKEDITOR.dom.element("iframe");var c={},d= -{};this.commitContent(a,c,d);a=b.createFakeElement(a,"cke_iframe","iframe",!0);a.setAttributes(d);a.setStyles(c);this.fakeImage?(a.replace(this.fakeImage),b.getSelection().selectElement(a)):b.insertElement(a)},contents:[{id:"info",label:a.generalTab,accessKey:"I",elements:[{type:"vbox",padding:0,children:[{id:"src",type:"text",label:a.url,required:!0,validate:CKEDITOR.dialog.validate.notEmpty(f.noUrl),setup:c,commit:d}]},{type:"hbox",children:[{id:"width",type:"text",requiredContent:"iframe[width]", -style:"width:100%",labelLayout:"vertical",label:a.width,validate:CKEDITOR.dialog.validate.htmlLength(a.invalidHtmlLength.replace("%1",a.width)),setup:c,commit:d},{id:"height",type:"text",requiredContent:"iframe[height]",style:"width:100%",labelLayout:"vertical",label:a.height,validate:CKEDITOR.dialog.validate.htmlLength(a.invalidHtmlLength.replace("%1",a.height)),setup:c,commit:d},{id:"align",type:"select",requiredContent:"iframe[align]","default":"",items:[[a.notSet,""],[a.alignLeft,"left"],[a.alignRight, -"right"],[a.alignTop,"top"],[a.alignMiddle,"middle"],[a.alignBottom,"bottom"]],style:"width:100%",labelLayout:"vertical",label:a.align,setup:function(a,b){c.apply(this,arguments);if(b){var d=b.getAttribute("align");this.setValue(d&&d.toLowerCase()||"")}},commit:function(a,b,c){d.apply(this,arguments);this.getValue()&&(c.align=this.getValue())}}]},{type:"hbox",widths:["50%","50%"],children:[{id:"scrolling",type:"checkbox",requiredContent:"iframe[scrolling]",label:f.scrolling,setup:c,commit:d},{id:"frameborder", -type:"checkbox",requiredContent:"iframe[frameborder]",label:f.border,setup:c,commit:d}]},{type:"hbox",widths:["50%","50%"],children:[{id:"name",type:"text",requiredContent:"iframe[name]",label:a.name,setup:c,commit:d},{id:"title",type:"text",requiredContent:"iframe[title]",label:a.advisoryTitle,setup:c,commit:d}]},{id:"longdesc",type:"text",requiredContent:"iframe[longdesc]",label:a.longDescr,setup:c,commit:d}]},e&&e.createAdvancedTab(b,{id:1,classes:1,styles:1},"iframe")]}})})(); \ No newline at end of file +/** + * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + * For licensing, see LICENSE.md or http://ckeditor.com/license + */ + +( function() { + // Map 'true' and 'false' values to match W3C's specifications + // http://www.w3.org/TR/REC-html40/present/frames.html#h-16.5 + var checkboxValues = { + scrolling: { 'true': 'yes', 'false': 'no' }, + frameborder: { 'true': '1', 'false': '0' } + }; + + function loadValue( iframeNode ) { + var isCheckbox = this instanceof CKEDITOR.ui.dialog.checkbox; + if ( iframeNode.hasAttribute( this.id ) ) { + var value = iframeNode.getAttribute( this.id ); + if ( isCheckbox ) + this.setValue( checkboxValues[ this.id ][ 'true' ] == value.toLowerCase() ); + else + this.setValue( value ); + } + } + + function commitValue( iframeNode ) { + var isRemove = this.getValue() === '', + isCheckbox = this instanceof CKEDITOR.ui.dialog.checkbox, + value = this.getValue(); + if ( isRemove ) + iframeNode.removeAttribute( this.att || this.id ); + else if ( isCheckbox ) + iframeNode.setAttribute( this.id, checkboxValues[ this.id ][ value ] ); + else + iframeNode.setAttribute( this.att || this.id, value ); + } + + CKEDITOR.dialog.add( 'iframe', function( editor ) { + var iframeLang = editor.lang.iframe, + commonLang = editor.lang.common, + dialogadvtab = editor.plugins.dialogadvtab; + return { + title: iframeLang.title, + minWidth: 350, + minHeight: 260, + onShow: function() { + // Clear previously saved elements. + this.fakeImage = this.iframeNode = null; + + var fakeImage = this.getSelectedElement(); + if ( fakeImage && fakeImage.data( 'cke-real-element-type' ) && fakeImage.data( 'cke-real-element-type' ) == 'iframe' ) { + this.fakeImage = fakeImage; + + var iframeNode = editor.restoreRealElement( fakeImage ); + this.iframeNode = iframeNode; + + this.setupContent( iframeNode ); + } + }, + onOk: function() { + var iframeNode; + if ( !this.fakeImage ) + iframeNode = new CKEDITOR.dom.element( 'iframe' ); + else + iframeNode = this.iframeNode; + + // A subset of the specified attributes/styles + // should also be applied on the fake element to + // have better visual effect. (#5240) + var extraStyles = {}, + extraAttributes = {}; + this.commitContent( iframeNode, extraStyles, extraAttributes ); + + // Refresh the fake image. + var newFakeImage = editor.createFakeElement( iframeNode, 'cke_iframe', 'iframe', true ); + newFakeImage.setAttributes( extraAttributes ); + newFakeImage.setStyles( extraStyles ); + if ( this.fakeImage ) { + newFakeImage.replace( this.fakeImage ); + editor.getSelection().selectElement( newFakeImage ); + } else { + editor.insertElement( newFakeImage ); + } + }, + contents: [ { + id: 'info', + label: commonLang.generalTab, + accessKey: 'I', + elements: [ { + type: 'vbox', + padding: 0, + children: [ { + id: 'src', + type: 'text', + label: commonLang.url, + required: true, + validate: CKEDITOR.dialog.validate.notEmpty( iframeLang.noUrl ), + setup: loadValue, + commit: commitValue + } ] + }, + { + type: 'hbox', + children: [ { + id: 'width', + type: 'text', + requiredContent: 'iframe[width]', + style: 'width:100%', + labelLayout: 'vertical', + label: commonLang.width, + validate: CKEDITOR.dialog.validate.htmlLength( commonLang.invalidHtmlLength.replace( '%1', commonLang.width ) ), + setup: loadValue, + commit: commitValue + }, + { + id: 'height', + type: 'text', + requiredContent: 'iframe[height]', + style: 'width:100%', + labelLayout: 'vertical', + label: commonLang.height, + validate: CKEDITOR.dialog.validate.htmlLength( commonLang.invalidHtmlLength.replace( '%1', commonLang.height ) ), + setup: loadValue, + commit: commitValue + }, + { + id: 'align', + type: 'select', + requiredContent: 'iframe[align]', + 'default': '', + items: [ + [ commonLang.notSet, '' ], + [ commonLang.alignLeft, 'left' ], + [ commonLang.alignRight, 'right' ], + [ commonLang.alignTop, 'top' ], + [ commonLang.alignMiddle, 'middle' ], + [ commonLang.alignBottom, 'bottom' ] + ], + style: 'width:100%', + labelLayout: 'vertical', + label: commonLang.align, + setup: function( iframeNode, fakeImage ) { + loadValue.apply( this, arguments ); + if ( fakeImage ) { + var fakeImageAlign = fakeImage.getAttribute( 'align' ); + this.setValue( fakeImageAlign && fakeImageAlign.toLowerCase() || '' ); + } + }, + commit: function( iframeNode, extraStyles, extraAttributes ) { + commitValue.apply( this, arguments ); + if ( this.getValue() ) + extraAttributes.align = this.getValue(); + } + } ] + }, + { + type: 'hbox', + widths: [ '50%', '50%' ], + children: [ { + id: 'scrolling', + type: 'checkbox', + requiredContent: 'iframe[scrolling]', + label: iframeLang.scrolling, + setup: loadValue, + commit: commitValue + }, + { + id: 'frameborder', + type: 'checkbox', + requiredContent: 'iframe[frameborder]', + label: iframeLang.border, + setup: loadValue, + commit: commitValue + } ] + }, + { + type: 'hbox', + widths: [ '50%', '50%' ], + children: [ { + id: 'name', + type: 'text', + requiredContent: 'iframe[name]', + label: commonLang.name, + setup: loadValue, + commit: commitValue + }, + { + id: 'title', + type: 'text', + requiredContent: 'iframe[title]', + label: commonLang.advisoryTitle, + setup: loadValue, + commit: commitValue + } ] + }, + { + id: 'longdesc', + type: 'text', + requiredContent: 'iframe[longdesc]', + label: commonLang.longDescr, + setup: loadValue, + commit: commitValue + } ] + }, + dialogadvtab && dialogadvtab.createAdvancedTab( editor, { id: 1, classes: 1, styles: 1 }, 'iframe' ) + ] }; + } ); +} )(); Index: lams_central/web/ckeditor/plugins/iframe/icons/hidpi/iframe.png =================================================================== diff -u Binary files differ Index: lams_central/web/ckeditor/plugins/iframe/icons/iframe.png =================================================================== diff -u Binary files differ Index: lams_central/web/ckeditor/plugins/iframe/images/placeholder.png =================================================================== diff -u -r2be1397fbd117723382105715d3f416c78dbd67c -rd6f46c0c7b5236b78d0f6ca27dbe517202d6fc95 Binary files differ Index: lams_central/web/ckeditor/plugins/iframe/lang/af.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/af.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/af.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'af', { + border: 'Wys rand van raam', + noUrl: 'Gee die iframe URL', + scrolling: 'Skuifbalke aan', + title: 'IFrame Eienskappe', + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/ar.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/ar.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/ar.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'ar', { + border: 'إظهار حدود الإطار', + noUrl: 'فضلا أكتب رابط الـ iframe', + scrolling: 'تفعيل أشرطة الإنتقال', + title: 'خصائص iframe', + toolbar: 'iframe' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/bg.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/bg.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/bg.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'bg', { + border: 'Показва рамка на карето', + noUrl: 'Моля въведете URL за iFrame', + scrolling: 'Вкл. скролбаровете', + title: 'IFrame настройки', + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/bn.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/bn.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/bn.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'bn', { + border: 'Show frame border', // MISSING + noUrl: 'Please type the iframe URL', // MISSING + scrolling: 'Enable scrollbars', // MISSING + title: 'IFrame Properties', // MISSING + toolbar: 'IFrame' // MISSING +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/bs.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/bs.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/bs.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'bs', { + border: 'Show frame border', // MISSING + noUrl: 'Please type the iframe URL', // MISSING + scrolling: 'Enable scrollbars', // MISSING + title: 'IFrame Properties', // MISSING + toolbar: 'IFrame' // MISSING +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/ca.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/ca.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/ca.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'ca', { + border: 'Mostra la vora del marc', + noUrl: 'Si us plau, introdueixi la URL de l\'iframe', + scrolling: 'Activa les barres de desplaçament', + title: 'Propietats de l\'IFrame', + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/cs.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/cs.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/cs.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'cs', { + border: 'Zobrazit okraj', + noUrl: 'Zadejte prosím URL obsahu pro IFrame', + scrolling: 'Zapnout posuvníky', + title: 'Vlastnosti IFrame', + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/cy.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/cy.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/cy.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'cy', { + border: 'Dangos ymyl y ffrâm', + noUrl: 'Rhowch URL yr iframe', + scrolling: 'Galluogi bariau sgrolio', + title: 'Priodweddau IFrame', + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/da.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/da.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/da.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'da', { + border: 'Vis kant på rammen', + noUrl: 'Venligst indsæt URL på iframen', + scrolling: 'Aktiver scrollbars', + title: 'Iframe egenskaber', + toolbar: 'Iframe' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/de.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/de.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/de.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'de', { + border: 'Rahmen anzeigen', + noUrl: 'Bitte geben Sie die IFrame-URL an', + scrolling: 'Rollbalken anzeigen', + title: 'IFrame-Eigenschaften', + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/el.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/el.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/el.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'el', { + border: 'Προβολή περιγράμματος πλαισίου', + noUrl: 'Παρακαλούμε εισάγεται το URL του iframe', + scrolling: 'Ενεργοποίηση μπαρών κύλισης', + title: 'Ιδιότητες IFrame', + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/en-au.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/en-au.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/en-au.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'en-au', { + border: 'Show frame border', // MISSING + noUrl: 'Please type the iframe URL', // MISSING + scrolling: 'Enable scrollbars', // MISSING + title: 'IFrame Properties', // MISSING + toolbar: 'IFrame' // MISSING +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/en-ca.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/en-ca.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/en-ca.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'en-ca', { + border: 'Show frame border', // MISSING + noUrl: 'Please type the iframe URL', // MISSING + scrolling: 'Enable scrollbars', // MISSING + title: 'IFrame Properties', // MISSING + toolbar: 'IFrame' // MISSING +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/en-gb.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/en-gb.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/en-gb.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'en-gb', { + border: 'Show frame border', + noUrl: 'Please type the iframe URL', + scrolling: 'Enable scrollbars', + title: 'IFrame Properties', + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/en.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/en.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/en.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'en', { + border: 'Show frame border', + noUrl: 'Please type the iframe URL', + scrolling: 'Enable scrollbars', + title: 'IFrame Properties', + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/eo.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/eo.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/eo.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'eo', { + border: 'Montri borderon de kadro (frame)', + noUrl: 'Bonvolu entajpi la retadreson de la ligilo al la enlinia kadro (IFrame)', + scrolling: 'Ebligi rulumskalon', + title: 'Atributoj de la enlinia kadro (IFrame)', + toolbar: 'Enlinia kadro (IFrame)' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/es.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/es.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/es.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'es', { + border: 'Mostrar borde del marco', + noUrl: 'Por favor, escriba la dirección del iframe', + scrolling: 'Activar barras de desplazamiento', + title: 'Propiedades de iframe', + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/et.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/et.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/et.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'et', { + border: 'Raami äärise näitamine', + noUrl: 'Vali iframe URLi liik', + scrolling: 'Kerimisribade lubamine', + title: 'IFrame omadused', + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/eu.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/eu.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/eu.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'eu', { + border: 'Markoaren ertza ikusi', + noUrl: 'iframe-aren URLa idatzi, mesedez.', + scrolling: 'Korritze barrak gaitu', + title: 'IFrame-aren Propietateak', + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/fa.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/fa.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/fa.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'fa', { + border: 'نمایش خطوط frame', + noUrl: 'لطفا مسیر URL iframe را درج کنید', + scrolling: 'نمایش خطکشها', + title: 'ویژگیهای IFrame', + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/fi.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/fi.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/fi.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'fi', { + border: 'Näytä kehyksen reunat', + noUrl: 'Anna IFrame-kehykselle lähdeosoite (src)', + scrolling: 'Näytä vierityspalkit', + title: 'IFrame-kehyksen ominaisuudet', + toolbar: 'IFrame-kehys' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/fo.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/fo.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/fo.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'fo', { + border: 'Vís frame kant', + noUrl: 'Vinarliga skriva URL til iframe', + scrolling: 'Loyv scrollbars', + title: 'Møguleikar fyri IFrame', + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/fr-ca.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/fr-ca.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/fr-ca.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'fr-ca', { + border: 'Afficher la bordure du cadre', + noUrl: 'Veuillez entre l\'URL du IFrame', + scrolling: 'Activer les barres de défilement', + title: 'Propriétés du IFrame', + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/fr.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/fr.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/fr.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'fr', { + border: 'Afficher une bordure de la IFrame', + noUrl: 'Veuillez entrer l\'adresse du lien de la IFrame', + scrolling: 'Permettre à la barre de défilement', + title: 'Propriétés de la IFrame', + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/gl.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/gl.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/gl.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'gl', { + border: 'Amosar o bordo do marco', + noUrl: 'Escriba o enderezo do iframe', + scrolling: 'Activar as barras de desprazamento', + title: 'Propiedades do iFrame', + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/gu.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/gu.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/gu.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'gu', { + border: 'ફ્રેમ બોર્ડેર બતાવવી', + noUrl: 'iframe URL ટાઈપ્ કરો', + scrolling: 'સ્ક્રોલબાર ચાલુ કરવા', + title: 'IFrame વિકલ્પો', + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/he.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/he.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/he.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'he', { + border: 'הראה מסגרת לחלון', + noUrl: 'יש להכניס כתובת לחלון.', + scrolling: 'אפשר פסי גלילה', + title: 'מאפייני חלון פנימי (iframe)', + toolbar: 'חלון פנימי (iframe)' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/hi.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/hi.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/hi.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'hi', { + border: 'Show frame border', // MISSING + noUrl: 'Please type the iframe URL', // MISSING + scrolling: 'Enable scrollbars', // MISSING + title: 'IFrame Properties', // MISSING + toolbar: 'IFrame' // MISSING +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/hr.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/hr.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/hr.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'hr', { + border: 'Prikaži okvir IFrame-a', + noUrl: 'Unesite URL iframe-a', + scrolling: 'Omogući trake za skrolanje', + title: 'IFrame svojstva', + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/hu.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/hu.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/hu.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'hu', { + border: 'Legyen keret', + noUrl: 'Kérem írja be a iframe URL-t', + scrolling: 'Gördítősáv bekapcsolása', + title: 'IFrame Tulajdonságok', + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/id.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/id.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/id.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'id', { + border: 'Show frame border', // MISSING + noUrl: 'Please type the iframe URL', // MISSING + scrolling: 'Enable scrollbars', // MISSING + title: 'IFrame Properties', // MISSING + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/is.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/is.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/is.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'is', { + border: 'Show frame border', // MISSING + noUrl: 'Please type the iframe URL', // MISSING + scrolling: 'Enable scrollbars', // MISSING + title: 'IFrame Properties', // MISSING + toolbar: 'IFrame' // MISSING +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/it.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/it.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/it.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'it', { + border: 'Mostra il bordo', + noUrl: 'Inserire l\'URL del campo IFrame', + scrolling: 'Abilita scrollbar', + title: 'Proprietà IFrame', + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/ja.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/ja.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/ja.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'ja', { + border: 'フレームの枠を表示', + noUrl: 'iframeのURLを入力してください。', + scrolling: 'スクロールバーの表示を許可', + title: 'iFrameのプロパティ', + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/ka.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/ka.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/ka.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'ka', { + border: 'ჩარჩოს გამოჩენა', + noUrl: 'აკრიფეთ iframe-ის URL', + scrolling: 'გადახვევის ზოლების დაშვება', + title: 'IFrame-ის პარამეტრები', + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/km.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/km.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/km.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'km', { + border: 'បង្ហាញ​បន្ទាត់​ស៊ុម', + noUrl: 'សូម​បញ្ចូល URL របស់ iframe', + scrolling: 'ប្រើ​របារ​រំកិល', + title: 'លក្ខណៈ​សម្បត្តិ IFrame', + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/ko.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/ko.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/ko.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'ko', { + border: '프레임 테두리 표시', + noUrl: 'iframe 대응 URL을 입력해주세요.', + scrolling: '스크롤바 사용', + title: 'IFrame 속성', + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/ku.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/ku.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/ku.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'ku', { + border: 'نیشاندانی لاکێشه بە چوواردەوری چووارچێوە', + noUrl: 'تکایه ناونیشانی بەستەر بنووسه بۆ چووارچێوه', + scrolling: 'چالاککردنی هاتووچۆپێکردن', + title: 'دیالۆگی چووارچێوه', + toolbar: 'چووارچێوه' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/lt.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/lt.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/lt.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'lt', { + border: 'Rodyti rėmelį', + noUrl: 'Nurodykite iframe nuorodą', + scrolling: 'Įjungti slankiklius', + title: 'IFrame nustatymai', + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/lv.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/lv.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/lv.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'lv', { + border: 'Rādīt rāmi', + noUrl: 'Norādiet iframe adresi', + scrolling: 'Atļaut ritjoslas', + title: 'IFrame uzstādījumi', + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/mk.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/mk.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/mk.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'mk', { + border: 'Show frame border', // MISSING + noUrl: 'Please type the iframe URL', // MISSING + scrolling: 'Enable scrollbars', // MISSING + title: 'IFrame Properties', // MISSING + toolbar: 'IFrame' // MISSING +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/mn.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/mn.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/mn.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'mn', { + border: 'Show frame border', // MISSING + noUrl: 'Please type the iframe URL', // MISSING + scrolling: 'Enable scrollbars', // MISSING + title: 'IFrame Properties', // MISSING + toolbar: 'IFrame' // MISSING +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/ms.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/ms.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/ms.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'ms', { + border: 'Show frame border', // MISSING + noUrl: 'Please type the iframe URL', // MISSING + scrolling: 'Enable scrollbars', // MISSING + title: 'IFrame Properties', // MISSING + toolbar: 'IFrame' // MISSING +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/nb.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/nb.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/nb.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'nb', { + border: 'Viss ramme rundt iframe', + noUrl: 'Vennligst skriv inn URL for iframe', + scrolling: 'Aktiver scrollefelt', + title: 'Egenskaper for IFrame', + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/nl.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/nl.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/nl.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'nl', { + border: 'Framerand tonen', + noUrl: 'Vul de IFrame URL in', + scrolling: 'Scrollbalken inschakelen', + title: 'IFrame-eigenschappen', + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/no.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/no.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/no.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'no', { + border: 'Viss ramme rundt iframe', + noUrl: 'Vennligst skriv inn URL for iframe', + scrolling: 'Aktiver scrollefelt', + title: 'Egenskaper for IFrame', + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/pl.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/pl.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/pl.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'pl', { + border: 'Pokaż obramowanie obiektu IFrame', + noUrl: 'Podaj adres URL elementu IFrame', + scrolling: 'Włącz paski przewijania', + title: 'Właściwości elementu IFrame', + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/pt-br.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/pt-br.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/pt-br.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'pt-br', { + border: 'Mostra borda do iframe', + noUrl: 'Insira a URL do iframe', + scrolling: 'Abilita scrollbars', + title: 'Propriedade do IFrame', + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/pt.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/pt.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/pt.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'pt', { + border: 'Mostrar a borda da Frame', + noUrl: 'Por favor, digite o URL da iframe', + scrolling: 'Ativar barras de rolamento', + title: 'Propriedades da IFrame', + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/ro.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/ro.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/ro.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'ro', { + border: 'Show frame border', // MISSING + noUrl: 'Please type the iframe URL', // MISSING + scrolling: 'Enable scrollbars', // MISSING + title: 'IFrame Properties', // MISSING + toolbar: 'IFrame' // MISSING +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/ru.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/ru.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/ru.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'ru', { + border: 'Показать границы фрейма', + noUrl: 'Пожалуйста, введите ссылку фрейма', + scrolling: 'Отображать полосы прокрутки', + title: 'Свойства iFrame', + toolbar: 'iFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/si.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/si.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/si.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'si', { + border: 'සැකිල්ලේ කඩයිම් ', + noUrl: 'කරුණාකර රුපයේ URL ලියන්න', + scrolling: 'සක්ක්‍රිය කරන්න', + title: 'IFrame Properties', // MISSING + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/sk.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/sk.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/sk.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'sk', { + border: 'Zobraziť rám frame-u', + noUrl: 'Prosím, vložte URL iframe', + scrolling: 'Povoliť skrolovanie', + title: 'Vlastnosti IFrame', + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/sl.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/sl.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/sl.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'sl', { + border: 'Pokaži mejo okvira', + noUrl: 'Prosimo, vnesite iframe URL', + scrolling: 'Omogoči scrollbars', + title: 'IFrame Lastnosti', + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/sq.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/sq.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/sq.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'sq', { + border: 'Shfaq kufirin e kornizës', + noUrl: 'Ju lutemi shkruani URL-në e iframe-it', + scrolling: 'Lejo shiritët zvarritës', + title: 'Karakteristikat e IFrame', + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/sr-latn.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/sr-latn.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/sr-latn.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'sr-latn', { + border: 'Show frame border', // MISSING + noUrl: 'Please type the iframe URL', // MISSING + scrolling: 'Enable scrollbars', // MISSING + title: 'IFrame Properties', // MISSING + toolbar: 'IFrame' // MISSING +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/sr.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/sr.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/sr.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'sr', { + border: 'Show frame border', // MISSING + noUrl: 'Please type the iframe URL', // MISSING + scrolling: 'Enable scrollbars', // MISSING + title: 'IFrame Properties', // MISSING + toolbar: 'IFrame' // MISSING +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/sv.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/sv.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/sv.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'sv', { + border: 'Visa ramkant', + noUrl: 'Skriv in URL för iFrame', + scrolling: 'Aktivera rullningslister', + title: 'iFrame Egenskaper', + toolbar: 'iFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/th.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/th.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/th.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'th', { + border: 'Show frame border', // MISSING + noUrl: 'Please type the iframe URL', // MISSING + scrolling: 'Enable scrollbars', // MISSING + title: 'IFrame Properties', // MISSING + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/tr.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/tr.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/tr.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'tr', { + border: 'Çerceve sınırlarını göster', + noUrl: 'Lütfen IFrame köprü (URL) bağlantısını yazın', + scrolling: 'Kaydırma çubuklarını aktif et', + title: 'IFrame Özellikleri', + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/tt.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/tt.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/tt.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'tt', { + border: 'Frame чикләрен күрсәтү', + noUrl: 'Please type the iframe URL', // MISSING + scrolling: 'Enable scrollbars', // MISSING + title: 'IFrame үзлекләре', + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/ug.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/ug.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/ug.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'ug', { + border: 'كاندۇك گىرۋەكلىرىنى كۆرسەت', + noUrl: 'كاندۇكنىڭ ئادرېسى(Url)نى كىرگۈزۈڭ', + scrolling: 'دومىلىما سۈرگۈچكە يول قوي', + title: 'IFrame خاسلىق', + toolbar: 'IFrame ' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/uk.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/uk.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/uk.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'uk', { + border: 'Показати рамки фрейму', + noUrl: 'Будь ласка введіть посилання для IFrame', + scrolling: 'Увімкнути прокрутку', + title: 'Налаштування для IFrame', + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/vi.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/vi.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/vi.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'vi', { + border: 'Hiển thị viền khung', + noUrl: 'Vui lòng nhập địa chỉ iframe', + scrolling: 'Kích hoạt thanh cuộn', + title: 'Thuộc tính iframe', + toolbar: 'Iframe' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/zh-cn.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/zh-cn.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/zh-cn.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'zh-cn', { + border: '显示框架边框', + noUrl: '请输入框架的 URL', + scrolling: '允许滚动条', + title: 'IFrame 属性', + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/lang/zh.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/lang/zh.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/lang/zh.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,11 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang( 'iframe', 'zh', { + border: '顯示框架框線', + noUrl: '請輸入 iframe URL', + scrolling: '啟用捲軸列', + title: 'IFrame 屬性', + toolbar: 'IFrame' +} ); Index: lams_central/web/ckeditor/plugins/iframe/plugin.js =================================================================== diff -u --- lams_central/web/ckeditor/plugins/iframe/plugin.js (revision 0) +++ lams_central/web/ckeditor/plugins/iframe/plugin.js (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -0,0 +1,85 @@ +/** + * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + * For licensing, see LICENSE.md or http://ckeditor.com/license + */ + +( function() { + CKEDITOR.plugins.add( 'iframe', { + requires: 'dialog,fakeobjects', + // jscs:disable maximumLineLength + 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,tt,ug,uk,vi,zh,zh-cn', // %REMOVE_LINE_CORE% + // jscs:enable maximumLineLength + icons: 'iframe', // %REMOVE_LINE_CORE% + hidpi: true, // %REMOVE_LINE_CORE% + onLoad: function() { + CKEDITOR.addCss( 'img.cke_iframe' + + '{' + + 'background-image: url(' + CKEDITOR.getUrl( this.path + 'images/placeholder.png' ) + ');' + + 'background-position: center center;' + + 'background-repeat: no-repeat;' + + 'border: 1px solid #a9a9a9;' + + 'width: 80px;' + + 'height: 80px;' + + '}' + ); + }, + init: function( editor ) { + var pluginName = 'iframe', + lang = editor.lang.iframe, + allowed = 'iframe[align,longdesc,frameborder,height,name,scrolling,src,title,width]'; + + if ( editor.plugins.dialogadvtab ) + allowed += ';iframe' + editor.plugins.dialogadvtab.allowedContent( { id: 1, classes: 1, styles: 1 } ); + + CKEDITOR.dialog.add( pluginName, this.path + 'dialogs/iframe.js' ); + editor.addCommand( pluginName, new CKEDITOR.dialogCommand( pluginName, { + allowedContent: allowed, + requiredContent: 'iframe' + } ) ); + + editor.ui.addButton && editor.ui.addButton( 'Iframe', { + label: lang.toolbar, + command: pluginName, + toolbar: 'insert,80' + } ); + + editor.on( 'doubleclick', function( evt ) { + var element = evt.data.element; + if ( element.is( 'img' ) && element.data( 'cke-real-element-type' ) == 'iframe' ) + evt.data.dialog = 'iframe'; + } ); + + if ( editor.addMenuItems ) { + editor.addMenuItems( { + iframe: { + label: lang.title, + command: 'iframe', + group: 'image' + } + } ); + } + + // If the "contextmenu" plugin is loaded, register the listeners. + if ( editor.contextMenu ) { + editor.contextMenu.addListener( function( element ) { + if ( element && element.is( 'img' ) && element.data( 'cke-real-element-type' ) == 'iframe' ) + return { iframe: CKEDITOR.TRISTATE_OFF }; + } ); + } + }, + afterInit: function( editor ) { + var dataProcessor = editor.dataProcessor, + dataFilter = dataProcessor && dataProcessor.dataFilter; + + if ( dataFilter ) { + dataFilter.addRules( { + elements: { + iframe: function( element ) { + return editor.createFakeParserElement( element, 'cke_iframe', 'iframe', true ); + } + } + } ); + } + } + } ); +} )(); Index: lams_central/web/includes/javascript/ckconfig_custom.js =================================================================== diff -u -rb9999690450e2a6e5730a765d39eb36da5c381b7 -rd6f46c0c7b5236b78d0f6ca27dbe517202d6fc95 --- lams_central/web/includes/javascript/ckconfig_custom.js (.../ckconfig_custom.js) (revision b9999690450e2a6e5730a765d39eb36da5c381b7) +++ lams_central/web/includes/javascript/ckconfig_custom.js (.../ckconfig_custom.js) (revision d6f46c0c7b5236b78d0f6ca27dbe517202d6fc95) @@ -1,6 +1,6 @@ CKEDITOR.config.toolbar_Default = [ ['Source','-','Maximize', 'Preview','PasteFromWord','Undo','Redo','Bold','Italic','Underline', '-','Subscript','Superscript','NumberedList','BulletedList','-','Outdent','Indent','JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock','TextColor','BGColor','equation','-','Skype'], - ['Paint_Button','MoviePlayer','Kaltura','Image','Link','Table','HorizontalRule','Smiley','SpecialChar','Templates','Format','Font','FontSize','About'] + ['Paint_Button','MoviePlayer','Kaltura','Image','Link','Iframe','Table','HorizontalRule','Smiley','SpecialChar','Templates','Format','Font','FontSize','About'] ] ; // removing Video Recorder from default tool bar LDEV-2961 // To include it back, just add 'VideoRecorder' in between the MoviePlayer and Kaltura @@ -44,7 +44,7 @@ CKEDITOR.config.toolbar_CustomPedplanner = [ ['Source','-','Maximize','Preview','PasteFromWord','Bold','Italic','Underline', '-','NumberedList','BulletedList','-','Outdent','Indent','JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock','TextColor','BGColor','equation'], - ['Image','Link','Table','Smiley','Font','FontSize'] + ['Image','Link','Iframe','Table','Smiley','Font','FontSize'] ] ; CKEDITOR.config.toolbar_LessonDescription = [ @@ -57,15 +57,15 @@ ] ; -CKEDITOR.config.contentsCss = CKEDITOR.basePath + '../css/defaultHTML_learner.css' ; +CKEDITOR.config.contentsCss = CKEDITOR.basePath + '../css/defaultHTML_learner.css'; //CKEDITOR.config.skin = 'office2013' ; CKEDITOR.config.disableNativeSpellChecker = false; CKEDITOR.config.browserContextMenuOnCtrl = true; CKEDITOR.config.templates = CKEDITOR.basePath + '../www/htmltemplates.xml'; CKEDITOR.config.format_tags = 'div;h1;h2;h3;h4;h5;h6;pre;address;p' ; -CKEDITOR.config.enterMode = 'div' ; -CKEDITOR.plugins.addExternal('wikilink', CKEDITOR.basePath + '../tool/lawiki10/wikilink/', 'plugin.js') ; -CKEDITOR.config.extraPlugins = 'kaltura,wikilink,equation,paint,movieplayer,skype' ; +CKEDITOR.config.enterMode = 'div'; +CKEDITOR.plugins.addExternal('wikilink', CKEDITOR.basePath + '../tool/lawiki10/wikilink/', 'plugin.js'); +CKEDITOR.config.extraPlugins = 'kaltura,wikilink,equation,paint,movieplayer,skype,iframe'; CKEDITOR.config.enterMode = CKEDITOR.ENTER_DIV; CKEDITOR.config.removePlugins = 'elementspath'; CKEDITOR.config.allowedContent = true; @@ -96,4 +96,4 @@ f.data.dataValue = tempDiv.innerHTML; }); -}); +}); \ No newline at end of file