- Implemented a tracking shipment link in the OrdersTab component for DHL deliveries, enhancing user experience by allowing direct access to shipment tracking. - Added 'trackShipment' translation key across multiple languages to support the new feature. - Updated existing translations for consistency and improved localization in the orders module.
52 lines
1.5 KiB
JavaScript
52 lines
1.5 KiB
JavaScript
export default {
|
|
"status": {
|
|
"new": "në proces",
|
|
"pending": "E re",
|
|
"processing": "në proces",
|
|
"paid": "E paguar",
|
|
"cancelled": "Anuluar",
|
|
"shipped": "Dërguar",
|
|
"delivered": "Dorëzuar",
|
|
"return": "Kthim",
|
|
"partialReturn": "Kthim i pjesshëm",
|
|
"partialDelivered": "Dorëzuar pjesërisht"
|
|
},
|
|
"table": {
|
|
"orderNumber": "Numri i porosisë",
|
|
"date": "Data",
|
|
"status": "Statusi",
|
|
"items": "Artikuj",
|
|
"total": "Totali",
|
|
"actions": "Veprimet",
|
|
"viewDetails": "Shiko detajet"
|
|
},
|
|
"tooltips": {
|
|
"viewDetails": "Shiko detajet",
|
|
"cancelOrder": "Anulo porosinë"
|
|
},
|
|
"noOrders": "Nuk keni bërë ende asnjë porosi.",
|
|
"trackShipment": "Ndjek dërgesën",
|
|
"details": {
|
|
"title": "Detajet e porosisë: {{orderId}}",
|
|
"deliveryAddress": "Adresa e dorëzimit",
|
|
"invoiceAddress": "Adresa e faturës",
|
|
"orderDetails": "Detajet e porosisë",
|
|
"deliveryMethod": "Mënyra e dorëzimit:",
|
|
"paymentMethod": "Mënyra e pagesës:",
|
|
"notSpecified": "Nuk është specifikuar",
|
|
"orderedItems": "Artikujt e porositur",
|
|
"item": "Artikulli",
|
|
"quantity": "Sasia",
|
|
"price": "Çmimi",
|
|
"total": "Totali",
|
|
"cancelOrder": "Anulo porosinë"
|
|
},
|
|
"cancelConfirm": {
|
|
"title": "Anulo porosinë",
|
|
"message": "A jeni i sigurt që dëshironi të anuloni këtë porosi?",
|
|
"confirm": "Anulo",
|
|
"cancelling": "Duke anuluar..."
|
|
},
|
|
"processing": "Porosia po përpunohet..."
|
|
};
|