mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-03 12:47:17 -06:00
29 lines
899 B
PHP
29 lines
899 B
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',
|
||
|
'matchingAmount' => 'Amount',
|
||
|
'lastMatch' => 'Last match',
|
||
|
'expectedMatch' => 'Expected match',
|
||
|
'automatch' => 'Automatch?',
|
||
|
'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'
|
||
|
];
|