mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-31 19:27:51 -06:00
2920dd356e
Signed-off-by: James Cole <thegrumpydictator@gmail.com>
72 lines
2.8 KiB
PHP
72 lines
2.8 KiB
PHP
<?php
|
|
/**
|
|
* list.php
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
*
|
|
* This software may be modified and distributed under the terms
|
|
* of the MIT license. See the LICENSE file for details.
|
|
*/
|
|
|
|
return [
|
|
'buttons' => 'Buttons',
|
|
'icon' => 'Icon',
|
|
'create_date' => 'Created at',
|
|
'update_date' => 'Updated at',
|
|
'balance_before' => 'Balance before',
|
|
'balance_after' => 'Balance after',
|
|
'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',
|
|
'account_type' => 'Account type',
|
|
'new_balance' => 'New balance',
|
|
'account' => 'Account',
|
|
'matchingAmount' => 'Amount',
|
|
'lastMatch' => 'Last match',
|
|
'split_number' => 'Split #',
|
|
'destination' => 'Destination',
|
|
'source' => 'Source',
|
|
'expectedMatch' => 'Expected match',
|
|
'automatch' => 'Auto match?',
|
|
'repeat_freq' => 'Repeats',
|
|
'description' => 'Description',
|
|
'amount' => 'Amount',
|
|
'date' => 'Date',
|
|
'interest_date' => 'Interest date',
|
|
'book_date' => 'Book date',
|
|
'process_date' => 'Processing date',
|
|
'due_date' => 'Due date',
|
|
'payment_date' => 'Payment date',
|
|
'invoice_date' => 'Invoice date',
|
|
'interal_reference' => 'Internal reference',
|
|
'notes' => 'Notes',
|
|
'from' => 'From',
|
|
'piggy_bank' => 'Piggy bank',
|
|
'to' => 'To',
|
|
'budget' => 'Budget',
|
|
'category' => 'Category',
|
|
'bill' => 'Bill',
|
|
'withdrawal' => 'Withdrawal',
|
|
'deposit' => 'Deposit',
|
|
'transfer' => 'Transfer',
|
|
'type' => 'Type',
|
|
'completed' => 'Completed',
|
|
'iban' => 'IBAN',
|
|
'paid_current_period' => 'Paid this period',
|
|
'email' => 'Email',
|
|
'registered_at' => 'Registered at',
|
|
'is_activated' => 'Is activated',
|
|
'is_blocked' => 'Is blocked',
|
|
'is_admin' => 'Is admin',
|
|
'has_two_factor' => 'Has 2FA',
|
|
'confirmed_from' => 'Confirmed from',
|
|
'registered_from' => 'Registered from',
|
|
'blocked_code' => 'Block code',
|
|
'domain' => 'Domain',
|
|
'registration_attempts' => 'Registration attempts',
|
|
];
|