upgrade to tinymce 2.1.1.1

This commit is contained in:
JT Smith 2007-07-07 21:26:06 +00:00
parent f36ba1b268
commit e75b689857
847 changed files with 34500 additions and 7692 deletions

View file

@ -1 +1 @@
tinyMCE.importPluginLanguagePack('iespell','en,tr,cs,el,fr_ca,it,ko,sv,zh_cn,fr,de,pl,pt_br,nl,da,he,nb,ru,ru_KOI8-R,ru_UTF-8,nn,fi,cy,es,is,zh_tw,zh_tw_utf8,sk');var TinyMCE_IESpellPlugin={getInfo:function(){return{longname:'IESpell (MSIE Only)',author:'Moxiecode Systems',authorurl:'http://tinymce.moxiecode.com',infourl:'http://tinymce.moxiecode.com/tinymce/docs/plugin_iespell.html',version:tinyMCE.majorVersion+"."+tinyMCE.minorVersion};},getControlHTML:function(cn){if(cn=="iespell"&&(tinyMCE.isMSIE&&!tinyMCE.isOpera))return tinyMCE.getButtonHTML(cn,'lang_iespell_desc','{$pluginurl}/images/iespell.gif','mceIESpell');return"";},execCommand:function(editor_id,element,command,user_interface,value){if(command=="mceIESpell"){try{var ieSpell=new ActiveXObject("ieSpell.ieSpellExtension");ieSpell.CheckDocumentNode(tinyMCE.getInstanceById(editor_id).contentDocument.documentElement);}catch(e){if(e.number==-2146827859){if(confirm(tinyMCE.getLang("lang_iespell_download","",true)))window.open('http://www.iespell.com/download.php','ieSpellDownload','');}else alert("Error Loading ieSpell: Exception "+e.number);}return true;}return false;}};tinyMCE.addPlugin("iespell",TinyMCE_IESpellPlugin);
tinyMCE.importPluginLanguagePack('iespell');var TinyMCE_IESpellPlugin={getInfo:function(){return{longname:'IESpell (MSIE Only)',author:'Moxiecode Systems AB',authorurl:'http://tinymce.moxiecode.com',infourl:'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/iespell',version:tinyMCE.majorVersion+"."+tinyMCE.minorVersion}},getControlHTML:function(cn){if(cn=="iespell"&&(tinyMCE.isMSIE&&!tinyMCE.isOpera))return tinyMCE.getButtonHTML(cn,'lang_iespell_desc','{$pluginurl}/images/iespell.gif','mceIESpell');return""},execCommand:function(editor_id,element,command,user_interface,value){if(command=="mceIESpell"){try{var ieSpell=new ActiveXObject("ieSpell.ieSpellExtension");ieSpell.CheckDocumentNode(tinyMCE.getInstanceById(editor_id).contentDocument.documentElement)}catch(e){if(e.number==-2146827859){if(confirm(tinyMCE.getLang("lang_iespell_download","",true)))window.open('http://www.iespell.com/download.php','ieSpellDownload','')}else alert("Error Loading ieSpell: Exception "+e.number)}return true}return false}};tinyMCE.addPlugin("iespell",TinyMCE_IESpellPlugin);

View file

