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' => 'Totale entrate',
'receivables' => 'Crediti',
'open_invoices' => 'Fatture aperte',
'overdue_invoices' => 'Fatture scadute',
'total_expenses' => 'Totale spese',
'payables' => 'Debiti',
'open_bills' => 'Fatture aperte',
'overdue_bills' => 'Fatture scadute',
'total_profit' => 'Totale profitto',
'open_profit' => 'Profitto aperto',
'overdue_profit' => 'Profitto scaduto',
'cash_flow' => 'Flusso di cassa',
'no_profit_loss' => 'Nessuna perdita di profitto',
'incomes_by_category' => 'Redditi di categoria',
'expenses_by_category' => 'Spese per categoria',
'account_balance' => 'Saldo del conto',
'latest_incomes' => 'Redditi più recenti',
'latest_expenses' => 'Spese più recenti',
];
|