24 lines
617 B
JavaScript
24 lines
617 B
JavaScript
export default {
|
|
"status": {
|
|
"new": "W trakcie realizacji",
|
|
"pending": "Nowe",
|
|
"processing": "W trakcie realizacji",
|
|
"cancelled": "Anulowano",
|
|
"shipped": "Wysłano",
|
|
"delivered": "Dostarczono",
|
|
"return": "Zwrot",
|
|
"partialReturn": "Częściowy zwrot",
|
|
"partialDelivered": "Częściowo dostarczono"
|
|
},
|
|
"table": {
|
|
"orderNumber": "Numer zamówienia",
|
|
"date": "Data",
|
|
"status": "Status",
|
|
"items": "Pozycje",
|
|
"total": "Razem",
|
|
"actions": "Akcje",
|
|
"viewDetails": "Pokaż szczegóły"
|
|
},
|
|
"noOrders": "Nie złożyłeś jeszcze żadnych zamówień."
|
|
};
|