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,12 +3,13 @@ export default {
|
||||
"new": "W trakcie realizacji",
|
||||
"pending": "Nowe",
|
||||
"processing": "W trakcie realizacji",
|
||||
"cancelled": "Anulowano",
|
||||
"shipped": "Wysłano",
|
||||
"delivered": "Dostarczono",
|
||||
"paid": "Opłacone",
|
||||
"cancelled": "Anulowane",
|
||||
"shipped": "Wysłane",
|
||||
"delivered": "Dostarczone",
|
||||
"return": "Zwrot",
|
||||
"partialReturn": "Częściowy zwrot",
|
||||
"partialDelivered": "Częściowo dostarczono"
|
||||
"partialDelivered": "Częściowo dostarczone"
|
||||
},
|
||||
"table": {
|
||||
"orderNumber": "Numer zamówienia",
|
||||
@@ -27,7 +28,7 @@ export default {
|
||||
"details": {
|
||||
"title": "Szczegóły zamówienia: {{orderId}}",
|
||||
"deliveryAddress": "Adres dostawy",
|
||||
"invoiceAddress": "Adres do faktury",
|
||||
"invoiceAddress": "Adres rozliczeniowy",
|
||||
"orderDetails": "Szczegóły zamówienia",
|
||||
"deliveryMethod": "Metoda dostawy:",
|
||||
"paymentMethod": "Metoda płatności:",
|
||||
@@ -36,15 +37,14 @@ export default {
|
||||
"item": "Produkt",
|
||||
"quantity": "Ilość",
|
||||
"price": "Cena",
|
||||
"vat": "VAT",
|
||||
"total": "Razem",
|
||||
"cancelOrder": "Anuluj zamówienie"
|
||||
},
|
||||
"cancelConfirm": {
|
||||
"title": "Anuluj zamówienie",
|
||||
"message": "Czy na pewno chcesz anulować to zamówienie?",
|
||||
"confirm": "Anuluj zamówienie",
|
||||
"confirm": "Anuluj",
|
||||
"cancelling": "Anulowanie..."
|
||||
},
|
||||
"processing": "Zamówienie jest realizowane...",
|
||||
"processing": "Zamówienie jest realizowane..."
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user