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