Ignore:
Timestamp:
08/13/07 17:18:06 (17 years ago)
Author:
niltonneto
Message:

Vide change_log.txt

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/expressoMail1_2/js/rich_text_editor.js

    r2 r53  
    208208        if (is_ie){ 
    209209                if ((mainField.document.selection.createRange().text) == ''){ 
    210                         alert('Primeiro, selecione o texto que deseja transformar em link.'); 
     210                                alert(get_lang('Chose the text you want transform in link before.'));  
    211211                        return; 
    212212                } 
     
    214214        else{ 
    215215                if (mainField.window.getSelection() == ''){ 
    216                         alert('Primeiro, selecione o texto que deseja transformar em link.'); 
     216                                alert(get_lang('Chose the text you want transform in link before.'));  
    217217                        return; 
    218218                } 
    219219        } 
    220         var szURL = prompt("Entre com a URL do link:", "http://"); 
     220                var szURL = prompt(get_lang('Enter with link URL:", "http://"'));  
    221221        if ((szURL != null) && (szURL != "")){ 
    222222                this.editorCommand("CreateLink", szURL); 
Note: See TracChangeset for help on using the changeset viewer.