69 lines
2.1 KiB
PHP
69 lines
2.1 KiB
PHP
<?php
|
|
/**
|
|
* common.php
|
|
*
|
|
* @copyright 2022 opencart.cn - All Rights Reserved
|
|
* @link http://www.guangdawangluo.com
|
|
* @author Edward Yang <yangjin@opencart.cn>
|
|
* @created 2022-08-02 19:03:19
|
|
* @modified 2022-08-02 19:03:19
|
|
*/
|
|
|
|
return [
|
|
'admin_panel' => '后台管理',
|
|
'edit' => '编辑',
|
|
'status' => '状态',
|
|
'action' => '操作',
|
|
'install' => '安装',
|
|
'uninstall' => '卸载',
|
|
|
|
// header
|
|
'home' => '管理首页',
|
|
'order' => '订单管理',
|
|
'rma' => '售后服务管理',
|
|
'rma_reason' => '退换货原因管理',
|
|
'product' => '商品管理',
|
|
'brand' => '品牌管理',
|
|
'category' => '分类管理',
|
|
'customer_group' => '客户组管理',
|
|
'customer' => '客户管理',
|
|
'content' => '内容管理',
|
|
'setting' => '系统设置',
|
|
'plugin' => '插件管理',
|
|
'admin_user' => '后台用户',
|
|
'admin_role' => '用户角色',
|
|
'region' => '区域分组',
|
|
'tax_rate' => '税率管理',
|
|
'tax_class' => '税类管理',
|
|
'currency' => '货币管理',
|
|
'language' => '语言管理',
|
|
'zone' => '省份管理',
|
|
'country' => '国家管理',
|
|
'file_manager' => '文件管理器',
|
|
'access_frontend' => '访问前台',
|
|
|
|
// sidebar
|
|
'settings_index' => '系统设置',
|
|
'admin_users_index' => '后台用户',
|
|
'plugins_index' => '插件列表',
|
|
'regions_index' => '区域分组',
|
|
'tax_rates_index' => '税率设置',
|
|
'tax_classes_index' => '税费类别',
|
|
'currencies_index' => '货币管理',
|
|
'languages_index' => '语言管理',
|
|
'design_index' => '首页装修',
|
|
'pages_index' => '信息页面',
|
|
'design_footer_index' => '页尾装修',
|
|
'design_menu_index' => '导航配置',
|
|
'categories_index' => '商品分类',
|
|
'products_index' => '商品管理',
|
|
'products_trashed' => '回收站',
|
|
'brands_index' => '商品品牌',
|
|
'orders_index' => '订单列表',
|
|
'rmas_index' => '售后管理',
|
|
'customers_index' => '客户列表',
|
|
'customer_groups_index' => '客户组',
|
|
'countries_index' => '国家管理',
|
|
'zones_index' => '省份管理',
|
|
];
|