mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-29 02:11:12 -06:00
61 lines
2.0 KiB
PHP
61 lines
2.0 KiB
PHP
<?php
|
|
return [
|
|
'home' => 'Home',
|
|
|
|
// accounts
|
|
'cash_accounts' => 'Cash accounts',
|
|
'edit_account' => 'Edit account ":name"',
|
|
|
|
// currencies
|
|
'edit_currency' => 'Edit currencies ":name"',
|
|
'delete_currency' => 'Delete currencies ":name"',
|
|
|
|
// piggy banks
|
|
'newPiggyBank' => 'Create a new piggy bank',
|
|
'edit_piggyBank' => 'Edit piggy bank ":name"',
|
|
|
|
// top menu
|
|
'preferences' => 'Preferences',
|
|
'profile' => 'Profile',
|
|
'changePassword' => 'Change your password',
|
|
|
|
// bills
|
|
'bills' => 'Bills',
|
|
'newBill' => 'New bill',
|
|
'edit_bill' => 'Edit bill ":name"',
|
|
'delete_bill' => 'Delete bill ":name"',
|
|
|
|
// reports
|
|
'reports' => 'Reports',
|
|
'monthly_report' => 'Monthly report for :date',
|
|
'monthly_report_shared' => 'Monthly report for :date (including shared accounts)',
|
|
'yearly_report' => 'Yearly report for :date',
|
|
'yearly_report_shared' => 'Yearly report for :date (including shared accounts)',
|
|
'budget_report' => 'Budget report for :date',
|
|
|
|
// search
|
|
'searchResult' => 'Search for ":query"',
|
|
|
|
// transaction lists.
|
|
'withdrawal_list' => 'Expenses',
|
|
'deposit_list' => 'Revenue, income and deposits',
|
|
'transfer_list' => 'Transfers',
|
|
'transfers_list' => 'Transfers',
|
|
|
|
// create transactions
|
|
'create_withdrawal' => 'Create new withdrawal',
|
|
'create_deposit' => 'Create new deposit',
|
|
'create_transfer' => 'Create new transfer',
|
|
|
|
// edit transactions
|
|
'edit_journal' => 'Edit transaction ":description"',
|
|
'delete_journal' => 'Delete transaction ":description"',
|
|
|
|
// tags
|
|
'tags' => 'Tags',
|
|
'createTag' => 'Create new tag',
|
|
'edit_tag' => 'Edit tag ":tag"',
|
|
'delete_tag' => 'Delete tag ":tag"',
|
|
|
|
];
|