mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
29 lines
929 B
PHP
29 lines
929 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
// all table headers.
|
||
|
|
|
||
|
|
return [
|
||
|
|
'name' => 'Naam',
|
||
|
|
'role' => 'Rol',
|
||
|
|
'currentBalance' => 'Huidig saldo',
|
||
|
|
'active' => 'Actief?',
|
||
|
|
'lastActivity' => 'Laatste activiteit',
|
||
|
|
'balanceDiff' => 'Saldoverschil tussen :start en :end',
|
||
|
|
'matchedOn' => 'Wordt herkend',
|
||
|
|
'matchingAmount' => 'Bedrag',
|
||
|
|
'lastMatch' => 'Laatste keer gezien',
|
||
|
|
'expectedMatch' => 'Wordt verwacht',
|
||
|
|
'automatch' => 'Automatisch herkennen?',
|
||
|
|
'repeat_freq' => 'Herhaling',
|
||
|
|
'description' => 'Omschrijving',
|
||
|
|
'amount' => 'Bedrag',
|
||
|
|
'date' => 'Datum',
|
||
|
|
'from' => 'Van',
|
||
|
|
'to' => 'Naar',
|
||
|
|
'budget' => 'Budget',
|
||
|
|
'category' => 'Categorie',
|
||
|
|
'bill' => 'Rekening',
|
||
|
|
'withdrawal' => 'Uitgave',
|
||
|
|
'deposit' => 'Inkomsten',
|
||
|
|
'transfer' => 'Overschrijving'
|
||
|
|
];
|