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
|
$self{texts} = {
'Account' => 'Konto',
'Accounting Menu' => 'Menu Księgowości',
'Are you sure you want to remove the marked entries from the queue?' => 'Czy chcesz usunąć oznaczone wejścia z kolejki?',
'Bin Lists' => 'Wykazy Koszy',
'Cannot remove files!' => 'Nie możesz usunąć pliku!',
'Checks' => 'Czeki',
'Confirm!' => 'Potwierdż!',
'Continue' => 'Kontynuj',
'Current' => 'Bieżący',
'Customer' => 'Odbiorca',
'Date' => 'Data',
'From' => 'Od',
'Invoice' => 'Faktura',
'Invoice Number' => 'Numer Faktury',
'Marked entries printed!' => 'Zaznaczone wpisy wydrukowane',
'Month' => 'Miesiąc',
'Order' => 'Zlecenie',
'Order Number' => 'Numer ZLecenia',
'Packing Lists' => 'Listy Pakunkowe',
'Period' => 'Okres',
'Pick Lists' => 'Listy Pobrania',
'Print' => 'Wydrukuj',
'Printing ... ' => 'Drukuje ...',
'Purchase Orders' => 'Zlecenia Zakupu',
'Quarter' => 'Kwartał',
'Quotation' => 'Oferta',
'Quotation Number' => 'Numer Oferty',
'Quotations' => 'Oferty',
'RFQs' => 'Prośby o Ofertę',
'Receipts' => 'Wpłaty',
'Reference' => 'Odnośnik',
'Remove' => 'Usuń',
'Removed spoolfiles!' => 'plik kolejki wydruków',
'Removing marked entries from queue ...' => 'Zaznaczone wpisy usuwane z kolejki ...',
'Sales Invoices' => 'Faktury VAT Sprzedaży',
'Sales Orders' => 'Zlecenia Sprzedaży',
'Select all' => 'Wybierz wszystko',
'Spoolfile' => 'Plik Kolejki Wydruków',
'To' => 'do',
'Vendor' => 'Dostawca',
'Work Orders' => 'Zlecenia Robocze',
'Year' => 'Rok',
'Yes' => 'Tak',
'done' => 'wykonane',
};
$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',
'kontynuj' => 'continue',
'wydrukuj' => 'print',
'usuń' => 'remove',
'wybierz_wszystko' => 'select_all',
'tak' => 'yes',
};
1;
|