sarga/packages/Sarga/API/Resources/lang/ru/app.php

52 lines
2.5 KiB
PHP
Raw Normal View History

2022-04-23 12:30:54 +00:00
<?php
return [
'orders' => [
'title' => 'Orders',
'view-title' => 'Order #:order_id',
'cancel-btn-title' => 'Cancel',
'shipment-btn-title' => 'Ship',
'invoice-btn-title' => 'Invoice',
'info' => 'Information',
'invoices' => 'Invoices',
'shipments' => 'Shipments',
'order-and-account' => 'Order and Account',
'order-info' => 'Order Information',
'order-date' => 'Order Date',
'order-status' => 'Order Status',
'order-status-canceled' => 'Отменено',
'order-status-closed' => 'Закрыто',
'order-status-fraud' => 'Мошенничество',
'order-status-pending' => 'В ожидании',
'order-status-pending-payment' => 'В ожидании платежа',
2022-11-04 10:50:25 +00:00
'order-status-processing' => 'Прибыл',
2022-04-23 12:30:54 +00:00
'order-status-success' => 'Завершено',
2022-11-04 10:30:39 +00:00
'order-status-completed' => 'Доставлено',
2022-11-04 10:50:25 +00:00
'order-status-purchase' => 'Принято',
'order-status-shipping' => 'Отправлено '
2022-04-23 12:30:54 +00:00
],
2022-04-23 12:55:18 +00:00
'cart'=>[
'item'=>[
'success' => 'Успешно добавлено в корзину',
'success-remove' => 'Успешно удалено из корзины',
'success-remove-all' => 'Успешно удалены все товары из корзины'
],
'quantity' =>[
'illegal'=>'Количество недоступно',
'success' => 'Количество обновлено'
]
],
'wishlist'=>[
'success-remove' => 'Успешно удалено из списка желаний',
'success-add' => 'Успешно добавлено в список желаний',
2023-02-16 11:45:21 +00:00
],
'checkout' => [
'cannot-apply-coupon' => 'Невозможно применить купон',
'invalid-coupon' => 'Код купона недействителен.',
'success-coupon' => 'Код купона успешно применен.',
'coupon-apply-issue' => 'Код купона не может быть применен.',
'coupon-already-applied' => 'Код купона уже применен.',
2023-02-17 06:10:38 +00:00
'coupon-remove' => 'Купон удален.'
2022-04-23 12:55:18 +00:00
]
2022-04-23 12:30:54 +00:00
];