languages
2 years ago
continents.php
5 years ago
countries.php
4 years ago
currency-info.php
4 years ago
locale-info.php
3 years ago
phone.php
5 years ago
states.php
2 years ago
units.php
3 years ago
currency-info.php
953 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Currency formatting information |
| 4 | * |
| 5 | * @package WooCommerce\i18n |
| 6 | * @version 5.7.0 |
| 7 | */ |
| 8 | |
| 9 | defined( 'ABSPATH' ) || exit; |
| 10 | |
| 11 | $global_formats = array( |
| 12 | 'ls_comma_dot_ltr' => array( |
| 13 | 'thousand_sep' => '.', |
| 14 | 'decimal_sep' => ',', |
| 15 | 'direction' => 'ltr', |
| 16 | 'currency_pos' => 'left_space', |
| 17 | ), |
| 18 | 'ls_comma_dot_rtl' => array( |
| 19 | 'thousand_sep' => '.', |
| 20 | 'decimal_sep' => ',', |
| 21 | 'direction' => 'rtl', |
| 22 | 'currency_pos' => 'left_space', |
| 23 | ), |
| 24 | 'ls_comma_space_ltr' => array( |
| 25 | 'thousand_sep' => ' ', |
| 26 | 'decimal_sep' => ',', |
| 27 | 'direction' => 'ltr', |
| 28 | 'currency_pos' => 'left_space', |
| 29 | ), |
| 30 | 'ls_dot_apos_ltr' => array( |
| 31 | 'thousand_sep' => '\'', |
| 32 | 'decimal_sep' => '.', |
| 33 | 'direction' => 'ltr', |
| 34 | 'currency_pos' => 'left_space', |
| 35 | ), |
| 36 | 'ls_dot_comma_ltr' => array( |
| 37 | 'thousand_sep' => ',', |
| 38 | 'decimal_sep' => '.', |
| 39 | 'direction' => 'ltr', |
| 40 | 'currency_pos' => 'left_space', |
| 41 | ), |
| 42 | 'ls_dot_comma_rtl' => array( |
| 43 | 'thousand_sep' => ',', |
| 44 | 'decimal_sep' => '.', |
| 45 | 'direction' => 'rtl', |
| 46 | 'currency_pos' => 'left_space', |
| 47 | ), |
| 48 | 'lx_comma_dot_ltr' => array( |
| 49 | 'thousand_sep' => '.', |
| 50 | 'decimal_sep' => ',', |
| 51 | 'direction' => 'ltr', |
| 52 | 'currency_pos' => 'left', |
| 53 | ), |
| 54 | 'lx_comma_dot_rtl' => array( |
| 55 | 'thousand_sep' => '.', |
| 56 | 'decimal_sep' => ',', |
| 57 | 'direction' => 'rtl', |
| 58 | 'currency_pos' => 'left', |
| 59 | ), |
| 60 | 'lx_comma_space_ltr' => array( |
| 61 | 'thousand_sep' => ' ', |
| 62 | 'decimal_sep' => ',', |
| 63 | 'direction' => 'ltr', |
| 64 | 'currency_pos' => 'left', |
| 65 | ), |
| 66 | 'lx_dot_comma_ltr' => array( |
| 67 | 'thousand_sep' => ',', |
| 68 | 'decimal_sep' => '.', |
| 69 | 'direction' => 'ltr', |
| 70 | 'currency_pos' => 'left', |
| 71 | ), |
| 72 | 'lx_dot_space_ltr' => array( |
| 73 | 'thousand_sep' => ' ', |
| 74 | 'decimal_sep' => '.', |
| 75 | 'direction' => 'ltr', |
| 76 | 'currency_pos' => 'left', |
| 77 | ), |
| 78 | 'rs_comma_dot_ltr' => array( |
| 79 | 'thousand_sep' => '.', |
| 80 | 'decimal_sep' => ',', |
| 81 | 'direction' => 'ltr', |
| 82 | 'currency_pos' => 'right_space', |
| 83 | ), |
| 84 | 'rs_comma_dot_rtl' => array( |
| 85 | 'thousand_sep' => '.', |
| 86 | 'decimal_sep' => ',', |
| 87 | 'direction' => 'rtl', |
| 88 | 'currency_pos' => 'right_space', |
| 89 | ), |
| 90 | 'rs_comma_space_ltr' => array( |
| 91 | 'thousand_sep' => ' ', |
| 92 | 'decimal_sep' => ',', |
| 93 | 'direction' => 'ltr', |
| 94 | 'currency_pos' => 'right_space', |
| 95 | ), |
| 96 | 'rs_dot_apos_ltr' => array( |
| 97 | 'thousand_sep' => '\'', |
| 98 | 'decimal_sep' => '.', |
| 99 | 'direction' => 'ltr', |
| 100 | 'currency_pos' => 'right_space', |
| 101 | ), |
| 102 | 'rs_dot_comma_ltr' => array( |
| 103 | 'thousand_sep' => ',', |
| 104 | 'decimal_sep' => '.', |
| 105 | 'direction' => 'ltr', |
| 106 | 'currency_pos' => 'right_space', |
| 107 | ), |
| 108 | 'rs_dot_comma_rtl' => array( |
| 109 | 'thousand_sep' => ',', |
| 110 | 'decimal_sep' => '.', |
| 111 | 'direction' => 'rtl', |
| 112 | 'currency_pos' => 'right_space', |
| 113 | ), |
| 114 | 'rx_comma_dot_ltr' => array( |
| 115 | 'thousand_sep' => '.', |
| 116 | 'decimal_sep' => ',', |
| 117 | 'direction' => 'ltr', |
| 118 | 'currency_pos' => 'right', |
| 119 | ), |
| 120 | 'rx_dot_comma_ltr' => array( |
| 121 | 'thousand_sep' => ',', |
| 122 | 'decimal_sep' => '.', |
| 123 | 'direction' => 'ltr', |
| 124 | 'currency_pos' => 'right', |
| 125 | ), |
| 126 | ); |
| 127 | |
| 128 | return array( |
| 129 | 'AED' => array( |
| 130 | 'ar_AE' => $global_formats['rs_comma_dot_rtl'], |
| 131 | 'default' => $global_formats['rs_comma_dot_rtl'], |
| 132 | ), |
| 133 | 'AFN' => array( |
| 134 | 'fa_AF' => $global_formats['ls_comma_dot_rtl'], |
| 135 | 'default' => $global_formats['ls_comma_dot_rtl'], |
| 136 | 'ps_AF' => $global_formats['rs_comma_dot_rtl'], |
| 137 | 'uz_AF' => $global_formats['rs_comma_space_ltr'], |
| 138 | ), |
| 139 | 'ALL' => array( |
| 140 | 'default' => $global_formats['rs_comma_space_ltr'], |
| 141 | 'sq_AL' => $global_formats['rs_comma_space_ltr'], |
| 142 | ), |
| 143 | 'AMD' => array( |
| 144 | 'default' => $global_formats['rs_comma_space_ltr'], |
| 145 | 'hy_AM' => $global_formats['rs_comma_space_ltr'], |
| 146 | ), |
| 147 | 'ANG' => array( |
| 148 | 'en_SX' => $global_formats['lx_dot_comma_ltr'], |
| 149 | 'nl_CW' => $global_formats['ls_comma_dot_ltr'], |
| 150 | 'nl_SX' => $global_formats['ls_comma_dot_ltr'], |
| 151 | 'default' => $global_formats['ls_comma_dot_ltr'], |
| 152 | ), |
| 153 | 'AOA' => array( |
| 154 | 'pt_AO' => $global_formats['rs_comma_space_ltr'], |
| 155 | 'default' => $global_formats['rs_comma_space_ltr'], |
| 156 | ), |
| 157 | 'ARS' => array( |
| 158 | 'es_AR' => $global_formats['ls_comma_dot_ltr'], |
| 159 | 'default' => $global_formats['ls_comma_dot_ltr'], |
| 160 | ), |
| 161 | 'AUD' => array( |
| 162 | 'en_AU' => $global_formats['lx_dot_comma_ltr'], |
| 163 | 'en_CC' => $global_formats['lx_dot_comma_ltr'], |
| 164 | 'en_CX' => $global_formats['lx_dot_comma_ltr'], |
| 165 | 'en_KI' => $global_formats['lx_dot_comma_ltr'], |
| 166 | 'en_NF' => $global_formats['lx_dot_comma_ltr'], |
| 167 | 'en_NR' => $global_formats['lx_dot_comma_ltr'], |
| 168 | 'en_TV' => $global_formats['lx_dot_comma_ltr'], |
| 169 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 170 | ), |
| 171 | 'AWG' => array( |
| 172 | 'nl_AW' => $global_formats['ls_comma_dot_ltr'], |
| 173 | 'default' => $global_formats['ls_comma_dot_ltr'], |
| 174 | ), |
| 175 | 'AZN' => array( |
| 176 | 'default' => $global_formats['rs_comma_dot_ltr'], |
| 177 | 'az_AZ' => $global_formats['rs_comma_dot_ltr'], |
| 178 | ), |
| 179 | 'BAM' => array( |
| 180 | 'hr_BA' => $global_formats['rs_comma_dot_ltr'], |
| 181 | 'sr_Latn_BA' => $global_formats['rs_comma_dot_ltr'], |
| 182 | 'default' => $global_formats['rs_comma_dot_ltr'], |
| 183 | 'bs_BA' => $global_formats['rs_comma_dot_ltr'], |
| 184 | ), |
| 185 | 'BBD' => array( |
| 186 | 'en_BB' => $global_formats['lx_dot_comma_ltr'], |
| 187 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 188 | ), |
| 189 | 'BDT' => array( |
| 190 | 'default' => $global_formats['rx_dot_comma_ltr'], |
| 191 | 'bn_BD' => $global_formats['rx_dot_comma_ltr'], |
| 192 | ), |
| 193 | 'BGN' => array( |
| 194 | 'default' => $global_formats['rs_comma_space_ltr'], |
| 195 | 'bg_BG' => $global_formats['rs_comma_space_ltr'], |
| 196 | ), |
| 197 | 'BHD' => array( |
| 198 | 'ar_BH' => $global_formats['rs_comma_dot_rtl'], |
| 199 | 'default' => $global_formats['rs_comma_dot_rtl'], |
| 200 | ), |
| 201 | 'BIF' => array( |
| 202 | 'en_BI' => $global_formats['lx_dot_comma_ltr'], |
| 203 | 'fr_BI' => $global_formats['rs_comma_space_ltr'], |
| 204 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 205 | 'rn_BI' => $global_formats['rx_comma_dot_ltr'], |
| 206 | ), |
| 207 | 'BMD' => array( |
| 208 | 'en_BM' => $global_formats['lx_dot_comma_ltr'], |
| 209 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 210 | ), |
| 211 | 'BND' => array( |
| 212 | 'ms_BN' => $global_formats['ls_comma_dot_ltr'], |
| 213 | 'default' => $global_formats['ls_comma_dot_ltr'], |
| 214 | ), |
| 215 | 'BOB' => array( |
| 216 | 'es_BO' => $global_formats['lx_comma_dot_ltr'], |
| 217 | 'qu_BO' => $global_formats['ls_comma_dot_ltr'], |
| 218 | 'default' => $global_formats['lx_comma_dot_ltr'], |
| 219 | ), |
| 220 | 'BRL' => array( |
| 221 | 'default' => $global_formats['ls_comma_dot_ltr'], |
| 222 | 'pt_BR' => $global_formats['ls_comma_dot_ltr'], |
| 223 | ), |
| 224 | 'BSD' => array( |
| 225 | 'en_BS' => $global_formats['lx_dot_comma_ltr'], |
| 226 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 227 | ), |
| 228 | 'BTN' => array( |
| 229 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 230 | 'dz_BT' => $global_formats['lx_dot_comma_ltr'], |
| 231 | ), |
| 232 | 'BWP' => array( |
| 233 | 'en_BW' => $global_formats['lx_dot_comma_ltr'], |
| 234 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 235 | ), |
| 236 | 'BYN' => array( |
| 237 | 'ru_BY' => $global_formats['rs_comma_space_ltr'], |
| 238 | 'default' => $global_formats['rs_comma_space_ltr'], |
| 239 | 'be_BY' => $global_formats['rs_comma_space_ltr'], |
| 240 | ), |
| 241 | 'BZD' => array( |
| 242 | 'en_BZ' => $global_formats['lx_dot_comma_ltr'], |
| 243 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 244 | ), |
| 245 | 'CAD' => array( |
| 246 | 'en_CA' => $global_formats['lx_dot_comma_ltr'], |
| 247 | 'fr_CA' => $global_formats['rs_comma_space_ltr'], |
| 248 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 249 | ), |
| 250 | 'CDF' => array( |
| 251 | 'fr_CD' => $global_formats['rs_comma_space_ltr'], |
| 252 | 'sw_CD' => $global_formats['ls_comma_dot_ltr'], |
| 253 | 'default' => $global_formats['rs_comma_space_ltr'], |
| 254 | 'ln_CD' => $global_formats['rs_comma_dot_ltr'], |
| 255 | ), |
| 256 | 'CHF' => array( |
| 257 | 'de_CH' => $global_formats['ls_dot_apos_ltr'], |
| 258 | 'de_LI' => $global_formats['ls_dot_apos_ltr'], |
| 259 | 'fr_CH' => $global_formats['rs_comma_space_ltr'], |
| 260 | 'gsw_LI' => $global_formats['rs_dot_apos_ltr'], |
| 261 | 'it_CH' => $global_formats['ls_dot_apos_ltr'], |
| 262 | 'default' => $global_formats['ls_dot_apos_ltr'], |
| 263 | 'gsw_CH' => $global_formats['rs_dot_apos_ltr'], |
| 264 | 'rm_CH' => $global_formats['rs_dot_apos_ltr'], |
| 265 | ), |
| 266 | 'CLP' => array( |
| 267 | 'es_CL' => $global_formats['lx_comma_dot_ltr'], |
| 268 | 'default' => $global_formats['lx_comma_dot_ltr'], |
| 269 | ), |
| 270 | 'CNY' => array( |
| 271 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 272 | 'bo_CN' => $global_formats['ls_dot_comma_ltr'], |
| 273 | 'ug_CN' => $global_formats['lx_dot_comma_ltr'], |
| 274 | 'zh_CN' => $global_formats['lx_dot_comma_ltr'], |
| 275 | ), |
| 276 | 'COP' => array( |
| 277 | 'es_CO' => $global_formats['ls_comma_dot_ltr'], |
| 278 | 'default' => $global_formats['ls_comma_dot_ltr'], |
| 279 | ), |
| 280 | 'CRC' => array( |
| 281 | 'es_CR' => $global_formats['lx_comma_space_ltr'], |
| 282 | 'default' => $global_formats['lx_comma_space_ltr'], |
| 283 | ), |
| 284 | 'CUC' => array( |
| 285 | 'es_CU' => $global_formats['lx_dot_comma_ltr'], |
| 286 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 287 | ), |
| 288 | 'CVE' => array( |
| 289 | 'pt_CV' => $global_formats['rs_comma_space_ltr'], |
| 290 | 'default' => $global_formats['rs_comma_space_ltr'], |
| 291 | ), |
| 292 | 'CZK' => array( |
| 293 | 'default' => $global_formats['rs_comma_space_ltr'], |
| 294 | 'cs_CZ' => $global_formats['rs_comma_space_ltr'], |
| 295 | ), |
| 296 | 'DJF' => array( |
| 297 | 'ar_DJ' => $global_formats['rs_comma_dot_rtl'], |
| 298 | 'fr_DJ' => $global_formats['rs_comma_space_ltr'], |
| 299 | 'default' => $global_formats['rs_comma_dot_rtl'], |
| 300 | ), |
| 301 | 'DKK' => array( |
| 302 | 'default' => $global_formats['rs_comma_dot_ltr'], |
| 303 | 'da_DK' => $global_formats['rs_comma_dot_ltr'], |
| 304 | 'fo_FO' => $global_formats['rs_comma_dot_ltr'], |
| 305 | 'kl_GL' => $global_formats['lx_comma_dot_ltr'], |
| 306 | ), |
| 307 | 'DOP' => array( |
| 308 | 'es_DO' => $global_formats['lx_dot_comma_ltr'], |
| 309 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 310 | ), |
| 311 | 'DZD' => array( |
| 312 | 'ar_DZ' => $global_formats['ls_comma_dot_rtl'], |
| 313 | 'fr_DZ' => $global_formats['rs_comma_space_ltr'], |
| 314 | 'default' => $global_formats['ls_comma_dot_rtl'], |
| 315 | ), |
| 316 | 'EGP' => array( |
| 317 | 'ar_EG' => $global_formats['rs_comma_dot_rtl'], |
| 318 | 'default' => $global_formats['rs_comma_dot_rtl'], |
| 319 | ), |
| 320 | 'ERN' => array( |
| 321 | 'ar_ER' => $global_formats['rs_comma_dot_rtl'], |
| 322 | 'en_ER' => $global_formats['lx_dot_comma_ltr'], |
| 323 | 'ti_ER' => $global_formats['lx_dot_comma_ltr'], |
| 324 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 325 | ), |
| 326 | 'ETB' => array( |
| 327 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 328 | 'am_ET' => $global_formats['lx_dot_comma_ltr'], |
| 329 | ), |
| 330 | 'EUR' => array( |
| 331 | 'ca_AD' => $global_formats['rs_comma_dot_ltr'], |
| 332 | 'de_AT' => $global_formats['ls_comma_space_ltr'], |
| 333 | 'de_BE' => $global_formats['rs_comma_dot_ltr'], |
| 334 | 'de_LU' => $global_formats['rs_comma_dot_ltr'], |
| 335 | 'el_CY' => $global_formats['rs_comma_dot_ltr'], |
| 336 | 'en_IE' => $global_formats['lx_dot_comma_ltr'], |
| 337 | 'en_MT' => $global_formats['lx_dot_comma_ltr'], |
| 338 | 'es_EA' => $global_formats['rs_comma_dot_ltr'], |
| 339 | 'es_IC' => $global_formats['rs_comma_dot_ltr'], |
| 340 | 'fr_BE' => $global_formats['rs_comma_space_ltr'], |
| 341 | 'fr_BL' => $global_formats['rs_comma_space_ltr'], |
| 342 | 'fr_GF' => $global_formats['rs_comma_space_ltr'], |
| 343 | 'fr_GP' => $global_formats['rs_comma_space_ltr'], |
| 344 | 'fr_LU' => $global_formats['rs_comma_dot_ltr'], |
| 345 | 'fr_MC' => $global_formats['rs_comma_space_ltr'], |
| 346 | 'fr_MF' => $global_formats['rs_comma_space_ltr'], |
| 347 | 'fr_MQ' => $global_formats['rs_comma_space_ltr'], |
| 348 | 'fr_PM' => $global_formats['rs_comma_space_ltr'], |
| 349 | 'fr_RE' => $global_formats['rs_comma_space_ltr'], |
| 350 | 'fr_YT' => $global_formats['rs_comma_space_ltr'], |
| 351 | 'it_SM' => $global_formats['rs_comma_dot_ltr'], |
| 352 | 'it_VA' => $global_formats['rs_comma_dot_ltr'], |
| 353 | 'nl_BE' => $global_formats['ls_comma_dot_ltr'], |
| 354 | 'pt_PT' => $global_formats['rs_comma_space_ltr'], |
| 355 | 'sq_XK' => $global_formats['rs_comma_space_ltr'], |
| 356 | 'sr_Latn_ME' => $global_formats['rs_comma_dot_ltr'], |
| 357 | 'sr_Latn_XK' => $global_formats['rs_comma_dot_ltr'], |
| 358 | 'sv_AX' => $global_formats['rs_comma_space_ltr'], |
| 359 | 'sv_FI' => $global_formats['rs_comma_space_ltr'], |
| 360 | 'tr_CY' => $global_formats['lx_comma_dot_ltr'], |
| 361 | 'default' => $global_formats['rs_comma_dot_ltr'], |
| 362 | 'ast_ES' => $global_formats['rs_comma_dot_ltr'], |
| 363 | 'ca_ES' => $global_formats['rs_comma_dot_ltr'], |
| 364 | 'de_DE' => $global_formats['rs_comma_dot_ltr'], |
| 365 | 'el_GR' => $global_formats['rs_comma_dot_ltr'], |
| 366 | 'es_ES' => $global_formats['rs_comma_dot_ltr'], |
| 367 | 'et_EE' => $global_formats['rs_comma_space_ltr'], |
| 368 | 'eu_ES' => $global_formats['rs_comma_dot_ltr'], |
| 369 | 'fi_FI' => $global_formats['rs_comma_space_ltr'], |
| 370 | 'fr_FR' => $global_formats['rs_comma_space_ltr'], |
| 371 | 'fy_NL' => $global_formats['ls_comma_dot_ltr'], |
| 372 | 'ga_IE' => $global_formats['lx_dot_comma_ltr'], |
| 373 | 'gl_ES' => $global_formats['rs_comma_dot_ltr'], |
| 374 | 'it_IT' => $global_formats['rs_comma_dot_ltr'], |
| 375 | 'lb_LU' => $global_formats['rs_comma_dot_ltr'], |
| 376 | 'lt_LT' => $global_formats['rs_comma_space_ltr'], |
| 377 | 'lv_LV' => $global_formats['rs_comma_space_ltr'], |
| 378 | 'mt_MT' => $global_formats['lx_dot_comma_ltr'], |
| 379 | 'nl_NL' => $global_formats['ls_comma_dot_ltr'], |
| 380 | 'sk_SK' => $global_formats['rs_comma_space_ltr'], |
| 381 | 'sl_SI' => $global_formats['rs_comma_dot_ltr'], |
| 382 | ), |
| 383 | 'FJD' => array( |
| 384 | 'en_FJ' => $global_formats['lx_dot_comma_ltr'], |
| 385 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 386 | ), |
| 387 | 'FKP' => array( |
| 388 | 'en_FK' => $global_formats['lx_dot_comma_ltr'], |
| 389 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 390 | ), |
| 391 | 'GBP' => array( |
| 392 | 'en_GB' => $global_formats['lx_dot_comma_ltr'], |
| 393 | 'en_GG' => $global_formats['lx_dot_comma_ltr'], |
| 394 | 'en_IM' => $global_formats['lx_dot_comma_ltr'], |
| 395 | 'en_JE' => $global_formats['lx_dot_comma_ltr'], |
| 396 | 'ga_GB' => $global_formats['lx_dot_comma_ltr'], |
| 397 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 398 | 'cy_GB' => $global_formats['lx_dot_comma_ltr'], |
| 399 | 'gd_GB' => $global_formats['lx_dot_comma_ltr'], |
| 400 | 'gv_IM' => $global_formats['lx_dot_comma_ltr'], |
| 401 | ), |
| 402 | 'GEL' => array( |
| 403 | 'default' => $global_formats['rs_comma_space_ltr'], |
| 404 | 'ka_GE' => $global_formats['rs_comma_space_ltr'], |
| 405 | 'os_GE' => $global_formats['ls_comma_space_ltr'], |
| 406 | ), |
| 407 | 'GHS' => array( |
| 408 | 'en_GH' => $global_formats['lx_dot_comma_ltr'], |
| 409 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 410 | 'ak_GH' => $global_formats['lx_dot_comma_ltr'], |
| 411 | 'ee_GH' => $global_formats['lx_dot_comma_ltr'], |
| 412 | ), |
| 413 | 'GIP' => array( |
| 414 | 'en_GI' => $global_formats['lx_dot_comma_ltr'], |
| 415 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 416 | ), |
| 417 | 'GMD' => array( |
| 418 | 'en_GM' => $global_formats['lx_dot_comma_ltr'], |
| 419 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 420 | ), |
| 421 | 'GNF' => array( |
| 422 | 'fr_GN' => $global_formats['rs_comma_space_ltr'], |
| 423 | 'default' => $global_formats['rs_comma_space_ltr'], |
| 424 | ), |
| 425 | 'GTQ' => array( |
| 426 | 'es_GT' => $global_formats['lx_dot_comma_ltr'], |
| 427 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 428 | ), |
| 429 | 'GYD' => array( |
| 430 | 'en_GY' => $global_formats['lx_dot_comma_ltr'], |
| 431 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 432 | ), |
| 433 | 'HKD' => array( |
| 434 | 'en_HK' => $global_formats['lx_dot_comma_ltr'], |
| 435 | 'zh_Hant_HK' => $global_formats['lx_dot_comma_ltr'], |
| 436 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 437 | ), |
| 438 | 'HNL' => array( |
| 439 | 'es_HN' => $global_formats['lx_dot_comma_ltr'], |
| 440 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 441 | ), |
| 442 | 'HRK' => array( |
| 443 | 'default' => $global_formats['rs_comma_dot_ltr'], |
| 444 | 'hr_HR' => $global_formats['rs_comma_dot_ltr'], |
| 445 | ), |
| 446 | 'HUF' => array( |
| 447 | 'default' => $global_formats['rs_comma_space_ltr'], |
| 448 | 'hu_HU' => $global_formats['rs_comma_space_ltr'], |
| 449 | ), |
| 450 | 'IDR' => array( |
| 451 | 'default' => $global_formats['lx_comma_dot_ltr'], |
| 452 | 'id_ID' => $global_formats['lx_comma_dot_ltr'], |
| 453 | ), |
| 454 | 'ILS' => array( |
| 455 | 'ar_IL' => $global_formats['rs_comma_dot_rtl'], |
| 456 | 'ar_PS' => $global_formats['rs_comma_dot_rtl'], |
| 457 | 'default' => $global_formats['rs_comma_dot_rtl'], |
| 458 | 'he_IL' => $global_formats['rs_dot_comma_rtl'], |
| 459 | ), |
| 460 | 'INR' => array( |
| 461 | 'bn_IN' => $global_formats['rx_dot_comma_ltr'], |
| 462 | 'en_IN' => $global_formats['lx_dot_comma_ltr'], |
| 463 | 'ne_IN' => $global_formats['ls_dot_comma_ltr'], |
| 464 | 'ur_IN' => $global_formats['ls_comma_dot_rtl'], |
| 465 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 466 | 'as_IN' => $global_formats['ls_dot_comma_ltr'], |
| 467 | 'dz_BT' => $global_formats['lx_dot_comma_ltr'], |
| 468 | 'gu_IN' => $global_formats['lx_dot_comma_ltr'], |
| 469 | 'hi_IN' => $global_formats['lx_dot_comma_ltr'], |
| 470 | 'kn_IN' => $global_formats['lx_dot_comma_ltr'], |
| 471 | 'kok_IN' => $global_formats['ls_dot_comma_ltr'], |
| 472 | 'mai_IN' => $global_formats['ls_dot_comma_ltr'], |
| 473 | 'ml_IN' => $global_formats['lx_dot_comma_ltr'], |
| 474 | 'mr_IN' => $global_formats['lx_dot_comma_ltr'], |
| 475 | 'or_IN' => $global_formats['lx_dot_comma_ltr'], |
| 476 | 'sa_IN' => $global_formats['lx_dot_comma_ltr'], |
| 477 | 'sd_PK' => $global_formats['rs_comma_dot_ltr'], |
| 478 | 'ta_IN' => $global_formats['ls_dot_comma_ltr'], |
| 479 | 'te_IN' => $global_formats['lx_dot_comma_ltr'], |
| 480 | ), |
| 481 | 'IQD' => array( |
| 482 | 'ar_IQ' => $global_formats['rs_comma_dot_rtl'], |
| 483 | 'default' => $global_formats['rs_comma_dot_rtl'], |
| 484 | 'ckb_IQ' => $global_formats['rs_comma_dot_rtl'], |
| 485 | ), |
| 486 | 'IRR' => array( |
| 487 | 'default' => $global_formats['lx_comma_dot_rtl'], |
| 488 | 'fa_IR' => $global_formats['lx_comma_dot_rtl'], |
| 489 | ), |
| 490 | 'ISK' => array( |
| 491 | 'default' => $global_formats['rs_comma_dot_ltr'], |
| 492 | 'is_IS' => $global_formats['rs_comma_dot_ltr'], |
| 493 | ), |
| 494 | 'JMD' => array( |
| 495 | 'en_JM' => $global_formats['lx_dot_comma_ltr'], |
| 496 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 497 | ), |
| 498 | 'JOD' => array( |
| 499 | 'ar_JO' => $global_formats['rs_comma_dot_rtl'], |
| 500 | 'ar_PS' => $global_formats['rs_comma_dot_rtl'], |
| 501 | 'default' => $global_formats['rs_comma_dot_rtl'], |
| 502 | ), |
| 503 | 'JPY' => array( |
| 504 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 505 | 'ja_JP' => $global_formats['lx_dot_comma_ltr'], |
| 506 | ), |
| 507 | 'KES' => array( |
| 508 | 'en_KE' => $global_formats['lx_dot_comma_ltr'], |
| 509 | 'sw_KE' => $global_formats['ls_dot_comma_ltr'], |
| 510 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 511 | ), |
| 512 | 'KGS' => array( |
| 513 | 'ru_KG' => $global_formats['rs_comma_space_ltr'], |
| 514 | 'default' => $global_formats['rs_comma_space_ltr'], |
| 515 | 'ky_KG' => $global_formats['rs_comma_space_ltr'], |
| 516 | ), |
| 517 | 'KHR' => array( |
| 518 | 'default' => $global_formats['rx_comma_dot_ltr'], |
| 519 | 'km_KH' => $global_formats['rx_comma_dot_ltr'], |
| 520 | ), |
| 521 | 'KMF' => array( |
| 522 | 'ar_KM' => $global_formats['rs_comma_dot_rtl'], |
| 523 | 'fr_KM' => $global_formats['rs_comma_space_ltr'], |
| 524 | 'default' => $global_formats['rs_comma_dot_rtl'], |
| 525 | ), |
| 526 | 'KPW' => array( |
| 527 | 'ko_KP' => $global_formats['lx_dot_comma_ltr'], |
| 528 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 529 | ), |
| 530 | 'KRW' => array( |
| 531 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 532 | 'ko_KR' => $global_formats['lx_dot_comma_ltr'], |
| 533 | ), |
| 534 | 'KWD' => array( |
| 535 | 'ar_KW' => $global_formats['rs_comma_dot_rtl'], |
| 536 | 'default' => $global_formats['rs_comma_dot_rtl'], |
| 537 | ), |
| 538 | 'KYD' => array( |
| 539 | 'en_KY' => $global_formats['lx_dot_comma_ltr'], |
| 540 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 541 | ), |
| 542 | 'KZT' => array( |
| 543 | 'ru_KZ' => $global_formats['rs_comma_space_ltr'], |
| 544 | 'default' => $global_formats['rs_comma_space_ltr'], |
| 545 | 'kk_KZ' => $global_formats['rs_comma_space_ltr'], |
| 546 | ), |
| 547 | 'LAK' => array( |
| 548 | 'default' => $global_formats['lx_comma_dot_ltr'], |
| 549 | 'lo_LA' => $global_formats['lx_comma_dot_ltr'], |
| 550 | ), |
| 551 | 'LBP' => array( |
| 552 | 'ar_LB' => $global_formats['rs_comma_dot_rtl'], |
| 553 | 'default' => $global_formats['rs_comma_dot_rtl'], |
| 554 | ), |
| 555 | 'LKR' => array( |
| 556 | 'ta_LK' => $global_formats['ls_dot_comma_ltr'], |
| 557 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 558 | 'si_LK' => $global_formats['lx_dot_comma_ltr'], |
| 559 | ), |
| 560 | 'LRD' => array( |
| 561 | 'en_LR' => $global_formats['lx_dot_comma_ltr'], |
| 562 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 563 | ), |
| 564 | 'LSL' => array( |
| 565 | 'en_LS' => $global_formats['lx_dot_comma_ltr'], |
| 566 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 567 | ), |
| 568 | 'LYD' => array( |
| 569 | 'ar_LY' => $global_formats['ls_comma_dot_rtl'], |
| 570 | 'default' => $global_formats['ls_comma_dot_rtl'], |
| 571 | ), |
| 572 | 'MAD' => array( |
| 573 | 'ar_EH' => $global_formats['ls_dot_comma_rtl'], |
| 574 | 'ar_MA' => $global_formats['ls_comma_dot_rtl'], |
| 575 | 'fr_MA' => $global_formats['rs_comma_dot_ltr'], |
| 576 | 'default' => $global_formats['ls_dot_comma_rtl'], |
| 577 | 'tzm_MA' => $global_formats['rs_comma_space_ltr'], |
| 578 | ), |
| 579 | 'MDL' => array( |
| 580 | 'ro_MD' => $global_formats['rs_comma_dot_ltr'], |
| 581 | 'default' => $global_formats['rs_comma_dot_ltr'], |
| 582 | ), |
| 583 | 'MGA' => array( |
| 584 | 'en_MG' => $global_formats['lx_dot_comma_ltr'], |
| 585 | 'fr_MG' => $global_formats['rs_comma_space_ltr'], |
| 586 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 587 | 'mg_MG' => $global_formats['ls_dot_comma_ltr'], |
| 588 | ), |
| 589 | 'MKD' => array( |
| 590 | 'sq_MK' => $global_formats['rs_comma_space_ltr'], |
| 591 | 'default' => $global_formats['rs_comma_dot_ltr'], |
| 592 | 'mk_MK' => $global_formats['rs_comma_dot_ltr'], |
| 593 | ), |
| 594 | 'MMK' => array( |
| 595 | 'default' => $global_formats['rs_dot_comma_ltr'], |
| 596 | 'my_MM' => $global_formats['rs_dot_comma_ltr'], |
| 597 | ), |
| 598 | 'MNT' => array( |
| 599 | 'default' => $global_formats['ls_dot_comma_ltr'], |
| 600 | 'mn_MN' => $global_formats['ls_dot_comma_ltr'], |
| 601 | ), |
| 602 | 'MOP' => array( |
| 603 | 'pt_MO' => $global_formats['rs_comma_space_ltr'], |
| 604 | 'zh_Hant_MO' => $global_formats['lx_dot_comma_ltr'], |
| 605 | 'default' => $global_formats['rs_comma_space_ltr'], |
| 606 | ), |
| 607 | 'MRU' => array( |
| 608 | 'ar_MR' => $global_formats['rs_comma_dot_rtl'], |
| 609 | 'default' => $global_formats['rs_comma_dot_rtl'], |
| 610 | ), |
| 611 | 'MUR' => array( |
| 612 | 'en_MU' => $global_formats['lx_dot_comma_ltr'], |
| 613 | 'fr_MU' => $global_formats['rs_comma_space_ltr'], |
| 614 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 615 | ), |
| 616 | 'MVR' => array( |
| 617 | 'default' => array(), |
| 618 | ), |
| 619 | 'MWK' => array( |
| 620 | 'en_MW' => $global_formats['lx_dot_comma_ltr'], |
| 621 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 622 | ), |
| 623 | 'MXN' => array( |
| 624 | 'es_MX' => $global_formats['lx_dot_comma_ltr'], |
| 625 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 626 | ), |
| 627 | 'MYR' => array( |
| 628 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 629 | 'ms_MY' => $global_formats['lx_dot_comma_ltr'], |
| 630 | ), |
| 631 | 'MZN' => array( |
| 632 | 'pt_MZ' => $global_formats['rs_comma_space_ltr'], |
| 633 | 'default' => $global_formats['rs_comma_space_ltr'], |
| 634 | ), |
| 635 | 'NAD' => array( |
| 636 | 'en_NA' => $global_formats['lx_dot_comma_ltr'], |
| 637 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 638 | ), |
| 639 | 'NGN' => array( |
| 640 | 'en_NG' => $global_formats['lx_dot_comma_ltr'], |
| 641 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 642 | 'yo_NG' => $global_formats['lx_dot_comma_ltr'], |
| 643 | ), |
| 644 | 'NIO' => array( |
| 645 | 'es_NI' => $global_formats['lx_dot_comma_ltr'], |
| 646 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 647 | ), |
| 648 | 'NOK' => array( |
| 649 | 'nb_SJ' => $global_formats['ls_comma_space_ltr'], |
| 650 | 'default' => $global_formats['ls_comma_space_ltr'], |
| 651 | 'nb_NO' => $global_formats['ls_comma_space_ltr'], |
| 652 | 'nn_NO' => $global_formats['rs_comma_space_ltr'], |
| 653 | 'se_NO' => $global_formats['rs_comma_space_ltr'], |
| 654 | ), |
| 655 | 'NPR' => array( |
| 656 | 'default' => $global_formats['ls_dot_comma_ltr'], |
| 657 | 'ne_NP' => $global_formats['ls_dot_comma_ltr'], |
| 658 | ), |
| 659 | 'NZD' => array( |
| 660 | 'en_CK' => $global_formats['lx_dot_comma_ltr'], |
| 661 | 'en_NU' => $global_formats['lx_dot_comma_ltr'], |
| 662 | 'en_NZ' => $global_formats['lx_dot_comma_ltr'], |
| 663 | 'en_PN' => $global_formats['lx_dot_comma_ltr'], |
| 664 | 'en_TK' => $global_formats['lx_dot_comma_ltr'], |
| 665 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 666 | 'mi_NZ' => $global_formats['ls_dot_comma_ltr'], |
| 667 | ), |
| 668 | 'OMR' => array( |
| 669 | 'ar_OM' => $global_formats['rs_comma_dot_rtl'], |
| 670 | 'default' => $global_formats['rs_comma_dot_rtl'], |
| 671 | ), |
| 672 | 'PEN' => array( |
| 673 | 'es_PE' => $global_formats['ls_dot_comma_ltr'], |
| 674 | 'default' => $global_formats['ls_dot_comma_ltr'], |
| 675 | 'qu_PE' => $global_formats['ls_dot_comma_ltr'], |
| 676 | ), |
| 677 | 'PGK' => array( |
| 678 | 'en_PG' => $global_formats['lx_dot_comma_ltr'], |
| 679 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 680 | ), |
| 681 | 'PHP' => array( |
| 682 | 'en_PH' => $global_formats['lx_dot_comma_ltr'], |
| 683 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 684 | 'ceb_PH' => $global_formats['lx_dot_comma_ltr'], |
| 685 | 'fil_PH' => $global_formats['lx_dot_comma_ltr'], |
| 686 | ), |
| 687 | 'PKR' => array( |
| 688 | 'en_PK' => $global_formats['lx_dot_comma_ltr'], |
| 689 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 690 | 'ur_PK' => $global_formats['ls_dot_comma_rtl'], |
| 691 | ), |
| 692 | 'PLN' => array( |
| 693 | 'default' => $global_formats['rs_comma_space_ltr'], |
| 694 | 'pl_PL' => $global_formats['rs_comma_space_ltr'], |
| 695 | ), |
| 696 | 'PYG' => array( |
| 697 | 'es_PY' => $global_formats['ls_comma_dot_ltr'], |
| 698 | 'default' => $global_formats['ls_comma_dot_ltr'], |
| 699 | ), |
| 700 | 'QAR' => array( |
| 701 | 'ar_QA' => $global_formats['rs_comma_dot_rtl'], |
| 702 | 'default' => $global_formats['rs_comma_dot_rtl'], |
| 703 | ), |
| 704 | 'RON' => array( |
| 705 | 'default' => $global_formats['rs_comma_dot_ltr'], |
| 706 | 'ro_RO' => $global_formats['rs_comma_dot_ltr'], |
| 707 | ), |
| 708 | 'RSD' => array( |
| 709 | 'default' => $global_formats['rs_comma_dot_ltr'], |
| 710 | 'sr_RS' => $global_formats['rs_comma_dot_ltr'], |
| 711 | ), |
| 712 | 'RUB' => array( |
| 713 | 'default' => $global_formats['rs_comma_space_ltr'], |
| 714 | 'ce_RU' => $global_formats['rs_dot_comma_ltr'], |
| 715 | 'ru_RU' => $global_formats['rs_comma_space_ltr'], |
| 716 | 'sah_RU' => $global_formats['rs_comma_space_ltr'], |
| 717 | 'tt_RU' => $global_formats['rs_comma_space_ltr'], |
| 718 | ), |
| 719 | 'RWF' => array( |
| 720 | 'en_RW' => $global_formats['lx_dot_comma_ltr'], |
| 721 | 'fr_RW' => $global_formats['rs_comma_space_ltr'], |
| 722 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 723 | 'rw_RW' => $global_formats['ls_comma_dot_ltr'], |
| 724 | ), |
| 725 | 'SAR' => array( |
| 726 | 'ar_SA' => $global_formats['rs_comma_dot_rtl'], |
| 727 | 'default' => $global_formats['rs_comma_dot_rtl'], |
| 728 | ), |
| 729 | 'SBD' => array( |
| 730 | 'en_SB' => $global_formats['lx_dot_comma_ltr'], |
| 731 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 732 | ), |
| 733 | 'SCR' => array( |
| 734 | 'en_SC' => $global_formats['lx_dot_comma_ltr'], |
| 735 | 'fr_SC' => $global_formats['rs_comma_space_ltr'], |
| 736 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 737 | ), |
| 738 | 'SDG' => array( |
| 739 | 'ar_SD' => $global_formats['rs_comma_dot_rtl'], |
| 740 | 'en_SD' => $global_formats['lx_dot_comma_ltr'], |
| 741 | 'default' => $global_formats['rs_comma_dot_rtl'], |
| 742 | ), |
| 743 | 'SEK' => array( |
| 744 | 'default' => $global_formats['rs_comma_space_ltr'], |
| 745 | 'sv_SE' => $global_formats['rs_comma_space_ltr'], |
| 746 | ), |
| 747 | 'SGD' => array( |
| 748 | 'en_SG' => $global_formats['lx_dot_comma_ltr'], |
| 749 | 'ms_SG' => $global_formats['lx_dot_comma_ltr'], |
| 750 | 'ta_SG' => $global_formats['ls_dot_comma_ltr'], |
| 751 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 752 | ), |
| 753 | 'SHP' => array( |
| 754 | 'en_SH' => $global_formats['lx_dot_comma_ltr'], |
| 755 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 756 | ), |
| 757 | 'SLL' => array( |
| 758 | 'en_SL' => $global_formats['lx_dot_comma_ltr'], |
| 759 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 760 | ), |
| 761 | 'SOS' => array( |
| 762 | 'ar_SO' => $global_formats['rs_comma_dot_rtl'], |
| 763 | 'default' => $global_formats['rs_comma_dot_rtl'], |
| 764 | 'so_SO' => $global_formats['lx_dot_comma_ltr'], |
| 765 | ), |
| 766 | 'SRD' => array( |
| 767 | 'nl_SR' => $global_formats['ls_comma_dot_ltr'], |
| 768 | 'default' => $global_formats['ls_comma_dot_ltr'], |
| 769 | ), |
| 770 | 'SSP' => array( |
| 771 | 'en_SS' => $global_formats['lx_dot_comma_ltr'], |
| 772 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 773 | ), |
| 774 | 'STN' => array( |
| 775 | 'pt_ST' => $global_formats['rs_comma_space_ltr'], |
| 776 | 'default' => $global_formats['rs_comma_space_ltr'], |
| 777 | ), |
| 778 | 'SYP' => array( |
| 779 | 'ar_SY' => $global_formats['rs_comma_dot_rtl'], |
| 780 | 'fr_SY' => $global_formats['rs_comma_space_ltr'], |
| 781 | 'default' => $global_formats['rs_comma_dot_rtl'], |
| 782 | ), |
| 783 | 'SZL' => array( |
| 784 | 'en_SZ' => $global_formats['lx_dot_comma_ltr'], |
| 785 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 786 | ), |
| 787 | 'THB' => array( |
| 788 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 789 | 'th_TH' => $global_formats['lx_dot_comma_ltr'], |
| 790 | ), |
| 791 | 'TJS' => array( |
| 792 | 'default' => $global_formats['rs_comma_space_ltr'], |
| 793 | 'tg_TJ' => $global_formats['rs_comma_space_ltr'], |
| 794 | ), |
| 795 | 'TMT' => array( |
| 796 | 'default' => $global_formats['rs_comma_space_ltr'], |
| 797 | 'tk_TM' => $global_formats['rs_comma_space_ltr'], |
| 798 | ), |
| 799 | 'TND' => array( |
| 800 | 'ar_TN' => $global_formats['ls_comma_dot_rtl'], |
| 801 | 'fr_TN' => $global_formats['rs_comma_space_ltr'], |
| 802 | 'default' => $global_formats['ls_comma_dot_rtl'], |
| 803 | ), |
| 804 | 'TOP' => array( |
| 805 | 'en_TO' => $global_formats['lx_dot_comma_ltr'], |
| 806 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 807 | 'to_TO' => $global_formats['ls_dot_comma_ltr'], |
| 808 | ), |
| 809 | 'TRY' => array( |
| 810 | 'default' => $global_formats['lx_comma_dot_ltr'], |
| 811 | 'tr_TR' => $global_formats['lx_comma_dot_ltr'], |
| 812 | ), |
| 813 | 'TTD' => array( |
| 814 | 'en_TT' => $global_formats['lx_dot_comma_ltr'], |
| 815 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 816 | ), |
| 817 | 'TWD' => array( |
| 818 | 'zh_Hant' => $global_formats['lx_dot_comma_ltr'], |
| 819 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 820 | ), |
| 821 | 'TZS' => array( |
| 822 | 'en_TZ' => $global_formats['lx_dot_comma_ltr'], |
| 823 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 824 | 'sw_TZ' => $global_formats['ls_dot_comma_ltr'], |
| 825 | ), |
| 826 | 'UAH' => array( |
| 827 | 'ru_UA' => $global_formats['rs_comma_space_ltr'], |
| 828 | 'default' => $global_formats['rs_comma_space_ltr'], |
| 829 | 'uk_UA' => $global_formats['rs_comma_space_ltr'], |
| 830 | ), |
| 831 | 'UGX' => array( |
| 832 | 'en_UG' => $global_formats['lx_dot_comma_ltr'], |
| 833 | 'sw_UG' => $global_formats['ls_dot_comma_ltr'], |
| 834 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 835 | ), |
| 836 | 'USD' => array( |
| 837 | 'en_AS' => $global_formats['lx_dot_comma_ltr'], |
| 838 | 'en_DG' => $global_formats['lx_dot_comma_ltr'], |
| 839 | 'en_FM' => $global_formats['lx_dot_comma_ltr'], |
| 840 | 'en_GU' => $global_formats['lx_dot_comma_ltr'], |
| 841 | 'en_IO' => $global_formats['lx_dot_comma_ltr'], |
| 842 | 'en_MH' => $global_formats['lx_dot_comma_ltr'], |
| 843 | 'en_MP' => $global_formats['lx_dot_comma_ltr'], |
| 844 | 'en_PR' => $global_formats['lx_dot_comma_ltr'], |
| 845 | 'en_PW' => $global_formats['lx_dot_comma_ltr'], |
| 846 | 'en_TC' => $global_formats['lx_dot_comma_ltr'], |
| 847 | 'en_UM' => $global_formats['lx_dot_comma_ltr'], |
| 848 | 'en_VG' => $global_formats['lx_dot_comma_ltr'], |
| 849 | 'en_VI' => $global_formats['lx_dot_comma_ltr'], |
| 850 | 'en_ZW' => $global_formats['lx_dot_comma_ltr'], |
| 851 | 'es_EC' => $global_formats['lx_comma_dot_ltr'], |
| 852 | 'es_PA' => $global_formats['lx_dot_comma_ltr'], |
| 853 | 'es_PR' => $global_formats['lx_dot_comma_ltr'], |
| 854 | 'es_SV' => $global_formats['lx_dot_comma_ltr'], |
| 855 | 'es_US' => $global_formats['lx_dot_comma_ltr'], |
| 856 | 'fr_HT' => $global_formats['rs_comma_space_ltr'], |
| 857 | 'nl_BQ' => $global_formats['ls_comma_dot_ltr'], |
| 858 | 'pt_TL' => $global_formats['rs_comma_space_ltr'], |
| 859 | 'qu_EC' => $global_formats['ls_dot_comma_ltr'], |
| 860 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 861 | 'en_US' => $global_formats['lx_dot_comma_ltr'], |
| 862 | 'haw_US' => $global_formats['lx_dot_comma_ltr'], |
| 863 | 'nd_ZW' => $global_formats['lx_dot_comma_ltr'], |
| 864 | 'sn_ZW' => $global_formats['ls_dot_comma_ltr'], |
| 865 | ), |
| 866 | 'UYU' => array( |
| 867 | 'es_UY' => $global_formats['ls_comma_dot_ltr'], |
| 868 | 'default' => $global_formats['ls_comma_dot_ltr'], |
| 869 | ), |
| 870 | 'UZS' => array( |
| 871 | 'default' => $global_formats['rs_comma_space_ltr'], |
| 872 | 'uz_AF' => $global_formats['rs_comma_space_ltr'], |
| 873 | ), |
| 874 | 'VES' => array( |
| 875 | 'es_VE' => $global_formats['lx_comma_dot_ltr'], |
| 876 | 'default' => $global_formats['lx_comma_dot_ltr'], |
| 877 | ), |
| 878 | 'VND' => array( |
| 879 | 'default' => $global_formats['rs_comma_dot_ltr'], |
| 880 | 'vi_VN' => $global_formats['rs_comma_dot_ltr'], |
| 881 | ), |
| 882 | 'VUV' => array( |
| 883 | 'en_VU' => $global_formats['lx_dot_comma_ltr'], |
| 884 | 'fr_VU' => $global_formats['rs_comma_space_ltr'], |
| 885 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 886 | ), |
| 887 | 'WST' => array( |
| 888 | 'en_WS' => $global_formats['lx_dot_comma_ltr'], |
| 889 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 890 | ), |
| 891 | 'XAF' => array( |
| 892 | 'ar_TD' => $global_formats['rs_comma_dot_rtl'], |
| 893 | 'en_CM' => $global_formats['lx_dot_comma_ltr'], |
| 894 | 'es_GQ' => $global_formats['lx_comma_dot_ltr'], |
| 895 | 'fr_CF' => $global_formats['rs_comma_space_ltr'], |
| 896 | 'fr_CG' => $global_formats['rs_comma_space_ltr'], |
| 897 | 'fr_CM' => $global_formats['rs_comma_space_ltr'], |
| 898 | 'fr_GA' => $global_formats['rs_comma_space_ltr'], |
| 899 | 'fr_GQ' => $global_formats['rs_comma_space_ltr'], |
| 900 | 'fr_TD' => $global_formats['rs_comma_space_ltr'], |
| 901 | 'pt_GQ' => $global_formats['rs_comma_space_ltr'], |
| 902 | 'default' => $global_formats['rs_comma_space_ltr'], |
| 903 | 'sg_CF' => $global_formats['lx_comma_dot_ltr'], |
| 904 | ), |
| 905 | 'XCD' => array( |
| 906 | 'en_AG' => $global_formats['lx_dot_comma_ltr'], |
| 907 | 'en_AI' => $global_formats['lx_dot_comma_ltr'], |
| 908 | 'en_DM' => $global_formats['lx_dot_comma_ltr'], |
| 909 | 'en_GD' => $global_formats['lx_dot_comma_ltr'], |
| 910 | 'en_KN' => $global_formats['lx_dot_comma_ltr'], |
| 911 | 'en_LC' => $global_formats['lx_dot_comma_ltr'], |
| 912 | 'en_MS' => $global_formats['lx_dot_comma_ltr'], |
| 913 | 'en_VC' => $global_formats['lx_dot_comma_ltr'], |
| 914 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 915 | ), |
| 916 | 'XOF' => array( |
| 917 | 'fr_BF' => $global_formats['rs_comma_space_ltr'], |
| 918 | 'fr_BJ' => $global_formats['rs_comma_space_ltr'], |
| 919 | 'fr_CI' => $global_formats['rs_comma_space_ltr'], |
| 920 | 'fr_ML' => $global_formats['rs_comma_space_ltr'], |
| 921 | 'fr_NE' => $global_formats['rs_comma_space_ltr'], |
| 922 | 'fr_SN' => $global_formats['rs_comma_space_ltr'], |
| 923 | 'fr_TG' => $global_formats['rs_comma_space_ltr'], |
| 924 | 'pt_GW' => $global_formats['rs_comma_space_ltr'], |
| 925 | 'default' => $global_formats['rs_comma_space_ltr'], |
| 926 | 'dyo_SN' => $global_formats['rs_comma_space_ltr'], |
| 927 | 'wo_SN' => $global_formats['ls_comma_dot_ltr'], |
| 928 | ), |
| 929 | 'XPF' => array( |
| 930 | 'fr_NC' => $global_formats['rs_comma_space_ltr'], |
| 931 | 'fr_PF' => $global_formats['rs_comma_space_ltr'], |
| 932 | 'fr_WF' => $global_formats['rs_comma_space_ltr'], |
| 933 | 'default' => $global_formats['rs_comma_space_ltr'], |
| 934 | ), |
| 935 | 'YER' => array( |
| 936 | 'ar_YE' => $global_formats['rs_comma_dot_rtl'], |
| 937 | 'default' => $global_formats['rs_comma_dot_rtl'], |
| 938 | ), |
| 939 | 'ZAR' => array( |
| 940 | 'en_LS' => $global_formats['lx_dot_comma_ltr'], |
| 941 | 'en_NA' => $global_formats['lx_dot_comma_ltr'], |
| 942 | 'en_ZA' => $global_formats['lx_comma_space_ltr'], |
| 943 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 944 | 'af_ZA' => $global_formats['lx_comma_space_ltr'], |
| 945 | 'xh_ZA' => $global_formats['lx_dot_space_ltr'], |
| 946 | 'zu_ZA' => $global_formats['lx_dot_comma_ltr'], |
| 947 | ), |
| 948 | 'ZMW' => array( |
| 949 | 'en_ZM' => $global_formats['lx_dot_comma_ltr'], |
| 950 | 'default' => $global_formats['lx_dot_comma_ltr'], |
| 951 | ), |
| 952 | ); |
| 953 |