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 inkomsten',
'receivables' => 'Debiteuren',
'open_invoices' => 'Openstaande facturen',
'overdue_invoices' => 'Vervallen facturen',
'total_expenses' => 'Totale uitgaven',
'payables' => 'Schulden',
'open_bills' => 'Openstaande rekeningen',
'overdue_bills' => 'Achterstallige facturen',
'total_profit' => 'Totale winst',
'open_profit' => 'Openstaande winst',
'overdue_profit' => 'Achterstallige winst',
'cash_flow' => 'Geldstroom',
'no_profit_loss' => 'Geen winstderving',
'incomes_by_category' => 'Inkomsten per categorie',
'expenses_by_category' => 'Uitgaves per categorie',
'account_balance' => 'Rekeningsaldo',
'latest_incomes' => 'Laatste inkomsten',
'latest_expenses' => 'Nieuwste uitgaven',
];
|