mivita/resources/lang/en/dhl.php

92 lines
3.1 KiB
PHP

<?php
return [
'dhl' => 'DHL',
'status' => [
'pending' => 'Pending',
'created' => 'Created',
'in_transit' => 'In Transit',
'out_for_delivery' => 'Out for Delivery',
'delivered' => 'Delivered',
'exception' => 'Exception',
'returned' => 'Returned',
'failed' => 'Failed',
'unknown' => 'Unknown',
'canceled' => 'Canceled',
'cancelled' => 'Cancelled',
'shipped' => 'Shipped',
],
'type' => [
'outbound' => 'Outbound',
'return' => 'Return',
],
'product_codes' => [
'V01PAK' => 'DHL Package (National)',
'V53WPAK' => 'DHL Package International',
'V54EPAK' => 'DHL Package International',
'V55PAK' => 'DHL Package International',
'V62KP' => 'DHL Kleinpaket',
'V62WP' => 'DHL Warenpost (Legacy)',
'V66WPI' => 'DHL Package International',
],
'labels' => [
'shipment_info' => 'Shipment Information',
'recipient_info' => 'Recipient Information',
'order_info' => 'Order Information',
'tracking_info' => 'Tracking Information',
'related_shipments' => 'Related Returns',
'additional_services' => 'Additional Services',
'api_response' => 'API Response (Debug)',
],
'actions' => [
'download_label' => 'Download Label',
'cancel_shipment' => 'Cancel Shipment',
'create_return' => 'Create Return Label',
'update_tracking' => 'Update Tracking',
'view_details' => 'View Details',
'track_at_dhl' => 'Track at DHL',
'local_tracking' => 'Local Tracking',
],
'fields' => [
'id' => 'ID',
'dhl_shipment_no' => 'DHL Shipment Number',
'routing_code' => 'Routing Code',
'billing_number' => 'Billing Number',
'type' => 'Type',
'product_code' => 'Product Code',
'label_format' => 'Label Format',
'weight' => 'Weight',
'status' => 'Status',
'tracking_status' => 'Tracking Status',
'created_at' => 'Created',
'updated_at' => 'Last Updated',
'last_tracked_at' => 'Last Tracked',
'firstname' => 'First Name',
'lastname' => 'Last Name',
'company' => 'Company',
'street' => 'Street',
'postal_code' => 'Postal Code',
'city' => 'City',
'country' => 'Country',
'email' => 'Email',
'phone' => 'Phone',
],
'messages' => [
'shipment_created' => 'Shipment created successfully!',
'shipment_cancelled' => 'Shipment cancelled successfully!',
'return_label_created' => 'Return label created successfully!',
'tracking_updated' => 'Tracking information updated!',
'label_downloaded' => 'Label downloaded successfully!',
'no_shipments_found' => 'No shipments found.',
'shipment_already_exists' => 'A shipment already exists for this order.',
'cannot_cancel_delivered' => 'Delivered shipments cannot be cancelled.',
'tracking_not_available' => 'Tracking information not available.',
'label_not_available' => 'Shipping label not available.',
],
];