File: pos

package info (click to toggle)
sql-ledger 3.2.6-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 33,080 kB
  • sloc: perl: 73,172; sql: 36,530; sh: 34; makefile: 21
file content (84 lines) | stat: -rw-r--r-- 3,696 bytes parent folder | download
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
$self{charset} = 'UTF-8';

$self{texts} = {
  'Accounting Menu'             => 'Menu Księgowości',
  'Amount'                      => 'Kwota',
  'Business'                    => 'Działalność',
  'Cannot post transaction!'    => 'Nie możesz zatwierdzić transakcji!',
  'Change'                      => 'Reszta',
  'Continue'                    => 'Kontynuj',
  'Credit Limit'                => 'Limit Kredytu',
  'Currency'                    => 'Waluta',
  'Current'                     => 'Bieżący',
  'Customer'                    => 'Odbiorca',
  'Customer Number'             => 'Numer Odbiorcy',
  'Customer missing!'           => 'Brak Odbiorcy',
  'Delete'                      => 'Usuń',
  'Department'                  => 'Wydział',
  'Description'                 => 'Opis',
  'Exchange Rate'               => 'Kurs Walut',
  'Exchange rate missing!'      => 'Brakuje Kursu Walut',
  'Extended'                    => 'Wartość Netto',
  'From'                        => 'Od',
  'Language'                    => 'Język',
  'Memo'                        => 'Notatka',
  'Month'                       => 'Miesiąc',
  'Number'                      => 'Numer Katalogu',
  'Open'                        => 'Otworzono',
  'Period'                      => 'Okres',
  'Post'                        => 'Zatwierdż',
  'Posted!'                     => 'Zatwierdzone!',
  'Price'                       => 'Cena Netto',
  'Print'                       => 'Wydrukuj',
  'Print and Post'              => 'Wydrukuj i Zatwierdż',
  'Printed'                     => 'Wydrukowane',
  'Qty'                         => 'Ilość',
  'Quarter'                     => 'Kwartał',
  'Receipts'                    => 'Wpłaty',
  'Record in'                   => 'Zapisz w',
  'Remaining'                   => 'Pozostałe',
  'Sales Invoice'               => 'Faktura VAT Sprzedaży',
  'Salesperson'                 => 'Sprzedawca',
  'Screen'                      => 'Ekran',
  'Source'                      => 'Żródło',
  'Subtotal'                    => 'Wartość Netto',
  'Tax Included'                => 'Podatek Wliczony',
  'To'                          => 'do',
  'Total'                       => 'Wartość Brutto',
  'Trade Discount'              => 'Rabat Handlowy',
  'Unit'                        => 'Jednostka',
  'Update'                      => 'Uzupełnij',
  'Warehouse'                   => 'Magazyn',
  'Year'                        => 'Rok',
};

$self{subs} = {
  'acc_menu'                    => 'acc_menu',
  'add'                         => 'add',
  'display'                     => 'display',
  'display_row'                 => 'display_row',
  'edit'                        => 'edit',
  'form_footer'                 => 'form_footer',
  'form_header'                 => 'form_header',
  'js_menu'                     => 'js_menu',
  'lookup_partsgroup'           => 'lookup_partsgroup',
  'menubar'                     => 'menubar',
  'openinvoices'                => 'openinvoices',
  'post'                        => 'post',
  'print'                       => 'print',
  'print_and_post'              => 'print_and_post',
  'print_form'                  => 'print_form',
  'print_options'               => 'print_options',
  'receipts'                    => 'receipts',
  'section_menu'                => 'section_menu',
  'kontynuj'                    => 'continue',
  'usuń'                        => 'delete',
  'zatwierdż'                   => 'post',
  'wydrukuj'                    => 'print',
  'wydrukuj_i_zatwierdż'        => 'print_and_post',
  'faktura_vat_sprzedaży'       => 'sales_invoice',
  'uzupełnij'                   => 'update',
};

1;