2015-04-15 15:34:03 +00:00
|
|
|
<?php
|
2018-03-05 19:44:56 +00:00
|
|
|
/**
|
|
|
|
* Locales information
|
|
|
|
*
|
2020-08-05 16:36:24 +00:00
|
|
|
* @package WooCommerce\i18n
|
2018-08-24 06:01:13 +00:00
|
|
|
* @version 3.5.0
|
2018-03-05 19:44:56 +00:00
|
|
|
*/
|
|
|
|
|
2018-03-05 20:10:12 +00:00
|
|
|
defined( 'ABSPATH' ) || exit;
|
2017-05-23 14:40:19 +00:00
|
|
|
|
2015-04-15 15:34:03 +00:00
|
|
|
return array(
|
2020-07-31 22:38:19 +00:00
|
|
|
'AT' => array(
|
|
|
|
'currency_code' => 'EUR',
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
'num_decimals' => 2,
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
'dimension_unit' => 'cm',
|
|
|
|
),
|
2015-07-04 21:35:23 +00:00
|
|
|
'AU' => array(
|
|
|
|
'currency_code' => 'AUD',
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
'num_decimals' => 2,
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
'dimension_unit' => 'cm',
|
|
|
|
),
|
2020-07-17 11:04:20 +00:00
|
|
|
'BA' => array(
|
|
|
|
'currency_code' => 'BAM',
|
2020-07-17 11:06:40 +00:00
|
|
|
'currency_pos' => 'right_space',
|
2020-07-17 11:04:20 +00:00
|
|
|
'thousand_sep' => '.',
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
'num_decimals' => 2,
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
'dimension_unit' => 'cm',
|
|
|
|
),
|
2015-08-18 22:40:24 +00:00
|
|
|
'BD' => array(
|
|
|
|
'currency_code' => 'BDT',
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
'num_decimals' => 2,
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
'dimension_unit' => 'in',
|
|
|
|
),
|
2015-07-04 21:35:23 +00:00
|
|
|
'BE' => array(
|
|
|
|
'currency_code' => 'EUR',
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
'thousand_sep' => ' ',
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
'num_decimals' => 2,
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
'dimension_unit' => 'cm',
|
|
|
|
),
|
2015-06-18 13:53:40 +00:00
|
|
|
'BR' => array(
|
|
|
|
'currency_code' => 'BRL',
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
'num_decimals' => 2,
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
'dimension_unit' => 'cm',
|
|
|
|
),
|
2015-07-04 21:35:23 +00:00
|
|
|
'CA' => array(
|
|
|
|
'currency_code' => 'CAD',
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
'num_decimals' => 2,
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
'dimension_unit' => 'cm',
|
|
|
|
),
|
2020-07-31 22:23:49 +00:00
|
|
|
'CH' => array(
|
|
|
|
'currency_code' => 'CHF',
|
|
|
|
'currency_pos' => 'left_space',
|
|
|
|
'thousand_sep' => "'",
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
'num_decimals' => 2,
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
'dimension_unit' => 'cm',
|
|
|
|
),
|
2015-07-04 21:35:23 +00:00
|
|
|
'DE' => array(
|
|
|
|
'currency_code' => 'EUR',
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
'num_decimals' => 2,
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
'dimension_unit' => 'cm',
|
|
|
|
),
|
2019-01-18 10:22:07 +00:00
|
|
|
'DK' => array(
|
|
|
|
'currency_code' => 'DKK',
|
|
|
|
'currency_pos' => 'left_space',
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
'num_decimals' => 2,
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
'dimension_unit' => 'cm',
|
|
|
|
),
|
2015-07-04 21:35:23 +00:00
|
|
|
'ES' => array(
|
|
|
|
'currency_code' => 'EUR',
|
|
|
|
'currency_pos' => 'right',
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
'num_decimals' => 2,
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
'dimension_unit' => 'cm',
|
|
|
|
),
|
2017-01-25 09:59:32 +00:00
|
|
|
'FI' => array(
|
|
|
|
'currency_code' => 'EUR',
|
|
|
|
'currency_pos' => 'right_space',
|
|
|
|
'thousand_sep' => ' ',
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
'num_decimals' => 2,
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
'dimension_unit' => 'cm',
|
|
|
|
),
|
2015-04-30 12:39:20 +00:00
|
|
|
'FR' => array(
|
|
|
|
'currency_code' => 'EUR',
|
|
|
|
'currency_pos' => 'right',
|
|
|
|
'thousand_sep' => ' ',
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
'num_decimals' => 2,
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
'dimension_unit' => 'cm',
|
|
|
|
),
|
2015-04-15 15:34:03 +00:00
|
|
|
'GB' => array(
|
2015-04-17 13:56:34 +00:00
|
|
|
'currency_code' => 'GBP',
|
2018-03-05 19:44:56 +00:00
|
|
|
'currency_pos' => 'left',
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
'num_decimals' => 2,
|
|
|
|
'weight_unit' => 'kg',
|
2015-07-04 21:35:23 +00:00
|
|
|
'dimension_unit' => 'cm',
|
|
|
|
),
|
2015-08-18 18:43:21 +00:00
|
|
|
'HU' => array(
|
|
|
|
'currency_code' => 'HUF',
|
|
|
|
'currency_pos' => 'right_space',
|
|
|
|
'thousand_sep' => ' ',
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
'num_decimals' => 0,
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
'dimension_unit' => 'cm',
|
|
|
|
),
|
2015-07-04 21:35:23 +00:00
|
|
|
'IT' => array(
|
|
|
|
'currency_code' => 'EUR',
|
|
|
|
'currency_pos' => 'right',
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
'decimal_sep' => ',',
|
2015-04-17 13:56:34 +00:00
|
|
|
'num_decimals' => 2,
|
|
|
|
'weight_unit' => 'kg',
|
2015-04-22 14:30:50 +00:00
|
|
|
'dimension_unit' => 'cm',
|
2015-04-17 13:56:34 +00:00
|
|
|
),
|
2020-09-20 19:10:27 +00:00
|
|
|
'JM' => array(
|
|
|
|
'currency_code' => 'JMD',
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
'num_decimals' => 2,
|
2020-09-20 22:57:46 +00:00
|
|
|
'weight_unit' => 'lbs',
|
2020-09-20 19:10:27 +00:00
|
|
|
'dimension_unit' => 'in',
|
|
|
|
),
|
2015-08-18 09:18:28 +00:00
|
|
|
'JP' => array(
|
|
|
|
'currency_code' => 'JPY',
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
'num_decimals' => 0,
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
'dimension_unit' => 'cm',
|
|
|
|
),
|
2020-10-15 18:21:44 +00:00
|
|
|
'KE' => array(
|
2020-07-29 14:31:36 +00:00
|
|
|
'currency_code' => 'KES',
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
'num_decimals' => 0,
|
2020-08-28 13:10:00 +00:00
|
|
|
'weight_unit' => 'kg',
|
2020-08-24 09:11:40 +00:00
|
|
|
'dimension_unit' => 'cm',
|
2020-08-28 13:10:00 +00:00
|
|
|
),
|
2020-08-27 01:40:49 +00:00
|
|
|
'KR' => array(
|
|
|
|
'currency_code' => 'KRW',
|
|
|
|
'currency_pos' => 'right',
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
'num_decimals' => 0,
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
'dimension_unit' => 'cm',
|
|
|
|
),
|
2020-07-31 22:23:49 +00:00
|
|
|
'LI' => array(
|
|
|
|
'currency_code' => 'CHF',
|
|
|
|
'currency_pos' => 'left_space',
|
|
|
|
'thousand_sep' => "'",
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
'num_decimals' => 2,
|
2020-08-28 13:48:28 +00:00
|
|
|
'weight_unit' => 'kg',
|
2020-07-29 14:31:36 +00:00
|
|
|
'dimension_unit' => 'cm',
|
|
|
|
),
|
2017-12-30 12:47:53 +00:00
|
|
|
'MD' => array(
|
|
|
|
'currency_code' => 'MDL',
|
|
|
|
'currency_pos' => 'right_space',
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
'num_decimals' => 2,
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
'dimension_unit' => 'cm',
|
|
|
|
),
|
2015-04-17 13:56:34 +00:00
|
|
|
'NL' => array(
|
|
|
|
'currency_code' => 'EUR',
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
'num_decimals' => 2,
|
|
|
|
'weight_unit' => 'kg',
|
2015-04-27 15:33:52 +00:00
|
|
|
'dimension_unit' => 'cm',
|
2015-04-15 15:34:03 +00:00
|
|
|
),
|
2015-07-04 21:35:23 +00:00
|
|
|
'NO' => array(
|
|
|
|
'currency_code' => 'Kr',
|
|
|
|
'currency_pos' => 'left_space',
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
'num_decimals' => 2,
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
'dimension_unit' => 'cm',
|
|
|
|
),
|
2015-08-18 15:02:54 +00:00
|
|
|
'NP' => array(
|
|
|
|
'currency_code' => 'NPR',
|
|
|
|
'currency_pos' => 'left_space',
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
'num_decimals' => 2,
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
'dimension_unit' => 'cm',
|
|
|
|
),
|
2015-07-04 21:35:23 +00:00
|
|
|
'PL' => array(
|
|
|
|
'currency_code' => 'PLN',
|
2017-04-04 10:36:10 +00:00
|
|
|
'currency_pos' => 'right_space',
|
|
|
|
'thousand_sep' => ' ',
|
|
|
|
'decimal_sep' => ',',
|
2015-07-04 21:35:23 +00:00
|
|
|
'num_decimals' => 2,
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
'dimension_unit' => 'cm',
|
|
|
|
),
|
2018-08-20 12:57:06 +00:00
|
|
|
'PY' => array(
|
2018-08-22 12:30:26 +00:00
|
|
|
'currency_code' => 'PYG',
|
2018-08-20 12:57:06 +00:00
|
|
|
'currency_pos' => 'left',
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
'num_decimals' => 2,
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
'dimension_unit' => 'cm',
|
|
|
|
),
|
2017-01-17 17:51:14 +00:00
|
|
|
'RO' => array(
|
|
|
|
'currency_code' => 'RON',
|
|
|
|
'currency_pos' => 'right_space',
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
'num_decimals' => 2,
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
'dimension_unit' => 'cm',
|
|
|
|
),
|
2019-04-21 18:13:48 +00:00
|
|
|
'RS' => array(
|
|
|
|
'currency_code' => 'RSD',
|
|
|
|
'currency_pos' => 'right_space',
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
'num_decimals' => 2,
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
'dimension_unit' => 'cm',
|
|
|
|
'tax_rates' => array(),
|
|
|
|
),
|
2015-07-04 21:35:23 +00:00
|
|
|
'TH' => array(
|
|
|
|
'currency_code' => 'THB',
|
2015-04-17 13:56:34 +00:00
|
|
|
'currency_pos' => 'left',
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
'num_decimals' => 2,
|
2015-07-04 21:35:23 +00:00
|
|
|
'weight_unit' => 'kg',
|
|
|
|
'dimension_unit' => 'cm',
|
2015-07-31 19:50:10 +00:00
|
|
|
),
|
2015-07-31 19:54:42 +00:00
|
|
|
'TR' => array(
|
2015-07-31 19:50:10 +00:00
|
|
|
'currency_code' => 'TRY',
|
|
|
|
'currency_pos' => 'left_space',
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
'num_decimals' => 2,
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
'dimension_unit' => 'cm',
|
2015-07-04 21:35:23 +00:00
|
|
|
),
|
2020-07-29 14:32:50 +00:00
|
|
|
'TZ' => array(
|
|
|
|
'currency_code' => 'TZS',
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
'num_decimals' => 0,
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
'dimension_unit' => 'cm',
|
|
|
|
),
|
2020-07-29 14:30:45 +00:00
|
|
|
'UG' => array(
|
|
|
|
'currency_code' => 'UGX',
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
'num_decimals' => 0,
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
'dimension_unit' => 'cm',
|
|
|
|
),
|
2015-07-04 21:35:23 +00:00
|
|
|
'US' => array(
|
|
|
|
'currency_code' => 'USD',
|
2018-03-05 19:44:56 +00:00
|
|
|
'currency_pos' => 'left',
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
'num_decimals' => 2,
|
|
|
|
'weight_unit' => 'oz',
|
2015-07-04 21:35:23 +00:00
|
|
|
'dimension_unit' => 'in',
|
|
|
|
),
|
|
|
|
'ZA' => array(
|
|
|
|
'currency_code' => 'ZAR',
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
'num_decimals' => 2,
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
'dimension_unit' => 'cm',
|
2016-08-27 01:46:45 +00:00
|
|
|
),
|
2015-06-18 13:53:40 +00:00
|
|
|
);
|