firefly-iii/resources/lang/de_DE/list.php

136 lines
6.3 KiB
PHP
Raw Normal View History

<?php
2018-03-22 23:31:30 -05:00
/**
* list.php
2020-02-14 01:07:45 -06:00
* Copyright (c) 2019 james@firefly-iii.org
2017-12-11 12:42:57 -06:00
*
2019-10-04 23:23:46 -05:00
* This file is part of Firefly III (https://github.com/firefly-iii).
*
2019-10-04 23:23:46 -05: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-10-04 23:23:46 -05:00
* This program is distributed in the hope that it will be useful,
2017-12-11 12:42:57 -06:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2019-10-04 23:23:46 -05:00
* GNU Affero General Public License for more details.
2017-12-11 12:42:57 -06:00
*
2019-10-04 23:23:46 -05: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/>.
*/
2018-06-01 07:20:17 -05:00
declare(strict_types=1);
return [
2019-09-03 10:21:45 -05:00
'buttons' => 'Schaltflächen',
'icon' => 'Symbol',
'id' => 'Id',
'create_date' => 'Erstellt am',
'update_date' => 'Aktualisiert am',
'updated_at' => 'Aktualisiert am',
'balance_before' => 'Kontostand vorher',
'balance_after' => 'Kontostand nachher',
'name' => 'Name',
'role' => 'Rolle',
'currentBalance' => 'Aktueller Kontostand',
'linked_to_rules' => 'Verlinkte Regeln',
'active' => 'Aktiv?',
2019-09-07 13:28:21 -05:00
'percentage' => '%',
2020-08-09 12:02:58 -05:00
'recurring_transaction' => 'Dauerauftrag',
2019-09-07 13:28:21 -05:00
'next_due' => 'Nächste Fälligkeit',
2019-09-03 10:21:45 -05:00
'transaction_type' => 'Typ',
'lastActivity' => 'Letzte Aktivität',
'balanceDiff' => 'Saldendifferenz',
2019-09-06 13:26:57 -05:00
'other_meta_data' => 'Weitere Metadaten',
2019-09-03 10:21:45 -05:00
'account_type' => 'Kontotyp',
'created_at' => 'Erstellt am',
'account' => 'Konto',
2020-08-21 01:03:00 -05:00
'external_uri' => 'Externe URI',
2019-09-03 10:21:45 -05:00
'matchingAmount' => 'Betrag',
'destination' => 'Empfänger',
'source' => 'Quelle',
'next_expected_match' => 'Nächste erwartete Übereinstimmung',
'automatch' => 'Automatisch erkennen?',
'repeat_freq' => 'Wiederholungen',
'description' => 'Beschreibung',
'amount' => 'Betrag',
'date' => 'Datum',
'interest_date' => 'Zinstermin',
'book_date' => 'Buchungsdatum',
'process_date' => 'Bearbeitungsdatum',
'due_date' => 'Fälligkeitstermin',
'payment_date' => 'Zahlungsdatum',
'invoice_date' => 'Rechnungsdatum',
2020-06-03 23:49:44 -05:00
'internal_reference' => 'Interner Verweis',
2019-09-03 10:21:45 -05:00
'notes' => 'Notizen',
'from' => 'Von',
'piggy_bank' => 'Sparschwein',
'to' => 'An',
'budget' => 'Budget',
'category' => 'Kategorie',
'bill' => 'Rechnung',
'withdrawal' => 'Ausgabe',
'deposit' => 'Einlage',
'transfer' => 'Überweisung',
'type' => 'Typ',
'completed' => 'Abgeschlossen',
'iban' => 'IBAN',
2020-05-15 12:31:19 -05:00
'paid_current_period' => 'Diesen Zeitraum bezahlt',
2019-09-03 10:21:45 -05:00
'email' => 'E-Mail',
'registered_at' => 'Registriert am',
'is_blocked' => 'Ist blockiert',
'is_admin' => 'Ist Admin',
'has_two_factor' => 'Nutzt 2FA',
'blocked_code' => 'Blockcode',
'source_account' => 'Quellkonto',
2017-09-24 14:20:37 -05:00
'destination_account' => 'Zielkonto',
'accounts_count' => 'Anzahl Konten',
'journals_count' => 'Anzahl der Zahlungsvorgänge',
'attachments_count' => 'Anzahl Anhänge',
'bills_count' => 'Anzahl Rechnungen',
'categories_count' => 'Anzahl Kategorien',
'budget_count' => 'Anzahl Kostenpläne',
2017-09-24 14:20:37 -05:00
'rule_and_groups_count' => 'Anzahl Regeln und Regelgruppen',
2020-02-14 01:07:45 -06:00
'tags_count' => 'Anzahl Tags',
'tags' => 'Tags',
2018-03-22 23:31:30 -05:00
'inward' => 'Beschreibung der Eingänge',
'outward' => 'Beschreibung der Ausgänge',
2017-09-24 14:20:37 -05:00
'number_of_transactions' => 'Anzahl der Zahlungsvorgänge',
2017-10-11 07:00:17 -05:00
'total_amount' => 'Gesamtbetrag',
'sum' => 'Summe',
2018-01-30 14:07:14 -06:00
'sum_excluding_transfers' => 'Summe (ohne Umbuchungen)',
2017-12-23 15:02:29 -06:00
'sum_withdrawals' => 'Summe der Ausgaben',
2017-10-11 07:00:17 -05:00
'sum_deposits' => 'Summe der Einzahlungen',
2018-01-30 14:07:14 -06:00
'sum_transfers' => 'Summe der Umbuchungen',
2020-06-05 23:40:44 -05:00
'sum_reconciliations' => 'Summe der Kontenabgleiche',
2018-03-04 01:54:01 -06:00
'reconcile' => 'Abgleichen',
2019-05-29 11:30:52 -05:00
'sepa_ct_id' => 'SEPA • Ende-zu-Ende-Identifikationsnummer',
'sepa_ct_op' => 'SEPA-Gläubiger-Identifikationsnummer',
'sepa_db' => 'SEPA • Mandatskennung',
'sepa_country' => 'SEPA • Land',
'sepa_cc' => 'SEPA • Verrechnungsschlüssel',
'sepa_ep' => 'SEPA • Externer Verwendungszweck',
'sepa_ci' => 'SEPA • Identifikationsnummer des Zahlungsempfängers',
'sepa_batch_id' => 'SEPA • Stapel-Kennung',
2018-06-01 07:20:17 -05:00
'external_id' => 'Externe Kennung',
'account_at_bunq' => 'Konto bei „bunq”',
2018-04-28 08:26:45 -05:00
'file_name' => 'Dateiname',
'file_size' => 'Dateigröße',
'file_type' => 'Dateityp',
'attached_to' => 'Zugewiesen zu',
'file_exists' => 'Datei existiert',
2018-06-01 07:20:17 -05:00
'spectre_bank' => 'Bank',
'spectre_last_use' => 'Letzte Anmeldung',
'spectre_status' => 'Status',
'bunq_payment_id' => 'bunq-Zahlungskennung',
2018-06-27 14:37:16 -05:00
'repetitions' => 'Wiederholungen',
'title' => 'Titel',
'transaction_s' => 'Buchung(en)',
'field' => 'Feld',
'value' => 'Wert',
2018-08-05 13:44:05 -05:00
'interest' => 'Zinsen',
'interest_period' => 'Verzinsungszeitraum',
'liability_type' => 'Verbindlichkeitsart',
2017-09-03 03:41:16 -05:00
];