21 lines
504 B
PHP
21 lines
504 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' => 'Index',
|
|
'products_create' => 'Create',
|
|
'products_show' => 'Detail',
|
|
'products_update' => 'Edit',
|
|
'products_delete' => 'Delete',
|
|
'products_trashed' => 'Trashed',
|
|
'products_restore' => 'restore',
|
|
];
|