languages
4 days ago
continents.php
9 months ago
countries.php
9 months ago
currencies.php
4 months ago
currency-info.php
2 years ago
locale-info.php
6 months ago
phone.php
9 months ago
states.php
4 months ago
units.php
3 years ago
locale-info.php
3998 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Locales information |
| 4 | * |
| 5 | * @package WooCommerce\i18n |
| 6 | * @version 5.7.0 |
| 7 | */ |
| 8 | |
| 9 | defined( 'ABSPATH' ) || exit; |
| 10 | |
| 11 | $locales = include 'currency-info.php'; |
| 12 | |
| 13 | // Bulgaria transitions from BGN to EUR on 2026-01-01 00:00:00 UTC. |
| 14 | $bg_uses_euro = ( time() >= strtotime( '2026-01-01 00:00:00 UTC' ) ); |
| 15 | $bg_currency = $bg_uses_euro ? array( |
| 16 | 'currency_code' => 'EUR', |
| 17 | 'name' => 'Euro', |
| 18 | 'singular' => 'euro', |
| 19 | 'plural' => 'euros', |
| 20 | 'short_symbol' => '€', |
| 21 | 'locales' => $locales['EUR'], |
| 22 | ) : array( |
| 23 | 'currency_code' => 'BGN', |
| 24 | 'name' => 'Bulgarian lev', |
| 25 | 'singular' => 'Bulgarian lev', |
| 26 | 'plural' => 'Bulgarian leva', |
| 27 | 'short_symbol' => null, |
| 28 | 'locales' => $locales['BGN'], |
| 29 | ); |
| 30 | |
| 31 | return array( |
| 32 | 'AD' => array( |
| 33 | 'currency_code' => 'EUR', |
| 34 | 'currency_pos' => 'right_space', |
| 35 | 'thousand_sep' => '.', |
| 36 | 'decimal_sep' => ',', |
| 37 | 'num_decimals' => 2, |
| 38 | 'weight_unit' => 'kg', |
| 39 | 'dimension_unit' => 'cm', |
| 40 | 'direction' => 'ltr', |
| 41 | 'default_locale' => 'ca_AD', |
| 42 | 'name' => 'Euro', |
| 43 | 'singular' => 'euro', |
| 44 | 'plural' => 'euros', |
| 45 | 'short_symbol' => '€', |
| 46 | 'locales' => $locales['EUR'], |
| 47 | ), |
| 48 | 'AE' => array( |
| 49 | 'currency_code' => 'AED', |
| 50 | 'currency_pos' => 'right_space', |
| 51 | 'thousand_sep' => '.', |
| 52 | 'decimal_sep' => ',', |
| 53 | 'num_decimals' => 2, |
| 54 | 'weight_unit' => 'kg', |
| 55 | 'dimension_unit' => 'cm', |
| 56 | 'direction' => 'rtl', |
| 57 | 'default_locale' => 'ar_AE', |
| 58 | 'name' => 'United Arab Emirates dirham', |
| 59 | 'singular' => 'UAE dirham', |
| 60 | 'plural' => 'UAE dirhams', |
| 61 | 'short_symbol' => null, |
| 62 | 'locales' => $locales['AED'], |
| 63 | ), |
| 64 | 'AF' => array( |
| 65 | 'currency_code' => 'AFN', |
| 66 | 'currency_pos' => 'left_space', |
| 67 | 'thousand_sep' => '.', |
| 68 | 'decimal_sep' => ',', |
| 69 | 'num_decimals' => 0, |
| 70 | 'weight_unit' => 'kg', |
| 71 | 'dimension_unit' => 'cm', |
| 72 | 'direction' => 'rtl', |
| 73 | 'default_locale' => 'fa_AF', |
| 74 | 'name' => 'Afghan afghani', |
| 75 | 'singular' => 'Afghan Afghani', |
| 76 | 'plural' => 'Afghan Afghanis', |
| 77 | 'short_symbol' => '؋', |
| 78 | 'locales' => $locales['AFN'], |
| 79 | ), |
| 80 | 'AG' => array( |
| 81 | 'currency_code' => 'XCD', |
| 82 | 'currency_pos' => 'left', |
| 83 | 'thousand_sep' => ',', |
| 84 | 'decimal_sep' => '.', |
| 85 | 'num_decimals' => 2, |
| 86 | 'weight_unit' => 'kg', |
| 87 | 'dimension_unit' => 'cm', |
| 88 | 'direction' => 'ltr', |
| 89 | 'default_locale' => 'en_AG', |
| 90 | 'name' => 'East Caribbean dollar', |
| 91 | 'singular' => 'East Caribbean dollar', |
| 92 | 'plural' => 'East Caribbean dollars', |
| 93 | 'short_symbol' => '$', |
| 94 | 'locales' => $locales['XCD'], |
| 95 | ), |
| 96 | 'AI' => array( |
| 97 | 'currency_code' => 'XCD', |
| 98 | 'currency_pos' => 'left', |
| 99 | 'thousand_sep' => ',', |
| 100 | 'decimal_sep' => '.', |
| 101 | 'num_decimals' => 2, |
| 102 | 'weight_unit' => 'kg', |
| 103 | 'dimension_unit' => 'cm', |
| 104 | 'direction' => 'ltr', |
| 105 | 'default_locale' => 'en_AI', |
| 106 | 'name' => 'East Caribbean dollar', |
| 107 | 'singular' => 'East Caribbean dollar', |
| 108 | 'plural' => 'East Caribbean dollars', |
| 109 | 'short_symbol' => '$', |
| 110 | 'locales' => $locales['XCD'], |
| 111 | ), |
| 112 | 'AL' => array( |
| 113 | 'currency_code' => 'ALL', |
| 114 | 'currency_pos' => 'right_space', |
| 115 | 'thousand_sep' => ' ', |
| 116 | 'decimal_sep' => ',', |
| 117 | 'num_decimals' => 0, |
| 118 | 'weight_unit' => 'kg', |
| 119 | 'dimension_unit' => 'cm', |
| 120 | 'direction' => 'ltr', |
| 121 | 'default_locale' => 'sq_AL', |
| 122 | 'name' => 'Albanian lek', |
| 123 | 'singular' => 'Albanian lek', |
| 124 | 'plural' => 'Albanian lekë', |
| 125 | 'short_symbol' => null, |
| 126 | 'locales' => $locales['ALL'], |
| 127 | ), |
| 128 | 'AM' => array( |
| 129 | 'currency_code' => 'AMD', |
| 130 | 'currency_pos' => 'right_space', |
| 131 | 'thousand_sep' => ' ', |
| 132 | 'decimal_sep' => ',', |
| 133 | 'num_decimals' => 0, |
| 134 | 'weight_unit' => 'kg', |
| 135 | 'dimension_unit' => 'cm', |
| 136 | 'direction' => 'ltr', |
| 137 | 'default_locale' => 'hy_AM', |
| 138 | 'name' => 'Armenian dram', |
| 139 | 'singular' => 'Armenian dram', |
| 140 | 'plural' => 'Armenian drams', |
| 141 | 'short_symbol' => '֏', |
| 142 | 'locales' => $locales['AMD'], |
| 143 | ), |
| 144 | 'AO' => array( |
| 145 | 'currency_code' => 'AOA', |
| 146 | 'currency_pos' => 'right_space', |
| 147 | 'thousand_sep' => ' ', |
| 148 | 'decimal_sep' => ',', |
| 149 | 'num_decimals' => 2, |
| 150 | 'weight_unit' => 'kg', |
| 151 | 'dimension_unit' => 'cm', |
| 152 | 'direction' => 'ltr', |
| 153 | 'default_locale' => 'pt_AO', |
| 154 | 'name' => 'Angolan kwanza', |
| 155 | 'singular' => 'Angolan kwanza', |
| 156 | 'plural' => 'Angolan kwanzas', |
| 157 | 'short_symbol' => 'Kz', |
| 158 | 'locales' => $locales['AOA'], |
| 159 | ), |
| 160 | 'AR' => array( |
| 161 | 'currency_code' => 'ARS', |
| 162 | 'currency_pos' => 'left_space', |
| 163 | 'thousand_sep' => '.', |
| 164 | 'decimal_sep' => ',', |
| 165 | 'num_decimals' => 2, |
| 166 | 'weight_unit' => 'kg', |
| 167 | 'dimension_unit' => 'cm', |
| 168 | 'direction' => 'ltr', |
| 169 | 'default_locale' => 'es_AR', |
| 170 | 'name' => 'Argentine peso', |
| 171 | 'singular' => 'Argentine peso', |
| 172 | 'plural' => 'Argentine pesos', |
| 173 | 'short_symbol' => '$', |
| 174 | 'locales' => $locales['ARS'], |
| 175 | ), |
| 176 | 'AS' => array( |
| 177 | 'currency_code' => 'USD', |
| 178 | 'currency_pos' => 'left', |
| 179 | 'thousand_sep' => ',', |
| 180 | 'decimal_sep' => '.', |
| 181 | 'num_decimals' => 2, |
| 182 | 'weight_unit' => 'lbs', |
| 183 | 'dimension_unit' => 'in', |
| 184 | 'direction' => 'ltr', |
| 185 | 'default_locale' => 'en_AS', |
| 186 | 'name' => 'United States (US) dollar', |
| 187 | 'singular' => 'US dollar', |
| 188 | 'plural' => 'US dollars', |
| 189 | 'short_symbol' => '$', |
| 190 | 'locales' => $locales['USD'], |
| 191 | ), |
| 192 | 'AT' => array( |
| 193 | 'currency_code' => 'EUR', |
| 194 | 'currency_pos' => 'left_space', |
| 195 | 'thousand_sep' => ' ', |
| 196 | 'decimal_sep' => ',', |
| 197 | 'num_decimals' => 2, |
| 198 | 'weight_unit' => 'kg', |
| 199 | 'dimension_unit' => 'cm', |
| 200 | 'direction' => 'ltr', |
| 201 | 'default_locale' => 'de_AT', |
| 202 | 'name' => 'Euro', |
| 203 | 'singular' => 'euro', |
| 204 | 'plural' => 'euros', |
| 205 | 'short_symbol' => '€', |
| 206 | 'locales' => $locales['EUR'], |
| 207 | ), |
| 208 | 'AU' => array( |
| 209 | 'currency_code' => 'AUD', |
| 210 | 'currency_pos' => 'left', |
| 211 | 'thousand_sep' => ',', |
| 212 | 'decimal_sep' => '.', |
| 213 | 'num_decimals' => 2, |
| 214 | 'weight_unit' => 'kg', |
| 215 | 'dimension_unit' => 'cm', |
| 216 | 'direction' => 'ltr', |
| 217 | 'default_locale' => 'en_AU', |
| 218 | 'name' => 'Australian dollar', |
| 219 | 'singular' => 'Australian dollar', |
| 220 | 'plural' => 'Australian dollars', |
| 221 | 'short_symbol' => '$', |
| 222 | 'locales' => $locales['AUD'], |
| 223 | ), |
| 224 | 'AW' => array( |
| 225 | 'currency_code' => 'AWG', |
| 226 | 'currency_pos' => 'left_space', |
| 227 | 'thousand_sep' => '.', |
| 228 | 'decimal_sep' => ',', |
| 229 | 'num_decimals' => 2, |
| 230 | 'weight_unit' => 'kg', |
| 231 | 'dimension_unit' => 'cm', |
| 232 | 'direction' => 'ltr', |
| 233 | 'default_locale' => 'nl_AW', |
| 234 | 'name' => 'Aruban florin', |
| 235 | 'singular' => 'Aruban florin', |
| 236 | 'plural' => 'Aruban florin', |
| 237 | 'short_symbol' => null, |
| 238 | 'locales' => $locales['AWG'], |
| 239 | ), |
| 240 | 'AX' => array( |
| 241 | 'currency_code' => 'EUR', |
| 242 | 'currency_pos' => 'right_space', |
| 243 | 'thousand_sep' => ' ', |
| 244 | 'decimal_sep' => ',', |
| 245 | 'num_decimals' => 2, |
| 246 | 'weight_unit' => 'kg', |
| 247 | 'dimension_unit' => 'cm', |
| 248 | 'direction' => 'ltr', |
| 249 | 'default_locale' => 'sv_AX', |
| 250 | 'name' => 'Euro', |
| 251 | 'singular' => 'euro', |
| 252 | 'plural' => 'euros', |
| 253 | 'short_symbol' => '€', |
| 254 | 'locales' => $locales['EUR'], |
| 255 | ), |
| 256 | 'AZ' => array( |
| 257 | 'currency_code' => 'AZN', |
| 258 | 'currency_pos' => 'right_space', |
| 259 | 'thousand_sep' => '.', |
| 260 | 'decimal_sep' => ',', |
| 261 | 'num_decimals' => 2, |
| 262 | 'weight_unit' => 'kg', |
| 263 | 'dimension_unit' => 'cm', |
| 264 | 'direction' => 'ltr', |
| 265 | 'default_locale' => 'az_AZ', |
| 266 | 'name' => 'Azerbaijani manat', |
| 267 | 'singular' => 'Azerbaijani manat', |
| 268 | 'plural' => 'Azerbaijani manats', |
| 269 | 'short_symbol' => '₼', |
| 270 | 'locales' => $locales['AZN'], |
| 271 | ), |
| 272 | 'BA' => array( |
| 273 | 'currency_code' => 'BAM', |
| 274 | 'currency_pos' => 'right_space', |
| 275 | 'thousand_sep' => '.', |
| 276 | 'decimal_sep' => ',', |
| 277 | 'num_decimals' => 2, |
| 278 | 'weight_unit' => 'kg', |
| 279 | 'dimension_unit' => 'cm', |
| 280 | 'direction' => 'ltr', |
| 281 | 'default_locale' => 'bs_BA', |
| 282 | 'name' => 'Bosnia and Herzegovina convertible mark', |
| 283 | 'singular' => 'Bosnia-Herzegovina convertible mark', |
| 284 | 'plural' => 'Bosnia-Herzegovina convertible marks', |
| 285 | 'short_symbol' => 'KM', |
| 286 | 'locales' => $locales['BAM'], |
| 287 | ), |
| 288 | 'BB' => array( |
| 289 | 'currency_code' => 'BBD', |
| 290 | 'currency_pos' => 'left', |
| 291 | 'thousand_sep' => ',', |
| 292 | 'decimal_sep' => '.', |
| 293 | 'num_decimals' => 2, |
| 294 | 'weight_unit' => 'kg', |
| 295 | 'dimension_unit' => 'cm', |
| 296 | 'direction' => 'ltr', |
| 297 | 'default_locale' => 'en_BB', |
| 298 | 'name' => 'Barbadian dollar', |
| 299 | 'singular' => 'Barbadian dollar', |
| 300 | 'plural' => 'Barbadian dollars', |
| 301 | 'short_symbol' => '$', |
| 302 | 'locales' => $locales['BBD'], |
| 303 | ), |
| 304 | 'BD' => array( |
| 305 | 'currency_code' => 'BDT', |
| 306 | 'currency_pos' => 'right', |
| 307 | 'thousand_sep' => ',', |
| 308 | 'decimal_sep' => '.', |
| 309 | 'num_decimals' => 2, |
| 310 | 'weight_unit' => 'kg', |
| 311 | 'dimension_unit' => 'cm', |
| 312 | 'direction' => 'ltr', |
| 313 | 'default_locale' => 'bn_BD', |
| 314 | 'name' => 'Bangladeshi taka', |
| 315 | 'singular' => 'Bangladeshi taka', |
| 316 | 'plural' => 'Bangladeshi takas', |
| 317 | 'short_symbol' => '৳', |
| 318 | 'locales' => $locales['BDT'], |
| 319 | ), |
| 320 | 'BE' => array( |
| 321 | 'currency_code' => 'EUR', |
| 322 | 'currency_pos' => 'left_space', |
| 323 | 'thousand_sep' => '.', |
| 324 | 'decimal_sep' => ',', |
| 325 | 'num_decimals' => 2, |
| 326 | 'weight_unit' => 'kg', |
| 327 | 'dimension_unit' => 'cm', |
| 328 | 'direction' => 'ltr', |
| 329 | 'default_locale' => 'nl_BE', |
| 330 | 'name' => 'Euro', |
| 331 | 'singular' => 'euro', |
| 332 | 'plural' => 'euros', |
| 333 | 'short_symbol' => '€', |
| 334 | 'locales' => $locales['EUR'], |
| 335 | ), |
| 336 | 'BF' => array( |
| 337 | 'currency_code' => 'XOF', |
| 338 | 'currency_pos' => 'right_space', |
| 339 | 'thousand_sep' => ' ', |
| 340 | 'decimal_sep' => ',', |
| 341 | 'num_decimals' => 0, |
| 342 | 'weight_unit' => 'kg', |
| 343 | 'dimension_unit' => 'cm', |
| 344 | 'direction' => 'ltr', |
| 345 | 'default_locale' => 'fr_BF', |
| 346 | 'name' => 'West African CFA franc', |
| 347 | 'singular' => 'West African CFA franc', |
| 348 | 'plural' => 'West African CFA francs', |
| 349 | 'short_symbol' => null, |
| 350 | 'locales' => $locales['XOF'], |
| 351 | ), |
| 352 | 'BG' => array_merge( |
| 353 | array( |
| 354 | 'currency_pos' => 'right_space', |
| 355 | 'thousand_sep' => ' ', |
| 356 | 'decimal_sep' => ',', |
| 357 | 'num_decimals' => 2, |
| 358 | 'weight_unit' => 'kg', |
| 359 | 'dimension_unit' => 'cm', |
| 360 | 'direction' => 'ltr', |
| 361 | 'default_locale' => 'bg_BG', |
| 362 | ), |
| 363 | $bg_currency |
| 364 | ), |
| 365 | 'BH' => array( |
| 366 | 'currency_code' => 'BHD', |
| 367 | 'currency_pos' => 'right_space', |
| 368 | 'thousand_sep' => '.', |
| 369 | 'decimal_sep' => ',', |
| 370 | 'num_decimals' => 3, |
| 371 | 'weight_unit' => 'kg', |
| 372 | 'dimension_unit' => 'cm', |
| 373 | 'direction' => 'rtl', |
| 374 | 'default_locale' => 'ar_BH', |
| 375 | 'name' => 'Bahraini dinar', |
| 376 | 'singular' => 'Bahraini dinar', |
| 377 | 'plural' => 'Bahraini dinars', |
| 378 | 'short_symbol' => null, |
| 379 | 'locales' => $locales['BHD'], |
| 380 | ), |
| 381 | 'BI' => array( |
| 382 | 'currency_code' => 'BIF', |
| 383 | 'currency_pos' => 'right', |
| 384 | 'thousand_sep' => '.', |
| 385 | 'decimal_sep' => ',', |
| 386 | 'num_decimals' => 0, |
| 387 | 'weight_unit' => 'kg', |
| 388 | 'dimension_unit' => 'cm', |
| 389 | 'direction' => 'ltr', |
| 390 | 'default_locale' => 'rn_BI', |
| 391 | 'name' => 'Burundian franc', |
| 392 | 'singular' => 'Burundian franc', |
| 393 | 'plural' => 'Burundian francs', |
| 394 | 'short_symbol' => null, |
| 395 | 'locales' => $locales['BIF'], |
| 396 | ), |
| 397 | 'BJ' => array( |
| 398 | 'currency_code' => 'XOF', |
| 399 | 'currency_pos' => 'right_space', |
| 400 | 'thousand_sep' => ' ', |
| 401 | 'decimal_sep' => ',', |
| 402 | 'num_decimals' => 0, |
| 403 | 'weight_unit' => 'kg', |
| 404 | 'dimension_unit' => 'cm', |
| 405 | 'direction' => 'ltr', |
| 406 | 'default_locale' => 'fr_BJ', |
| 407 | 'name' => 'West African CFA franc', |
| 408 | 'singular' => 'West African CFA franc', |
| 409 | 'plural' => 'West African CFA francs', |
| 410 | 'short_symbol' => null, |
| 411 | 'locales' => $locales['XOF'], |
| 412 | ), |
| 413 | 'BL' => array( |
| 414 | 'currency_code' => 'EUR', |
| 415 | 'currency_pos' => 'right_space', |
| 416 | 'thousand_sep' => ' ', |
| 417 | 'decimal_sep' => ',', |
| 418 | 'num_decimals' => 2, |
| 419 | 'weight_unit' => 'kg', |
| 420 | 'dimension_unit' => 'cm', |
| 421 | 'direction' => 'ltr', |
| 422 | 'default_locale' => 'fr_BL', |
| 423 | 'name' => 'Euro', |
| 424 | 'singular' => 'euro', |
| 425 | 'plural' => 'euros', |
| 426 | 'short_symbol' => '€', |
| 427 | 'locales' => $locales['EUR'], |
| 428 | ), |
| 429 | 'BM' => array( |
| 430 | 'currency_code' => 'BMD', |
| 431 | 'currency_pos' => 'left', |
| 432 | 'thousand_sep' => ',', |
| 433 | 'decimal_sep' => '.', |
| 434 | 'num_decimals' => 2, |
| 435 | 'weight_unit' => 'kg', |
| 436 | 'dimension_unit' => 'cm', |
| 437 | 'direction' => 'ltr', |
| 438 | 'default_locale' => 'en_BM', |
| 439 | 'name' => 'Bermudian dollar', |
| 440 | 'singular' => 'Bermudan dollar', |
| 441 | 'plural' => 'Bermudan dollars', |
| 442 | 'short_symbol' => '$', |
| 443 | 'locales' => $locales['BMD'], |
| 444 | ), |
| 445 | 'BN' => array( |
| 446 | 'currency_code' => 'BND', |
| 447 | 'currency_pos' => 'left_space', |
| 448 | 'thousand_sep' => '.', |
| 449 | 'decimal_sep' => ',', |
| 450 | 'num_decimals' => 2, |
| 451 | 'weight_unit' => 'kg', |
| 452 | 'dimension_unit' => 'cm', |
| 453 | 'direction' => 'ltr', |
| 454 | 'default_locale' => 'ms_BN', |
| 455 | 'name' => 'Brunei dollar', |
| 456 | 'singular' => 'Brunei dollar', |
| 457 | 'plural' => 'Brunei dollars', |
| 458 | 'short_symbol' => '$', |
| 459 | 'locales' => $locales['BND'], |
| 460 | ), |
| 461 | 'BO' => array( |
| 462 | 'currency_code' => 'BOB', |
| 463 | 'currency_pos' => 'left', |
| 464 | 'thousand_sep' => '.', |
| 465 | 'decimal_sep' => ',', |
| 466 | 'num_decimals' => 2, |
| 467 | 'weight_unit' => 'kg', |
| 468 | 'dimension_unit' => 'cm', |
| 469 | 'direction' => 'ltr', |
| 470 | 'default_locale' => 'es_BO', |
| 471 | 'name' => 'Bolivian boliviano', |
| 472 | 'singular' => 'Bolivian boliviano', |
| 473 | 'plural' => 'Bolivian bolivianos', |
| 474 | 'short_symbol' => 'Bs', |
| 475 | 'locales' => $locales['BOB'], |
| 476 | ), |
| 477 | 'BQ' => array( |
| 478 | 'currency_code' => 'USD', |
| 479 | 'currency_pos' => 'left_space', |
| 480 | 'thousand_sep' => '.', |
| 481 | 'decimal_sep' => ',', |
| 482 | 'num_decimals' => 2, |
| 483 | 'weight_unit' => 'kg', |
| 484 | 'dimension_unit' => 'cm', |
| 485 | 'direction' => 'ltr', |
| 486 | 'default_locale' => 'nl_BQ', |
| 487 | 'name' => 'United States (US) dollar', |
| 488 | 'singular' => 'US dollar', |
| 489 | 'plural' => 'US dollars', |
| 490 | 'short_symbol' => '$', |
| 491 | 'locales' => $locales['USD'], |
| 492 | ), |
| 493 | 'BR' => array( |
| 494 | 'currency_code' => 'BRL', |
| 495 | 'currency_pos' => 'left_space', |
| 496 | 'thousand_sep' => '.', |
| 497 | 'decimal_sep' => ',', |
| 498 | 'num_decimals' => 2, |
| 499 | 'weight_unit' => 'kg', |
| 500 | 'dimension_unit' => 'cm', |
| 501 | 'direction' => 'ltr', |
| 502 | 'default_locale' => 'pt_BR', |
| 503 | 'name' => 'Brazilian real', |
| 504 | 'singular' => 'Brazilian real', |
| 505 | 'plural' => 'Brazilian reals', |
| 506 | 'short_symbol' => 'R$', |
| 507 | 'locales' => $locales['BRL'], |
| 508 | ), |
| 509 | 'BS' => array( |
| 510 | 'currency_code' => 'BSD', |
| 511 | 'currency_pos' => 'left', |
| 512 | 'thousand_sep' => ',', |
| 513 | 'decimal_sep' => '.', |
| 514 | 'num_decimals' => 2, |
| 515 | 'weight_unit' => 'kg', |
| 516 | 'dimension_unit' => 'cm', |
| 517 | 'direction' => 'ltr', |
| 518 | 'default_locale' => 'en_BS', |
| 519 | 'name' => 'Bahamian dollar', |
| 520 | 'singular' => 'Bahamian dollar', |
| 521 | 'plural' => 'Bahamian dollars', |
| 522 | 'short_symbol' => '$', |
| 523 | 'locales' => $locales['BSD'], |
| 524 | ), |
| 525 | 'BT' => array( |
| 526 | 'currency_code' => 'BTN', |
| 527 | 'currency_pos' => 'left', |
| 528 | 'thousand_sep' => ',', |
| 529 | 'decimal_sep' => '.', |
| 530 | 'num_decimals' => 2, |
| 531 | 'weight_unit' => 'kg', |
| 532 | 'dimension_unit' => 'cm', |
| 533 | 'direction' => 'ltr', |
| 534 | 'default_locale' => 'dz_BT', |
| 535 | 'name' => 'Bhutanese ngultrum', |
| 536 | 'singular' => 'Bhutanese ngultrum', |
| 537 | 'plural' => 'Bhutanese ngultrums', |
| 538 | 'short_symbol' => null, |
| 539 | 'locales' => $locales['BTN'], |
| 540 | ), |
| 541 | 'BW' => array( |
| 542 | 'currency_code' => 'BWP', |
| 543 | 'currency_pos' => 'left', |
| 544 | 'thousand_sep' => ',', |
| 545 | 'decimal_sep' => '.', |
| 546 | 'num_decimals' => 2, |
| 547 | 'weight_unit' => 'kg', |
| 548 | 'dimension_unit' => 'cm', |
| 549 | 'direction' => 'ltr', |
| 550 | 'default_locale' => 'en_BW', |
| 551 | 'name' => 'Botswana pula', |
| 552 | 'singular' => 'Botswanan pula', |
| 553 | 'plural' => 'Botswanan pulas', |
| 554 | 'short_symbol' => 'P', |
| 555 | 'locales' => $locales['BWP'], |
| 556 | ), |
| 557 | 'BY' => array( |
| 558 | 'currency_code' => 'BYN', |
| 559 | 'currency_pos' => 'right_space', |
| 560 | 'thousand_sep' => ' ', |
| 561 | 'decimal_sep' => ',', |
| 562 | 'num_decimals' => 2, |
| 563 | 'weight_unit' => 'kg', |
| 564 | 'dimension_unit' => 'cm', |
| 565 | 'direction' => 'ltr', |
| 566 | 'default_locale' => 'be_BY', |
| 567 | 'name' => 'Belarusian ruble', |
| 568 | 'singular' => 'Belarusian ruble', |
| 569 | 'plural' => 'Belarusian rubles', |
| 570 | 'short_symbol' => 'р.', |
| 571 | 'locales' => $locales['BYN'], |
| 572 | ), |
| 573 | 'BZ' => array( |
| 574 | 'currency_code' => 'BZD', |
| 575 | 'currency_pos' => 'left', |
| 576 | 'thousand_sep' => ',', |
| 577 | 'decimal_sep' => '.', |
| 578 | 'num_decimals' => 2, |
| 579 | 'weight_unit' => 'kg', |
| 580 | 'dimension_unit' => 'cm', |
| 581 | 'direction' => 'ltr', |
| 582 | 'default_locale' => 'en_BZ', |
| 583 | 'name' => 'Belize dollar', |
| 584 | 'singular' => 'Belize dollar', |
| 585 | 'plural' => 'Belize dollars', |
| 586 | 'short_symbol' => '$', |
| 587 | 'locales' => $locales['BZD'], |
| 588 | ), |
| 589 | 'CA' => array( |
| 590 | 'currency_code' => 'CAD', |
| 591 | 'currency_pos' => 'left', |
| 592 | 'thousand_sep' => ',', |
| 593 | 'decimal_sep' => '.', |
| 594 | 'num_decimals' => 2, |
| 595 | 'weight_unit' => 'kg', |
| 596 | 'dimension_unit' => 'cm', |
| 597 | 'direction' => 'ltr', |
| 598 | 'default_locale' => 'en_CA', |
| 599 | 'name' => 'Canadian dollar', |
| 600 | 'singular' => 'Canadian dollar', |
| 601 | 'plural' => 'Canadian dollars', |
| 602 | 'short_symbol' => '$', |
| 603 | 'locales' => $locales['CAD'], |
| 604 | ), |
| 605 | 'CC' => array( |
| 606 | 'currency_code' => 'AUD', |
| 607 | 'currency_pos' => 'left', |
| 608 | 'thousand_sep' => ',', |
| 609 | 'decimal_sep' => '.', |
| 610 | 'num_decimals' => 2, |
| 611 | 'weight_unit' => 'kg', |
| 612 | 'dimension_unit' => 'cm', |
| 613 | 'direction' => 'ltr', |
| 614 | 'default_locale' => 'en_CC', |
| 615 | 'name' => 'Australian dollar', |
| 616 | 'singular' => 'Australian dollar', |
| 617 | 'plural' => 'Australian dollars', |
| 618 | 'short_symbol' => '$', |
| 619 | 'locales' => $locales['AUD'], |
| 620 | ), |
| 621 | 'CD' => array( |
| 622 | 'currency_code' => 'CDF', |
| 623 | 'currency_pos' => 'left_space', |
| 624 | 'thousand_sep' => '.', |
| 625 | 'decimal_sep' => ',', |
| 626 | 'num_decimals' => 2, |
| 627 | 'weight_unit' => 'kg', |
| 628 | 'dimension_unit' => 'cm', |
| 629 | 'direction' => 'ltr', |
| 630 | 'default_locale' => 'sw_CD', |
| 631 | 'name' => 'Congolese franc', |
| 632 | 'singular' => 'Congolese franc', |
| 633 | 'plural' => 'Congolese francs', |
| 634 | 'short_symbol' => null, |
| 635 | 'locales' => $locales['CDF'], |
| 636 | ), |
| 637 | 'CF' => array( |
| 638 | 'currency_code' => 'XAF', |
| 639 | 'currency_pos' => 'right_space', |
| 640 | 'thousand_sep' => ' ', |
| 641 | 'decimal_sep' => ',', |
| 642 | 'num_decimals' => 0, |
| 643 | 'weight_unit' => 'kg', |
| 644 | 'dimension_unit' => 'cm', |
| 645 | 'direction' => 'ltr', |
| 646 | 'default_locale' => 'fr_CF', |
| 647 | 'name' => 'Central African CFA franc', |
| 648 | 'singular' => 'Central African CFA franc', |
| 649 | 'plural' => 'Central African CFA francs', |
| 650 | 'short_symbol' => null, |
| 651 | 'locales' => $locales['XAF'], |
| 652 | ), |
| 653 | 'CG' => array( |
| 654 | 'currency_code' => 'XAF', |
| 655 | 'currency_pos' => 'right_space', |
| 656 | 'thousand_sep' => ' ', |
| 657 | 'decimal_sep' => ',', |
| 658 | 'num_decimals' => 0, |
| 659 | 'weight_unit' => 'kg', |
| 660 | 'dimension_unit' => 'cm', |
| 661 | 'direction' => 'ltr', |
| 662 | 'default_locale' => 'fr_CG', |
| 663 | 'name' => 'Central African CFA franc', |
| 664 | 'singular' => 'Central African CFA franc', |
| 665 | 'plural' => 'Central African CFA francs', |
| 666 | 'short_symbol' => null, |
| 667 | 'locales' => $locales['XAF'], |
| 668 | ), |
| 669 | 'CH' => array( |
| 670 | 'currency_code' => 'CHF', |
| 671 | 'currency_pos' => 'left_space', |
| 672 | 'thousand_sep' => '\'', |
| 673 | 'decimal_sep' => '.', |
| 674 | 'num_decimals' => 2, |
| 675 | 'weight_unit' => 'kg', |
| 676 | 'dimension_unit' => 'cm', |
| 677 | 'direction' => 'ltr', |
| 678 | 'default_locale' => 'de_CH', |
| 679 | 'name' => 'Swiss franc', |
| 680 | 'singular' => 'Swiss franc', |
| 681 | 'plural' => 'Swiss francs', |
| 682 | 'short_symbol' => null, |
| 683 | 'locales' => $locales['CHF'], |
| 684 | ), |
| 685 | 'CI' => array( |
| 686 | 'currency_code' => 'XOF', |
| 687 | 'currency_pos' => 'right_space', |
| 688 | 'thousand_sep' => ' ', |
| 689 | 'decimal_sep' => ',', |
| 690 | 'num_decimals' => 0, |
| 691 | 'weight_unit' => 'kg', |
| 692 | 'dimension_unit' => 'cm', |
| 693 | 'direction' => 'ltr', |
| 694 | 'default_locale' => 'fr_CI', |
| 695 | 'name' => 'West African CFA franc', |
| 696 | 'singular' => 'West African CFA franc', |
| 697 | 'plural' => 'West African CFA francs', |
| 698 | 'short_symbol' => null, |
| 699 | 'locales' => $locales['XOF'], |
| 700 | ), |
| 701 | 'CK' => array( |
| 702 | 'currency_code' => 'NZD', |
| 703 | 'currency_pos' => 'left', |
| 704 | 'thousand_sep' => ',', |
| 705 | 'decimal_sep' => '.', |
| 706 | 'num_decimals' => 2, |
| 707 | 'weight_unit' => 'kg', |
| 708 | 'dimension_unit' => 'cm', |
| 709 | 'direction' => 'ltr', |
| 710 | 'default_locale' => 'en_CK', |
| 711 | 'name' => 'New Zealand dollar', |
| 712 | 'singular' => 'New Zealand dollar', |
| 713 | 'plural' => 'New Zealand dollars', |
| 714 | 'short_symbol' => '$', |
| 715 | 'locales' => $locales['NZD'], |
| 716 | ), |
| 717 | 'CL' => array( |
| 718 | 'currency_code' => 'CLP', |
| 719 | 'currency_pos' => 'left', |
| 720 | 'thousand_sep' => '.', |
| 721 | 'decimal_sep' => ',', |
| 722 | 'num_decimals' => 0, |
| 723 | 'weight_unit' => 'kg', |
| 724 | 'dimension_unit' => 'cm', |
| 725 | 'direction' => 'ltr', |
| 726 | 'default_locale' => 'es_CL', |
| 727 | 'name' => 'Chilean peso', |
| 728 | 'singular' => 'Chilean peso', |
| 729 | 'plural' => 'Chilean pesos', |
| 730 | 'short_symbol' => '$', |
| 731 | 'locales' => $locales['CLP'], |
| 732 | ), |
| 733 | 'CM' => array( |
| 734 | 'currency_code' => 'XAF', |
| 735 | 'currency_pos' => 'right_space', |
| 736 | 'thousand_sep' => ' ', |
| 737 | 'decimal_sep' => ',', |
| 738 | 'num_decimals' => 0, |
| 739 | 'weight_unit' => 'kg', |
| 740 | 'dimension_unit' => 'cm', |
| 741 | 'direction' => 'ltr', |
| 742 | 'default_locale' => 'fr_CM', |
| 743 | 'name' => 'Central African CFA franc', |
| 744 | 'singular' => 'Central African CFA franc', |
| 745 | 'plural' => 'Central African CFA francs', |
| 746 | 'short_symbol' => null, |
| 747 | 'locales' => $locales['XAF'], |
| 748 | ), |
| 749 | 'CN' => array( |
| 750 | 'currency_code' => 'CNY', |
| 751 | 'currency_pos' => 'left', |
| 752 | 'thousand_sep' => ',', |
| 753 | 'decimal_sep' => '.', |
| 754 | 'num_decimals' => 2, |
| 755 | 'weight_unit' => 'kg', |
| 756 | 'dimension_unit' => 'cm', |
| 757 | 'direction' => 'ltr', |
| 758 | 'default_locale' => 'zh_CN', |
| 759 | 'name' => 'Chinese yuan', |
| 760 | 'singular' => 'Chinese yuan', |
| 761 | 'plural' => 'Chinese yuan', |
| 762 | 'short_symbol' => '¥', |
| 763 | 'locales' => $locales['CNY'], |
| 764 | ), |
| 765 | 'CO' => array( |
| 766 | 'currency_code' => 'COP', |
| 767 | 'currency_pos' => 'left_space', |
| 768 | 'thousand_sep' => '.', |
| 769 | 'decimal_sep' => ',', |
| 770 | 'num_decimals' => 0, |
| 771 | 'weight_unit' => 'kg', |
| 772 | 'dimension_unit' => 'cm', |
| 773 | 'direction' => 'ltr', |
| 774 | 'default_locale' => 'es_CO', |
| 775 | 'name' => 'Colombian peso', |
| 776 | 'singular' => 'Colombian peso', |
| 777 | 'plural' => 'Colombian pesos', |
| 778 | 'short_symbol' => '$', |
| 779 | 'locales' => $locales['COP'], |
| 780 | ), |
| 781 | 'CR' => array( |
| 782 | 'currency_code' => 'CRC', |
| 783 | 'currency_pos' => 'left', |
| 784 | 'thousand_sep' => ' ', |
| 785 | 'decimal_sep' => ',', |
| 786 | 'num_decimals' => 0, |
| 787 | 'weight_unit' => 'kg', |
| 788 | 'dimension_unit' => 'cm', |
| 789 | 'direction' => 'ltr', |
| 790 | 'default_locale' => 'es_CR', |
| 791 | 'name' => 'Costa Rican colón', |
| 792 | 'singular' => 'Costa Rican colón', |
| 793 | 'plural' => 'Costa Rican colóns', |
| 794 | 'short_symbol' => '₡', |
| 795 | 'locales' => $locales['CRC'], |
| 796 | ), |
| 797 | 'CU' => array( |
| 798 | 'currency_code' => 'CUC', |
| 799 | 'currency_pos' => 'left', |
| 800 | 'thousand_sep' => ',', |
| 801 | 'decimal_sep' => '.', |
| 802 | 'num_decimals' => 2, |
| 803 | 'weight_unit' => 'kg', |
| 804 | 'dimension_unit' => 'cm', |
| 805 | 'direction' => 'ltr', |
| 806 | 'default_locale' => 'es_CU', |
| 807 | 'name' => 'Cuban convertible peso', |
| 808 | 'singular' => 'Cuban convertible peso', |
| 809 | 'plural' => 'Cuban convertible pesos', |
| 810 | 'short_symbol' => '$', |
| 811 | 'locales' => $locales['CUC'], |
| 812 | ), |
| 813 | 'CV' => array( |
| 814 | 'currency_code' => 'CVE', |
| 815 | 'currency_pos' => 'right_space', |
| 816 | 'thousand_sep' => ' ', |
| 817 | 'decimal_sep' => ',', |
| 818 | 'num_decimals' => 2, |
| 819 | 'weight_unit' => 'kg', |
| 820 | 'dimension_unit' => 'cm', |
| 821 | 'direction' => 'ltr', |
| 822 | 'default_locale' => 'pt_CV', |
| 823 | 'name' => 'Cape Verdean escudo', |
| 824 | 'singular' => 'Cape Verdean escudo', |
| 825 | 'plural' => 'Cape Verdean escudos', |
| 826 | 'short_symbol' => null, |
| 827 | 'locales' => $locales['CVE'], |
| 828 | ), |
| 829 | 'CW' => array( |
| 830 | 'currency_code' => 'ANG', |
| 831 | 'currency_pos' => 'left_space', |
| 832 | 'thousand_sep' => '.', |
| 833 | 'decimal_sep' => ',', |
| 834 | 'num_decimals' => 2, |
| 835 | 'weight_unit' => 'kg', |
| 836 | 'dimension_unit' => 'cm', |
| 837 | 'direction' => 'ltr', |
| 838 | 'default_locale' => 'nl_CW', |
| 839 | 'name' => 'Netherlands Antillean guilder', |
| 840 | 'singular' => 'Netherlands Antillean guilder', |
| 841 | 'plural' => 'Netherlands Antillean guilders', |
| 842 | 'short_symbol' => null, |
| 843 | 'locales' => $locales['ANG'], |
| 844 | ), |
| 845 | 'CX' => array( |
| 846 | 'currency_code' => 'AUD', |
| 847 | 'currency_pos' => 'left', |
| 848 | 'thousand_sep' => ',', |
| 849 | 'decimal_sep' => '.', |
| 850 | 'num_decimals' => 2, |
| 851 | 'weight_unit' => 'kg', |
| 852 | 'dimension_unit' => 'cm', |
| 853 | 'direction' => 'ltr', |
| 854 | 'default_locale' => 'en_CX', |
| 855 | 'name' => 'Australian dollar', |
| 856 | 'singular' => 'Australian dollar', |
| 857 | 'plural' => 'Australian dollars', |
| 858 | 'short_symbol' => '$', |
| 859 | 'locales' => $locales['AUD'], |
| 860 | ), |
| 861 | 'CY' => array( |
| 862 | 'currency_code' => 'EUR', |
| 863 | 'currency_pos' => 'right_space', |
| 864 | 'thousand_sep' => '.', |
| 865 | 'decimal_sep' => ',', |
| 866 | 'num_decimals' => 2, |
| 867 | 'weight_unit' => 'kg', |
| 868 | 'dimension_unit' => 'cm', |
| 869 | 'direction' => 'ltr', |
| 870 | 'default_locale' => 'el_CY', |
| 871 | 'name' => 'Euro', |
| 872 | 'singular' => 'euro', |
| 873 | 'plural' => 'euros', |
| 874 | 'short_symbol' => '€', |
| 875 | 'locales' => $locales['EUR'], |
| 876 | ), |
| 877 | 'CZ' => array( |
| 878 | 'currency_code' => 'CZK', |
| 879 | 'currency_pos' => 'right_space', |
| 880 | 'thousand_sep' => ' ', |
| 881 | 'decimal_sep' => ',', |
| 882 | 'num_decimals' => 2, |
| 883 | 'weight_unit' => 'kg', |
| 884 | 'dimension_unit' => 'cm', |
| 885 | 'direction' => 'ltr', |
| 886 | 'default_locale' => 'cs_CZ', |
| 887 | 'name' => 'Czech koruna', |
| 888 | 'singular' => 'Czech koruna', |
| 889 | 'plural' => 'Czech korunas', |
| 890 | 'short_symbol' => 'Kč', |
| 891 | 'locales' => $locales['CZK'], |
| 892 | ), |
| 893 | 'DE' => array( |
| 894 | 'currency_code' => 'EUR', |
| 895 | 'currency_pos' => 'right_space', |
| 896 | 'thousand_sep' => '.', |
| 897 | 'decimal_sep' => ',', |
| 898 | 'num_decimals' => 2, |
| 899 | 'weight_unit' => 'kg', |
| 900 | 'dimension_unit' => 'cm', |
| 901 | 'direction' => 'ltr', |
| 902 | 'default_locale' => 'de_DE', |
| 903 | 'name' => 'Euro', |
| 904 | 'singular' => 'euro', |
| 905 | 'plural' => 'euros', |
| 906 | 'short_symbol' => '€', |
| 907 | 'locales' => $locales['EUR'], |
| 908 | ), |
| 909 | 'DG' => array( |
| 910 | 'currency_code' => 'USD', |
| 911 | 'currency_pos' => 'left', |
| 912 | 'thousand_sep' => ',', |
| 913 | 'decimal_sep' => '.', |
| 914 | 'num_decimals' => 2, |
| 915 | 'weight_unit' => 'kg', |
| 916 | 'dimension_unit' => 'cm', |
| 917 | 'direction' => 'ltr', |
| 918 | 'default_locale' => 'en_DG', |
| 919 | 'name' => 'United States (US) dollar', |
| 920 | 'singular' => 'US dollar', |
| 921 | 'plural' => 'US dollars', |
| 922 | 'short_symbol' => '$', |
| 923 | 'locales' => $locales['USD'], |
| 924 | ), |
| 925 | 'DJ' => array( |
| 926 | 'currency_code' => 'DJF', |
| 927 | 'currency_pos' => 'right_space', |
| 928 | 'thousand_sep' => '.', |
| 929 | 'decimal_sep' => ',', |
| 930 | 'num_decimals' => 0, |
| 931 | 'weight_unit' => 'kg', |
| 932 | 'dimension_unit' => 'cm', |
| 933 | 'direction' => 'rtl', |
| 934 | 'default_locale' => 'ar_DJ', |
| 935 | 'name' => 'Djiboutian franc', |
| 936 | 'singular' => 'Djiboutian franc', |
| 937 | 'plural' => 'Djiboutian francs', |
| 938 | 'short_symbol' => null, |
| 939 | 'locales' => $locales['DJF'], |
| 940 | ), |
| 941 | 'DK' => array( |
| 942 | 'currency_code' => 'DKK', |
| 943 | 'currency_pos' => 'right_space', |
| 944 | 'thousand_sep' => '.', |
| 945 | 'decimal_sep' => ',', |
| 946 | 'num_decimals' => 2, |
| 947 | 'weight_unit' => 'kg', |
| 948 | 'dimension_unit' => 'cm', |
| 949 | 'direction' => 'ltr', |
| 950 | 'default_locale' => 'da_DK', |
| 951 | 'name' => 'Danish krone', |
| 952 | 'singular' => 'Danish krone', |
| 953 | 'plural' => 'Danish kroner', |
| 954 | 'short_symbol' => 'kr.', |
| 955 | 'locales' => $locales['DKK'], |
| 956 | ), |
| 957 | 'DM' => array( |
| 958 | 'currency_code' => 'XCD', |
| 959 | 'currency_pos' => 'left', |
| 960 | 'thousand_sep' => ',', |
| 961 | 'decimal_sep' => '.', |
| 962 | 'num_decimals' => 2, |
| 963 | 'weight_unit' => 'kg', |
| 964 | 'dimension_unit' => 'cm', |
| 965 | 'direction' => 'ltr', |
| 966 | 'default_locale' => 'en_DM', |
| 967 | 'name' => 'East Caribbean dollar', |
| 968 | 'singular' => 'East Caribbean dollar', |
| 969 | 'plural' => 'East Caribbean dollars', |
| 970 | 'short_symbol' => '$', |
| 971 | 'locales' => $locales['XCD'], |
| 972 | ), |
| 973 | 'DO' => array( |
| 974 | 'currency_code' => 'DOP', |
| 975 | 'currency_pos' => 'left', |
| 976 | 'thousand_sep' => ',', |
| 977 | 'decimal_sep' => '.', |
| 978 | 'num_decimals' => 2, |
| 979 | 'weight_unit' => 'kg', |
| 980 | 'dimension_unit' => 'cm', |
| 981 | 'direction' => 'ltr', |
| 982 | 'default_locale' => 'es_DO', |
| 983 | 'name' => 'Dominican peso', |
| 984 | 'singular' => 'Dominican peso', |
| 985 | 'plural' => 'Dominican pesos', |
| 986 | 'short_symbol' => '$', |
| 987 | 'locales' => $locales['DOP'], |
| 988 | ), |
| 989 | 'DZ' => array( |
| 990 | 'currency_code' => 'DZD', |
| 991 | 'currency_pos' => 'left_space', |
| 992 | 'thousand_sep' => '.', |
| 993 | 'decimal_sep' => ',', |
| 994 | 'num_decimals' => 2, |
| 995 | 'weight_unit' => 'kg', |
| 996 | 'dimension_unit' => 'cm', |
| 997 | 'direction' => 'rtl', |
| 998 | 'default_locale' => 'ar_DZ', |
| 999 | 'name' => 'Algerian dinar', |
| 1000 | 'singular' => 'Algerian dinar', |
| 1001 | 'plural' => 'Algerian dinars', |
| 1002 | 'short_symbol' => null, |
| 1003 | 'locales' => $locales['DZD'], |
| 1004 | ), |
| 1005 | 'EA' => array( |
| 1006 | 'currency_code' => 'EUR', |
| 1007 | 'currency_pos' => 'right_space', |
| 1008 | 'thousand_sep' => '.', |
| 1009 | 'decimal_sep' => ',', |
| 1010 | 'num_decimals' => 2, |
| 1011 | 'weight_unit' => 'kg', |
| 1012 | 'dimension_unit' => 'cm', |
| 1013 | 'direction' => 'ltr', |
| 1014 | 'default_locale' => 'es_EA', |
| 1015 | 'name' => 'Euro', |
| 1016 | 'singular' => 'euro', |
| 1017 | 'plural' => 'euros', |
| 1018 | 'short_symbol' => '€', |
| 1019 | 'locales' => $locales['EUR'], |
| 1020 | ), |
| 1021 | 'EC' => array( |
| 1022 | 'currency_code' => 'USD', |
| 1023 | 'currency_pos' => 'left', |
| 1024 | 'thousand_sep' => '.', |
| 1025 | 'decimal_sep' => ',', |
| 1026 | 'num_decimals' => 2, |
| 1027 | 'weight_unit' => 'kg', |
| 1028 | 'dimension_unit' => 'cm', |
| 1029 | 'direction' => 'ltr', |
| 1030 | 'default_locale' => 'es_EC', |
| 1031 | 'name' => 'United States (US) dollar', |
| 1032 | 'singular' => 'US dollar', |
| 1033 | 'plural' => 'US dollars', |
| 1034 | 'short_symbol' => '$', |
| 1035 | 'locales' => $locales['USD'], |
| 1036 | ), |
| 1037 | 'EE' => array( |
| 1038 | 'currency_code' => 'EUR', |
| 1039 | 'currency_pos' => 'right_space', |
| 1040 | 'thousand_sep' => ' ', |
| 1041 | 'decimal_sep' => ',', |
| 1042 | 'num_decimals' => 2, |
| 1043 | 'weight_unit' => 'kg', |
| 1044 | 'dimension_unit' => 'cm', |
| 1045 | 'direction' => 'ltr', |
| 1046 | 'default_locale' => 'et_EE', |
| 1047 | 'name' => 'Euro', |
| 1048 | 'singular' => 'euro', |
| 1049 | 'plural' => 'euros', |
| 1050 | 'short_symbol' => '€', |
| 1051 | 'locales' => $locales['EUR'], |
| 1052 | ), |
| 1053 | 'EG' => array( |
| 1054 | 'currency_code' => 'EGP', |
| 1055 | 'currency_pos' => 'right_space', |
| 1056 | 'thousand_sep' => '.', |
| 1057 | 'decimal_sep' => ',', |
| 1058 | 'num_decimals' => 2, |
| 1059 | 'weight_unit' => 'kg', |
| 1060 | 'dimension_unit' => 'cm', |
| 1061 | 'direction' => 'rtl', |
| 1062 | 'default_locale' => 'ar_EG', |
| 1063 | 'name' => 'Egyptian pound', |
| 1064 | 'singular' => 'Egyptian pound', |
| 1065 | 'plural' => 'Egyptian pounds', |
| 1066 | 'short_symbol' => 'E£', |
| 1067 | 'locales' => $locales['EGP'], |
| 1068 | ), |
| 1069 | 'EH' => array( |
| 1070 | 'currency_code' => 'MAD', |
| 1071 | 'currency_pos' => 'left_space', |
| 1072 | 'thousand_sep' => ',', |
| 1073 | 'decimal_sep' => '.', |
| 1074 | 'num_decimals' => 2, |
| 1075 | 'weight_unit' => 'kg', |
| 1076 | 'dimension_unit' => 'cm', |
| 1077 | 'direction' => 'rtl', |
| 1078 | 'default_locale' => 'ar_EH', |
| 1079 | 'name' => 'Moroccan dirham', |
| 1080 | 'singular' => 'Moroccan dirham', |
| 1081 | 'plural' => 'Moroccan dirhams', |
| 1082 | 'short_symbol' => null, |
| 1083 | 'locales' => $locales['MAD'], |
| 1084 | ), |
| 1085 | 'ER' => array( |
| 1086 | 'currency_code' => 'ERN', |
| 1087 | 'currency_pos' => 'left', |
| 1088 | 'thousand_sep' => ',', |
| 1089 | 'decimal_sep' => '.', |
| 1090 | 'num_decimals' => 2, |
| 1091 | 'weight_unit' => 'kg', |
| 1092 | 'dimension_unit' => 'cm', |
| 1093 | 'direction' => 'ltr', |
| 1094 | 'default_locale' => 'ti_ER', |
| 1095 | 'name' => 'Eritrean nakfa', |
| 1096 | 'singular' => 'Eritrean nakfa', |
| 1097 | 'plural' => 'Eritrean nakfas', |
| 1098 | 'short_symbol' => null, |
| 1099 | 'locales' => $locales['ERN'], |
| 1100 | ), |
| 1101 | 'ES' => array( |
| 1102 | 'currency_code' => 'EUR', |
| 1103 | 'currency_pos' => 'right_space', |
| 1104 | 'thousand_sep' => '.', |
| 1105 | 'decimal_sep' => ',', |
| 1106 | 'num_decimals' => 2, |
| 1107 | 'weight_unit' => 'kg', |
| 1108 | 'dimension_unit' => 'cm', |
| 1109 | 'direction' => 'ltr', |
| 1110 | 'default_locale' => 'es_ES', |
| 1111 | 'name' => 'Euro', |
| 1112 | 'singular' => 'euro', |
| 1113 | 'plural' => 'euros', |
| 1114 | 'short_symbol' => '€', |
| 1115 | 'locales' => $locales['EUR'], |
| 1116 | ), |
| 1117 | 'ET' => array( |
| 1118 | 'currency_code' => 'ETB', |
| 1119 | 'currency_pos' => 'left', |
| 1120 | 'thousand_sep' => ',', |
| 1121 | 'decimal_sep' => '.', |
| 1122 | 'num_decimals' => 2, |
| 1123 | 'weight_unit' => 'kg', |
| 1124 | 'dimension_unit' => 'cm', |
| 1125 | 'direction' => 'ltr', |
| 1126 | 'default_locale' => 'am_ET', |
| 1127 | 'name' => 'Ethiopian birr', |
| 1128 | 'singular' => 'Ethiopian birr', |
| 1129 | 'plural' => 'Ethiopian birrs', |
| 1130 | 'short_symbol' => null, |
| 1131 | 'locales' => $locales['ETB'], |
| 1132 | ), |
| 1133 | 'FI' => array( |
| 1134 | 'currency_code' => 'EUR', |
| 1135 | 'currency_pos' => 'right_space', |
| 1136 | 'thousand_sep' => ' ', |
| 1137 | 'decimal_sep' => ',', |
| 1138 | 'num_decimals' => 2, |
| 1139 | 'weight_unit' => 'kg', |
| 1140 | 'dimension_unit' => 'cm', |
| 1141 | 'direction' => 'ltr', |
| 1142 | 'default_locale' => 'fi_FI', |
| 1143 | 'name' => 'Euro', |
| 1144 | 'singular' => 'euro', |
| 1145 | 'plural' => 'euros', |
| 1146 | 'short_symbol' => '€', |
| 1147 | 'locales' => $locales['EUR'], |
| 1148 | ), |
| 1149 | 'FJ' => array( |
| 1150 | 'currency_code' => 'FJD', |
| 1151 | 'currency_pos' => 'left', |
| 1152 | 'thousand_sep' => ',', |
| 1153 | 'decimal_sep' => '.', |
| 1154 | 'num_decimals' => 2, |
| 1155 | 'weight_unit' => 'kg', |
| 1156 | 'dimension_unit' => 'cm', |
| 1157 | 'direction' => 'ltr', |
| 1158 | 'default_locale' => 'en_FJ', |
| 1159 | 'name' => 'Fijian dollar', |
| 1160 | 'singular' => 'Fijian dollar', |
| 1161 | 'plural' => 'Fijian dollars', |
| 1162 | 'short_symbol' => '$', |
| 1163 | 'locales' => $locales['FJD'], |
| 1164 | ), |
| 1165 | 'FK' => array( |
| 1166 | 'currency_code' => 'FKP', |
| 1167 | 'currency_pos' => 'left', |
| 1168 | 'thousand_sep' => ',', |
| 1169 | 'decimal_sep' => '.', |
| 1170 | 'num_decimals' => 2, |
| 1171 | 'weight_unit' => 'kg', |
| 1172 | 'dimension_unit' => 'cm', |
| 1173 | 'direction' => 'ltr', |
| 1174 | 'default_locale' => 'en_FK', |
| 1175 | 'name' => 'Falkland Islands pound', |
| 1176 | 'singular' => 'Falkland Islands pound', |
| 1177 | 'plural' => 'Falkland Islands pounds', |
| 1178 | 'short_symbol' => '£', |
| 1179 | 'locales' => $locales['FKP'], |
| 1180 | ), |
| 1181 | 'FM' => array( |
| 1182 | 'currency_code' => 'USD', |
| 1183 | 'currency_pos' => 'left', |
| 1184 | 'thousand_sep' => ',', |
| 1185 | 'decimal_sep' => '.', |
| 1186 | 'num_decimals' => 2, |
| 1187 | 'weight_unit' => 'kg', |
| 1188 | 'dimension_unit' => 'cm', |
| 1189 | 'direction' => 'ltr', |
| 1190 | 'default_locale' => 'en_FM', |
| 1191 | 'name' => 'United States (US) dollar', |
| 1192 | 'singular' => 'US dollar', |
| 1193 | 'plural' => 'US dollars', |
| 1194 | 'short_symbol' => '$', |
| 1195 | 'locales' => $locales['USD'], |
| 1196 | ), |
| 1197 | 'FO' => array( |
| 1198 | 'currency_code' => 'DKK', |
| 1199 | 'currency_pos' => 'right_space', |
| 1200 | 'thousand_sep' => '.', |
| 1201 | 'decimal_sep' => ',', |
| 1202 | 'num_decimals' => 2, |
| 1203 | 'weight_unit' => 'kg', |
| 1204 | 'dimension_unit' => 'cm', |
| 1205 | 'direction' => 'ltr', |
| 1206 | 'default_locale' => 'fo_FO', |
| 1207 | 'name' => 'Danish krone', |
| 1208 | 'singular' => 'Danish krone', |
| 1209 | 'plural' => 'Danish kroner', |
| 1210 | 'short_symbol' => 'kr', |
| 1211 | 'locales' => $locales['DKK'], |
| 1212 | ), |
| 1213 | 'FR' => array( |
| 1214 | 'currency_code' => 'EUR', |
| 1215 | 'currency_pos' => 'right_space', |
| 1216 | 'thousand_sep' => ' ', |
| 1217 | 'decimal_sep' => ',', |
| 1218 | 'num_decimals' => 2, |
| 1219 | 'weight_unit' => 'kg', |
| 1220 | 'dimension_unit' => 'cm', |
| 1221 | 'direction' => 'ltr', |
| 1222 | 'default_locale' => 'fr_FR', |
| 1223 | 'name' => 'Euro', |
| 1224 | 'singular' => 'euro', |
| 1225 | 'plural' => 'euros', |
| 1226 | 'short_symbol' => '€', |
| 1227 | 'locales' => $locales['EUR'], |
| 1228 | ), |
| 1229 | 'GA' => array( |
| 1230 | 'currency_code' => 'XAF', |
| 1231 | 'currency_pos' => 'right_space', |
| 1232 | 'thousand_sep' => ' ', |
| 1233 | 'decimal_sep' => ',', |
| 1234 | 'num_decimals' => 0, |
| 1235 | 'weight_unit' => 'kg', |
| 1236 | 'dimension_unit' => 'cm', |
| 1237 | 'direction' => 'ltr', |
| 1238 | 'default_locale' => 'fr_GA', |
| 1239 | 'name' => 'Central African CFA franc', |
| 1240 | 'singular' => 'Central African CFA franc', |
| 1241 | 'plural' => 'Central African CFA francs', |
| 1242 | 'short_symbol' => null, |
| 1243 | 'locales' => $locales['XAF'], |
| 1244 | ), |
| 1245 | 'GB' => array( |
| 1246 | 'currency_code' => 'GBP', |
| 1247 | 'currency_pos' => 'left', |
| 1248 | 'thousand_sep' => ',', |
| 1249 | 'decimal_sep' => '.', |
| 1250 | 'num_decimals' => 2, |
| 1251 | 'weight_unit' => 'kg', |
| 1252 | 'dimension_unit' => 'cm', |
| 1253 | 'direction' => 'ltr', |
| 1254 | 'default_locale' => 'en_GB', |
| 1255 | 'name' => 'Pound sterling', |
| 1256 | 'singular' => 'British pound', |
| 1257 | 'plural' => 'British pounds', |
| 1258 | 'short_symbol' => '£', |
| 1259 | 'locales' => $locales['GBP'], |
| 1260 | ), |
| 1261 | 'GD' => array( |
| 1262 | 'currency_code' => 'XCD', |
| 1263 | 'currency_pos' => 'left', |
| 1264 | 'thousand_sep' => ',', |
| 1265 | 'decimal_sep' => '.', |
| 1266 | 'num_decimals' => 2, |
| 1267 | 'weight_unit' => 'kg', |
| 1268 | 'dimension_unit' => 'cm', |
| 1269 | 'direction' => 'ltr', |
| 1270 | 'default_locale' => 'en_GD', |
| 1271 | 'name' => 'East Caribbean dollar', |
| 1272 | 'singular' => 'East Caribbean dollar', |
| 1273 | 'plural' => 'East Caribbean dollars', |
| 1274 | 'short_symbol' => '$', |
| 1275 | 'locales' => $locales['XCD'], |
| 1276 | ), |
| 1277 | 'GE' => array( |
| 1278 | 'currency_code' => 'GEL', |
| 1279 | 'currency_pos' => 'right_space', |
| 1280 | 'thousand_sep' => ' ', |
| 1281 | 'decimal_sep' => ',', |
| 1282 | 'num_decimals' => 2, |
| 1283 | 'weight_unit' => 'kg', |
| 1284 | 'dimension_unit' => 'cm', |
| 1285 | 'direction' => 'ltr', |
| 1286 | 'default_locale' => 'ka_GE', |
| 1287 | 'name' => 'Georgian lari', |
| 1288 | 'singular' => 'Georgian lari', |
| 1289 | 'plural' => 'Georgian laris', |
| 1290 | 'short_symbol' => '₾', |
| 1291 | 'locales' => $locales['GEL'], |
| 1292 | ), |
| 1293 | 'GF' => array( |
| 1294 | 'currency_code' => 'EUR', |
| 1295 | 'currency_pos' => 'right_space', |
| 1296 | 'thousand_sep' => ' ', |
| 1297 | 'decimal_sep' => ',', |
| 1298 | 'num_decimals' => 2, |
| 1299 | 'weight_unit' => 'kg', |
| 1300 | 'dimension_unit' => 'cm', |
| 1301 | 'direction' => 'ltr', |
| 1302 | 'default_locale' => 'fr_GF', |
| 1303 | 'name' => 'Euro', |
| 1304 | 'singular' => 'euro', |
| 1305 | 'plural' => 'euros', |
| 1306 | 'short_symbol' => '€', |
| 1307 | 'locales' => $locales['EUR'], |
| 1308 | ), |
| 1309 | 'GG' => array( |
| 1310 | 'currency_code' => 'GBP', |
| 1311 | 'currency_pos' => 'left', |
| 1312 | 'thousand_sep' => ',', |
| 1313 | 'decimal_sep' => '.', |
| 1314 | 'num_decimals' => 2, |
| 1315 | 'weight_unit' => 'kg', |
| 1316 | 'dimension_unit' => 'cm', |
| 1317 | 'direction' => 'ltr', |
| 1318 | 'default_locale' => 'en_GG', |
| 1319 | 'name' => 'Pound sterling', |
| 1320 | 'singular' => 'British pound', |
| 1321 | 'plural' => 'British pounds', |
| 1322 | 'short_symbol' => '£', |
| 1323 | 'locales' => $locales['GBP'], |
| 1324 | ), |
| 1325 | 'GH' => array( |
| 1326 | 'currency_code' => 'GHS', |
| 1327 | 'currency_pos' => 'left', |
| 1328 | 'thousand_sep' => ',', |
| 1329 | 'decimal_sep' => '.', |
| 1330 | 'num_decimals' => 2, |
| 1331 | 'weight_unit' => 'kg', |
| 1332 | 'dimension_unit' => 'cm', |
| 1333 | 'direction' => 'ltr', |
| 1334 | 'default_locale' => 'ak_GH', |
| 1335 | 'name' => 'Ghana cedi', |
| 1336 | 'singular' => 'Ghanaian cedi', |
| 1337 | 'plural' => 'Ghanaian cedis', |
| 1338 | 'short_symbol' => 'GH₵', |
| 1339 | 'locales' => $locales['GHS'], |
| 1340 | ), |
| 1341 | 'GI' => array( |
| 1342 | 'currency_code' => 'GIP', |
| 1343 | 'currency_pos' => 'left', |
| 1344 | 'thousand_sep' => ',', |
| 1345 | 'decimal_sep' => '.', |
| 1346 | 'num_decimals' => 2, |
| 1347 | 'weight_unit' => 'kg', |
| 1348 | 'dimension_unit' => 'cm', |
| 1349 | 'direction' => 'ltr', |
| 1350 | 'default_locale' => 'en_GI', |
| 1351 | 'name' => 'Gibraltar pound', |
| 1352 | 'singular' => 'Gibraltar pound', |
| 1353 | 'plural' => 'Gibraltar pounds', |
| 1354 | 'short_symbol' => '£', |
| 1355 | 'locales' => $locales['GIP'], |
| 1356 | ), |
| 1357 | 'GL' => array( |
| 1358 | 'currency_code' => 'DKK', |
| 1359 | 'currency_pos' => 'left', |
| 1360 | 'thousand_sep' => '.', |
| 1361 | 'decimal_sep' => ',', |
| 1362 | 'num_decimals' => 2, |
| 1363 | 'weight_unit' => 'kg', |
| 1364 | 'dimension_unit' => 'cm', |
| 1365 | 'direction' => 'ltr', |
| 1366 | 'default_locale' => 'kl_GL', |
| 1367 | 'name' => 'Danish krone', |
| 1368 | 'singular' => 'Danish krone', |
| 1369 | 'plural' => 'Danish kroner', |
| 1370 | 'short_symbol' => 'kr', |
| 1371 | 'locales' => $locales['DKK'], |
| 1372 | ), |
| 1373 | 'GM' => array( |
| 1374 | 'currency_code' => 'GMD', |
| 1375 | 'currency_pos' => 'left', |
| 1376 | 'thousand_sep' => ',', |
| 1377 | 'decimal_sep' => '.', |
| 1378 | 'num_decimals' => 2, |
| 1379 | 'weight_unit' => 'kg', |
| 1380 | 'dimension_unit' => 'cm', |
| 1381 | 'direction' => 'ltr', |
| 1382 | 'default_locale' => 'en_GM', |
| 1383 | 'name' => 'Gambian dalasi', |
| 1384 | 'singular' => 'Gambian dalasi', |
| 1385 | 'plural' => 'Gambian dalasis', |
| 1386 | 'short_symbol' => null, |
| 1387 | 'locales' => $locales['GMD'], |
| 1388 | ), |
| 1389 | 'GN' => array( |
| 1390 | 'currency_code' => 'GNF', |
| 1391 | 'currency_pos' => 'right_space', |
| 1392 | 'thousand_sep' => ' ', |
| 1393 | 'decimal_sep' => ',', |
| 1394 | 'num_decimals' => 0, |
| 1395 | 'weight_unit' => 'kg', |
| 1396 | 'dimension_unit' => 'cm', |
| 1397 | 'direction' => 'ltr', |
| 1398 | 'default_locale' => 'fr_GN', |
| 1399 | 'name' => 'Guinean franc', |
| 1400 | 'singular' => 'Guinean franc', |
| 1401 | 'plural' => 'Guinean francs', |
| 1402 | 'short_symbol' => 'FG', |
| 1403 | 'locales' => $locales['GNF'], |
| 1404 | ), |
| 1405 | 'GP' => array( |
| 1406 | 'currency_code' => 'EUR', |
| 1407 | 'currency_pos' => 'right_space', |
| 1408 | 'thousand_sep' => ' ', |
| 1409 | 'decimal_sep' => ',', |
| 1410 | 'num_decimals' => 2, |
| 1411 | 'weight_unit' => 'kg', |
| 1412 | 'dimension_unit' => 'cm', |
| 1413 | 'direction' => 'ltr', |
| 1414 | 'default_locale' => 'fr_GP', |
| 1415 | 'name' => 'Euro', |
| 1416 | 'singular' => 'euro', |
| 1417 | 'plural' => 'euros', |
| 1418 | 'short_symbol' => '€', |
| 1419 | 'locales' => $locales['EUR'], |
| 1420 | ), |
| 1421 | 'GQ' => array( |
| 1422 | 'currency_code' => 'XAF', |
| 1423 | 'currency_pos' => 'left', |
| 1424 | 'thousand_sep' => '.', |
| 1425 | 'decimal_sep' => ',', |
| 1426 | 'num_decimals' => 0, |
| 1427 | 'weight_unit' => 'kg', |
| 1428 | 'dimension_unit' => 'cm', |
| 1429 | 'direction' => 'ltr', |
| 1430 | 'default_locale' => 'es_GQ', |
| 1431 | 'name' => 'Central African CFA franc', |
| 1432 | 'singular' => 'Central African CFA franc', |
| 1433 | 'plural' => 'Central African CFA francs', |
| 1434 | 'short_symbol' => null, |
| 1435 | 'locales' => $locales['XAF'], |
| 1436 | ), |
| 1437 | 'GR' => array( |
| 1438 | 'currency_code' => 'EUR', |
| 1439 | 'currency_pos' => 'right_space', |
| 1440 | 'thousand_sep' => '.', |
| 1441 | 'decimal_sep' => ',', |
| 1442 | 'num_decimals' => 2, |
| 1443 | 'weight_unit' => 'kg', |
| 1444 | 'dimension_unit' => 'cm', |
| 1445 | 'direction' => 'ltr', |
| 1446 | 'default_locale' => 'el_GR', |
| 1447 | 'name' => 'Euro', |
| 1448 | 'singular' => 'euro', |
| 1449 | 'plural' => 'euros', |
| 1450 | 'short_symbol' => '€', |
| 1451 | 'locales' => $locales['EUR'], |
| 1452 | ), |
| 1453 | 'GT' => array( |
| 1454 | 'currency_code' => 'GTQ', |
| 1455 | 'currency_pos' => 'left', |
| 1456 | 'thousand_sep' => ',', |
| 1457 | 'decimal_sep' => '.', |
| 1458 | 'num_decimals' => 2, |
| 1459 | 'weight_unit' => 'kg', |
| 1460 | 'dimension_unit' => 'cm', |
| 1461 | 'direction' => 'ltr', |
| 1462 | 'default_locale' => 'es_GT', |
| 1463 | 'name' => 'Guatemalan quetzal', |
| 1464 | 'singular' => 'Guatemalan quetzal', |
| 1465 | 'plural' => 'Guatemalan quetzals', |
| 1466 | 'short_symbol' => 'Q', |
| 1467 | 'locales' => $locales['GTQ'], |
| 1468 | ), |
| 1469 | 'GU' => array( |
| 1470 | 'currency_code' => 'USD', |
| 1471 | 'currency_pos' => 'left', |
| 1472 | 'thousand_sep' => ',', |
| 1473 | 'decimal_sep' => '.', |
| 1474 | 'num_decimals' => 2, |
| 1475 | 'weight_unit' => 'lbs', |
| 1476 | 'dimension_unit' => 'in', |
| 1477 | 'direction' => 'ltr', |
| 1478 | 'default_locale' => 'en_GU', |
| 1479 | 'name' => 'United States (US) dollar', |
| 1480 | 'singular' => 'US dollar', |
| 1481 | 'plural' => 'US dollars', |
| 1482 | 'short_symbol' => '$', |
| 1483 | 'locales' => $locales['USD'], |
| 1484 | ), |
| 1485 | 'GW' => array( |
| 1486 | 'currency_code' => 'XOF', |
| 1487 | 'currency_pos' => 'right_space', |
| 1488 | 'thousand_sep' => ' ', |
| 1489 | 'decimal_sep' => ',', |
| 1490 | 'num_decimals' => 0, |
| 1491 | 'weight_unit' => 'kg', |
| 1492 | 'dimension_unit' => 'cm', |
| 1493 | 'direction' => 'ltr', |
| 1494 | 'default_locale' => 'pt_GW', |
| 1495 | 'name' => 'West African CFA franc', |
| 1496 | 'singular' => 'West African CFA franc', |
| 1497 | 'plural' => 'West African CFA francs', |
| 1498 | 'short_symbol' => null, |
| 1499 | 'locales' => $locales['XOF'], |
| 1500 | ), |
| 1501 | 'GY' => array( |
| 1502 | 'currency_code' => 'GYD', |
| 1503 | 'currency_pos' => 'left', |
| 1504 | 'thousand_sep' => ',', |
| 1505 | 'decimal_sep' => '.', |
| 1506 | 'num_decimals' => 0, |
| 1507 | 'weight_unit' => 'kg', |
| 1508 | 'dimension_unit' => 'cm', |
| 1509 | 'direction' => 'ltr', |
| 1510 | 'default_locale' => 'en_GY', |
| 1511 | 'name' => 'Guyanese dollar', |
| 1512 | 'singular' => 'Guyanaese dollar', |
| 1513 | 'plural' => 'Guyanaese dollars', |
| 1514 | 'short_symbol' => '$', |
| 1515 | 'locales' => $locales['GYD'], |
| 1516 | ), |
| 1517 | 'HK' => array( |
| 1518 | 'currency_code' => 'HKD', |
| 1519 | 'currency_pos' => 'left', |
| 1520 | 'thousand_sep' => ',', |
| 1521 | 'decimal_sep' => '.', |
| 1522 | 'num_decimals' => 2, |
| 1523 | 'weight_unit' => 'kg', |
| 1524 | 'dimension_unit' => 'cm', |
| 1525 | 'direction' => 'ltr', |
| 1526 | 'default_locale' => 'zh_Hant_HK', |
| 1527 | 'name' => 'Hong Kong dollar', |
| 1528 | 'singular' => 'Hong Kong dollar', |
| 1529 | 'plural' => 'Hong Kong dollars', |
| 1530 | 'short_symbol' => '$', |
| 1531 | 'locales' => $locales['HKD'], |
| 1532 | ), |
| 1533 | 'HN' => array( |
| 1534 | 'currency_code' => 'HNL', |
| 1535 | 'currency_pos' => 'left', |
| 1536 | 'thousand_sep' => ',', |
| 1537 | 'decimal_sep' => '.', |
| 1538 | 'num_decimals' => 2, |
| 1539 | 'weight_unit' => 'kg', |
| 1540 | 'dimension_unit' => 'cm', |
| 1541 | 'direction' => 'ltr', |
| 1542 | 'default_locale' => 'es_HN', |
| 1543 | 'name' => 'Honduran lempira', |
| 1544 | 'singular' => 'Honduran lempira', |
| 1545 | 'plural' => 'Honduran lempiras', |
| 1546 | 'short_symbol' => 'L', |
| 1547 | 'locales' => $locales['HNL'], |
| 1548 | ), |
| 1549 | 'HR' => array( |
| 1550 | 'currency_code' => 'EUR', |
| 1551 | 'currency_pos' => 'right_space', |
| 1552 | 'thousand_sep' => '.', |
| 1553 | 'decimal_sep' => ',', |
| 1554 | 'num_decimals' => 2, |
| 1555 | 'weight_unit' => 'kg', |
| 1556 | 'dimension_unit' => 'cm', |
| 1557 | 'direction' => 'ltr', |
| 1558 | 'default_locale' => 'hr_HR', |
| 1559 | 'name' => 'Euro', |
| 1560 | 'singular' => 'euro', |
| 1561 | 'plural' => 'euros', |
| 1562 | 'short_symbol' => '€', |
| 1563 | 'locales' => $locales['EUR'], |
| 1564 | ), |
| 1565 | 'HT' => array( |
| 1566 | 'currency_code' => 'USD', |
| 1567 | 'currency_pos' => 'right_space', |
| 1568 | 'thousand_sep' => ' ', |
| 1569 | 'decimal_sep' => ',', |
| 1570 | 'num_decimals' => 2, |
| 1571 | 'weight_unit' => 'kg', |
| 1572 | 'dimension_unit' => 'cm', |
| 1573 | 'direction' => 'ltr', |
| 1574 | 'default_locale' => 'fr_HT', |
| 1575 | 'name' => 'United States (US) dollar', |
| 1576 | 'singular' => 'US dollar', |
| 1577 | 'plural' => 'US dollars', |
| 1578 | 'short_symbol' => '$', |
| 1579 | 'locales' => $locales['USD'], |
| 1580 | ), |
| 1581 | 'HU' => array( |
| 1582 | 'currency_code' => 'HUF', |
| 1583 | 'currency_pos' => 'right_space', |
| 1584 | 'thousand_sep' => ' ', |
| 1585 | 'decimal_sep' => ',', |
| 1586 | 'num_decimals' => 2, |
| 1587 | 'weight_unit' => 'kg', |
| 1588 | 'dimension_unit' => 'cm', |
| 1589 | 'direction' => 'ltr', |
| 1590 | 'default_locale' => 'hu_HU', |
| 1591 | 'name' => 'Hungarian forint', |
| 1592 | 'singular' => 'Hungarian forint', |
| 1593 | 'plural' => 'Hungarian forints', |
| 1594 | 'short_symbol' => 'Ft', |
| 1595 | 'locales' => $locales['HUF'], |
| 1596 | ), |
| 1597 | 'IC' => array( |
| 1598 | 'currency_code' => 'EUR', |
| 1599 | 'currency_pos' => 'right_space', |
| 1600 | 'thousand_sep' => '.', |
| 1601 | 'decimal_sep' => ',', |
| 1602 | 'num_decimals' => 2, |
| 1603 | 'weight_unit' => 'kg', |
| 1604 | 'dimension_unit' => 'cm', |
| 1605 | 'direction' => 'ltr', |
| 1606 | 'default_locale' => 'es_IC', |
| 1607 | 'name' => 'Euro', |
| 1608 | 'singular' => 'euro', |
| 1609 | 'plural' => 'euros', |
| 1610 | 'short_symbol' => '€', |
| 1611 | 'locales' => $locales['EUR'], |
| 1612 | ), |
| 1613 | 'ID' => array( |
| 1614 | 'currency_code' => 'IDR', |
| 1615 | 'currency_pos' => 'left', |
| 1616 | 'thousand_sep' => '.', |
| 1617 | 'decimal_sep' => ',', |
| 1618 | 'num_decimals' => 0, |
| 1619 | 'weight_unit' => 'kg', |
| 1620 | 'dimension_unit' => 'cm', |
| 1621 | 'direction' => 'ltr', |
| 1622 | 'default_locale' => 'id_ID', |
| 1623 | 'name' => 'Indonesian rupiah', |
| 1624 | 'singular' => 'Indonesian rupiah', |
| 1625 | 'plural' => 'Indonesian rupiahs', |
| 1626 | 'short_symbol' => 'Rp', |
| 1627 | 'locales' => $locales['IDR'], |
| 1628 | ), |
| 1629 | 'IE' => array( |
| 1630 | 'currency_code' => 'EUR', |
| 1631 | 'currency_pos' => 'left', |
| 1632 | 'thousand_sep' => ',', |
| 1633 | 'decimal_sep' => '.', |
| 1634 | 'num_decimals' => 2, |
| 1635 | 'weight_unit' => 'kg', |
| 1636 | 'dimension_unit' => 'cm', |
| 1637 | 'direction' => 'ltr', |
| 1638 | 'default_locale' => 'en_IE', |
| 1639 | 'name' => 'Euro', |
| 1640 | 'singular' => 'euro', |
| 1641 | 'plural' => 'euros', |
| 1642 | 'short_symbol' => '€', |
| 1643 | 'locales' => $locales['EUR'], |
| 1644 | ), |
| 1645 | 'IL' => array( |
| 1646 | 'currency_code' => 'ILS', |
| 1647 | 'currency_pos' => 'right_space', |
| 1648 | 'thousand_sep' => ',', |
| 1649 | 'decimal_sep' => '.', |
| 1650 | 'num_decimals' => 2, |
| 1651 | 'weight_unit' => 'kg', |
| 1652 | 'dimension_unit' => 'cm', |
| 1653 | 'direction' => 'rtl', |
| 1654 | 'default_locale' => 'he_IL', |
| 1655 | 'name' => 'Israeli new shekel', |
| 1656 | 'singular' => 'Israeli new shekel', |
| 1657 | 'plural' => 'Israeli new shekels', |
| 1658 | 'short_symbol' => '₪', |
| 1659 | 'locales' => $locales['ILS'], |
| 1660 | ), |
| 1661 | 'IM' => array( |
| 1662 | 'currency_code' => 'GBP', |
| 1663 | 'currency_pos' => 'left', |
| 1664 | 'thousand_sep' => ',', |
| 1665 | 'decimal_sep' => '.', |
| 1666 | 'num_decimals' => 2, |
| 1667 | 'weight_unit' => 'kg', |
| 1668 | 'dimension_unit' => 'cm', |
| 1669 | 'direction' => 'ltr', |
| 1670 | 'default_locale' => 'en_IM', |
| 1671 | 'name' => 'Pound sterling', |
| 1672 | 'singular' => 'British pound', |
| 1673 | 'plural' => 'British pounds', |
| 1674 | 'short_symbol' => '£', |
| 1675 | 'locales' => $locales['GBP'], |
| 1676 | ), |
| 1677 | 'IN' => array( |
| 1678 | 'currency_code' => 'INR', |
| 1679 | 'currency_pos' => 'left', |
| 1680 | 'thousand_sep' => ',', |
| 1681 | 'decimal_sep' => '.', |
| 1682 | 'num_decimals' => 2, |
| 1683 | 'weight_unit' => 'kg', |
| 1684 | 'dimension_unit' => 'cm', |
| 1685 | 'direction' => 'ltr', |
| 1686 | 'default_locale' => 'hi_IN', |
| 1687 | 'name' => 'Indian rupee', |
| 1688 | 'singular' => 'Indian rupee', |
| 1689 | 'plural' => 'Indian rupees', |
| 1690 | 'short_symbol' => '₹', |
| 1691 | 'locales' => $locales['INR'], |
| 1692 | ), |
| 1693 | 'IO' => array( |
| 1694 | 'currency_code' => 'USD', |
| 1695 | 'currency_pos' => 'left', |
| 1696 | 'thousand_sep' => ',', |
| 1697 | 'decimal_sep' => '.', |
| 1698 | 'num_decimals' => 2, |
| 1699 | 'weight_unit' => 'kg', |
| 1700 | 'dimension_unit' => 'cm', |
| 1701 | 'direction' => 'ltr', |
| 1702 | 'default_locale' => 'en_IO', |
| 1703 | 'name' => 'United States (US) dollar', |
| 1704 | 'singular' => 'US dollar', |
| 1705 | 'plural' => 'US dollars', |
| 1706 | 'short_symbol' => '$', |
| 1707 | 'locales' => $locales['USD'], |
| 1708 | ), |
| 1709 | 'IQ' => array( |
| 1710 | 'currency_code' => 'IQD', |
| 1711 | 'currency_pos' => 'right_space', |
| 1712 | 'thousand_sep' => '.', |
| 1713 | 'decimal_sep' => ',', |
| 1714 | 'num_decimals' => 0, |
| 1715 | 'weight_unit' => 'kg', |
| 1716 | 'dimension_unit' => 'cm', |
| 1717 | 'direction' => 'rtl', |
| 1718 | 'default_locale' => 'ar_IQ', |
| 1719 | 'name' => 'Iraqi dinar', |
| 1720 | 'singular' => 'Iraqi dinar', |
| 1721 | 'plural' => 'Iraqi dinars', |
| 1722 | 'short_symbol' => null, |
| 1723 | 'locales' => $locales['IQD'], |
| 1724 | ), |
| 1725 | 'IR' => array( |
| 1726 | 'currency_code' => 'IRR', |
| 1727 | 'currency_pos' => 'left', |
| 1728 | 'thousand_sep' => '.', |
| 1729 | 'decimal_sep' => ',', |
| 1730 | 'num_decimals' => 0, |
| 1731 | 'weight_unit' => 'kg', |
| 1732 | 'dimension_unit' => 'cm', |
| 1733 | 'direction' => 'rtl', |
| 1734 | 'default_locale' => 'fa_IR', |
| 1735 | 'name' => 'Iranian rial', |
| 1736 | 'singular' => 'Iranian rial', |
| 1737 | 'plural' => 'Iranian rials', |
| 1738 | 'short_symbol' => null, |
| 1739 | 'locales' => $locales['IRR'], |
| 1740 | ), |
| 1741 | 'IS' => array( |
| 1742 | 'currency_code' => 'ISK', |
| 1743 | 'currency_pos' => 'right_space', |
| 1744 | 'thousand_sep' => '.', |
| 1745 | 'decimal_sep' => ',', |
| 1746 | 'num_decimals' => 0, |
| 1747 | 'weight_unit' => 'kg', |
| 1748 | 'dimension_unit' => 'cm', |
| 1749 | 'direction' => 'ltr', |
| 1750 | 'default_locale' => 'is_IS', |
| 1751 | 'name' => 'Icelandic króna', |
| 1752 | 'singular' => 'Icelandic króna', |
| 1753 | 'plural' => 'Icelandic krónur', |
| 1754 | 'short_symbol' => 'kr', |
| 1755 | 'locales' => $locales['ISK'], |
| 1756 | ), |
| 1757 | 'IT' => array( |
| 1758 | 'currency_code' => 'EUR', |
| 1759 | 'currency_pos' => 'right_space', |
| 1760 | 'thousand_sep' => '.', |
| 1761 | 'decimal_sep' => ',', |
| 1762 | 'num_decimals' => 2, |
| 1763 | 'weight_unit' => 'kg', |
| 1764 | 'dimension_unit' => 'cm', |
| 1765 | 'direction' => 'ltr', |
| 1766 | 'default_locale' => 'it_IT', |
| 1767 | 'name' => 'Euro', |
| 1768 | 'singular' => 'euro', |
| 1769 | 'plural' => 'euros', |
| 1770 | 'short_symbol' => '€', |
| 1771 | 'locales' => $locales['EUR'], |
| 1772 | ), |
| 1773 | 'JE' => array( |
| 1774 | 'currency_code' => 'GBP', |
| 1775 | 'currency_pos' => 'left', |
| 1776 | 'thousand_sep' => ',', |
| 1777 | 'decimal_sep' => '.', |
| 1778 | 'num_decimals' => 2, |
| 1779 | 'weight_unit' => 'kg', |
| 1780 | 'dimension_unit' => 'cm', |
| 1781 | 'direction' => 'ltr', |
| 1782 | 'default_locale' => 'en_JE', |
| 1783 | 'name' => 'Pound sterling', |
| 1784 | 'singular' => 'British pound', |
| 1785 | 'plural' => 'British pounds', |
| 1786 | 'short_symbol' => '£', |
| 1787 | 'locales' => $locales['GBP'], |
| 1788 | ), |
| 1789 | 'JM' => array( |
| 1790 | 'currency_code' => 'JMD', |
| 1791 | 'currency_pos' => 'left', |
| 1792 | 'thousand_sep' => ',', |
| 1793 | 'decimal_sep' => '.', |
| 1794 | 'num_decimals' => 2, |
| 1795 | 'weight_unit' => 'kg', |
| 1796 | 'dimension_unit' => 'cm', |
| 1797 | 'direction' => 'ltr', |
| 1798 | 'default_locale' => 'en_JM', |
| 1799 | 'name' => 'Jamaican dollar', |
| 1800 | 'singular' => 'Jamaican dollar', |
| 1801 | 'plural' => 'Jamaican dollars', |
| 1802 | 'short_symbol' => '$', |
| 1803 | 'locales' => $locales['JMD'], |
| 1804 | ), |
| 1805 | 'JO' => array( |
| 1806 | 'currency_code' => 'JOD', |
| 1807 | 'currency_pos' => 'right_space', |
| 1808 | 'thousand_sep' => '.', |
| 1809 | 'decimal_sep' => ',', |
| 1810 | 'num_decimals' => 3, |
| 1811 | 'weight_unit' => 'kg', |
| 1812 | 'dimension_unit' => 'cm', |
| 1813 | 'direction' => 'rtl', |
| 1814 | 'default_locale' => 'ar_JO', |
| 1815 | 'name' => 'Jordanian dinar', |
| 1816 | 'singular' => 'Jordanian dinar', |
| 1817 | 'plural' => 'Jordanian dinars', |
| 1818 | 'short_symbol' => null, |
| 1819 | 'locales' => $locales['JOD'], |
| 1820 | ), |
| 1821 | 'JP' => array( |
| 1822 | 'currency_code' => 'JPY', |
| 1823 | 'currency_pos' => 'left', |
| 1824 | 'thousand_sep' => ',', |
| 1825 | 'decimal_sep' => '.', |
| 1826 | 'num_decimals' => 0, |
| 1827 | 'weight_unit' => 'kg', |
| 1828 | 'dimension_unit' => 'cm', |
| 1829 | 'direction' => 'ltr', |
| 1830 | 'default_locale' => 'ja_JP', |
| 1831 | 'name' => 'Japanese yen', |
| 1832 | 'singular' => 'Japanese yen', |
| 1833 | 'plural' => 'Japanese yen', |
| 1834 | 'short_symbol' => '¥', |
| 1835 | 'locales' => $locales['JPY'], |
| 1836 | ), |
| 1837 | 'KE' => array( |
| 1838 | 'currency_code' => 'KES', |
| 1839 | 'currency_pos' => 'left_space', |
| 1840 | 'thousand_sep' => ',', |
| 1841 | 'decimal_sep' => '.', |
| 1842 | 'num_decimals' => 2, |
| 1843 | 'weight_unit' => 'kg', |
| 1844 | 'dimension_unit' => 'cm', |
| 1845 | 'direction' => 'ltr', |
| 1846 | 'default_locale' => 'sw_KE', |
| 1847 | 'name' => 'Kenyan shilling', |
| 1848 | 'singular' => 'Kenyan shilling', |
| 1849 | 'plural' => 'Kenyan shillings', |
| 1850 | 'short_symbol' => null, |
| 1851 | 'locales' => $locales['KES'], |
| 1852 | ), |
| 1853 | 'KG' => array( |
| 1854 | 'currency_code' => 'KGS', |
| 1855 | 'currency_pos' => 'right_space', |
| 1856 | 'thousand_sep' => ' ', |
| 1857 | 'decimal_sep' => ',', |
| 1858 | 'num_decimals' => 2, |
| 1859 | 'weight_unit' => 'kg', |
| 1860 | 'dimension_unit' => 'cm', |
| 1861 | 'direction' => 'ltr', |
| 1862 | 'default_locale' => 'ky_KG', |
| 1863 | 'name' => 'Kyrgyzstani som', |
| 1864 | 'singular' => 'Kyrgystani som', |
| 1865 | 'plural' => 'Kyrgystani soms', |
| 1866 | 'short_symbol' => null, |
| 1867 | 'locales' => $locales['KGS'], |
| 1868 | ), |
| 1869 | 'KH' => array( |
| 1870 | 'currency_code' => 'KHR', |
| 1871 | 'currency_pos' => 'right', |
| 1872 | 'thousand_sep' => '.', |
| 1873 | 'decimal_sep' => ',', |
| 1874 | 'num_decimals' => 2, |
| 1875 | 'weight_unit' => 'kg', |
| 1876 | 'dimension_unit' => 'cm', |
| 1877 | 'direction' => 'ltr', |
| 1878 | 'default_locale' => 'km_KH', |
| 1879 | 'name' => 'Cambodian riel', |
| 1880 | 'singular' => 'Cambodian riel', |
| 1881 | 'plural' => 'Cambodian riels', |
| 1882 | 'short_symbol' => '៛', |
| 1883 | 'locales' => $locales['KHR'], |
| 1884 | ), |
| 1885 | 'KI' => array( |
| 1886 | 'currency_code' => 'AUD', |
| 1887 | 'currency_pos' => 'left', |
| 1888 | 'thousand_sep' => ',', |
| 1889 | 'decimal_sep' => '.', |
| 1890 | 'num_decimals' => 2, |
| 1891 | 'weight_unit' => 'kg', |
| 1892 | 'dimension_unit' => 'cm', |
| 1893 | 'direction' => 'ltr', |
| 1894 | 'default_locale' => 'en_KI', |
| 1895 | 'name' => 'Australian dollar', |
| 1896 | 'singular' => 'Australian dollar', |
| 1897 | 'plural' => 'Australian dollars', |
| 1898 | 'short_symbol' => '$', |
| 1899 | 'locales' => $locales['AUD'], |
| 1900 | ), |
| 1901 | 'KM' => array( |
| 1902 | 'currency_code' => 'KMF', |
| 1903 | 'currency_pos' => 'right_space', |
| 1904 | 'thousand_sep' => '.', |
| 1905 | 'decimal_sep' => ',', |
| 1906 | 'num_decimals' => 0, |
| 1907 | 'weight_unit' => 'kg', |
| 1908 | 'dimension_unit' => 'cm', |
| 1909 | 'direction' => 'rtl', |
| 1910 | 'default_locale' => 'ar_KM', |
| 1911 | 'name' => 'Comorian franc', |
| 1912 | 'singular' => 'Comorian franc', |
| 1913 | 'plural' => 'Comorian francs', |
| 1914 | 'short_symbol' => 'CF', |
| 1915 | 'locales' => $locales['KMF'], |
| 1916 | ), |
| 1917 | 'KN' => array( |
| 1918 | 'currency_code' => 'XCD', |
| 1919 | 'currency_pos' => 'left', |
| 1920 | 'thousand_sep' => ',', |
| 1921 | 'decimal_sep' => '.', |
| 1922 | 'num_decimals' => 2, |
| 1923 | 'weight_unit' => 'kg', |
| 1924 | 'dimension_unit' => 'cm', |
| 1925 | 'direction' => 'ltr', |
| 1926 | 'default_locale' => 'en_KN', |
| 1927 | 'name' => 'East Caribbean dollar', |
| 1928 | 'singular' => 'East Caribbean dollar', |
| 1929 | 'plural' => 'East Caribbean dollars', |
| 1930 | 'short_symbol' => '$', |
| 1931 | 'locales' => $locales['XCD'], |
| 1932 | ), |
| 1933 | 'KP' => array( |
| 1934 | 'currency_code' => 'KPW', |
| 1935 | 'currency_pos' => 'left', |
| 1936 | 'thousand_sep' => ',', |
| 1937 | 'decimal_sep' => '.', |
| 1938 | 'num_decimals' => 0, |
| 1939 | 'weight_unit' => 'kg', |
| 1940 | 'dimension_unit' => 'cm', |
| 1941 | 'direction' => 'ltr', |
| 1942 | 'default_locale' => 'ko_KP', |
| 1943 | 'name' => 'North Korean won', |
| 1944 | 'singular' => 'North Korean won', |
| 1945 | 'plural' => 'North Korean won', |
| 1946 | 'short_symbol' => '₩', |
| 1947 | 'locales' => $locales['KPW'], |
| 1948 | ), |
| 1949 | 'KR' => array( |
| 1950 | 'currency_code' => 'KRW', |
| 1951 | 'currency_pos' => 'left', |
| 1952 | 'thousand_sep' => ',', |
| 1953 | 'decimal_sep' => '.', |
| 1954 | 'num_decimals' => 0, |
| 1955 | 'weight_unit' => 'kg', |
| 1956 | 'dimension_unit' => 'cm', |
| 1957 | 'direction' => 'ltr', |
| 1958 | 'default_locale' => 'ko_KR', |
| 1959 | 'name' => 'South Korean won', |
| 1960 | 'singular' => 'South Korean won', |
| 1961 | 'plural' => 'South Korean won', |
| 1962 | 'short_symbol' => '₩', |
| 1963 | 'locales' => $locales['KRW'], |
| 1964 | ), |
| 1965 | 'KW' => array( |
| 1966 | 'currency_code' => 'KWD', |
| 1967 | 'currency_pos' => 'right_space', |
| 1968 | 'thousand_sep' => '.', |
| 1969 | 'decimal_sep' => ',', |
| 1970 | 'num_decimals' => 3, |
| 1971 | 'weight_unit' => 'kg', |
| 1972 | 'dimension_unit' => 'cm', |
| 1973 | 'direction' => 'rtl', |
| 1974 | 'default_locale' => 'ar_KW', |
| 1975 | 'name' => 'Kuwaiti dinar', |
| 1976 | 'singular' => 'Kuwaiti dinar', |
| 1977 | 'plural' => 'Kuwaiti dinars', |
| 1978 | 'short_symbol' => null, |
| 1979 | 'locales' => $locales['KWD'], |
| 1980 | ), |
| 1981 | 'KY' => array( |
| 1982 | 'currency_code' => 'KYD', |
| 1983 | 'currency_pos' => 'left', |
| 1984 | 'thousand_sep' => ',', |
| 1985 | 'decimal_sep' => '.', |
| 1986 | 'num_decimals' => 2, |
| 1987 | 'weight_unit' => 'kg', |
| 1988 | 'dimension_unit' => 'cm', |
| 1989 | 'direction' => 'ltr', |
| 1990 | 'default_locale' => 'en_KY', |
| 1991 | 'name' => 'Cayman Islands dollar', |
| 1992 | 'singular' => 'Cayman Islands dollar', |
| 1993 | 'plural' => 'Cayman Islands dollars', |
| 1994 | 'short_symbol' => '$', |
| 1995 | 'locales' => $locales['KYD'], |
| 1996 | ), |
| 1997 | 'KZ' => array( |
| 1998 | 'currency_code' => 'KZT', |
| 1999 | 'currency_pos' => 'right_space', |
| 2000 | 'thousand_sep' => ' ', |
| 2001 | 'decimal_sep' => ',', |
| 2002 | 'num_decimals' => 2, |
| 2003 | 'weight_unit' => 'kg', |
| 2004 | 'dimension_unit' => 'cm', |
| 2005 | 'direction' => 'ltr', |
| 2006 | 'default_locale' => 'ru_KZ', |
| 2007 | 'name' => 'Kazakhstani tenge', |
| 2008 | 'singular' => 'Kazakhstani tenge', |
| 2009 | 'plural' => 'Kazakhstani tenges', |
| 2010 | 'short_symbol' => '₸', |
| 2011 | 'locales' => $locales['KZT'], |
| 2012 | ), |
| 2013 | 'LA' => array( |
| 2014 | 'currency_code' => 'LAK', |
| 2015 | 'currency_pos' => 'left', |
| 2016 | 'thousand_sep' => '.', |
| 2017 | 'decimal_sep' => ',', |
| 2018 | 'num_decimals' => 0, |
| 2019 | 'weight_unit' => 'kg', |
| 2020 | 'dimension_unit' => 'cm', |
| 2021 | 'direction' => 'ltr', |
| 2022 | 'default_locale' => 'lo_LA', |
| 2023 | 'name' => 'Lao kip', |
| 2024 | 'singular' => 'Laotian kip', |
| 2025 | 'plural' => 'Laotian kips', |
| 2026 | 'short_symbol' => '₭', |
| 2027 | 'locales' => $locales['LAK'], |
| 2028 | ), |
| 2029 | 'LB' => array( |
| 2030 | 'currency_code' => 'LBP', |
| 2031 | 'currency_pos' => 'right_space', |
| 2032 | 'thousand_sep' => '.', |
| 2033 | 'decimal_sep' => ',', |
| 2034 | 'num_decimals' => 0, |
| 2035 | 'weight_unit' => 'kg', |
| 2036 | 'dimension_unit' => 'cm', |
| 2037 | 'direction' => 'rtl', |
| 2038 | 'default_locale' => 'ar_LB', |
| 2039 | 'name' => 'Lebanese pound', |
| 2040 | 'singular' => 'Lebanese pound', |
| 2041 | 'plural' => 'Lebanese pounds', |
| 2042 | 'short_symbol' => 'L£', |
| 2043 | 'locales' => $locales['LBP'], |
| 2044 | ), |
| 2045 | 'LC' => array( |
| 2046 | 'currency_code' => 'XCD', |
| 2047 | 'currency_pos' => 'left', |
| 2048 | 'thousand_sep' => ',', |
| 2049 | 'decimal_sep' => '.', |
| 2050 | 'num_decimals' => 2, |
| 2051 | 'weight_unit' => 'kg', |
| 2052 | 'dimension_unit' => 'cm', |
| 2053 | 'direction' => 'ltr', |
| 2054 | 'default_locale' => 'en_LC', |
| 2055 | 'name' => 'East Caribbean dollar', |
| 2056 | 'singular' => 'East Caribbean dollar', |
| 2057 | 'plural' => 'East Caribbean dollars', |
| 2058 | 'short_symbol' => '$', |
| 2059 | 'locales' => $locales['XCD'], |
| 2060 | ), |
| 2061 | 'LI' => array( |
| 2062 | 'currency_code' => 'CHF', |
| 2063 | 'currency_pos' => 'left_space', |
| 2064 | 'thousand_sep' => '\'', |
| 2065 | 'decimal_sep' => '.', |
| 2066 | 'num_decimals' => 2, |
| 2067 | 'weight_unit' => 'kg', |
| 2068 | 'dimension_unit' => 'cm', |
| 2069 | 'direction' => 'ltr', |
| 2070 | 'default_locale' => 'de_LI', |
| 2071 | 'name' => 'Swiss franc', |
| 2072 | 'singular' => 'Swiss franc', |
| 2073 | 'plural' => 'Swiss francs', |
| 2074 | 'short_symbol' => null, |
| 2075 | 'locales' => $locales['CHF'], |
| 2076 | ), |
| 2077 | 'LK' => array( |
| 2078 | 'currency_code' => 'LKR', |
| 2079 | 'currency_pos' => 'left', |
| 2080 | 'thousand_sep' => ',', |
| 2081 | 'decimal_sep' => '.', |
| 2082 | 'num_decimals' => 2, |
| 2083 | 'weight_unit' => 'kg', |
| 2084 | 'dimension_unit' => 'cm', |
| 2085 | 'direction' => 'ltr', |
| 2086 | 'default_locale' => 'si_LK', |
| 2087 | 'name' => 'Sri Lankan rupee', |
| 2088 | 'singular' => 'Sri Lankan rupee', |
| 2089 | 'plural' => 'Sri Lankan rupees', |
| 2090 | 'short_symbol' => 'Rs', |
| 2091 | 'locales' => $locales['LKR'], |
| 2092 | ), |
| 2093 | 'LR' => array( |
| 2094 | 'currency_code' => 'LRD', |
| 2095 | 'currency_pos' => 'left', |
| 2096 | 'thousand_sep' => ',', |
| 2097 | 'decimal_sep' => '.', |
| 2098 | 'num_decimals' => 2, |
| 2099 | 'weight_unit' => 'kg', |
| 2100 | 'dimension_unit' => 'cm', |
| 2101 | 'direction' => 'ltr', |
| 2102 | 'default_locale' => 'en_LR', |
| 2103 | 'name' => 'Liberian dollar', |
| 2104 | 'singular' => 'Liberian dollar', |
| 2105 | 'plural' => 'Liberian dollars', |
| 2106 | 'short_symbol' => '$', |
| 2107 | 'locales' => $locales['LRD'], |
| 2108 | ), |
| 2109 | 'LS' => array( |
| 2110 | 'currency_code' => 'LSL', |
| 2111 | 'currency_pos' => 'left', |
| 2112 | 'thousand_sep' => ',', |
| 2113 | 'decimal_sep' => '.', |
| 2114 | 'num_decimals' => 2, |
| 2115 | 'weight_unit' => 'kg', |
| 2116 | 'dimension_unit' => 'cm', |
| 2117 | 'direction' => 'ltr', |
| 2118 | 'default_locale' => 'en_LS', |
| 2119 | 'name' => 'Lesotho loti', |
| 2120 | 'singular' => 'Lesotho loti', |
| 2121 | 'plural' => 'Lesotho lotis', |
| 2122 | 'short_symbol' => null, |
| 2123 | 'locales' => $locales['LSL'], |
| 2124 | ), |
| 2125 | 'LT' => array( |
| 2126 | 'currency_code' => 'EUR', |
| 2127 | 'currency_pos' => 'right_space', |
| 2128 | 'thousand_sep' => ' ', |
| 2129 | 'decimal_sep' => ',', |
| 2130 | 'num_decimals' => 2, |
| 2131 | 'weight_unit' => 'kg', |
| 2132 | 'dimension_unit' => 'cm', |
| 2133 | 'direction' => 'ltr', |
| 2134 | 'default_locale' => 'lt_LT', |
| 2135 | 'name' => 'Euro', |
| 2136 | 'singular' => 'euro', |
| 2137 | 'plural' => 'euros', |
| 2138 | 'short_symbol' => '€', |
| 2139 | 'locales' => $locales['EUR'], |
| 2140 | ), |
| 2141 | 'LU' => array( |
| 2142 | 'currency_code' => 'EUR', |
| 2143 | 'currency_pos' => 'right_space', |
| 2144 | 'thousand_sep' => '.', |
| 2145 | 'decimal_sep' => ',', |
| 2146 | 'num_decimals' => 2, |
| 2147 | 'weight_unit' => 'kg', |
| 2148 | 'dimension_unit' => 'cm', |
| 2149 | 'direction' => 'ltr', |
| 2150 | 'default_locale' => 'fr_LU', |
| 2151 | 'name' => 'Euro', |
| 2152 | 'singular' => 'euro', |
| 2153 | 'plural' => 'euros', |
| 2154 | 'short_symbol' => '€', |
| 2155 | 'locales' => $locales['EUR'], |
| 2156 | ), |
| 2157 | 'LV' => array( |
| 2158 | 'currency_code' => 'EUR', |
| 2159 | 'currency_pos' => 'right_space', |
| 2160 | 'thousand_sep' => ' ', |
| 2161 | 'decimal_sep' => ',', |
| 2162 | 'num_decimals' => 2, |
| 2163 | 'weight_unit' => 'kg', |
| 2164 | 'dimension_unit' => 'cm', |
| 2165 | 'direction' => 'ltr', |
| 2166 | 'default_locale' => 'lv_LV', |
| 2167 | 'name' => 'Euro', |
| 2168 | 'singular' => 'euro', |
| 2169 | 'plural' => 'euros', |
| 2170 | 'short_symbol' => '€', |
| 2171 | 'locales' => $locales['EUR'], |
| 2172 | ), |
| 2173 | 'LY' => array( |
| 2174 | 'currency_code' => 'LYD', |
| 2175 | 'currency_pos' => 'left_space', |
| 2176 | 'thousand_sep' => '.', |
| 2177 | 'decimal_sep' => ',', |
| 2178 | 'num_decimals' => 3, |
| 2179 | 'weight_unit' => 'kg', |
| 2180 | 'dimension_unit' => 'cm', |
| 2181 | 'direction' => 'rtl', |
| 2182 | 'default_locale' => 'ar_LY', |
| 2183 | 'name' => 'Libyan dinar', |
| 2184 | 'singular' => 'Libyan dinar', |
| 2185 | 'plural' => 'Libyan dinars', |
| 2186 | 'short_symbol' => null, |
| 2187 | 'locales' => $locales['LYD'], |
| 2188 | ), |
| 2189 | 'MA' => array( |
| 2190 | 'currency_code' => 'MAD', |
| 2191 | 'currency_pos' => 'left_space', |
| 2192 | 'thousand_sep' => '.', |
| 2193 | 'decimal_sep' => ',', |
| 2194 | 'num_decimals' => 2, |
| 2195 | 'weight_unit' => 'kg', |
| 2196 | 'dimension_unit' => 'cm', |
| 2197 | 'direction' => 'rtl', |
| 2198 | 'default_locale' => 'ar_MA', |
| 2199 | 'name' => 'Moroccan dirham', |
| 2200 | 'singular' => 'Moroccan dirham', |
| 2201 | 'plural' => 'Moroccan dirhams', |
| 2202 | 'short_symbol' => null, |
| 2203 | 'locales' => $locales['MAD'], |
| 2204 | ), |
| 2205 | 'MC' => array( |
| 2206 | 'currency_code' => 'EUR', |
| 2207 | 'currency_pos' => 'right_space', |
| 2208 | 'thousand_sep' => ' ', |
| 2209 | 'decimal_sep' => ',', |
| 2210 | 'num_decimals' => 2, |
| 2211 | 'weight_unit' => 'kg', |
| 2212 | 'dimension_unit' => 'cm', |
| 2213 | 'direction' => 'ltr', |
| 2214 | 'default_locale' => 'fr_MC', |
| 2215 | 'name' => 'Euro', |
| 2216 | 'singular' => 'euro', |
| 2217 | 'plural' => 'euros', |
| 2218 | 'short_symbol' => '€', |
| 2219 | 'locales' => $locales['EUR'], |
| 2220 | ), |
| 2221 | 'MD' => array( |
| 2222 | 'currency_code' => 'MDL', |
| 2223 | 'currency_pos' => 'right_space', |
| 2224 | 'thousand_sep' => '.', |
| 2225 | 'decimal_sep' => ',', |
| 2226 | 'num_decimals' => 2, |
| 2227 | 'weight_unit' => 'kg', |
| 2228 | 'dimension_unit' => 'cm', |
| 2229 | 'direction' => 'ltr', |
| 2230 | 'default_locale' => 'ro_MD', |
| 2231 | 'name' => 'Moldovan leu', |
| 2232 | 'singular' => 'Moldovan leu', |
| 2233 | 'plural' => 'Moldovan lei', |
| 2234 | 'short_symbol' => null, |
| 2235 | 'locales' => $locales['MDL'], |
| 2236 | ), |
| 2237 | 'ME' => array( |
| 2238 | 'currency_code' => 'EUR', |
| 2239 | 'currency_pos' => 'right_space', |
| 2240 | 'thousand_sep' => '.', |
| 2241 | 'decimal_sep' => ',', |
| 2242 | 'num_decimals' => 2, |
| 2243 | 'weight_unit' => 'kg', |
| 2244 | 'dimension_unit' => 'cm', |
| 2245 | 'direction' => 'ltr', |
| 2246 | 'default_locale' => 'sr_Latn_ME', |
| 2247 | 'name' => 'Euro', |
| 2248 | 'singular' => 'euro', |
| 2249 | 'plural' => 'euros', |
| 2250 | 'short_symbol' => '€', |
| 2251 | 'locales' => $locales['EUR'], |
| 2252 | ), |
| 2253 | 'MF' => array( |
| 2254 | 'currency_code' => 'EUR', |
| 2255 | 'currency_pos' => 'right_space', |
| 2256 | 'thousand_sep' => ' ', |
| 2257 | 'decimal_sep' => ',', |
| 2258 | 'num_decimals' => 2, |
| 2259 | 'weight_unit' => 'kg', |
| 2260 | 'dimension_unit' => 'cm', |
| 2261 | 'direction' => 'ltr', |
| 2262 | 'default_locale' => 'fr_MF', |
| 2263 | 'name' => 'Euro', |
| 2264 | 'singular' => 'euro', |
| 2265 | 'plural' => 'euros', |
| 2266 | 'short_symbol' => '€', |
| 2267 | 'locales' => $locales['EUR'], |
| 2268 | ), |
| 2269 | 'MG' => array( |
| 2270 | 'currency_code' => 'MGA', |
| 2271 | 'currency_pos' => 'left_space', |
| 2272 | 'thousand_sep' => ',', |
| 2273 | 'decimal_sep' => '.', |
| 2274 | 'num_decimals' => 0, |
| 2275 | 'weight_unit' => 'kg', |
| 2276 | 'dimension_unit' => 'cm', |
| 2277 | 'direction' => 'ltr', |
| 2278 | 'default_locale' => 'mg_MG', |
| 2279 | 'name' => 'Malagasy ariary', |
| 2280 | 'singular' => 'Malagasy ariary', |
| 2281 | 'plural' => 'Malagasy ariaries', |
| 2282 | 'short_symbol' => 'Ar', |
| 2283 | 'locales' => $locales['MGA'], |
| 2284 | ), |
| 2285 | 'MH' => array( |
| 2286 | 'currency_code' => 'USD', |
| 2287 | 'currency_pos' => 'left', |
| 2288 | 'thousand_sep' => ',', |
| 2289 | 'decimal_sep' => '.', |
| 2290 | 'num_decimals' => 2, |
| 2291 | 'weight_unit' => 'kg', |
| 2292 | 'dimension_unit' => 'cm', |
| 2293 | 'direction' => 'ltr', |
| 2294 | 'default_locale' => 'en_MH', |
| 2295 | 'name' => 'United States (US) dollar', |
| 2296 | 'singular' => 'US dollar', |
| 2297 | 'plural' => 'US dollars', |
| 2298 | 'short_symbol' => '$', |
| 2299 | 'locales' => $locales['USD'], |
| 2300 | ), |
| 2301 | 'MK' => array( |
| 2302 | 'currency_code' => 'MKD', |
| 2303 | 'currency_pos' => 'right_space', |
| 2304 | 'thousand_sep' => '.', |
| 2305 | 'decimal_sep' => ',', |
| 2306 | 'num_decimals' => 2, |
| 2307 | 'weight_unit' => 'kg', |
| 2308 | 'dimension_unit' => 'cm', |
| 2309 | 'direction' => 'ltr', |
| 2310 | 'default_locale' => 'mk_MK', |
| 2311 | 'name' => 'Macedonian denar', |
| 2312 | 'singular' => 'Macedonian denar', |
| 2313 | 'plural' => 'Macedonian denari', |
| 2314 | 'short_symbol' => null, |
| 2315 | 'locales' => $locales['MKD'], |
| 2316 | ), |
| 2317 | 'ML' => array( |
| 2318 | 'currency_code' => 'XOF', |
| 2319 | 'currency_pos' => 'right_space', |
| 2320 | 'thousand_sep' => ' ', |
| 2321 | 'decimal_sep' => ',', |
| 2322 | 'num_decimals' => 0, |
| 2323 | 'weight_unit' => 'kg', |
| 2324 | 'dimension_unit' => 'cm', |
| 2325 | 'direction' => 'ltr', |
| 2326 | 'default_locale' => 'fr_ML', |
| 2327 | 'name' => 'West African CFA franc', |
| 2328 | 'singular' => 'West African CFA franc', |
| 2329 | 'plural' => 'West African CFA francs', |
| 2330 | 'short_symbol' => null, |
| 2331 | 'locales' => $locales['XOF'], |
| 2332 | ), |
| 2333 | 'MM' => array( |
| 2334 | 'currency_code' => 'MMK', |
| 2335 | 'currency_pos' => 'right_space', |
| 2336 | 'thousand_sep' => ',', |
| 2337 | 'decimal_sep' => '.', |
| 2338 | 'num_decimals' => 0, |
| 2339 | 'weight_unit' => 'kg', |
| 2340 | 'dimension_unit' => 'cm', |
| 2341 | 'direction' => 'ltr', |
| 2342 | 'default_locale' => 'my_MM', |
| 2343 | 'name' => 'Burmese kyat', |
| 2344 | 'singular' => 'Myanmar kyat', |
| 2345 | 'plural' => 'Myanmar kyats', |
| 2346 | 'short_symbol' => 'K', |
| 2347 | 'locales' => $locales['MMK'], |
| 2348 | ), |
| 2349 | 'MN' => array( |
| 2350 | 'currency_code' => 'MNT', |
| 2351 | 'currency_pos' => 'left_space', |
| 2352 | 'thousand_sep' => ',', |
| 2353 | 'decimal_sep' => '.', |
| 2354 | 'num_decimals' => 0, |
| 2355 | 'weight_unit' => 'kg', |
| 2356 | 'dimension_unit' => 'cm', |
| 2357 | 'direction' => 'ltr', |
| 2358 | 'default_locale' => 'mn_MN', |
| 2359 | 'name' => 'Mongolian tögrög', |
| 2360 | 'singular' => 'Mongolian tugrik', |
| 2361 | 'plural' => 'Mongolian tugriks', |
| 2362 | 'short_symbol' => '₮', |
| 2363 | 'locales' => $locales['MNT'], |
| 2364 | ), |
| 2365 | 'MO' => array( |
| 2366 | 'currency_code' => 'MOP', |
| 2367 | 'currency_pos' => 'left', |
| 2368 | 'thousand_sep' => ',', |
| 2369 | 'decimal_sep' => '.', |
| 2370 | 'num_decimals' => 2, |
| 2371 | 'weight_unit' => 'kg', |
| 2372 | 'dimension_unit' => 'cm', |
| 2373 | 'direction' => 'ltr', |
| 2374 | 'default_locale' => 'zh_Hant_MO', |
| 2375 | 'name' => 'Macanese pataca', |
| 2376 | 'singular' => 'Macanese pataca', |
| 2377 | 'plural' => 'Macanese patacas', |
| 2378 | 'short_symbol' => null, |
| 2379 | 'locales' => $locales['MOP'], |
| 2380 | ), |
| 2381 | 'MP' => array( |
| 2382 | 'currency_code' => 'USD', |
| 2383 | 'currency_pos' => 'left', |
| 2384 | 'thousand_sep' => ',', |
| 2385 | 'decimal_sep' => '.', |
| 2386 | 'num_decimals' => 2, |
| 2387 | 'weight_unit' => 'kg', |
| 2388 | 'dimension_unit' => 'cm', |
| 2389 | 'direction' => 'ltr', |
| 2390 | 'default_locale' => 'en_MP', |
| 2391 | 'name' => 'United States (US) dollar', |
| 2392 | 'singular' => 'US dollar', |
| 2393 | 'plural' => 'US dollars', |
| 2394 | 'short_symbol' => '$', |
| 2395 | 'locales' => $locales['USD'], |
| 2396 | ), |
| 2397 | 'MQ' => array( |
| 2398 | 'currency_code' => 'EUR', |
| 2399 | 'currency_pos' => 'right_space', |
| 2400 | 'thousand_sep' => ' ', |
| 2401 | 'decimal_sep' => ',', |
| 2402 | 'num_decimals' => 2, |
| 2403 | 'weight_unit' => 'kg', |
| 2404 | 'dimension_unit' => 'cm', |
| 2405 | 'direction' => 'ltr', |
| 2406 | 'default_locale' => 'fr_MQ', |
| 2407 | 'name' => 'Euro', |
| 2408 | 'singular' => 'euro', |
| 2409 | 'plural' => 'euros', |
| 2410 | 'short_symbol' => '€', |
| 2411 | 'locales' => $locales['EUR'], |
| 2412 | ), |
| 2413 | 'MR' => array( |
| 2414 | 'currency_code' => 'MRU', |
| 2415 | 'currency_pos' => 'right_space', |
| 2416 | 'thousand_sep' => '.', |
| 2417 | 'decimal_sep' => ',', |
| 2418 | 'num_decimals' => 2, |
| 2419 | 'weight_unit' => 'kg', |
| 2420 | 'dimension_unit' => 'cm', |
| 2421 | 'direction' => 'rtl', |
| 2422 | 'default_locale' => 'ar_MR', |
| 2423 | 'name' => 'Mauritanian ouguiya', |
| 2424 | 'singular' => 'Mauritanian ouguiya', |
| 2425 | 'plural' => 'Mauritanian ouguiyas', |
| 2426 | 'short_symbol' => null, |
| 2427 | 'locales' => $locales['MRU'], |
| 2428 | ), |
| 2429 | 'MS' => array( |
| 2430 | 'currency_code' => 'XCD', |
| 2431 | 'currency_pos' => 'left', |
| 2432 | 'thousand_sep' => ',', |
| 2433 | 'decimal_sep' => '.', |
| 2434 | 'num_decimals' => 2, |
| 2435 | 'weight_unit' => 'kg', |
| 2436 | 'dimension_unit' => 'cm', |
| 2437 | 'direction' => 'ltr', |
| 2438 | 'default_locale' => 'en_MS', |
| 2439 | 'name' => 'East Caribbean dollar', |
| 2440 | 'singular' => 'East Caribbean dollar', |
| 2441 | 'plural' => 'East Caribbean dollars', |
| 2442 | 'short_symbol' => '$', |
| 2443 | 'locales' => $locales['XCD'], |
| 2444 | ), |
| 2445 | 'MT' => array( |
| 2446 | 'currency_code' => 'EUR', |
| 2447 | 'currency_pos' => 'left', |
| 2448 | 'thousand_sep' => ',', |
| 2449 | 'decimal_sep' => '.', |
| 2450 | 'num_decimals' => 2, |
| 2451 | 'weight_unit' => 'kg', |
| 2452 | 'dimension_unit' => 'cm', |
| 2453 | 'direction' => 'ltr', |
| 2454 | 'default_locale' => 'mt_MT', |
| 2455 | 'name' => 'Euro', |
| 2456 | 'singular' => 'euro', |
| 2457 | 'plural' => 'euros', |
| 2458 | 'short_symbol' => '€', |
| 2459 | 'locales' => $locales['EUR'], |
| 2460 | ), |
| 2461 | 'MU' => array( |
| 2462 | 'currency_code' => 'MUR', |
| 2463 | 'currency_pos' => 'left', |
| 2464 | 'thousand_sep' => ',', |
| 2465 | 'decimal_sep' => '.', |
| 2466 | 'num_decimals' => 0, |
| 2467 | 'weight_unit' => 'kg', |
| 2468 | 'dimension_unit' => 'cm', |
| 2469 | 'direction' => 'ltr', |
| 2470 | 'default_locale' => 'en_MU', |
| 2471 | 'name' => 'Mauritian rupee', |
| 2472 | 'singular' => 'Mauritian rupee', |
| 2473 | 'plural' => 'Mauritian rupees', |
| 2474 | 'short_symbol' => 'Rs', |
| 2475 | 'locales' => $locales['MUR'], |
| 2476 | ), |
| 2477 | 'MV' => array( |
| 2478 | 'currency_code' => 'MVR', |
| 2479 | 'currency_pos' => 'left_space', |
| 2480 | 'thousand_sep' => '.', |
| 2481 | 'decimal_sep' => ',', |
| 2482 | 'num_decimals' => 2, |
| 2483 | 'weight_unit' => 'kg', |
| 2484 | 'dimension_unit' => 'cm', |
| 2485 | 'direction' => 'rtl', |
| 2486 | 'default_locale' => 'dv_MV', |
| 2487 | 'name' => 'Maldivian rufiyaa', |
| 2488 | 'singular' => 'Maldivian rufiyaa', |
| 2489 | 'plural' => 'Maldivian rufiyaas', |
| 2490 | 'short_symbol' => null, |
| 2491 | 'locales' => $locales['MVR'], |
| 2492 | ), |
| 2493 | 'MW' => array( |
| 2494 | 'currency_code' => 'MWK', |
| 2495 | 'currency_pos' => 'left', |
| 2496 | 'thousand_sep' => ',', |
| 2497 | 'decimal_sep' => '.', |
| 2498 | 'num_decimals' => 2, |
| 2499 | 'weight_unit' => 'kg', |
| 2500 | 'dimension_unit' => 'cm', |
| 2501 | 'direction' => 'ltr', |
| 2502 | 'default_locale' => 'en_MW', |
| 2503 | 'name' => 'Malawian kwacha', |
| 2504 | 'singular' => 'Malawian kwacha', |
| 2505 | 'plural' => 'Malawian kwachas', |
| 2506 | 'short_symbol' => null, |
| 2507 | 'locales' => $locales['MWK'], |
| 2508 | ), |
| 2509 | 'MX' => array( |
| 2510 | 'currency_code' => 'MXN', |
| 2511 | 'currency_pos' => 'left', |
| 2512 | 'thousand_sep' => ',', |
| 2513 | 'decimal_sep' => '.', |
| 2514 | 'num_decimals' => 2, |
| 2515 | 'weight_unit' => 'kg', |
| 2516 | 'dimension_unit' => 'cm', |
| 2517 | 'direction' => 'ltr', |
| 2518 | 'default_locale' => 'es_MX', |
| 2519 | 'name' => 'Mexican peso', |
| 2520 | 'singular' => 'Mexican peso', |
| 2521 | 'plural' => 'Mexican pesos', |
| 2522 | 'short_symbol' => '$', |
| 2523 | 'locales' => $locales['MXN'], |
| 2524 | ), |
| 2525 | 'MY' => array( |
| 2526 | 'currency_code' => 'MYR', |
| 2527 | 'currency_pos' => 'left', |
| 2528 | 'thousand_sep' => ',', |
| 2529 | 'decimal_sep' => '.', |
| 2530 | 'num_decimals' => 2, |
| 2531 | 'weight_unit' => 'kg', |
| 2532 | 'dimension_unit' => 'cm', |
| 2533 | 'direction' => 'ltr', |
| 2534 | 'default_locale' => 'ms_MY', |
| 2535 | 'name' => 'Malaysian ringgit', |
| 2536 | 'singular' => 'Malaysian ringgit', |
| 2537 | 'plural' => 'Malaysian ringgits', |
| 2538 | 'short_symbol' => 'RM', |
| 2539 | 'locales' => $locales['MYR'], |
| 2540 | ), |
| 2541 | 'MZ' => array( |
| 2542 | 'currency_code' => 'MZN', |
| 2543 | 'currency_pos' => 'right_space', |
| 2544 | 'thousand_sep' => ' ', |
| 2545 | 'decimal_sep' => ',', |
| 2546 | 'num_decimals' => 2, |
| 2547 | 'weight_unit' => 'kg', |
| 2548 | 'dimension_unit' => 'cm', |
| 2549 | 'direction' => 'ltr', |
| 2550 | 'default_locale' => 'pt_MZ', |
| 2551 | 'name' => 'Mozambican metical', |
| 2552 | 'singular' => 'Mozambican metical', |
| 2553 | 'plural' => 'Mozambican meticals', |
| 2554 | 'short_symbol' => null, |
| 2555 | 'locales' => $locales['MZN'], |
| 2556 | ), |
| 2557 | 'NA' => array( |
| 2558 | 'currency_code' => 'NAD', |
| 2559 | 'currency_pos' => 'left', |
| 2560 | 'thousand_sep' => ',', |
| 2561 | 'decimal_sep' => '.', |
| 2562 | 'num_decimals' => 2, |
| 2563 | 'weight_unit' => 'kg', |
| 2564 | 'dimension_unit' => 'cm', |
| 2565 | 'direction' => 'ltr', |
| 2566 | 'default_locale' => 'en_NA', |
| 2567 | 'name' => 'Namibian dollar', |
| 2568 | 'singular' => 'Namibian dollar', |
| 2569 | 'plural' => 'Namibian dollars', |
| 2570 | 'short_symbol' => '$', |
| 2571 | 'locales' => $locales['NAD'], |
| 2572 | ), |
| 2573 | 'NC' => array( |
| 2574 | 'currency_code' => 'XPF', |
| 2575 | 'currency_pos' => 'right_space', |
| 2576 | 'thousand_sep' => ' ', |
| 2577 | 'decimal_sep' => '.', |
| 2578 | 'num_decimals' => 0, |
| 2579 | 'weight_unit' => 'kg', |
| 2580 | 'dimension_unit' => 'cm', |
| 2581 | 'direction' => 'ltr', |
| 2582 | 'default_locale' => 'fr_NC', |
| 2583 | 'name' => 'CFP franc', |
| 2584 | 'singular' => 'CFP franc', |
| 2585 | 'plural' => 'CFP francs', |
| 2586 | 'short_symbol' => null, |
| 2587 | 'locales' => $locales['XPF'], |
| 2588 | ), |
| 2589 | 'NE' => array( |
| 2590 | 'currency_code' => 'XOF', |
| 2591 | 'currency_pos' => 'right_space', |
| 2592 | 'thousand_sep' => ' ', |
| 2593 | 'decimal_sep' => ',', |
| 2594 | 'num_decimals' => 0, |
| 2595 | 'weight_unit' => 'kg', |
| 2596 | 'dimension_unit' => 'cm', |
| 2597 | 'direction' => 'ltr', |
| 2598 | 'default_locale' => 'fr_NE', |
| 2599 | 'name' => 'West African CFA franc', |
| 2600 | 'singular' => 'West African CFA franc', |
| 2601 | 'plural' => 'West African CFA francs', |
| 2602 | 'short_symbol' => null, |
| 2603 | 'locales' => $locales['XOF'], |
| 2604 | ), |
| 2605 | 'NF' => array( |
| 2606 | 'currency_code' => 'AUD', |
| 2607 | 'currency_pos' => 'left', |
| 2608 | 'thousand_sep' => ',', |
| 2609 | 'decimal_sep' => '.', |
| 2610 | 'num_decimals' => 2, |
| 2611 | 'weight_unit' => 'kg', |
| 2612 | 'dimension_unit' => 'cm', |
| 2613 | 'direction' => 'ltr', |
| 2614 | 'default_locale' => 'en_NF', |
| 2615 | 'name' => 'Australian dollar', |
| 2616 | 'singular' => 'Australian dollar', |
| 2617 | 'plural' => 'Australian dollars', |
| 2618 | 'short_symbol' => '$', |
| 2619 | 'locales' => $locales['AUD'], |
| 2620 | ), |
| 2621 | 'NG' => array( |
| 2622 | 'currency_code' => 'NGN', |
| 2623 | 'currency_pos' => 'left', |
| 2624 | 'thousand_sep' => ',', |
| 2625 | 'decimal_sep' => '.', |
| 2626 | 'num_decimals' => 2, |
| 2627 | 'weight_unit' => 'kg', |
| 2628 | 'dimension_unit' => 'cm', |
| 2629 | 'direction' => 'ltr', |
| 2630 | 'default_locale' => 'en_NG', |
| 2631 | 'name' => 'Nigerian naira', |
| 2632 | 'singular' => 'Nigerian naira', |
| 2633 | 'plural' => 'Nigerian nairas', |
| 2634 | 'short_symbol' => '₦', |
| 2635 | 'locales' => $locales['NGN'], |
| 2636 | ), |
| 2637 | 'NI' => array( |
| 2638 | 'currency_code' => 'NIO', |
| 2639 | 'currency_pos' => 'left', |
| 2640 | 'thousand_sep' => ',', |
| 2641 | 'decimal_sep' => '.', |
| 2642 | 'num_decimals' => 2, |
| 2643 | 'weight_unit' => 'kg', |
| 2644 | 'dimension_unit' => 'cm', |
| 2645 | 'direction' => 'ltr', |
| 2646 | 'default_locale' => 'es_NI', |
| 2647 | 'name' => 'Nicaraguan córdoba', |
| 2648 | 'singular' => 'Nicaraguan córdoba', |
| 2649 | 'plural' => 'Nicaraguan córdobas', |
| 2650 | 'short_symbol' => 'C$', |
| 2651 | 'locales' => $locales['NIO'], |
| 2652 | ), |
| 2653 | 'NL' => array( |
| 2654 | 'currency_code' => 'EUR', |
| 2655 | 'currency_pos' => 'left_space', |
| 2656 | 'thousand_sep' => '.', |
| 2657 | 'decimal_sep' => ',', |
| 2658 | 'num_decimals' => 2, |
| 2659 | 'weight_unit' => 'kg', |
| 2660 | 'dimension_unit' => 'cm', |
| 2661 | 'direction' => 'ltr', |
| 2662 | 'default_locale' => 'nl_NL', |
| 2663 | 'name' => 'Euro', |
| 2664 | 'singular' => 'euro', |
| 2665 | 'plural' => 'euros', |
| 2666 | 'short_symbol' => '€', |
| 2667 | 'locales' => $locales['EUR'], |
| 2668 | ), |
| 2669 | 'NO' => array( |
| 2670 | 'currency_code' => 'NOK', |
| 2671 | 'currency_pos' => 'left_space', |
| 2672 | 'thousand_sep' => ' ', |
| 2673 | 'decimal_sep' => ',', |
| 2674 | 'num_decimals' => 2, |
| 2675 | 'weight_unit' => 'kg', |
| 2676 | 'dimension_unit' => 'cm', |
| 2677 | 'direction' => 'ltr', |
| 2678 | 'default_locale' => 'nb_NO', |
| 2679 | 'name' => 'Norwegian krone', |
| 2680 | 'singular' => 'Norwegian krone', |
| 2681 | 'plural' => 'Norwegian kroner', |
| 2682 | 'short_symbol' => 'kr', |
| 2683 | 'locales' => $locales['NOK'], |
| 2684 | ), |
| 2685 | 'NP' => array( |
| 2686 | 'currency_code' => 'NPR', |
| 2687 | 'currency_pos' => 'left_space', |
| 2688 | 'thousand_sep' => ',', |
| 2689 | 'decimal_sep' => '.', |
| 2690 | 'num_decimals' => 2, |
| 2691 | 'weight_unit' => 'kg', |
| 2692 | 'dimension_unit' => 'cm', |
| 2693 | 'direction' => 'ltr', |
| 2694 | 'default_locale' => 'ne_NP', |
| 2695 | 'name' => 'Nepalese rupee', |
| 2696 | 'singular' => 'Nepalese rupee', |
| 2697 | 'plural' => 'Nepalese rupees', |
| 2698 | 'short_symbol' => 'Rs', |
| 2699 | 'locales' => $locales['NPR'], |
| 2700 | ), |
| 2701 | 'NR' => array( |
| 2702 | 'currency_code' => 'AUD', |
| 2703 | 'currency_pos' => 'left', |
| 2704 | 'thousand_sep' => ',', |
| 2705 | 'decimal_sep' => '.', |
| 2706 | 'num_decimals' => 2, |
| 2707 | 'weight_unit' => 'kg', |
| 2708 | 'dimension_unit' => 'cm', |
| 2709 | 'direction' => 'ltr', |
| 2710 | 'default_locale' => 'en_NR', |
| 2711 | 'name' => 'Australian dollar', |
| 2712 | 'singular' => 'Australian dollar', |
| 2713 | 'plural' => 'Australian dollars', |
| 2714 | 'short_symbol' => '$', |
| 2715 | 'locales' => $locales['AUD'], |
| 2716 | ), |
| 2717 | 'NU' => array( |
| 2718 | 'currency_code' => 'NZD', |
| 2719 | 'currency_pos' => 'left', |
| 2720 | 'thousand_sep' => ',', |
| 2721 | 'decimal_sep' => '.', |
| 2722 | 'num_decimals' => 2, |
| 2723 | 'weight_unit' => 'kg', |
| 2724 | 'dimension_unit' => 'cm', |
| 2725 | 'direction' => 'ltr', |
| 2726 | 'default_locale' => 'en_NU', |
| 2727 | 'name' => 'New Zealand dollar', |
| 2728 | 'singular' => 'New Zealand dollar', |
| 2729 | 'plural' => 'New Zealand dollars', |
| 2730 | 'short_symbol' => '$', |
| 2731 | 'locales' => $locales['NZD'], |
| 2732 | ), |
| 2733 | 'NZ' => array( |
| 2734 | 'currency_code' => 'NZD', |
| 2735 | 'currency_pos' => 'left', |
| 2736 | 'thousand_sep' => ',', |
| 2737 | 'decimal_sep' => '.', |
| 2738 | 'num_decimals' => 2, |
| 2739 | 'weight_unit' => 'kg', |
| 2740 | 'dimension_unit' => 'cm', |
| 2741 | 'direction' => 'ltr', |
| 2742 | 'default_locale' => 'en_NZ', |
| 2743 | 'name' => 'New Zealand dollar', |
| 2744 | 'singular' => 'New Zealand dollar', |
| 2745 | 'plural' => 'New Zealand dollars', |
| 2746 | 'short_symbol' => '$', |
| 2747 | 'locales' => $locales['NZD'], |
| 2748 | ), |
| 2749 | 'OM' => array( |
| 2750 | 'currency_code' => 'OMR', |
| 2751 | 'currency_pos' => 'right_space', |
| 2752 | 'thousand_sep' => '.', |
| 2753 | 'decimal_sep' => ',', |
| 2754 | 'num_decimals' => 3, |
| 2755 | 'weight_unit' => 'kg', |
| 2756 | 'dimension_unit' => 'cm', |
| 2757 | 'direction' => 'rtl', |
| 2758 | 'default_locale' => 'ar_OM', |
| 2759 | 'name' => 'Omani rial', |
| 2760 | 'singular' => 'Omani rial', |
| 2761 | 'plural' => 'Omani rials', |
| 2762 | 'short_symbol' => null, |
| 2763 | 'locales' => $locales['OMR'], |
| 2764 | ), |
| 2765 | 'PA' => array( |
| 2766 | 'currency_code' => 'USD', |
| 2767 | 'currency_pos' => 'left', |
| 2768 | 'thousand_sep' => ',', |
| 2769 | 'decimal_sep' => '.', |
| 2770 | 'num_decimals' => 2, |
| 2771 | 'weight_unit' => 'kg', |
| 2772 | 'dimension_unit' => 'cm', |
| 2773 | 'direction' => 'ltr', |
| 2774 | 'default_locale' => 'es_PA', |
| 2775 | 'name' => 'United States (US) dollar', |
| 2776 | 'singular' => 'US dollar', |
| 2777 | 'plural' => 'US dollars', |
| 2778 | 'short_symbol' => '$', |
| 2779 | 'locales' => $locales['USD'], |
| 2780 | ), |
| 2781 | 'PE' => array( |
| 2782 | 'currency_code' => 'PEN', |
| 2783 | 'currency_pos' => 'left_space', |
| 2784 | 'thousand_sep' => ',', |
| 2785 | 'decimal_sep' => '.', |
| 2786 | 'num_decimals' => 2, |
| 2787 | 'weight_unit' => 'kg', |
| 2788 | 'dimension_unit' => 'cm', |
| 2789 | 'direction' => 'ltr', |
| 2790 | 'default_locale' => 'es_PE', |
| 2791 | 'name' => 'Sol', |
| 2792 | 'singular' => 'Peruvian sol', |
| 2793 | 'plural' => 'Peruvian soles', |
| 2794 | 'short_symbol' => null, |
| 2795 | 'locales' => $locales['PEN'], |
| 2796 | ), |
| 2797 | 'PF' => array( |
| 2798 | 'currency_code' => 'XPF', |
| 2799 | 'currency_pos' => 'right_space', |
| 2800 | 'thousand_sep' => ' ', |
| 2801 | 'decimal_sep' => '.', |
| 2802 | 'num_decimals' => 0, |
| 2803 | 'weight_unit' => 'kg', |
| 2804 | 'dimension_unit' => 'cm', |
| 2805 | 'direction' => 'ltr', |
| 2806 | 'default_locale' => 'fr_PF', |
| 2807 | 'name' => 'CFP franc', |
| 2808 | 'singular' => 'CFP franc', |
| 2809 | 'plural' => 'CFP francs', |
| 2810 | 'short_symbol' => null, |
| 2811 | 'locales' => $locales['XPF'], |
| 2812 | ), |
| 2813 | 'PG' => array( |
| 2814 | 'currency_code' => 'PGK', |
| 2815 | 'currency_pos' => 'left', |
| 2816 | 'thousand_sep' => ',', |
| 2817 | 'decimal_sep' => '.', |
| 2818 | 'num_decimals' => 2, |
| 2819 | 'weight_unit' => 'kg', |
| 2820 | 'dimension_unit' => 'cm', |
| 2821 | 'direction' => 'ltr', |
| 2822 | 'default_locale' => 'en_PG', |
| 2823 | 'name' => 'Papua New Guinean kina', |
| 2824 | 'singular' => 'Papua New Guinean kina', |
| 2825 | 'plural' => 'Papua New Guinean kina', |
| 2826 | 'short_symbol' => null, |
| 2827 | 'locales' => $locales['PGK'], |
| 2828 | ), |
| 2829 | 'PH' => array( |
| 2830 | 'currency_code' => 'PHP', |
| 2831 | 'currency_pos' => 'left', |
| 2832 | 'thousand_sep' => ',', |
| 2833 | 'decimal_sep' => '.', |
| 2834 | 'num_decimals' => 2, |
| 2835 | 'weight_unit' => 'kg', |
| 2836 | 'dimension_unit' => 'cm', |
| 2837 | 'direction' => 'ltr', |
| 2838 | 'default_locale' => 'en_PH', |
| 2839 | 'name' => 'Philippine peso', |
| 2840 | 'singular' => 'Philippine piso', |
| 2841 | 'plural' => 'Philippine pisos', |
| 2842 | 'short_symbol' => '₱', |
| 2843 | 'locales' => $locales['PHP'], |
| 2844 | ), |
| 2845 | 'PK' => array( |
| 2846 | 'currency_code' => 'PKR', |
| 2847 | 'currency_pos' => 'left_space', |
| 2848 | 'thousand_sep' => ',', |
| 2849 | 'decimal_sep' => '.', |
| 2850 | 'num_decimals' => 0, |
| 2851 | 'weight_unit' => 'kg', |
| 2852 | 'dimension_unit' => 'cm', |
| 2853 | 'direction' => 'rtl', |
| 2854 | 'default_locale' => 'ur_PK', |
| 2855 | 'name' => 'Pakistani rupee', |
| 2856 | 'singular' => 'Pakistani rupee', |
| 2857 | 'plural' => 'Pakistani rupees', |
| 2858 | 'short_symbol' => 'Rs', |
| 2859 | 'locales' => $locales['PKR'], |
| 2860 | ), |
| 2861 | 'PL' => array( |
| 2862 | 'currency_code' => 'PLN', |
| 2863 | 'currency_pos' => 'right_space', |
| 2864 | 'thousand_sep' => ' ', |
| 2865 | 'decimal_sep' => ',', |
| 2866 | 'num_decimals' => 2, |
| 2867 | 'weight_unit' => 'kg', |
| 2868 | 'dimension_unit' => 'cm', |
| 2869 | 'direction' => 'ltr', |
| 2870 | 'default_locale' => 'pl_PL', |
| 2871 | 'name' => 'Polish złoty', |
| 2872 | 'singular' => 'Polish zloty', |
| 2873 | 'plural' => 'Polish zlotys', |
| 2874 | 'short_symbol' => 'zł', |
| 2875 | 'locales' => $locales['PLN'], |
| 2876 | ), |
| 2877 | 'PM' => array( |
| 2878 | 'currency_code' => 'EUR', |
| 2879 | 'currency_pos' => 'right_space', |
| 2880 | 'thousand_sep' => ' ', |
| 2881 | 'decimal_sep' => ',', |
| 2882 | 'num_decimals' => 2, |
| 2883 | 'weight_unit' => 'kg', |
| 2884 | 'dimension_unit' => 'cm', |
| 2885 | 'direction' => 'ltr', |
| 2886 | 'default_locale' => 'fr_PM', |
| 2887 | 'name' => 'Euro', |
| 2888 | 'singular' => 'euro', |
| 2889 | 'plural' => 'euros', |
| 2890 | 'short_symbol' => '€', |
| 2891 | 'locales' => $locales['EUR'], |
| 2892 | ), |
| 2893 | 'PN' => array( |
| 2894 | 'currency_code' => 'NZD', |
| 2895 | 'currency_pos' => 'left', |
| 2896 | 'thousand_sep' => ',', |
| 2897 | 'decimal_sep' => '.', |
| 2898 | 'num_decimals' => 2, |
| 2899 | 'weight_unit' => 'kg', |
| 2900 | 'dimension_unit' => 'cm', |
| 2901 | 'direction' => 'ltr', |
| 2902 | 'default_locale' => 'en_PN', |
| 2903 | 'name' => 'New Zealand dollar', |
| 2904 | 'singular' => 'New Zealand dollar', |
| 2905 | 'plural' => 'New Zealand dollars', |
| 2906 | 'short_symbol' => '$', |
| 2907 | 'locales' => $locales['NZD'], |
| 2908 | ), |
| 2909 | 'PR' => array( |
| 2910 | 'currency_code' => 'USD', |
| 2911 | 'currency_pos' => 'left', |
| 2912 | 'thousand_sep' => ',', |
| 2913 | 'decimal_sep' => '.', |
| 2914 | 'num_decimals' => 2, |
| 2915 | 'weight_unit' => 'kg', |
| 2916 | 'dimension_unit' => 'cm', |
| 2917 | 'direction' => 'ltr', |
| 2918 | 'default_locale' => 'es_PR', |
| 2919 | 'name' => 'United States (US) dollar', |
| 2920 | 'singular' => 'US dollar', |
| 2921 | 'plural' => 'US dollars', |
| 2922 | 'short_symbol' => '$', |
| 2923 | 'locales' => $locales['USD'], |
| 2924 | ), |
| 2925 | 'PS' => array( |
| 2926 | 'currency_code' => 'JOD', |
| 2927 | 'currency_pos' => 'right_space', |
| 2928 | 'thousand_sep' => '.', |
| 2929 | 'decimal_sep' => ',', |
| 2930 | 'num_decimals' => 3, |
| 2931 | 'weight_unit' => 'kg', |
| 2932 | 'dimension_unit' => 'cm', |
| 2933 | 'direction' => 'rtl', |
| 2934 | 'default_locale' => 'ar_PS', |
| 2935 | 'name' => 'Jordanian dinar', |
| 2936 | 'singular' => 'Jordanian dinar', |
| 2937 | 'plural' => 'Jordanian dinars', |
| 2938 | 'short_symbol' => null, |
| 2939 | 'locales' => $locales['JOD'], |
| 2940 | ), |
| 2941 | 'PT' => array( |
| 2942 | 'currency_code' => 'EUR', |
| 2943 | 'currency_pos' => 'right_space', |
| 2944 | 'thousand_sep' => ' ', |
| 2945 | 'decimal_sep' => ',', |
| 2946 | 'num_decimals' => 2, |
| 2947 | 'weight_unit' => 'kg', |
| 2948 | 'dimension_unit' => 'cm', |
| 2949 | 'direction' => 'ltr', |
| 2950 | 'default_locale' => 'pt_PT', |
| 2951 | 'name' => 'Euro', |
| 2952 | 'singular' => 'euro', |
| 2953 | 'plural' => 'euros', |
| 2954 | 'short_symbol' => '€', |
| 2955 | 'locales' => $locales['EUR'], |
| 2956 | ), |
| 2957 | 'PW' => array( |
| 2958 | 'currency_code' => 'USD', |
| 2959 | 'currency_pos' => 'left', |
| 2960 | 'thousand_sep' => ',', |
| 2961 | 'decimal_sep' => '.', |
| 2962 | 'num_decimals' => 2, |
| 2963 | 'weight_unit' => 'kg', |
| 2964 | 'dimension_unit' => 'cm', |
| 2965 | 'direction' => 'ltr', |
| 2966 | 'default_locale' => 'en_PW', |
| 2967 | 'name' => 'United States (US) dollar', |
| 2968 | 'singular' => 'US dollar', |
| 2969 | 'plural' => 'US dollars', |
| 2970 | 'short_symbol' => '$', |
| 2971 | 'locales' => $locales['USD'], |
| 2972 | ), |
| 2973 | 'PY' => array( |
| 2974 | 'currency_code' => 'PYG', |
| 2975 | 'currency_pos' => 'left_space', |
| 2976 | 'thousand_sep' => '.', |
| 2977 | 'decimal_sep' => ',', |
| 2978 | 'num_decimals' => 0, |
| 2979 | 'weight_unit' => 'kg', |
| 2980 | 'dimension_unit' => 'cm', |
| 2981 | 'direction' => 'ltr', |
| 2982 | 'default_locale' => 'es_PY', |
| 2983 | 'name' => 'Paraguayan guaraní', |
| 2984 | 'singular' => 'Paraguayan guarani', |
| 2985 | 'plural' => 'Paraguayan guaranis', |
| 2986 | 'short_symbol' => '₲', |
| 2987 | 'locales' => $locales['PYG'], |
| 2988 | ), |
| 2989 | 'QA' => array( |
| 2990 | 'currency_code' => 'QAR', |
| 2991 | 'currency_pos' => 'right_space', |
| 2992 | 'thousand_sep' => '.', |
| 2993 | 'decimal_sep' => ',', |
| 2994 | 'num_decimals' => 2, |
| 2995 | 'weight_unit' => 'kg', |
| 2996 | 'dimension_unit' => 'cm', |
| 2997 | 'direction' => 'rtl', |
| 2998 | 'default_locale' => 'ar_QA', |
| 2999 | 'name' => 'Qatari riyal', |
| 3000 | 'singular' => 'Qatari rial', |
| 3001 | 'plural' => 'Qatari rials', |
| 3002 | 'short_symbol' => null, |
| 3003 | 'locales' => $locales['QAR'], |
| 3004 | ), |
| 3005 | 'RE' => array( |
| 3006 | 'currency_code' => 'EUR', |
| 3007 | 'currency_pos' => 'right_space', |
| 3008 | 'thousand_sep' => ' ', |
| 3009 | 'decimal_sep' => ',', |
| 3010 | 'num_decimals' => 2, |
| 3011 | 'weight_unit' => 'kg', |
| 3012 | 'dimension_unit' => 'cm', |
| 3013 | 'direction' => 'ltr', |
| 3014 | 'default_locale' => 'fr_RE', |
| 3015 | 'name' => 'Euro', |
| 3016 | 'singular' => 'euro', |
| 3017 | 'plural' => 'euros', |
| 3018 | 'short_symbol' => '€', |
| 3019 | 'locales' => $locales['EUR'], |
| 3020 | ), |
| 3021 | 'RO' => array( |
| 3022 | 'currency_code' => 'RON', |
| 3023 | 'currency_pos' => 'right_space', |
| 3024 | 'thousand_sep' => '.', |
| 3025 | 'decimal_sep' => ',', |
| 3026 | 'num_decimals' => 2, |
| 3027 | 'weight_unit' => 'kg', |
| 3028 | 'dimension_unit' => 'cm', |
| 3029 | 'direction' => 'ltr', |
| 3030 | 'default_locale' => 'ro_RO', |
| 3031 | 'name' => 'Romanian leu', |
| 3032 | 'singular' => 'Romanian leu', |
| 3033 | 'plural' => 'Romanian lei', |
| 3034 | 'short_symbol' => 'lei', |
| 3035 | 'locales' => $locales['RON'], |
| 3036 | ), |
| 3037 | 'RS' => array( |
| 3038 | 'currency_code' => 'RSD', |
| 3039 | 'currency_pos' => 'right_space', |
| 3040 | 'thousand_sep' => '.', |
| 3041 | 'decimal_sep' => ',', |
| 3042 | 'num_decimals' => 0, |
| 3043 | 'weight_unit' => 'kg', |
| 3044 | 'dimension_unit' => 'cm', |
| 3045 | 'direction' => 'ltr', |
| 3046 | 'default_locale' => 'sr_RS', |
| 3047 | 'name' => 'Serbian dinar', |
| 3048 | 'singular' => 'Serbian dinar', |
| 3049 | 'plural' => 'Serbian dinars', |
| 3050 | 'short_symbol' => null, |
| 3051 | 'locales' => $locales['RSD'], |
| 3052 | ), |
| 3053 | 'RU' => array( |
| 3054 | 'currency_code' => 'RUB', |
| 3055 | 'currency_pos' => 'right_space', |
| 3056 | 'thousand_sep' => ' ', |
| 3057 | 'decimal_sep' => ',', |
| 3058 | 'num_decimals' => 2, |
| 3059 | 'weight_unit' => 'kg', |
| 3060 | 'dimension_unit' => 'cm', |
| 3061 | 'direction' => 'ltr', |
| 3062 | 'default_locale' => 'ru_RU', |
| 3063 | 'name' => 'Russian ruble', |
| 3064 | 'singular' => 'Russian ruble', |
| 3065 | 'plural' => 'Russian rubles', |
| 3066 | 'short_symbol' => '₽', |
| 3067 | 'locales' => $locales['RUB'], |
| 3068 | ), |
| 3069 | 'RW' => array( |
| 3070 | 'currency_code' => 'RWF', |
| 3071 | 'currency_pos' => 'left_space', |
| 3072 | 'thousand_sep' => '.', |
| 3073 | 'decimal_sep' => ',', |
| 3074 | 'num_decimals' => 0, |
| 3075 | 'weight_unit' => 'kg', |
| 3076 | 'dimension_unit' => 'cm', |
| 3077 | 'direction' => 'ltr', |
| 3078 | 'default_locale' => 'rw_RW', |
| 3079 | 'name' => 'Rwandan franc', |
| 3080 | 'singular' => 'Rwandan franc', |
| 3081 | 'plural' => 'Rwandan francs', |
| 3082 | 'short_symbol' => 'RF', |
| 3083 | 'locales' => $locales['RWF'], |
| 3084 | ), |
| 3085 | 'SA' => array( |
| 3086 | 'currency_code' => 'SAR', |
| 3087 | 'currency_pos' => 'right_space', |
| 3088 | 'thousand_sep' => '.', |
| 3089 | 'decimal_sep' => ',', |
| 3090 | 'num_decimals' => 2, |
| 3091 | 'weight_unit' => 'kg', |
| 3092 | 'dimension_unit' => 'cm', |
| 3093 | 'direction' => 'rtl', |
| 3094 | 'default_locale' => 'ar_SA', |
| 3095 | 'name' => 'Saudi riyal', |
| 3096 | 'singular' => 'Saudi riyal', |
| 3097 | 'plural' => 'Saudi riyals', |
| 3098 | 'short_symbol' => null, |
| 3099 | 'locales' => $locales['SAR'], |
| 3100 | ), |
| 3101 | 'SB' => array( |
| 3102 | 'currency_code' => 'SBD', |
| 3103 | 'currency_pos' => 'left', |
| 3104 | 'thousand_sep' => ',', |
| 3105 | 'decimal_sep' => '.', |
| 3106 | 'num_decimals' => 2, |
| 3107 | 'weight_unit' => 'kg', |
| 3108 | 'dimension_unit' => 'cm', |
| 3109 | 'direction' => 'ltr', |
| 3110 | 'default_locale' => 'en_SB', |
| 3111 | 'name' => 'Solomon Islands dollar', |
| 3112 | 'singular' => 'Solomon Islands dollar', |
| 3113 | 'plural' => 'Solomon Islands dollars', |
| 3114 | 'short_symbol' => '$', |
| 3115 | 'locales' => $locales['SBD'], |
| 3116 | ), |
| 3117 | 'SC' => array( |
| 3118 | 'currency_code' => 'SCR', |
| 3119 | 'currency_pos' => 'right_space', |
| 3120 | 'thousand_sep' => ' ', |
| 3121 | 'decimal_sep' => ',', |
| 3122 | 'num_decimals' => 2, |
| 3123 | 'weight_unit' => 'kg', |
| 3124 | 'dimension_unit' => 'cm', |
| 3125 | 'direction' => 'ltr', |
| 3126 | 'default_locale' => 'fr_SC', |
| 3127 | 'name' => 'Seychellois rupee', |
| 3128 | 'singular' => 'Seychellois rupee', |
| 3129 | 'plural' => 'Seychellois rupees', |
| 3130 | 'short_symbol' => null, |
| 3131 | 'locales' => $locales['SCR'], |
| 3132 | ), |
| 3133 | 'SD' => array( |
| 3134 | 'currency_code' => 'SDG', |
| 3135 | 'currency_pos' => 'right_space', |
| 3136 | 'thousand_sep' => '.', |
| 3137 | 'decimal_sep' => ',', |
| 3138 | 'num_decimals' => 2, |
| 3139 | 'weight_unit' => 'kg', |
| 3140 | 'dimension_unit' => 'cm', |
| 3141 | 'direction' => 'rtl', |
| 3142 | 'default_locale' => 'ar_SD', |
| 3143 | 'name' => 'Sudanese pound', |
| 3144 | 'singular' => 'Sudanese pound', |
| 3145 | 'plural' => 'Sudanese pounds', |
| 3146 | 'short_symbol' => null, |
| 3147 | 'locales' => $locales['SDG'], |
| 3148 | ), |
| 3149 | 'SE' => array( |
| 3150 | 'currency_code' => 'SEK', |
| 3151 | 'currency_pos' => 'right_space', |
| 3152 | 'thousand_sep' => ' ', |
| 3153 | 'decimal_sep' => ',', |
| 3154 | 'num_decimals' => 2, |
| 3155 | 'weight_unit' => 'kg', |
| 3156 | 'dimension_unit' => 'cm', |
| 3157 | 'direction' => 'ltr', |
| 3158 | 'default_locale' => 'sv_SE', |
| 3159 | 'name' => 'Swedish krona', |
| 3160 | 'singular' => 'Swedish krona', |
| 3161 | 'plural' => 'Swedish kronor', |
| 3162 | 'short_symbol' => 'kr', |
| 3163 | 'locales' => $locales['SEK'], |
| 3164 | ), |
| 3165 | 'SG' => array( |
| 3166 | 'currency_code' => 'SGD', |
| 3167 | 'currency_pos' => 'left', |
| 3168 | 'thousand_sep' => ',', |
| 3169 | 'decimal_sep' => '.', |
| 3170 | 'num_decimals' => 2, |
| 3171 | 'weight_unit' => 'kg', |
| 3172 | 'dimension_unit' => 'cm', |
| 3173 | 'direction' => 'ltr', |
| 3174 | 'default_locale' => 'en_SG', |
| 3175 | 'name' => 'Singapore dollar', |
| 3176 | 'singular' => 'Singapore dollar', |
| 3177 | 'plural' => 'Singapore dollars', |
| 3178 | 'short_symbol' => '$', |
| 3179 | 'locales' => $locales['SGD'], |
| 3180 | ), |
| 3181 | 'SH' => array( |
| 3182 | 'currency_code' => 'SHP', |
| 3183 | 'currency_pos' => 'left', |
| 3184 | 'thousand_sep' => ',', |
| 3185 | 'decimal_sep' => '.', |
| 3186 | 'num_decimals' => 2, |
| 3187 | 'weight_unit' => 'kg', |
| 3188 | 'dimension_unit' => 'cm', |
| 3189 | 'direction' => 'ltr', |
| 3190 | 'default_locale' => 'en_SH', |
| 3191 | 'name' => 'Saint Helena pound', |
| 3192 | 'singular' => 'St. Helena pound', |
| 3193 | 'plural' => 'St. Helena pounds', |
| 3194 | 'short_symbol' => '£', |
| 3195 | 'locales' => $locales['SHP'], |
| 3196 | ), |
| 3197 | 'SI' => array( |
| 3198 | 'currency_code' => 'EUR', |
| 3199 | 'currency_pos' => 'right_space', |
| 3200 | 'thousand_sep' => '.', |
| 3201 | 'decimal_sep' => ',', |
| 3202 | 'num_decimals' => 2, |
| 3203 | 'weight_unit' => 'kg', |
| 3204 | 'dimension_unit' => 'cm', |
| 3205 | 'direction' => 'ltr', |
| 3206 | 'default_locale' => 'sl_SI', |
| 3207 | 'name' => 'Euro', |
| 3208 | 'singular' => 'euro', |
| 3209 | 'plural' => 'euros', |
| 3210 | 'short_symbol' => '€', |
| 3211 | 'locales' => $locales['EUR'], |
| 3212 | ), |
| 3213 | 'SJ' => array( |
| 3214 | 'currency_code' => 'NOK', |
| 3215 | 'currency_pos' => 'left_space', |
| 3216 | 'thousand_sep' => ' ', |
| 3217 | 'decimal_sep' => ',', |
| 3218 | 'num_decimals' => 2, |
| 3219 | 'weight_unit' => 'kg', |
| 3220 | 'dimension_unit' => 'cm', |
| 3221 | 'direction' => 'ltr', |
| 3222 | 'default_locale' => 'nb_SJ', |
| 3223 | 'name' => 'Norwegian krone', |
| 3224 | 'singular' => 'Norwegian krone', |
| 3225 | 'plural' => 'Norwegian kroner', |
| 3226 | 'short_symbol' => 'kr', |
| 3227 | 'locales' => $locales['NOK'], |
| 3228 | ), |
| 3229 | 'SK' => array( |
| 3230 | 'currency_code' => 'EUR', |
| 3231 | 'currency_pos' => 'right_space', |
| 3232 | 'thousand_sep' => ' ', |
| 3233 | 'decimal_sep' => ',', |
| 3234 | 'num_decimals' => 2, |
| 3235 | 'weight_unit' => 'kg', |
| 3236 | 'dimension_unit' => 'cm', |
| 3237 | 'direction' => 'ltr', |
| 3238 | 'default_locale' => 'sk_SK', |
| 3239 | 'name' => 'Euro', |
| 3240 | 'singular' => 'euro', |
| 3241 | 'plural' => 'euros', |
| 3242 | 'short_symbol' => '€', |
| 3243 | 'locales' => $locales['EUR'], |
| 3244 | ), |
| 3245 | 'SL' => array( |
| 3246 | 'currency_code' => 'SLL', |
| 3247 | 'currency_pos' => 'left', |
| 3248 | 'thousand_sep' => ',', |
| 3249 | 'decimal_sep' => '.', |
| 3250 | 'num_decimals' => 0, |
| 3251 | 'weight_unit' => 'kg', |
| 3252 | 'dimension_unit' => 'cm', |
| 3253 | 'direction' => 'ltr', |
| 3254 | 'default_locale' => 'en_SL', |
| 3255 | 'name' => 'Sierra Leonean leone', |
| 3256 | 'singular' => 'Sierra Leonean leone', |
| 3257 | 'plural' => 'Sierra Leonean leones', |
| 3258 | 'short_symbol' => null, |
| 3259 | 'locales' => $locales['SLL'], |
| 3260 | ), |
| 3261 | 'SM' => array( |
| 3262 | 'currency_code' => 'EUR', |
| 3263 | 'currency_pos' => 'right_space', |
| 3264 | 'thousand_sep' => '.', |
| 3265 | 'decimal_sep' => ',', |
| 3266 | 'num_decimals' => 2, |
| 3267 | 'weight_unit' => 'kg', |
| 3268 | 'dimension_unit' => 'cm', |
| 3269 | 'direction' => 'ltr', |
| 3270 | 'default_locale' => 'it_SM', |
| 3271 | 'name' => 'Euro', |
| 3272 | 'singular' => 'euro', |
| 3273 | 'plural' => 'euros', |
| 3274 | 'short_symbol' => '€', |
| 3275 | 'locales' => $locales['EUR'], |
| 3276 | ), |
| 3277 | 'SN' => array( |
| 3278 | 'currency_code' => 'XOF', |
| 3279 | 'currency_pos' => 'left_space', |
| 3280 | 'thousand_sep' => '.', |
| 3281 | 'decimal_sep' => ',', |
| 3282 | 'num_decimals' => 0, |
| 3283 | 'weight_unit' => 'kg', |
| 3284 | 'dimension_unit' => 'cm', |
| 3285 | 'direction' => 'ltr', |
| 3286 | 'default_locale' => 'wo_SN', |
| 3287 | 'name' => 'West African CFA franc', |
| 3288 | 'singular' => 'West African CFA franc', |
| 3289 | 'plural' => 'West African CFA francs', |
| 3290 | 'short_symbol' => null, |
| 3291 | 'locales' => $locales['XOF'], |
| 3292 | ), |
| 3293 | 'SO' => array( |
| 3294 | 'currency_code' => 'SOS', |
| 3295 | 'currency_pos' => 'left', |
| 3296 | 'thousand_sep' => ',', |
| 3297 | 'decimal_sep' => '.', |
| 3298 | 'num_decimals' => 0, |
| 3299 | 'weight_unit' => 'kg', |
| 3300 | 'dimension_unit' => 'cm', |
| 3301 | 'direction' => 'ltr', |
| 3302 | 'default_locale' => 'so_SO', |
| 3303 | 'name' => 'Somali shilling', |
| 3304 | 'singular' => 'Somali shilling', |
| 3305 | 'plural' => 'Somali shillings', |
| 3306 | 'short_symbol' => null, |
| 3307 | 'locales' => $locales['SOS'], |
| 3308 | ), |
| 3309 | 'SR' => array( |
| 3310 | 'currency_code' => 'SRD', |
| 3311 | 'currency_pos' => 'left_space', |
| 3312 | 'thousand_sep' => '.', |
| 3313 | 'decimal_sep' => ',', |
| 3314 | 'num_decimals' => 2, |
| 3315 | 'weight_unit' => 'kg', |
| 3316 | 'dimension_unit' => 'cm', |
| 3317 | 'direction' => 'ltr', |
| 3318 | 'default_locale' => 'nl_SR', |
| 3319 | 'name' => 'Surinamese dollar', |
| 3320 | 'singular' => 'Surinamese dollar', |
| 3321 | 'plural' => 'Surinamese dollars', |
| 3322 | 'short_symbol' => '$', |
| 3323 | 'locales' => $locales['SRD'], |
| 3324 | ), |
| 3325 | 'SS' => array( |
| 3326 | 'currency_code' => 'SSP', |
| 3327 | 'currency_pos' => 'left', |
| 3328 | 'thousand_sep' => ',', |
| 3329 | 'decimal_sep' => '.', |
| 3330 | 'num_decimals' => 2, |
| 3331 | 'weight_unit' => 'kg', |
| 3332 | 'dimension_unit' => 'cm', |
| 3333 | 'direction' => 'ltr', |
| 3334 | 'default_locale' => 'en_SS', |
| 3335 | 'name' => 'South Sudanese pound', |
| 3336 | 'singular' => 'South Sudanese pound', |
| 3337 | 'plural' => 'South Sudanese pounds', |
| 3338 | 'short_symbol' => '£', |
| 3339 | 'locales' => $locales['SSP'], |
| 3340 | ), |
| 3341 | 'ST' => array( |
| 3342 | 'currency_code' => 'STN', |
| 3343 | 'currency_pos' => 'right_space', |
| 3344 | 'thousand_sep' => ' ', |
| 3345 | 'decimal_sep' => ',', |
| 3346 | 'num_decimals' => 2, |
| 3347 | 'weight_unit' => 'kg', |
| 3348 | 'dimension_unit' => 'cm', |
| 3349 | 'direction' => 'ltr', |
| 3350 | 'default_locale' => 'pt_ST', |
| 3351 | 'name' => 'São Tomé and Príncipe dobra', |
| 3352 | 'singular' => 'São Tomé & Príncipe dobra', |
| 3353 | 'plural' => 'São Tomé & Príncipe dobras', |
| 3354 | 'short_symbol' => 'Db', |
| 3355 | 'locales' => $locales['STN'], |
| 3356 | ), |
| 3357 | 'SV' => array( |
| 3358 | 'currency_code' => 'USD', |
| 3359 | 'currency_pos' => 'left', |
| 3360 | 'thousand_sep' => ',', |
| 3361 | 'decimal_sep' => '.', |
| 3362 | 'num_decimals' => 2, |
| 3363 | 'weight_unit' => 'kg', |
| 3364 | 'dimension_unit' => 'cm', |
| 3365 | 'direction' => 'ltr', |
| 3366 | 'default_locale' => 'es_SV', |
| 3367 | 'name' => 'United States (US) dollar', |
| 3368 | 'singular' => 'US dollar', |
| 3369 | 'plural' => 'US dollars', |
| 3370 | 'short_symbol' => '$', |
| 3371 | 'locales' => $locales['USD'], |
| 3372 | ), |
| 3373 | 'SX' => array( |
| 3374 | 'currency_code' => 'ANG', |
| 3375 | 'currency_pos' => 'left', |
| 3376 | 'thousand_sep' => ',', |
| 3377 | 'decimal_sep' => '.', |
| 3378 | 'num_decimals' => 2, |
| 3379 | 'weight_unit' => 'kg', |
| 3380 | 'dimension_unit' => 'cm', |
| 3381 | 'direction' => 'ltr', |
| 3382 | 'default_locale' => 'en_SX', |
| 3383 | 'name' => 'Netherlands Antillean guilder', |
| 3384 | 'singular' => 'Netherlands Antillean guilder', |
| 3385 | 'plural' => 'Netherlands Antillean guilders', |
| 3386 | 'short_symbol' => null, |
| 3387 | 'locales' => $locales['ANG'], |
| 3388 | ), |
| 3389 | 'SY' => array( |
| 3390 | 'currency_code' => 'SYP', |
| 3391 | 'currency_pos' => 'right_space', |
| 3392 | 'thousand_sep' => '.', |
| 3393 | 'decimal_sep' => ',', |
| 3394 | 'num_decimals' => 0, |
| 3395 | 'weight_unit' => 'kg', |
| 3396 | 'dimension_unit' => 'cm', |
| 3397 | 'direction' => 'rtl', |
| 3398 | 'default_locale' => 'ar_SY', |
| 3399 | 'name' => 'Syrian pound', |
| 3400 | 'singular' => 'Syrian pound', |
| 3401 | 'plural' => 'Syrian pounds', |
| 3402 | 'short_symbol' => '£', |
| 3403 | 'locales' => $locales['SYP'], |
| 3404 | ), |
| 3405 | 'SZ' => array( |
| 3406 | 'currency_code' => 'SZL', |
| 3407 | 'currency_pos' => 'left', |
| 3408 | 'thousand_sep' => ',', |
| 3409 | 'decimal_sep' => '.', |
| 3410 | 'num_decimals' => 2, |
| 3411 | 'weight_unit' => 'kg', |
| 3412 | 'dimension_unit' => 'cm', |
| 3413 | 'direction' => 'ltr', |
| 3414 | 'default_locale' => 'en_SZ', |
| 3415 | 'name' => 'Swazi lilangeni', |
| 3416 | 'singular' => 'Swazi lilangeni', |
| 3417 | 'plural' => 'Swazi emalangeni', |
| 3418 | 'short_symbol' => null, |
| 3419 | 'locales' => $locales['SZL'], |
| 3420 | ), |
| 3421 | 'TC' => array( |
| 3422 | 'currency_code' => 'USD', |
| 3423 | 'currency_pos' => 'left', |
| 3424 | 'thousand_sep' => ',', |
| 3425 | 'decimal_sep' => '.', |
| 3426 | 'num_decimals' => 2, |
| 3427 | 'weight_unit' => 'kg', |
| 3428 | 'dimension_unit' => 'cm', |
| 3429 | 'direction' => 'ltr', |
| 3430 | 'default_locale' => 'en_TC', |
| 3431 | 'name' => 'United States (US) dollar', |
| 3432 | 'singular' => 'US dollar', |
| 3433 | 'plural' => 'US dollars', |
| 3434 | 'short_symbol' => '$', |
| 3435 | 'locales' => $locales['USD'], |
| 3436 | ), |
| 3437 | 'TD' => array( |
| 3438 | 'currency_code' => 'XAF', |
| 3439 | 'currency_pos' => 'right_space', |
| 3440 | 'thousand_sep' => ' ', |
| 3441 | 'decimal_sep' => ',', |
| 3442 | 'num_decimals' => 0, |
| 3443 | 'weight_unit' => 'kg', |
| 3444 | 'dimension_unit' => 'cm', |
| 3445 | 'direction' => 'ltr', |
| 3446 | 'default_locale' => 'fr_TD', |
| 3447 | 'name' => 'Central African CFA franc', |
| 3448 | 'singular' => 'Central African CFA franc', |
| 3449 | 'plural' => 'Central African CFA francs', |
| 3450 | 'short_symbol' => null, |
| 3451 | 'locales' => $locales['XAF'], |
| 3452 | ), |
| 3453 | 'TG' => array( |
| 3454 | 'currency_code' => 'XOF', |
| 3455 | 'currency_pos' => 'right_space', |
| 3456 | 'thousand_sep' => ' ', |
| 3457 | 'decimal_sep' => ',', |
| 3458 | 'num_decimals' => 0, |
| 3459 | 'weight_unit' => 'kg', |
| 3460 | 'dimension_unit' => 'cm', |
| 3461 | 'direction' => 'ltr', |
| 3462 | 'default_locale' => 'fr_TG', |
| 3463 | 'name' => 'West African CFA franc', |
| 3464 | 'singular' => 'West African CFA franc', |
| 3465 | 'plural' => 'West African CFA francs', |
| 3466 | 'short_symbol' => null, |
| 3467 | 'locales' => $locales['XOF'], |
| 3468 | ), |
| 3469 | 'TH' => array( |
| 3470 | 'currency_code' => 'THB', |
| 3471 | 'currency_pos' => 'left', |
| 3472 | 'thousand_sep' => ',', |
| 3473 | 'decimal_sep' => '.', |
| 3474 | 'num_decimals' => 2, |
| 3475 | 'weight_unit' => 'kg', |
| 3476 | 'dimension_unit' => 'cm', |
| 3477 | 'direction' => 'ltr', |
| 3478 | 'default_locale' => 'th_TH', |
| 3479 | 'name' => 'Thai baht', |
| 3480 | 'singular' => 'Thai baht', |
| 3481 | 'plural' => 'Thai baht', |
| 3482 | 'short_symbol' => '฿', |
| 3483 | 'locales' => $locales['THB'], |
| 3484 | ), |
| 3485 | 'TJ' => array( |
| 3486 | 'currency_code' => 'TJS', |
| 3487 | 'currency_pos' => 'right_space', |
| 3488 | 'thousand_sep' => ' ', |
| 3489 | 'decimal_sep' => ',', |
| 3490 | 'num_decimals' => 2, |
| 3491 | 'weight_unit' => 'kg', |
| 3492 | 'dimension_unit' => 'cm', |
| 3493 | 'direction' => 'ltr', |
| 3494 | 'default_locale' => 'tg_TJ', |
| 3495 | 'name' => 'Tajikistani somoni', |
| 3496 | 'singular' => 'Tajikistani somoni', |
| 3497 | 'plural' => 'Tajikistani somonis', |
| 3498 | 'short_symbol' => null, |
| 3499 | 'locales' => $locales['TJS'], |
| 3500 | ), |
| 3501 | 'TK' => array( |
| 3502 | 'currency_code' => 'NZD', |
| 3503 | 'currency_pos' => 'left', |
| 3504 | 'thousand_sep' => ',', |
| 3505 | 'decimal_sep' => '.', |
| 3506 | 'num_decimals' => 2, |
| 3507 | 'weight_unit' => 'kg', |
| 3508 | 'dimension_unit' => 'cm', |
| 3509 | 'direction' => 'ltr', |
| 3510 | 'default_locale' => 'en_TK', |
| 3511 | 'name' => 'New Zealand dollar', |
| 3512 | 'singular' => 'New Zealand dollar', |
| 3513 | 'plural' => 'New Zealand dollars', |
| 3514 | 'short_symbol' => '$', |
| 3515 | 'locales' => $locales['NZD'], |
| 3516 | ), |
| 3517 | 'TL' => array( |
| 3518 | 'currency_code' => 'USD', |
| 3519 | 'currency_pos' => 'right_space', |
| 3520 | 'thousand_sep' => ' ', |
| 3521 | 'decimal_sep' => ',', |
| 3522 | 'num_decimals' => 2, |
| 3523 | 'weight_unit' => 'kg', |
| 3524 | 'dimension_unit' => 'cm', |
| 3525 | 'direction' => 'ltr', |
| 3526 | 'default_locale' => 'pt_TL', |
| 3527 | 'name' => 'United States (US) dollar', |
| 3528 | 'singular' => 'US dollar', |
| 3529 | 'plural' => 'US dollars', |
| 3530 | 'short_symbol' => '$', |
| 3531 | 'locales' => $locales['USD'], |
| 3532 | ), |
| 3533 | 'TM' => array( |
| 3534 | 'currency_code' => 'TMT', |
| 3535 | 'currency_pos' => 'right_space', |
| 3536 | 'thousand_sep' => ' ', |
| 3537 | 'decimal_sep' => ',', |
| 3538 | 'num_decimals' => 2, |
| 3539 | 'weight_unit' => 'kg', |
| 3540 | 'dimension_unit' => 'cm', |
| 3541 | 'direction' => 'ltr', |
| 3542 | 'default_locale' => 'tk_TM', |
| 3543 | 'name' => 'Turkmenistan manat', |
| 3544 | 'singular' => 'Turkmenistani manat', |
| 3545 | 'plural' => 'Turkmenistani manat', |
| 3546 | 'short_symbol' => null, |
| 3547 | 'locales' => $locales['TMT'], |
| 3548 | ), |
| 3549 | 'TN' => array( |
| 3550 | 'currency_code' => 'TND', |
| 3551 | 'currency_pos' => 'left_space', |
| 3552 | 'thousand_sep' => '.', |
| 3553 | 'decimal_sep' => ',', |
| 3554 | 'num_decimals' => 3, |
| 3555 | 'weight_unit' => 'kg', |
| 3556 | 'dimension_unit' => 'cm', |
| 3557 | 'direction' => 'rtl', |
| 3558 | 'default_locale' => 'ar_TN', |
| 3559 | 'name' => 'Tunisian dinar', |
| 3560 | 'singular' => 'Tunisian dinar', |
| 3561 | 'plural' => 'Tunisian dinars', |
| 3562 | 'short_symbol' => null, |
| 3563 | 'locales' => $locales['TND'], |
| 3564 | ), |
| 3565 | 'TO' => array( |
| 3566 | 'currency_code' => 'TOP', |
| 3567 | 'currency_pos' => 'left_space', |
| 3568 | 'thousand_sep' => ',', |
| 3569 | 'decimal_sep' => '.', |
| 3570 | 'num_decimals' => 2, |
| 3571 | 'weight_unit' => 'kg', |
| 3572 | 'dimension_unit' => 'cm', |
| 3573 | 'direction' => 'ltr', |
| 3574 | 'default_locale' => 'to_TO', |
| 3575 | 'name' => 'Tongan paʻanga', |
| 3576 | 'singular' => 'Tongan paʻanga', |
| 3577 | 'plural' => 'Tongan paʻanga', |
| 3578 | 'short_symbol' => 'T$', |
| 3579 | 'locales' => $locales['TOP'], |
| 3580 | ), |
| 3581 | 'TR' => array( |
| 3582 | 'currency_code' => 'TRY', |
| 3583 | 'currency_pos' => 'left', |
| 3584 | 'thousand_sep' => '.', |
| 3585 | 'decimal_sep' => ',', |
| 3586 | 'num_decimals' => 2, |
| 3587 | 'weight_unit' => 'kg', |
| 3588 | 'dimension_unit' => 'cm', |
| 3589 | 'direction' => 'ltr', |
| 3590 | 'default_locale' => 'tr_TR', |
| 3591 | 'name' => 'Turkish lira', |
| 3592 | 'singular' => 'Turkish lira', |
| 3593 | 'plural' => 'Turkish Lira', |
| 3594 | 'short_symbol' => '₺', |
| 3595 | 'locales' => $locales['TRY'], |
| 3596 | ), |
| 3597 | 'TT' => array( |
| 3598 | 'currency_code' => 'TTD', |
| 3599 | 'currency_pos' => 'left', |
| 3600 | 'thousand_sep' => ',', |
| 3601 | 'decimal_sep' => '.', |
| 3602 | 'num_decimals' => 2, |
| 3603 | 'weight_unit' => 'kg', |
| 3604 | 'dimension_unit' => 'cm', |
| 3605 | 'direction' => 'ltr', |
| 3606 | 'default_locale' => 'en_TT', |
| 3607 | 'name' => 'Trinidad and Tobago dollar', |
| 3608 | 'singular' => 'Trinidad & Tobago dollar', |
| 3609 | 'plural' => 'Trinidad & Tobago dollars', |
| 3610 | 'short_symbol' => '$', |
| 3611 | 'locales' => $locales['TTD'], |
| 3612 | ), |
| 3613 | 'TV' => array( |
| 3614 | 'currency_code' => 'AUD', |
| 3615 | 'currency_pos' => 'left', |
| 3616 | 'thousand_sep' => ',', |
| 3617 | 'decimal_sep' => '.', |
| 3618 | 'num_decimals' => 2, |
| 3619 | 'weight_unit' => 'kg', |
| 3620 | 'dimension_unit' => 'cm', |
| 3621 | 'direction' => 'ltr', |
| 3622 | 'default_locale' => 'en_TV', |
| 3623 | 'name' => 'Australian dollar', |
| 3624 | 'singular' => 'Australian dollar', |
| 3625 | 'plural' => 'Australian dollars', |
| 3626 | 'short_symbol' => '$', |
| 3627 | 'locales' => $locales['AUD'], |
| 3628 | ), |
| 3629 | 'TW' => array( |
| 3630 | 'currency_code' => 'TWD', |
| 3631 | 'currency_pos' => 'left', |
| 3632 | 'thousand_sep' => ',', |
| 3633 | 'decimal_sep' => '.', |
| 3634 | 'num_decimals' => 0, |
| 3635 | 'weight_unit' => 'kg', |
| 3636 | 'dimension_unit' => 'cm', |
| 3637 | 'direction' => 'ltr', |
| 3638 | 'default_locale' => 'zh_Hant', |
| 3639 | 'name' => 'New Taiwan dollar', |
| 3640 | 'singular' => 'New Taiwan dollar', |
| 3641 | 'plural' => 'New Taiwan dollars', |
| 3642 | 'short_symbol' => '$', |
| 3643 | 'locales' => $locales['TWD'], |
| 3644 | ), |
| 3645 | 'TZ' => array( |
| 3646 | 'currency_code' => 'TZS', |
| 3647 | 'currency_pos' => 'left_space', |
| 3648 | 'thousand_sep' => ',', |
| 3649 | 'decimal_sep' => '.', |
| 3650 | 'num_decimals' => 0, |
| 3651 | 'weight_unit' => 'kg', |
| 3652 | 'dimension_unit' => 'cm', |
| 3653 | 'direction' => 'ltr', |
| 3654 | 'default_locale' => 'sw_TZ', |
| 3655 | 'name' => 'Tanzanian shilling', |
| 3656 | 'singular' => 'Tanzanian shilling', |
| 3657 | 'plural' => 'Tanzanian shillings', |
| 3658 | 'short_symbol' => null, |
| 3659 | 'locales' => $locales['TZS'], |
| 3660 | ), |
| 3661 | 'UA' => array( |
| 3662 | 'currency_code' => 'UAH', |
| 3663 | 'currency_pos' => 'right_space', |
| 3664 | 'thousand_sep' => ' ', |
| 3665 | 'decimal_sep' => ',', |
| 3666 | 'num_decimals' => 2, |
| 3667 | 'weight_unit' => 'kg', |
| 3668 | 'dimension_unit' => 'cm', |
| 3669 | 'direction' => 'ltr', |
| 3670 | 'default_locale' => 'uk_UA', |
| 3671 | 'name' => 'Ukrainian hryvnia', |
| 3672 | 'singular' => 'Ukrainian hryvnia', |
| 3673 | 'plural' => 'Ukrainian hryvnias', |
| 3674 | 'short_symbol' => '₴', |
| 3675 | 'locales' => $locales['UAH'], |
| 3676 | ), |
| 3677 | 'UG' => array( |
| 3678 | 'currency_code' => 'UGX', |
| 3679 | 'currency_pos' => 'left_space', |
| 3680 | 'thousand_sep' => ',', |
| 3681 | 'decimal_sep' => '.', |
| 3682 | 'num_decimals' => 0, |
| 3683 | 'weight_unit' => 'kg', |
| 3684 | 'dimension_unit' => 'cm', |
| 3685 | 'direction' => 'ltr', |
| 3686 | 'default_locale' => 'sw_UG', |
| 3687 | 'name' => 'Ugandan shilling', |
| 3688 | 'singular' => 'Ugandan shilling', |
| 3689 | 'plural' => 'Ugandan shillings', |
| 3690 | 'short_symbol' => null, |
| 3691 | 'locales' => $locales['UGX'], |
| 3692 | ), |
| 3693 | 'UM' => array( |
| 3694 | 'currency_code' => 'USD', |
| 3695 | 'currency_pos' => 'left', |
| 3696 | 'thousand_sep' => ',', |
| 3697 | 'decimal_sep' => '.', |
| 3698 | 'num_decimals' => 2, |
| 3699 | 'weight_unit' => 'kg', |
| 3700 | 'dimension_unit' => 'cm', |
| 3701 | 'direction' => 'ltr', |
| 3702 | 'default_locale' => 'en_UM', |
| 3703 | 'name' => 'United States (US) dollar', |
| 3704 | 'singular' => 'US dollar', |
| 3705 | 'plural' => 'US dollars', |
| 3706 | 'short_symbol' => '$', |
| 3707 | 'locales' => $locales['USD'], |
| 3708 | ), |
| 3709 | 'US' => array( |
| 3710 | 'currency_code' => 'USD', |
| 3711 | 'currency_pos' => 'left', |
| 3712 | 'thousand_sep' => ',', |
| 3713 | 'decimal_sep' => '.', |
| 3714 | 'num_decimals' => 2, |
| 3715 | 'weight_unit' => 'lbs', |
| 3716 | 'dimension_unit' => 'in', |
| 3717 | 'direction' => 'ltr', |
| 3718 | 'default_locale' => 'en_US', |
| 3719 | 'name' => 'United States (US) dollar', |
| 3720 | 'singular' => 'US dollar', |
| 3721 | 'plural' => 'US dollars', |
| 3722 | 'short_symbol' => '$', |
| 3723 | 'locales' => $locales['USD'], |
| 3724 | ), |
| 3725 | 'UY' => array( |
| 3726 | 'currency_code' => 'UYU', |
| 3727 | 'currency_pos' => 'left_space', |
| 3728 | 'thousand_sep' => '.', |
| 3729 | 'decimal_sep' => ',', |
| 3730 | 'num_decimals' => 2, |
| 3731 | 'weight_unit' => 'kg', |
| 3732 | 'dimension_unit' => 'cm', |
| 3733 | 'direction' => 'ltr', |
| 3734 | 'default_locale' => 'es_UY', |
| 3735 | 'name' => 'Uruguayan peso', |
| 3736 | 'singular' => 'Uruguayan peso', |
| 3737 | 'plural' => 'Uruguayan pesos', |
| 3738 | 'short_symbol' => '$', |
| 3739 | 'locales' => $locales['UYU'], |
| 3740 | ), |
| 3741 | 'UZ' => array( |
| 3742 | 'currency_code' => 'UZS', |
| 3743 | 'currency_pos' => 'right_space', |
| 3744 | 'thousand_sep' => ' ', |
| 3745 | 'decimal_sep' => ',', |
| 3746 | 'num_decimals' => 0, |
| 3747 | 'weight_unit' => 'kg', |
| 3748 | 'dimension_unit' => 'cm', |
| 3749 | 'direction' => 'ltr', |
| 3750 | 'default_locale' => 'uz_AF', |
| 3751 | 'name' => 'Uzbekistani som', |
| 3752 | 'singular' => 'Uzbekistani som', |
| 3753 | 'plural' => 'Uzbekistani som', |
| 3754 | 'short_symbol' => null, |
| 3755 | 'locales' => $locales['UZS'], |
| 3756 | ), |
| 3757 | 'VA' => array( |
| 3758 | 'currency_code' => 'EUR', |
| 3759 | 'currency_pos' => 'right_space', |
| 3760 | 'thousand_sep' => '.', |
| 3761 | 'decimal_sep' => ',', |
| 3762 | 'num_decimals' => 2, |
| 3763 | 'weight_unit' => 'kg', |
| 3764 | 'dimension_unit' => 'cm', |
| 3765 | 'direction' => 'ltr', |
| 3766 | 'default_locale' => 'it_VA', |
| 3767 | 'name' => 'Euro', |
| 3768 | 'singular' => 'euro', |
| 3769 | 'plural' => 'euros', |
| 3770 | 'short_symbol' => '€', |
| 3771 | 'locales' => $locales['EUR'], |
| 3772 | ), |
| 3773 | 'VC' => array( |
| 3774 | 'currency_code' => 'XCD', |
| 3775 | 'currency_pos' => 'left', |
| 3776 | 'thousand_sep' => ',', |
| 3777 | 'decimal_sep' => '.', |
| 3778 | 'num_decimals' => 2, |
| 3779 | 'weight_unit' => 'kg', |
| 3780 | 'dimension_unit' => 'cm', |
| 3781 | 'direction' => 'ltr', |
| 3782 | 'default_locale' => 'en_VC', |
| 3783 | 'name' => 'East Caribbean dollar', |
| 3784 | 'singular' => 'East Caribbean dollar', |
| 3785 | 'plural' => 'East Caribbean dollars', |
| 3786 | 'short_symbol' => '$', |
| 3787 | 'locales' => $locales['XCD'], |
| 3788 | ), |
| 3789 | 'VE' => array( |
| 3790 | 'currency_code' => 'VES', |
| 3791 | 'currency_pos' => 'left', |
| 3792 | 'thousand_sep' => '.', |
| 3793 | 'decimal_sep' => ',', |
| 3794 | 'num_decimals' => 2, |
| 3795 | 'weight_unit' => 'kg', |
| 3796 | 'dimension_unit' => 'cm', |
| 3797 | 'direction' => 'ltr', |
| 3798 | 'default_locale' => 'es_VE', |
| 3799 | 'name' => 'Bolívar', |
| 3800 | 'singular' => 'Venezuelan bolívar', |
| 3801 | 'plural' => 'Venezuelan bolívars', |
| 3802 | 'short_symbol' => null, |
| 3803 | 'locales' => $locales['VES'], |
| 3804 | ), |
| 3805 | 'VG' => array( |
| 3806 | 'currency_code' => 'USD', |
| 3807 | 'currency_pos' => 'left', |
| 3808 | 'thousand_sep' => ',', |
| 3809 | 'decimal_sep' => '.', |
| 3810 | 'num_decimals' => 2, |
| 3811 | 'weight_unit' => 'kg', |
| 3812 | 'dimension_unit' => 'cm', |
| 3813 | 'direction' => 'ltr', |
| 3814 | 'default_locale' => 'en_VG', |
| 3815 | 'name' => 'United States (US) dollar', |
| 3816 | 'singular' => 'US dollar', |
| 3817 | 'plural' => 'US dollars', |
| 3818 | 'short_symbol' => '$', |
| 3819 | 'locales' => $locales['USD'], |
| 3820 | ), |
| 3821 | 'VI' => array( |
| 3822 | 'currency_code' => 'USD', |
| 3823 | 'currency_pos' => 'left', |
| 3824 | 'thousand_sep' => ',', |
| 3825 | 'decimal_sep' => '.', |
| 3826 | 'num_decimals' => 2, |
| 3827 | 'weight_unit' => 'lbs', |
| 3828 | 'dimension_unit' => 'in', |
| 3829 | 'direction' => 'ltr', |
| 3830 | 'default_locale' => 'en_VI', |
| 3831 | 'name' => 'United States (US) dollar', |
| 3832 | 'singular' => 'US dollar', |
| 3833 | 'plural' => 'US dollars', |
| 3834 | 'short_symbol' => '$', |
| 3835 | 'locales' => $locales['USD'], |
| 3836 | ), |
| 3837 | 'VN' => array( |
| 3838 | 'currency_code' => 'VND', |
| 3839 | 'currency_pos' => 'right_space', |
| 3840 | 'thousand_sep' => '.', |
| 3841 | 'decimal_sep' => ',', |
| 3842 | 'num_decimals' => 0, |
| 3843 | 'weight_unit' => 'kg', |
| 3844 | 'dimension_unit' => 'cm', |
| 3845 | 'direction' => 'ltr', |
| 3846 | 'default_locale' => 'vi_VN', |
| 3847 | 'name' => 'Vietnamese đồng', |
| 3848 | 'singular' => 'Vietnamese dong', |
| 3849 | 'plural' => 'Vietnamese dong', |
| 3850 | 'short_symbol' => '₫', |
| 3851 | 'locales' => $locales['VND'], |
| 3852 | ), |
| 3853 | 'VU' => array( |
| 3854 | 'currency_code' => 'VUV', |
| 3855 | 'currency_pos' => 'left', |
| 3856 | 'thousand_sep' => ',', |
| 3857 | 'decimal_sep' => '.', |
| 3858 | 'num_decimals' => 0, |
| 3859 | 'weight_unit' => 'kg', |
| 3860 | 'dimension_unit' => 'cm', |
| 3861 | 'direction' => 'ltr', |
| 3862 | 'default_locale' => 'en_VU', |
| 3863 | 'name' => 'Vanuatu vatu', |
| 3864 | 'singular' => 'Vanuatu vatu', |
| 3865 | 'plural' => 'Vanuatu vatus', |
| 3866 | 'short_symbol' => null, |
| 3867 | 'locales' => $locales['VUV'], |
| 3868 | ), |
| 3869 | 'WF' => array( |
| 3870 | 'currency_code' => 'XPF', |
| 3871 | 'currency_pos' => 'right_space', |
| 3872 | 'thousand_sep' => ' ', |
| 3873 | 'decimal_sep' => '.', |
| 3874 | 'num_decimals' => 0, |
| 3875 | 'weight_unit' => 'kg', |
| 3876 | 'dimension_unit' => 'cm', |
| 3877 | 'direction' => 'ltr', |
| 3878 | 'default_locale' => 'fr_WF', |
| 3879 | 'name' => 'CFP franc', |
| 3880 | 'singular' => 'CFP franc', |
| 3881 | 'plural' => 'CFP francs', |
| 3882 | 'short_symbol' => null, |
| 3883 | 'locales' => $locales['XPF'], |
| 3884 | ), |
| 3885 | 'WS' => array( |
| 3886 | 'currency_code' => 'WST', |
| 3887 | 'currency_pos' => 'left', |
| 3888 | 'thousand_sep' => ',', |
| 3889 | 'decimal_sep' => '.', |
| 3890 | 'num_decimals' => 2, |
| 3891 | 'weight_unit' => 'kg', |
| 3892 | 'dimension_unit' => 'cm', |
| 3893 | 'direction' => 'ltr', |
| 3894 | 'default_locale' => 'en_WS', |
| 3895 | 'name' => 'Samoan tālā', |
| 3896 | 'singular' => 'Samoan tala', |
| 3897 | 'plural' => 'Samoan tala', |
| 3898 | 'short_symbol' => null, |
| 3899 | 'locales' => $locales['WST'], |
| 3900 | ), |
| 3901 | 'XK' => array( |
| 3902 | 'currency_code' => 'EUR', |
| 3903 | 'currency_pos' => 'right_space', |
| 3904 | 'thousand_sep' => ' ', |
| 3905 | 'decimal_sep' => ',', |
| 3906 | 'num_decimals' => 2, |
| 3907 | 'weight_unit' => 'kg', |
| 3908 | 'dimension_unit' => 'cm', |
| 3909 | 'direction' => 'ltr', |
| 3910 | 'default_locale' => 'sq_XK', |
| 3911 | 'name' => 'Euro', |
| 3912 | 'singular' => 'euro', |
| 3913 | 'plural' => 'euros', |
| 3914 | 'short_symbol' => '€', |
| 3915 | 'locales' => $locales['EUR'], |
| 3916 | ), |
| 3917 | 'YE' => array( |
| 3918 | 'currency_code' => 'YER', |
| 3919 | 'currency_pos' => 'right_space', |
| 3920 | 'thousand_sep' => '.', |
| 3921 | 'decimal_sep' => ',', |
| 3922 | 'num_decimals' => 0, |
| 3923 | 'weight_unit' => 'kg', |
| 3924 | 'dimension_unit' => 'cm', |
| 3925 | 'direction' => 'rtl', |
| 3926 | 'default_locale' => 'ar_YE', |
| 3927 | 'name' => 'Yemeni rial', |
| 3928 | 'singular' => 'Yemeni rial', |
| 3929 | 'plural' => 'Yemeni rials', |
| 3930 | 'short_symbol' => null, |
| 3931 | 'locales' => $locales['YER'], |
| 3932 | ), |
| 3933 | 'YT' => array( |
| 3934 | 'currency_code' => 'EUR', |
| 3935 | 'currency_pos' => 'right_space', |
| 3936 | 'thousand_sep' => ' ', |
| 3937 | 'decimal_sep' => ',', |
| 3938 | 'num_decimals' => 2, |
| 3939 | 'weight_unit' => 'kg', |
| 3940 | 'dimension_unit' => 'cm', |
| 3941 | 'direction' => 'ltr', |
| 3942 | 'default_locale' => 'fr_YT', |
| 3943 | 'name' => 'Euro', |
| 3944 | 'singular' => 'euro', |
| 3945 | 'plural' => 'euros', |
| 3946 | 'short_symbol' => '€', |
| 3947 | 'locales' => $locales['EUR'], |
| 3948 | ), |
| 3949 | 'ZA' => array( |
| 3950 | 'currency_code' => 'ZAR', |
| 3951 | 'currency_pos' => 'left', |
| 3952 | 'thousand_sep' => ' ', |
| 3953 | 'decimal_sep' => ',', |
| 3954 | 'num_decimals' => 2, |
| 3955 | 'weight_unit' => 'kg', |
| 3956 | 'dimension_unit' => 'cm', |
| 3957 | 'direction' => 'ltr', |
| 3958 | 'default_locale' => 'en_ZA', |
| 3959 | 'name' => 'South African rand', |
| 3960 | 'singular' => 'South African rand', |
| 3961 | 'plural' => 'South African rand', |
| 3962 | 'short_symbol' => 'R', |
| 3963 | 'locales' => $locales['ZAR'], |
| 3964 | ), |
| 3965 | 'ZM' => array( |
| 3966 | 'currency_code' => 'ZMW', |
| 3967 | 'currency_pos' => 'left', |
| 3968 | 'thousand_sep' => ',', |
| 3969 | 'decimal_sep' => '.', |
| 3970 | 'num_decimals' => 2, |
| 3971 | 'weight_unit' => 'kg', |
| 3972 | 'dimension_unit' => 'cm', |
| 3973 | 'direction' => 'ltr', |
| 3974 | 'default_locale' => 'en_ZM', |
| 3975 | 'name' => 'Zambian kwacha', |
| 3976 | 'singular' => 'Zambian kwacha', |
| 3977 | 'plural' => 'Zambian kwachas', |
| 3978 | 'short_symbol' => 'ZK', |
| 3979 | 'locales' => $locales['ZMW'], |
| 3980 | ), |
| 3981 | 'ZW' => array( |
| 3982 | 'currency_code' => 'USD', |
| 3983 | 'currency_pos' => 'left', |
| 3984 | 'thousand_sep' => ',', |
| 3985 | 'decimal_sep' => '.', |
| 3986 | 'num_decimals' => 2, |
| 3987 | 'weight_unit' => 'kg', |
| 3988 | 'dimension_unit' => 'cm', |
| 3989 | 'direction' => 'ltr', |
| 3990 | 'default_locale' => 'sn_ZW', |
| 3991 | 'name' => 'United States (US) dollar', |
| 3992 | 'singular' => 'US dollar', |
| 3993 | 'plural' => 'US dollars', |
| 3994 | 'short_symbol' => '$', |
| 3995 | 'locales' => $locales['USD'], |
| 3996 | ), |
| 3997 | ); |
| 3998 |