2015-04-15 15:34:03 +00:00
|
|
|
|
<?php
|
2018-03-05 19:44:56 +00:00
|
|
|
|
/**
|
|
|
|
|
* Locales information
|
|
|
|
|
*
|
2021-07-10 21:49:53 +00:00
|
|
|
|
* @package WooCommerce\i18n
|
2021-07-26 16:27:01 +00:00
|
|
|
|
* @version 5.7.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
|
|
|
|
|
2021-07-10 21:49:53 +00:00
|
|
|
|
$locales = include WC()->plugin_path() . '/i18n/currency-info.php';
|
2021-07-05 08:03:23 +00:00
|
|
|
|
|
2015-04-15 15:34:03 +00:00
|
|
|
|
return array(
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'AD' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'EUR',
|
|
|
|
|
'currency_pos' => 'right_space',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'ca_AD',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Euro',
|
|
|
|
|
'singular' => 'euro',
|
|
|
|
|
'plural' => 'euros',
|
|
|
|
|
'short_symbol' => '€',
|
|
|
|
|
'locales' => $locales['EUR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'AE' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'AED',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'rtl',
|
|
|
|
|
'default_locale' => 'ar_AE',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'United Arab Emirates dirham',
|
|
|
|
|
'singular' => 'UAE dirham',
|
|
|
|
|
'plural' => 'UAE dirhams',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['AED'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'AF' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'AFN',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'currency_pos' => 'left_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'rtl',
|
|
|
|
|
'default_locale' => 'fa_AF',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Afghan afghani',
|
|
|
|
|
'singular' => 'Afghan Afghani',
|
|
|
|
|
'plural' => 'Afghan Afghanis',
|
|
|
|
|
'short_symbol' => '؋',
|
|
|
|
|
'locales' => $locales['AFN'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'AG' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'XCD',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_AG',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'East Caribbean dollar',
|
|
|
|
|
'singular' => 'East Caribbean dollar',
|
|
|
|
|
'plural' => 'East Caribbean dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['XCD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'AI' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'XCD',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_AI',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'East Caribbean dollar',
|
|
|
|
|
'singular' => 'East Caribbean dollar',
|
|
|
|
|
'plural' => 'East Caribbean dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['XCD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'AL' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'ALL',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'sq_AL',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Albanian lek',
|
|
|
|
|
'singular' => 'Albanian lek',
|
|
|
|
|
'plural' => 'Albanian lekë',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['ALL'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'AM' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'AMD',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'currency_pos' => 'right_space',
|
|
|
|
|
'thousand_sep' => ' ',
|
|
|
|
|
'decimal_sep' => ',',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'hy_AM',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Armenian dram',
|
|
|
|
|
'singular' => 'Armenian dram',
|
|
|
|
|
'plural' => 'Armenian drams',
|
|
|
|
|
'short_symbol' => '֏',
|
|
|
|
|
'locales' => $locales['AMD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'AO' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'AOA',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'pt_AO',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Angolan kwanza',
|
|
|
|
|
'singular' => 'Angolan kwanza',
|
|
|
|
|
'plural' => 'Angolan kwanzas',
|
|
|
|
|
'short_symbol' => 'Kz',
|
|
|
|
|
'locales' => $locales['AOA'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'AR' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'ARS',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'currency_pos' => 'left_space',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'es_AR',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Argentine peso',
|
|
|
|
|
'singular' => 'Argentine peso',
|
|
|
|
|
'plural' => 'Argentine pesos',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['ARS'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'AS' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'USD',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'currency_pos' => 'left',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_AS',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'United States (US) dollar',
|
|
|
|
|
'singular' => 'US dollar',
|
|
|
|
|
'plural' => 'US dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['USD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'AT' => array(
|
2020-07-31 22:38:19 +00:00
|
|
|
|
'currency_code' => 'EUR',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_pos' => 'left_space',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'de_AT',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Euro',
|
|
|
|
|
'singular' => 'euro',
|
|
|
|
|
'plural' => 'euros',
|
|
|
|
|
'short_symbol' => '€',
|
|
|
|
|
'locales' => $locales['EUR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'AU' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'AUD',
|
2020-07-31 22:38:19 +00:00
|
|
|
|
'currency_pos' => 'left',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_AU',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Australian dollar',
|
|
|
|
|
'singular' => 'Australian dollar',
|
|
|
|
|
'plural' => 'Australian dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['AUD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'AW' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'AWG',
|
|
|
|
|
'currency_pos' => 'left_space',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'nl_AW',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Aruban florin',
|
|
|
|
|
'singular' => 'Aruban florin',
|
|
|
|
|
'plural' => 'Aruban florin',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['AWG'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'AX' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'EUR',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'sv_AX',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Euro',
|
|
|
|
|
'singular' => 'euro',
|
|
|
|
|
'plural' => 'euros',
|
|
|
|
|
'short_symbol' => '€',
|
|
|
|
|
'locales' => $locales['EUR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'AZ' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'AZN',
|
|
|
|
|
'currency_pos' => 'right_space',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'az_AZ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Azerbaijani manat',
|
|
|
|
|
'singular' => 'Azerbaijani manat',
|
|
|
|
|
'plural' => 'Azerbaijani manats',
|
|
|
|
|
'short_symbol' => '₼',
|
|
|
|
|
'locales' => $locales['AZN'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'BA' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'BAM',
|
|
|
|
|
'currency_pos' => 'right_space',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'bs_BA',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Bosnia and Herzegovina convertible mark',
|
|
|
|
|
'singular' => 'Bosnia-Herzegovina convertible mark',
|
|
|
|
|
'plural' => 'Bosnia-Herzegovina convertible marks',
|
|
|
|
|
'short_symbol' => 'KM',
|
|
|
|
|
'locales' => $locales['BAM'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'BB' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'BBD',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_BB',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Barbadian dollar',
|
|
|
|
|
'singular' => 'Barbadian dollar',
|
|
|
|
|
'plural' => 'Barbadian dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['BBD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'BD' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'BDT',
|
|
|
|
|
'currency_pos' => 'right',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'bn_BD',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Bangladeshi taka',
|
|
|
|
|
'singular' => 'Bangladeshi taka',
|
|
|
|
|
'plural' => 'Bangladeshi takas',
|
|
|
|
|
'short_symbol' => '৳',
|
|
|
|
|
'locales' => $locales['BDT'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'BE' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'EUR',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'currency_pos' => 'left_space',
|
|
|
|
|
'thousand_sep' => '.',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'nl_BE',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Euro',
|
|
|
|
|
'singular' => 'euro',
|
|
|
|
|
'plural' => 'euros',
|
|
|
|
|
'short_symbol' => '€',
|
|
|
|
|
'locales' => $locales['EUR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'BF' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'XOF',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'decimal_sep' => ',',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'fr_BF',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'West African CFA franc',
|
|
|
|
|
'singular' => 'West African CFA franc',
|
|
|
|
|
'plural' => 'West African CFA francs',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['XOF'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'BG' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'BGN',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'bg_BG',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Bulgarian lev',
|
|
|
|
|
'singular' => 'Bulgarian lev',
|
|
|
|
|
'plural' => 'Bulgarian leva',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['BGN'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'BH' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'BHD',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 3,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'rtl',
|
|
|
|
|
'default_locale' => 'ar_BH',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Bahraini dinar',
|
|
|
|
|
'singular' => 'Bahraini dinar',
|
|
|
|
|
'plural' => 'Bahraini dinars',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['BHD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'BI' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'BIF',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'currency_pos' => 'right',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'rn_BI',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Burundian franc',
|
|
|
|
|
'singular' => 'Burundian franc',
|
|
|
|
|
'plural' => 'Burundian francs',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['BIF'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'BJ' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'XOF',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'fr_BJ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'West African CFA franc',
|
|
|
|
|
'singular' => 'West African CFA franc',
|
|
|
|
|
'plural' => 'West African CFA francs',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['XOF'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'BL' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'EUR',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'fr_BL',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Euro',
|
|
|
|
|
'singular' => 'euro',
|
|
|
|
|
'plural' => 'euros',
|
|
|
|
|
'short_symbol' => '€',
|
|
|
|
|
'locales' => $locales['EUR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'BM' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'BMD',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_BM',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Bermudian dollar',
|
|
|
|
|
'singular' => 'Bermudan dollar',
|
|
|
|
|
'plural' => 'Bermudan dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['BMD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'BN' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'BND',
|
|
|
|
|
'currency_pos' => 'left_space',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'ms_BN',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Brunei dollar',
|
|
|
|
|
'singular' => 'Brunei dollar',
|
|
|
|
|
'plural' => 'Brunei dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['BND'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'BO' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'BOB',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'es_BO',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Bolivian boliviano',
|
|
|
|
|
'singular' => 'Bolivian boliviano',
|
|
|
|
|
'plural' => 'Bolivian bolivianos',
|
|
|
|
|
'short_symbol' => 'Bs',
|
|
|
|
|
'locales' => $locales['BOB'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'BQ' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'USD',
|
|
|
|
|
'currency_pos' => 'left_space',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'nl_BQ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'United States (US) dollar',
|
|
|
|
|
'singular' => 'US dollar',
|
|
|
|
|
'plural' => 'US dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['USD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'BR' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'BRL',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'currency_pos' => 'left_space',
|
|
|
|
|
'thousand_sep' => '.',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'pt_BR',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Brazilian real',
|
|
|
|
|
'singular' => 'Brazilian real',
|
|
|
|
|
'plural' => 'Brazilian reals',
|
|
|
|
|
'short_symbol' => 'R$',
|
|
|
|
|
'locales' => $locales['BRL'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'BS' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'BSD',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_BS',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Bahamian dollar',
|
|
|
|
|
'singular' => 'Bahamian dollar',
|
|
|
|
|
'plural' => 'Bahamian dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['BSD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'BT' => array(
|
|
|
|
|
'currency_code' => 'BTN',
|
|
|
|
|
'currency_pos' => 'left',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'dz_BT',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'name' => 'Bhutanese ngultrum',
|
|
|
|
|
'singular' => 'Bhutanese ngultrum',
|
|
|
|
|
'plural' => 'Bhutanese ngultrums',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['BTN'],
|
2021-07-05 08:03:23 +00:00
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'BW' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'BWP',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_BW',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Botswana pula',
|
|
|
|
|
'singular' => 'Botswanan pula',
|
|
|
|
|
'plural' => 'Botswanan pulas',
|
|
|
|
|
'short_symbol' => 'P',
|
|
|
|
|
'locales' => $locales['BWP'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'BY' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'BYN',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'be_BY',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Belarusian ruble',
|
|
|
|
|
'singular' => 'Belarusian ruble',
|
|
|
|
|
'plural' => 'Belarusian rubles',
|
|
|
|
|
'short_symbol' => 'р.',
|
|
|
|
|
'locales' => $locales['BYN'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'BZ' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'BZD',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_BZ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Belize dollar',
|
|
|
|
|
'singular' => 'Belize dollar',
|
|
|
|
|
'plural' => 'Belize dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['BZD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'CA' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'CAD',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_CA',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Canadian dollar',
|
|
|
|
|
'singular' => 'Canadian dollar',
|
|
|
|
|
'plural' => 'Canadian dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['CAD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'CC' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'AUD',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_CC',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Australian dollar',
|
|
|
|
|
'singular' => 'Australian dollar',
|
|
|
|
|
'plural' => 'Australian dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['AUD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'CD' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'CDF',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'currency_pos' => 'left_space',
|
|
|
|
|
'thousand_sep' => '.',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'sw_CD',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Congolese franc',
|
|
|
|
|
'singular' => 'Congolese franc',
|
|
|
|
|
'plural' => 'Congolese francs',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['CDF'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'CF' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'XAF',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'fr_CF',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Central African CFA franc',
|
|
|
|
|
'singular' => 'Central African CFA franc',
|
|
|
|
|
'plural' => 'Central African CFA francs',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['XAF'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'CG' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'XAF',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'fr_CG',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Central African CFA franc',
|
|
|
|
|
'singular' => 'Central African CFA franc',
|
|
|
|
|
'plural' => 'Central African CFA francs',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['XAF'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'CH' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'CHF',
|
|
|
|
|
'currency_pos' => 'left_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => '\'',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'de_CH',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Swiss franc',
|
|
|
|
|
'singular' => 'Swiss franc',
|
|
|
|
|
'plural' => 'Swiss francs',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['CHF'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'CI' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'XOF',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'fr_CI',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'West African CFA franc',
|
|
|
|
|
'singular' => 'West African CFA franc',
|
|
|
|
|
'plural' => 'West African CFA francs',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['XOF'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'CK' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'NZD',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_CK',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'New Zealand dollar',
|
|
|
|
|
'singular' => 'New Zealand dollar',
|
|
|
|
|
'plural' => 'New Zealand dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['NZD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'CL' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'CLP',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'es_CL',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Chilean peso',
|
|
|
|
|
'singular' => 'Chilean peso',
|
|
|
|
|
'plural' => 'Chilean pesos',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['CLP'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'CM' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'XAF',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'decimal_sep' => ',',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'fr_CM',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Central African CFA franc',
|
|
|
|
|
'singular' => 'Central African CFA franc',
|
|
|
|
|
'plural' => 'Central African CFA francs',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['XAF'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'CN' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'CNY',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'zh_CN',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Chinese yuan',
|
|
|
|
|
'singular' => 'Chinese yuan',
|
|
|
|
|
'plural' => 'Chinese yuan',
|
|
|
|
|
'short_symbol' => '¥',
|
|
|
|
|
'locales' => $locales['CNY'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'CO' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'COP',
|
|
|
|
|
'currency_pos' => 'left_space',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'es_CO',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Colombian peso',
|
|
|
|
|
'singular' => 'Colombian peso',
|
|
|
|
|
'plural' => 'Colombian pesos',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['COP'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'CR' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'CRC',
|
|
|
|
|
'currency_pos' => 'left',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'es_CR',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Costa Rican colón',
|
|
|
|
|
'singular' => 'Costa Rican colón',
|
|
|
|
|
'plural' => 'Costa Rican colóns',
|
|
|
|
|
'short_symbol' => '₡',
|
|
|
|
|
'locales' => $locales['CRC'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'CU' => array(
|
|
|
|
|
'currency_code' => 'CUC',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'es_CU',
|
|
|
|
|
'name' => 'Cuban convertible peso',
|
|
|
|
|
'singular' => 'Cuban convertible peso',
|
|
|
|
|
'plural' => 'Cuban convertible pesos',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'short_symbol' => '$',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'locales' => $locales['CUC'],
|
2021-07-05 08:03:23 +00:00
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'CV' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'CVE',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'pt_CV',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Cape Verdean escudo',
|
|
|
|
|
'singular' => 'Cape Verdean escudo',
|
|
|
|
|
'plural' => 'Cape Verdean escudos',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['CVE'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'CW' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'ANG',
|
|
|
|
|
'currency_pos' => 'left_space',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'nl_CW',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Netherlands Antillean guilder',
|
|
|
|
|
'singular' => 'Netherlands Antillean guilder',
|
|
|
|
|
'plural' => 'Netherlands Antillean guilders',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['ANG'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'CX' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'AUD',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_CX',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Australian dollar',
|
|
|
|
|
'singular' => 'Australian dollar',
|
|
|
|
|
'plural' => 'Australian dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['AUD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'CY' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'EUR',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'currency_pos' => 'right_space',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'el_CY',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Euro',
|
|
|
|
|
'singular' => 'euro',
|
|
|
|
|
'plural' => 'euros',
|
|
|
|
|
'short_symbol' => '€',
|
|
|
|
|
'locales' => $locales['EUR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'CZ' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'CZK',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'cs_CZ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Czech koruna',
|
|
|
|
|
'singular' => 'Czech koruna',
|
|
|
|
|
'plural' => 'Czech korunas',
|
|
|
|
|
'short_symbol' => 'Kč',
|
|
|
|
|
'locales' => $locales['CZK'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'DE' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'EUR',
|
|
|
|
|
'currency_pos' => 'right_space',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'de_DE',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Euro',
|
|
|
|
|
'singular' => 'euro',
|
|
|
|
|
'plural' => 'euros',
|
|
|
|
|
'short_symbol' => '€',
|
|
|
|
|
'locales' => $locales['EUR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'DG' => array(
|
|
|
|
|
'currency_code' => 'USD',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_DG',
|
|
|
|
|
'name' => 'United States (US) dollar',
|
|
|
|
|
'singular' => 'US dollar',
|
|
|
|
|
'plural' => 'US dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['USD'],
|
|
|
|
|
),
|
|
|
|
|
'DJ' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'DJF',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'rtl',
|
|
|
|
|
'default_locale' => 'ar_DJ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Djiboutian franc',
|
|
|
|
|
'singular' => 'Djiboutian franc',
|
|
|
|
|
'plural' => 'Djiboutian francs',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['DJF'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'DK' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'DKK',
|
|
|
|
|
'currency_pos' => 'right_space',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'da_DK',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Danish krone',
|
|
|
|
|
'singular' => 'Danish krone',
|
|
|
|
|
'plural' => 'Danish kroner',
|
|
|
|
|
'short_symbol' => 'kr',
|
|
|
|
|
'locales' => $locales['DKK'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'DM' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'XCD',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_DM',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'East Caribbean dollar',
|
|
|
|
|
'singular' => 'East Caribbean dollar',
|
|
|
|
|
'plural' => 'East Caribbean dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['XCD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'DO' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'DOP',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'es_DO',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Dominican peso',
|
|
|
|
|
'singular' => 'Dominican peso',
|
|
|
|
|
'plural' => 'Dominican pesos',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['DOP'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'DZ' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'DZD',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'currency_pos' => 'left_space',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'rtl',
|
|
|
|
|
'default_locale' => 'ar_DZ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Algerian dinar',
|
|
|
|
|
'singular' => 'Algerian dinar',
|
|
|
|
|
'plural' => 'Algerian dinars',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['DZD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'EA' => array(
|
|
|
|
|
'currency_code' => 'EUR',
|
|
|
|
|
'currency_pos' => 'right_space',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'es_EA',
|
|
|
|
|
'name' => 'Euro',
|
|
|
|
|
'singular' => 'euro',
|
|
|
|
|
'plural' => 'euros',
|
|
|
|
|
'short_symbol' => '€',
|
|
|
|
|
'locales' => $locales['EUR'],
|
|
|
|
|
),
|
|
|
|
|
'EC' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'USD',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'es_EC',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'United States (US) dollar',
|
|
|
|
|
'singular' => 'US dollar',
|
|
|
|
|
'plural' => 'US dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['USD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'EE' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'EUR',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'currency_pos' => 'right_space',
|
|
|
|
|
'thousand_sep' => ' ',
|
|
|
|
|
'decimal_sep' => ',',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'et_EE',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Euro',
|
|
|
|
|
'singular' => 'euro',
|
|
|
|
|
'plural' => 'euros',
|
|
|
|
|
'short_symbol' => '€',
|
|
|
|
|
'locales' => $locales['EUR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'EG' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'EGP',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'rtl',
|
|
|
|
|
'default_locale' => 'ar_EG',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Egyptian pound',
|
|
|
|
|
'singular' => 'Egyptian pound',
|
|
|
|
|
'plural' => 'Egyptian pounds',
|
|
|
|
|
'short_symbol' => 'E£',
|
|
|
|
|
'locales' => $locales['EGP'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'EH' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'MAD',
|
|
|
|
|
'currency_pos' => 'left_space',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'rtl',
|
|
|
|
|
'default_locale' => 'ar_EH',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Moroccan dirham',
|
|
|
|
|
'singular' => 'Moroccan dirham',
|
|
|
|
|
'plural' => 'Moroccan dirhams',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['MAD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'ER' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'ERN',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'ti_ER',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Eritrean nakfa',
|
|
|
|
|
'singular' => 'Eritrean nakfa',
|
|
|
|
|
'plural' => 'Eritrean nakfas',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['ERN'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'ES' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'EUR',
|
|
|
|
|
'currency_pos' => 'right_space',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'es_ES',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Euro',
|
|
|
|
|
'singular' => 'euro',
|
|
|
|
|
'plural' => 'euros',
|
|
|
|
|
'short_symbol' => '€',
|
|
|
|
|
'locales' => $locales['EUR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'ET' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'ETB',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'am_ET',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Ethiopian birr',
|
|
|
|
|
'singular' => 'Ethiopian birr',
|
|
|
|
|
'plural' => 'Ethiopian birrs',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['ETB'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'FI' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'EUR',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'fi_FI',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Euro',
|
|
|
|
|
'singular' => 'euro',
|
|
|
|
|
'plural' => 'euros',
|
|
|
|
|
'short_symbol' => '€',
|
|
|
|
|
'locales' => $locales['EUR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'FJ' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'FJD',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_FJ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Fijian dollar',
|
|
|
|
|
'singular' => 'Fijian dollar',
|
|
|
|
|
'plural' => 'Fijian dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['FJD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'FK' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'FKP',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_FK',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Falkland Islands pound',
|
|
|
|
|
'singular' => 'Falkland Islands pound',
|
|
|
|
|
'plural' => 'Falkland Islands pounds',
|
|
|
|
|
'short_symbol' => '£',
|
|
|
|
|
'locales' => $locales['FKP'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'FM' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'USD',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_FM',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'United States (US) dollar',
|
|
|
|
|
'singular' => 'US dollar',
|
|
|
|
|
'plural' => 'US dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['USD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'FO' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'DKK',
|
|
|
|
|
'currency_pos' => 'right_space',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'fo_FO',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Danish krone',
|
|
|
|
|
'singular' => 'Danish krone',
|
|
|
|
|
'plural' => 'Danish kroner',
|
|
|
|
|
'short_symbol' => 'kr',
|
|
|
|
|
'locales' => $locales['DKK'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'FR' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'EUR',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'fr_FR',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Euro',
|
|
|
|
|
'singular' => 'euro',
|
|
|
|
|
'plural' => 'euros',
|
|
|
|
|
'short_symbol' => '€',
|
|
|
|
|
'locales' => $locales['EUR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'GA' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'XAF',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'decimal_sep' => ',',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'fr_GA',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Central African CFA franc',
|
|
|
|
|
'singular' => 'Central African CFA franc',
|
|
|
|
|
'plural' => 'Central African CFA francs',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['XAF'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'GB' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'GBP',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'oz',
|
|
|
|
|
'dimension_unit' => 'foot',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_GB',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Pound sterling',
|
|
|
|
|
'singular' => 'British pound',
|
|
|
|
|
'plural' => 'British pounds',
|
|
|
|
|
'short_symbol' => '£',
|
|
|
|
|
'locales' => $locales['GBP'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'GD' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'XCD',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_GD',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'East Caribbean dollar',
|
|
|
|
|
'singular' => 'East Caribbean dollar',
|
|
|
|
|
'plural' => 'East Caribbean dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['XCD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'GE' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'GEL',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'ka_GE',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Georgian lari',
|
|
|
|
|
'singular' => 'Georgian lari',
|
|
|
|
|
'plural' => 'Georgian laris',
|
|
|
|
|
'short_symbol' => '₾',
|
|
|
|
|
'locales' => $locales['GEL'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'GF' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'EUR',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'fr_GF',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Euro',
|
|
|
|
|
'singular' => 'euro',
|
|
|
|
|
'plural' => 'euros',
|
|
|
|
|
'short_symbol' => '€',
|
|
|
|
|
'locales' => $locales['EUR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'GG' => array(
|
|
|
|
|
'currency_code' => 'GBP',
|
2021-07-13 21:52:53 +00:00
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 21:52:53 +00:00
|
|
|
|
'default_locale' => 'en_GG',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'name' => 'Pound sterling',
|
|
|
|
|
'singular' => 'British pound',
|
|
|
|
|
'plural' => 'British pounds',
|
|
|
|
|
'short_symbol' => '£',
|
|
|
|
|
'locales' => $locales['GBP'],
|
2021-07-05 08:03:23 +00:00
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'GH' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'GHS',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'ak_GH',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Ghana cedi',
|
|
|
|
|
'singular' => 'Ghanaian cedi',
|
|
|
|
|
'plural' => 'Ghanaian cedis',
|
|
|
|
|
'short_symbol' => 'GH₵',
|
|
|
|
|
'locales' => $locales['GHS'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'GI' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'GIP',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_GI',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Gibraltar pound',
|
|
|
|
|
'singular' => 'Gibraltar pound',
|
|
|
|
|
'plural' => 'Gibraltar pounds',
|
|
|
|
|
'short_symbol' => '£',
|
|
|
|
|
'locales' => $locales['GIP'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'GL' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'DKK',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'currency_pos' => 'left',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'kl_GL',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Danish krone',
|
|
|
|
|
'singular' => 'Danish krone',
|
|
|
|
|
'plural' => 'Danish kroner',
|
|
|
|
|
'short_symbol' => 'kr',
|
|
|
|
|
'locales' => $locales['DKK'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'GM' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'GMD',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_GM',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Gambian dalasi',
|
|
|
|
|
'singular' => 'Gambian dalasi',
|
|
|
|
|
'plural' => 'Gambian dalasis',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['GMD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'GN' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'GNF',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'fr_GN',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Guinean franc',
|
|
|
|
|
'singular' => 'Guinean franc',
|
|
|
|
|
'plural' => 'Guinean francs',
|
|
|
|
|
'short_symbol' => 'FG',
|
|
|
|
|
'locales' => $locales['GNF'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'GP' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'EUR',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'fr_GP',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Euro',
|
|
|
|
|
'singular' => 'euro',
|
|
|
|
|
'plural' => 'euros',
|
|
|
|
|
'short_symbol' => '€',
|
|
|
|
|
'locales' => $locales['EUR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'GQ' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'XAF',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'es_GQ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Central African CFA franc',
|
|
|
|
|
'singular' => 'Central African CFA franc',
|
|
|
|
|
'plural' => 'Central African CFA francs',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['XAF'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'GR' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'EUR',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'thousand_sep' => '.',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'el_GR',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Euro',
|
|
|
|
|
'singular' => 'euro',
|
|
|
|
|
'plural' => 'euros',
|
|
|
|
|
'short_symbol' => '€',
|
|
|
|
|
'locales' => $locales['EUR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'GT' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'GTQ',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'es_GT',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Guatemalan quetzal',
|
|
|
|
|
'singular' => 'Guatemalan quetzal',
|
|
|
|
|
'plural' => 'Guatemalan quetzals',
|
|
|
|
|
'short_symbol' => 'Q',
|
|
|
|
|
'locales' => $locales['GTQ'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'GU' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'USD',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_GU',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'United States (US) dollar',
|
|
|
|
|
'singular' => 'US dollar',
|
|
|
|
|
'plural' => 'US dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['USD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'GW' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'XOF',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'pt_GW',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'West African CFA franc',
|
|
|
|
|
'singular' => 'West African CFA franc',
|
|
|
|
|
'plural' => 'West African CFA francs',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['XOF'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'GY' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'GYD',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_GY',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Guyanese dollar',
|
|
|
|
|
'singular' => 'Guyanaese dollar',
|
|
|
|
|
'plural' => 'Guyanaese dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['GYD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'HK' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'HKD',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'zh_Hant_HK',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Hong Kong dollar',
|
|
|
|
|
'singular' => 'Hong Kong dollar',
|
|
|
|
|
'plural' => 'Hong Kong dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['HKD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'HN' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'HNL',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'es_HN',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Honduran lempira',
|
|
|
|
|
'singular' => 'Honduran lempira',
|
|
|
|
|
'plural' => 'Honduran lempiras',
|
|
|
|
|
'short_symbol' => 'L',
|
|
|
|
|
'locales' => $locales['HNL'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'HR' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'HRK',
|
|
|
|
|
'currency_pos' => 'right_space',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'hr_HR',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Croatian kuna',
|
|
|
|
|
'singular' => 'Croatian kuna',
|
|
|
|
|
'plural' => 'Croatian kunas',
|
|
|
|
|
'short_symbol' => 'kn',
|
|
|
|
|
'locales' => $locales['HRK'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'HT' => array(
|
|
|
|
|
'currency_code' => 'USD',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'fr_HT',
|
|
|
|
|
'name' => 'United States (US) dollar',
|
|
|
|
|
'singular' => 'US dollar',
|
|
|
|
|
'plural' => 'US dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['USD'],
|
2021-07-05 08:03:23 +00:00
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'HU' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'HUF',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'hu_HU',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Hungarian forint',
|
|
|
|
|
'singular' => 'Hungarian forint',
|
|
|
|
|
'plural' => 'Hungarian forints',
|
|
|
|
|
'short_symbol' => 'Ft',
|
|
|
|
|
'locales' => $locales['HUF'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'IC' => array(
|
|
|
|
|
'currency_code' => 'EUR',
|
|
|
|
|
'currency_pos' => 'right_space',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'es_IC',
|
|
|
|
|
'name' => 'Euro',
|
|
|
|
|
'singular' => 'euro',
|
|
|
|
|
'plural' => 'euros',
|
|
|
|
|
'short_symbol' => '€',
|
|
|
|
|
'locales' => $locales['EUR'],
|
|
|
|
|
),
|
|
|
|
|
'ID' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'IDR',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'id_ID',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Indonesian rupiah',
|
|
|
|
|
'singular' => 'Indonesian rupiah',
|
|
|
|
|
'plural' => 'Indonesian rupiahs',
|
|
|
|
|
'short_symbol' => 'Rp',
|
|
|
|
|
'locales' => $locales['IDR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'IE' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'EUR',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_IE',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Euro',
|
|
|
|
|
'singular' => 'euro',
|
|
|
|
|
'plural' => 'euros',
|
|
|
|
|
'short_symbol' => '€',
|
|
|
|
|
'locales' => $locales['EUR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'IL' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'ILS',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'rtl',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'he_IL',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Israeli new shekel',
|
|
|
|
|
'singular' => 'Israeli new shekel',
|
|
|
|
|
'plural' => 'Israeli new shekels',
|
|
|
|
|
'short_symbol' => '₪',
|
|
|
|
|
'locales' => $locales['ILS'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'IM' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'GBP',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_IM',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Pound sterling',
|
|
|
|
|
'singular' => 'British pound',
|
|
|
|
|
'plural' => 'British pounds',
|
|
|
|
|
'short_symbol' => '£',
|
|
|
|
|
'locales' => $locales['GBP'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'IN' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'INR',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'currency_pos' => 'left',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'hi_IN',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Indian rupee',
|
|
|
|
|
'singular' => 'Indian rupee',
|
|
|
|
|
'plural' => 'Indian rupees',
|
|
|
|
|
'short_symbol' => '₹',
|
|
|
|
|
'locales' => $locales['INR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'IO' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'USD',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_IO',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'United States (US) dollar',
|
|
|
|
|
'singular' => 'US dollar',
|
|
|
|
|
'plural' => 'US dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['USD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'IQ' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'IQD',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'rtl',
|
|
|
|
|
'default_locale' => 'ar_IQ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Iraqi dinar',
|
|
|
|
|
'singular' => 'Iraqi dinar',
|
|
|
|
|
'plural' => 'Iraqi dinars',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['IQD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'IR' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'IRR',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'rtl',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'fa_IR',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Iranian rial',
|
|
|
|
|
'singular' => 'Iranian rial',
|
|
|
|
|
'plural' => 'Iranian rials',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['IRR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'IS' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'ISK',
|
|
|
|
|
'currency_pos' => 'right_space',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'is_IS',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Icelandic króna',
|
|
|
|
|
'singular' => 'Icelandic króna',
|
|
|
|
|
'plural' => 'Icelandic krónur',
|
|
|
|
|
'short_symbol' => 'kr',
|
|
|
|
|
'locales' => $locales['ISK'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'IT' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'EUR',
|
|
|
|
|
'currency_pos' => 'right_space',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'it_IT',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Euro',
|
|
|
|
|
'singular' => 'euro',
|
|
|
|
|
'plural' => 'euros',
|
|
|
|
|
'short_symbol' => '€',
|
|
|
|
|
'locales' => $locales['EUR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'JE' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'GBP',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_JE',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Pound sterling',
|
|
|
|
|
'singular' => 'British pound',
|
|
|
|
|
'plural' => 'British pounds',
|
|
|
|
|
'short_symbol' => '£',
|
|
|
|
|
'locales' => $locales['GBP'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'JM' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'JMD',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_JM',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Jamaican dollar',
|
|
|
|
|
'singular' => 'Jamaican dollar',
|
|
|
|
|
'plural' => 'Jamaican dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['JMD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'JO' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'JOD',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 3,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'rtl',
|
|
|
|
|
'default_locale' => 'ar_JO',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Jordanian dinar',
|
|
|
|
|
'singular' => 'Jordanian dinar',
|
|
|
|
|
'plural' => 'Jordanian dinars',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['JOD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'JP' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'JPY',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'ja_JP',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Japanese yen',
|
|
|
|
|
'singular' => 'Japanese yen',
|
|
|
|
|
'plural' => 'Japanese yen',
|
|
|
|
|
'short_symbol' => '¥',
|
|
|
|
|
'locales' => $locales['JPY'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'KE' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'KES',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'currency_pos' => 'left_space',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'sw_KE',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Kenyan shilling',
|
|
|
|
|
'singular' => 'Kenyan shilling',
|
|
|
|
|
'plural' => 'Kenyan shillings',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['KES'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'KG' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'KGS',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'ky_KG',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Kyrgyzstani som',
|
|
|
|
|
'singular' => 'Kyrgystani som',
|
|
|
|
|
'plural' => 'Kyrgystani soms',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['KGS'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'KH' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'KHR',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'currency_pos' => 'right',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'km_KH',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Cambodian riel',
|
|
|
|
|
'singular' => 'Cambodian riel',
|
|
|
|
|
'plural' => 'Cambodian riels',
|
|
|
|
|
'short_symbol' => '៛',
|
|
|
|
|
'locales' => $locales['KHR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'KI' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'AUD',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_KI',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Australian dollar',
|
|
|
|
|
'singular' => 'Australian dollar',
|
|
|
|
|
'plural' => 'Australian dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['AUD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'KM' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'KMF',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'rtl',
|
|
|
|
|
'default_locale' => 'ar_KM',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Comorian franc',
|
|
|
|
|
'singular' => 'Comorian franc',
|
|
|
|
|
'plural' => 'Comorian francs',
|
|
|
|
|
'short_symbol' => 'CF',
|
|
|
|
|
'locales' => $locales['KMF'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'KN' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'XCD',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_KN',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'East Caribbean dollar',
|
|
|
|
|
'singular' => 'East Caribbean dollar',
|
|
|
|
|
'plural' => 'East Caribbean dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['XCD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'KP' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'KPW',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'ko_KP',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'North Korean won',
|
|
|
|
|
'singular' => 'North Korean won',
|
|
|
|
|
'plural' => 'North Korean won',
|
|
|
|
|
'short_symbol' => '₩',
|
|
|
|
|
'locales' => $locales['KPW'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'KR' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'KRW',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'ko_KR',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'South Korean won',
|
|
|
|
|
'singular' => 'South Korean won',
|
|
|
|
|
'plural' => 'South Korean won',
|
|
|
|
|
'short_symbol' => '₩',
|
|
|
|
|
'locales' => $locales['KRW'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'KW' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'KWD',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 3,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'rtl',
|
|
|
|
|
'default_locale' => 'ar_KW',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Kuwaiti dinar',
|
|
|
|
|
'singular' => 'Kuwaiti dinar',
|
|
|
|
|
'plural' => 'Kuwaiti dinars',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['KWD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'KY' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'KYD',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_KY',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Cayman Islands dollar',
|
|
|
|
|
'singular' => 'Cayman Islands dollar',
|
|
|
|
|
'plural' => 'Cayman Islands dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['KYD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'KZ' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'KZT',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'ru_KZ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Kazakhstani tenge',
|
|
|
|
|
'singular' => 'Kazakhstani tenge',
|
|
|
|
|
'plural' => 'Kazakhstani tenges',
|
|
|
|
|
'short_symbol' => '₸',
|
|
|
|
|
'locales' => $locales['KZT'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'LA' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'LAK',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'lo_LA',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Lao kip',
|
|
|
|
|
'singular' => 'Laotian kip',
|
|
|
|
|
'plural' => 'Laotian kips',
|
|
|
|
|
'short_symbol' => '₭',
|
|
|
|
|
'locales' => $locales['LAK'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'LB' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'LBP',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'rtl',
|
|
|
|
|
'default_locale' => 'ar_LB',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Lebanese pound',
|
|
|
|
|
'singular' => 'Lebanese pound',
|
|
|
|
|
'plural' => 'Lebanese pounds',
|
|
|
|
|
'short_symbol' => 'L£',
|
|
|
|
|
'locales' => $locales['LBP'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'LC' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'XCD',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_LC',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'East Caribbean dollar',
|
|
|
|
|
'singular' => 'East Caribbean dollar',
|
|
|
|
|
'plural' => 'East Caribbean dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['XCD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'LI' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'CHF',
|
|
|
|
|
'currency_pos' => 'left_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => '\'',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'de_LI',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Swiss franc',
|
|
|
|
|
'singular' => 'Swiss franc',
|
|
|
|
|
'plural' => 'Swiss francs',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['CHF'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'LK' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'LKR',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'currency_pos' => 'left',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'si_LK',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Sri Lankan rupee',
|
|
|
|
|
'singular' => 'Sri Lankan rupee',
|
|
|
|
|
'plural' => 'Sri Lankan rupees',
|
|
|
|
|
'short_symbol' => 'Rs',
|
|
|
|
|
'locales' => $locales['LKR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'LR' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'LRD',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_LR',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Liberian dollar',
|
|
|
|
|
'singular' => 'Liberian dollar',
|
|
|
|
|
'plural' => 'Liberian dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['LRD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'LS' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'LSL',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_LS',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Lesotho loti',
|
|
|
|
|
'singular' => 'Lesotho loti',
|
|
|
|
|
'plural' => 'Lesotho lotis',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['LSL'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'LT' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'EUR',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'lt_LT',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Euro',
|
|
|
|
|
'singular' => 'euro',
|
|
|
|
|
'plural' => 'euros',
|
|
|
|
|
'short_symbol' => '€',
|
|
|
|
|
'locales' => $locales['EUR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'LU' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'EUR',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'fr_LU',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Euro',
|
|
|
|
|
'singular' => 'euro',
|
|
|
|
|
'plural' => 'euros',
|
|
|
|
|
'short_symbol' => '€',
|
|
|
|
|
'locales' => $locales['EUR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'LV' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'EUR',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'lv_LV',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Euro',
|
|
|
|
|
'singular' => 'euro',
|
|
|
|
|
'plural' => 'euros',
|
|
|
|
|
'short_symbol' => '€',
|
|
|
|
|
'locales' => $locales['EUR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'LY' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'LYD',
|
|
|
|
|
'currency_pos' => 'left_space',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 3,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'rtl',
|
|
|
|
|
'default_locale' => 'ar_LY',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Libyan dinar',
|
|
|
|
|
'singular' => 'Libyan dinar',
|
|
|
|
|
'plural' => 'Libyan dinars',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['LYD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'MA' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'MAD',
|
|
|
|
|
'currency_pos' => 'left_space',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'rtl',
|
|
|
|
|
'default_locale' => 'ar_MA',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Moroccan dirham',
|
|
|
|
|
'singular' => 'Moroccan dirham',
|
|
|
|
|
'plural' => 'Moroccan dirhams',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['MAD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'MC' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'EUR',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'fr_MC',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Euro',
|
|
|
|
|
'singular' => 'euro',
|
|
|
|
|
'plural' => 'euros',
|
|
|
|
|
'short_symbol' => '€',
|
|
|
|
|
'locales' => $locales['EUR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'MD' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'MDL',
|
|
|
|
|
'currency_pos' => 'right_space',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'ro_MD',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Moldovan leu',
|
|
|
|
|
'singular' => 'Moldovan leu',
|
|
|
|
|
'plural' => 'Moldovan lei',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['MDL'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'ME' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'EUR',
|
|
|
|
|
'currency_pos' => 'right_space',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'sr_Latn_ME',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Euro',
|
|
|
|
|
'singular' => 'euro',
|
|
|
|
|
'plural' => 'euros',
|
|
|
|
|
'short_symbol' => '€',
|
|
|
|
|
'locales' => $locales['EUR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'MF' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'EUR',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'fr_MF',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Euro',
|
|
|
|
|
'singular' => 'euro',
|
|
|
|
|
'plural' => 'euros',
|
|
|
|
|
'short_symbol' => '€',
|
|
|
|
|
'locales' => $locales['EUR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'MG' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'MGA',
|
|
|
|
|
'currency_pos' => 'left_space',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'mg_MG',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Malagasy ariary',
|
|
|
|
|
'singular' => 'Malagasy ariary',
|
|
|
|
|
'plural' => 'Malagasy ariaries',
|
|
|
|
|
'short_symbol' => 'Ar',
|
|
|
|
|
'locales' => $locales['MGA'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'MH' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'USD',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_MH',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'United States (US) dollar',
|
|
|
|
|
'singular' => 'US dollar',
|
|
|
|
|
'plural' => 'US dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['USD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'MK' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'MKD',
|
|
|
|
|
'currency_pos' => 'right_space',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'mk_MK',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Macedonian denar',
|
|
|
|
|
'singular' => 'Macedonian denar',
|
|
|
|
|
'plural' => 'Macedonian denari',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['MKD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'ML' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'XOF',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'decimal_sep' => ',',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'fr_ML',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'West African CFA franc',
|
|
|
|
|
'singular' => 'West African CFA franc',
|
|
|
|
|
'plural' => 'West African CFA francs',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['XOF'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'MM' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'MMK',
|
|
|
|
|
'currency_pos' => 'right_space',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'my_MM',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Burmese kyat',
|
|
|
|
|
'singular' => 'Myanmar kyat',
|
|
|
|
|
'plural' => 'Myanmar kyats',
|
|
|
|
|
'short_symbol' => 'K',
|
|
|
|
|
'locales' => $locales['MMK'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'MN' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'MNT',
|
|
|
|
|
'currency_pos' => 'left_space',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'mn_MN',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Mongolian tögrög',
|
|
|
|
|
'singular' => 'Mongolian tugrik',
|
|
|
|
|
'plural' => 'Mongolian tugriks',
|
|
|
|
|
'short_symbol' => '₮',
|
|
|
|
|
'locales' => $locales['MNT'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'MO' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'MOP',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'zh_Hant_MO',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Macanese pataca',
|
|
|
|
|
'singular' => 'Macanese pataca',
|
|
|
|
|
'plural' => 'Macanese patacas',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['MOP'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'MP' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'USD',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_MP',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'United States (US) dollar',
|
|
|
|
|
'singular' => 'US dollar',
|
|
|
|
|
'plural' => 'US dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['USD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'MQ' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'EUR',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'fr_MQ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Euro',
|
|
|
|
|
'singular' => 'euro',
|
|
|
|
|
'plural' => 'euros',
|
|
|
|
|
'short_symbol' => '€',
|
|
|
|
|
'locales' => $locales['EUR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'MR' => array(
|
|
|
|
|
'currency_code' => 'MRU',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
|
|
|
|
'direction' => 'rtl',
|
|
|
|
|
'default_locale' => 'ar_MR',
|
|
|
|
|
'name' => 'Mauritanian ouguiya',
|
|
|
|
|
'singular' => 'Mauritanian ouguiya',
|
|
|
|
|
'plural' => 'Mauritanian ouguiyas',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['MRU'],
|
|
|
|
|
),
|
|
|
|
|
'MS' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'XCD',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_MS',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'East Caribbean dollar',
|
|
|
|
|
'singular' => 'East Caribbean dollar',
|
|
|
|
|
'plural' => 'East Caribbean dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['XCD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'MT' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'EUR',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'mt_MT',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Euro',
|
|
|
|
|
'singular' => 'euro',
|
|
|
|
|
'plural' => 'euros',
|
|
|
|
|
'short_symbol' => '€',
|
|
|
|
|
'locales' => $locales['EUR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'MU' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'MUR',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_MU',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Mauritian rupee',
|
|
|
|
|
'singular' => 'Mauritian rupee',
|
|
|
|
|
'plural' => 'Mauritian rupees',
|
|
|
|
|
'short_symbol' => 'Rs',
|
|
|
|
|
'locales' => $locales['MUR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'MV' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'MVR',
|
|
|
|
|
'currency_pos' => 'left_space',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'num_decimals' => 2,
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'rtl',
|
|
|
|
|
'default_locale' => '',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Maldivian rufiyaa',
|
|
|
|
|
'singular' => 'Maldivian rufiyaa',
|
|
|
|
|
'plural' => 'Maldivian rufiyaas',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['MVR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'MW' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'MWK',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_MW',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Malawian kwacha',
|
|
|
|
|
'singular' => 'Malawian kwacha',
|
|
|
|
|
'plural' => 'Malawian kwachas',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['MWK'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'MX' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'MXN',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'es_MX',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Mexican peso',
|
|
|
|
|
'singular' => 'Mexican peso',
|
|
|
|
|
'plural' => 'Mexican pesos',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['MXN'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'MY' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'MYR',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'ms_MY',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Malaysian ringgit',
|
|
|
|
|
'singular' => 'Malaysian ringgit',
|
|
|
|
|
'plural' => 'Malaysian ringgits',
|
|
|
|
|
'short_symbol' => 'RM',
|
|
|
|
|
'locales' => $locales['MYR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'MZ' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'MZN',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'pt_MZ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Mozambican metical',
|
|
|
|
|
'singular' => 'Mozambican metical',
|
|
|
|
|
'plural' => 'Mozambican meticals',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['MZN'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'NA' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'NAD',
|
|
|
|
|
'currency_pos' => 'left',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_NA',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Namibian dollar',
|
|
|
|
|
'singular' => 'Namibian dollar',
|
|
|
|
|
'plural' => 'Namibian dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['NAD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'NC' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'XPF',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'fr_NC',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'CFP franc',
|
|
|
|
|
'singular' => 'CFP franc',
|
|
|
|
|
'plural' => 'CFP francs',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['XPF'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'NE' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'XOF',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'decimal_sep' => ',',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'fr_NE',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'West African CFA franc',
|
|
|
|
|
'singular' => 'West African CFA franc',
|
|
|
|
|
'plural' => 'West African CFA francs',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['XOF'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'NF' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'AUD',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_NF',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Australian dollar',
|
|
|
|
|
'singular' => 'Australian dollar',
|
|
|
|
|
'plural' => 'Australian dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['AUD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'NG' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'NGN',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_NG',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Nigerian naira',
|
|
|
|
|
'singular' => 'Nigerian naira',
|
|
|
|
|
'plural' => 'Nigerian nairas',
|
|
|
|
|
'short_symbol' => '₦',
|
|
|
|
|
'locales' => $locales['NGN'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'NI' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'NIO',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'es_NI',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Nicaraguan córdoba',
|
|
|
|
|
'singular' => 'Nicaraguan córdoba',
|
|
|
|
|
'plural' => 'Nicaraguan córdobas',
|
|
|
|
|
'short_symbol' => 'C$',
|
|
|
|
|
'locales' => $locales['NIO'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'NL' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'EUR',
|
|
|
|
|
'currency_pos' => 'left_space',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'nl_NL',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Euro',
|
|
|
|
|
'singular' => 'euro',
|
|
|
|
|
'plural' => 'euros',
|
|
|
|
|
'short_symbol' => '€',
|
|
|
|
|
'locales' => $locales['EUR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'NO' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'NOK',
|
|
|
|
|
'currency_pos' => 'left_space',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'nb_NO',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Norwegian krone',
|
|
|
|
|
'singular' => 'Norwegian krone',
|
|
|
|
|
'plural' => 'Norwegian kroner',
|
|
|
|
|
'short_symbol' => 'kr',
|
|
|
|
|
'locales' => $locales['NOK'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'NP' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'NPR',
|
|
|
|
|
'currency_pos' => 'left_space',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'ne_NP',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Nepalese rupee',
|
|
|
|
|
'singular' => 'Nepalese rupee',
|
|
|
|
|
'plural' => 'Nepalese rupees',
|
|
|
|
|
'short_symbol' => 'Rs',
|
|
|
|
|
'locales' => $locales['NPR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'NR' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'AUD',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_NR',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Australian dollar',
|
|
|
|
|
'singular' => 'Australian dollar',
|
|
|
|
|
'plural' => 'Australian dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['AUD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'NU' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'NZD',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_NU',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'New Zealand dollar',
|
|
|
|
|
'singular' => 'New Zealand dollar',
|
|
|
|
|
'plural' => 'New Zealand dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['NZD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'NZ' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'NZD',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_NZ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'New Zealand dollar',
|
|
|
|
|
'singular' => 'New Zealand dollar',
|
|
|
|
|
'plural' => 'New Zealand dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['NZD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'OM' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'OMR',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 3,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'rtl',
|
|
|
|
|
'default_locale' => 'ar_OM',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Omani rial',
|
|
|
|
|
'singular' => 'Omani rial',
|
|
|
|
|
'plural' => 'Omani rials',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['OMR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'PA' => array(
|
|
|
|
|
'currency_code' => 'USD',
|
|
|
|
|
'currency_pos' => 'left',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'es_PA',
|
|
|
|
|
'name' => 'United States (US) dollar',
|
|
|
|
|
'singular' => 'US dollar',
|
|
|
|
|
'plural' => 'US dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['USD'],
|
2021-07-05 08:03:23 +00:00
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'PE' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'PEN',
|
|
|
|
|
'currency_pos' => 'left_space',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'es_PE',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Sol',
|
|
|
|
|
'singular' => 'Peruvian sol',
|
|
|
|
|
'plural' => 'Peruvian soles',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['PEN'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'PF' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'XPF',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'fr_PF',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'CFP franc',
|
|
|
|
|
'singular' => 'CFP franc',
|
|
|
|
|
'plural' => 'CFP francs',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['XPF'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'PG' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'PGK',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_PG',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Papua New Guinean kina',
|
|
|
|
|
'singular' => 'Papua New Guinean kina',
|
|
|
|
|
'plural' => 'Papua New Guinean kina',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['PGK'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'PH' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'PHP',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_PH',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Philippine peso',
|
|
|
|
|
'singular' => 'Philippine piso',
|
|
|
|
|
'plural' => 'Philippine pisos',
|
|
|
|
|
'short_symbol' => '₱',
|
|
|
|
|
'locales' => $locales['PHP'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'PK' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'PKR',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'currency_pos' => 'left_space',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'rtl',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'ur_PK',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Pakistani rupee',
|
|
|
|
|
'singular' => 'Pakistani rupee',
|
|
|
|
|
'plural' => 'Pakistani rupees',
|
|
|
|
|
'short_symbol' => 'Rs',
|
|
|
|
|
'locales' => $locales['PKR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'PL' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'PLN',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'pl_PL',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Polish złoty',
|
|
|
|
|
'singular' => 'Polish zloty',
|
|
|
|
|
'plural' => 'Polish zlotys',
|
|
|
|
|
'short_symbol' => 'zł',
|
|
|
|
|
'locales' => $locales['PLN'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'PM' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'EUR',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'fr_PM',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Euro',
|
|
|
|
|
'singular' => 'euro',
|
|
|
|
|
'plural' => 'euros',
|
|
|
|
|
'short_symbol' => '€',
|
|
|
|
|
'locales' => $locales['EUR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'PN' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'NZD',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_PN',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'New Zealand dollar',
|
|
|
|
|
'singular' => 'New Zealand dollar',
|
|
|
|
|
'plural' => 'New Zealand dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['NZD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'PR' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'USD',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'es_PR',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'United States (US) dollar',
|
|
|
|
|
'singular' => 'US dollar',
|
|
|
|
|
'plural' => 'US dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['USD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'PS' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'JOD',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 3,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'rtl',
|
|
|
|
|
'default_locale' => 'ar_PS',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Jordanian dinar',
|
|
|
|
|
'singular' => 'Jordanian dinar',
|
|
|
|
|
'plural' => 'Jordanian dinars',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['JOD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'PT' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'EUR',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'currency_pos' => 'right_space',
|
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'pt_PT',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Euro',
|
|
|
|
|
'singular' => 'euro',
|
|
|
|
|
'plural' => 'euros',
|
|
|
|
|
'short_symbol' => '€',
|
|
|
|
|
'locales' => $locales['EUR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'PW' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'USD',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_PW',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'United States (US) dollar',
|
|
|
|
|
'singular' => 'US dollar',
|
|
|
|
|
'plural' => 'US dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['USD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'PY' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'PYG',
|
|
|
|
|
'currency_pos' => 'left_space',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'es_PY',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Paraguayan guaraní',
|
|
|
|
|
'singular' => 'Paraguayan guarani',
|
|
|
|
|
'plural' => 'Paraguayan guaranis',
|
|
|
|
|
'short_symbol' => '₲',
|
|
|
|
|
'locales' => $locales['PYG'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'QA' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'QAR',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'rtl',
|
|
|
|
|
'default_locale' => 'ar_QA',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Qatari riyal',
|
|
|
|
|
'singular' => 'Qatari rial',
|
|
|
|
|
'plural' => 'Qatari rials',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['QAR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'RE' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'EUR',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'fr_RE',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Euro',
|
|
|
|
|
'singular' => 'euro',
|
|
|
|
|
'plural' => 'euros',
|
|
|
|
|
'short_symbol' => '€',
|
|
|
|
|
'locales' => $locales['EUR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'RO' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'RON',
|
|
|
|
|
'currency_pos' => 'right_space',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'ro_RO',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Romanian leu',
|
|
|
|
|
'singular' => 'Romanian leu',
|
|
|
|
|
'plural' => 'Romanian lei',
|
|
|
|
|
'short_symbol' => 'lei',
|
|
|
|
|
'locales' => $locales['RON'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'RS' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'RSD',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2020-07-31 22:38:19 +00:00
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'sr_RS',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Serbian dinar',
|
|
|
|
|
'singular' => 'Serbian dinar',
|
|
|
|
|
'plural' => 'Serbian dinars',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['RSD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'RU' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'RUB',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
2020-07-31 22:38:19 +00:00
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'ru_RU',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Russian ruble',
|
|
|
|
|
'singular' => 'Russian ruble',
|
|
|
|
|
'plural' => 'Russian rubles',
|
|
|
|
|
'short_symbol' => '₽',
|
|
|
|
|
'locales' => $locales['RUB'],
|
2020-07-31 22:38:19 +00:00
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'RW' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'RWF',
|
|
|
|
|
'currency_pos' => 'left_space',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'rw_RW',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Rwandan franc',
|
|
|
|
|
'singular' => 'Rwandan franc',
|
|
|
|
|
'plural' => 'Rwandan francs',
|
|
|
|
|
'short_symbol' => 'RF',
|
|
|
|
|
'locales' => $locales['RWF'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'SA' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'SAR',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
2015-07-04 21:35:23 +00:00
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'rtl',
|
|
|
|
|
'default_locale' => 'ar_SA',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Saudi riyal',
|
|
|
|
|
'singular' => 'Saudi riyal',
|
|
|
|
|
'plural' => 'Saudi riyals',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['SAR'],
|
2015-07-04 21:35:23 +00:00
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'SB' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'SBD',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
2020-07-17 11:04:20 +00:00
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_SB',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Solomon Islands dollar',
|
|
|
|
|
'singular' => 'Solomon Islands dollar',
|
|
|
|
|
'plural' => 'Solomon Islands dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['SBD'],
|
2020-07-17 11:04:20 +00:00
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'SC' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'SCR',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'decimal_sep' => ',',
|
2015-08-18 22:40:24 +00:00
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'fr_SC',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Seychellois rupee',
|
|
|
|
|
'singular' => 'Seychellois rupee',
|
|
|
|
|
'plural' => 'Seychellois rupees',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['SCR'],
|
2015-08-18 22:40:24 +00:00
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'SD' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'SDG',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
2015-07-04 21:35:23 +00:00
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'rtl',
|
|
|
|
|
'default_locale' => 'ar_SD',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Sudanese pound',
|
|
|
|
|
'singular' => 'Sudanese pound',
|
|
|
|
|
'plural' => 'Sudanese pounds',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['SDG'],
|
2015-07-04 21:35:23 +00:00
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'SE' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'SEK',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'sv_SE',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Swedish krona',
|
|
|
|
|
'singular' => 'Swedish krona',
|
|
|
|
|
'plural' => 'Swedish kronor',
|
|
|
|
|
'short_symbol' => 'kr',
|
|
|
|
|
'locales' => $locales['SEK'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'SG' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'SGD',
|
2015-06-18 13:53:40 +00:00
|
|
|
|
'currency_pos' => 'left',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
2015-06-18 13:53:40 +00:00
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_SG',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Singapore dollar',
|
|
|
|
|
'singular' => 'Singapore dollar',
|
|
|
|
|
'plural' => 'Singapore dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['SGD'],
|
2015-06-18 13:53:40 +00:00
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'SH' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'SHP',
|
2015-07-04 21:35:23 +00:00
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_SH',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Saint Helena pound',
|
|
|
|
|
'singular' => 'St. Helena pound',
|
|
|
|
|
'plural' => 'St. Helena pounds',
|
|
|
|
|
'short_symbol' => '£',
|
|
|
|
|
'locales' => $locales['SHP'],
|
2015-07-04 21:35:23 +00:00
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'SI' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'EUR',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'currency_pos' => 'right_space',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
2020-07-31 22:23:49 +00:00
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'sl_SI',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Euro',
|
|
|
|
|
'singular' => 'euro',
|
|
|
|
|
'plural' => 'euros',
|
|
|
|
|
'short_symbol' => '€',
|
|
|
|
|
'locales' => $locales['EUR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'SJ' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'NOK',
|
|
|
|
|
'currency_pos' => 'left_space',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'nb_SJ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Norwegian krone',
|
|
|
|
|
'singular' => 'Norwegian krone',
|
|
|
|
|
'plural' => 'Norwegian kroner',
|
|
|
|
|
'short_symbol' => 'kr',
|
|
|
|
|
'locales' => $locales['NOK'],
|
2020-07-31 22:23:49 +00:00
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'SK' => array(
|
2015-07-04 21:35:23 +00:00
|
|
|
|
'currency_code' => 'EUR',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2015-07-04 21:35:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'sk_SK',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Euro',
|
|
|
|
|
'singular' => 'euro',
|
|
|
|
|
'plural' => 'euros',
|
|
|
|
|
'short_symbol' => '€',
|
|
|
|
|
'locales' => $locales['EUR'],
|
2015-07-04 21:35:23 +00:00
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'SL' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'SLL',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 0,
|
2019-01-18 10:22:07 +00:00
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_SL',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Sierra Leonean leone',
|
|
|
|
|
'singular' => 'Sierra Leonean leone',
|
|
|
|
|
'plural' => 'Sierra Leonean leones',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['SLL'],
|
2019-01-18 10:22:07 +00:00
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'SM' => array(
|
2015-07-04 21:35:23 +00:00
|
|
|
|
'currency_code' => 'EUR',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_pos' => 'right_space',
|
2015-07-04 21:35:23 +00:00
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'it_SM',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Euro',
|
|
|
|
|
'singular' => 'euro',
|
|
|
|
|
'plural' => 'euros',
|
|
|
|
|
'short_symbol' => '€',
|
|
|
|
|
'locales' => $locales['EUR'],
|
2015-07-04 21:35:23 +00:00
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'SN' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'XOF',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'currency_pos' => 'left_space',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'wo_SN',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'West African CFA franc',
|
|
|
|
|
'singular' => 'West African CFA franc',
|
|
|
|
|
'plural' => 'West African CFA francs',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['XOF'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'SO' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'SOS',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'so_SO',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Somali shilling',
|
|
|
|
|
'singular' => 'Somali shilling',
|
|
|
|
|
'plural' => 'Somali shillings',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['SOS'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'SR' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'SRD',
|
|
|
|
|
'currency_pos' => 'left_space',
|
|
|
|
|
'thousand_sep' => '.',
|
2017-01-25 09:59:32 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'nl_SR',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Surinamese dollar',
|
|
|
|
|
'singular' => 'Surinamese dollar',
|
|
|
|
|
'plural' => 'Surinamese dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['SRD'],
|
2017-01-25 09:59:32 +00:00
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'SS' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'SSP',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_SS',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'South Sudanese pound',
|
|
|
|
|
'singular' => 'South Sudanese pound',
|
|
|
|
|
'plural' => 'South Sudanese pounds',
|
|
|
|
|
'short_symbol' => '£',
|
|
|
|
|
'locales' => $locales['SSP'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'ST' => array(
|
|
|
|
|
'currency_code' => 'STN',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2015-04-30 12:39:20 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'pt_ST',
|
|
|
|
|
'name' => 'São Tomé and Príncipe dobra',
|
|
|
|
|
'singular' => 'São Tomé & Príncipe dobra',
|
|
|
|
|
'plural' => 'São Tomé & Príncipe dobras',
|
|
|
|
|
'short_symbol' => 'Db',
|
|
|
|
|
'locales' => $locales['STN'],
|
|
|
|
|
),
|
|
|
|
|
'SV' => array(
|
|
|
|
|
'currency_code' => 'USD',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'es_SV',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'United States (US) dollar',
|
|
|
|
|
'singular' => 'US dollar',
|
|
|
|
|
'plural' => 'US dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['USD'],
|
2015-04-30 12:39:20 +00:00
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'SX' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'ANG',
|
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',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_SX',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Netherlands Antillean guilder',
|
|
|
|
|
'singular' => 'Netherlands Antillean guilder',
|
|
|
|
|
'plural' => 'Netherlands Antillean guilders',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['ANG'],
|
2015-07-04 21:35:23 +00:00
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'SY' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'SYP',
|
2015-08-18 18:43:21 +00:00
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
2015-08-18 18:43:21 +00:00
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'rtl',
|
|
|
|
|
'default_locale' => 'ar_SY',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Syrian pound',
|
|
|
|
|
'singular' => 'Syrian pound',
|
|
|
|
|
'plural' => 'Syrian pounds',
|
|
|
|
|
'short_symbol' => '£',
|
|
|
|
|
'locales' => $locales['SYP'],
|
2015-08-18 18:43:21 +00:00
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'SZ' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'SZL',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'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',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_SZ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Swazi lilangeni',
|
|
|
|
|
'singular' => 'Swazi lilangeni',
|
|
|
|
|
'plural' => 'Swazi emalangeni',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['SZL'],
|
2015-04-17 13:56:34 +00:00
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'TC' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'USD',
|
2020-09-20 19:10:27 +00:00
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_TC',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'United States (US) dollar',
|
|
|
|
|
'singular' => 'US dollar',
|
|
|
|
|
'plural' => 'US dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['USD'],
|
2020-09-20 19:10:27 +00:00
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'TD' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'XAF',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'decimal_sep' => ',',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'fr_TD',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Central African CFA franc',
|
|
|
|
|
'singular' => 'Central African CFA franc',
|
|
|
|
|
'plural' => 'Central African CFA francs',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['XAF'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'TG' => array(
|
|
|
|
|
'currency_code' => 'XOF',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
2015-08-18 09:18:28 +00:00
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'fr_TG',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'West African CFA franc',
|
|
|
|
|
'singular' => 'West African CFA franc',
|
|
|
|
|
'plural' => 'West African CFA francs',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['XOF'],
|
2015-08-18 09:18:28 +00:00
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'TH' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'THB',
|
2020-07-29 14:31:36 +00:00
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 2,
|
2020-08-28 13:10:00 +00:00
|
|
|
|
'weight_unit' => 'kg',
|
2020-08-24 09:11:40 +00:00
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'th_TH',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Thai baht',
|
|
|
|
|
'singular' => 'Thai baht',
|
|
|
|
|
'plural' => 'Thai baht',
|
|
|
|
|
'short_symbol' => '฿',
|
|
|
|
|
'locales' => $locales['THB'],
|
2020-08-28 13:10:00 +00:00
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'TJ' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'TJS',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'tg_TJ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Tajikistani somoni',
|
|
|
|
|
'singular' => 'Tajikistani somoni',
|
|
|
|
|
'plural' => 'Tajikistani somonis',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['TJS'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'TK' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'NZD',
|
|
|
|
|
'currency_pos' => 'left',
|
2020-08-27 01:40:49 +00:00
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 2,
|
2020-08-27 01:40:49 +00:00
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_TK',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'New Zealand dollar',
|
|
|
|
|
'singular' => 'New Zealand dollar',
|
|
|
|
|
'plural' => 'New Zealand dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['NZD'],
|
2020-08-27 01:40:49 +00:00
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'TL' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'USD',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'pt_TL',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'United States (US) dollar',
|
|
|
|
|
'singular' => 'US dollar',
|
|
|
|
|
'plural' => 'US dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['USD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'TM' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'TMT',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'tk_TM',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Turkmenistan manat',
|
|
|
|
|
'singular' => 'Turkmenistani manat',
|
|
|
|
|
'plural' => 'Turkmenistani manat',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['TMT'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'TN' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'TND',
|
|
|
|
|
'currency_pos' => 'left_space',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 3,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'rtl',
|
|
|
|
|
'default_locale' => 'ar_TN',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Tunisian dinar',
|
|
|
|
|
'singular' => 'Tunisian dinar',
|
|
|
|
|
'plural' => 'Tunisian dinars',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['TND'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'TO' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'TOP',
|
2020-07-31 22:23:49 +00:00
|
|
|
|
'currency_pos' => 'left_space',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'thousand_sep' => ',',
|
2020-07-31 22:23:49 +00:00
|
|
|
|
'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',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'to_TO',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Tongan paʻanga',
|
|
|
|
|
'singular' => 'Tongan paʻanga',
|
|
|
|
|
'plural' => 'Tongan paʻanga',
|
|
|
|
|
'short_symbol' => 'T$',
|
|
|
|
|
'locales' => $locales['TOP'],
|
2020-07-29 14:31:36 +00:00
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'TR' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'TRY',
|
|
|
|
|
'currency_pos' => 'left',
|
2017-12-30 12:47:53 +00:00
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'tr_TR',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Turkish lira',
|
|
|
|
|
'singular' => 'Turkish lira',
|
|
|
|
|
'plural' => 'Turkish Lira',
|
|
|
|
|
'short_symbol' => '₺',
|
|
|
|
|
'locales' => $locales['TRY'],
|
2017-12-30 12:47:53 +00:00
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'TT' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'TTD',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_TT',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Trinidad and Tobago dollar',
|
|
|
|
|
'singular' => 'Trinidad & Tobago dollar',
|
|
|
|
|
'plural' => 'Trinidad & Tobago dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['TTD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'TV' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'AUD',
|
2015-04-17 13:56:34 +00:00
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
2015-04-27 15:33:52 +00:00
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_TV',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Australian dollar',
|
|
|
|
|
'singular' => 'Australian dollar',
|
|
|
|
|
'plural' => 'Australian dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['AUD'],
|
2015-04-15 15:34:03 +00:00
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'TW' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'TWD',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 0,
|
2015-07-04 21:35:23 +00:00
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'zh_Hant',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'New Taiwan dollar',
|
|
|
|
|
'singular' => 'New Taiwan dollar',
|
|
|
|
|
'plural' => 'New Taiwan dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['TWD'],
|
2015-07-04 21:35:23 +00:00
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'TZ' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'TZS',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'currency_pos' => 'left_space',
|
2015-08-18 15:02:54 +00:00
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 0,
|
2015-08-18 15:02:54 +00:00
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'sw_TZ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Tanzanian shilling',
|
|
|
|
|
'singular' => 'Tanzanian shilling',
|
|
|
|
|
'plural' => 'Tanzanian shillings',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['TZS'],
|
2015-08-18 15:02:54 +00:00
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'UA' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'UAH',
|
2017-04-04 10:36:10 +00:00
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2017-04-04 10:36:10 +00:00
|
|
|
|
'decimal_sep' => ',',
|
2015-07-04 21:35:23 +00:00
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'uk_UA',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Ukrainian hryvnia',
|
|
|
|
|
'singular' => 'Ukrainian hryvnia',
|
|
|
|
|
'plural' => 'Ukrainian hryvnias',
|
|
|
|
|
'short_symbol' => '₴',
|
|
|
|
|
'locales' => $locales['UAH'],
|
2015-07-04 21:35:23 +00:00
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'UG' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'UGX',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'currency_pos' => 'left_space',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'sw_UG',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Ugandan shilling',
|
|
|
|
|
'singular' => 'Ugandan shilling',
|
|
|
|
|
'plural' => 'Ugandan shillings',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['UGX'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'UM' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'USD',
|
2018-08-20 12:57:06 +00:00
|
|
|
|
'currency_pos' => 'left',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_UM',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'United States (US) dollar',
|
|
|
|
|
'singular' => 'US dollar',
|
|
|
|
|
'plural' => 'US dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['USD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'US' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'USD',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'oz',
|
|
|
|
|
'dimension_unit' => 'foot',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'en_US',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'United States (US) dollar',
|
|
|
|
|
'singular' => 'US dollar',
|
|
|
|
|
'plural' => 'US dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['USD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'UY' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'UYU',
|
|
|
|
|
'currency_pos' => 'left_space',
|
2018-08-20 12:57:06 +00:00
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'es_UY',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Uruguayan peso',
|
|
|
|
|
'singular' => 'Uruguayan peso',
|
|
|
|
|
'plural' => 'Uruguayan pesos',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['UYU'],
|
2018-08-20 12:57:06 +00:00
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'UZ' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'UZS',
|
2017-01-17 17:51:14 +00:00
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2017-01-17 17:51:14 +00:00
|
|
|
|
'decimal_sep' => ',',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 0,
|
2017-01-17 17:51:14 +00:00
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'uz_AF',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Uzbekistani som',
|
|
|
|
|
'singular' => 'Uzbekistani som',
|
|
|
|
|
'plural' => 'Uzbekistani som',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['UZS'],
|
2017-01-17 17:51:14 +00:00
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'VA' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'EUR',
|
2019-04-21 18:13:48 +00:00
|
|
|
|
'currency_pos' => 'right_space',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'it_VA',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Euro',
|
|
|
|
|
'singular' => 'euro',
|
|
|
|
|
'plural' => 'euros',
|
|
|
|
|
'short_symbol' => '€',
|
|
|
|
|
'locales' => $locales['EUR'],
|
2019-04-21 18:13:48 +00:00
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'VC' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'XCD',
|
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',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_VC',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'East Caribbean dollar',
|
|
|
|
|
'singular' => 'East Caribbean dollar',
|
|
|
|
|
'plural' => 'East Caribbean dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['XCD'],
|
2015-07-31 19:50:10 +00:00
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'VE' => array(
|
|
|
|
|
'currency_code' => 'VES',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'currency_pos' => 'left',
|
2015-07-31 19:50:10 +00:00
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'num_decimals' => 2,
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'es_VE',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'name' => 'Bolívar soberano',
|
|
|
|
|
'singular' => 'Venezuelan bolívar',
|
|
|
|
|
'plural' => 'Venezuelan bolívars',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['VES'],
|
2021-07-05 08:03:23 +00:00
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'VG' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'USD',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
2015-07-31 19:50:10 +00:00
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_VG',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'United States (US) dollar',
|
|
|
|
|
'singular' => 'US dollar',
|
|
|
|
|
'plural' => 'US dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['USD'],
|
2015-07-04 21:35:23 +00:00
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'VI' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'USD',
|
2020-07-29 14:32:50 +00:00
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_VI',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'United States (US) dollar',
|
|
|
|
|
'singular' => 'US dollar',
|
|
|
|
|
'plural' => 'US dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['USD'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'VN' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'VND',
|
|
|
|
|
'currency_pos' => 'right_space',
|
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
2020-07-29 14:32:50 +00:00
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'vi_VN',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Vietnamese đồng',
|
|
|
|
|
'singular' => 'Vietnamese dong',
|
|
|
|
|
'plural' => 'Vietnamese dong',
|
|
|
|
|
'short_symbol' => '₫',
|
|
|
|
|
'locales' => $locales['VND'],
|
2020-07-29 14:32:50 +00:00
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'VU' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'VUV',
|
2020-07-29 14:30:45 +00:00
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_VU',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Vanuatu vatu',
|
|
|
|
|
'singular' => 'Vanuatu vatu',
|
|
|
|
|
'plural' => 'Vanuatu vatus',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['VUV'],
|
2020-07-29 14:30:45 +00:00
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'WF' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'XPF',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'fr_WF',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'CFP franc',
|
|
|
|
|
'singular' => 'CFP franc',
|
|
|
|
|
'plural' => 'CFP francs',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['XPF'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'WS' => array(
|
|
|
|
|
'currency_code' => 'WST',
|
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_WS',
|
|
|
|
|
'name' => 'Samoan tālā',
|
|
|
|
|
'singular' => 'Samoan tala',
|
|
|
|
|
'plural' => 'Samoan tala',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['WST'],
|
|
|
|
|
),
|
|
|
|
|
'XK' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'EUR',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'sq_XK',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Euro',
|
|
|
|
|
'singular' => 'euro',
|
|
|
|
|
'plural' => 'euros',
|
|
|
|
|
'short_symbol' => '€',
|
|
|
|
|
'locales' => $locales['EUR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'YE' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'YER',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => '.',
|
|
|
|
|
'decimal_sep' => ',',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'num_decimals' => 0,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'rtl',
|
|
|
|
|
'default_locale' => 'ar_YE',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Yemeni rial',
|
|
|
|
|
'singular' => 'Yemeni rial',
|
|
|
|
|
'plural' => 'Yemeni rials',
|
|
|
|
|
'short_symbol' => null,
|
|
|
|
|
'locales' => $locales['YER'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'YT' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'EUR',
|
|
|
|
|
'currency_pos' => 'right_space',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'fr_YT',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Euro',
|
|
|
|
|
'singular' => 'euro',
|
|
|
|
|
'plural' => 'euros',
|
|
|
|
|
'short_symbol' => '€',
|
|
|
|
|
'locales' => $locales['EUR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'ZA' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'ZAR',
|
|
|
|
|
'currency_pos' => 'left',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'thousand_sep' => ' ',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'decimal_sep' => ',',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_ZA',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'South African rand',
|
|
|
|
|
'singular' => 'South African rand',
|
|
|
|
|
'plural' => 'South African rand',
|
|
|
|
|
'short_symbol' => 'R',
|
|
|
|
|
'locales' => $locales['ZAR'],
|
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'ZM' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'ZMW',
|
2018-03-05 19:44:56 +00:00
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
|
|
|
|
'default_locale' => 'en_ZM',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'Zambian kwacha',
|
|
|
|
|
'singular' => 'Zambian kwacha',
|
|
|
|
|
'plural' => 'Zambian kwachas',
|
|
|
|
|
'short_symbol' => 'ZK',
|
|
|
|
|
'locales' => $locales['ZMW'],
|
2015-07-04 21:35:23 +00:00
|
|
|
|
),
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'ZW' => array(
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'currency_code' => 'USD',
|
2015-07-04 21:35:23 +00:00
|
|
|
|
'currency_pos' => 'left',
|
|
|
|
|
'thousand_sep' => ',',
|
|
|
|
|
'decimal_sep' => '.',
|
|
|
|
|
'num_decimals' => 2,
|
|
|
|
|
'weight_unit' => 'kg',
|
|
|
|
|
'dimension_unit' => 'cm',
|
2021-07-10 12:31:46 +00:00
|
|
|
|
'direction' => 'ltr',
|
2021-07-13 06:31:43 +00:00
|
|
|
|
'default_locale' => 'sn_ZW',
|
2021-07-05 08:03:23 +00:00
|
|
|
|
'name' => 'United States (US) dollar',
|
|
|
|
|
'singular' => 'US dollar',
|
|
|
|
|
'plural' => 'US dollars',
|
|
|
|
|
'short_symbol' => '$',
|
|
|
|
|
'locales' => $locales['USD'],
|
2016-08-27 01:46:45 +00:00
|
|
|
|
),
|
2015-06-18 13:53:40 +00:00
|
|
|
|
);
|