25 lines
623 B
PHP
25 lines
623 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',
|
|
|
|
'batch_delete' => 'Batch Delete',
|
|
'batch_active' => 'Batch Active',
|
|
'batch_inactive' => 'Batch Inactive',
|
|
];
|