Files
reactShop/src/i18n/locales/de/orders.js
sebseb7 2d6c8ff25f feat(Orders): add tracking shipment link and update translations
- 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.
2025-11-29 14:05:59 +01:00

51 lines
1.5 KiB
JavaScript

export default {
"status": {
"new": "in Bearbeitung",
"pending": "Neu",
"processing": "in Bearbeitung",
"paid": "Bezahlt",
"cancelled": "Storniert",
"shipped": "Verschickt",
"delivered": "Geliefert",
"return": "Retoure",
"partialReturn": "Teil Retoure",
"partialDelivered": "Teil geliefert"
},
"table": {
"orderNumber": "Bestellnummer",
"date": "Datum",
"status": "Status",
"items": "Artikel",
"total": "Summe",
"actions": "Aktionen",
"viewDetails": "Details anzeigen"
},
"tooltips": {
"viewDetails": "Details anzeigen",
"cancelOrder": "Bestellung stornieren"
},
"noOrders": "Sie haben noch keine Bestellungen aufgegeben.",
"trackShipment": "Sendung verfolgen",
"details": {
"title": "Bestelldetails: {{orderId}}",
"deliveryAddress": "Lieferadresse",
"invoiceAddress": "Rechnungsadresse",
"orderDetails": "Bestelldetails",
"deliveryMethod": "Lieferart:",
"paymentMethod": "Zahlungsart:",
"notSpecified": "Nicht angegeben",
"orderedItems": "Bestellte Artikel",
"item": "Artikel",
"quantity": "Menge",
"price": "Preis",
"total": "Gesamt",
"cancelOrder": "Bestellung stornieren"
},
"cancelConfirm": {
"title": "Bestellung stornieren",
"message": "Sind Sie sicher, dass Sie diese Bestellung stornieren möchten?",
"confirm": "Stornieren",
"cancelling": "Wird storniert..."
},
"processing": "Bestellung wird abgeschlossen..."
};