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 85
|
$self{charset} = 'UTF-8';
$self{texts} = {
'Accounting Menu' => 'Raamatupidamise Menüü',
'Amount' => 'Summa',
'Business' => 'Ettevõte',
'Cannot post transaction!' => 'Kannet ei saa postitada!',
'Change' => 'Muuda',
'Continue' => 'Edasi',
'Credit Limit' => 'Krediidilimiit',
'Currency' => 'Valuuta',
'Current' => 'Käesolev',
'Customer' => 'Klient',
'Customer Number' => 'Kliendi Number',
'Customer missing!' => 'Klient puudu!',
'Delete' => 'Kustuta',
'Department' => 'Osakond',
'Description' => 'Selgitus',
'Exchange Rate' => 'Valuutakurss',
'Exchange rate missing!' => 'Valuutakurssi ei ole',
'Extended' => 'Summa',
'From' => 'Alates',
'Language' => 'Keel',
'Memo' => 'Märkus',
'Month' => 'Kuu',
'Number' => 'Number',
'Open' => 'Avada',
'Period' => 'Periood',
'Post' => 'Postita',
'Posted!' => 'Postitatud!',
'Price' => 'Hind',
'Print' => 'Trüki',
'Print and Post' => 'Trüki ja Postita',
'Printed' => 'Trükitud',
'Qty' => 'Kogus',
'Quarter' => 'Kvartal',
'Receipts' => 'Sissetulek',
'Record in' => 'Sihtkonto',
'Remaining' => 'Kasutamata',
'Sales Invoice' => 'Müügiarve',
'Salesperson' => 'Müüja',
'Screen' => 'Ekraan',
'Select a Printer!' => 'Vali Printer',
'Source' => 'Allikas',
'Subtotal' => 'Vahesumma',
'Tax Included' => 'Sisaldab Käibemaksu',
'To' => 'Kuni',
'Total' => 'Kokku',
'Trade Discount' => 'Kauba Allahindlus',
'Unit' => 'Komponent',
'Update' => 'Värskenda',
'Warehouse' => 'Ladu',
'Year' => 'Aasta',
};
$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',
'edasi' => 'continue',
'kustuta' => 'delete',
'postita' => 'post',
'trüki' => 'print',
'trüki_ja_postita' => 'print_and_post',
'müügiarve' => 'sales_invoice',
'värskenda' => 'update',
};
1;
|