HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers54/csbinstallatietechniek.nl/resources/lang/nl/kms/shipments.php
<?php

use App\Shipments\ShipmentStatus;

return [
    'type'             => 'Verzending',
    'new'              => 'Nieuwe verzending',
    'shipment'         => 'verzending',
    'shipments'        => 'verzendingen',
    'shipments_count'  => 'Aantal verzendingen',
    'short_shipments_count'  => 'Zendingen',
    'tracking_code'    => 'Track en trace code',
    'comment'          => 'Opmerking',
    'status_name'      => 'Verzendstatus',
    'all_statuses'     => 'Alle statussen',
    'results_per_page' => 'Resultaten per pagina',
    'no_results'       => 'Geen resultaten',
    'search'           => 'Zoeken',
    'status' => [
        ShipmentStatus::NEW                       => 'Nieuw',                     //A freshly created shipment
        ShipmentStatus::READY_TO_SHIP             => 'Klaar voor verzending',     //Ready to ship
        ShipmentStatus::CARRIER_NOTIFIED          => 'Koerier geattendeerd',      //The carrier is notified that they are going to receive this shipment from the shipper
        ShipmentStatus::IN_TRANSIT                => 'Verzonden',                 //The carrier picked up the package from the shipper. The package is in the internal logistical chain at the carrier.
        ShipmentStatus::OUT_FOR_DELIVERY          => 'Onderweg voor aflevering',  //The carrier is about to deliver the shipment, or it is ready to get picked up.
        ShipmentStatus::FAILED_ATTEMPT            => 'Afleverpoging mislukt',     //Carrier attempted to deliver but failed, and usually leaves a notice and will try to delivery again.
        ShipmentStatus::EXCEPTION                 => 'Uitzondering',              //Custom hold, undelivered, returned shipment to sender or any shipping exceptions.
        ShipmentStatus::DELIVERED                 => 'Afgeleverd',                //Delivered
    ],

    'shipments_created' => '{0} Geen verzending gemaakt. |{1} :count verzending gemaakt. |[2,*] :count verzendingen gemaakt.', //Pluralized string.
    'created_at'        => 'Gemaakt op',
    'section' => [
        'title' => 'Verzendingen',
        'subtitle' => 'Verzendingen en hun statussen',
        'new' => 'Nieuwe verzending'
    ],
    'entity' => 'Verzending',
    'latest_shipments' => 'laatste verzendingen',
    'batch' => [
        'no_shipments_selected' => 'Je hebt geen verzending geselecteerd, hierdoor kan de gevraagde handeling niet worden uitgevoerd.'
    ]
];