Geen omschrijving

currency-info.php 33KB

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