File: D:/HostingSpaces/SBogers10/wingssprayer.komma.pro/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.'
]
];