2015-05-14 06:00:43 -05:00
|
|
|
<?php
|
2018-03-29 12:00:21 -05:00
|
|
|
|
2016-03-13 11:19:09 -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).
|
2016-03-13 11:19:09 -05:00
|
|
|
*
|
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.
|
2016-10-04 23:52:15 -05:00
|
|
|
*
|
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/>.
|
2016-03-13 11:19:09 -05:00
|
|
|
*/
|
2017-12-19 12:35:54 -06:00
|
|
|
|
2018-06-01 07:21:54 -05:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2015-05-14 06:00:43 -05:00
|
|
|
return [
|
2019-09-03 10:21:45 -05:00
|
|
|
'buttons' => 'Knoppen',
|
|
|
|
'icon' => 'Icoon',
|
|
|
|
'id' => 'ID',
|
|
|
|
'create_date' => 'Aangemaakt op',
|
|
|
|
'update_date' => 'Bijgewerkt op',
|
|
|
|
'updated_at' => 'Bijgewerkt op',
|
|
|
|
'balance_before' => 'Saldo voor',
|
|
|
|
'balance_after' => 'Saldo na',
|
|
|
|
'name' => 'Naam',
|
|
|
|
'role' => 'Rol',
|
|
|
|
'currentBalance' => 'Huidig saldo',
|
|
|
|
'linked_to_rules' => 'Relevante regels',
|
|
|
|
'active' => 'Actief?',
|
2019-09-07 13:28:21 -05:00
|
|
|
'percentage' => 'pct',
|
2020-08-01 10:54:35 -05:00
|
|
|
'recurring_transaction' => 'Periodieke transactie',
|
2019-09-07 13:28:21 -05:00
|
|
|
'next_due' => 'Volgende',
|
2019-09-03 10:21:45 -05:00
|
|
|
'transaction_type' => 'Type',
|
|
|
|
'lastActivity' => 'Laatste activiteit',
|
|
|
|
'balanceDiff' => 'Saldoverschil',
|
|
|
|
'other_meta_data' => 'Andere metadata',
|
|
|
|
'account_type' => 'Accounttype',
|
|
|
|
'created_at' => 'Gemaakt op',
|
|
|
|
'account' => 'Rekening',
|
2020-08-01 10:54:35 -05:00
|
|
|
'external_uri' => 'Externe URI',
|
2019-09-03 10:21:45 -05:00
|
|
|
'matchingAmount' => 'Bedrag',
|
|
|
|
'destination' => 'Doel',
|
|
|
|
'source' => 'Bron',
|
|
|
|
'next_expected_match' => 'Volgende verwachte match',
|
|
|
|
'automatch' => 'Automatisch herkennen?',
|
|
|
|
'repeat_freq' => 'Herhaling',
|
|
|
|
'description' => 'Omschrijving',
|
|
|
|
'amount' => 'Bedrag',
|
|
|
|
'date' => 'Datum',
|
|
|
|
'interest_date' => 'Rentedatum',
|
|
|
|
'book_date' => 'Boekdatum',
|
|
|
|
'process_date' => 'Verwerkingsdatum',
|
|
|
|
'due_date' => 'Vervaldatum',
|
|
|
|
'payment_date' => 'Betalingsdatum',
|
|
|
|
'invoice_date' => 'Factuurdatum',
|
2020-06-06 00:09:27 -05:00
|
|
|
'internal_reference' => 'Interne referentie',
|
2019-09-03 10:21:45 -05:00
|
|
|
'notes' => 'Notities',
|
|
|
|
'from' => 'Van',
|
|
|
|
'piggy_bank' => 'Spaarpotje',
|
|
|
|
'to' => 'Naar',
|
|
|
|
'budget' => 'Budget',
|
|
|
|
'category' => 'Categorie',
|
|
|
|
'bill' => 'Contract',
|
|
|
|
'withdrawal' => 'Uitgave',
|
|
|
|
'deposit' => 'Inkomsten',
|
|
|
|
'transfer' => 'Overschrijving',
|
|
|
|
'type' => 'Type',
|
|
|
|
'completed' => 'Opgeslagen',
|
|
|
|
'iban' => 'IBAN',
|
|
|
|
'paid_current_period' => 'Betaald deze periode',
|
|
|
|
'email' => 'E-mail',
|
|
|
|
'registered_at' => 'Geregistreerd op',
|
|
|
|
'is_blocked' => 'Is geblokkeerd',
|
|
|
|
'is_admin' => 'Is beheerder',
|
|
|
|
'has_two_factor' => 'Heeft 2FA',
|
|
|
|
'blocked_code' => 'Reden voor blokkade',
|
|
|
|
'source_account' => 'Bronrekening',
|
2017-09-24 14:20:34 -05:00
|
|
|
'destination_account' => 'Doelrekening',
|
|
|
|
'accounts_count' => 'Aantal rekeningen',
|
|
|
|
'journals_count' => 'Aantal transacties',
|
|
|
|
'attachments_count' => 'Aantal bijlagen',
|
|
|
|
'bills_count' => 'Aantal contracten',
|
|
|
|
'categories_count' => 'Aantal categorieën',
|
|
|
|
'budget_count' => 'Aantal budgetten',
|
|
|
|
'rule_and_groups_count' => 'Aantal regels en regelgroepen',
|
|
|
|
'tags_count' => 'Aantal tags',
|
2017-12-30 13:43:18 -06:00
|
|
|
'tags' => 'Tags',
|
2017-09-24 14:20:34 -05:00
|
|
|
'inward' => 'Binnenwaartse beschrijving',
|
|
|
|
'outward' => 'Buitenwaartse beschrijving',
|
|
|
|
'number_of_transactions' => 'Aantal transacties',
|
|
|
|
'total_amount' => 'Totaalbedrag',
|
2017-09-24 23:10:05 -05:00
|
|
|
'sum' => 'Som',
|
|
|
|
'sum_excluding_transfers' => 'Som (zonder overschrijvingen)',
|
|
|
|
'sum_withdrawals' => 'Som van uitgaven',
|
|
|
|
'sum_deposits' => 'Som van inkomsten',
|
|
|
|
'sum_transfers' => 'Som van overschrijvingen',
|
2020-01-01 08:38:47 -06:00
|
|
|
'sum_reconciliations' => 'Som van afstemmingen',
|
2017-11-30 00:13:52 -06:00
|
|
|
'reconcile' => 'Afstemmen',
|
2019-05-29 11:30:52 -05:00
|
|
|
'sepa_ct_id' => 'SEPA end-to-end identificatie',
|
|
|
|
'sepa_ct_op' => 'SEPA identificatie tegenpartij',
|
|
|
|
'sepa_db' => 'SEPA mandaatidentificatie',
|
|
|
|
'sepa_country' => 'SEPA-land',
|
|
|
|
'sepa_cc' => 'SEPA vrijwaringscode',
|
|
|
|
'sepa_ep' => 'SEPA transactiedoeleinde',
|
|
|
|
'sepa_ci' => 'SEPA crediteuridentificatie',
|
|
|
|
'sepa_batch_id' => 'SEPA-batchnummer',
|
2018-06-01 07:21:54 -05:00
|
|
|
'external_id' => 'Externe ID',
|
2018-03-29 12:00:21 -05:00
|
|
|
'account_at_bunq' => 'Bunq-account',
|
2018-04-28 08:26:45 -05:00
|
|
|
'file_name' => 'Bestandsnaam',
|
|
|
|
'file_size' => 'Bestandsgrootte',
|
|
|
|
'file_type' => 'Bestandstype',
|
|
|
|
'attached_to' => 'Bijlage van',
|
|
|
|
'file_exists' => 'Bestand bestaat',
|
2018-06-01 07:21:54 -05:00
|
|
|
'spectre_bank' => 'Bank',
|
|
|
|
'spectre_last_use' => 'Laatst ingelogd',
|
|
|
|
'spectre_status' => 'Status',
|
|
|
|
'bunq_payment_id' => 'bunq betalings-ID',
|
2018-06-22 23:29:14 -05:00
|
|
|
'repetitions' => 'Herhalingen',
|
|
|
|
'title' => 'Titel',
|
|
|
|
'transaction_s' => 'Transactie(s)',
|
|
|
|
'field' => 'Veld',
|
|
|
|
'value' => 'Waarde',
|
2018-08-05 13:44:05 -05:00
|
|
|
'interest' => 'Rente',
|
|
|
|
'interest_period' => 'renteperiode',
|
|
|
|
'liability_type' => 'Type passiva',
|
2017-09-03 03:41:58 -05:00
|
|
|
];
|