Ignore:
Timestamp:
06/01/11 17:01:47 (13 years ago)
Author:
thiagoaos
Message:

Ticket #1955 - Adição de 2 relatórios e ajuste no relatório de cotas.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2/reports/inc/class.uireports_maillists.inc.php

    r4035 r4570  
    7878                        $pdf->Open(); 
    7979                        $pdf->AddPage(); 
    80                         $pdf->SetTitle('Relatório Gerado pelo Expresso Reports'); 
     80                        $pdf->SetTitle(lang('Report Generated by Expresso Reports')); 
    8181 
    8282                        //Set font and colors 
     
    8989                        //Table header 
    9090                        $SubTitulo = lang('reports title8'); 
    91                         $SubTituloR = lang('report organization'); 
     91                        $SubTituloR = lang('Report Generated by Expresso Reports'); 
    9292                        $SubTitulo1 = $subtitulo1; 
    9393                        $GLOBALS['phpgw_info']['apps']['reports']['subtitle'] = $SubTituloR; 
     
    125125                                        $row_loginid = $account['uid']; 
    126126                                        $row_cn = $account['name']; 
    127                                         $row_mail = (!$account['email']?'<font color=red>Sem E-mail</font>':$account['email']); 
     127                                        $row_mail = (!$account['email']?'<font color=red>'.lang('Without E-mail').'</font>':$account['email']); 
    128128                                        $pdf->Cell(40,5,$row_loginid,0,0,'L',0); 
    129129                                        $pdf->Cell(75,5,$row_cn,0,0,'L',0); 
     
    461461                                        $tmpp[$accountp['uid'][0]]['account_lid'] = $accountp['uid'][0]; 
    462462                                        $tmpp[$accountp['uid'][0]]['account_cn']         = $accountp['cn'][0]; 
    463                                         $tmpp[$accountp['uid'][0]]['account_mail']= $accountp['mail'][0]; 
     463                                        $tmpp[$accountp['uid'][0]]['account_mail']      = $accountp['mail'][0]; 
    464464                                        $sortp[] = $accountp['uid'][0]; 
    465465                                        if (count($sortp)) 
     
    478478                                                'row_loginid'   => $accountr['account_lid'], 
    479479                                                'row_cn'                => $accountr['account_cn'], 
    480                                                 'row_mail'              => (!$accountr['account_mail']?'<font color=red>Sem E-mail</font>':$accountr['account_mail']) 
     480                                                'row_mail'              => (!$accountr['account_mail']?'<font color=red>'.lang('Without E-mail').'</font>':$accountr['account_mail']) 
    481481                                        ); 
    482482                                         
Note: See TracChangeset for help on using the changeset viewer.