File: D:/HostingSpaces/SBogers10/ste.komma.pro/resources/lang/nl/kms/transactions.php
<?php
return [
'type' => 'Transacties',
'transaction' => 'transactie',
'transactions' => 'transacties',
'payment_number' => 'Nummer transactie',
'all_payments' => 'Alle transacties',
'status_name' => 'Status',
'status' => [
\App\Payment\TransactionStatus::OPEN => 'Open', //The payment is created and the user needs to pay it
\App\Payment\TransactionStatus::EXPIRED => 'Verlopen', //The payment has been expired at the financial institute (usually a bank) side. The user needs to do a new transaction
\App\Payment\TransactionStatus::REDIRECTED_USER_TO_PSP => 'Klant omgeleid naar betaalomgeving', //The customer has been redirected to the PSP for payment
\App\Payment\TransactionStatus::CANCELED_CUSTOMER => 'Geannuleerd door klant',
\App\Payment\TransactionStatus::AUTHORISATION_REJECTED => 'Autorisatie geweigerd', //The financial institute (usually a bank) rejected the authorisation
\App\Payment\TransactionStatus::AUTHORIZED => 'Geautoriseerd', //The financial institute (usually a bank) authorized the transaction. This means that the money may be transfered.
\App\Payment\TransactionStatus::AUTHORISATION_PENDING => 'Wacht op autorisatie', //The financial institute (usually a bank) must determine if the customer is allowed to make the payment
\App\Payment\TransactionStatus::AUTHORISATION_UNKNOWN => 'Autorisatie onbekend', //While authorising a technical problem occurred and it now is uncertain what the authorisation status really is. Do not allow the user to start over the payment.
\App\Payment\TransactionStatus::CANCELED => 'Geannuleerd door webshop', //The shop did cancel the transaction
\App\Payment\TransactionStatus::CANCEL_PENDING => 'Wacht op annulatie',
\App\Payment\TransactionStatus::REFUNDED => 'Terugbetaald', //The shop did a refund to the customer
\App\Payment\TransactionStatus::REFUND_PENDING => 'Wacht op terugbetaling', //The shop did a refund to the customer
\App\Payment\TransactionStatus::CHARGEDBACK => 'De transactie is teruggedraaid', //The user has instructed the financial institute (usually a bank) to get their money back and that process is completed
\App\Payment\TransactionStatus::CHARGEBACK_PENDING => 'Wacht tot transactie is teruggedraaid', //The user has instructed the financial institute (usually a bank) to get their money back
\App\Payment\TransactionStatus::PAYMENT_PAID => 'Betaald', //The payment was completed
\App\Payment\TransactionStatus::PAYMENT_PENDING => 'Wacht op transactie', //Waiting for payment.
\App\Payment\TransactionStatus::PAYMENT_UNKNOWN => 'Betaalstatus onbekend', //A technical problem occurred while processing the payment. Do not allow the user to start over the payment. It may be payed already.
],
'section' => [
'title' => 'Transactions',
'subtitle' => 'Alles over betalingen',
],
'entity' => 'Transactie',
'currency_iso_4217_code' => 'Munteenheid',
'issuer_id' => 'ID verstrekker',
'payment_method' => 'Betalingsmethode',
'account_reference' => 'IBAN',
'account_holder_name' => 'Naam rekeninghouder',
'account_brand' => 'Merk',
'payment_link' => 'Betalingslink',
'ip' => 'IP',
'error_code' => 'Foutcode',
'expire_date' => 'Verloopdatum',
'payment_date' => 'Betaaldatum',
'created_at' => 'Aanmaakdatum',
'psp' => 'PSP',
'psp_payment_reference' => 'Referentie PSP',
'psp_transaction_id' => 'ID Transactie PSP',
'amount' => 'Bedrag'
];