24 lines
574 B
PHP
24 lines
574 B
PHP
<?php
|
|
/**
|
|
* currency.php
|
|
*
|
|
* @copyright 2022 beikeshop.com - All Rights Reserved
|
|
* @link https://beikeshop.com
|
|
* @author TL <mengwb@guangda.work>
|
|
* @created 2022-08-29 20:28:59
|
|
* @modified 2022-08-29 20:28:59
|
|
*/
|
|
|
|
return [
|
|
'decimal_point' => '.',
|
|
'thousand_point' => ',',
|
|
'name' => '이름',
|
|
'code' => '코딩',
|
|
'icon' => '아이콘',
|
|
'symbol_left' => '왼쪽 기호',
|
|
'symbol_right' => '오른쪽 기호',
|
|
'value' => '환율값',
|
|
'decimal_place' => '소수 자리수',
|
|
'latest_value' => '최신 환율값',
|
|
];
|