b7c7a5f6
Alexey Boroda
first commit
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<?php
return [
'total_incomes' => 'إجمالي الدخل',
'receivables' => 'المستحقات',
'open_invoices' => 'الفواتير المفتوحة',
'overdue_invoices' => 'الفواتير المتأخرة',
'total_expenses' => 'إجمالي المصروفات',
'payables' => 'إمكانية الدفع',
'open_bills' => 'فواتير مفتوحة',
'overdue_bills' => 'فواتير متأخرة',
'total_profit' => 'إجمالي الربح',
'open_profit' => 'الربح المفتوح',
'overdue_profit' => 'الربح المتأخر',
'cash_flow' => 'التدفق المالي',
'no_profit_loss' => 'لا توجد أرباح خاسرة',
'incomes_by_category' => 'الدخل حسب الفئة',
'expenses_by_category' => 'المصروفات حسب الفئة',
'account_balance' => 'رصيد حساب',
'latest_incomes' => 'آخر الإيرادات',
'latest_expenses' => 'آخر المصروفات',
];
|