Files
firefly-iii/resources/lang/de_DE/csv.php

80 lines
5.1 KiB
PHP
Raw Normal View History

<?php
/**
* csv.php
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
declare(strict_types = 1);
return [
'import_configure_title' => 'Konfigurieren Sie Ihren Import',
'import_configure_intro' => 'Es gibt einige Optionen für Ihren CSV-Import. Bitte geben Sie an, ob Ihre CSV-Datei Überschriften in der ersten Spalte enthält und was das Datumsformat in Ihrem Datumsfeld ist. Dieses kann einige Experimente erfordern. Das Trennzeichen ist in der Regel ein ",", könnte aber auch ein "." sein. Bitte überprüfen Sie dieses sorgfältig.',
2016-11-18 01:41:05 +01:00
'import_configure_form' => 'Standard CSV Importoptionen',
'header_help' => 'Hier auswählen, wenn die ersten Zeilen der CSV-Datei die Spaltenüberschriften sind',
'date_help' => 'Datumsformat in ihrer CSV-Datei. Geben Sie das Format so an, wie es <a href="https://secure.php.net/manual/en/datetime.createfromformat.php#refsect1-datetime.createfromformat-parameters">diese Seite</a> zeigt. Die Standardeinstellung ergibt Daten die so aussehen: :dateExample.',
'delimiter_help' => 'Wählen Sie das Trennzeichen, welches in ihrer Datei genutzt wird. Wenn Sie nicht sicher sind ist Komma die sicherste Option.',
'import_account_help' => 'Wenn ihre CSV-Datei KEINE Informationen über ihre Girokonten enthält nutzen Sie bitte diese Dropdown-Liste um anzugeben, zu welchem Girokonto die Transaktionen in de CSV-Datei gehören.',
'upload_not_writeable' => 'Das graue Feld enthält einen Dateipfad. Dieser sollte schreibbar sein. Bitte stellen Sie sicher, dass er es ist.',
// roles
'column_roles_title' => 'Define column roles',
'column_roles_table' => 'Tabelle',
'column_name' => 'Name der Spalte',
'column_example' => 'Column example data',
'column_role' => 'Column data meaning',
'do_map_value' => 'Map these values',
'column' => 'Spalte',
'no_example_data' => 'Keine Beispieldaten vorhanden',
'store_column_roles' => 'Import fortsetzen',
'do_not_map' => '(keine Zuordnung)',
2016-11-18 01:41:05 +01:00
'map_title' => 'Verbinde Importdaten mit Firefly III Daten',
'map_text' => 'In the following tables, the left value shows you information found in your uploaded CSV file. It is your task to map this value, if possible, to a value already present in your database. Firefly will stick to this mapping. If there is no value to map to, or you do not wish to map the specific value, select nothing.',
2016-11-18 01:30:59 +01:00
'field_value' => 'Feldwert',
'field_mapped_to' => 'Mapped to',
'store_column_mapping' => 'Store mapping',
// map things.
'column__ignore' => '(diese Spalte ignorieren)',
2016-11-18 01:41:05 +01:00
'column_account-iban' => 'Bestandskonto (IBAN)',
'column_account-id' => 'Bestandskonto (vgl. ID in Firefly)',
2016-11-18 01:30:59 +01:00
'column_account-name' => 'Bestandskonto (Name)',
'column_amount' => 'Betrag',
'column_amount-comma-separated' => 'Betrag (Komma als Dezimaltrennzeichen)',
'column_bill-id' => 'Bill ID (matching Firefly)',
'column_bill-name' => 'Name der Rechnung',
'column_budget-id' => 'Budget ID (matching Firefly)',
'column_budget-name' => 'Budgetname',
'column_category-id' => 'Category ID (matching Firefly)',
'column_category-name' => 'Name der Kategorie',
'column_currency-code' => 'Currency code (ISO 4217)',
'column_currency-id' => 'Currency ID (matching Firefly)',
'column_currency-name' => 'Currency name (matching Firefly)',
'column_currency-symbol' => 'Currency symbol (matching Firefly)',
2016-11-18 01:41:05 +01:00
'column_date-interest' => 'Datum der Zinsberechnung',
'column_date-book' => 'Buchungsdatum der Überweisung',
2016-11-18 01:30:59 +01:00
'column_date-process' => 'Verarbeitungsdatum der Überweisung',
'column_date-transaction' => 'Datum',
'column_description' => 'Beschreibung',
2016-11-18 01:41:05 +01:00
'column_opposing-iban' => 'Zielkonto (IBAN)',
'column_opposing-id' => 'Zielkonto (vgl. ID in Firefly)',
2016-11-18 01:30:59 +01:00
'column_external-id' => 'Externe ID',
2016-11-18 01:41:05 +01:00
'column_opposing-name' => 'Zielkonto (Name)',
'column_rabo-debet-credit' => 'Rabobank specific debet/credit indicator',
'column_ing-debet-credit' => 'ING specific debet/credit indicator',
2016-11-18 01:41:05 +01:00
'column_sepa-ct-id' => 'SEPA Überweisungstransaktionsnummer',
'column_sepa-ct-op' => 'SEPA Überweisungszielkonto',
'column_sepa-db' => 'SEPA Lastschriftnummer',
'column_tags-comma' => 'Tags (durch Komma getrennt)',
'column_tags-space' => 'Tags (durch Leerzeichen getrennt)',
2016-11-18 01:41:05 +01:00
'column_account-number' => 'Bestandskonto (Kontonr.)',
'column_opposing-number' => 'Zielkonto (Kontonr.)',
2016-10-30 07:20:00 +01:00
];