@ -1,22 +1,20 @@
/**
* $RCSfile: editor_plugin_src.js,v $
* $Revision: 1.20 $
* $Date: 2006/02/10 16:29:39 $
* $Id: editor_plugin_src.js 201 2007-02-12 15:56:56Z spocke $
*
* @author Moxiecode
* @copyright Copyright © 2004-2006, Moxiecode Systems AB, All rights reserved.
* @copyright Copyright © 2004-2007, Moxiecode Systems AB, All rights reserved.
*/
/* Import plugin specific language pack */
tinyMCE.importPluginLanguagePack('iespell', 'en,tr,cs,el,fr_ca,it,ko,sv,zh_cn,fr,de,pl,pt_br,nl,da,he,nb,ru,ru_KOI8-R,ru_UTF-8,nn,fi,cy,es,is,zh_tw,zh_tw_utf8,sk');
tinyMCE.importPluginLanguagePack('iespell');
var TinyMCE_IESpellPlugin = {
getInfo : function() {
return {
longname : 'IESpell (MSIE Only)',
author : 'Moxiecode Systems',
author : 'Moxiecode Systems AB',
authorurl : 'http://tinymce.moxiecode.com',
infourl : 'http://tinymce.moxiecode.com/tinymce/docs/plugin_iespell.html',
infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/iespell',
version : tinyMCE.majorVersion + "." + tinyMCE.minorVersion
};
},

View file

@ -0,0 +1,7 @@
// UK lang variables
tinyMCE.addToLang('',{
iespell_desc : 'Run spell checking',
iespell_download : "ieSpell not detected. Click OK to go to download page."
});

View file

@ -1,4 +1,4 @@
// DK lang variables contributed by Jan Moelgaard, John Dalsgaard and Bo Frederiksen.
// DK lang variables - Transl.:Jan Moelgaard, Bo Frederiksen - Corr.:
tinyMCE.addToLang('',{
iespell_desc : 'Lav stavekontrol',

View file

@ -1,7 +1,7 @@
// Greek lang variables by Jacaranda Bill
tinyMCE.addToLang('',{
iespell_desc : 'Ορθογραöικός έλåγχος',
iespell_download : "Το πρόγραμμα ieSpell äåν βρέθηκå. Πατήστå OK για να μåταβåίτå στην ιστοσåλίäα λήψης του προγράμματος."
iespell_desc : 'Ορθογραφικός έλεγχος',
iespell_download : "Το πρόγραμμα ieSpell δεν βρέθηκε. Πατήστε OK για να μεταβείτε στην ιστοσελίδα λήψης του προγράμματος."
});

View file

@ -4,12 +4,13 @@
* Authors : Alvaro Velasco,
* Adolfo Sanz De Diego (asanzdiego) <asanzdiego@yahoo.es>,
* Carlos C Soto (eclipxe) <csoto@sia-solutions.com>
* Last Updated : October 17, 2005
* TinyMCE Version : 2.0RC3
* Eneko Castresana Vara
* Last Updated : July 14, 2006
* TinyMCE Version : 2.0.6.1
*/
tinyMCE.addToLang('',{
iespell_desc : 'Ejecutar corrector ortográfico',
iespell_download : "Corrector ortográfico no detectado. Pulse OK para ir a la página de descarga."
iespell_desc : 'Ejecutar corrector ortogr&aacute;fico',
iespell_download : "Corrector ortogr&aacute;fico no detectado. Pulse OK para ir a la p&aacute;gina de descarga."
});

View file

@ -0,0 +1,7 @@
// UK lang variables
tinyMCE.addToLang('',{
iespell_desc : 'Run spell checking',
iespell_download : "ieSpell not detected. Click OK to go to download page."
});

View file

@ -0,0 +1,7 @@
// UK lang variables
tinyMCE.addToLang('',{
iespell_desc : 'Run spell checking',
iespell_download : "ieSpell not detected. Click OK to go to download page."
});

View file

@ -1,7 +1,13 @@
// IT lang variables
tinyMCE.addToLang('',{
iespell_desc : 'Esegui controllo ortografico',
iespell_download : "ieSpell non trovato. Fai clic su OK per visitare la pagina di download."
});
/**
* IT lang variables
*
* Author : Luciano Vernaschi <luciano@virgilio.it>
* Last Updated : Oct. 17th, 2006
* TinyMCE Version : 2.0.7
*/
tinyMCE.addToLang('',{
iespell_desc : 'Esegui controllo ortografico',
iespell_download : "ieSpell non trovato. Fai clic su OK per visitare la pagina di download."
});

View file

@ -0,0 +1,7 @@
// JA lang variables
tinyMCE.addToLang('',{
iespell_desc : 'スペルチェックを行う',
iespell_download : "ieSpellが検出できませんでした。OKボタンを押してダウンロードページを表示してください"
});

View file

@ -4,5 +4,5 @@
tinyMCE.addToLang('',{
iespell_desc : 'Uruchom sprawdzanie pisowni',
iespell_download : "Nie wykryto pluginu, kliknij aby przejść do strony z pluginami."
iespell_download : "Nie wykryto pluginu, kliknij aby przejść do strony z pluginami."
});

View file

@ -2,13 +2,13 @@
* pt_br lang variables
* Brazilian Portuguese
*
* Authors : ????
* Author
* Revision and modifications:
* Marcio Barbosa (mpg) <mpg@mpg.com.br>
* Last Updated : November 26, 2005
* TinyMCE Version : 2.0RC4
* First Release : November 26, 2005 - TinyMCE Version : 2.0RC4
* Last Updated : November 20, 2006 - TinyMCE Version : 2.0.8
*/
tinyMCE.addToLang('',{
iespell_desc : 'Executar verificação ortográfica',
iespell_download : "Verificador ieSpell não detectado. Click OK para ir à página de download."
iespell_download : "Verificador ieSpell não detectado. Clique em \"OK\" para ir à página de download."
});

View file

@ -0,0 +1,7 @@
// RO lang variables
tinyMCE.addToLang('',{
iespell_desc : 'Porne&#351;te verificarea ortografic&#259;',
iespell_download : "ieSpell nu a fost detectat. Apas&#259; OK pentru a merge la pagina de desc&#259;rcare."
});

View file

@ -1,7 +1,7 @@
// RU lang variables cp1251
tinyMCE.addToLang('',{
iespell_desc : 'Запустить проверку орфографии',
iespell_download : "ieSpell не обнаружен. нажмите OK, чтобы перейти на страницу загрузки."
});
// RU lang variables
tinyMCE.addToLang('',{
iespell_desc : 'Запустить проверку орфографии',
iespell_download : 'ieSpell не обнаружен. нажмите OK, чтобы перейти на страницу загрузки.'
});

View file

@ -0,0 +1,7 @@
// RU lang variables
tinyMCE.addToLang('',{
iespell_desc : 'Запустить проверку орфографии',
iespell_download : 'ieSpell не обнаружен. нажмите OK, чтобы перейти на страницу загрузки.'
});

View file

@ -1,7 +1,7 @@
// RU lang variables KOI8-R
tinyMCE.addToLang('',{
iespell_desc : 'Запустить проверку орфографии',
iespell_download : "ieSpell не обнаружен. нажмите OK, чтобы перейти на страницу загрузки."
});
// RU lang variables
tinyMCE.addToLang('',{
iespell_desc : 'Запустить проверку орфографии',
iespell_download : 'ieSpell не обнаружен. нажмите OK, чтобы перейти на страницу загрузки.'
});

View file

@ -0,0 +1,6 @@
// UK lang variables
tinyMCE.addToLang('',{
iespell_desc : 'Run spell checking',
iespell_download : "ieSpell not detected. Click OK to go to download page."
});

View file

@ -0,0 +1,7 @@
// SR lang variables
tinyMCE.addToLang('',{
iespell_desc : 'Startuj proveru teksta',
iespell_download : "ieSpell nije detektovan. Kliknite OK za dolazak na download stranu."
});

View file

@ -0,0 +1,6 @@
// SE lang variables
tinyMCE.addToLang('',{
iespell_desc : 'K&ouml;r r&auml;ttstavningskontroll',
iespell_download : "ieSpell verkar inte vara installerad. Klicka OK f&ouml;r att ladda hem."
});

View file

@ -0,0 +1,6 @@
// UK lang variables
tinyMCE.addToLang('',{
iespell_desc : 'Запустити перевірку орфографії',
iespell_download : 'ieSpell не знайдено. Натисніть OK, щоб перейти на сторінку завантаження.'
});

View file

@ -0,0 +1,6 @@
// UK lang variables
tinyMCE.addToLang('',{
iespell_desc : 'Запустити перевірку орфографії',
iespell_download : 'ieSpell не знайдено. Натисніть OK, щоб перейти на сторінку завантаження.'
});

View file

@ -0,0 +1,6 @@
// UK lang variables
tinyMCE.addToLang('',{
iespell_desc : 'Запустити перев╕рку орфограф╕╖',
iespell_download : 'ieSpell не знайдено. Натисн╕ть OK, щоб перейти на стор╕нку завантаження.'
});