Changeset 5443


Ignore:
Timestamp:
01/30/12 13:20:16 (12 years ago)
Author:
angelo
Message:

Ticket #2465 - Inconsistencia no tamanho de aba de pasta selecionada

Location:
trunk/expressoMail1_2
Files:
3 edited

Legend:

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

    r5440 r5443  
    129129                                                    return false; 
    130130                                                } 
    131          
     131                                                 
     132                                                if (newFolder.length > 100){ 
     133                                                        alert((get_lang("cannot create folder with more than 100 characters"))); 
     134                                                        return false; 
     135                                                } 
     136                                                 
    132137                                                if( trim(newFolder) != "" && trim(newFolder) != null ) 
    133138                                                { 
  • trunk/expressoMail1_2/js/draw_api.js

    r5431 r5443  
    458458                        alternate_border(0); 
    459459                        var title = lang_folder(folder_name); 
    460                         if (title.length > 15) title = title.substring(0,12) + "..."; 
     460                        if (title.length > 18) title = title.substring(0,18) + "..."; 
    461461                        Element("border_id_0").innerHTML = "&nbsp;" + title + '&nbsp;<font face="Verdana" size="1" color="#505050">[<span id="new_m">&nbsp;</span> / <span id="tot_m"></span>]</font>'; 
    462462                        draw_box(data, folder, true); 
  • trunk/expressoMail1_2/setup/phpgw_pt-br.lang

    r5421 r5443  
    754754Encrypted email expressoMail1_2 pt-br   Email criptografado 
    755755Include digital signature       expressoMail1_2 pt-br   Incluir assinatura digital 
     756cannot create folder with more than 100 characters      expressoMail1_2 pt-br   Uma pasta deve ter no máximo 100 caracteres 
Note: See TracChangeset for help on using the changeset viewer.