mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 10:47:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			60 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| /**
 | |
|  * breadcrumbs.php
 | |
|  * Copyright (c) 2019 thegrumpydictator@gmail.com
 | |
|  *
 | |
|  * 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'                   => 'Hjem',
 | |
|     'edit_currency'          => 'Rediger valuta ":name"',
 | |
|     'delete_currency'        => 'Slett valuta ":name"',
 | |
|     'newPiggyBank'           => 'Lag en ny sparegris',
 | |
|     'edit_piggyBank'         => 'Rediger sparegris ":name"',
 | |
|     'preferences'            => 'Innstillinger',
 | |
|     'profile'                => 'Profil',
 | |
|     'changePassword'         => 'Endre passord',
 | |
|     'change_email'           => 'Endre din epostadresse',
 | |
|     'bills'                  => 'Regninger',
 | |
|     'newBill'                => 'Ny regning',
 | |
|     'edit_bill'              => 'Rediger regning ":name"',
 | |
|     'delete_bill'            => 'Slett regning ":name"',
 | |
|     'reports'                => 'Rapporter',
 | |
|     'search_result'          => 'Søkeresultater for ":query"',
 | |
|     'withdrawal_list'        => 'Utgifter',
 | |
|     'Withdrawal_list'        => 'Expenses',
 | |
|     'deposit_list'           => 'Inntekter og innskudd',
 | |
|     'transfer_list'          => 'Overføringer',
 | |
|     'transfers_list'         => 'Overføringer',
 | |
|     'reconciliation_list'    => 'Avstemminger',
 | |
|     'create_withdrawal'      => 'Opprett nytt uttak',
 | |
|     'create_deposit'         => 'Opprett nytt innskudd',
 | |
|     'create_transfer'        => 'Opprett ny overføring',
 | |
|     'create_new_transaction' => 'Create a new transaction',
 | |
|     'edit_journal'           => 'Rediger transaksjon ":description"',
 | |
|     'edit_reconciliation'    => 'Endre ":description"',
 | |
|     'delete_journal'         => 'Slett transaksjon ":description"',
 | |
|     'tags'                   => 'Tagger',
 | |
|     'createTag'              => 'Opprett ny tagg',
 | |
|     'edit_tag'               => 'Rediger tagg ":tag"',
 | |
|     'delete_tag'             => 'Slett tagg ":tag"',
 | |
|     'delete_journal_link'    => 'Slett kobling mellom transaksjoner',
 | |
| ];
 |