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:
sebseb7
2025-11-29 13:21:35 +01:00
parent 87db7ba3ea
commit 8928b3f283
24 changed files with 154 additions and 145 deletions

View File

@@ -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..."
};