27 lines
788 B
PHP
27 lines
788 B
PHP
<?php
|
|
/**
|
|
* order.php
|
|
*
|
|
* @copyright 2022 beikeshop.com - All Rights Reserved
|
|
* @link https://beikeshop.com
|
|
* @author Edward Yang <yangjin@guangda.work>
|
|
* @created 2022-08-02 14:22:41
|
|
* @modified 2022-08-02 14:22:41
|
|
*/
|
|
|
|
return [
|
|
'list' => 'Order List',
|
|
|
|
'order_quantity' => 'Order Quantity',
|
|
'order_amount' => 'Order Amount',
|
|
'orders_index' => 'Index',
|
|
'orders_create' => 'Create',
|
|
'orders_show' => 'Detail',
|
|
'orders_export' => 'Export',
|
|
'orders_update' => 'Update',
|
|
'orders_delete' => 'Delete',
|
|
'notify' => 'Whether to remind',
|
|
'orders_update_status' => 'Update Status',
|
|
'error_status' => 'Please select a status',
|
|
];
|