more tinymce stuff

This commit is contained in:
JT Smith 2005-12-05 15:44:37 +00:00
parent 5a60010a6f
commit b19f4cf952
468 changed files with 11635 additions and 0 deletions

View file

@ -0,0 +1 @@
tinyMCE.importPluginLanguagePack('print','en,sv,zh_cn,fa,fr_ca,fr,de,pl,pt_br,cs,nl,da,he,nb,hu,ru,ru_KOI8-R,ru_UTF-8,nn,fi,es,cy,is,zh_tw,zh_tw_utf8,sk');function TinyMCE_print_getInfo(){return{longname:'Print',author:'Moxiecode Systems',authorurl:'http://tinymce.moxiecode.com',infourl:'http://tinymce.moxiecode.com/tinymce/docs/plugin_print.html',version:tinyMCE.majorVersion+"."+tinyMCE.minorVersion};};function TinyMCE_print_getControlHTML(control_name){switch(control_name){case "print":var cmd='tinyMCE.execInstanceCommand(\'{$editor_id}\',\'mcePrint\',true);return false;';return '<a href="javascript:'+cmd+'" onclick="'+cmd+'" target="_self" onmousedown="return false;"><img id="{$editor_id}_print" src="{$pluginurl}/images/print.gif" title="{$lang_print_desc}" width="20" height="20" class="mceButtonNormal" onmouseover="tinyMCE.switchClass(this,\'mceButtonOver\');" onmouseout="tinyMCE.restoreClass(this);" onmousedown="tinyMCE.restoreAndSwitchClass(this,\'mceButtonDown\');" /></a>';}return "";}function TinyMCE_print_execCommand(editor_id,element,command,user_interface,value){switch(command){case "mcePrint":tinyMCE.getInstanceById(editor_id).contentWindow.print();return true;}return false;}

View file

