Files
reactShop/src/i18n/locales/bg/orders.js
sebseb7 8928b3f283 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.
2025-11-29 13:21:35 +01:00

51 lines
1.8 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

export default {
"status": {
"new": "В процес",
"pending": "Нова",
"processing": "В процес",
"paid": "Платена",
"cancelled": "Отменена",
"shipped": "Изпратена",
"delivered": "Доставена",
"return": "Връщане",
"partialReturn": "Частично връщане",
"partialDelivered": "Частично доставена"
},
"table": {
"orderNumber": "Номер на поръчка",
"date": "Дата",
"status": "Статус",
"items": "Артикули",
"total": "Общо",
"actions": "Действия",
"viewDetails": "Виж детайли"
},
"tooltips": {
"viewDetails": "Виж детайли",
"cancelOrder": "Отмени поръчката"
},
"noOrders": "Все още не сте направили поръчки.",
"details": {
"title": "Детайли за поръчка: {{orderId}}",
"deliveryAddress": "Адрес за доставка",
"invoiceAddress": "Адрес за фактура",
"orderDetails": "Детайли за поръчката",
"deliveryMethod": "Метод на доставка:",
"paymentMethod": "Метод на плащане:",
"notSpecified": "Не е посочено",
"orderedItems": "Поръчани артикули",
"item": "Артикул",
"quantity": "Количество",
"price": "Цена",
"total": "Общо",
"cancelOrder": "Отмени поръчката"
},
"cancelConfirm": {
"title": "Отмени поръчката",
"message": "Сигурни ли сте, че искате да отмените тази поръчка?",
"confirm": "Отмени",
"cancelling": "Отмяна..."
},
"processing": "Поръчката се обработва..."
};