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
|
$self{charset} = 'UTF-8';
$self{texts} = {
'Address' => 'Adres',
'Bcc' => 'Bcc',
'Cc' => 'Cc',
'Continue' => 'Kontynuj',
'Customer Number' => 'Numer Odbiorcy',
'Customer not on file!' => 'Brak Odbiorcy w bazie danych',
'Date' => 'Data',
'Description' => 'Opis',
'E-mail' => 'E-mail',
'Employee Number' => 'Numer Pracownika',
'Message' => 'Wiadomość',
'Number' => 'Numer Katalogu',
'PDF' => 'PDF',
'Postscript' => 'Postscript',
'Print' => 'Wydrukuj',
'Project not on file!' => 'Brak Projektu w zbiorze danych!',
'Reference' => 'Odnośnik',
'Select from one of the names below' => 'Wybierz nazwę z poniższych',
'Select from one of the projects below' => 'Wybierz z projektów',
'Startdate' => 'Dzień Zatrudnienia',
'Subject' => 'Treść',
'To' => 'do',
'Vendor Number' => 'Numer Dostawcy',
'Vendor not on file!' => 'Brak Dostawcy w bazie danych',
'Warning!' => 'Ostrzeżenie',
'sent' => 'wysłane',
};
$self{subs} = {
'add_transaction' => 'add_transaction',
'ap_transaction' => 'ap_transaction',
'ar_transaction' => 'ar_transaction',
'check_name' => 'check_name',
'check_project' => 'check_project',
'continue' => 'continue',
'credit_invoice_' => 'credit_invoice_',
'debit_invoice_' => 'debit_invoice_',
'delete_schedule' => 'delete_schedule',
'gl_transaction' => 'gl_transaction',
'islocked' => 'islocked',
'name_selected' => 'name_selected',
'post_as_new' => 'post_as_new',
'print_and_post_as_new' => 'print_and_post_as_new',
'project_selected' => 'project_selected',
'rebuild_formnames' => 'rebuild_formnames',
'rebuild_vc' => 'rebuild_vc',
'repost' => 'repost',
'reprint' => 'reprint',
'sales_invoice_' => 'sales_invoice_',
'save_schedule' => 'save_schedule',
'schedule' => 'schedule',
'select_name' => 'select_name',
'select_project' => 'select_project',
'vendor_invoice_' => 'vendor_invoice_',
'kontynuj' => 'continue',
};
1;
|