@ -0,0 +1,37 @@
/* Import theme specific language pack */
tinyMCE.importPluginLanguagePack('print', 'en,sv,zh_cn,fa,fr_ca,fr,de,pl,pt_br,cs,nl,da,he,nb,hu,ru,ru_KOI8-R,ru_UTF-8,nn,fi,es,cy,is,zh_tw,zh_tw_utf8,sk');
function TinyMCE_print_getInfo() {
return {
longname : 'Print',
author : 'Moxiecode Systems',
authorurl : 'http://tinymce.moxiecode.com',
infourl : 'http://tinymce.moxiecode.com/tinymce/docs/plugin_print.html',
version : tinyMCE.majorVersion + "." + tinyMCE.minorVersion
};
};
function TinyMCE_print_getControlHTML(control_name) {
switch (control_name) {
case "print":
var cmd = 'tinyMCE.execInstanceCommand(\'{$editor_id}\',\'mcePrint\',true);return false;';
return '<a href="javascript:' + cmd + '" onclick="' + cmd + '" target="_self" onmousedown="return false;"><img id="{$editor_id}_print" src="{$pluginurl}/images/print.gif" title="{$lang_print_desc}" width="20" height="20" class="mceButtonNormal" onmouseover="tinyMCE.switchClass(this,\'mceButtonOver\');" onmouseout="tinyMCE.restoreClass(this);" onmousedown="tinyMCE.restoreAndSwitchClass(this,\'mceButtonDown\');" /></a>';
}
return "";
}
/**
* Executes the search/replace commands.
*/
function TinyMCE_print_execCommand(editor_id, element, command, user_interface, value) {
// Handle commands
switch (command) {
case "mcePrint":
tinyMCE.getInstanceById(editor_id).contentWindow.print();
return true;
}
// Pass to next handler in chain
return false;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 211 B

View file

@ -0,0 +1,11 @@
/**
* Czech lang variables
* encoding: utf-8
*
* $Id: cs.js,v 1.4 2005/10/18 13:59:43 spocke Exp $
*/
tinyMCE.addToLang('',{
print_desc : 'Tisk'
});

View file

@ -0,0 +1,5 @@
// UK lang variables
tinyMCE.addToLang('',{
print_desc : 'Argraffu'
});

View file

@ -0,0 +1,5 @@
// DK lang variables contributed by Jan Moelgaard
tinyMCE.addToLang('',{
print_desc : 'Udskriv'
});

View file

@ -0,0 +1,5 @@
// DE lang variables
tinyMCE.addToLang('',{
print_desc : 'Drucken'
});

View file

@ -0,0 +1,5 @@
// UK lang variables
tinyMCE.addToLang('',{
print_desc : 'Print'
});

View file

@ -0,0 +1,7 @@
// ES lang variables by Alvaro Velasco and Adolfo Sanz De Diego (asanzdiego) <asanzdiego@yahoo.es>
// Last Updated : October 2005
// TinyMCE Version : 2.0RC3
tinyMCE.addToLang('',{
print_desc : 'Imprimir'
});

View file

@ -0,0 +1,10 @@
// IR lang variables
// Persian (Farsi) language pack (for IRAN)
// By: Morteza Zafari
// Lost@LostLord.com
// http://www.LostLord.com
tinyMCE.addToLang('',{
dir : 'rtl',
print_desc : '???'
});

View file

@ -0,0 +1,5 @@
// FI lang variables by Tuomo Aura, Ateco.fi
tinyMCE.addToLang('',{
print_desc : 'Tulosta'
});

View file

@ -0,0 +1,5 @@
// French lang variables by Laurent Dran
tinyMCE.addToLang('',{
print_desc : 'Imprimer'
});

View file

@ -0,0 +1,5 @@
// Canadian French lang variables by Virtuelcom last modification: 2005-06-15
tinyMCE.addToLang('',{
print_desc : 'Imprimer'
});

View file

@ -0,0 +1,5 @@
// HE lang variables by Liron Newman, http://eesh.net
tinyMCE.addToLang('',{
print_desc : 'äãôñ'
});

View file

@ -0,0 +1,5 @@
// HU lang variables
tinyMCE.addToLang('',{
print_desc : 'Nyomtatás'
});

View file

@ -0,0 +1,5 @@
// Iceland lang variables by Johannes Birgir Jensson
tinyMCE.addToLang('',{
print_desc : 'Prenta'
});

View file

@ -0,0 +1,5 @@
// nb = Norwegian (bokm&aring;l) lang variables by Knut B. Jacobsen
tinyMCE.addToLang('',{
print_desc : 'Skriv ut'
});

View file

@ -0,0 +1,5 @@
// UK lang variables
tinyMCE.addToLang('',{
print_desc : 'Afdrukken'
});

View file

@ -0,0 +1,5 @@
// nn = Norwegian (nynorsk) lang variables by Knut B. Jacobsen
tinyMCE.addToLang('',{
print_desc : 'Skriv ut'
});

View file

@ -0,0 +1,5 @@
// PL lang variables
tinyMCE.addToLang('',{
print_desc : 'Drukuj'
});

View file

@ -0,0 +1,13 @@
/**
* pt_br lang variables
* Brazilian Portuguese
*
* Authors : ????
* Revision and modifications:
* Marcio Barbosa (mpg) <mpg@mpg.com.br>
* Last Updated : November 26, 2005
* TinyMCE Version : 2.0RC4
*/
tinyMCE.addToLang('',{
print_desc : 'Imprimir'
});

View file

@ -0,0 +1,5 @@
// RU lang variables cp1251
tinyMCE.addToLang('',{
print_desc : 'Ðàñïå÷àòàòü'
});

View file

@ -0,0 +1,5 @@
// RU lang variables KOI8-R
tinyMCE.addToLang('',{
print_desc : 'òÁÓÐÅÞÁÔÁÔØ'
});

View file

@ -0,0 +1,5 @@
// RU lang variables UTF-8
tinyMCE.addToLang('',{
print_desc : 'Распечатать'
});

View file

@ -0,0 +1,13 @@
/**
* Slovak lang variables
* encoding: utf-8
*
* @author Vladimir VASIL vvasil@post.sk
*
* $Id: sk.js,v 1.1 2005/11/22 20:56:44 spocke Exp $
*/
tinyMCE.addToLang('',{
print_desc : 'Tlač'
});

View file

@ -0,0 +1,5 @@
// SE lang variables
tinyMCE.addToLang('',{
print_desc : 'Skriv ut'
});

View file

@ -0,0 +1,6 @@
// Simplified Chinese lang variables contributed by cube316 (cube316@gmail.com)
//Çë·ÃÎÊ http://www.cube316.net/ ÒÔ»ñÈ¡TinyMCEµ&Auml;&Ouml;ÐÎ&Auml;&Ouml;§³&Ouml;
tinyMCE.addToLang('',{
print_desc : '´òÓ¡'
});

View file

@ -0,0 +1,6 @@
// Traditional Chinese BIG-5; Twapweb Site translated; twapweb_AT_gmail_DOT_com
// 繁體中文 BIG-5 ;數位應用坊製作; twapweb_AT_gmail_DOT_com
tinyMCE.addToLang('',{
print_desc : '列印'
});

View file

@ -0,0 +1,6 @@
// Traditional Chinese UTF-8; Twapweb Site translated; twapweb_AT_gmail_DOT_com
// 繁體中文 UTF-8 ;數位應用坊製作; twapweb_AT_gmail_DOT_com
tinyMCE.addToLang('',{
print_desc : '列印'
});

View file

@ -0,0 +1 @@
Check the TinyMCE documentation for details on this plugin.