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:
@@ -1,8 +1,9 @@
|
||||
export default {
|
||||
"status": {
|
||||
"new": "В процесі",
|
||||
"pending": "Новий",
|
||||
"pending": "Нове",
|
||||
"processing": "В процесі",
|
||||
"paid": "Оплачено",
|
||||
"cancelled": "Скасовано",
|
||||
"shipped": "Відправлено",
|
||||
"delivered": "Доставлено",
|
||||
@@ -36,15 +37,14 @@ export default {
|
||||
"item": "Товар",
|
||||
"quantity": "Кількість",
|
||||
"price": "Ціна",
|
||||
"vat": "ПДВ",
|
||||
"total": "Всього",
|
||||
"cancelOrder": "Скасувати замовлення"
|
||||
},
|
||||
"cancelConfirm": {
|
||||
"title": "Скасувати замовлення",
|
||||
"message": "Ви впевнені, що хочете скасувати це замовлення?",
|
||||
"confirm": "Скасувати замовлення",
|
||||
"cancelling": "Скасування..."
|
||||
"confirm": "Скасувати",
|
||||
"cancelling": "Скасовується..."
|
||||
},
|
||||
"processing": "Замовлення обробляється...",
|
||||
"processing": "Замовлення обробляється..."
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user