firefly-iii/resources/lang/en_US/breadcrumbs.php

58 lines
2.3 KiB
PHP
Raw Normal View History

<?php
2018-04-28 03:29:31 -05:00
2017-12-10 02:02:26 -06:00
/**
* breadcrumbs.php
2018-05-11 03:08:34 -05:00
* Copyright (c) 2018 thegrumpydictator@gmail.com
2017-12-10 02:02:26 -06:00
*
* This file is part of Firefly III.
*
* Firefly III is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Firefly III is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
2017-12-17 07:42:49 -06:00
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
2017-12-10 02:02:26 -06:00
*/
2017-12-19 12:25:50 -06:00
2018-05-11 03:08:34 -05:00
declare(strict_types=1);
return [
2017-08-23 14:21:42 -05:00
'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',
2017-12-19 12:25:50 -06:00
'change_email' => 'Change your email address',
2017-08-23 14:21:42 -05:00
'bills' => 'Bills',
'newBill' => 'New bill',
'edit_bill' => 'Edit bill ":name"',
'delete_bill' => 'Delete bill ":name"',
'reports' => 'Reports',
'search_result' => 'Search results for ":query"',
'withdrawal_list' => 'Expenses',
'deposit_list' => 'Revenue, income and deposits',
'transfer_list' => 'Transfers',
'transfers_list' => 'Transfers',
2017-11-24 16:14:27 -06:00
'reconciliation_list' => 'Reconciliations',
2017-08-23 14:21:42 -05:00
'create_withdrawal' => 'Create new withdrawal',
'create_deposit' => 'Create new deposit',
'create_transfer' => 'Create new transfer',
'edit_journal' => 'Edit transaction ":description"',
2017-11-24 16:14:27 -06:00
'edit_reconciliation' => 'Edit ":description"',
2017-08-23 14:21:42 -05:00
'delete_journal' => 'Delete transaction ":description"',
'tags' => 'Tags',
'createTag' => 'Create new tag',
'edit_tag' => 'Edit tag ":tag"',
'delete_tag' => 'Delete tag ":tag"',
2017-08-24 11:39:46 -05:00
'delete_journal_link' => 'Delete link between transactions',
2015-05-20 12:56:14 -05:00
];