<?php
return [
'USD' => ['decimals' => 2, 'decimal_sep' => '.', 'thousand_sep' => ',', 'position' => 'before'],
'EUR' => ['decimals' => 2, 'decimal_sep' => ',', 'thousand_sep' => '.', 'position' => 'after'],
'GBP' => ['decimals' => 2, 'decimal_sep' => '.', 'thousand_sep' => ',', 'position' => 'before'],
'JPY' => ['decimals' => 0, 'decimal_sep' => '', 'thousand_sep' => ',', 'position' => 'before'],
'CNY' => ['decimals' => 2, 'decimal_sep' => '.', 'thousand_sep' => ',', 'position' => 'before'],
'CHF' => ['decimals' => 2, 'decimal_sep' => '.', 'thousand_sep' => '\'', 'position' => 'before'],
'BTC' => ['decimals' => 8, 'decimal_sep' => '.', 'thousand_sep' => ',', 'position' => 'before'],
'ETH' => ['decimals' => 8, 'decimal_sep' => '.', 'thousand_sep' => ',', 'position' => 'before'],
'TRY' => ['decimals' => 2, 'decimal_sep' => ',', 'thousand_sep' => '.', 'position' => 'after'],
'SEK' => ['decimals' => 2, 'decimal_sep' => ',', 'thousand_sep' => ' ', 'position' => 'after'],
'NOK' => ['decimals' => 2, 'decimal_sep' => ',', 'thousand_sep' => ' ', 'position' => 'after'],
'DKK' => ['decimals' => 2, 'decimal_sep' => ',', 'thousand_sep' => '.', 'position' => 'after'],
];
?>
|