24 lines
624 B
PHP
24 lines
624 B
PHP
<?php
|
|
/**
|
|
* currency.php
|
|
*
|
|
* @copyright 2022 tuikehome.com - All Rights Reserved
|
|
* @link https://www.tuikehome.com
|
|
* @author TL <lucianldg@tuikehome.com>
|
|
* @created 2022-08-29 20:28:59
|
|
* @modified 2022-08-29 20:28:59
|
|
*/
|
|
|
|
return [
|
|
'decimal_point' => '.',
|
|
'thousand_point' => ',',
|
|
'name' => 'Nama',
|
|
'code' => 'pengkodean',
|
|
'icon' => 'ikon',
|
|
'symbol_left' => 'simbol kiri',
|
|
'symbol_right' => 'simbol kanan',
|
|
'value' => 'nilai tukar',
|
|
'decimal_place' => 'tempat desimal',
|
|
'latest_value' => 'Nilai tukar terbaru',
|
|
];
|