20 lines
488 B
PHP
20 lines
488 B
PHP
<?php
|
|
/**
|
|
* currency.php
|
|
*
|
|
* @copyright 2022 opencart.cn - All Rights Reserved
|
|
* @link http://www.guangdawangluo.com
|
|
* @author TL <mengwb@opencart.cn>
|
|
* @created 2022-07-28 17:21:38
|
|
* @modified 2022-07-28 17:21:38
|
|
*/
|
|
return [
|
|
'decimal_point' => '.',
|
|
'thousand_point' => ',',
|
|
'currencies_index' => 'Index',
|
|
'currencies_create' => 'Create',
|
|
'currencies_edit' => 'Detail',
|
|
'currencies_update' => 'Edit',
|
|
'currencies_delete' => 'Delete'
|
|
];
|