- 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 curs",
|
|
"pending": "Nou",
|
|
"processing": "în curs",
|
|
"paid": "Plătit",
|
|
"cancelled": "Anulat",
|
|
"shipped": "Expediat",
|
|
"delivered": "Livrat",
|
|
"return": "Returnare",
|
|
"partialReturn": "Returnare parțială",
|
|
"partialDelivered": "Livrat parțial"
|
|
},
|
|
"table": {
|
|
"orderNumber": "Număr comandă",
|
|
"date": "Data",
|
|
"status": "Status",
|
|
"items": "Articole",
|
|
"total": "Total",
|
|
"actions": "Acțiuni",
|
|
"viewDetails": "Vezi detalii"
|
|
},
|
|
"tooltips": {
|
|
"viewDetails": "Vezi detalii",
|
|
"cancelOrder": "Anulează comanda"
|
|
},
|
|
"noOrders": "Nu ați plasat încă nicio comandă.",
|
|
"trackShipment": "Urmărește expedierea",
|
|
"details": {
|
|
"title": "Detalii comandă: {{orderId}}",
|
|
"deliveryAddress": "Adresa de livrare",
|
|
"invoiceAddress": "Adresa de facturare",
|
|
"orderDetails": "Detalii comandă",
|
|
"deliveryMethod": "Metoda de livrare:",
|
|
"paymentMethod": "Metoda de plată:",
|
|
"notSpecified": "Nespecificat",
|
|
"orderedItems": "Articole comandate",
|
|
"item": "Articol",
|
|
"quantity": "Cantitate",
|
|
"price": "Preț",
|
|
"total": "Total",
|
|
"cancelOrder": "Anulează comanda"
|
|
},
|
|
"cancelConfirm": {
|
|
"title": "Anulează comanda",
|
|
"message": "Sigur doriți să anulați această comandă?",
|
|
"confirm": "Anulează",
|
|
"cancelling": "Se anulează..."
|
|
},
|
|
"processing": "Comanda este în curs de finalizare..."
|
|
};
|