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
|
$self{texts} = {
'Account' => 'Conta',
'Accounting Menu' => 'Menu de Contabilidade',
'Apr' => 'Abr',
'April' => 'Abril',
'Aug' => 'Ago',
'August' => 'Agosto',
'Balance' => 'Balanço',
'Beginning Balance' => 'Balanço Inicial',
'Cleared' => 'Limpo',
'Continue' => 'Continuar',
'Current' => 'Corrente',
'Date' => 'Data',
'Dec' => 'Dez',
'December' => 'Dezembro',
'Decrease' => 'Decrementar',
'Deposit' => 'Depósito',
'Description' => 'Descrição',
'Detail' => 'Detalhe',
'Difference' => 'Diferença',
'Done' => 'Feito',
'Feb' => 'Fev',
'February' => 'Fevereiro',
'From' => 'De',
'Include Exchange Rate Difference' => 'Incluir diferença de taxa de câmbio',
'Increase' => 'Incrementar',
'Jan' => 'Jan',
'January' => 'Janeiro',
'Jul' => 'Jul',
'July' => 'Julho',
'Jun' => 'Jun',
'June' => 'Junho',
'Mar' => 'Mar',
'March' => 'Março',
'May' => 'Mai',
'May ' => 'Maio',
'Nov' => 'Nov',
'November' => 'Novembro',
'Oct' => 'Out',
'October' => 'Outubro',
'Out of balance!' => 'Fora de balanço!',
'Outstanding' => 'Destacado',
'Payment' => 'Pagamento',
'Reconciliation' => 'Reconciliação',
'Reconciliation Report' => 'Relatório de Reconciliação',
'Select all' => 'Selecionar todos',
'Sep' => 'Set',
'September' => 'Setembro',
'Source' => 'Fonte',
'Statement Balance' => 'Declaração de Balanço',
'Summary' => 'Sumário',
'To' => 'Para',
'Update' => 'Atualizar',
};
$self{subs} = {
'acc_menu' => 'acc_menu',
'continue' => 'continue',
'display' => 'display',
'display_form' => 'display_form',
'done' => 'done',
'get_payments' => 'get_payments',
'menubar' => 'menubar',
'reconciliation' => 'reconciliation',
'section_menu' => 'section_menu',
'select_all' => 'select_all',
'update' => 'update',
'continuar' => 'continue',
'feito' => 'done',
'selecionar_todos' => 'select_all',
'atualizar' => 'update',
};
1;
|