24 lines
635 B
PHP
24 lines
635 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' => 'Nom',
|
|
'code' => 'codage',
|
|
'icon' => 'icône',
|
|
'symbol_left' => 'signe gauche',
|
|
'symbol_right' => 'bon signe',
|
|
'value' => 'valeur du taux de change',
|
|
'decimal_place' => 'décimales',
|
|
'latest_value' => 'dernière valeur du taux de change',
|
|
];
|