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 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
|
$self{charset} = 'UTF8';
$self{texts} = {
'Accounting Menu' => 'Menu de Contabilidade',
'Address' => 'Endereço',
'Amount' => 'Total',
'April' => 'Abril',
'August' => 'Agosto',
'Business' => 'Negócio',
'Cannot post transaction!' => 'Não pode lançar transação!',
'Change' => 'Troco',
'Continue' => 'Continuar',
'Credit Limit' => 'Limite de Crédito',
'Currency' => 'Moeda',
'Current' => 'Corrente',
'Customer' => 'Cliente',
'Customer Number' => 'Número do Cliente',
'Customer missing!' => 'Cliente faltando!',
'December' => 'Dezembro',
'Delete' => 'Apagar',
'Department' => 'Departamento',
'Description' => 'Descrição',
'Exchange Rate' => 'Taxa de câmbio',
'Exchange rate missing!' => 'Falta a taxa de câmbio!',
'Extended' => 'Extendida',
'February' => 'Fevereiro',
'From' => 'De',
'Invoice Date' => 'Data da Fatura',
'Invoice Number' => 'Número da Fatura',
'January' => 'Janeiro',
'July' => 'Julho',
'June' => 'Junho',
'Language' => 'Idioma',
'March' => 'Março',
'May' => 'Mai',
'Memo' => 'Memorando',
'Month' => 'Mês',
'November' => 'Novembro',
'Number' => 'Número',
'OH' => 'HE',
'October' => 'Outubro',
'Open' => 'Em Aberto',
'Outstanding' => 'Pendente',
'Period' => 'Período',
'Post' => 'Lançar',
'Posted!' => 'Lançado!',
'Price' => 'Preço',
'Pricegroup' => 'Grupo de Preço',
'Print' => 'Imprimir',
'Print and Post' => 'Imprimir e Lançar',
'Printed' => 'Impresso',
'Qty' => 'Qtd',
'Quarter' => 'Trimestre',
'Receipts' => 'Recibos',
'Record in' => 'Registrar em',
'Remaining' => 'Restante',
'Salesperson' => 'Vendedor',
'Screen' => 'Tela',
'Select a Printer!' => 'Selecione uma Impressora!',
'September' => 'Setembro',
'Source' => 'Fonte',
'Subtotal' => 'Subtotal',
'Tax Included' => 'Impostos incluídos',
'To' => 'Até',
'Total' => 'Total',
'Trade Discount' => 'Desconto de comércio',
'Unit' => 'Unidade',
'Update' => 'Atualizar',
'Warehouse' => 'Almoxarifado',
'Year' => 'Ano',
};
$self{subs} = {
'acc_menu' => 'acc_menu',
'add' => 'add',
'assign_number' => 'assign_number',
'calendar' => 'calendar',
'change_report' => 'change_report',
'check_all' => 'check_all',
'clock' => 'clock',
'display' => 'display',
'display_row' => 'display_row',
'edit' => 'edit',
'form_footer' => 'form_footer',
'form_header' => 'form_header',
'js_calendar' => 'js_calendar',
'jsmenu' => 'jsmenu',
'jsmenu_frame' => 'jsmenu_frame',
'lookup_partsgroup' => 'lookup_partsgroup',
'main_groups' => 'main_groups',
'menubar' => 'menubar',
'open_drawer' => 'open_drawer',
'openinvoices' => 'openinvoices',
'pickvalue' => 'pickvalue',
'poledisplay' => 'poledisplay',
'post' => 'post',
'preview' => 'preview',
'print' => 'print',
'print_and_post' => 'print_and_post',
'print_form' => 'print_form',
'print_options' => 'print_options',
'receipts' => 'receipts',
'resize' => 'resize',
'section_menu' => 'section_menu',
'continuar' => 'continue',
'apagar' => 'delete',
'lançar' => 'post',
'imprimir' => 'print',
'imprimir_e_lançar' => 'print_and_post',
'atualizar' => 'update',
};
1;
|