Ignore:
Timestamp:
05/10/11 11:11:30 (13 years ago)
Author:
airton
Message:

Ticket #1820 - Corrigido erro para traduzir pasta pela funcao lang_folder - r4292

Location:
sandbox/2.2.0.2/expressoMail1_2/js
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • sandbox/2.2.0.2/expressoMail1_2/js/DropDownContacts.js

    r4290 r4304  
    9494                match_cont = ""; 
    9595        } 
     96 
    9697         
    9798        if (document.getElementById('tipDiv')){  
    9899                document.getElementById('tipDiv').focus();  
    99         }  
    100            
     100        }  
     101 
     102 
    101103        // treat especials keys 
    102104        // key ENTER 
  • sandbox/2.2.0.2/expressoMail1_2/js/filters.js

    r3905 r4304  
    167167                var _action = " ";  
    168168                if (fields[6] == 'folder')  
    169                         _action = get_lang("Store at")+" "+ lang_folder((fields[7].split("/"))[1]);  
     169                { 
     170            var _folderName = ( (fields[7].split(cyrus_delimiter))[1] != undefined ) ? (fields[7].split(cyrus_delimiter))[1] : fields[7]; 
     171            _action = get_lang("Store at")+" "+ lang_folder( _folderName ); 
     172        }  
    170173                else if (fields[6] == 'address')  
    171174                        _action = get_lang("Forward to")+ " "+(fields[7]); 
Note: See TracChangeset for help on using the changeset viewer.