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 115 116 117 118 119 120 121 122 123 124 125
|
$self{charset} = 'UTF8';
$self{texts} = {
'Accounting Menu' => 'Menu de Contabilidade',
'Address' => 'Endereço',
'April' => 'Abril',
'August' => 'Agosto',
'Bcc' => 'Bcc',
'Cc' => 'Cc',
'Continue' => 'Continuar',
'Customer Number' => 'Número do Cliente',
'Customer not on file!' => 'Cliente não está no arquivo!',
'Date' => 'Data',
'Day(s)' => 'Dia(s)',
'December' => 'Dezembro',
'Delete Schedule' => 'Apagar a Programação',
'Description' => 'Descrição',
'E-mail' => 'E-Mail',
'E-mail message' => 'Mensagem do e-mail',
'Employee Number' => 'Número do Empregado',
'Every' => 'Cada',
'February' => 'Fevereiro',
'For' => 'Para',
'Heading' => 'Cabeçalho',
'Include Payment' => 'Incluir Pagamento',
'January' => 'Janeiro',
'July' => 'Julho',
'June' => 'Junho',
'March' => 'Março',
'May' => 'Mai',
'Message' => 'Mensagem',
'Month(s)' => 'Mês(es)',
'Next Date' => 'Próxima Data',
'November' => 'Novembro',
'Number' => 'Número',
'October' => 'Outubro',
'PDF' => 'PDF',
'Postscript' => 'Postscript',
'Print' => 'Imprimir',
'Project not on file!' => 'Projeto não está no arquivo!',
'Recurring Transaction' => 'Transação Recorrente',
'Reference' => 'Referência',
'Repeat' => 'Repetir',
'Save Schedule' => 'Salvar a Programação',
'Select from one of the names below' => 'Selecione um dos nomes abaixo',
'Select from one of the projects below' => 'Selecione um dos projetos abaixo',
'September' => 'Setembro',
'Startdate' => 'Data inicial',
'Subject' => 'Assunto',
'Text' => 'Texto',
'To' => 'Até',
'Vendor Number' => 'ID do Fornecedor',
'Vendor not on file!' => 'Fornecedor não está no arquivo!',
'Warning!' => 'Cuidado!',
'Week(s)' => 'Semana(s)',
'Year(s)' => 'Ano(s)',
'You are posting an existing transaction!' => 'Você está lançando uma transação existente!',
'You are printing and posting an existing transaction!' => 'Você está imprimindo lançando uma transação existente!',
'You are printing and saving an existing order' => 'Você está imprimindo e salvando um pedido existente!',
'You are printing and saving an existing quotation' => 'Você está imprimindo e salvando uma cotação existente!',
'You are saving an existing order' => 'Você está salvando um pedido existente!',
'You are saving an existing quotation' => 'Você está salvando uma cotação existente!',
'for' => 'para',
'sent' => 'enviado',
'time(s)' => 'vêz(es)',
};
$self{subs} = {
'acc_menu' => 'acc_menu',
'add_column' => 'add_column',
'add_transaction' => 'add_transaction',
'all_references' => 'all_references',
'ap_transaction' => 'ap_transaction',
'ar_transaction' => 'ar_transaction',
'calendar' => 'calendar',
'change_report' => 'change_report',
'check_all' => 'check_all',
'check_name' => 'check_name',
'check_project' => 'check_project',
'clock' => 'clock',
'continue' => 'continue',
'credit_invoice_' => 'credit_invoice_',
'debit_invoice_' => 'debit_invoice_',
'delete_column' => 'delete_column',
'delete_report' => 'delete_report',
'delete_schedule' => 'delete_schedule',
'display' => 'display',
'do_save_report' => 'do_save_report',
'edit_column' => 'edit_column',
'gl_transaction' => 'gl_transaction',
'islocked' => 'islocked',
'js_calendar' => 'js_calendar',
'jsmenu' => 'jsmenu',
'jsmenu_frame' => 'jsmenu_frame',
'menubar' => 'menubar',
'name_selected' => 'name_selected',
'new_number' => 'new_number',
'pickvalue' => 'pickvalue',
'post_as_new' => 'post_as_new',
'preview' => 'preview',
'print_and_post_as_new' => 'print_and_post_as_new',
'project_selected' => 'project_selected',
'rebuild_departments' => 'rebuild_departments',
'rebuild_formnames' => 'rebuild_formnames',
'rebuild_vc' => 'rebuild_vc',
'references' => 'references',
'repost' => 'repost',
'reprint' => 'reprint',
'resize' => 'resize',
'sales_invoice_' => 'sales_invoice_',
'save_column' => 'save_column',
'save_report' => 'save_report',
'save_schedule' => 'save_schedule',
'schedule' => 'schedule',
'section_menu' => 'section_menu',
'select_name' => 'select_name',
'select_project' => 'select_project',
'vendor_invoice_' => 'vendor_invoice_',
'continuar' => 'continue',
'apagar_a_programação' => 'delete_schedule',
'salvar_a_programação' => 'save_schedule',
};
1;
|