mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-29 02:11:12 -06:00
34 lines
1.0 KiB
PHP
34 lines
1.0 KiB
PHP
<?php
|
|
|
|
// all table headers.
|
|
|
|
return [
|
|
'name' => 'Name',
|
|
'role' => 'Role',
|
|
'currentBalance' => 'Current balance',
|
|
'active' => 'Is active?',
|
|
'lastActivity' => 'Last activity',
|
|
'balanceDiff' => 'Balance difference between :start and :end',
|
|
'matchedOn' => 'Matched on',
|
|
'matchesOn' => 'Matched on',
|
|
'matchingAmount' => 'Amount',
|
|
'lastMatch' => 'Last match',
|
|
'expectedMatch' => 'Expected match',
|
|
'automatch' => 'Auto match?',
|
|
'repeat_freq' => 'Repeats',
|
|
'description' => 'Description',
|
|
'amount' => 'Amount',
|
|
'date' => 'Date',
|
|
'from' => 'From',
|
|
'to' => 'To',
|
|
'budget' => 'Budget',
|
|
'category' => 'Category',
|
|
'bill' => 'Bill',
|
|
'withdrawal' => 'Withdrawal',
|
|
'deposit' => 'Deposit',
|
|
'transfer' => 'Transfer',
|
|
'type' => 'Type',
|
|
'completed' => 'Completed',
|
|
'iban' => 'IBAN',
|
|
];
|