woocommerce/i18n/locale-info.php

31 lines
662 B
PHP
Raw Normal View History

<?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'
),
'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'
)
);