mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-01 04:59:25 -06:00
5bff509346
Signed-off-by: James Cole <thegrumpydictator@gmail.com>
89 lines
3.7 KiB
PHP
89 lines
3.7 KiB
PHP
<?php
|
|
/**
|
|
* list.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.
|
|
*/
|
|
|
|
return [
|
|
'buttons' => 'Buttons',
|
|
'icon' => 'Icon',
|
|
'create_date' => 'Erstellt am',
|
|
'update_date' => 'Aktualisiert am',
|
|
'balance_before' => 'Bilanz vor',
|
|
'balance_after' => 'Bilanz nach',
|
|
'name' => 'Name',
|
|
'role' => 'Rolle',
|
|
'currentBalance' => 'Aktueller Kontostand',
|
|
'active' => 'Aktiv?',
|
|
'lastActivity' => 'Letzte Aktivität',
|
|
'balanceDiff' => 'Differenz des Kontostandes zwischen :start und :end',
|
|
'matchedOn' => 'Matched on',
|
|
'matchesOn' => 'Matched on',
|
|
'account_type' => 'Art des Kontos',
|
|
'created_at' => 'Created at',
|
|
'new_balance' => 'Neue Bilanz',
|
|
'account' => 'Konto',
|
|
'matchingAmount' => 'Betrag',
|
|
'lastMatch' => 'Last match',
|
|
'split_number' => 'Split #',
|
|
'destination' => 'Empfänger',
|
|
'source' => 'Quelle',
|
|
'expectedMatch' => 'Expected match',
|
|
'automatch' => 'Auto match?',
|
|
'repeat_freq' => 'Wiederholungen',
|
|
'description' => 'Beschreibung',
|
|
'amount' => 'Betrag',
|
|
'internal_reference' => 'Internal reference',
|
|
'date' => 'Datum',
|
|
'interest_date' => 'Zinstermin',
|
|
'book_date' => 'Buchungsdatum',
|
|
'process_date' => 'Bearbeitungsdatum',
|
|
'due_date' => 'Fälligkeitstermin',
|
|
'payment_date' => 'Zahlungsdatum',
|
|
'invoice_date' => 'Rechnungsdatum',
|
|
'interal_reference' => 'Interner Verweis',
|
|
'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',
|
|
'paid_current_period' => 'Diese Periode bezahlt',
|
|
'email' => 'E-Mail',
|
|
'registered_at' => 'Registriert am',
|
|
'is_activated' => 'Ist aktiviert',
|
|
'is_blocked' => 'Ist blockiert',
|
|
'is_admin' => 'Ist Admin',
|
|
'has_two_factor' => 'Hat 2FA',
|
|
'confirmed_from' => 'Bestätigt von',
|
|
'registered_from' => 'Registriert seit',
|
|
'blocked_code' => 'Block code',
|
|
'domain' => 'Domain',
|
|
'registration_attempts' => 'Registrierungsversuche',
|
|
'source_account' => 'Source account',
|
|
'destination_account' => 'Destination account',
|
|
|
|
'accounts_count' => 'Number of accounts',
|
|
'journals_count' => 'Number of journals',
|
|
'attachments_count' => 'Number of attachments',
|
|
'bills_count' => 'Number of bills',
|
|
'categories_count' => 'Number of categories',
|
|
'export_jobs_count' => 'Number of export jobs',
|
|
'import_jobs_count' => 'Number of import jobs',
|
|
'budget_count' => 'Number of budgets',
|
|
'rule_and_groups_count' => 'Number of rules and rule groups',
|
|
'tags_count' => 'Number of tags',
|
|
];
|