| 
									
										
										
										
											2019-03-17 09:13:23 +01:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * breadcrumbs.php | 
					
						
							| 
									
										
										
										
											2020-02-14 08:07:45 +01:00
										 |  |  |  * Copyright (c) 2019 james@firefly-iii.org | 
					
						
							| 
									
										
										
										
											2019-03-17 09:13:23 +01:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2019-10-05 06:23:46 +02:00
										 |  |  |  * This file is part of Firefly III (https://github.com/firefly-iii). | 
					
						
							| 
									
										
										
										
											2019-03-17 09:13:23 +01:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2019-10-05 06:23:46 +02:00
										 |  |  |  * 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. | 
					
						
							| 
									
										
										
										
											2019-03-17 09:13:23 +01:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2019-10-05 06:23:46 +02:00
										 |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							| 
									
										
										
										
											2019-03-17 09:13:23 +01:00
										 |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							| 
									
										
										
										
											2019-10-05 06:23:46 +02:00
										 |  |  |  * GNU Affero General Public License for more details. | 
					
						
							| 
									
										
										
										
											2019-03-17 09:13:23 +01:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2019-10-05 06:23:46 +02:00
										 |  |  |  * 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/>. | 
					
						
							| 
									
										
										
										
											2019-03-17 09:13:23 +01:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | declare(strict_types=1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | return [ | 
					
						
							| 
									
										
										
										
											2019-05-29 18:30:52 +02:00
										 |  |  |     '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', | 
					
						
							| 
									
										
										
										
											2019-08-08 17:05:13 +02:00
										 |  |  |     'Withdrawal_list'        => 'Expenses', | 
					
						
							| 
									
										
										
										
											2019-05-29 18:30:52 +02:00
										 |  |  |     '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"', | 
					
						
							| 
									
										
										
										
											2020-03-06 05:25:36 +01:00
										 |  |  |     'delete_group'           => 'Delete transaction ":description"', | 
					
						
							| 
									
										
										
										
											2019-05-29 18:30:52 +02:00
										 |  |  |     'tags'                   => 'Tagger', | 
					
						
							|  |  |  |     'createTag'              => 'Opprett ny tagg', | 
					
						
							|  |  |  |     'edit_tag'               => 'Rediger tagg ":tag"', | 
					
						
							|  |  |  |     'delete_tag'             => 'Slett tagg ":tag"', | 
					
						
							|  |  |  |     'delete_journal_link'    => 'Slett kobling mellom transaksjoner', | 
					
						
							| 
									
										
										
										
											2019-03-17 09:13:23 +01:00
										 |  |  | ]; |