Ignore:
Timestamp:
08/05/10 17:44:51 (14 years ago)
Author:
niltonneto
Message:

Ticket #1084 - Corrigido problema de perda de info ao responder/encaminhar msg.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2/expressoMail1_2/js/main.js

    r3145 r3147  
    875875                        return new_border_ID; 
    876876                } else { 
    877                         delete_border(currentTab); 
    878                         new_border_ID = draw_new_message(parseInt(border_ID)); 
     877                        var a_types = { 6 : get_lang("Forward"),7 : get_lang("Reply"),  
     878                                        8 : get_lang("Reply to all with history"), 
     879                                        9 : get_lang("Reply without history"), 
     880                                        10: get_lang("Reply to all without history")}; 
     881 
     882                        if(!confirm(get_lang("Your message to %1 has not been saved or sent. "+ 
     883                                                "To %2 will be necessary open it again. Discard your message?", 
     884                                                a_types[openTab.type[new_border_ID]].toUpperCase(),  
     885                                                a_types[tabTypes[type]].toUpperCase()))){ 
     886                                return new_border_ID; 
     887                        } else { 
     888                                delete_border(currentTab); 
     889                                new_border_ID = draw_new_message(parseInt(border_ID)); 
     890                        } 
    879891                } 
    880892        } 
Note: See TracChangeset for help on using the changeset viewer.