1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
$self{charset} = 'UTF8';
$self{texts} = {
'AR/AP' => 'CR/CP',
'Account' => 'Conta',
'Apr' => 'Abr',
'April' => 'Abril',
'Aug' => 'Ago',
'August' => 'Agosto',
'Balance' => 'Balanço',
'Chart of Accounts' => 'Plano de Contas',
'Closed' => 'Fechado',
'Credit' => 'Crédito',
'Current' => 'Corrente',
'Date' => 'Data',
'Debit' => 'Débito',
'Dec' => 'Dez',
'December' => 'Dezembro',
'Department' => 'Departamento',
'Description' => 'Descrição',
'Feb' => 'Fev',
'February' => 'Fevereiro',
'From' => 'De',
'GIFI' => 'CFOP - Código Fiscal da Operação',
'Include in Report' => 'Incluir no Relatório',
'Jan' => 'Jan',
'January' => 'Janeiro',
'Jul' => 'Jul',
'July' => 'Julho',
'Jun' => 'Jun',
'June' => 'Junho',
'List Transactions' => 'Listar Transações',
'Mar' => 'Mar',
'March' => 'Março',
'May' => 'Mai',
'May ' => 'Maio',
'Month' => 'Mês',
'Nov' => 'Nov',
'November' => 'Novembro',
'Oct' => 'Out',
'October' => 'Outubro',
'Period' => 'Período',
'Project Number' => 'Número de Projeto',
'Quarter' => 'Trimestre',
'R' => 'R',
'Reference' => 'Referência',
'Sep' => 'Set',
'September' => 'Setembro',
'Source' => 'Fonte',
'Subtotal' => 'Subtotal',
'To' => 'Até',
'Year' => 'Ano',
};
$self{subs} = {
'ca_subtotal' => 'ca_subtotal',
'calendar' => 'calendar',
'change_report' => 'change_report',
'chart_of_accounts' => 'chart_of_accounts',
'check_all' => 'check_all',
'clock' => 'clock',
'js_calendar' => 'js_calendar',
'list' => 'list',
'list_transactions' => 'list_transactions',
'pickvalue' => 'pickvalue',
'resize' => 'resize',
'listar_transações' => 'list_transactions',
};
1;
|