23 lines
595 B
PHP
23 lines
595 B
PHP
<?php
|
|
/**
|
|
* currency.php
|
|
*
|
|
* @copyright 2022 beikeshop.com - All Rights Reserved
|
|
* @link https://beikeshop.com
|
|
* @author TL <mengwb@guangda.work>
|
|
* @created 2022-07-28 17:21:38
|
|
* @modified 2022-07-28 17:21:38
|
|
*/
|
|
return [
|
|
'decimal_point' => '.',
|
|
'thousand_point' => ',',
|
|
'name' => 'Name',
|
|
'code' => 'Code',
|
|
'icon' => 'Icon',
|
|
'symbol_left' => 'Symbol Left',
|
|
'symbol_right' => 'Symbol Right',
|
|
'value' => 'Value',
|
|
'decimal_place' => 'Decimal Place',
|
|
'latest_value' => 'Latest Value',
|
|
];
|