2015-04-15 15:34:03 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return array(
|
|
|
|
'GB' => array(
|
2015-04-17 13:56:34 +00:00
|
|
|
'currency_code' => 'GBP',
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
'num_decimals' => 2,
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
'dimension_unit' => 'cm'
|
|
|
|
),
|
|
|
|
'NL' => array(
|
|
|
|
'currency_code' => 'EUR',
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
'num_decimals' => 2,
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
'dimension_unit' => 'cm'
|
2015-04-15 15:34:03 +00:00
|
|
|
),
|
|
|
|
'US' => array(
|
2015-04-17 13:56:34 +00:00
|
|
|
'currency_code' => 'USD',
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
'num_decimals' => 2,
|
|
|
|
'weight_unit' => 'lbs',
|
|
|
|
'dimension_unit' => 'in'
|
2015-04-15 15:34:03 +00:00
|
|
|
)
|
|
|
|
);
|