Changeset 3147 for branches


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.

Location:
branches/2.2/expressoMail1_2
Files:
2 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        } 
  • branches/2.2/expressoMail1_2/setup/phpgw_pt-br.lang

    r3026 r3147  
    571571Your message has not been sent and will be discarted.   expressoMail1_2 pt-br   Sua mensagem não foi enviada e será perdida. 
    572572Your message has not been sent. Discard your message?   expressoMail1_2 pt-br   Sua mensagem não foi salva ou enviada. Descartar a mensagem? 
     573Your message to %1 has not been saved or sent. To %2 will be necessary open it again. Discard your message?     expressoMail1_2 pt-br   Sua mensagem para %1 não foi salva ou enviada. Para %2 será preciso abrir novamente. Descartar sua mensagem? 
    573574Your message was rejected by antivirus. Perhaps your attachment has been infected.      expressoMail1_2 pt-br   Sua mensagem foi rejeitada pelo anti-virus. Seu anexo pode estar infectado. 
    574575Your message was save as draft in folder %1.    expressoMail1_2 pt-br   Sua mensagem foi salva como rascunho na pasta %1. 
Note: See TracChangeset for help on using the changeset viewer.