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
|
$self{texts} = {
'Account' => 'Konto',
'Apr' => 'Kwiecień',
'April' => 'Kwiecień',
'Aug' => 'Sierpień',
'August' => 'Sierpień',
'Balance' => 'Saldo',
'Chart of Accounts' => 'Plan Kont',
'Credit' => 'Kredyt',
'Current' => 'Bieżący',
'Date' => 'Data',
'Debit' => 'Debet',
'Dec' => 'Grudzień',
'December' => 'Grudzień',
'Department' => 'Wydział',
'Description' => 'Opis',
'Feb' => 'Luty',
'February' => 'Luty',
'From' => 'Od',
'GIFI' => 'GIFI',
'Include in Report' => 'Dołącz w Sprawozdaniu',
'Jan' => 'Styczeń',
'January' => 'Styczeń',
'Jul' => 'Lipiec',
'July' => 'Lipiec',
'Jun' => 'Czerwiec',
'June' => 'Czerwiec',
'List Transactions' => 'Wykaz Transakcji',
'Mar' => 'Marzec',
'March' => 'Marzec',
'May' => 'Maj',
'May ' => 'Maj',
'Month' => 'Miesiąc',
'Nov' => 'Listopad',
'November' => 'Listopad',
'Oct' => 'Pażdziernik',
'October' => 'Pażdziernik',
'Period' => 'Okres',
'Project Number' => 'Numer Projektu',
'Quarter' => 'Kwartał',
'R' => 'R',
'Reference' => 'Odnośnik',
'Sep' => 'Wrzesień',
'September' => 'Wrzesień',
'Subtotal' => 'Wartość Netto',
'To' => 'do',
'Year' => 'Rok',
};
$self{subs} = {
'ca_subtotal' => 'ca_subtotal',
'chart_of_accounts' => 'chart_of_accounts',
'list' => 'list',
'list_transactions' => 'list_transactions',
'wykaz_transakcji' => 'list_transactions',
};
1;
|