feat(Orders): add 'paid' status and update translations across multiple languages
- Introduced 'paid' status to the orders system, enhancing order tracking capabilities. - Updated translations for 'paid' status in various languages including German, Spanish, French, and more. - Adjusted related UI components to reflect the new status and ensure consistent user experience across the application.
This commit is contained in:
@@ -3,6 +3,7 @@ export default {
|
||||
"new": "In progress", // in Bearbeitung
|
||||
"pending": "New", // Neu
|
||||
"processing": "In progress", // in Bearbeitung
|
||||
"paid": "Paid", // Bezahlt
|
||||
"cancelled": "Cancelled", // Storniert
|
||||
"shipped": "Shipped", // Verschickt
|
||||
"delivered": "Delivered", // Geliefert
|
||||
@@ -27,7 +28,7 @@ export default {
|
||||
"details": {
|
||||
"title": "Order details: {{orderId}}", // Bestelldetails: {{orderId}}
|
||||
"deliveryAddress": "Delivery address", // Lieferadresse
|
||||
"invoiceAddress": "Invoice address", // Rechnungsadresse
|
||||
"invoiceAddress": "Billing address", // Rechnungsadresse
|
||||
"orderDetails": "Order details", // Bestelldetails
|
||||
"deliveryMethod": "Delivery method:", // Lieferart:
|
||||
"paymentMethod": "Payment method:", // Zahlungsart:
|
||||
@@ -36,15 +37,14 @@ export default {
|
||||
"item": "Item", // Artikel
|
||||
"quantity": "Quantity", // Menge
|
||||
"price": "Price", // Preis
|
||||
"vat": "VAT", // MwSt.
|
||||
"total": "Total", // Gesamt
|
||||
"cancelOrder": "Cancel order" // Bestellung stornieren
|
||||
},
|
||||
"cancelConfirm": {
|
||||
"title": "Cancel Order",
|
||||
"message": "Are you sure you want to cancel this order?",
|
||||
"confirm": "Cancel Order",
|
||||
"cancelling": "Cancelling..."
|
||||
"title": "Cancel order", // Bestellung stornieren
|
||||
"message": "Are you sure you want to cancel this order?", // Sind Sie sicher, dass Sie diese Bestellung stornieren möchten?
|
||||
"confirm": "Cancel", // Stornieren
|
||||
"cancelling": "Cancelling..." // Wird storniert...
|
||||
},
|
||||
"processing": "Order is being completed...", // Bestellung wird abgeschlossen...
|
||||
"processing": "Order is being completed..." // Bestellung wird abgeschlossen...
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user