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
|
$self{charset} = 'UTF-8';
$self{texts} = {
'Accounting Menu' => 'Μενπύ Λογιστικής',
'Amount' => 'Ποσό',
'Business' => 'Επιχείρηση',
'Continue' => 'Συνέχεια',
'Credit Limit' => 'Όριο Πίστωσης',
'Currency' => 'Συνάλλαγμα',
'Current' => 'Τρέχων',
'Customer' => 'Πελάτης',
'Customer Number' => 'Κωδικός Πελάτη',
'Customer missing!' => 'Ο Πελάτης λείπει!',
'Delete' => 'Διαγραφή',
'Department' => 'Τμήμα',
'Description' => 'Περιγραφή',
'Exchange Rate' => 'Τιμή συναλλάγματος',
'From' => 'Από',
'Language' => 'Γλώσσα',
'Month' => 'Μήνας',
'Number' => 'Αριθμός',
'Open' => '’νοιγμα',
'Price' => 'Τιμή',
'Print' => 'Εκτύπωση',
'Print and Post' => 'Έκτύπωση και αποστολή',
'Printed' => 'Εκτυπώθηκε',
'Qty' => 'Ποσ.',
'Screen' => 'Οθόνη',
'Source' => 'Πηγή',
};
$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',
'Συνέχεια' => 'continue',
'Διαγραφή' => 'delete',
'Εκτύπωση' => 'print',
'Έκτύπωση_και_αποστολή' => 'print_and_post',
};
1;
|