mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-31 19:27:51 -06:00
d920537dd2
Signed-off-by: James Cole <thegrumpydictator@gmail.com>
40 lines
1.6 KiB
PHP
40 lines
1.6 KiB
PHP
<?php
|
|
|
|
/**
|
|
* breadcrumbs.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 [
|
|
'home' => 'Home',
|
|
'edit_currency' => 'Edit currency ":name"',
|
|
'delete_currency' => 'Delete currency ":name"',
|
|
'newPiggyBank' => 'Create a new piggy bank',
|
|
'edit_piggyBank' => 'Edit piggy bank ":name"',
|
|
'preferences' => 'Preferences',
|
|
'profile' => 'Profile',
|
|
'changePassword' => 'Change your password',
|
|
'bills' => 'Bills',
|
|
'newBill' => 'New bill',
|
|
'edit_bill' => 'Edit bill ":name"',
|
|
'delete_bill' => 'Delete bill ":name"',
|
|
'reports' => 'Reports',
|
|
'searchResult' => 'Search for ":query"',
|
|
'withdrawal_list' => 'Expenses',
|
|
'deposit_list' => 'Revenue, income and deposits',
|
|
'transfer_list' => 'Transfers',
|
|
'transfers_list' => 'Transfers',
|
|
'create_withdrawal' => 'Create new withdrawal',
|
|
'create_deposit' => 'Create new deposit',
|
|
'create_transfer' => 'Create new transfer',
|
|
'edit_journal' => 'Edit transaction ":description"',
|
|
'delete_journal' => 'Delete transaction ":description"',
|
|
'tags' => 'Tags',
|
|
'createTag' => 'Create new tag',
|
|
'edit_tag' => 'Edit tag ":tag"',
|
|
'delete_tag' => 'Delete tag ":tag"',
|
|
];
|