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
|
$self{texts} = {
'Account' => 'óÞÅÔ',
'Accounting Menu' => 'Accounting Menu',
'Confirm!' => 'ðÏÄÔ×ÅÒÄÉÔØ!',
'Continue' => 'ðÒÏÄÏÌÖÉÔØ',
'Customer' => 'ëÌÉÅÎÔ',
'Date' => 'äÁÔÁ',
'From' => 'Od',
'Invoice' => 'óÞÅÔ-ÆÁËÔÕÒÁ',
'Invoice Number' => 'îÏÍÅÒ ÓÞÅÔÁ-ÆÁËÔÕÒÙ',
'Order' => 'Zamówienie',
'Order Number' => 'Numer Zamówienia',
'Purchase Orders' => 'Zamówienia Zakupu',
'Sales Orders' => 'Zamówienia Klientów',
'To' => 'do',
'Vendor' => 'Dostawca',
'Yes' => 'Tak',
};
$self{subs} = {
'acc_menu' => 'acc_menu',
'continue' => 'continue',
'display' => 'display',
'list_spool' => 'list_spool',
'menubar' => 'menubar',
'print' => 'print',
'remove' => 'remove',
'search' => 'search',
'section_menu' => 'section_menu',
'select_all' => 'select_all',
'yes' => 'yes',
'ðÒÏÄÏÌÖÉÔØ' => 'continue',
'print' => 'print',
'remove' => 'remove',
'select_all' => 'select_all',
'tak' => 'yes',
};
1;
|