Changeset 5563


Ignore:
Timestamp:
02/27/12 13:39:49 (12 years ago)
Author:
thiago
Message:

Ticket #2486 - modificado algumas traduções, e corrigido um bug da janela dos marcadores.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/expressoMail1_2/setup/phpgw_pt-br.lang

    r5558 r5563  
    776776Delete/move subfolders first    expressoMail1_2 pt-br   Delete/mova suas subpastas primeiro 
    777777My Labels       expressoMail1_2 pt-br   Meus marcadores 
    778 Label None      expressoMail1_2 pt-br   Nenhum marcador cadastrado  
     778Label None      expressoMail1_2 pt-br   Nenhum marcador cadastrado  
    779779Close   expressoMail1_2 pt-br   Fechar 
    780780Basic   expressoMail1_2 pt-br   Básico  
  • trunk/prototype/modules/mail/js/label.js

    r5562 r5563  
    117117                        }); 
    118118                // criar marcador 
    119                 } else{ 
     119                } else { 
     120                  winElement.find(".add-label-button").click(function(){ 
    120121                        var nameLabel = winElement.find(".input-nome").val(); 
    121122                        if(nameLabel.length >= 2){ 
     
    125126                        } else { 
    126127                                alert("Mínimo 2 caracteres"); 
    127                         }                
     128                        } 
     129                   }); 
    128130                }                
    129131                /** 
     
    178180         
    179181        if($(".label-list li").length == 0){ 
    180                 winElement.find(".label-list-container").html('<ul class="label-list"><li class="empty-item">Nenhum Marcador Cadastrado.</li></ul>');                    
     182                winElement.find(".label-list-container").html('<ul class="label-list"><li class="empty-item">'+get_lang("Label None")+'.</li></ul>');                    
    181183        }  
    182184        var qtdLi = $(".label-list-container ul").find("li").not(".empty-item").length; 
     
    241243                        "<div class='my-labels'>" + 
    242244                                "<img src='../prototype/modules/mail/img/tag.png'/>" + 
    243                                 "<a class='title-my-labels' tabindex='0' role='button' aria-expanded='false' title='Meus marcadores'>Meus marcadores</a>" + 
     245                                "<a class='title-my-labels' tabindex='0' role='button' aria-expanded='false' title='"+get_lang("My Labels")+"'>"+get_lang("My Labels")+"</a>" + 
    244246                                 
    245247                                "<span class='status-list-labels ui-icon ui-icon-triangle-1-s'></span>" + 
Note: See TracChangeset for help on using the changeset viewer.