mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			57 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| declare(strict_types=1);
 | |
| 
 | |
| /**
 | |
|  * breadcrumbs.php
 | |
|  * Copyright (c) 2017 thegrumpydictator@gmail.com
 | |
|  *
 | |
|  * 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
 | |
|  * along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
 | |
|  */
 | |
| 
 | |
| 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',
 | |
|     'change_email'        => 'Change your email address',
 | |
|     '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',
 | |
|     'reconciliation_list' => 'Reconciliations',
 | |
|     'create_withdrawal'   => 'Create new withdrawal',
 | |
|     'create_deposit'      => 'Create new deposit',
 | |
|     'create_transfer'     => 'Create new transfer',
 | |
|     'edit_journal'        => 'Edit transaction ":description"',
 | |
|     'edit_reconciliation' => 'Edit ":description"',
 | |
|     'delete_journal'      => 'Delete transaction ":description"',
 | |
|     'tags'                => 'Tags',
 | |
|     'createTag'           => 'Create new tag',
 | |
|     'edit_tag'            => 'Edit tag ":tag"',
 | |
|     'delete_tag'          => 'Delete tag ":tag"',
 | |
|     'delete_journal_link' => 'Delete link between transactions',
 | |
| ];
 |