update languages

This commit is contained in:
Edward Yang 2022-08-04 16:07:31 +08:00
parent 30a76e22a9
commit e36f3b6b7a
8 changed files with 111 additions and 1 deletions

View File

@ -0,0 +1,18 @@
<?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 [
'brands_index' => 'Index',
'brands_create' => 'Create',
'brands_edit' => 'Detail',
'brands_update' => 'Edit',
'brands_delete' => 'Delete'
];

View File

@ -0,0 +1,18 @@
<?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 [
'categories_index' => 'Index',
'categories_create' => 'Create',
'categories_edit' => 'Detail',
'categories_update' => 'Edit',
'categories_delete' => 'Delete'
];

View File

@ -0,0 +1,18 @@
<?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 [
'customer_groups_index' => 'Index',
'customer_groups_create' => 'Create',
'customer_groups_edit' => 'Detail',
'customer_groups_update' => 'Edit',
'customer_groups_delete' => 'Delete'
];

View File

@ -14,5 +14,6 @@ return [
'products_create' => 'Create',
'products_edit' => 'Detail',
'products_update' => 'Edit',
'products_delete' => 'Delete'
'products_delete' => 'Delete',
'products_trashed' => 'Trashed',
];

View File

@ -0,0 +1,18 @@
<?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 [
'brands_index' => '品牌列表',
'brands_create' => '创建品牌',
'brands_edit' => '品牌详情',
'brands_update' => '更新品牌',
'brands_delete' => '删除品牌'
];

View File

@ -0,0 +1,18 @@
<?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 [
'categories_index' => '分类列表',
'categories_create' => '创建分类',
'categories_edit' => '分类详情',
'categories_update' => '更新分类',
'categories_delete' => '删除分类',
];

View File

@ -0,0 +1,18 @@
<?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 [
'customer_groups_index' => '客户组列表',
'customer_groups_create' => '创建客户组',
'customer_groups_edit' => '客户组详情',
'customer_groups_update' => '更新客户组',
'customer_groups_delete' => '删除客户组',
];

View File

@ -15,4 +15,5 @@ return [
'products_edit' => '产品详情',
'products_update' => '更新产品',
'products_delete' => '删除产品',
'products_trashed' => '回收站',
];