23 lines
569 B
PHP
23 lines
569 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' => '订单列表',
|
|
|
|
'orders_index' => '订单列表',
|
|
'orders_create' => '创建订单',
|
|
'orders_show' => '订单详情',
|
|
'orders_export' => '导出订单',
|
|
'orders_update' => '更新订单',
|
|
'orders_delete' => '删除订单',
|
|
'orders_update_status' => '更新状态',
|
|
];
|