Ignore:
Timestamp:
10/01/08 16:27:52 (16 years ago)
Author:
niltonneto
Message:

Correção de tradução

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/expressoAdmin1_2/inc/class.manager.inc.php

    r182 r493  
    7979                        { 
    8080                                $return['status'] = 'false'; 
    81                                 $return['msg'] = 'Campo contexto está vazio.'; 
     81                                $return['msg'] = $this->functions->lang('context field is empty') . '.'; 
     82                                 
    8283                                return $return; 
    8384                        } 
     
    8586                        { 
    8687                                $return['status'] = 'false'; 
    87                                 $return['msg'] = 'Selecione um gerente.'; 
     88                                $return['msg'] = $this->functions->lang('select one manager') . '.'; 
     89                                 
    8890                                return $return; 
    8991                        } 
     
    103105                                { 
    104106                                        $return['status'] = 'false'; 
    105                                         $return['msg'] = "Contexto $context não existe."; 
     107                                        $this->functions->lang('context does not exist') . ": $context"; 
    106108                                        return $return; 
    107109                                }                                
     
    116118                                { 
    117119                                        $return['status'] = 'false'; 
    118                                         $return['msg'] = "Gerente já cadastrado."; 
     120                                        $return['msg'] = $this->functions->lang('manager already exist') . "."; 
     121                                         
    119122                                        return $return; 
    120123                                } 
Note: See TracChangeset for help on using the changeset viewer.