mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-20 11:48:27 -06:00
104 lines
3.8 KiB
PHP
104 lines
3.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/>.
|
|
*/
|
|
|
|
/*
|
|
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
*
|
|
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
*
|
|
* https://crowdin.com/project/firefly-iii
|
|
*
|
|
*/
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'home' => 'Hjem',
|
|
'budgets' => 'Budsjetter',
|
|
'subscriptions' => 'Abonnementer',
|
|
'transactions' => 'Transaksjoner',
|
|
'title_expenses' => 'Utgifter',
|
|
'title_withdrawal' => 'Utgifter',
|
|
'title_revenue' => 'Inntekt',
|
|
'title_deposit' => 'Inntekt',
|
|
'title_transfer' => 'Overføringer',
|
|
'title_transfers' => 'Overføringer',
|
|
'edit_currency' => 'Rediger valuta ":name"',
|
|
'delete_currency' => 'Slett valuta ":name"',
|
|
'newPiggyBank' => 'Lag en ny sparegris',
|
|
'edit_piggyBank' => 'Rediger sparegris ":name"',
|
|
'preferences' => 'Innstillinger',
|
|
'profile' => 'Profil',
|
|
'accounts' => 'Kontoer',
|
|
'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' => 'Utgifter',
|
|
'deposit_list' => 'Inntekter og innskudd',
|
|
'transfer_list' => 'Overføringer',
|
|
'transfers_list' => 'Overføringer',
|
|
|
|
/*
|
|
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
*
|
|
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
*
|
|
* https://crowdin.com/project/firefly-iii
|
|
*
|
|
*/
|
|
|
|
|
|
'reconciliation_list' => 'Avstemminger',
|
|
'create_withdrawal' => 'Opprett nytt uttak',
|
|
'create_deposit' => 'Opprett nytt innskudd',
|
|
'create_transfer' => 'Opprett ny overføring',
|
|
'create_new_transaction' => 'Opprett ny transaksjon',
|
|
'edit_journal' => 'Rediger transaksjon ":description"',
|
|
'edit_reconciliation' => 'Endre ":description"',
|
|
'delete_journal' => 'Slett transaksjon ":description"',
|
|
'delete_group' => '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',
|
|
'edit_object_group' => 'Rediger gruppe ":title"',
|
|
'delete_object_group' => 'Slett gruppe ":title"',
|
|
'logout_others' => 'Logg ut andre økter',
|
|
'asset_accounts' => 'Aktivakonto',
|
|
'expense_accounts' => 'Utgiftskonto',
|
|
'revenue_accounts' => 'Inntektskontoer',
|
|
'liabilities_accounts' => 'Gjeld',
|
|
'placeholder' => '[Placeholder]',
|
|
];
|