mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			65 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| /**
 | |
|  * breadcrumbs.php
 | |
|  * Copyright (c) 2019 james@firefly-iii.org
 | |
|  *
 | |
|  * This file is part of Firefly III (https://github.com/firefly-iii).
 | |
|  *
 | |
|  * This program is free software: you can redistribute it and/or modify
 | |
|  * it under the terms of the GNU Affero General Public License as
 | |
|  * published by the Free Software Foundation, either version 3 of the
 | |
|  * License, or (at your option) any later version.
 | |
|  *
 | |
|  * This program 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 Affero General Public License for more details.
 | |
|  *
 | |
|  * You should have received a copy of the GNU Affero General Public License
 | |
|  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
 | |
|  */
 | |
| 
 | |
| declare(strict_types=1);
 | |
| 
 | |
| 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',
 | |
|     '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',
 | |
|     'create_new_transaction' => 'Create a new transaction',
 | |
|     'edit_journal'           => 'Edit transaction ":description"',
 | |
|     'edit_reconciliation'    => 'Edit ":description"',
 | |
|     'delete_journal'         => 'Delete transaction ":description"',
 | |
|     'delete_group'           => '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',
 | |
|     'telemetry_index'        => 'Telemetry',
 | |
|     'telemetry_view'         => 'View telemetry',
 | |
|     'edit_object_group'      => 'Edit group ":title"',
 | |
|     'delete_object_group'    => 'Delete group ":title"',
 | |
| ];
 |