Changeset 3925


Ignore:
Timestamp:
03/29/11 08:55:52 (13 years ago)
Author:
thiagoaos
Message:

Ticket #1634 - Corrigido lang e aplicado máscara no calendário da tela de pesquisar email.

Location:
branches/2.2/expressoMail1_2
Files:
2 edited

Legend:

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

    r3852 r3925  
    135135                                                + '     <br style="margin-bottom:30px"/>' 
    136136                        + '     <label>'+get_lang("Since Date")+':</label>' 
    137                         + '     <input style="margin-left: 6px;" type="text" id="since_date" size="8">' 
     137                        + '     <input style="margin-left: 6px;" type="text" id="since_date" size="8" maxlength="10" onkeypress="return dateMask(this, event);">' 
    138138                        + '     <img id="since_date-trigger" src="../phpgwapi/templates/default/images/datepopup.gif" title="'+get_lang("Select Date")+'" style="cursor:pointer; cursor:hand;"/>' 
    139139                        + '     <label style="margin-left: 20px;">'+get_lang('Before Date')+':</label>' 
    140                         + '     <input style="margin-left: 6px;" type="text" id="before_date" size="8">' 
     140                        + '     <input style="margin-left: 6px;" type="text" id="before_date" size="8" maxlength="10" onkeypress="return dateMask(this, event);">' 
    141141                        + '     <img id="before_date-trigger" src="../phpgwapi/templates/default/images/datepopup.gif" title="'+get_lang("Select Date")+'" style="cursor:pointer; cursor:hand;"/>' 
    142142                        + '     <br style="margin-bottom:15px"/>' 
    143143 
    144144                        + '     <label>'+get_lang('On Date')+':</label>' 
    145                         + '     <input style="margin-left: 6px;" type="text" id="on_date" size="8">' 
    146                         + '     <img style="margin-right: -8px" id="on_date-trigger" src="../phpgwapi/templates/default/images/datepopup.gif" title="'+get_lang("Select Date")+'" style="cursor:pointer; cursor:hand;"/>&nbsp;&nbsp;</spam>' 
     145                        + '     <input style="margin-left: 6px;" type="text" id="on_date" size="8" maxlength="10" onkeypress="return dateMask(this, event);">' 
     146                        + '     <img style="margin-right: -8px" id="on_date-trigger" src="../phpgwapi/templates/default/images/datepopup.gif" title="'+get_lang("Select Date")+'" style="cursor:pointer; cursor:hand;"/><span>&nbsp;&nbsp;</span>' 
    147147                        + '     <br style="margin-bottom:30px"/>' 
    148148 
     
    450450                                        td.id = "td_message_answered_"+uid_msg; 
    451451                                        if (aux.flag.match('X')) 
    452                                                 td1 = '<img src=templates/'+template+'/images/forwarded.gif title=Forwarded>'; 
     452                                                td1 = '<img src=templates/'+template+'/images/forwarded.gif title="Encaminhada">'; 
    453453                                        else 
    454454                                                if (aux.flag.match('A')) 
    455                                                         td1 = '<img src=templates/'+template+'/images/answered.gif>'; 
     455                                                        td1 = '<img src=templates/'+template+'/images/answered.gif title="Respondida">'; 
    456456                                                else 
    457457                                                        td1 = ''; 
     
    465465                                                add_className(tr, 'flagged_msg'); 
    466466                                                td.style.background = "url(templates/"+template+"/images/important.gif) no-repeat center"; 
     467                                                td.title = "Importante"; 
    467468                                        } 
    468469                                        else 
     
    931932                else 
    932933                { 
    933                         alert(get_lang('Invalid date on field %1'), get_lang('Since Date')); 
     934                        alert(get_lang('Invalid date on field %1', get_lang('Since Date'))); 
    934935                        return false; 
    935936                } 
     
    944945                else 
    945946                    { 
    946                         alert(get_lang('Invalid date on field %1'), get_lang('Before Date')); 
     947                        alert(get_lang('Invalid date on field %1', get_lang('Before Date'))); 
    947948                        return false; 
    948949                    } 
     
    957958                else 
    958959                { 
    959                         alert(get_lang('Invalid date on field %1'), get_lang('On Date')); 
     960                        alert(get_lang('Invalid date on field %1', get_lang('On Date'))); 
    960961                    return false; 
    961962                } 
  • branches/2.2/expressoMail1_2/setup/phpgw_pt-br.lang

    r3905 r3925  
    249249Install Offline expressoMail1_2 pt-br   Instalar offline 
    250250in this message expressoMail1_2 pt-br   na mensagem 
     251Invalid date on field %1        expressoMail1_2 pt-br   Data inválida no campo '%1' 
    251252Invalid signature       expressoMail1_2 pt-br   Erro indeterminado: Não foi possível validar a assinatura digital da mensagem. 
    252253italic  expressoMail1_2 pt-br   Italico 
Note: See TracChangeset for help on using the changeset viewer.