multiple language
This commit is contained in:
parent
53356d0f24
commit
25ec233e16
|
|
@ -11,5 +11,9 @@
|
||||||
return [
|
return [
|
||||||
'decimal_point' => '.',
|
'decimal_point' => '.',
|
||||||
'thousand_point' => ',',
|
'thousand_point' => ',',
|
||||||
|
'currencies_index' => 'Index',
|
||||||
|
'currencies_create' => 'Create',
|
||||||
|
'currencies_edit' => 'Detail',
|
||||||
|
'currencies_update' => 'Edit',
|
||||||
|
'currencies_delete' => 'Delete'
|
||||||
];
|
];
|
||||||
|
|
|
||||||
|
|
@ -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 [
|
||||||
|
'customers_index' => 'Index',
|
||||||
|
'customers_create' => 'Create',
|
||||||
|
'customers_edit' => 'Detail',
|
||||||
|
'customers_update' => 'Edit',
|
||||||
|
'customers_delete' => 'Delete'
|
||||||
|
];
|
||||||
|
|
@ -12,7 +12,7 @@
|
||||||
return [
|
return [
|
||||||
'orders_index' => 'Index',
|
'orders_index' => 'Index',
|
||||||
'orders_create' => 'Create',
|
'orders_create' => 'Create',
|
||||||
'orders_show' => 'Detail',
|
'orders_edit' => 'Detail',
|
||||||
'orders_edit' => 'Edit',
|
'orders_update' => 'Update',
|
||||||
'orders_delete' => 'Delete'
|
'orders_delete' => 'Delete',
|
||||||
];
|
];
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,20 @@
|
||||||
|
<?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 [
|
||||||
|
'plugins_index' => 'Index',
|
||||||
|
'plugins_import' => 'Import',
|
||||||
|
'plugins_edit' => 'Detail',
|
||||||
|
'plugins_update' => 'Update',
|
||||||
|
'plugins_update_status' => 'Delete',
|
||||||
|
'plugins_install' => 'Install',
|
||||||
|
'plugins_uninstall' => 'Uninstall',
|
||||||
|
];
|
||||||
|
|
@ -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 [
|
||||||
|
'products_index' => 'Index',
|
||||||
|
'products_create' => 'Create',
|
||||||
|
'products_edit' => 'Detail',
|
||||||
|
'products_update' => 'Edit',
|
||||||
|
'products_delete' => 'Delete'
|
||||||
|
];
|
||||||
|
|
@ -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 [
|
||||||
|
'regions_index' => 'Index',
|
||||||
|
'regions_create' => 'Create',
|
||||||
|
'regions_edit' => 'Detail',
|
||||||
|
'regions_update' => 'Edit',
|
||||||
|
'regions_delete' => 'Delete'
|
||||||
|
];
|
||||||
|
|
@ -0,0 +1,15 @@
|
||||||
|
<?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 [
|
||||||
|
'settings_index' => 'Setting',
|
||||||
|
'design_index' => 'Design Builder',
|
||||||
|
];
|
||||||
|
|
@ -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 [
|
||||||
|
'tax_classes_index' => 'Index',
|
||||||
|
'tax_classes_create' => 'Create',
|
||||||
|
'tax_classes_edit' => 'Detail',
|
||||||
|
'tax_classes_update' => 'Edit',
|
||||||
|
'tax_classes_delete' => 'Delete'
|
||||||
|
];
|
||||||
|
|
@ -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 [
|
||||||
|
'tax_rates_index' => 'Index',
|
||||||
|
'tax_rates_create' => 'Create',
|
||||||
|
'tax_rates_edit' => 'Detail',
|
||||||
|
'tax_rates_update' => 'Edit',
|
||||||
|
'tax_rates_delete' => 'Delete'
|
||||||
|
];
|
||||||
Loading…
Reference in New Issue