27 lines
607 B
PHP
27 lines
607 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',
|
|
|
|
'unpaid' => 'Unpaid',
|
|
'paid' => 'Paid',
|
|
'shipped' => 'Shipped',
|
|
'completed' => 'Completed',
|
|
|
|
'orders_create' => 'Create',
|
|
'orders_show' => 'Detail',
|
|
'orders_update' => 'Update',
|
|
'orders_delete' => 'Delete',
|
|
'orders_update_status' => 'Update Status',
|
|
];
|