51 lines
2.5 KiB
PHP
51 lines
2.5 KiB
PHP
<?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' => 'В ожидании платежа',
|
||
'order-status-processing' => 'Прибыл',
|
||
'order-status-success' => 'Завершено',
|
||
'order-status-completed' => 'Доставлено',
|
||
'order-status-purchase' => 'Принято',
|
||
'order-status-shipping' => 'Отправлено '
|
||
],
|
||
'cart'=>[
|
||
'item'=>[
|
||
'success' => 'Успешно добавлено в корзину',
|
||
'success-remove' => 'Успешно удалено из корзины',
|
||
'success-remove-all' => 'Успешно удалены все товары из корзины'
|
||
],
|
||
'quantity' =>[
|
||
'illegal'=>'Количество недоступно',
|
||
'success' => 'Количество обновлено'
|
||
]
|
||
],
|
||
'wishlist'=>[
|
||
'success-remove' => 'Успешно удалено из списка желаний',
|
||
'success-add' => 'Успешно добавлено в список желаний',
|
||
|
||
],
|
||
'checkout' => [
|
||
|
||
'cannot-apply-coupon' => 'Невозможно применить купон',
|
||
'invalid-coupon' => 'Код купона недействителен.',
|
||
'success-coupon' => 'Код купона успешно применен.',
|
||
'coupon-apply-issue' => 'Код купона не может быть применен.',
|
||
'coupon-already-applied' => 'Код купона уже применен.',
|
||
]
|
||
]; |