diff --git a/includes/tinymce/jscripts/tiny_mce/blank.htm b/includes/tinymce/jscripts/tiny_mce/blank.htm deleted file mode 100644 index 11420de3..00000000 --- a/includes/tinymce/jscripts/tiny_mce/blank.htm +++ /dev/null @@ -1,10 +0,0 @@ - - -
-]*>/gi,"[quote]");rep(/<\/blockquote>/gi,"[/quote]");rep(/
/gi,"\n");rep(/
/gi,"\n");rep(/
/gi,"\n");rep(//gi,"");rep(/<\/p>/gi,"\n");rep(/ /gi," ");rep(/"/gi,"\"");rep(/</gi,"<");rep(/>/gi,">");rep(/&/gi,"&");return s;},_punbb_bbcode2html:function(s){s=tinymce.trim(s);function rep(re,str){s=s.replace(re,str);};rep(/\n/gi,"
");rep(/\[b\]/gi,"");rep(/\[\/b\]/gi,"");rep(/\[i\]/gi,"");rep(/\[\/i\]/gi,"");rep(/\[u\]/gi,"");rep(/\[\/u\]/gi,"");rep(/\[url=([^\]]+)\](.*?)\[\/url\]/gi,"$2");rep(/\[url\](.*?)\[\/url\]/gi,"$1");rep(/\[img\](.*?)\[\/img\]/gi,"");rep(/\[color=(.*?)\](.*?)\[\/color\]/gi,"$2");rep(/\[code\](.*?)\[\/code\]/gi,"$1 ");rep(/\[quote.*?\](.*?)\[\/quote\]/gi,"$1 ");return s;}});tinymce.PluginManager.add('bbcode',tinymce.plugins.BBCodePlugin);})(); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/bbcode/editor_plugin_src.js b/includes/tinymce/jscripts/tiny_mce/plugins/bbcode/editor_plugin_src.js new file mode 100644 index 00000000..1d7493e2 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/bbcode/editor_plugin_src.js @@ -0,0 +1,117 @@ +/** + * $Id: editor_plugin_src.js 201 2007-02-12 15:56:56Z spocke $ + * + * @author Moxiecode + * @copyright Copyright © 2004-2008, Moxiecode Systems AB, All rights reserved. + */ + +(function() { + tinymce.create('tinymce.plugins.BBCodePlugin', { + init : function(ed, url) { + var t = this, dialect = ed.getParam('bbcode_dialect', 'punbb').toLowerCase(); + + ed.onBeforeSetContent.add(function(ed, o) { + o.content = t['_' + dialect + '_bbcode2html'](o.content); + }); + + ed.onPostProcess.add(function(ed, o) { + if (o.set) + o.content = t['_' + dialect + '_bbcode2html'](o.content); + + if (o.get) + o.content = t['_' + dialect + '_html2bbcode'](o.content); + }); + }, + + getInfo : function() { + return { + longname : 'BBCode Plugin', + author : 'Moxiecode Systems AB', + authorurl : 'http://tinymce.moxiecode.com', + infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/bbcode', + version : tinymce.majorVersion + "." + tinymce.minorVersion + }; + }, + + // Private methods + + // HTML -> BBCode in PunBB dialect + _punbb_html2bbcode : function(s) { + s = tinymce.trim(s); + + function rep(re, str) { + s = s.replace(re, str); + }; + + // example: to [b] + rep(/(.*?)<\/a>/gi,"[url=$1]$2[/url]"); + rep(/ (.*?)<\/font>/gi,"[code][color=$1]$2[/color][/code]"); + rep(/ (.*?)<\/font>/gi,"[quote][color=$1]$2[/color][/quote]"); + rep(/ (.*?)<\/font>/gi,"[code][color=$1]$2[/color][/code]"); + rep(/ (.*?)<\/font>/gi,"[quote][color=$1]$2[/color][/quote]"); + rep(/(.*?)<\/span>/gi,"[color=$1]$2[/color]"); + rep(/ (.*?)<\/font>/gi,"[color=$1]$2[/color]"); + rep(/(.*?)<\/span>/gi,"[size=$1]$2[/size]"); + rep(/(.*?)<\/font>/gi,"$1"); + rep(/ /gi,"[img]$1[/img]"); + rep(/(.*?)<\/span>/gi,"[code]$1[/code]"); + rep(/(.*?)<\/span>/gi,"[quote]$1[/quote]"); + rep(/(.*?)<\/strong>/gi,"[code][b]$1[/b][/code]"); + rep(/(.*?)<\/strong>/gi,"[quote][b]$1[/b][/quote]"); + rep(/(.*?)<\/em>/gi,"[code][i]$1[/i][/code]"); + rep(/(.*?)<\/em>/gi,"[quote][i]$1[/i][/quote]"); + rep(/(.*?)<\/u>/gi,"[code][u]$1[/u][/code]"); + rep(/(.*?)<\/u>/gi,"[quote][u]$1[/u][/quote]"); + rep(/<\/(strong|b)>/gi,"[/b]"); + rep(/<(strong|b)>/gi,"[b]"); + rep(/<\/(em|i)>/gi,"[/i]"); + rep(/<(em|i)>/gi,"[i]"); + rep(/<\/u>/gi,"[/u]"); + rep(/(.*?)<\/span>/gi,"[u]$1[/u]"); + rep(//gi,"[u]"); + rep(/ ]*>/gi,"[quote]"); + rep(/<\/blockquote>/gi,"[/quote]"); + rep(/
/gi,"\n"); + rep(/
/gi,"\n"); + rep(/
/gi,"\n"); + rep(//gi,""); + rep(/<\/p>/gi,"\n"); + rep(/ /gi," "); + rep(/"/gi,"\""); + rep(/</gi,"<"); + rep(/>/gi,">"); + rep(/&/gi,"&"); + + return s; + }, + + // BBCode -> HTML from PunBB dialect + _punbb_bbcode2html : function(s) { + s = tinymce.trim(s); + + function rep(re, str) { + s = s.replace(re, str); + }; + + // example: [b] to + rep(/\n/gi,"
"); + rep(/\[b\]/gi,""); + rep(/\[\/b\]/gi,""); + rep(/\[i\]/gi,""); + rep(/\[\/i\]/gi,""); + rep(/\[u\]/gi,""); + rep(/\[\/u\]/gi,""); + rep(/\[url=([^\]]+)\](.*?)\[\/url\]/gi,"$2"); + rep(/\[url\](.*?)\[\/url\]/gi,"$1"); + rep(/\[img\](.*?)\[\/img\]/gi,""); + rep(/\[color=(.*?)\](.*?)\[\/color\]/gi,"$2"); + rep(/\[code\](.*?)\[\/code\]/gi,"$1 "); + rep(/\[quote.*?\](.*?)\[\/quote\]/gi,"$1 "); + + return s; + } + }); + + // Register plugin + tinymce.PluginManager.add('bbcode', tinymce.plugins.BBCodePlugin); +})(); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/compat2x/editor_plugin.js b/includes/tinymce/jscripts/tiny_mce/plugins/compat2x/editor_plugin.js new file mode 100644 index 00000000..02a1da8b --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/compat2x/editor_plugin.js @@ -0,0 +1 @@ +(function(){var DOM=tinymce.DOM,Event=tinymce.dom.Event,each=tinymce.each,is=tinymce.is;tinymce.create('tinymce.plugins.Compat2x',{getInfo:function(){return{longname:'Compat2x',author:'Moxiecode Systems AB',authorurl:'http://tinymce.moxiecode.com',infourl:'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/compat2x',version:tinyMCE.majorVersion+"."+tinyMCE.minorVersion};}});(function(){tinymce.extend(tinyMCE,{addToLang:function(p,l){each(l,function(v,k){tinyMCE.i18n[(tinyMCE.settings.language||'en')+'.'+(p?p+'_':'')+k]=v;});},getInstanceById:function(n){return this.get(n);}});})();(function(){var EditorManager=tinymce.EditorManager;tinyMCE.instances={};tinyMCE.plugins={};tinymce.PluginManager.onAdd.add(function(pm,n,p){tinyMCE.plugins[n]=p;});tinyMCE.majorVersion=tinymce.majorVersion;tinyMCE.minorVersion=tinymce.minorVersion;tinyMCE.releaseDate=tinymce.releaseDate;tinyMCE.baseURL=tinymce.baseURL;tinyMCE.isIE=tinyMCE.isMSIE=tinymce.isIE||tinymce.isOpera;tinyMCE.isMSIE5=tinymce.isIE;tinyMCE.isMSIE5_0=tinymce.isIE;tinyMCE.isMSIE7=tinymce.isIE;tinyMCE.isGecko=tinymce.isGecko;tinyMCE.isSafari=tinymce.isWebKit;tinyMCE.isOpera=tinymce.isOpera;tinyMCE.isMac=false;tinyMCE.isNS7=false;tinyMCE.isNS71=false;tinyMCE.compat=true;TinyMCE_Engine=tinyMCE;tinymce.extend(tinyMCE,{getParam:function(n,dv){return this.activeEditor.getParam(n,dv);},addEvent:function(e,na,f,sc){tinymce.dom.Event.add(e,na,f,sc||this);},getControlHTML:function(n){return EditorManager.activeEditor.controlManager.createControl(n);},loadCSS:function(u){tinymce.DOM.loadCSS(u);},importCSS:function(doc,u){if(doc==document)this.loadCSS(u);else new tinymce.dom.DOMUtils(doc).loadCSS(u);},log:function(){console.debug.apply(console,arguments);},getLang:function(n,dv){var v=EditorManager.activeEditor.getLang(n.replace(/^lang_/g,''),dv);if(/^[0-9\-.]+$/g.test(v))return parseInt(v);return v;},isInstance:function(o){return o!=null&&typeof(o)=="object"&&o.execCommand;},triggerNodeChange:function(){EditorManager.activeEditor.nodeChanged();},regexpReplace:function(in_str,reg_exp,replace_str,opts){var re;if(in_str==null)return in_str;if(typeof(opts)=="undefined")opts='g';re=new RegExp(reg_exp,opts);return in_str.replace(re,replace_str);},trim:function(s){return tinymce.trim(s);},xmlEncode:function(s){return tinymce.DOM.encode(s);},explode:function(s,d){var o=[];tinymce.each(s.split(d),function(v){if(v!='')o.push(v);});return o;},switchClass:function(id,cls){var b;if(/^mceButton/.test(cls)){b=EditorManager.activeEditor.controlManager.get(id);if(!b)return;switch(cls){case"mceButtonNormal":b.setDisabled(false);b.setActive(false);return;case"mceButtonDisabled":b.setDisabled(true);return;case"mceButtonSelected":b.setActive(true);b.setDisabled(false);return;}}},addCSSClass:function(e,n,b){return tinymce.DOM.addClass(e,n,b);},hasCSSClass:function(e,n){return tinymce.DOM.hasClass(e,n);},removeCSSClass:function(e,n){return tinymce.DOM.removeClass(e,n);},getCSSClasses:function(){var cl=EditorManager.activeEditor.dom.getClasses(),o=[];each(cl,function(c){o.push(c['class']);});return o;},setWindowArg:function(n,v){EditorManager.activeEditor.windowManager.params[n]=v;},getWindowArg:function(n,dv){var wm=EditorManager.activeEditor.windowManager,v;v=wm.getParam(n);if(v==='')return'';return v||wm.getFeature(n)||dv;},getParentNode:function(n,f){return this._getDOM().getParent(n,f);},selectElements:function(n,na,f){var i,a=[],nl,x;for(x=0,na=na.split(',');x';}return "";}function TinyMCE_emotions_execCommand(editor_id,element,command,user_interface,value){switch(command){case "mceEmotion":var template=new Array();template['file']='../../plugins/emotions/emotions.htm';template['width']=150;template['height']=180;tinyMCE.openWindow(template,{editor_id:editor_id});return true;}return false;} \ No newline at end of file +(function(){tinymce.create('tinymce.plugins.EmotionsPlugin',{init:function(ed,url){ed.addCommand('mceEmotion',function(){ed.windowManager.open({file:url+'/emotions.htm',width:250+parseInt(ed.getLang('emotions.delta_width',0)),height:160+parseInt(ed.getLang('emotions.delta_height',0)),inline:1},{plugin_url:url});});ed.addButton('emotions',{title:'emotions.emotions_desc',cmd:'mceEmotion'});},getInfo:function(){return{longname:'Emotions',author:'Moxiecode Systems AB',authorurl:'http://tinymce.moxiecode.com',infourl:'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/emotions',version:tinymce.majorVersion+"."+tinymce.minorVersion};}});tinymce.PluginManager.add('emotions',tinymce.plugins.EmotionsPlugin);})(); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/editor_plugin_src.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/editor_plugin_src.js index da8e5c42..df0d370a 100644 --- a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/editor_plugin_src.js +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/editor_plugin_src.js @@ -1,36 +1,40 @@ -/* Import plugin specific language pack */ -tinyMCE.importPluginLanguagePack('emotions', 'en,sv,zh_cn,cs,fa,fr_ca,fr,de'); - -/** - * Returns the HTML contents of the emotions control. - */ -function TinyMCE_emotions_getControlHTML(control_name) { - switch (control_name) { - case "emotions": - return ''; - } - - return ""; -} - -/** - * Executes the mceEmotion command. - */ -function TinyMCE_emotions_execCommand(editor_id, element, command, user_interface, value) { - // Handle commands - switch (command) { - case "mceEmotion": - var template = new Array(); - - template['file'] = '../../plugins/emotions/emotions.htm'; // Relative to theme - template['width'] = 150; - template['height'] = 180; - - tinyMCE.openWindow(template, {editor_id : editor_id}); - - return true; - } - - // Pass to next handler in chain - return false; -} +/** + * $Id: editor_plugin_src.js 520 2008-01-07 16:30:32Z spocke $ + * + * @author Moxiecode + * @copyright Copyright © 2004-2008, Moxiecode Systems AB, All rights reserved. + */ + +(function() { + tinymce.create('tinymce.plugins.EmotionsPlugin', { + init : function(ed, url) { + // Register commands + ed.addCommand('mceEmotion', function() { + ed.windowManager.open({ + file : url + '/emotions.htm', + width : 250 + parseInt(ed.getLang('emotions.delta_width', 0)), + height : 160 + parseInt(ed.getLang('emotions.delta_height', 0)), + inline : 1 + }, { + plugin_url : url + }); + }); + + // Register buttons + ed.addButton('emotions', {title : 'emotions.emotions_desc', cmd : 'mceEmotion'}); + }, + + getInfo : function() { + return { + longname : 'Emotions', + author : 'Moxiecode Systems AB', + authorurl : 'http://tinymce.moxiecode.com', + infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/emotions', + version : tinymce.majorVersion + "." + tinymce.minorVersion + }; + } + }); + + // Register plugin + tinymce.PluginManager.add('emotions', tinymce.plugins.EmotionsPlugin); +})(); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/emotions.htm b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/emotions.htm index 32411c8b..8110ee02 100644 --- a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/emotions.htm +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/emotions.htm @@ -1,45 +1,41 @@ - - - {$lang_insert_emotions_title} - - - - - - - + + + +{#emotions_dlg.title} + + ++ + + + + diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/emotions.gif b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/emotions.gif deleted file mode 100644 index d34f0e0b..00000000 Binary files a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/emotions.gif and /dev/null differ diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/readme.txt b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/readme.txt deleted file mode 100644 index cc2cf3fe..00000000 --- a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/readme.txt +++ /dev/null @@ -1,2 +0,0 @@ -These emotions where taken from Mozilla Thunderbird. -I hope they don't get angry if I use them here after all this is a open source project aswell. diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-cool.gif b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-cool.gif deleted file mode 100644 index 1e2c1d62..00000000 Binary files a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-cool.gif and /dev/null differ diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-cry.gif b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-cry.gif deleted file mode 100644 index e0dcf8a8..00000000 Binary files a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-cry.gif and /dev/null differ diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-embarassed.gif b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-embarassed.gif deleted file mode 100644 index 8e3f07a5..00000000 Binary files a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-embarassed.gif and /dev/null differ diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-foot-in-mouth.gif b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-foot-in-mouth.gif deleted file mode 100644 index b3e47cc3..00000000 Binary files a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-foot-in-mouth.gif and /dev/null differ diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-frown.gif b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-frown.gif deleted file mode 100644 index 9335e994..00000000 Binary files a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-frown.gif and /dev/null differ diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-innocent.gif b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-innocent.gif deleted file mode 100644 index cdb72568..00000000 Binary files a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-innocent.gif and /dev/null differ diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-kiss.gif b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-kiss.gif deleted file mode 100644 index 242c38c1..00000000 Binary files a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-kiss.gif and /dev/null differ diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-laughing.gif b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-laughing.gif deleted file mode 100644 index 09a9ec7e..00000000 Binary files a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-laughing.gif and /dev/null differ diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-money-mouth.gif b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-money-mouth.gif deleted file mode 100644 index 12b1138a..00000000 Binary files a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-money-mouth.gif and /dev/null differ diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-sealed.gif b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-sealed.gif deleted file mode 100644 index 76002b2f..00000000 Binary files a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-sealed.gif and /dev/null differ diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-smile.gif b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-smile.gif deleted file mode 100644 index 8cf2b5da..00000000 Binary files a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-smile.gif and /dev/null differ diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-surprised.gif b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-surprised.gif deleted file mode 100644 index ece78a39..00000000 Binary files a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-surprised.gif and /dev/null differ diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-tongue-out.gif b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-tongue-out.gif deleted file mode 100644 index 16b13a5a..00000000 Binary files a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-tongue-out.gif and /dev/null differ diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-undecided.gif b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-undecided.gif deleted file mode 100644 index 2aec732f..00000000 Binary files a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-undecided.gif and /dev/null differ diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-wink.gif b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-wink.gif deleted file mode 100644 index 5d975f67..00000000 Binary files a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-wink.gif and /dev/null differ diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-yell.gif b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-yell.gif deleted file mode 100644 index 7719bc43..00000000 Binary files a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-yell.gif and /dev/null differ diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-cool.gif b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-cool.gif new file mode 100644 index 00000000..ba90cc36 Binary files /dev/null and b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-cool.gif differ diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-cry.gif b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-cry.gif new file mode 100644 index 00000000..74d897a4 Binary files /dev/null and b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-cry.gif differ diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-embarassed.gif b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-embarassed.gif new file mode 100644 index 00000000..963a96b8 Binary files /dev/null and b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-embarassed.gif differ diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif new file mode 100644 index 00000000..16f68cc1 Binary files /dev/null and b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif differ diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-frown.gif b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-frown.gif new file mode 100644 index 00000000..716f55e1 Binary files /dev/null and b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-frown.gif differ diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-innocent.gif b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-innocent.gif new file mode 100644 index 00000000..334d49e0 Binary files /dev/null and b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-innocent.gif differ diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-kiss.gif b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-kiss.gif new file mode 100644 index 00000000..4efd549e Binary files /dev/null and b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-kiss.gif differ diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-laughing.gif b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-laughing.gif new file mode 100644 index 00000000..1606c119 Binary files /dev/null and b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-laughing.gif differ diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif new file mode 100644 index 00000000..ca2451e1 Binary files /dev/null and b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif differ diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-sealed.gif b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-sealed.gif new file mode 100644 index 00000000..b33d3cca Binary files /dev/null and b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-sealed.gif differ diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-smile.gif b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-smile.gif new file mode 100644 index 00000000..e6a9e60d Binary files /dev/null and b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-smile.gif differ diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-surprised.gif b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-surprised.gif new file mode 100644 index 00000000..cb99cdd9 Binary files /dev/null and b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-surprised.gif differ diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif new file mode 100644 index 00000000..2075dc16 Binary files /dev/null and b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif differ diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-undecided.gif b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-undecided.gif new file mode 100644 index 00000000..bef7e257 Binary files /dev/null and b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-undecided.gif differ diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-wink.gif b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-wink.gif new file mode 100644 index 00000000..9faf1aff Binary files /dev/null and b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-wink.gif differ diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-yell.gif b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-yell.gif new file mode 100644 index 00000000..648e6e87 Binary files /dev/null and b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-yell.gif differ diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/js/emotions.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/js/emotions.js new file mode 100644 index 00000000..c5493670 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/js/emotions.js @@ -0,0 +1,22 @@ +tinyMCEPopup.requireLangPack(); + +var EmotionsDialog = { + init : function(ed) { + tinyMCEPopup.resizeToInnerSize(); + }, + + insert : function(file, title) { + var ed = tinyMCEPopup.editor, dom = ed.dom; + + tinyMCEPopup.execCommand('mceInsertContent', false, dom.createHTML('img', { + src : tinyMCEPopup.getWindowArg('plugin_url') + '/img/' + file, + alt : ed.getLang(title), + title : ed.getLang(title), + border : 0 + })); + + tinyMCEPopup.close(); + } +}; + +tinyMCEPopup.onInit.add(EmotionsDialog.init, EmotionsDialog); diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/ar_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/ar_dlg.js new file mode 100644 index 00000000..4a30cace --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/ar_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('ar.emotions_dlg',{ +title:"\u0625\u062F\u0631\u0627\u062C \u0627\u0628\u062A\u0633\u0627\u0645\u0629", +desc:"\u0627\u0644\u0625\u0628\u062A\u0633\u0627\u0645\u0627\u062A", +cool:"\u0647\u0627\u062F\u0626", +cry:"\u0635\u0631\u062E\u0629", +embarassed:"\u0645\u062D\u0631\u062C", +foot_in_mouth:"\u0641\u064A \u0627\u0644\u0642\u062F\u0645 \u0648\u0627\u0644\u0641\u0645", +frown:"\u0639\u0628\u0648\u0633", +innocent:"\u0628\u0631\u064A\u0621", +kiss:"\u0642\u0628\u0644\u0629", +laughing:"\u0636\u062D\u0643", +money_mouth:"\u0627\u0644\u0645\u0627\u0644 \u0627\u0644\u0641\u0645", +sealed:"\u0645\u063A\u0644\u0642", +smile:"\u0627\u0628\u062A\u0633\u0627\u0645\u0629", +surprised:"\u0645\u0646\u062F\u0647\u0634", +tongue_out:"\u0644\u0633\u0627\u0646 \u062E\u0627\u0631\u062C", +undecided:"\u0645\u062A\u0631\u062F\u062F", +wink:"\u063A\u0645\u0632\u0629", +yell:"\u0647\u062A\u0627\u0641" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/bg_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/bg_dlg.js new file mode 100644 index 00000000..b612cbc2 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/bg_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('bg.emotions_dlg',{ +title:"\u0412\u043C\u044A\u043A\u043D\u0438 \u0435\u043C\u043E\u0442\u0438\u043A\u043E\u043D", +desc:"\u0415\u043C\u043E\u0442\u0438\u043A\u043E\u043D\u0438", +cool:"Cool", +cry:"Cry", +embarassed:"Embarassed", +foot_in_mouth:"Foot in mouth", +frown:"Frown", +innocent:"Innocent", +kiss:"Kiss", +laughing:"Laughing", +money_mouth:"Money mouth", +sealed:"Sealed", +smile:"Smile", +surprised:"Surprised", +tongue_out:"Tongue out", +undecided:"Undecided", +wink:"Wink", +yell:"Yell" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/br_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/br_dlg.js new file mode 100644 index 00000000..ba9e4550 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/br_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('br.emotions_dlg',{ +title:"Inserir emoticon", +desc:"Emoticons", +cool:"Fixe", +cry:"Chor\u00C3\u0083\u00C2\u00A3o", +embarassed:"Embara\u00C3\u0083\u00C2\u00A7ado", +foot_in_mouth:"Disse asneira", +frown:"Decep\u00C3\u0083\u00C2\u00A7\u00C3\u0083\u00C2\u00A3o", +innocent:"Inocente", +kiss:"Beijo", +laughing:"Riso", +money_mouth:"Avarez", +sealed:"Boca Fechada", +smile:"Sorriso", +surprised:"Surpresa", +tongue_out:"L\u00C3\u0083\u00C2\u00ADngua de fora", +undecided:"Indeciso", +wink:"Piscadela", +yell:"Irado" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/bs_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/bs_dlg.js new file mode 100644 index 00000000..d5dad36b --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/bs_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('bs.emotions_dlg',{ +title:"Umetni emociju", +desc:"Emocije", +cool:"Cool", +cry:"Pla\u010D", +embarassed:"Sramim se", +foot_in_mouth:"Izlanuo se", +frown:"Mr\u0161ti se", +innocent:"Nevina\u0161ce", +kiss:"Poljubac", +laughing:"Smijeh", +money_mouth:"Bogata\u0161", +sealed:"\u0160utim", +smile:"Osmijeh", +surprised:"Iznena\u0111en", +tongue_out:"Belji se", +undecided:"Neodlu\u010Dan", +wink:"Namigiva", +yell:"Vi\u010De" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/ca_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/ca_dlg.js new file mode 100644 index 00000000..68445510 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/ca_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('ca.emotions_dlg',{ +title:"Insereix emoticona", +desc:"Emoticones", +cool:"Ben parit", +cry:"Plor", +embarassed:"Vergonya", +foot_in_mouth:"Muts i a la g\u00E0bia", +frown:"Indiferent", +innocent:"Innocent", +kiss:"Pet\u00F3", +laughing:"Rialla", +money_mouth:"Boca de diner", +sealed:"Segellada", +smile:"Somriure", +surprised:"Sorpresa", +tongue_out:"Treu la llengua", +undecided:"Indecisa", +wink:"Pica l'ullet", +yell:"Crit" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/ch_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/ch_dlg.js new file mode 100644 index 00000000..5180c43f --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/ch_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('ch.emotions_dlg',{ +title:"\u63D2\u5165\u8868\u60C5", +desc:"\u8868\u60C5\u6E05\u5355", +cool:"\u51B7\u9177", +cry:"\u54ED\u6CE3", +embarassed:"\u5C34\u5C2C", +foot_in_mouth:"\u54A7\u5634", +frown:"\u76B1\u7709", +innocent:"\u5929\u771F", +kiss:"\u543B", +laughing:"\u5927\u7B11", +money_mouth:"\u53D1\u8D22", +sealed:"\u4FDD\u5BC6", +smile:"\u5FAE\u7B11", +surprised:"\u60CA\u5413", +tongue_out:"\u5410\u820C\u5934", +undecided:"\u601D\u8003", +wink:"\u7728\u773C", +yell:"\u53EB\u56B7" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/cs.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/cs.js deleted file mode 100644 index 0fadf38e..00000000 --- a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/cs.js +++ /dev/null @@ -1,4 +0,0 @@ -// UK lang variables - -tinyMCELang['lang_insert_emotions_title'] = 'Vložit emotikon'; -tinyMCELang['lang_emotions_desc'] = 'Emotikony'; diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/cs_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/cs_dlg.js new file mode 100644 index 00000000..7ce422da --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/cs_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('cs.emotions_dlg',{ +title:"Vlo\u017Eit emotikon", +desc:"Emotikony", +cool:"Cool", +cry:"Cry", +embarassed:"Embarassed", +foot_in_mouth:"Foot in mouth", +frown:"Frown", +innocent:"Innocent", +kiss:"Kiss", +laughing:"Laughing", +money_mouth:"Money mouth", +sealed:"Sealed", +smile:"Smile", +surprised:"Surprised", +tongue_out:"Tongue out", +undecided:"Undecided", +wink:"Wink", +yell:"Yell" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/da_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/da_dlg.js new file mode 100644 index 00000000..0e37b795 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/da_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('da.emotions_dlg',{ +title:"Inds\u00E6t hum\u00F8rikon", +desc:"Hum\u00F8rikoner", +cool:"Cool", +cry:"Gr\u00E6de", +embarassed:"Flov", +foot_in_mouth:"Fod i munden", +frown:"Forskr\u00E6kket", +innocent:"Uskyldig", +kiss:"Kys", +laughing:"Grine", +money_mouth:"Pengemund", +sealed:"Lukket", +smile:"Smil", +surprised:"Overrasket", +tongue_out:"Tunge ud", +undecided:"Ubeslutsom", +wink:"Vink", +yell:"R\u00E5be" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/de.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/de.js deleted file mode 100644 index fcec1317..00000000 --- a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/de.js +++ /dev/null @@ -1,6 +0,0 @@ -// DE lang variables - - -tinyMCELang['lang_insert_emotions_title'] = 'Emotion einfügen'; -tinyMCELang['lang_emotions_desc'] = 'Emotion'; - diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/de_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/de_dlg.js new file mode 100644 index 00000000..3940a2a5 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/de_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('de.emotions_dlg',{ +title:"Smiley einf\u00FCgen", +desc:"Smilies", +cool:"Cool", +cry:"Weinend", +embarassed:"Verlegen", +foot_in_mouth:"Reingefallen", +frown:"Stirnrunzelnd", +innocent:"Unschuldig", +kiss:"K\u00FCssend", +laughing:"Lachend", +money_mouth:"Geld", +sealed:"Verschlossen", +smile:"L\u00E4chelnd", +surprised:"\u00DCberrascht", +tongue_out:"Zunge raus", +undecided:"Unentschlossen", +wink:"Zwinkernd", +yell:"Br\u00FCllend" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/dv_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/dv_dlg.js new file mode 100644 index 00000000..94d9d2df --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/dv_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('dv.emotions_dlg',{ +title:"Insert emotion", +desc:"Emotions", +cool:"Cool", +cry:"Cry", +embarassed:"Embarassed", +foot_in_mouth:"Foot in mouth", +frown:"Frown", +innocent:"Innocent", +kiss:"Kiss", +laughing:"Laughing", +money_mouth:"Money mouth", +sealed:"Sealed", +smile:"Smile", +surprised:"Surprised", +tongue_out:"Tongue out", +undecided:"Undecided", +wink:"Wink", +yell:"Yell" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/el.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/el.js deleted file mode 100644 index 91ed1b18..00000000 --- a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/el.js +++ /dev/null @@ -1,5 +0,0 @@ -// Greek lang variables by Jacaranda Bill - -tinyMCELang['lang_insert_emotions_title'] = 'ĹéóáăůăŢ ĺíüň ĺéęďíéäßďő emoticon'; -tinyMCELang['lang_emotions_desc'] = 'Ĺéęďíßäéá emoticons'; - diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/el_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/el_dlg.js new file mode 100644 index 00000000..c11a96c7 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/el_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('el.emotions_dlg',{ +title:"\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03C3\u03C5\u03BD\u03B1\u03B9\u03C3\u03B8\u03AE\u03BC\u03B1\u03C4\u03BF\u03C2", +desc:"\u03A3\u03C5\u03BD\u03B1\u03B9\u03C3\u03B8\u03AE\u03BC\u03B1\u03C4\u03B1", +cool:"\u0386\u03BD\u03B5\u03C4\u03BF\u03C2", +cry:"\u0394\u03B1\u03BA\u03C1\u03C5\u03C3\u03BC\u03AD\u03BD\u03BF\u03C2", +embarassed:"\u0391\u03BC\u03AE\u03C7\u03B1\u03BD\u03BF\u03C2", +foot_in_mouth:"\u039A\u03BB\u03C9\u03C4\u03C3\u03B9\u03AC \u03C3\u03C4\u03BF \u03C3\u03C4\u03CC\u03BC\u03B1", +frown:"\u039A\u03B1\u03C4\u03C3\u03BF\u03C5\u03C6\u03B9\u03B1\u03C3\u03BC\u03AD\u03BD\u03BF\u03C2", +innocent:"\u0391\u03B8\u03CE\u03BF\u03C2", +kiss:"\u03A6\u03B9\u03BB\u03AF", +laughing:"\u0393\u03AD\u03BB\u03B9\u03BF", +money_mouth:"\u039B\u03B5\u03C6\u03C4\u03AC \u03C9\u03C2 \u03C3\u03C4\u03CC\u03BC\u03B1", +sealed:"\u03A3\u03C6\u03C1\u03B1\u03B3\u03B9\u03C3\u03BC\u03AD\u03BD\u03BF \u03C3\u03C4\u03CC\u03BC\u03B1", +smile:"\u03A7\u03B1\u03BC\u03CC\u03B3\u03B5\u03BB\u03BF", +surprised:"\u0388\u03BA\u03C0\u03BB\u03B7\u03BA\u03C4\u03BF\u03C2", +tongue_out:"\u0393\u03BB\u03CE\u03C3\u03C3\u03B1 \u03AD\u03BE\u03C9", +undecided:"\u0391\u03BD\u03B1\u03C0\u03BF\u03C6\u03AC\u03C3\u03B9\u03C3\u03C4\u03BF\u03C2", +wink:"\u039A\u03BB\u03B5\u03AF\u03C3\u03B9\u03BC\u03BF \u03BC\u03B1\u03C4\u03B9\u03BF\u03CD", +yell:"\u03A6\u03C9\u03BD\u03AC\u03B6\u03C9" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/en.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/en.js deleted file mode 100644 index 2e350084..00000000 --- a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/en.js +++ /dev/null @@ -1,5 +0,0 @@ -// UK lang variables - -tinyMCELang['lang_insert_emotions_title'] = 'Insert emotion'; -tinyMCELang['lang_emotions_desc'] = 'Emotions'; - diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/en_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/en_dlg.js new file mode 100644 index 00000000..3b57ad9e --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/en_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('en.emotions_dlg',{ +title:"Insert emotion", +desc:"Emotions", +cool:"Cool", +cry:"Cry", +embarassed:"Embarassed", +foot_in_mouth:"Foot in mouth", +frown:"Frown", +innocent:"Innocent", +kiss:"Kiss", +laughing:"Laughing", +money_mouth:"Money mouth", +sealed:"Sealed", +smile:"Smile", +surprised:"Surprised", +tongue_out:"Tongue out", +undecided:"Undecided", +wink:"Wink", +yell:"Yell" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/es_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/es_dlg.js new file mode 100644 index 00000000..1cc3ac92 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/es_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('es.emotions_dlg',{ +title:"Insertar emoticon", +desc:"Emoticones", +cool:"Todo bien", +cry:"Llora", +embarassed:"Verg\u00C3\u0083\u00C2\u00BCenza", +foot_in_mouth:"Pie en la boca", +frown:"Triste", +innocent:"Inocente", +kiss:"Beso", +laughing:"Risa", +money_mouth:"Dinero boca", +sealed:"Sellado", +smile:"Sonrisa", +surprised:"Sorprendido", +tongue_out:"Lengua fuera", +undecided:"Indeciso", +wink:"Gui\u00F1o", +yell:"Enfadado" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/et_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/et_dlg.js new file mode 100644 index 00000000..398a4de9 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/et_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('et.emotions_dlg',{ +title:"Sisesta emotsioon", +desc:"Emotsioonid", +cool:"Lahe", +cry:"Nutt", +embarassed:"H\u00E4bitunne", +foot_in_mouth:"Jalg suus", +frown:"Kulmu kortsutamine", +innocent:"S\u00FC\u00FCtu", +kiss:"Suudlus", +laughing:"Naermine", +money_mouth:"Rahasuu", +sealed:"Suletud", +smile:"Naeratus", +surprised:"\u00DCllatunud", +tongue_out:"Keel v\u00E4ljas", +undecided:"K\u00F5hklev", +wink:"Silmapilgutus", +yell:"Karje" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/fa.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/fa.js deleted file mode 100644 index 2deb3396..00000000 --- a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/fa.js +++ /dev/null @@ -1,10 +0,0 @@ -// IR lang variables -// Persian (Farsi) language pack (for IRAN) -// By: Morteza Zafari -// Lost@LostLord.com -// http://www.LostLord.com - -tinyMCELang['lang_dir'] = 'rtl'; -tinyMCELang['lang_insert_emotions_title'] = 'اŮزŮدن Ř´Ú©Ů„Ú©'; -tinyMCELang['lang_emotions_desc'] = 'شکلکها'; - diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/fa_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/fa_dlg.js new file mode 100644 index 00000000..9c29a18b --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/fa_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('fa.emotions_dlg',{ +title:"\u062F\u0631\u062C \u0634\u0643\u0644\u0643", +desc:"\u0634\u0643\u0644\u0643 \u0647\u0627", +cool:"\u0622\u0631\u0627\u0645", +cry:"\u06AF\u0631\u06CC\u0647", +embarassed:"\u062E\u062C\u0627\u0644\u062A\u06CC", +foot_in_mouth:"\u067E\u0627 \u062F\u0631 \u062F\u0647\u0627\u0646", +frown:"\u0627\u062E\u0645", +innocent:"\u0628\u06CC \u062A\u0642\u0635\u06CC\u0631", +kiss:"\u0628\u0648\u0633\u0647", +laughing:"\u062E\u0646\u062F\u0647", +money_mouth:"\u067E\u0648\u0644 \u062F\u0631 \u062F\u0647\u0627\u0646", +sealed:"\u0645\u0647\u0631 \u0634\u062F\u0647", +smile:"\u0644\u0628\u062E\u0646\u062F", +surprised:"\u0645\u062A\u0639\u062C\u0628", +tongue_out:"\u0632\u0628\u0627\u0646 \u062F\u0631\u0627\u0632\u06CC", +undecided:"\u0645\u0631\u062F\u062F", +wink:"\u0686\u0634\u0645\u0643", +yell:"\u0641\u0631\u06CC\u0627\u062F" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/fi_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/fi_dlg.js new file mode 100644 index 00000000..b34fe0df --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/fi_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('fi.emotions_dlg',{ +title:"Lis\u00E4\u00E4 hymi\u00F6", +desc:"Hymi\u00F6t", +cool:"Cool", +cry:"Itku", +embarassed:"Nolostunut", +foot_in_mouth:"Jalka suussa", +frown:"Otsan rypistys", +innocent:"Viaton", +kiss:"Pusu", +laughing:"Nauru", +money_mouth:"Klink Klink (raha)", +sealed:"Tukittu", +smile:"Hymy", +surprised:"Yll\u00E4ttynyt", +tongue_out:"Kieli ulkona", +undecided:"P\u00E4\u00E4tt\u00E4m\u00E4t\u00F6n", +wink:"Silm\u00E4nisku", +yell:"Huuto" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/fr.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/fr.js deleted file mode 100644 index 5dedb617..00000000 --- a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/fr.js +++ /dev/null @@ -1,5 +0,0 @@ -// French lang variables by Laurent Dran - -tinyMCELang['lang_insert_emotions_title'] = 'Insèrer un émoticon'; -tinyMCELang['lang_emotions_desc'] = 'Émoticons'; - diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/fr_ca.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/fr_ca.js deleted file mode 100644 index 9836513a..00000000 --- a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/fr_ca.js +++ /dev/null @@ -1,5 +0,0 @@ -// CAN_FR lang variables - -tinyMCELang['lang_insert_emotions_title'] = 'Insérer un émoticon'; -tinyMCELang['lang_emotions_desc'] = 'Émoticons'; - diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/fr_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/fr_dlg.js new file mode 100644 index 00000000..b4757186 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/fr_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('fr.emotions_dlg',{ +title:"Ins\u00E9rer \u00E9motion", +desc:"\u00C9motions", +cool:"Cool", +cry:"En pleurs", +embarassed:"Embarass\u00E9", +foot_in_mouth:"Pied de nez", +frown:"D\u00E9\u00E7u", +innocent:"Innocent", +kiss:"Bisou", +laughing:"Rigolant", +money_mouth:"Avare", +sealed:"Bouche cousue", +smile:"Sourire", +surprised:"Surpris", +tongue_out:"Langue tir\u00E9e", +undecided:"Non d\u00E9cid\u00E9", +wink:"Clin d'oeil", +yell:"Criant" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/gl_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/gl_dlg.js new file mode 100644 index 00000000..20c507d8 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/gl_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('gl.emotions_dlg',{ +title:"Insertar emoticon", +desc:"Emoticones", +cool:"Guay", +cry:"Chora", +embarassed:"Vergo\u00F1a", +foot_in_mouth:"A que dixen", +frown:"Triste", +innocent:"Inocente", +kiss:"Beso", +laughing:"Risa", +money_mouth:"Cartos", +sealed:"Selado", +smile:"Sorriso", +surprised:"Sorprendido", +tongue_out:"Canso", +undecided:"Indeciso", +wink:"Gui\u00F1o", +yell:"Anoxado" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/he_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/he_dlg.js new file mode 100644 index 00000000..061473f0 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/he_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('he.emotions_dlg',{ +title:"\u05D4\u05D5\u05E1\u05E4\u05EA \u05E1\u05DE\u05D9\u05D9\u05DC\u05D9", +desc:"\u05E1\u05DE\u05D9\u05D9\u05DC\u05D9\u05DD", +cool:"\u05DE\u05D2\u05E0\u05D9\u05D1", +cry:"\u05D1\u05D5\u05DB\u05D4", +embarassed:"\u05E0\u05D1\u05D5\u05DA", +foot_in_mouth:"\u05E8\u05D2\u05DC \u05D1\u05E4\u05D4", +frown:"\u05DE\u05D6\u05E2\u05D9\u05E3 \u05D0\u05EA \u05D4\u05E4\u05D4", +innocent:"\u05EA\u05DE\u05D9\u05DD", +kiss:"\u05E0\u05E9\u05D9\u05E7\u05D4", +laughing:"\u05E6\u05D5\u05D7\u05E7", +money_mouth:"\u05DB\u05E1\u05E3", +sealed:"\u05D0\u05D8\u05D5\u05DD", +smile:"\u05D7\u05D9\u05D5\u05DA", +surprised:"\u05DE\u05D5\u05E4\u05EA\u05E2", +tongue_out:"\u05DC\u05E9\u05D5\u05DF \u05D1\u05D7\u05D5\u05E5", +undecided:"\u05D4\u05E1\u05E0\u05E0\u05D9", +wink:"\u05E7\u05E8\u05D9\u05E6\u05D4", +yell:"\u05E6\u05E2\u05E7\u05D4" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/hr_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/hr_dlg.js new file mode 100644 index 00000000..7d8f68af --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/hr_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('hr.emotions_dlg',{ +title:"Umetni emociju", +desc:"Emocije", +cool:"Cool", +cry:"Pla\u010D", +embarassed:"Sramim se", +foot_in_mouth:"Izlanuo se", +frown:"Mr\u0161ti se", +innocent:"Nevina\u0161ce", +kiss:"Poljubac", +laughing:"Smijeh", +money_mouth:"Bogata\u0161", +sealed:"\u0160utim", +smile:"Osmijeh", +surprised:"Iznena\u0111en", +tongue_out:"Belji se", +undecided:"Neodlu\u010Dan", +wink:"Namigiva", +yell:"Vi\u010De" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/hu_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/hu_dlg.js new file mode 100644 index 00000000..083e6abf --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/hu_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('hu.emotions_dlg',{ +title:"Hangulatjel besz\u00FAr\u00E1sa", +desc:"Hangulatjelek", +cool:"Kir\u00E1ly", +cry:"S\u00EDr\u00F3s", +embarassed:"Zavarban van", +foot_in_mouth:"L\u00E1b a sz\u00E1jban", +frown:"Rosszall", +innocent:"\u00C1rtatlan", +kiss:"Cs\u00F3k", +laughing:"Nevet\u00E9s", +money_mouth:"P\u00E9nz besz\u00E9l", +sealed:"Lakat a sz\u00E1j\u00E1n", +smile:"Vigyor", +surprised:"Meglepett", +tongue_out:"Nyelv\u00F6lt\u00E9s", +undecided:"Hat\u00E1rozatlan", +wink:"Kacsint\u00E1s", +yell:"\u00DCv\u00F6lt\u00E9s" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/ia_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/ia_dlg.js new file mode 100644 index 00000000..bea24eb3 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/ia_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('ia.emotions_dlg',{ +title:"\u63D2\u5165\u8868\u60C5", +desc:"\u8868\u60C5\u5217\u8868", +cool:"\u51B7\u9177", +cry:"\u54ED\u6CE3", +embarassed:"\u5C34\u5C2C", +foot_in_mouth:"\u54A7\u5634", +frown:"\u76B1\u7709", +innocent:"\u5929\u771F", +kiss:"\u543B", +laughing:"\u5927\u7B11", +money_mouth:"\u53D1\u8D22", +sealed:"\u4FDD\u5BC6", +smile:"\u5FAE\u7B11", +surprised:"\u60CA\u5413", +tongue_out:"\u5410\u820C\u5934", +undecided:"\u601D\u8003", +wink:"\u7728\u773C", +yell:"\u53EB\u56B7" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/ii_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/ii_dlg.js new file mode 100644 index 00000000..4242c997 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/ii_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('ii.emotions_dlg',{ +title:"\u63D2\u5165\u8868\u60C5", +desc:"\u8868\u60C5\u6E05\u5355", +cool:"\u51B7\u9177", +cry:"\u54ED\u6CE3", +embarassed:"\u5C34\u5C2C", +foot_in_mouth:"\u54A7\u5634", +frown:"\u76B1\u7709", +innocent:"\u5929\u771F", +kiss:"\u543B", +laughing:"\u5927\u7B11", +money_mouth:"\u53D1\u8D22", +sealed:"\u4FDD\u5BC6", +smile:"\u5FAE\u7B11", +surprised:"\u60CA\u5413", +tongue_out:"\u5410\u820C\u5934", +undecided:"\u601D\u8003", +wink:"\u7728\u773C", +yell:"\u53EB\u56B7" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/is_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/is_dlg.js new file mode 100644 index 00000000..11c49af4 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/is_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('is.emotions_dlg',{ +title:"Setja inn broskall", +desc:"Broskarlar", +cool:"T\u00F6ff", +cry:"Gr\u00E1tandi", +embarassed:"Skammast s\u00EDn", +foot_in_mouth:"F\u00F3tur \u00ED munni", +frown:"Frown", +innocent:"Saklaus", +kiss:"Koss", +laughing:"Hl\u00E6gjandi", +money_mouth:"Peningamunnur", +sealed:"Rennil\u00E1samunnur", +smile:"Bros", +surprised:"Hissa", +tongue_out:"Tungan \u00FAt", +undecided:"\u00D3\u00E1kve\u00F0inn", +wink:"Wink", +yell:"\u00D6skrandi" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/it.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/it.js deleted file mode 100644 index 55365162..00000000 --- a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/it.js +++ /dev/null @@ -1,5 +0,0 @@ -//IT lang variables - -tinyMCELang['lang_insert_emotions_title'] = 'Inserisci una emoticon'; -tinyMCELang['lang_emotions_desc'] = 'Emoticon'; - diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/it_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/it_dlg.js new file mode 100644 index 00000000..8b9efb78 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/it_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('it.emotions_dlg',{ +title:"Inserisci faccina", +desc:"Faccina", +cool:"Fico", +cry:"Piango", +embarassed:"Imbarazzato", +foot_in_mouth:"Piede in bocca", +frown:"Triste", +innocent:"Santarellino", +kiss:"Bacio", +laughing:"Risatona", +money_mouth:"Bocca danarosa", +sealed:"Bocca sigillata", +smile:"Sorridente", +surprised:"Sorpreso", +tongue_out:"Linguaccia", +undecided:"Indeciso", +wink:"Occhiolino", +yell:"Arrabbiato" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/ja_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/ja_dlg.js new file mode 100644 index 00000000..cf988a7f --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/ja_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('ja.emotions_dlg',{ +title:"\u8868\u60C5\u30A2\u30A4\u30B3\u30F3\u306E\u633F\u5165", +desc:"\u8868\u60C5\u30A2\u30A4\u30B3\u30F3", +cool:"Cool", +cry:"Cry", +embarassed:"Embarassed", +foot_in_mouth:"Foot in mouth", +frown:"Frown", +innocent:"Innocent", +kiss:"Kiss", +laughing:"Laughing", +money_mouth:"Money mouth", +sealed:"Sealed", +smile:"Smile", +surprised:"Surprised", +tongue_out:"Tongue out", +undecided:"Undecided", +wink:"Wink", +yell:"Yell" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/ko.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/ko.js deleted file mode 100644 index d48edc34..00000000 --- a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/ko.js +++ /dev/null @@ -1,5 +0,0 @@ -// KO lang variables - -tinyMCELang['lang_insert_emotions_title'] = 'Ŕ̸đĆĽÄÜ łÖ±â'; -tinyMCELang['lang_emotions_desc'] = 'Ŕ̸đĆĽÄÜ'; - diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/ko_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/ko_dlg.js new file mode 100644 index 00000000..91c5b6d9 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/ko_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('ko.emotions_dlg',{ +title:"\uC774\uBAA8\uD2F0\uCF58 \uC0BD\uC785", +desc:"\uC774\uBAA8\uD2F0\uCF58", +cool:"\uCFE8", +cry:"\uC6B8\uC74C", +embarassed:"\uBD80\uB044\uB7EC\uC6C0", +foot_in_mouth:"\uC2E4\uC5B8", +frown:"\uCC21\uADF8\uB9B0 \uC5BC\uAD74", +innocent:"\uCC9C\uC9C4\uB09C\uB9CC", +kiss:"Kiss", +laughing:"\uC6C3\uC74C", +money_mouth:"\uB3C8", +sealed:"\uBD09\uC778", +smile:"\uC2A4\uB9C8\uC77C", +surprised:"\uB180\uB77C\uC6C0", +tongue_out:"\uBA54\uB871", +undecided:"\uACE0\uBBFC\uD55C\uB2E4", +wink:"\uC719\uD06C", +yell:"\uC678\uCE5C\uB2E4" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/lt_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/lt_dlg.js new file mode 100644 index 00000000..f52877d0 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/lt_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('lt.emotions_dlg',{ +title:"\u012Eterpti emotikon\u0105", +desc:"Emotikonai", +cool:"J\u0117ga", +cry:"Verksmas", +embarassed:"Susig\u0117d\u0119s", +foot_in_mouth:"Koja burnoje", +frown:"Susirauk\u0119s", +innocent:"Nekaltas", +kiss:"Bu\u010Dinys", +laughing:"Juokimasis", +money_mouth:"Piniginga burna", +sealed:"Sandarus", +smile:"\u0160ypsena", +surprised:"Nusteb\u0119s", +tongue_out:"I\u0161ki\u0161tas lie\u017Euvis", +undecided:"Neapsisprend\u0119s", +wink:"Mirk\u010Diojimas", +yell:"Klyksmas" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/lv_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/lv_dlg.js new file mode 100644 index 00000000..77c612e3 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/lv_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('lv.emotions_dlg',{ +title:"Ievietot smaidi\u0146u", +desc:"Smaidi\u0146i", +cool:"V\u0113sais", +cry:"Raudul\u012Bgais", +embarassed:"Nokautr\u0113jies", +foot_in_mouth:"K\u0101jmutis", +frown:"Satraukts", +innocent:"Nevain\u012Bgs", +kiss:"Sk\u016Bpsts", +laughing:"Smejo\u0161s", +money_mouth:"Naudmutis", +sealed:"Nosl\u0113gts", +smile:"Smaid\u012Bgs", +surprised:"P\u0101rsteigts", +tongue_out:"M\u0113d\u012Bgs", +undecided:"Neizl\u0113m\u012Bgs", +wink:"Aci miedzo\u0161s", +yell:"Kliedzo\u0161s" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/mk_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/mk_dlg.js new file mode 100644 index 00000000..e4538140 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/mk_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('mk.emotions_dlg',{ +title:"\u0412\u043C\u0435\u0442\u043D\u0438 emociju", +desc:"Emocije", +cool:"Cool", +cry:"Pla\u010D", +embarassed:"Sramim se", +foot_in_mouth:"Izlanuo se", +frown:"Mr\u0161ti se", +innocent:"Nevina\u0161ce", +kiss:"Poljubac", +laughing:"Smeh", +money_mouth:"Bogata\u0161", +sealed:"\u0160utim", +smile:"Osmeh", +surprised:"Iznena\u0111en", +tongue_out:"Belji se", +undecided:"Neodlu\u010Dan", +wink:"Namigiva", +yell:"Vi\u010De" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/mn_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/mn_dlg.js new file mode 100644 index 00000000..702106ff --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/mn_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('mn.emotions_dlg',{ +title:"\u0421\u044D\u0442\u0433\u044D\u043B \u0445\u04E9\u0434\u043B\u04E9\u043B \u043E\u0440\u0443\u0443\u043B\u0430\u0445", +desc:"\u0421\u044D\u0442\u0433\u044D\u043B \u0445\u04E9\u0434\u043B\u04E9\u043B", +cool:"\u0414\u043E\u0440\u0438\u0443\u043D", +cry:"\u0423\u0439\u043B\u0430\u0445", +embarassed:"\u0421\u0430\u043D\u0434\u0430\u0440\u0441\u0430\u043D", +foot_in_mouth:"\u0425\u0443\u0443\u0440\u0442\u0430\u0433\u0434\u0430\u0445", +frown:"\u0425\u04E9\u043C\u0441\u04E9\u0433 \u0437\u0430\u043D\u0433\u0438\u0434\u0430\u0445", +innocent:"\u0411\u0443\u0440\u0443\u0443\u0433\u04AF\u0439", +kiss:"\u04AE\u043D\u0441\u044D\u0445", +laughing:"\u0418\u043D\u044D\u044D\u0445", +money_mouth:"\u041C\u04E9\u043D\u0433\u04E9", +sealed:"\u0411\u0438\u0442\u04AF\u04AF\u043C\u0436\u0438\u043B\u0441\u044D\u043D", +smile:"\u0418\u043D\u044D\u044D\u0445", +surprised:"\u0413\u0430\u0439\u0445\u0441\u0430\u043D", +tongue_out:"\u0425\u044D\u043B\u044D\u044D \u0433\u0430\u0440\u0433\u0430\u0445", +undecided:"\u0428\u0438\u0439\u0434\u044D\u044D\u0433\u04AF\u0439", +wink:"\u041D\u04AF\u0434 \u0438\u0440\u043C\u044D\u0445", +yell:"\u041E\u0440\u0438\u043B\u043E\u0445" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/ms_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/ms_dlg.js new file mode 100644 index 00000000..efeddb37 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/ms_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('ms.emotions_dlg',{ +title:"Masukkan emosi", +desc:"Simbol Emosi", +cool:"Tampan", +cry:"Menangis", +embarassed:"Malu", +foot_in_mouth:"Kaki dalam mulut", +frown:"Mengerut", +innocent:"Tidak bersalah", +kiss:"Cium", +laughing:"Gelak", +money_mouth:"Duit mulut", +sealed:"Kacip", +smile:"Senyum", +surprised:"Terkejut", +tongue_out:"Jelir lidah", +undecided:"Tak pasti", +wink:"Kenyit", +yell:"Menguap" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/nb_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/nb_dlg.js new file mode 100644 index 00000000..b593f7c8 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/nb_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('nb.emotions_dlg',{ +title:"Sett inn hum\u00F8rfjes", +desc:"Hum\u00F8rfjes", +cool:"Cool", +cry:"Gr\u00E5ter", +embarassed:"Flau", +foot_in_mouth:"Fot i munnen", +frown:"Skuffet", +innocent:"Uskyldig", +kiss:"Kyss", +laughing:"Ler", +money_mouth:"Penger i munnen", +sealed:"Hemmelig", +smile:"Glad", +surprised:"Overrasket", +tongue_out:"Rekke tunge", +undecided:"Skeptisk", +wink:"Blunke", +yell:"Skri" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/nl_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/nl_dlg.js new file mode 100644 index 00000000..f98e1da7 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/nl_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('nl.emotions_dlg',{ +title:"Emotie invoegen", +desc:"Emoties", +cool:"Stoer", +cry:"Huilen", +embarassed:"Schamen", +foot_in_mouth:"Verstomd", +frown:"Wenkbrouw ophalen", +innocent:"Onschuldig", +kiss:"Zoenen", +laughing:"Lachen", +money_mouth:"Hebberig", +sealed:"Afgesloten", +smile:"Lachen", +surprised:"Verrast", +tongue_out:"Tong uitsteken", +undecided:"Onbeslist", +wink:"Knipogen", +yell:"Roepen" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/nn_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/nn_dlg.js new file mode 100644 index 00000000..3967fbc9 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/nn_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('nn.emotions_dlg',{ +title:"Set inn hum\u00F8rfjes", +desc:"Hum\u00F8rfjes", +cool:"Cool", +cry:"Gret", +embarassed:"Flau", +foot_in_mouth:"Fot i munnen", +frown:"Skuffa", +innocent:"Uskyldig", +kiss:"Kyss", +laughing:"Ler", +money_mouth:"Pengar i munnen", +sealed:"Hemmeleg", +smile:"Glad", +surprised:"Overraska", +tongue_out:"Rekkje tunge", +undecided:"Skeptisk", +wink:"Blunke", +yell:"Skri" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/pl_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/pl_dlg.js new file mode 100644 index 00000000..e34861e2 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/pl_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('pl.emotions_dlg',{ +title:"Wstaw emotikon\u0119", +desc:"Emotikony", +cool:"Cool", +cry:"Cry", +embarassed:"Embarassed", +foot_in_mouth:"Foot in mouth", +frown:"Frown", +innocent:"Innocent", +kiss:"Kiss", +laughing:"Laughing", +money_mouth:"Money mouth", +sealed:"Sealed", +smile:"Smile", +surprised:"Surprised", +tongue_out:"Tongue out", +undecided:"Undecided", +wink:"Wink", +yell:"Yell" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/pt_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/pt_dlg.js new file mode 100644 index 00000000..c79cec8e --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/pt_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('pt.emotions_dlg',{ +title:"Inserir emoticon", +desc:"Emoticons", +cool:"Fixe", +cry:"Chor\u00E3o", +embarassed:"Embara\u00E7ado", +foot_in_mouth:"Disse asneira", +frown:"Decep\u00E7\u00E3o", +innocent:"Inocente", +kiss:"Beijo", +laughing:"Riso", +money_mouth:"Avarez", +sealed:"Boca Fechada", +smile:"Sorriso", +surprised:"Surpresa", +tongue_out:"L\u00EDngua de fora", +undecided:"Indeciso", +wink:"Piscadela", +yell:"Irado" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/ro_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/ro_dlg.js new file mode 100644 index 00000000..18e1bc75 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/ro_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('ro.emotions_dlg',{ +title:"Insereaz\u0103 emoticon", +desc:"Emo\u0163ii", +cool:"Cool", +cry:"Trist", +embarassed:"Ru\u015Finat", +foot_in_mouth:"Picior \u00EEn gur\u0103", +frown:"\u00CEncruntat", +innocent:"Nevinovat", +kiss:"Pupic", +laughing:"R\u00E2de", +money_mouth:"Bani \u00EEn gur\u0103", +sealed:"Sigilat", +smile:"Z\u00E2mbet", +surprised:"Surprins", +tongue_out:"Cu limba afar\u0103", +undecided:"Indecis", +wink:"Face cu ochiul", +yell:"\u0162ipa" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/ru_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/ru_dlg.js new file mode 100644 index 00000000..e9b5fca0 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/ru_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('ru.emotions_dlg',{ +title:"\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044C \u0441\u043C\u0430\u0439\u043B\u0438\u043A", +desc:"\u0421\u043C\u0430\u0439\u043B\u0438\u043A\u0438", +cool:"\u041A\u043B\u0451\u0432\u044B\u0439", +cry:"\u041F\u043B\u0430\u0447\u0435\u0442", +embarassed:"\u041E\u0431\u0430\u043B\u0434\u0435\u043B", +foot_in_mouth:"\u0412_\u0440\u043E\u0442_\u043C\u043D\u0435_\u043D\u043E\u0433\u0438!", +frown:"\u0425\u043C\u0443\u0440\u044B\u0439", +innocent:"\u041D\u0435\u0432\u0438\u043D\u043D\u043E\u0441\u0442\u044C", +kiss:"\u041F\u043E\u0446\u0435\u043B\u0443\u0439", +laughing:"\u0421\u043C\u0435\u0451\u0442\u0441\u044F", +money_mouth:"\u041C\u043D\u043E\u0433\u043E \u0434\u0435\u043D\u0435\u0433", +sealed:"\u0417\u0430\u043F\u0435\u0447\u0430\u0442\u0430\u043D\u043E", +smile:"\u0423\u043B\u044B\u0431\u0430\u0435\u0442\u0441\u044F", +surprised:"\u0423\u0434\u0438\u0432\u043B\u0451\u043D", +tongue_out:"\u041F\u043E\u043A\u0430\u0437\u044B\u0432\u0430\u0435\u0442 \u044F\u0437\u044B\u043A", +undecided:"\u0412 \u043D\u0435\u0440\u0435\u0448\u0438\u0442\u0435\u043B\u044C\u043D\u043E\u0441\u0442\u0438", +wink:"\u041F\u043E\u0434\u043C\u0438\u0433\u0438\u0432\u0430\u0435\u0442", +yell:"\u0412\u043E\u043F\u0438\u0442" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/sc_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/sc_dlg.js new file mode 100644 index 00000000..a1bc67ae --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/sc_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('sc.emotions_dlg',{ +title:"\u63D2\u5165\u8868\u60C5", +desc:"\u8868\u60C5\u5217\u8868", +cool:"\u51B7\u9177", +cry:"\u54ED\u6CE3", +embarassed:"\u5C34\u5C2C", +foot_in_mouth:"\u54A7\u5634", +frown:"\u76B1\u7709", +innocent:"\u5929\u771F", +kiss:"\u543B", +laughing:"\u5927\u7B11", +money_mouth:"\u53D1\u8D22", +sealed:"\u4FDD\u5BC6", +smile:"\u5FAE\u7B11", +surprised:"\u60CA\u5413", +tongue_out:"\u5410\u820C\u5934", +undecided:"\u601D\u8003", +wink:"\u7728\u773C", +yell:"\u53EB\u56B7" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/se_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/se_dlg.js new file mode 100644 index 00000000..5ba24f39 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/se_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('se.emotions_dlg',{ +title:"Infoga smiley", +desc:"Smileys", +cool:"Cool", +cry:"Gr\u00E5ter", +embarassed:"Sk\u00E4ms", +foot_in_mouth:"Foten i munnen", +frown:"Rynkar p\u00E5 n\u00E4san", +innocent:"Oskyldig", +kiss:"Kyss", +laughing:"Skrattande", +money_mouth:"Guld i mun", +sealed:"Tyst", +smile:"Glad", +surprised:"F\u00F6rv\u00E5nad", +tongue_out:"Tungan ute", +undecided:"Obest\u00E4md", +wink:"Fl\u00F6rt", +yell:"Skrikandes" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/si_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/si_dlg.js new file mode 100644 index 00000000..f43ce4a9 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/si_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('si.emotions_dlg',{ +title:"Insert emotion", +desc:"Emotions", +cool:"Cool", +cry:"Cry", +embarassed:"Embarassed", +foot_in_mouth:"Foot in mouth", +frown:"Frown", +innocent:"Innocent", +kiss:"Kiss", +laughing:"Laughing", +money_mouth:"Money mouth", +sealed:"Sealed", +smile:"Smile", +surprised:"Surprised", +tongue_out:"Tongue out", +undecided:"Undecided", +wink:"Wink", +yell:"Yell" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/sk_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/sk_dlg.js new file mode 100644 index 00000000..8cdd1c19 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/sk_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('sk.emotions_dlg',{ +title:"Vlo\u017Ei\u0165 emotikon", +desc:"Emotikony", +cool:"Cool", +cry:"Cry", +embarassed:"Embarassed", +foot_in_mouth:"Foot in mouth", +frown:"Frown", +innocent:"Innocent", +kiss:"Kiss", +laughing:"Laughing", +money_mouth:"Money mouth", +sealed:"Sealed", +smile:"Smile", +surprised:"Surprised", +tongue_out:"Tongue out", +undecided:"Undecided", +wink:"Wink", +yell:"Yell" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/sl_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/sl_dlg.js new file mode 100644 index 00000000..3dd3f6fe --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/sl_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('sl.emotions_dlg',{ +title:"Vstavi sme\u0161ka", +desc:"Sme\u0161ki", +cool:"kul", +cry:"jok", +embarassed:"v zadregi", +foot_in_mouth:"zare\u010Deni kruh", +frown:"nagubano \u010Delo", +innocent:"nedol\u017Een", +kiss:"poljub", +laughing:"smeh", +money_mouth:"zlati kljun", +sealed:"zape\u010Dateno", +smile:"nasmeh", +surprised:"presene\u010Den", +tongue_out:"ka\u017Ee jezik", +undecided:"neodlo\u010Den", +wink:"me\u017Eik", +yell:"krik" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/sq_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/sq_dlg.js new file mode 100644 index 00000000..05349ec7 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/sq_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('sq.emotions_dlg',{ +title:"Fut emocion", +desc:"Emocionet", +cool:"I/e lezetsh\u00EBm", +cry:"Qaj", +embarassed:"Turp", +foot_in_mouth:"K\u00EBmba n\u00EB goj\u00EB", +frown:"Rrudh vetullat", +innocent:"I/e pafajsh\u00EBm", +kiss:"Puth", +laughing:"Qesh", +money_mouth:"Lek\u00EB n\u00EB goj\u00EB", +sealed:"Dh\u00EBmb\u00EBt e mbyllur", +smile:"Buz\u00EBqesh", +surprised:"I/e \u00E7uditur", +tongue_out:"Gjuha jasht\u00EB", +undecided:"I/e pavendosur", +wink:"Shkel syrin", +yell:"B\u00EBrtit" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/sr_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/sr_dlg.js new file mode 100644 index 00000000..92616410 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/sr_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('sr.emotions_dlg',{ +title:"Umetni emociju", +desc:"Emocije", +cool:"Cool", +cry:"Pla\u010D", +embarassed:"Sramim se", +foot_in_mouth:"Izlanuo se", +frown:"Mr\u0161ti se", +innocent:"Nevina\u0161ce", +kiss:"Poljubac", +laughing:"Smeh", +money_mouth:"Bogata\u0161", +sealed:"\u0160utim", +smile:"Osmeh", +surprised:"Iznena\u0111en", +tongue_out:"Belji se", +undecided:"Neodlu\u010Dan", +wink:"Namigiva", +yell:"Vi\u010De" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/sv.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/sv.js deleted file mode 100644 index 7507a586..00000000 --- a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/sv.js +++ /dev/null @@ -1,4 +0,0 @@ -// SE lang variables - -tinyMCELang['lang_insert_emotions_title'] = 'Klistain kännsla'; -tinyMCELang['lang_emotions_desc'] = 'Kännslor'; diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/sv_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/sv_dlg.js new file mode 100644 index 00000000..cc6c3568 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/sv_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('sv.emotions_dlg',{ +title:"Infoga smiley", +desc:"Smileys", +cool:"Cool", +cry:"Gr\u00E5ter", +embarassed:"Sk\u00E4ms", +foot_in_mouth:"Foten i munnen", +frown:"Rynkar p\u00E5 n\u00E4san", +innocent:"Oskyldig", +kiss:"Kyss", +laughing:"Skrattande", +money_mouth:"Guld i mun", +sealed:"Tyst", +smile:"Glad", +surprised:"F\u00F6rv\u00E5nad", +tongue_out:"Tungan ute", +undecided:"Obest\u00E4md", +wink:"Fl\u00F6rt", +yell:"Skrikandes" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/tr_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/tr_dlg.js new file mode 100644 index 00000000..4af690cf --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/tr_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('tr.emotions_dlg',{ +title:"\u0130fade ekle", +desc:"\u0130fadeler", +cool:"Haval\u0131", +cry:"A\u011Fla", +embarassed:"Mah\u00E7up", +foot_in_mouth:"A\u011Fz\u0131 kulaklar\u0131nda", +frown:"Ka\u015F \u00E7atm\u0131\u015F", +innocent:"Masum", +kiss:"\u00D6p\u00FCc\u00FCk", +laughing:"Kahkaha", +money_mouth:"Parag\u00F6z", +sealed:"T\u0131p", +smile:"G\u00FCl\u00FCmse", +surprised:"\u015Ea\u015F\u0131rm\u0131\u015F", +tongue_out:"Dil \u00E7\u0131kar", +undecided:"Karars\u0131z", +wink:"G\u00F6z k\u0131rp", +yell:"Esne" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/tt_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/tt_dlg.js new file mode 100644 index 00000000..10e1f346 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/tt_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('tt.emotions_dlg',{ +title:"\u63D2\u5165\u8868\u60C5", +desc:"\u8868\u60C5\u5217\u8868", +cool:"\u51B7\u9177", +cry:"\u54ED\u6CE3", +embarassed:"\u5C37\u5C2C", +foot_in_mouth:"\u54A7\u5634", +frown:"\u76BA\u7709", +innocent:"\u5929\u771F", +kiss:"\u543B", +laughing:"\u5927\u7B11", +money_mouth:"\u767C\u8CA1", +sealed:"\u4FDD\u5BC6", +smile:"\u5FAE\u7B11", +surprised:"\u9A5A\u5687", +tongue_out:"\u5410\u820C\u982D", +undecided:"\u601D\u8003", +wink:"\u7728\u773C", +yell:"\u53EB\u56B7" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/tw_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/tw_dlg.js new file mode 100644 index 00000000..48b19adc --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/tw_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('tw.emotions_dlg',{ +title:"\u63D2\u5165\u8868\u60C5\u7B26\u865F", +desc:"\u8868\u60C5\u7B26\u865F", +cool:"\u51B7\u9177", +cry:"\u54ED\u6CE3", +embarassed:"\u5C37\u5C2C", +foot_in_mouth:"\u54A7\u5634", +frown:"\u76BA\u7709", +innocent:"\u5929\u771F", +kiss:"\u543B", +laughing:"\u5927\u7B11", +money_mouth:"\u767C\u8CA1", +sealed:"\u4FDD\u5BC6", +smile:"\u5FAE\u7B11", +surprised:"\u9A5A\u5687", +tongue_out:"\u5410\u820C\u982D", +undecided:"\u8003\u616E", +wink:"\u7728\u773C", +yell:"\u53EB\u56B7" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/uk_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/uk_dlg.js new file mode 100644 index 00000000..bedb694f --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/uk_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('uk.emotions_dlg',{ +title:"\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0441\u043C\u0430\u0439\u043B", +desc:"\u0421\u043C\u0430\u0439\u043B\u0438", +cool:"Cool", +cry:"Cry", +embarassed:"Embarassed", +foot_in_mouth:"Foot in mouth", +frown:"Frown", +innocent:"Innocent", +kiss:"Kiss", +laughing:"Laughing", +money_mouth:"Money mouth", +sealed:"Sealed", +smile:"Smile", +surprised:"Surprised", +tongue_out:"Tongue out", +undecided:"Undecided", +wink:"Wink", +yell:"Yell" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/vi_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/vi_dlg.js new file mode 100644 index 00000000..6cd56f17 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/vi_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('vi.emotions_dlg',{ +title:"Ch\u00E8n bi\u1EC3u t\u01B0\u1EE3ng c\u1EA3m x\u00FAc", +desc:"Bi\u1EC3u t\u01B0\u1EE3ng c\u1EA3m x\u00FAc", +cool:"Cool", +cry:"Cry", +embarassed:"Embarassed", +foot_in_mouth:"Foot in mouth", +frown:"Frown", +innocent:"Innocent", +kiss:"Kiss", +laughing:"Laughing", +money_mouth:"Money mouth", +sealed:"Sealed", +smile:"Smile", +surprised:"Surprised", +tongue_out:"Tongue out", +undecided:"Undecided", +wink:"Wink", +yell:"Yell" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/zh_cn.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/zh_cn.js deleted file mode 100644 index ab36dd08..00000000 --- a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/zh_cn.js +++ /dev/null @@ -1,5 +0,0 @@ -// Simplified Chinese lang variables contributed by cube316 (cube316@etang.com) - -tinyMCELang['lang_insert_emotions_title'] = '˛ĺČë±íÇé'; -tinyMCELang['lang_emotions_desc'] = '±íÇé'; - diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/zh_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/zh_dlg.js new file mode 100644 index 00000000..1ed28cc3 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/langs/zh_dlg.js @@ -0,0 +1,20 @@ +tinyMCE.addI18n('zh.emotions_dlg',{ +title:"\u63D2\u5165\u8868\u60C5\u7B26\u53F7", +desc:"\u8868\u60C5\u7B26\u53F7", +cool:"\u51B7\u9177", +cry:"\u54ED\u6CE3", +embarassed:"\u5C34\u5C2C", +foot_in_mouth:"\u54A7\u5634", +frown:"\u76B1\u7709", +innocent:"\u5929\u771F", +kiss:"\u543B", +laughing:"\u5927\u7B11", +money_mouth:"\u53D1\u8D22", +sealed:"\u4FDD\u5BC6", +smile:"\u5FAE\u7B11", +surprised:"\u60CA\u5413", +tongue_out:"\u5410\u820C\u5934", +undecided:"\u8003\u8651", +wink:"\u7728\u773C", +yell:"\u53EB\u56B7" +}); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/readme.txt b/includes/tinymce/jscripts/tiny_mce/plugins/emotions/readme.txt deleted file mode 100644 index 71d5f4d7..00000000 --- a/includes/tinymce/jscripts/tiny_mce/plugins/emotions/readme.txt +++ /dev/null @@ -1,20 +0,0 @@ - Emotions plugin for TinyMCE ------------------------------- - -Installation instructions: - * Copy the emotions directory to the plugins directory of TinyMCE (/jscripts/tiny_mce/plugins). - * Add plugin to TinyMCE plugin option list example: plugins : "emotions". - * Add the emotions button name to button list, example: theme_advanced_buttons3_add : "emotions". - -Initialization example: - tinyMCE.init({ - theme : "advanced", - mode : "textareas", - plugins : "emotions", - theme_advanced_buttons3_add : "emotions" - }); - -Copyright notice: - These emotions where taken from Mozilla Thunderbird. - I hope they don't get angry if I use them here after all this is a open source project - aswell and I realy love their product. diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/example/dialog.htm b/includes/tinymce/jscripts/tiny_mce/plugins/example/dialog.htm new file mode 100644 index 00000000..b4c62840 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/example/dialog.htm @@ -0,0 +1,27 @@ + + + + {#example_dlg.title} + + + + + + + + + diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/example/editor_plugin.js b/includes/tinymce/jscripts/tiny_mce/plugins/example/editor_plugin.js new file mode 100644 index 00000000..cb7010d1 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/example/editor_plugin.js @@ -0,0 +1 @@ +(function(){tinymce.PluginManager.requireLangPack('example');tinymce.create('tinymce.plugins.ExamplePlugin',{init:function(ed,url){ed.addCommand('mceExample',function(){ed.windowManager.open({file:url+'/dialog.htm',width:320+parseInt(ed.getLang('example.delta_width',0)),height:120+parseInt(ed.getLang('example.delta_height',0)),inline:1},{plugin_url:url,some_custom_arg:'custom arg'});});ed.addButton('example',{title:'example.desc',cmd:'mceExample',image:url+'/img/example.gif'});ed.onNodeChange.add(function(ed,cm,n){cm.setActive('example',n.nodeName=='IMG');});},createControl:function(n,cm){return null;},getInfo:function(){return{longname:'Example plugin',author:'Some author',authorurl:'http://tinymce.moxiecode.com',infourl:'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/example',version:"1.0"};}});tinymce.PluginManager.add('example',tinymce.plugins.ExamplePlugin);})(); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/example/editor_plugin_src.js b/includes/tinymce/jscripts/tiny_mce/plugins/example/editor_plugin_src.js new file mode 100644 index 00000000..50505504 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/example/editor_plugin_src.js @@ -0,0 +1,81 @@ +/** + * $Id: editor_plugin_src.js 201 2007-02-12 15:56:56Z spocke $ + * + * @author Moxiecode + * @copyright Copyright © 2004-2008, Moxiecode Systems AB, All rights reserved. + */ + +(function() { + // Load plugin specific language pack + tinymce.PluginManager.requireLangPack('example'); + + tinymce.create('tinymce.plugins.ExamplePlugin', { + /** + * Initializes the plugin, this will be executed after the plugin has been created. + * This call is done before the editor instance has finished it's initialization so use the onInit event + * of the editor instance to intercept that event. + * + * @param {tinymce.Editor} ed Editor instance that the plugin is initialized in. + * @param {string} url Absolute URL to where the plugin is located. + */ + init : function(ed, url) { + // Register the command so that it can be invoked by using tinyMCE.activeEditor.execCommand('mceExample'); + ed.addCommand('mceExample', function() { + ed.windowManager.open({ + file : url + '/dialog.htm', + width : 320 + parseInt(ed.getLang('example.delta_width', 0)), + height : 120 + parseInt(ed.getLang('example.delta_height', 0)), + inline : 1 + }, { + plugin_url : url, // Plugin absolute URL + some_custom_arg : 'custom arg' // Custom argument + }); + }); + + // Register example button + ed.addButton('example', { + title : 'example.desc', + cmd : 'mceExample', + image : url + '/img/example.gif' + }); + + // Add a node change handler, selects the button in the UI when a image is selected + ed.onNodeChange.add(function(ed, cm, n) { + cm.setActive('example', n.nodeName == 'IMG'); + }); + }, + + /** + * Creates control instances based in the incomming name. This method is normally not + * needed since the addButton method of the tinymce.Editor class is a more easy way of adding buttons + * but you sometimes need to create more complex controls like listboxes, split buttons etc then this + * method can be used to create those. + * + * @param {String} n Name of the control to create. + * @param {tinymce.ControlManager} cm Control manager to use inorder to create new control. + * @return {tinymce.ui.Control} New control instance or null if no control was created. + */ + createControl : function(n, cm) { + return null; + }, + + /** + * Returns information about the plugin as a name/value array. + * The current keys are longname, author, authorurl, infourl and version. + * + * @return {Object} Name/value array containing information about the plugin. + */ + getInfo : function() { + return { + longname : 'Example plugin', + author : 'Some author', + authorurl : 'http://tinymce.moxiecode.com', + infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/example', + version : "1.0" + }; + } + }); + + // Register plugin + tinymce.PluginManager.add('example', tinymce.plugins.ExamplePlugin); +})(); \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/example/img/example.gif b/includes/tinymce/jscripts/tiny_mce/plugins/example/img/example.gif new file mode 100644 index 00000000..1ab5da44 Binary files /dev/null and b/includes/tinymce/jscripts/tiny_mce/plugins/example/img/example.gif differ diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/example/js/dialog.js b/includes/tinymce/jscripts/tiny_mce/plugins/example/js/dialog.js new file mode 100644 index 00000000..fa834113 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/example/js/dialog.js @@ -0,0 +1,19 @@ +tinyMCEPopup.requireLangPack(); + +var ExampleDialog = { + init : function() { + var f = document.forms[0]; + + // Get the selected contents as text and place it in the input + f.someval.value = tinyMCEPopup.editor.selection.getContent({format : 'text'}); + f.somearg.value = tinyMCEPopup.getWindowArg('some_custom_arg'); + }, + + insert : function() { + // Insert the contents from the input into the document + tinyMCEPopup.editor.execCommand('mceInsertContent', false, document.forms[0].someval.value); + tinyMCEPopup.close(); + } +}; + +tinyMCEPopup.onInit.add(ExampleDialog.init, ExampleDialog); diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/example/langs/en.js b/includes/tinymce/jscripts/tiny_mce/plugins/example/langs/en.js new file mode 100644 index 00000000..e0784f80 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/example/langs/en.js @@ -0,0 +1,3 @@ +tinyMCE.addI18n('en.example',{ + desc : 'This is just a template button' +}); diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/example/langs/en_dlg.js b/includes/tinymce/jscripts/tiny_mce/plugins/example/langs/en_dlg.js new file mode 100644 index 00000000..ebcf948d --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/example/langs/en_dlg.js @@ -0,0 +1,3 @@ +tinyMCE.addI18n('en.example_dlg',{ + title : 'This is just a example title' +}); diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/flash/editor_plugin.js b/includes/tinymce/jscripts/tiny_mce/plugins/flash/editor_plugin.js deleted file mode 100644 index 392ab08b..00000000 --- a/includes/tinymce/jscripts/tiny_mce/plugins/flash/editor_plugin.js +++ /dev/null @@ -1,2 +0,0 @@ -/* Import plugin specific language pack */ - tinyMCE.importPluginLanguagePack('flash','en,de,sv,zh_cn,cs,fa,fr_ca,fr');function TinyMCE_flash_getControlHTML(control_name){switch(control_name){case "flash":return '';}return "";}function TinyMCE_flash_parseAttributes(attribute_string){var attributeName="";var attributeValue="";var withInName;var withInValue;var attributes=new Array();var whiteSpaceRegExp=new RegExp('^[ \n\r\t]+','g');if(attribute_string==null||attribute_string.length<2)return null;withInName=withInValue=false;for(var i=0;i','gi'),'');content=content.replace(new RegExp('<[ ]*object','gi'),'');while((startPos=content.indexOf(''); - content = content.replace(new RegExp('<[ ]*object','gi'),''); - - // Parse all embed tags - while ((startPos = content.indexOf(' ', startPos); - var attribs = TinyMCE_flash_parseAttributes(content.substring(startPos + 6, endPos)); - embedList[embedList.length] = attribs; - } - - // Parse all object tags and replace them with images from the embed data - var index = 0; - while ((startPos = content.indexOf('', endPos); - endPos += 8; - } else - endPos += 2; - - if (index >= embedList.length) - break; - - var attribs = embedList[index]; - - // Insert image - var contentAfter = content.substring(endPos+1); - content = content.substring(0, startPos); - content += '' + content.substring(endPos+1); - content += contentAfter; - index++; - - startPos++; - } - break; - - case "get_from_editor": - // Parse all img tags and replace them with object+embed - var startPos = 0; - while ((startPos = content.indexOf('', startPos); - var attribs = TinyMCE_flash_parseAttributes(content.substring(startPos + 4, endPos)); - - // Is not flash - if (attribs['name'] != "mce_plugin_flash") - break; - - endPos += 2; - - var embedHTML = ''; - - // Insert object + embed - embedHTML += ''; - -/* - - -*/ - - content = content.substring(0, startPos) + embedHTML + content.substring(endPos+1); - - startPos++; - } - break; - } - - // Pass through to next handler in chain - return content; -} - -function TinyMCE_flash_handleNodeChange(editor_id, node, undo_index, undo_levels, visual_aid, any_selection) { - function getAttrib(elm, name) { - return elm.getAttribute(name) ? elm.getAttribute(name) : ""; - } - - tinyMCE.switchClassSticky(editor_id + '_flash', 'mceButtonNormal'); - - if (node == null) - return; - - do { - if (node.nodeName.toLowerCase() == "img" && getAttrib(node, 'name').indexOf('mce_plugin_flash') == 0) - tinyMCE.switchClassSticky(editor_id + '_flash', 'mceButtonSelected'); - } while ((node = node.parentNode)); - - return true; -} diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/flash/flash.htm b/includes/tinymce/jscripts/tiny_mce/plugins/flash/flash.htm deleted file mode 100644 index 6864d569..00000000 --- a/includes/tinymce/jscripts/tiny_mce/plugins/flash/flash.htm +++ /dev/null @@ -1,169 +0,0 @@ - - - - - {$lang_insert_flash} - - - - - - - - - diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/flash/images/flash.gif b/includes/tinymce/jscripts/tiny_mce/plugins/flash/images/flash.gif deleted file mode 100644 index 4950e673..00000000 Binary files a/includes/tinymce/jscripts/tiny_mce/plugins/flash/images/flash.gif and /dev/null differ diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/flash/langs/cs.js b/includes/tinymce/jscripts/tiny_mce/plugins/flash/langs/cs.js deleted file mode 100644 index c408809d..00000000 --- a/includes/tinymce/jscripts/tiny_mce/plugins/flash/langs/cs.js +++ /dev/null @@ -1,5 +0,0 @@ -// UK lang variables - -tinyMCELang['lang_insert_flash'] = 'Vložit/editovat Flash Movie'; -tinyMCELang['lang_insert_flash_file'] = 'Flash soubor (.swf)'; -tinyMCELang['lang_insert_flash_size'] = 'Velikost'; \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/flash/langs/de.js b/includes/tinymce/jscripts/tiny_mce/plugins/flash/langs/de.js deleted file mode 100644 index db106f4f..00000000 --- a/includes/tinymce/jscripts/tiny_mce/plugins/flash/langs/de.js +++ /dev/null @@ -1,6 +0,0 @@ -// DE lang variables - -tinyMCELang['lang_insert_flash'] = 'Flash Movie einfügen / bearbeiten'; -tinyMCELang['lang_insert_flash_file'] = 'Flash-Datei'; -tinyMCELang['lang_insert_flash_size'] = 'Größe'; -tinyMCELang['lang_insert_flash_list'] = 'Flash Dateien'; diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/flash/langs/en.js b/includes/tinymce/jscripts/tiny_mce/plugins/flash/langs/en.js deleted file mode 100644 index b34e8b5b..00000000 --- a/includes/tinymce/jscripts/tiny_mce/plugins/flash/langs/en.js +++ /dev/null @@ -1,6 +0,0 @@ -// UK lang variables - -tinyMCELang['lang_insert_flash'] = 'Insert / edit Flash Movie'; -tinyMCELang['lang_insert_flash_file'] = 'Flash-File (.swf)'; -tinyMCELang['lang_insert_flash_size'] = 'Size'; -tinyMCELang['lang_insert_flash_list'] = 'Flash files'; diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/flash/langs/fa.js b/includes/tinymce/jscripts/tiny_mce/plugins/flash/langs/fa.js deleted file mode 100644 index 4caa3717..00000000 --- a/includes/tinymce/jscripts/tiny_mce/plugins/flash/langs/fa.js +++ /dev/null @@ -1,10 +0,0 @@ -// IR lang variables -// Persian (Farsi) language pack (for IRAN) -// By: Morteza Zafari -// Lost@LostLord.com -// http://www.LostLord.com - -tinyMCELang['lang_dir'] = 'rtl'; -tinyMCELang['lang_insert_flash'] = 'اŮزŮدن Ů Ůیرایش Ůایل ŮŮ„Ř´'; -tinyMCELang['lang_insert_flash_file'] = 'Ůایل ŮŮ„Ř´ (.swf)'; -tinyMCELang['lang_insert_flash_size'] = 'ابعاد'; diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/flash/langs/fr.js b/includes/tinymce/jscripts/tiny_mce/plugins/flash/langs/fr.js deleted file mode 100644 index cdcd38c6..00000000 --- a/includes/tinymce/jscripts/tiny_mce/plugins/flash/langs/fr.js +++ /dev/null @@ -1,6 +0,0 @@ -// French lang variables by Laurent Dran - -tinyMCELang['lang_insert_flash'] = 'Insérer / éditer une animation Flash'; -tinyMCELang['lang_insert_flash_file'] = 'Fichier-Flash (.swf)'; -tinyMCELang['lang_insert_flash_size'] = 'Taille'; -tinyMCELang['lang_insert_flash_list'] = 'Fichiers Flash'; diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/flash/langs/fr_ca.js b/includes/tinymce/jscripts/tiny_mce/plugins/flash/langs/fr_ca.js deleted file mode 100644 index f2e46fc7..00000000 --- a/includes/tinymce/jscripts/tiny_mce/plugins/flash/langs/fr_ca.js +++ /dev/null @@ -1,5 +0,0 @@ -// CA_FR lang variables - -tinyMCELang['lang_insert_flash'] = 'Insérer / Modifier une animation Flash'; -tinyMCELang['lang_insert_flash_file'] = 'Fichier Flash (.swf)'; -tinyMCELang['lang_insert_flash_size'] = 'Dimension'; diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/flash/langs/sv.js b/includes/tinymce/jscripts/tiny_mce/plugins/flash/langs/sv.js deleted file mode 100644 index 8fb32022..00000000 --- a/includes/tinymce/jscripts/tiny_mce/plugins/flash/langs/sv.js +++ /dev/null @@ -1,6 +0,0 @@ -// SE lang variables - -tinyMCELang['lang_insert_flash'] = 'Skapa / uppdatera flash film'; -tinyMCELang['lang_insert_flash_file'] = 'Flash film (.swf)'; -tinyMCELang['lang_insert_flash_size'] = 'Storlek'; -tinyMCELang['lang_insert_flash_list'] = 'Flash filer'; diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/flash/langs/zh_cn.js b/includes/tinymce/jscripts/tiny_mce/plugins/flash/langs/zh_cn.js deleted file mode 100644 index cef37551..00000000 --- a/includes/tinymce/jscripts/tiny_mce/plugins/flash/langs/zh_cn.js +++ /dev/null @@ -1,6 +0,0 @@ -// Simplified Chinese lang variables contributed by cube316 (cube316@etang.com) - -tinyMCELang['lang_insert_flash'] = '˛ĺČë/±ŕĽ FlashµçÓ°'; -tinyMCELang['lang_insert_flash_file'] = 'FlashÎÄĽţ(.swf)'; -tinyMCELang['lang_insert_flash_size'] = 'łß´ç'; -tinyMCELang['lang_insert_flash_list'] = 'Flash files'; diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/flash/readme.txt b/includes/tinymce/jscripts/tiny_mce/plugins/flash/readme.txt deleted file mode 100644 index a0ff3989..00000000 --- a/includes/tinymce/jscripts/tiny_mce/plugins/flash/readme.txt +++ /dev/null @@ -1,48 +0,0 @@ - FLASH plugin for TinyMCE ------------------------------ - -About: - This is the INSERT FLASH Dialog contributed by Michael Keck. - This one supports popup windows and targets. - -Note: - The placeholder for Flash is called 'mce_plugin_flash' and needs a class 'mce_plugin_flash' in the 'css_-style'. - Do not name another image 'name="mce_plugin_flash"! - -Installation instructions: - * Copy the flash directory to the plugins directory of TinyMCE (/jscripts/tiny_mce/plugins). - * Add plugin to TinyMCE plugin option list example: plugins : "flash". - * Add this "img[class|src|border=0|alt|title|hspace|vspace|width|height|align|onmouseover|onmouseout|name]" to extended_valid_elements option. - -Initialization example: - tinyMCE.init({ - theme : "advanced", - mode : "textareas", - plugins : "flash", - extended_valid_elements : "img[class|src|border=0|alt|title|hspace|vspace|width|height|align|onmouseover|onmouseout|name]" - flash_external_list_url : "example_flash_list.js" // Optional URL to a list of Flash movies - }); - - ----------------------------------------------------------------- -ADDITIONAL NOTE: - -The flash plugin has been heavily modified (the original is editor_plugin_original.js) since the original did not play nicely with html content that -already contained existing flash tags and in fact stripped out the object -tags for existing flash html. The rewrite corrects this as well attempts -to preserve the existing flash tags where possible. The tinyMCE.init call -should be be something like: - -Initialization example: - tinyMCE.init({ - theme : "advanced", - mode : "textareas", - plugins : "flash", - extended_valid_elements : "img[class|src|border=0|alt|title|hspace|vspace|width|height|align|onmouseover|onmouseout|name|obj|param|embed]" - }); - -Note the extra obj,param,embed attributes for the img tag. These attributes -are used to serialize data from existing flash tags so that they can be -properly restored. Editing a flash tag with the plugin will cause this -information to be lost (sorry !) but still produces a working flash nevertheless. - diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/fullpage/css/fullpage.css b/includes/tinymce/jscripts/tiny_mce/plugins/fullpage/css/fullpage.css new file mode 100644 index 00000000..7a3334f0 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/fullpage/css/fullpage.css @@ -0,0 +1,182 @@ +/* Hide the advanced tab */ +#advanced_tab { + display: none; +} + +#metatitle, #metakeywords, #metadescription, #metaauthor, #metacopyright { + width: 280px; +} + +#doctype, #docencoding { + width: 200px; +} + +#langcode { + width: 30px; +} + +#bgimage { + width: 220px; +} + +#fontface { + width: 240px; +} + +#leftmargin, #rightmargin, #topmargin, #bottommargin { + width: 50px; +} + +.panel_wrapper div.current { + height: 400px; +} + +#stylesheet, #style { + width: 240px; +} + +/* Head list classes */ + +.headlistwrapper { + width: 100%; +} + +.addbutton, .removebutton, .moveupbutton, .movedownbutton { + border-top: 1px solid; + border-left: 1px solid; + border-bottom: 1px solid; + border-right: 1px solid; + border-color: #F0F0EE; + cursor: default; + display: block; + width: 20px; + height: 20px; +} + +#doctypes { + width: 200px; +} + +.addbutton:hover, .removebutton:hover, .moveupbutton:hover, .movedownbutton:hover { + border: 1px solid #0A246A; + background-color: #B6BDD2; +} + +.addbutton { + background-image: url('../images/add.gif'); + float: left; + margin-right: 3px; +} + +.removebutton { + background-image: url('../images/remove.gif'); + float: left; +} + +.moveupbutton { + background-image: url('../images/move_up.gif'); + float: left; + margin-right: 3px; +} + +.movedownbutton { + background-image: url('../images/move_down.gif'); + float: left; +} + +.selected { + border: 1px solid #0A246A; + background-color: #B6BDD2; +} + +.toolbar { + width: 100%; +} + +#headlist { + width: 100%; + margin-top: 3px; + font-size: 11px; +} + +#info, #title_element, #meta_element, #script_element, #style_element, #base_element, #link_element, #comment_element, #unknown_element { + display: none; +} + +#addmenu { + position: absolute; + border: 1px solid gray; + display: none; + z-index: 100; + background-color: white; +} + +#addmenu a { + display: block; + width: 100%; + line-height: 20px; + text-decoration: none; + background-color: white; +} + +#addmenu a:hover { + background-color: #B6BDD2; + color: black; +} + +#addmenu span { + padding-left: 10px; + padding-right: 10px; +} + +#updateElementPanel { + display: none; +} + +#script_element .panel_wrapper div.current { + height: 108px; +} + +#style_element .panel_wrapper div.current { + height: 108px; +} + +#link_element .panel_wrapper div.current { + height: 140px; +} + +#element_script_value { + width: 100%; + height: 100px; +} + +#element_comment_value { + width: 100%; + height: 120px; +} + +#element_style_value { + width: 100%; + height: 100px; +} + +#element_title, #element_script_src, #element_meta_name, #element_meta_content, #element_base_href, #element_link_href, #element_link_title { + width: 250px; +} + +.updateElementButton { + margin-top: 3px; +} + +/* MSIE specific styles */ + +* html .addbutton, * html .removebutton, * html .moveupbutton, * html .movedownbutton { + width: 22px; + height: 22px; +} + +textarea { + height: 55px; +} + +.panel_wrapper div.current {height:420px;} \ No newline at end of file diff --git a/includes/tinymce/jscripts/tiny_mce/plugins/fullpage/editor_plugin.js b/includes/tinymce/jscripts/tiny_mce/plugins/fullpage/editor_plugin.js new file mode 100644 index 00000000..727beb57 --- /dev/null +++ b/includes/tinymce/jscripts/tiny_mce/plugins/fullpage/editor_plugin.js @@ -0,0 +1 @@ +(function(){tinymce.create('tinymce.plugins.FullPagePlugin',{init:function(ed,url){var t=this;t.editor=ed;ed.addCommand('mceFullPageProperties',function(){ed.windowManager.open({file:url+'/fullpage.htm',width:430+parseInt(ed.getLang('fullpage.delta_width',0)),height:495+parseInt(ed.getLang('fullpage.delta_height',0)),inline:1},{plugin_url:url,head_html:t.head});});ed.addButton('fullpage',{title:'fullpage.desc',cmd:'mceFullPageProperties'});ed.onBeforeSetContent.add(t._setContent,t);ed.onSetContent.add(t._setBodyAttribs,t);ed.onGetContent.add(t._getContent,t);},getInfo:function(){return{longname:'Fullpage',author:'Moxiecode Systems AB',authorurl:'http://tinymce.moxiecode.com',infourl:'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/fullpage',version:tinymce.majorVersion+"."+tinymce.minorVersion};},_setBodyAttribs:function(ed,o){var bdattr,i,len,kv,k,v,t,attr=this.head.match(/body(.*?)>/i);if(attr&&attr[1]){bdattr=attr[1].match(/\s*(\w+\s*=\s*".*?"|\w+\s*=\s*'.*?'|\w+\s*=\s*\w+|\w+)\s*/g);if(bdattr){for(i=0,len=bdattr.length;i',sp);t.head=c.substring(0,sp+1);ep=c.indexOf('
\n';t.head+=ed.getParam('fullpage_default_doctype','');t.head+='\n\n
\n
\n';if(v=ed.getParam('fullpage_default_encoding'))t.head+='\n';if(v=ed.getParam('fullpage_default_font_family'))st+='font-family: '+v+';';if(v=ed.getParam('fullpage_default_font_size'))st+='font-size: '+v+';';if(v=ed.getParam('fullpage_default_text_color'))st+='color: '+v+';';t.head+='\n
\n