Ignore:
Timestamp:
11/08/07 16:09:50 (16 years ago)
Author:
wmerlotto
Message:

Continuação da internacionalização do Expresso. Retirado mais strings hardcoded e internacionalizada a as pastas do IMAP. Corrigido problema na caixa de filtros.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/expressoMail1_2/inc/class.imap_functions.inc.php

    r91 r96  
    942942                                $tmp_folder_parent = explode($this->imap_delimiter, $folder_id); 
    943943                                $result[$i]['folder_name'] = array_pop($tmp_folder_parent); 
    944                                 $result[$i]['folder_name'] = $result[$i]['folder_name'] == 'INBOX' ? 'Caixa de Entrada' : $result[$i]['folder_name']; 
     944                                $result[$i]['folder_name'] = $result[$i]['folder_name'] == 'INBOX' ? 'Inbox' : $result[$i]['folder_name']; 
    945945                                 
    946946                                $tmp_folder_parent = implode($this->imap_delimiter, $tmp_folder_parent); 
    947947                                $result[$i]['folder_parent'] = $tmp_folder_parent == 'INBOX' ? '' : $tmp_folder_parent; 
    948948                                         
    949                                 if (($val->attributes == 32) && ($result[$i]['folder_name'] != 'Caixa de Entrada')) 
     949                                if (($val->attributes == 32) && ($result[$i]['folder_name'] != 'Inbox')) 
    950950                                        $result[$i]['folder_hasChildren'] = 1; 
    951951                                else 
Note: See TracChangeset for help on using the changeset viewer.