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": "В процессе",
|
||||
"pending": "Новый",
|
||||
"processing": "В процессе",
|
||||
"cancelled": "Отменён",
|
||||
"shipped": "Отправлен",
|
||||
"delivered": "Доставлен",
|
||||
"paid": "Оплачено",
|
||||
"cancelled": "Отменено",
|
||||
"shipped": "Отправлено",
|
||||
"delivered": "Доставлено",
|
||||
"return": "Возврат",
|
||||
"partialReturn": "Частичный возврат",
|
||||
"partialDelivered": "Частично доставлен"
|
||||
"partialDelivered": "Частично доставлено"
|
||||
},
|
||||
"table": {
|
||||
"orderNumber": "Номер заказа",
|
||||
@@ -23,11 +24,11 @@ export default {
|
||||
"viewDetails": "Просмотреть детали",
|
||||
"cancelOrder": "Отменить заказ"
|
||||
},
|
||||
"noOrders": "Вы ещё не сделали ни одного заказа.",
|
||||
"noOrders": "Вы еще не сделали ни одного заказа.",
|
||||
"details": {
|
||||
"title": "Детали заказа: {{orderId}}",
|
||||
"deliveryAddress": "Адрес доставки",
|
||||
"invoiceAddress": "Адрес для счёта",
|
||||
"invoiceAddress": "Адрес для выставления счета",
|
||||
"orderDetails": "Детали заказа",
|
||||
"deliveryMethod": "Способ доставки:",
|
||||
"paymentMethod": "Способ оплаты:",
|
||||
@@ -36,15 +37,14 @@ export default {
|
||||
"item": "Товар",
|
||||
"quantity": "Количество",
|
||||
"price": "Цена",
|
||||
"vat": "НДС",
|
||||
"total": "Итого",
|
||||
"cancelOrder": "Отменить заказ"
|
||||
},
|
||||
"cancelConfirm": {
|
||||
"title": "Отмена заказа",
|
||||
"title": "Отменить заказ",
|
||||
"message": "Вы уверены, что хотите отменить этот заказ?",
|
||||
"confirm": "Отменить заказ",
|
||||
"confirm": "Отменить",
|
||||
"cancelling": "Отмена..."
|
||||
},
|
||||
"processing": "Заказ обрабатывается...",
|
||||
"processing": "Заказ обрабатывается..."
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user