Changeset 5563
- Timestamp:
- 02/27/12 13:39:49 (11 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/expressoMail1_2/setup/phpgw_pt-br.lang
r5558 r5563 776 776 Delete/move subfolders first expressoMail1_2 pt-br Delete/mova suas subpastas primeiro 777 777 My Labels expressoMail1_2 pt-br Meus marcadores 778 Label None 778 Label None expressoMail1_2 pt-br Nenhum marcador cadastrado 779 779 Close expressoMail1_2 pt-br Fechar 780 780 Basic expressoMail1_2 pt-br Básico -
trunk/prototype/modules/mail/js/label.js
r5562 r5563 117 117 }); 118 118 // criar marcador 119 } else{ 119 } else { 120 winElement.find(".add-label-button").click(function(){ 120 121 var nameLabel = winElement.find(".input-nome").val(); 121 122 if(nameLabel.length >= 2){ … … 125 126 } else { 126 127 alert("Mínimo 2 caracteres"); 127 } 128 } 129 }); 128 130 } 129 131 /** … … 178 180 179 181 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>'); 181 183 } 182 184 var qtdLi = $(".label-list-container ul").find("li").not(".empty-item").length; … … 241 243 "<div class='my-labels'>" + 242 244 "<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>" + 244 246 245 247 "<span class='status-list-labels ui-icon ui-icon-triangle-1-s'></span>" +
Note: See TracChangeset
for help on using the changeset viewer.