47 lines
1.2 KiB
PHP
47 lines
1.2 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 [
|
|
'edit' => '编辑',
|
|
|
|
// header
|
|
'home' => 'Home',
|
|
'order' => 'Orders',
|
|
'product' => 'Products',
|
|
'brand' => 'Brands',
|
|
'category' => 'Categories',
|
|
'customer_group' => 'Customer Groups',
|
|
'customer' => 'Customers',
|
|
'setting' => 'Settings',
|
|
'plugin' => 'Plugin',
|
|
'admin_user' => 'Admin User',
|
|
'region' => 'Region',
|
|
'tax_rate' => 'Tax Rate',
|
|
'tax_class' => 'Tax Class',
|
|
'currency' => 'Currency',
|
|
'access_frontend' => 'Frontend',
|
|
|
|
// sidebar
|
|
'settings_index' => 'Setting',
|
|
'admin_users_index' => 'Admin Users',
|
|
'plugins_index' => 'Plugins',
|
|
'regions_index' => 'Regions',
|
|
'tax_rates_index' => 'Tax Rates',
|
|
'tax_classes_index' => 'Tax Classes',
|
|
'currencies_index' => 'Currencies',
|
|
'design_index' => 'Page Builder',
|
|
'categories_index' => 'Categories',
|
|
'brands_index' => 'Brands',
|
|
'orders_index' => 'Orders',
|
|
'customers_index' => 'Customers',
|
|
'customer_groups_index' => 'Customer Groups',
|
|
];
|