mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-11 01:19:31 +00:00
102 lines
4.0 KiB
PHP
102 lines
4.0 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' => 'Budget',
|
|
'subscriptions' => 'Abonnementer',
|
|
'transactions' => 'Transaktioner',
|
|
'title_expenses' => 'Udgifter',
|
|
'title_withdrawal' => 'Udgifter',
|
|
'title_revenue' => 'Indtægter / indkomster',
|
|
'title_deposit' => 'Indtægter / indkomster',
|
|
'title_transfer' => 'Overførsler',
|
|
'title_transfers' => 'Overførsler',
|
|
'edit_currency' => 'Rediger valuta ":name"',
|
|
'delete_currency' => 'Slet valuta ":name"',
|
|
'newPiggyBank' => 'Opret ny sparegris',
|
|
'edit_piggyBank' => 'Rediger sparegris ":name"',
|
|
'preferences' => 'Indstillinger',
|
|
'profile' => 'Profil',
|
|
'accounts' => 'Konti',
|
|
'changePassword' => 'Skift din adgangskode',
|
|
'change_email' => 'Skift din e-mail adresse',
|
|
'bills' => 'Regninger',
|
|
'newBill' => 'Ny regning',
|
|
'edit_bill' => 'Rediger regning ":name"',
|
|
'delete_bill' => 'Slet regning ":name"',
|
|
'reports' => 'Rapporter',
|
|
'search_result' => 'Søgeresultater for ":query"',
|
|
'withdrawal_list' => 'Udgifter',
|
|
'Withdrawal_list' => 'Udgifter',
|
|
'deposit_list' => 'Omsætning, indkomst og indskud',
|
|
'transfer_list' => 'Overførsler',
|
|
'transfers_list' => 'Overførsler',
|
|
|
|
/*
|
|
* 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' => 'Afstemninger',
|
|
'create_withdrawal' => 'Opret ny hævning',
|
|
'create_deposit' => 'Opret ny indtægt',
|
|
'create_transfer' => 'Opret ny overførsel',
|
|
'create_new_transaction' => 'Opret ny transaktion',
|
|
'edit_journal' => 'Rediger transaktion ":description"',
|
|
'edit_reconciliation' => 'Rediger ":description"',
|
|
'delete_journal' => 'Slet transaktion ":description"',
|
|
'delete_group' => 'Slet transaktion ":description"',
|
|
'tags' => 'Tags',
|
|
'createTag' => 'Opret nyt tag',
|
|
'edit_tag' => 'Rediger tag ":tag"',
|
|
'delete_tag' => 'Slet tag ":tag"',
|
|
'delete_journal_link' => 'Slet link mellem transaktioner',
|
|
'edit_object_group' => 'Redigér gruppe ":title"',
|
|
'delete_object_group' => 'Slet gruppe ":title"',
|
|
'logout_others' => 'Log mig ud af alle andre sessioner',
|
|
'asset_accounts' => 'Aktivkonti',
|
|
'expense_accounts' => 'Udgiftskonti',
|
|
'revenue_accounts' => 'Indtægtskonti',
|
|
'liabilities_accounts' => 'Gæld',
|
|
'placeholder' => '[Placeholder]',
|
|
];
|