23 lines
531 B
PHP
23 lines
531 B
PHP
<?php
|
|
/**
|
|
* order.php
|
|
*
|
|
* @copyright 2022 opencart.cn - All Rights Reserved
|
|
* @link http://www.guangdawangluo.com
|
|
* @author Edward Yang <yangjin@opencart.cn>
|
|
* @created 2022-08-02 14:22:41
|
|
* @modified 2022-08-02 14:22:41
|
|
*/
|
|
|
|
return [
|
|
'list' => 'Order List',
|
|
|
|
'orders_index' => 'Index',
|
|
'orders_create' => 'Create',
|
|
'orders_show' => 'Detail',
|
|
'orders_export' => 'Export',
|
|
'orders_update' => 'Update',
|
|
'orders_delete' => 'Delete',
|
|
'orders_update_status' => 'Update Status',
|
|
];
|