21 lines
547 B
PHP
21 lines
547 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 [
|
|
'products_index' => '产品列表',
|
|
'products_create' => '创建产品',
|
|
'products_show' => '产品详情',
|
|
'products_update' => '更新产品',
|
|
'products_delete' => '删除产品',
|
|
'products_trashed' => '回收站',
|
|
'products_restore' => '恢复回收站',
|
|
];
|