Changeset 355

Show
Ignore:
Timestamp:
05/21/06 18:55:43 (3 years ago)
Author:
misja
Message:

Updated tinyMCE (2.0.6.1) including new spellchecking plugin.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • devel/_tinymce/changelog

    r290 r355  
     1Version 2.0.6.1 (2005-05-04) 
     2        Fixed issue where the layer and style plugins couldn't be added in incorrect order. 
     3        Fixed issue with Firefox nl not beeing defined in triggerSave correctly. 
     4Version 2.0.6 (2005-05-03) 
     5        Added new theme_advanced_source_editor_wrap option, this gives the possibility to force word wrapping. 
     6        Added new support for using div,blockquote,dt,dd,code,samp as a items in the theme_advanced_blockformats option. 
     7        Added new strict_loading_mode option, this switches the loading method from document.write to DOM. 
     8        Added new hidden_tab_class, display_tab_class options for resolving the MSIE image dimension bug. 
     9        Added new absolute layer support, this was added to a new plugin called layer. 
     10        Added new CSS style properties support, this was as a plugin called style. 
     11        Fixed bug where TinyMCE was reporting a warning when inserting a image while running on HTTPS. 
     12        Fixed bug where pressing the browser back button after submit removed empty paragraphs in MSIE. 
     13        Fixed bug where links the the same page as the editor page was converted into a /. 
     14        Fixed bug where the getSelectedHTML method was returning undefined when selecting controls in MSIE. 
     15        Fixed bug with unterminated string literal errors where reported in some browsers. 
     16        Fixed bug where src and href where converted into xsrc and xhref in text. 
     17        Fixed bug where two characters where removed by backspace sometimes in Gecko. 
     18        Fixed bug where class drop list wasn't visible in some of the table dialogs. 
     19        Fixed bug where br elements where incorrectly removed within paragraphs on backspace. 
     20        Fixed bug where drag/drop operations failed in MSIE when editor height was set to a % value. 
     21        Fixed bug where width/height was lost on images if they where placed in hidden tabs in MSIE. 
     22        Fixed bugs with CSS auto import parsing, contributed by Scott Eade. 
     23        Fixed compatiblity issues with MSIE 5.0. Some RegExps needed to be rewritten. 
     24        Fixed issue that made it impossible to remove the entity code/name for '. 
     25        Fixed issue with odd <br></br> elements not beeing handled properly. 
     26        Fixed issue where TinyMCE couldn't be loaded in a XML document. 
     27        Fixed issue with contextmenu beeing placed outside of visible area on Gecko browsers. 
     28        Fixed issue whith area tag not being closed. 
    129Version 2.0.5.1 (2005-03-22) 
    230        Fixed bug where emtpy paragraphs sometimes got removed in MSIE. 
  • devel/_tinymce/docs/credits.html

    r290 r355  
    2525                                <li class="list_subtitle">Code / Solutions / Features</li> 
    2626                                <ul> 
     27                                        <li>Digital Ventures</li> 
    2728                                        <li>donadoni</li> 
    2829                                        <li>Michael Keck</li> 
  • devel/_tinymce/docs/customization_language_packs.html

    r290 r355  
    1313<div class="content"> 
    1414        <h2>Making language packs</h2> 
    15         <p>Language packs are simply JavaScript name/value arrays placed in the &quot;<ISO-639-2 code>.js&quot; files in the &quot;lang&quot; directory. Remember to allways use the &quot;lang_&quot; prefix for these value names so that they don't override other variables in the templates. The example below shows how the cut, copy and paste texts are lang packed. Notice there are three kinds of language packs the first one is the general one shared by all themes these are located in the &quot;jscripts/tiny_mce/langs&quot; directory the secound ones are theme specific language packs these are contained in &quot;jscripts/tiny_mce/themes/&lt;some theme&gt;/langs&quot; and the last one is plugin specific language packs located in each plugin. 
     15        <p>Language packs are simply JavaScript name/value arrays placed in the &quot;<ISO-639-1 code>.js&quot; files in the &quot;lang&quot; directory. Remember to allways use the &quot;lang_&quot; prefix for these value names so that they don't override other variables in the templates. The example below shows how the cut, copy and paste texts are lang packed. Notice there are three kinds of language packs the first one is the general one shared by all themes these are located in the &quot;jscripts/tiny_mce/langs&quot; directory the secound ones are theme specific language packs these are contained in &quot;jscripts/tiny_mce/themes/&lt;some theme&gt;/langs&quot; and the last one is plugin specific language packs located in each plugin. 
    1616        </p> 
    1717        <p> 
  • devel/_tinymce/docs/option_docs_language.html

    r290 r355  
    1313<div class="content"> 
    1414        <p> 
    15                 This option should contain a language code of the editor documentation to use with TinyMCE. These codes are in <a href="http://www.loc.gov/standards/iso639-2/englangn.html">ISO-639-2</a> format to see if your language is available check the contents of &quot;tinymce/jscripts/tiny_mce/theme/&lt;theme used&gt;/docs&quot;. The default value of this option is the value specified in the  &quot;language&quot; option or &quot;en&quot; for English. 
     15                This option should contain a language code of the editor documentation to use with TinyMCE. These codes are in <a href="http://www.loc.gov/standards/iso639-2/englangn.html">ISO-639-1</a> format to see if your language is available check the contents of &quot;tinymce/jscripts/tiny_mce/theme/&lt;theme used&gt;/docs&quot;. The default value of this option is the value specified in the  &quot;language&quot; option or &quot;en&quot; for English. 
    1616        </p> 
    1717 
  • devel/_tinymce/docs/option_language.html

    r290 r355  
    1313<div class="content"> 
    1414        <p> 
    15                 This option should contain a language code of the language pack to use with TinyMCE. These codes are in <a href="http://www.loc.gov/standards/iso639-2/englangn.html">ISO-639-2</a> format to see if your language is available check the contents of &quot;tinymce/jscripts/tiny_mce/langs&quot;. The default value of this option is &quot;en&quot; for English. 
     15                This option should contain a language code of the language pack to use with TinyMCE. These codes are in <a href="http://www.loc.gov/standards/iso639-2/englangn.html">ISO-639-1</a> format to see if your language is available check the contents of &quot;tinymce/jscripts/tiny_mce/langs&quot;. The default value of this option is &quot;en&quot; for English. 
    1616        </p> 
    1717 
  • devel/_tinymce/docs/option_theme_advanced_blockformats.html

    r290 r355  
    2323tinyMCE.init({ 
    2424        ... 
    25         <strong>theme_advanced_blockformats : "p,div,h1,h2,h3,h4,h5,h6"</strong> 
     25        <strong>theme_advanced_blockformats : "p,div,h1,h2,h3,h4,h5,h6,div,blockquote,dt,dd,code,samp"</strong> 
    2626}); 
    2727</pre> 
  • devel/_tinymce/docs/plugin_spellchecker.html

    r290 r355  
    2222        </ol> 
    2323        </p> 
     24        <h3>Spellchecker plugins/modes</h3> 
     25        <p> 
     26                TinyMCE Spellchecker currently supports 3 modes. These are available as configurable PHP classes. 
     27                <ul> 
     28                        <li>TinyPspell - Run pspell within PHP. (PHP needs to be compiled with pspell support)</li> 
     29                        <li>TinyPspellShell - Run pspell as a command line shell application.</li> 
     30                        <li>TinyGoogleSpell - Use HTTP proxy bridge to connect to a Google XML Web Service.</li> 
     31                </ul> 
     32                Use this as the value for the the languages option when you are using the GoogleSpell class: +English=en,Danish=da,Dutch=nl,Finnish=fi,French=fr,German=de,Italian=it,Polish=pl,Portuguese=pt,Spanish=es,Swedish=sv 
     33        <br /><br /></p> 
    2434        <h3>Initialization Example</h3> 
    2535        <p> 
     
    5262        </table> 
    5363        </p> 
    54  
    5564</div> 
    5665 
     
    6069        <br style="clear: both" /> 
    6170</div> 
    62  
    6371</body> 
    6472</html> 
  • devel/_tinymce/docs/reference_buttons.html

    r290 r355  
    123123                                <li>rtl</li> 
    124124                        </ul> 
     125                <li><a href="plugin_layer.html">layer</a></li> 
     126                        <ul> 
     127                                <li>moveforward</li> 
     128                                <li>movebackward</li> 
     129                                <li>absolute</li> 
     130                                <li>insertlayer</li> 
     131                        </ul> 
     132                <li><a href="plugin_style.html">style</a></li> 
     133                        <ul> 
     134                                <li>styleprops</li> 
     135                        </ul> 
    125136        </ul> 
    126137        </p> 
    127138</div> 
     139 
    128140 
    129141<div class="footer"> 
  • devel/_tinymce/docs/reference_configuration.html

    r290 r355  
    4949                                <li><a href="option_object_resizing.html">object_resizing</a></li> 
    5050                                <li><a href="option_custom_shortcuts.html">custom_shortcuts</a></li> 
     51                                <li><a href="option_strict_loading_mode.html">strict_loading_mode</a></li> 
    5152                        </ul> 
    5253 
     
    139140                        </ul> 
    140141 
     142                        <h3>Tab specific</h3> 
     143                        <ul class="optionlist"> 
     144                                <li><a href="option_display_tab_class.html">display_tab_class</a></li> 
     145                                <li><a href="option_hidden_tab_class.html">hidden_tab_class</a></li> 
     146                        </ul> 
     147 
    141148                        </div> 
    142149                        <div class="column"> 
     
    156163                                <li><a href="option_theme_advanced_source_editor_width.html">theme_advanced_source_editor_width</a></li> 
    157164                                <li><a href="option_theme_advanced_source_editor_height.html">theme_advanced_source_editor_height</a></li> 
     165                                <li><a href="option_theme_advanced_source_editor_wrap.html">theme_advanced_source_editor_wrap</a></li> 
    158166                                <li><a href="option_theme_advanced_toolbar_location.html">theme_advanced_toolbar_location</a></li> 
    159167                                <li><a href="option_theme_advanced_toolbar_align.html">theme_advanced_toolbar_align</a></li> 
  • devel/_tinymce/docs/reference_plugins.html

    r290 r355  
    2929                                <li><a href="plugin_flash.html">flash</a></li> 
    3030                                <li><a href="plugin_autosave.html">autosave</a></li> 
     31                                <li><a href="plugin_style.html">style</a></li> 
     32                                <li><a href="plugin_layer.html">layer</a></li> 
    3133                        </ul> 
    3234                </div>           
     
    4042                                <li><a href="plugin_save.html">save</a></li> 
    4143                                <li><a href="plugin_noneditable.html">noneditable</a></li> 
     44                                <li><a href="plugin_spellchecker.html">spellchecker</a></li> 
    4245                        </ul> 
    4346                </div> 
     
    5255                                <li><a href="plugin_inlinepopups.html">inlinepopups</a></li> 
    5356                                <li><a href="plugin_fullpage.html">fullpage</a></li> 
    54                                 <li><a href="plugin_spellchecker.html">spellchecker</a></li> 
    5557                        </ul> 
    5658                </div> 
  • devel/_tinymce/examples/example_full.htm

    r290 r355  
    88                mode : "textareas", 
    99                theme : "advanced", 
    10                 plugins : "table,save,advhr,advimage,advlink,emotions,iespell,insertdatetime,preview,zoom,flash,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable", 
     10                plugins : "style,layer,table,save,advhr,advimage,advlink,emotions,iespell,insertdatetime,preview,flash,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable", 
    1111                theme_advanced_buttons1_add_before : "save,newdocument,separator", 
    1212                theme_advanced_buttons1_add : "fontselect,fontsizeselect", 
     
    1515                theme_advanced_buttons3_add_before : "tablecontrols,separator", 
    1616                theme_advanced_buttons3_add : "emotions,iespell,flash,advhr,separator,print,separator,ltr,rtl,separator,fullscreen", 
     17                theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops", 
    1718                theme_advanced_toolbar_location : "top", 
    1819                theme_advanced_toolbar_align : "left", 
     
    4849        This page shows all available plugins that are included in the TinyMCE distribution. Some of these plugins will only be visible on MSIE due to the lack of some support in FF. For more details on the various options on TinyMCE check the <a href="../docs/index.html">manual</a> or for more third party plugins check the plugin section.<br /><br /> 
    4950        <textarea id="elm1" name="elm1" rows="15" cols="80" style="width: 100%"> 
    50         &lt;span class=&quot;example1&quot;&gt;Test header 1&lt;/span&gt;&lt;br /&gt; 
    51         &lt;span class=&quot;example2&quot;&gt;Test header 2&lt;/span&gt;&lt;br /&gt; 
    52         &lt;span class=&quot;example3&quot;&gt;Test header 3&lt;/span&gt;&lt;br /&gt; 
    53         Some &lt;b&gt;element&lt;/b&gt;, this is to be editor 1. &lt;br /&gt; This editor instance has a 100% width to it. 
    54         &lt;p&gt;Some paragraph. &lt;a href=&quot;http://www.sourceforge.net&quot;&gt;Some link&lt;/a&gt;&lt;/p&gt; 
    55         &lt;img src=&quot;logo.jpg&quot;&gt; 
     51               &lt;span class=&quot;example1&quot;&gt;Test header 1&lt;/span&gt;&lt;br /&gt; 
     52               &lt;span class=&quot;example2&quot;&gt;Test header 2&lt;/span&gt;&lt;br /&gt; 
     53               &lt;span class=&quot;example3&quot;&gt;Test header 3&lt;/span&gt;&lt;br /&gt; 
     54               Some &lt;b&gt;element&lt;/b&gt;, this is to be editor 1. &lt;br /&gt; This editor instance has a 100% width to it. 
     55               &lt;p&gt;Some paragraph. &lt;a href=&quot;http://www.sourceforge.net&quot;&gt;Some link&lt;/a&gt;&lt;/p&gt; 
     56               &lt;img src=&quot;logo.jpg&quot;&gt; 
    5657        </textarea> 
    5758        <br /> 
  • devel/_tinymce/examples/example_simple.htm

    r290 r355  
    22<html xmlns="http://www.w3.org/1999/xhtml"> 
    33<head> 
     4<meta http-equiv="content-type" content="application/xhtml+xml; charset=utf-8" /> 
    45<title>Simple example</title> 
    56<!-- tinyMCE --> 
  • devel/_tinymce/jscripts/tiny_mce/langs/fi.js

    r290 r355  
    1313bullist_desc : 'Luettelo', 
    1414numlist_desc : 'Numeroitu lista', 
    15 outdent_desc : 'Poista sisennyt', 
     15outdent_desc : 'Poista sisennys', 
    1616indent_desc : 'Sisennys', 
    1717undo_desc : 'Peruuta (Ctrl+Z)', 
  • devel/_tinymce/jscripts/tiny_mce/langs/fr.js

    r290 r355  
    1 // FR lang variables by Pat Boens 
    2 // Modify by Laurent Dran 
    3 // Modifié par Normand Lamoureux le 2005-11-12 
     1// FR lang variables 
     2// Modified by Motte, last updated 2006-03-23 
    43 
    54tinyMCE.addToLang('',{ 
    65bold_desc : 'Gras', 
    76italic_desc : 'Italique', 
    8 underline_desc : 'Souligné', 
    9 striketrough_desc : 'Barré', 
    10 justifyleft_desc : 'Aligner à gauche', 
     7underline_desc : 'Soulign&eacute;', 
     8striketrough_desc : 'Barr&eacute;', 
     9justifyleft_desc : 'Aligner &agrave; gauche', 
    1110justifycenter_desc : 'Centrer', 
    12 justifyright_desc : 'Aligner à droite', 
     11justifyright_desc : 'Aligner &agrave; droite', 
    1312justifyfull_desc : 'Justifier', 
    14 bullist_desc : 'Liste à puces', 
    15 numlist_desc : 'Liste numérotée', 
     13bullist_desc : 'Liste &agrave; puces', 
     14numlist_desc : 'Liste num&eacute;rot&eacute;e', 
    1615outdent_desc : 'Diminuer le retrait', 
    1716indent_desc : 'Augmenter le retrait', 
    1817undo_desc : 'Annuler', 
    1918redo_desc : 'Restaurer', 
    20 link_desc : 'Insérer/Modifier un lien', 
     19link_desc : 'Ins&eacute;rer/Modifier un lien', 
    2120unlink_desc : 'Supprimer le lien', 
    22 image_desc : 'Insérer/Modifier une image', 
     21image_desc : 'Ins&eacute;rer/Modifier une image', 
    2322cleanup_desc : 'Nettoyer le code', 
    24 focus_alert : 'Une instance de l\éditeur doit avoir le focus avant d\'utiliser cette commande.', 
    25 edit_confirm : 'Voulez-vous utiliser le mode WYSIWYG pour cette zone d\'édition de texte ?', 
     23focus_alert : 'Une instance de l\&eacute;diteur doit avoir le focus avant d\'utiliser cette commande.', 
     24edit_confirm : 'Voulez-vous utiliser le mode WYSIWYG pour cette zone d\'&eacute;dition de texte ?', 
    2625insert_link_title : 'Gestionnaire d\'hyperlien', 
    27 insert : 'Insérer', 
     26insert : 'Ins&eacute;rer', 
    2827update : 'Appliquer', 
    2928cancel : 'Annuler', 
    3029insert_link_url : 'Lien URL', 
    3130insert_link_target : 'Cible', 
    32 insert_link_target_same : 'Ouvrir dans la même fenêtre', 
    33 insert_link_target_blank : 'Ouvrir dans une nouvelle fenêtre', 
     31insert_link_target_same : 'Ouvrir dans la m&ecirc;me fen&ecirc;tre', 
     32insert_link_target_blank : 'Ouvrir dans une nouvelle fen&ecirc;tre', 
    3433insert_image_title : 'Gestionnaire d\'image', 
    3534insert_image_src : 'URL de l\'image', 
    36 insert_image_alt : 'Équivalent textuel', 
     35insert_image_alt : 'Equivalent textuel', 
    3736help_desc : 'Aide', 
    3837bold_img : "bold_fr.gif", 
    3938italic_img : "italic.gif", 
    4039underline_img : "underline_fr.gif", 
    41 clipboard_msg : 'Pour des raisons de sécurité, les fonctions « Copier », « Couper » et « Coller »\nne sont pas disponibles dans Mozilla et Firefox.\n\n\nVoulez-vous plus d\'information à ce sujet?\n', 
    42 popup_blocked : 'Désolé, mais votre bloqueur de pop-up empêche le fonctionnement normal de l\'application.\n\n\nPour utiliser cet outil, veuillez régler votre navigateur pour qu\'il accepte les pop-up de ce site.' 
     40clipboard_msg : 'Pour des raisons de s&eacute;curit&eacute;, les fonctions « Copier », « Couper » et « Coller »\nne sont pas disponibles dans Mozilla et Firefox.\n\n\nVoulez-vous plus d\'information &agrave; ce sujet?\n', 
     41popup_blocked : 'D&eacute;sol&eacute;, mais votre bloqueur de pop-up emp&ecirc;che le fonctionnement normal de l\'application.\n\n\nPour utiliser cet outil, veuillez r&eacute;gler votre navigateur pour qu\'il accepte les pop-up de ce site.' 
    4342}); 
  • devel/_tinymce/jscripts/tiny_mce/langs/it.js

    r290 r355  
    1 // Variabili lingua IT - fabrix.xm@lombardiacom.it 
     1// IT lang variables 
    22 
    33tinyMCE.addToLang('',{ 
    4 bold_desc : 'Grassetto', 
    5 italic_desc : 'Corsivo', 
    6 underline_desc : 'Sottolineato', 
     4bold_desc : 'Grassetto (Ctrl+B)', 
     5italic_desc : 'Corsivo (Ctrl+I)', 
     6underline_desc : 'Sottolineato (Ctrl+U)', 
    77striketrough_desc : 'Barrato', 
    88justifyleft_desc : 'Allinea a sinistra', 
    9 justifycenter_desc : 'Allinea centrato', 
     9justifycenter_desc : 'Allinea al centro', 
    1010justifyright_desc : 'Allinea a destra', 
    1111justifyfull_desc : 'Giustifica', 
    12 bullist_desc : 'Lista non ordinata', 
    13 numlist_desc : 'Lista ordinata', 
    14 outdent_desc : 'Rientra', 
    15 indent_desc : 'Indenta', 
    16 undo_desc : 'Annulla', 
    17 redo_desc : 'Ripeti', 
    18 link_desc : 'Inserisci link', 
     12bullist_desc : 'Elenco puntato', 
     13numlist_desc : 'Elenco numerato', 
     14outdent_desc : 'Riduci rientro', 
     15indent_desc : 'Aumenta rientro', 
     16undo_desc : 'Annulla (Ctrl+Z)', 
     17redo_desc : 'Ripeti (Ctrl+Y)', 
     18link_desc : 'Inserisci o modifica link', 
    1919unlink_desc : 'Elimina link', 
    20 image_desc : 'Inserisci immagine', 
    21 cleanup_desc : 'Pulisci il codice', 
    22 focus_alert : 'Una istanza dell\' editor deve essere selezionata prima di usare questo comando.', 
    23 edit_confirm : 'Vuoi usare la modalit\u00E0 WYSIWYG per questa textarea?', 
    24 insert_link_title : 'Inserisci/modifica link', 
     20image_desc : 'Inserisci o modifica immagine', 
     21cleanup_desc : 'Pulisci il codice HTML', 
     22focus_alert : 'Fare clic su un\' istanza dell\'editor prima di eseguire questo comando', 
     23edit_confirm : 'Vuoi usare l\'editor visuale in quest\'area di testo?', 
     24insert_link_title : 'Inserisci o modifica link', 
    2525insert : 'Inserisci', 
    26 update : 'Inserisci', 
    27 cancel : 'Cancella', 
    28 insert_link_url : 'Link URL', 
    29 insert_link_target : 'Target', 
     26update : 'Modifica', 
     27cancel : 'Annulla', 
     28insert_link_url : 'URL del collegamento', 
     29insert_link_target : 'Destinazione', 
    3030insert_link_target_same : 'Apri il link nella stessa finestra', 
    3131insert_link_target_blank : 'Apri il link in una nuova finestra', 
    32 insert_image_title : 'Inserisci/modifica immagine', 
    33 insert_image_src : 'URL immagine', 
    34 insert_image_alt : 'Descrizione dell\'immagine', 
    35 help_desc : 'Guida', 
     32insert_image_title : 'Inserisci o modifica immagine', 
     33insert_image_src : 'URL dell\'immagine', 
     34insert_image_alt : 'Descrizione', 
     35help_desc : 'Aiuto', 
    3636bold_img : "bold.gif", 
    3737italic_img : "italic.gif", 
    3838underline_img : "underline.gif", 
    39 clipboard_msg : 'Copia, Taglia e Incolla non sono disponibili in Mozilla e Firefox.\nVuoi maggiori dettegli su questo problema?', 
    40 popup_blocked : 'Spiacenti, un sistema di blocco popup ha impedito l\'apertura di una finestra necessaria per il funzionamento dell\'editor. Disabilita il blocco popup per questo sito se vuoi utilizzare tutte le funzionalit\u00E0.' 
     39clipboard_msg : 'Le operazioni di taglia, copia e incolla non sono disponibili in Firefox. Vuoi ricevere ulteriori informazioni al riguardo?', 
     40popup_blocked : 'Un blocco popup sta impedendo l\'utilizzo di alcune funzionalit&agrave;. Dovresti disabilitare il blocco per questo sito.', 
     41insert_image_delta_width : 50, 
     42insert_link_delta_width : 75 
    4143}); 
  • devel/_tinymce/jscripts/tiny_mce/langs/readme.txt

    r290 r355  
    22http://tinymce.moxiecode.com/download.php 
    33 
    4 The language pack codes are based on ISO-639-2 
     4The language pack codes are based on ISO-639-1 
    55http://www.loc.gov/standards/iso639-2/englangn.html 
    66 
  • devel/_tinymce/jscripts/tiny_mce/plugins/_template/langs/fr.js

    r290 r355  
    1 // Canadian French lang variables by Virtuelcom   last modification: 2005-06-15 
    2 // Modifié par Normand Lamoureux le 2005-11-12 
     1// FR lang variables 
     2// Modified by Motte, last updated 2006-03-23 
    33 
    4 /* N'oubliez pas d'identifer les paramètres de langue ainsi: <votre plugin>_<un nom> */ 
     4/* N'oubliez pas d'identifer les parametres de langue ainsi: <votre plugin>_<un nom> */ 
    55 
    66tinyMCE.addToLang('',{ 
    7 template_title : 'Texte qui apparaîtra sous forme de titre dans la fenêtre pop-up de votre plugin', 
    8 template_desc : 'Texte qui apparaîtra sous forme d\'info-bulle au survol du bouton de votre plugin' 
     7template_title : 'Texte qui appara&icirc;tra sous forme de titre dans la fen&ecirc;tre pop-up de votre plugin', 
     8template_desc : 'Texte qui appara&icirc;tra sous forme d\'info-bulle au survol du bouton de votre plugin' 
    99}); 
  • devel/_tinymce/jscripts/tiny_mce/plugins/advhr/langs/fr.js

    r290 r355  
    1 // French lang variables by Laurent Dran 
    2 // Modifié par Normand Lamoureux le 2005-11-12 
     1// FR lang variables 
     2// Modified by Motte, last updated 2006-03-23 
    33 
    44tinyMCE.addToLang('',{ 
    5 insert_advhr_desc : 'Insérer une règle horizontale stylée', 
     5insert_advhr_desc : 'Ins&eacute;rer une r&egrave;gle horizontale styl&eacute;e', 
    66insert_advhr_width : 'Largeur', 
    77insert_advhr_size : 'Hauteur', 
  • devel/_tinymce/jscripts/tiny_mce/plugins/advhr/langs/he.js

    r290 r355  
    22 
    33tinyMCE.addToLang('',{ 
    4 insert_advhr_desc : 'äëðñ/òøåê ÷å àåô÷é', 
     4insert_advhr_desc : '÷å àåô÷é', 
    55insert_advhr_width : 'øåçá', 
    66insert_advhr_size : 'âåáä', 
  • devel/_tinymce/jscripts/tiny_mce/plugins/advimage/langs/fr.js

    r290 r355  
    1 // Modifier par Mathieu Gautheret 
     1// FR lang variables 
     2// Modified by Motte, last updated 2006-03-23 
    23 
    34tinyMCE.addToLang('advimage',{ 
    4 tab_general : 'Générale', 
     5tab_general : 'G&eacute;n&eacute;rale', 
    56tab_appearance : 'Apparence', 
    6 tab_advanced : 'Avancée', 
    7 general : 'Générale', 
     7tab_advanced : 'Avanc&eacute;', 
     8general : 'G&eacute;n&eacute;rale', 
    89title : 'Titre', 
    9 preview : 'Prévisualisation', 
     10preview : 'Pr&eacute;visualisation', 
    1011constrain_proportions : 'Conserver les proportions', 
    11 langdir : 'Sens d\'écriture', 
    12 langcode : 'Code de langue du libellé', 
     12langdir : 'Sens d\'&eacute;criture', 
     13langcode : 'Code de langue du libell&eacute;', 
    1314long_desc : 'Description du lien', 
    1415style : 'Style', 
    1516classes : 'Classes', 
    16 ltr : 'De gauche à droite', 
    17 rtl : 'De droite à gauche', 
     17ltr : 'De gauche &agrave; droite', 
     18rtl : 'De droite &agrave; gauche', 
    1819id : 'Id', 
    1920image_map : 'Image map', 
    20 swap_image : 'Image d\'échange', 
     21swap_image : 'Image d\'&eacute;change', 
    2122alt_image : 'Image alternative', 
    2223mouseover : 'Quand le pointeur est au dessus', 
    2324mouseout : 'Quand le pointeur est en dehors', 
    2425misc : 'Divers', 
    25 example_img : 'Apparence&nbsp;prévisualisation&nbsp;image', 
    26 missing_alt : 'Etes vous sur de vouloir continuer sans inclure une description de l\'image. Cette description est utile pour les utilisateurs ne pouvant pas afficher les images ou les ayant désactivées.' 
     26example_img : 'Apparence&nbsp;pr&eacute;visualisation&nbsp;image', 
     27missing_alt : 'Etes vous sur de vouloir continuer sans inclure une description de l\'image. Cette description est utile pour les utilisateurs ne pouvant pas afficher les images ou les ayant d&eacute;sactiv&eacute;es.' 
    2728}); 
  • devel/_tinymce/jscripts/tiny_mce/plugins/advimage/langs/sk.js

    r290 r355  
    33 * encoding: utf-8 
    44 *  
    5  * @author Vladimir VASIL vvasil@post.sk 
     5 * @author Marián Zvalo marian.zvalo@student.umb.sk 
    66 *     
    7  * $Id: sk.js,v 1.1 2005/11/22 20:56:44 spocke Exp $  
     7 * $Id: sk.js,v 1.1 2006/02/28 20:56:44 spocke Exp $  
    88 */   
    99 
     
    1212insert_image_alt2 : 'Názov obrázku', 
    1313insert_image_onmousemove : 'Alternatívny obrázok', 
    14 insert_image_mouseover : 'pri najet? myÅ¡ou', 
    15 insert_image_mouseout : 'pri odjet? myÅ¡ou' 
     14insert_image_mouseover : 'pri prejdení myÅ¡ou', 
     15insert_image_mouseout : 'pri odídení myÅ¡i', 
     16advimage_tab_general : 'Hlavné', 
     17advimage_tab_appearance : 'VzhÄŸad', 
     18advimage_tab_advanced : 'Rozšírené', 
     19advimage_general : 'Hlavné nastavenia', 
     20advimage_title : 'Titulok', 
     21advimage_preview : 'NáhÄŸad', 
     22advimage_constrain_proportions : 'ZachovaÅ¥ pomer strán', 
     23advimage_langdir : 'Smer textu', 
     24advimage_langcode : 'Kód jazyka', 
     25advimage_long_desc : 'DlhÜ popis obrázka', 
     26advimage_style : 'CSS Å tÜl', 
     27advimage_classes : 'CSS Trieda', 
     28advimage_ltr : 'Z ÄŸava do prava', 
     29advimage_rtl : 'Z prava do ÄŸava', 
     30advimage_id : 'Id', 
     31advimage_image_map : 'Obrazová mapa', 
     32advimage_swap_image : 'Zmena obrázka', 
     33advimage_alt_image : 'Alternatívny obrázok', 
     34advimage_mouseover : 'ak je kurzor nad obrázkom', 
     35advimage_mouseout : 'ak kurzor odíde z obrázka', 
     36advimage_misc : 'RÃŽzne', 
     37advimage_example_img : 'VzhÄŸad&nbsp;náhÄŸad&nbsp;obrázka', 
     38advimage_missing_alt : 'Ste si istÜ(á), ÅŸe chcete pokračovaÅ¥ bez vloÅŸeného popisu obrázka? Bez popisu sa obrázok nesprávne zobrazí v textovÜch prehliadačoch, ak má uşívateÄŸ vypnuté zobrazenie obrázkov alebo ak je uşívateÄŸ nevidiaci.' 
    1639}); 
  • devel/_tinymce/jscripts/tiny_mce/plugins/advlink/langs/fr.js

    r290 r355  
    1 // French lang variables by Laurent Dran 
     1// FR lang variables 
     2// Modified by Motte, last updated 2006-03-23 
    23 
    3 tinyMCE.addToLang('',{ 
    4 insert_link_target_same : 'Ouvre dans la fen&#281;tre / Cadre(frame)', 
    5 insert_link_target_parent : 'Ouvre dans fen&#281;tre parente / Cadres(frame)', 
    6 insert_link_target_top : 'Ouvre dans le Top frame (remplace toutes les cadres(frames))', 
    7 insert_link_target_blank : 'Ouvre dans la fen&#281;tre', 
    8 insert_link_target_named : 'Ouvre dans la fen&#281;tre', 
    9 insert_link_popup : 'JS-Popup', 
    10 insert_link_popup_url : 'URL de la Popup', 
    11 insert_link_popup_name : 'Nom de la fen&#281;tre', 
    12 insert_link_popup_return : 'Inse