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/draw_api.js

    r51 r53  
    3838                tree_folders = new dFTree({name: 'tree_folders'}); 
    3939 
    40                 var n_root = new dNode({id:'root', caption:'Minhas Pastas'}); 
     40                var n_root = new dNode({id:'root', caption: get_lang("My Folders")}); 
    4141                tree_folders.add(n_root,'anything'); //Places the root; second argument can be anything. 
    4242         
     
    5151                        else if (folders[i].folder_parent == 'user'){ 
    5252                                if (!tree_folders.getNodeById('user')){ 
    53                                         var n_root_shared_folders = new dNode({id:'user', caption:'Pastas compartilhadas', plusSign:true});  
     53                                        var n_root_shared_folders = new dNode({id:'user', caption:get_lang("Shared folders"), plusSign:true});  
    5454                                        tree_folders.add(n_root_shared_folders,'root'); 
    5555                                } 
     
    8383        } 
    8484        if(folder_create != ""){ 
    85                 if(confirm("Existem pastas com formato inválido.Deseja corrigi-las?")){ 
     85                if(confirm(get_lang("There are folders with invalid format. Do you want to fix them?"))){ 
    8686                        var handler_correct_folders = function(data){ 
    8787                                //Timeout to release HTTPRequest , loadScript and update tree folders. 
     
    815815        var option_reply_without_history                = '<span class="message_options" onclick=new_message("reply_without_history","'+ID+'");>'+get_lang("Reply without history")+'</span> | '; 
    816816        var option_reply_to_all_without_history = '<span class="message_options" onclick=new_message("reply_to_all_without_history","'+ID+'");>'+get_lang("Reply to all without history")+'</span> | '; 
    817         var option_source_msg                                   = '<span class="message_options" onclick=source_msg("'+ID+'","'+url_encode(info_msg.msg_folder)+'");>'+get_lang("Font Message")+'</span>';       
     817        var option_source_msg                                   = '<span class="message_options" onclick=source_msg("'+ID+'","'+url_encode(info_msg.msg_folder)+'");>'+get_lang("Message Font")+'</span>';       
    818818 
    819819        div_other_options.innerHTML = option_mark_as + option_mark_as_unseen + option_mark_as_important + option_mark_as_normal + option_move + option_reply_to_all + option_reply_without_history + option_reply_to_all_without_history + option_source_msg; 
     
    11891189        if ((preferences.save_in_folder == '-1') || (preferences.save_in_folder == '')){ 
    11901190                var option_send                 = '<span class="message_options" onclick=send_message("'+ID+'","null","null");>'+get_lang("Send")+'</span> | '; 
    1191                 var option_send_and_file= '<span class="message_options" onclick=wfolders.makeWindow("'+ID+'","send_and_file");>'+get_lang("Send and File")+'</span> | '; 
     1191                var option_send_and_file= '<span class="message_options" onclick=wfolders.makeWindow("'+ID+'","send_and_file");>'+get_lang("Send and Store")+'</span> | '; 
    11921192        } 
    11931193        else{ 
     
    12921292        var img_search = document.createElement("IMG"); 
    12931293        img_search.src = "./templates/default/images/search.gif"; 
    1294         img_search.title = get_lang('Search') + " | " + get_lang('Use F9 Key for shortcut.'); 
     1294        img_search.title = get_lang('Search') + " | " + get_lang('Use F9 Key as shortcut.'); 
    12951295        img_search.onclick = function () {emQuickSearch(document.getElementById('to_'+ID).value, 'to', ID);}; 
    12961296        var span_search = document.createElement("SPAN"); 
     
    13751375        img_search.src = "./templates/default/images/search.gif"; 
    13761376        img_search.onclick = function () {emQuickSearch(document.getElementById('cc_'+ID).value, 'cc', ID)} 
    1377         img_search.title = get_lang('Search') + " | " + get_lang('Use F9 Key for shortcut.'); 
     1377        img_search.title = get_lang('Search') + " | " + get_lang('Use F9 Key as shortcut.'); 
    13781378        var span_search = document.createElement("SPAN"); 
    13791379        span_search.innerHTML = get_lang('Search'); 
     
    14551455        var img_search = document.createElement("IMG"); 
    14561456        img_search.src = "./templates/default/images/search.gif"; 
    1457         img_search.title = get_lang('Search') + " | " + get_lang('Use F9 Key for shortcut.');    
     1457        img_search.title = get_lang('Search') + " | " + get_lang('Use F9 Key as shortcut.');     
    14581458        img_search.onclick = function () {emQuickSearch(document.getElementById('cco_'+ID).value, 'cco', ID);}; 
    14591459        var span_search = document.createElement("SPAN"); 
     
    18351835        if(value > 90) { 
    18361836                if(value >= 100) 
    1837                         write_msg(get_lang("Your Mailbox is 100% full! You must to free more space or will not receive messages.")); 
     1837                        write_msg(get_lang("Your Mailbox is 100% full! You must free more space or will not receive messages.")); 
    18381838                else 
    18391839                        write_msg(get_lang("Warning: Your Mailbox is almost full!")); 
Note: See TracChangeset for help on using the changeset viewer.