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
|
$self{charset} = 'UTF-8';
$self{texts} = {
'Accounting Menu' => 'قائمة الحسابات',
'Amount' => 'الكمية',
'Cannot post transaction!' => 'لا يمكن تسجيل الحركة',
'Change' => 'تغيير',
'Continue' => 'تابع',
'Credit Limit' => 'حد الائتمان',
'Currency' => 'عملة',
'Current' => 'الحالي',
'Customer' => 'العميل',
'Customer Number' => 'رقم العميل',
'Customer missing!' => 'عميل غير موجود',
'Delete' => 'الغاء',
'Department' => 'قسم',
'Description' => 'وصف',
'Exchange Rate' => 'سعر الصرف',
'Exchange rate missing!' => 'سعر الصرف غير موجود',
'Extended' => 'اجمالى',
'From' => 'من',
'Language' => 'اللغة',
'Memo' => 'ملاحظات',
'Number' => 'الرقم',
'Open' => 'فتح',
'Post' => 'تسجيل',
'Posted!' => 'سجل',
'Price' => 'سعر',
'Print' => 'طباعة',
'Qty' => 'الكمية',
'Receipts' => 'الواردات',
'Record in' => 'في السجل',
'Remaining' => 'متبقى',
'Sales Invoice' => 'فاتورة المبيعات',
'Salesperson' => 'مندوب مبيعات',
'Screen' => 'الشاشة',
'Source' => 'مصدر',
'Subtotal' => 'اجمالى',
'Tax Included' => 'الضريبة المضافة',
'To' => 'إلى',
'Total' => 'مجموع',
'Unit' => 'وحدة',
'Update' => 'تعديل',
};
$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',
'تسجيل' => 'post',
'طباعة' => 'print',
'فاتورة_المبيعات' => 'sales_invoice',
'تعديل' => 'update',
};
1;
|