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' => 'Total venituri',
'receivables' => 'Creante',
'open_invoices' => 'Facturi Deschise',
'overdue_invoices' => 'Facturi restante',
'total_expenses' => 'Total Cheltuieli',
'payables' => 'Sume datorate',
'open_bills' => 'Deschide facturi',
'overdue_bills' => 'Creante neachitate',
'total_profit' => 'Profitul total',
'open_profit' => 'Profit deschis',
'overdue_profit' => 'Profit asteptat',
'cash_flow' => 'Fluxul de numerar',
'no_profit_loss' => 'Fara pierdere profit',
'incomes_by_category' => 'Categorii de Venituri',
'expenses_by_category' => 'Categorii de Cheltuieli',
'account_balance' => 'Soldul contului',
'latest_incomes' => 'Ultimele Incasari',
'latest_expenses' => 'Ultimele Cheltuieli',
];
|