twitter_cldr 3.0.0.beta1 → 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (698) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +16 -2
  3. data/History.txt +9 -1
  4. data/README.md +297 -113
  5. data/Rakefile +97 -17
  6. data/lib/twitter_cldr/collation/collator.rb +12 -3
  7. data/lib/twitter_cldr/collation/trie_builder.rb +1 -1
  8. data/lib/twitter_cldr/{tokenizers/calendars → data_readers}/additional_date_format_selector.rb +6 -4
  9. data/lib/twitter_cldr/data_readers/calendar_data_reader.rb +91 -0
  10. data/lib/twitter_cldr/data_readers/data_reader.rb +32 -0
  11. data/lib/twitter_cldr/data_readers/date_data_reader.rb +26 -0
  12. data/lib/twitter_cldr/data_readers/date_time_data_reader.rb +41 -0
  13. data/lib/twitter_cldr/data_readers/number_data_reader.rb +142 -0
  14. data/lib/twitter_cldr/data_readers/time_data_reader.rb +26 -0
  15. data/lib/twitter_cldr/data_readers/timespan_data_reader.rb +122 -0
  16. data/lib/twitter_cldr/data_readers.rb +17 -0
  17. data/lib/twitter_cldr/formatters/calendars/{datetime_formatter.rb → date_time_formatter.rb} +27 -42
  18. data/lib/twitter_cldr/formatters/calendars/timespan_formatter.rb +3 -64
  19. data/lib/twitter_cldr/formatters/formatter.rb +39 -0
  20. data/lib/twitter_cldr/formatters/list_formatter.rb +22 -12
  21. data/lib/twitter_cldr/formatters/numbers/abbreviated/abbreviated_number_formatter.rb +5 -26
  22. data/lib/twitter_cldr/formatters/numbers/currency_formatter.rb +2 -11
  23. data/lib/twitter_cldr/formatters/numbers/decimal_formatter.rb +4 -2
  24. data/lib/twitter_cldr/formatters/numbers/number_formatter.rb +45 -27
  25. data/lib/twitter_cldr/formatters/numbers/percent_formatter.rb +3 -13
  26. data/lib/twitter_cldr/formatters/numbers/rbnf/formatters.rb +224 -0
  27. data/lib/twitter_cldr/formatters/numbers/rbnf/post_processors/chinese.rb +122 -0
  28. data/lib/twitter_cldr/formatters/numbers/rbnf/rule.rb +93 -0
  29. data/lib/twitter_cldr/formatters/numbers/rbnf/rule_group.rb +20 -0
  30. data/lib/twitter_cldr/formatters/numbers/rbnf/rule_parser.rb +86 -0
  31. data/lib/twitter_cldr/formatters/numbers/rbnf/rule_set.rb +259 -0
  32. data/lib/twitter_cldr/formatters/numbers/rbnf/substitution.rb +30 -0
  33. data/lib/twitter_cldr/formatters/numbers/rbnf.rb +127 -0
  34. data/lib/twitter_cldr/formatters/plurals/plural_formatter.rb +18 -6
  35. data/lib/twitter_cldr/formatters.rb +4 -5
  36. data/lib/twitter_cldr/localized/localized_array.rb +1 -1
  37. data/lib/twitter_cldr/localized/localized_date.rb +6 -3
  38. data/lib/twitter_cldr/localized/localized_datetime.rb +38 -15
  39. data/lib/twitter_cldr/localized/localized_number.rb +40 -24
  40. data/lib/twitter_cldr/localized/localized_object.rb +4 -4
  41. data/lib/twitter_cldr/localized/localized_string.rb +40 -7
  42. data/lib/twitter_cldr/localized/localized_time.rb +9 -2
  43. data/lib/twitter_cldr/localized/localized_timespan.rb +50 -5
  44. data/lib/twitter_cldr/normalization.rb +8 -19
  45. data/lib/twitter_cldr/parsers/parser.rb +50 -0
  46. data/lib/twitter_cldr/parsers/segmentation_parser.rb +137 -0
  47. data/lib/twitter_cldr/parsers/symbol_table.rb +30 -0
  48. data/lib/twitter_cldr/parsers/unicode_regex/character_class.rb +91 -0
  49. data/lib/twitter_cldr/parsers/unicode_regex/character_range.rb +39 -0
  50. data/lib/twitter_cldr/parsers/unicode_regex/character_set.rb +65 -0
  51. data/lib/twitter_cldr/parsers/unicode_regex/component.rb +50 -0
  52. data/lib/twitter_cldr/parsers/unicode_regex/literal.rb +83 -0
  53. data/lib/twitter_cldr/parsers/unicode_regex/unicode_string.rb +41 -0
  54. data/lib/twitter_cldr/parsers/unicode_regex_parser.rb +262 -0
  55. data/lib/twitter_cldr/parsers.rb +5 -1
  56. data/lib/twitter_cldr/resources/casefolder.rb.erb +64 -0
  57. data/lib/twitter_cldr/resources/casefolder_class_generator.rb +75 -0
  58. data/lib/twitter_cldr/resources/download.rb +10 -4
  59. data/lib/twitter_cldr/resources/icu_based_importer.rb +18 -0
  60. data/lib/twitter_cldr/resources/locales_resources_importer.rb +24 -13
  61. data/lib/twitter_cldr/resources/normalization_quick_check_importer.rb +1 -14
  62. data/lib/twitter_cldr/resources/rbnf_test_importer.rb +107 -0
  63. data/lib/twitter_cldr/resources/readme_renderer.rb +115 -0
  64. data/lib/twitter_cldr/resources/tailoring_importer.rb +2 -8
  65. data/lib/twitter_cldr/resources/uli/segment_exceptions_importer.rb +62 -0
  66. data/lib/twitter_cldr/resources/uli.rb +12 -0
  67. data/lib/twitter_cldr/resources/unicode_data_importer.rb +84 -14
  68. data/lib/twitter_cldr/resources/unicode_importer.rb +37 -0
  69. data/lib/twitter_cldr/resources/unicode_properties_importer.rb +79 -0
  70. data/lib/twitter_cldr/resources.rb +8 -1
  71. data/lib/twitter_cldr/shared/break_iterator.rb +213 -0
  72. data/lib/twitter_cldr/shared/calendar.rb +38 -14
  73. data/lib/twitter_cldr/shared/casefolder.rb +210 -0
  74. data/lib/twitter_cldr/shared/code_point.rb +103 -16
  75. data/lib/twitter_cldr/shared/numbering_system.rb +58 -0
  76. data/lib/twitter_cldr/shared/territories.rb +43 -1
  77. data/lib/twitter_cldr/shared/unicode_regex.rb +81 -0
  78. data/lib/twitter_cldr/shared.rb +13 -9
  79. data/lib/twitter_cldr/tokenizers/calendars/date_time_tokenizer.rb +77 -0
  80. data/lib/twitter_cldr/tokenizers/calendars/date_tokenizer.rb +14 -29
  81. data/lib/twitter_cldr/tokenizers/calendars/time_tokenizer.rb +13 -28
  82. data/lib/twitter_cldr/tokenizers/calendars/timespan_tokenizer.rb +11 -87
  83. data/lib/twitter_cldr/tokenizers/numbers/number_tokenizer.rb +16 -71
  84. data/lib/twitter_cldr/tokenizers/numbers/rbnf_tokenizer.rb +53 -0
  85. data/lib/twitter_cldr/tokenizers/pattern_tokenizer.rb +42 -0
  86. data/lib/twitter_cldr/tokenizers/segmentation/segmentation_tokenizer.rb +39 -0
  87. data/lib/twitter_cldr/tokenizers/tokenizer.rb +116 -0
  88. data/lib/twitter_cldr/tokenizers/unicode_regex/unicode_regex_tokenizer.rb +52 -0
  89. data/lib/twitter_cldr/tokenizers.rb +8 -4
  90. data/lib/twitter_cldr/utils/code_points.rb +1 -1
  91. data/lib/twitter_cldr/utils/range_set.rb +242 -0
  92. data/lib/twitter_cldr/utils/yaml.rb +17 -12
  93. data/lib/twitter_cldr/utils.rb +1 -1
  94. data/lib/twitter_cldr/version.rb +1 -1
  95. data/lib/twitter_cldr.rb +2 -1
  96. data/resources/custom/locales/sv/units.yml +8 -0
  97. data/resources/locales/af/calendars.yml +278 -224
  98. data/resources/locales/af/currencies.yml +954 -916
  99. data/resources/locales/af/languages.yml +583 -580
  100. data/resources/locales/af/layout.yml +5 -5
  101. data/resources/locales/af/lists.yml +23 -7
  102. data/resources/locales/af/numbers.yml +59 -54
  103. data/resources/locales/af/plurals.yml +2 -2
  104. data/resources/locales/af/rbnf.yml +261 -0
  105. data/resources/locales/af/territories.yml +264 -263
  106. data/resources/locales/ar/calendars.yml +287 -259
  107. data/resources/locales/ar/currencies.yml +1730 -1692
  108. data/resources/locales/ar/languages.yml +583 -580
  109. data/resources/locales/ar/layout.yml +5 -5
  110. data/resources/locales/ar/lists.yml +23 -7
  111. data/resources/locales/ar/numbers.yml +66 -61
  112. data/resources/locales/ar/plurals.yml +5 -8
  113. data/resources/locales/ar/rbnf.yml +519 -0
  114. data/resources/locales/ar/territories.yml +264 -263
  115. data/resources/locales/be/calendars.yml +238 -237
  116. data/resources/locales/be/currencies.yml +954 -917
  117. data/resources/locales/be/languages.yml +583 -580
  118. data/resources/locales/be/layout.yml +5 -5
  119. data/resources/locales/be/lists.yml +23 -7
  120. data/resources/locales/be/numbers.yml +62 -57
  121. data/resources/locales/be/plurals.yml +7 -4
  122. data/resources/locales/be/rbnf.yml +1288 -0
  123. data/resources/locales/be/territories.yml +264 -263
  124. data/resources/locales/bg/calendars.yml +278 -218
  125. data/resources/locales/bg/currencies.yml +955 -917
  126. data/resources/locales/bg/languages.yml +583 -580
  127. data/resources/locales/bg/layout.yml +5 -5
  128. data/resources/locales/bg/lists.yml +23 -7
  129. data/resources/locales/bg/numbers.yml +62 -57
  130. data/resources/locales/bg/plurals.yml +2 -2
  131. data/resources/locales/bg/rbnf.yml +280 -0
  132. data/resources/locales/bg/territories.yml +264 -263
  133. data/resources/locales/bn/calendars.yml +287 -225
  134. data/resources/locales/bn/currencies.yml +953 -916
  135. data/resources/locales/bn/languages.yml +583 -580
  136. data/resources/locales/bn/layout.yml +5 -5
  137. data/resources/locales/bn/lists.yml +23 -7
  138. data/resources/locales/bn/numbers.yml +62 -57
  139. data/resources/locales/bn/plurals.yml +2 -2
  140. data/resources/locales/bn/rbnf.yml +4 -0
  141. data/resources/locales/bn/territories.yml +264 -263
  142. data/resources/locales/ca/calendars.yml +278 -278
  143. data/resources/locales/ca/currencies.yml +953 -916
  144. data/resources/locales/ca/languages.yml +583 -580
  145. data/resources/locales/ca/layout.yml +5 -5
  146. data/resources/locales/ca/lists.yml +23 -7
  147. data/resources/locales/ca/numbers.yml +62 -57
  148. data/resources/locales/ca/plurals.yml +3 -2
  149. data/resources/locales/ca/rbnf.yml +756 -0
  150. data/resources/locales/ca/territories.yml +264 -263
  151. data/resources/locales/cs/calendars.yml +269 -262
  152. data/resources/locales/cs/currencies.yml +1483 -1172
  153. data/resources/locales/cs/languages.yml +583 -580
  154. data/resources/locales/cs/layout.yml +5 -5
  155. data/resources/locales/cs/lists.yml +23 -7
  156. data/resources/locales/cs/numbers.yml +64 -58
  157. data/resources/locales/cs/plurals.yml +6 -2
  158. data/resources/locales/cs/rbnf.yml +367 -0
  159. data/resources/locales/cs/territories.yml +264 -263
  160. data/resources/locales/cy/calendars.yml +275 -274
  161. data/resources/locales/cy/currencies.yml +1585 -1548
  162. data/resources/locales/cy/languages.yml +583 -580
  163. data/resources/locales/cy/layout.yml +5 -5
  164. data/resources/locales/cy/lists.yml +23 -7
  165. data/resources/locales/cy/numbers.yml +66 -61
  166. data/resources/locales/cy/plurals.yml +4 -3
  167. data/resources/locales/cy/rbnf.yml +298 -0
  168. data/resources/locales/cy/territories.yml +264 -263
  169. data/resources/locales/da/calendars.yml +281 -280
  170. data/resources/locales/da/currencies.yml +954 -916
  171. data/resources/locales/da/languages.yml +583 -580
  172. data/resources/locales/da/layout.yml +5 -5
  173. data/resources/locales/da/lists.yml +23 -7
  174. data/resources/locales/da/numbers.yml +62 -57
  175. data/resources/locales/da/plurals.yml +3 -2
  176. data/resources/locales/da/rbnf.yml +194 -0
  177. data/resources/locales/da/territories.yml +264 -263
  178. data/resources/locales/de/calendars.yml +294 -293
  179. data/resources/locales/de/currencies.yml +954 -916
  180. data/resources/locales/de/languages.yml +583 -580
  181. data/resources/locales/de/layout.yml +5 -5
  182. data/resources/locales/de/lists.yml +23 -7
  183. data/resources/locales/de/numbers.yml +62 -57
  184. data/resources/locales/de/plurals.yml +3 -2
  185. data/resources/locales/de/rbnf.yml +346 -0
  186. data/resources/locales/de/territories.yml +264 -263
  187. data/resources/locales/el/calendars.yml +279 -282
  188. data/resources/locales/el/currencies.yml +954 -916
  189. data/resources/locales/el/languages.yml +583 -580
  190. data/resources/locales/el/layout.yml +5 -5
  191. data/resources/locales/el/lists.yml +23 -7
  192. data/resources/locales/el/numbers.yml +62 -57
  193. data/resources/locales/el/plurals.yml +2 -2
  194. data/resources/locales/el/rbnf.yml +880 -0
  195. data/resources/locales/el/territories.yml +264 -263
  196. data/resources/locales/en/calendars.yml +192 -191
  197. data/resources/locales/en/currencies.yml +953 -915
  198. data/resources/locales/en/languages.yml +583 -580
  199. data/resources/locales/en/layout.yml +5 -5
  200. data/resources/locales/en/lists.yml +23 -7
  201. data/resources/locales/en/numbers.yml +62 -57
  202. data/resources/locales/en/plurals.yml +3 -2
  203. data/resources/locales/en/rbnf.yml +542 -0
  204. data/resources/locales/en/territories.yml +264 -263
  205. data/resources/locales/en-GB/calendars.yml +195 -194
  206. data/resources/locales/en-GB/currencies.yml +953 -915
  207. data/resources/locales/en-GB/languages.yml +583 -580
  208. data/resources/locales/en-GB/layout.yml +5 -5
  209. data/resources/locales/en-GB/lists.yml +23 -7
  210. data/resources/locales/en-GB/numbers.yml +62 -57
  211. data/resources/locales/en-GB/plurals.yml +2 -1
  212. data/resources/locales/en-GB/rbnf.yml +4 -0
  213. data/resources/locales/en-GB/territories.yml +264 -263
  214. data/resources/locales/es/calendars.yml +288 -238
  215. data/resources/locales/es/currencies.yml +953 -922
  216. data/resources/locales/es/languages.yml +583 -580
  217. data/resources/locales/es/layout.yml +5 -5
  218. data/resources/locales/es/lists.yml +23 -7
  219. data/resources/locales/es/numbers.yml +62 -57
  220. data/resources/locales/es/plurals.yml +2 -2
  221. data/resources/locales/es/rbnf.yml +913 -0
  222. data/resources/locales/es/territories.yml +264 -263
  223. data/resources/locales/eu/calendars.yml +277 -218
  224. data/resources/locales/eu/currencies.yml +953 -916
  225. data/resources/locales/eu/languages.yml +583 -580
  226. data/resources/locales/eu/layout.yml +5 -5
  227. data/resources/locales/eu/lists.yml +23 -7
  228. data/resources/locales/eu/numbers.yml +56 -51
  229. data/resources/locales/eu/plurals.yml +2 -2
  230. data/resources/locales/eu/rbnf.yml +4 -0
  231. data/resources/locales/eu/territories.yml +264 -263
  232. data/resources/locales/fa/calendars.yml +294 -293
  233. data/resources/locales/fa/currencies.yml +955 -916
  234. data/resources/locales/fa/languages.yml +583 -580
  235. data/resources/locales/fa/layout.yml +5 -5
  236. data/resources/locales/fa/lists.yml +23 -7
  237. data/resources/locales/fa/numbers.yml +62 -57
  238. data/resources/locales/fa/plurals.yml +2 -2
  239. data/resources/locales/fa/rbnf.yml +157 -0
  240. data/resources/locales/fa/territories.yml +264 -263
  241. data/resources/locales/fi/calendars.yml +284 -283
  242. data/resources/locales/fi/currencies.yml +953 -915
  243. data/resources/locales/fi/languages.yml +583 -580
  244. data/resources/locales/fi/layout.yml +5 -5
  245. data/resources/locales/fi/lists.yml +23 -7
  246. data/resources/locales/fi/numbers.yml +62 -57
  247. data/resources/locales/fi/plurals.yml +3 -2
  248. data/resources/locales/fi/rbnf.yml +206 -0
  249. data/resources/locales/fi/territories.yml +264 -263
  250. data/resources/locales/fil/calendars.yml +281 -230
  251. data/resources/locales/fil/currencies.yml +953 -916
  252. data/resources/locales/fil/languages.yml +583 -580
  253. data/resources/locales/fil/layout.yml +5 -5
  254. data/resources/locales/fil/lists.yml +23 -7
  255. data/resources/locales/fil/numbers.yml +62 -57
  256. data/resources/locales/fil/plurals.yml +3 -2
  257. data/resources/locales/fil/rbnf.yml +158 -0
  258. data/resources/locales/fil/territories.yml +264 -263
  259. data/resources/locales/fr/calendars.yml +297 -296
  260. data/resources/locales/fr/currencies.yml +968 -949
  261. data/resources/locales/fr/languages.yml +583 -580
  262. data/resources/locales/fr/layout.yml +5 -5
  263. data/resources/locales/fr/lists.yml +23 -7
  264. data/resources/locales/fr/numbers.yml +62 -57
  265. data/resources/locales/fr/plurals.yml +2 -2
  266. data/resources/locales/fr/rbnf.yml +621 -0
  267. data/resources/locales/fr/territories.yml +264 -263
  268. data/resources/locales/ga/calendars.yml +192 -191
  269. data/resources/locales/ga/currencies.yml +954 -916
  270. data/resources/locales/ga/languages.yml +583 -580
  271. data/resources/locales/ga/layout.yml +5 -5
  272. data/resources/locales/ga/lists.yml +23 -7
  273. data/resources/locales/ga/numbers.yml +62 -57
  274. data/resources/locales/ga/plurals.yml +4 -3
  275. data/resources/locales/ga/rbnf.yml +615 -0
  276. data/resources/locales/ga/territories.yml +264 -263
  277. data/resources/locales/gl/calendars.yml +283 -217
  278. data/resources/locales/gl/currencies.yml +953 -916
  279. data/resources/locales/gl/languages.yml +583 -580
  280. data/resources/locales/gl/layout.yml +5 -5
  281. data/resources/locales/gl/lists.yml +23 -7
  282. data/resources/locales/gl/numbers.yml +62 -57
  283. data/resources/locales/gl/plurals.yml +3 -2
  284. data/resources/locales/gl/rbnf.yml +4 -0
  285. data/resources/locales/gl/territories.yml +264 -263
  286. data/resources/locales/he/calendars.yml +248 -220
  287. data/resources/locales/he/currencies.yml +992 -932
  288. data/resources/locales/he/languages.yml +583 -580
  289. data/resources/locales/he/layout.yml +5 -5
  290. data/resources/locales/he/lists.yml +23 -7
  291. data/resources/locales/he/numbers.yml +64 -59
  292. data/resources/locales/he/plurals.yml +6 -3
  293. data/resources/locales/he/rbnf.yml +1029 -0
  294. data/resources/locales/he/territories.yml +264 -263
  295. data/resources/locales/hi/calendars.yml +284 -216
  296. data/resources/locales/hi/currencies.yml +953 -915
  297. data/resources/locales/hi/languages.yml +583 -580
  298. data/resources/locales/hi/layout.yml +5 -5
  299. data/resources/locales/hi/lists.yml +23 -7
  300. data/resources/locales/hi/numbers.yml +60 -55
  301. data/resources/locales/hi/plurals.yml +2 -2
  302. data/resources/locales/hi/rbnf.yml +430 -0
  303. data/resources/locales/hi/territories.yml +264 -263
  304. data/resources/locales/hr/calendars.yml +308 -307
  305. data/resources/locales/hr/currencies.yml +1248 -1504
  306. data/resources/locales/hr/languages.yml +583 -580
  307. data/resources/locales/hr/layout.yml +5 -5
  308. data/resources/locales/hr/lists.yml +23 -7
  309. data/resources/locales/hr/numbers.yml +63 -59
  310. data/resources/locales/hr/plurals.yml +12 -4
  311. data/resources/locales/hr/rbnf.yml +599 -0
  312. data/resources/locales/hr/territories.yml +264 -263
  313. data/resources/locales/hu/calendars.yml +285 -284
  314. data/resources/locales/hu/currencies.yml +954 -916
  315. data/resources/locales/hu/languages.yml +583 -580
  316. data/resources/locales/hu/layout.yml +5 -5
  317. data/resources/locales/hu/lists.yml +23 -7
  318. data/resources/locales/hu/numbers.yml +62 -57
  319. data/resources/locales/hu/plurals.yml +2 -2
  320. data/resources/locales/hu/rbnf.yml +363 -0
  321. data/resources/locales/hu/territories.yml +264 -263
  322. data/resources/locales/id/calendars.yml +276 -275
  323. data/resources/locales/id/currencies.yml +954 -916
  324. data/resources/locales/id/languages.yml +583 -580
  325. data/resources/locales/id/layout.yml +5 -5
  326. data/resources/locales/id/lists.yml +23 -7
  327. data/resources/locales/id/numbers.yml +61 -56
  328. data/resources/locales/id/plurals.yml +2 -2
  329. data/resources/locales/id/rbnf.yml +121 -0
  330. data/resources/locales/id/territories.yml +264 -263
  331. data/resources/locales/is/calendars.yml +281 -242
  332. data/resources/locales/is/currencies.yml +954 -916
  333. data/resources/locales/is/languages.yml +583 -580
  334. data/resources/locales/is/layout.yml +5 -5
  335. data/resources/locales/is/lists.yml +23 -7
  336. data/resources/locales/is/numbers.yml +62 -57
  337. data/resources/locales/is/plurals.yml +5 -2
  338. data/resources/locales/is/rbnf.yml +326 -0
  339. data/resources/locales/is/territories.yml +264 -263
  340. data/resources/locales/it/calendars.yml +275 -260
  341. data/resources/locales/it/currencies.yml +953 -920
  342. data/resources/locales/it/languages.yml +583 -580
  343. data/resources/locales/it/layout.yml +5 -5
  344. data/resources/locales/it/lists.yml +23 -7
  345. data/resources/locales/it/numbers.yml +59 -54
  346. data/resources/locales/it/plurals.yml +3 -2
  347. data/resources/locales/it/rbnf.yml +1189 -0
  348. data/resources/locales/it/territories.yml +264 -263
  349. data/resources/locales/ja/calendars.yml +269 -207
  350. data/resources/locales/ja/currencies.yml +953 -915
  351. data/resources/locales/ja/languages.yml +583 -580
  352. data/resources/locales/ja/layout.yml +5 -5
  353. data/resources/locales/ja/lists.yml +23 -7
  354. data/resources/locales/ja/numbers.yml +62 -57
  355. data/resources/locales/ja/plurals.yml +2 -2
  356. data/resources/locales/ja/rbnf.yml +209 -0
  357. data/resources/locales/ja/territories.yml +264 -263
  358. data/resources/locales/ko/calendars.yml +246 -213
  359. data/resources/locales/ko/currencies.yml +953 -915
  360. data/resources/locales/ko/languages.yml +583 -580
  361. data/resources/locales/ko/layout.yml +5 -5
  362. data/resources/locales/ko/lists.yml +23 -7
  363. data/resources/locales/ko/numbers.yml +60 -55
  364. data/resources/locales/ko/plurals.yml +2 -2
  365. data/resources/locales/ko/rbnf.yml +722 -0
  366. data/resources/locales/ko/territories.yml +264 -263
  367. data/resources/locales/lv/calendars.yml +286 -285
  368. data/resources/locales/lv/currencies.yml +1122 -1084
  369. data/resources/locales/lv/languages.yml +583 -580
  370. data/resources/locales/lv/layout.yml +5 -5
  371. data/resources/locales/lv/lists.yml +23 -7
  372. data/resources/locales/lv/numbers.yml +63 -58
  373. data/resources/locales/lv/plurals.yml +11 -3
  374. data/resources/locales/lv/rbnf.yml +238 -0
  375. data/resources/locales/lv/territories.yml +264 -263
  376. data/resources/locales/ms/calendars.yml +280 -279
  377. data/resources/locales/ms/currencies.yml +954 -916
  378. data/resources/locales/ms/languages.yml +583 -580
  379. data/resources/locales/ms/layout.yml +5 -5
  380. data/resources/locales/ms/lists.yml +23 -7
  381. data/resources/locales/ms/numbers.yml +62 -57
  382. data/resources/locales/ms/plurals.yml +2 -2
  383. data/resources/locales/ms/rbnf.yml +130 -0
  384. data/resources/locales/ms/territories.yml +264 -263
  385. data/resources/locales/nb/calendars.yml +284 -283
  386. data/resources/locales/nb/currencies.yml +958 -916
  387. data/resources/locales/nb/languages.yml +583 -580
  388. data/resources/locales/nb/layout.yml +5 -5
  389. data/resources/locales/nb/lists.yml +23 -7
  390. data/resources/locales/nb/numbers.yml +62 -57
  391. data/resources/locales/nb/plurals.yml +2 -2
  392. data/resources/locales/nb/rbnf.yml +191 -0
  393. data/resources/locales/nb/territories.yml +264 -263
  394. data/resources/locales/nl/calendars.yml +285 -284
  395. data/resources/locales/nl/currencies.yml +953 -917
  396. data/resources/locales/nl/languages.yml +583 -580
  397. data/resources/locales/nl/layout.yml +5 -5
  398. data/resources/locales/nl/lists.yml +23 -7
  399. data/resources/locales/nl/numbers.yml +62 -57
  400. data/resources/locales/nl/plurals.yml +3 -2
  401. data/resources/locales/nl/rbnf.yml +320 -0
  402. data/resources/locales/nl/territories.yml +264 -263
  403. data/resources/locales/pl/calendars.yml +288 -287
  404. data/resources/locales/pl/currencies.yml +1326 -1284
  405. data/resources/locales/pl/languages.yml +583 -580
  406. data/resources/locales/pl/layout.yml +5 -5
  407. data/resources/locales/pl/lists.yml +23 -7
  408. data/resources/locales/pl/numbers.yml +64 -59
  409. data/resources/locales/pl/plurals.yml +11 -4
  410. data/resources/locales/pl/rbnf.yml +410 -0
  411. data/resources/locales/pl/territories.yml +264 -263
  412. data/resources/locales/pt/calendars.yml +290 -289
  413. data/resources/locales/pt/currencies.yml +954 -916
  414. data/resources/locales/pt/languages.yml +583 -580
  415. data/resources/locales/pt/layout.yml +5 -5
  416. data/resources/locales/pt/lists.yml +23 -7
  417. data/resources/locales/pt/numbers.yml +62 -57
  418. data/resources/locales/pt/plurals.yml +4 -2
  419. data/resources/locales/pt/rbnf.yml +586 -0
  420. data/resources/locales/pt/territories.yml +264 -263
  421. data/resources/locales/ro/calendars.yml +284 -283
  422. data/resources/locales/ro/currencies.yml +1170 -1132
  423. data/resources/locales/ro/languages.yml +583 -580
  424. data/resources/locales/ro/layout.yml +5 -5
  425. data/resources/locales/ro/lists.yml +23 -7
  426. data/resources/locales/ro/numbers.yml +63 -58
  427. data/resources/locales/ro/plurals.yml +5 -2
  428. data/resources/locales/ro/rbnf.yml +250 -0
  429. data/resources/locales/ro/territories.yml +264 -263
  430. data/resources/locales/ru/calendars.yml +282 -281
  431. data/resources/locales/ru/currencies.yml +1118 -1247
  432. data/resources/locales/ru/languages.yml +583 -580
  433. data/resources/locales/ru/layout.yml +5 -5
  434. data/resources/locales/ru/lists.yml +23 -7
  435. data/resources/locales/ru/numbers.yml +63 -59
  436. data/resources/locales/ru/plurals.yml +8 -4
  437. data/resources/locales/ru/rbnf.yml +385 -0
  438. data/resources/locales/ru/territories.yml +264 -263
  439. data/resources/locales/sk/calendars.yml +254 -251
  440. data/resources/locales/sk/currencies.yml +1174 -1008
  441. data/resources/locales/sk/languages.yml +583 -580
  442. data/resources/locales/sk/layout.yml +5 -5
  443. data/resources/locales/sk/lists.yml +23 -7
  444. data/resources/locales/sk/numbers.yml +64 -58
  445. data/resources/locales/sk/plurals.yml +6 -2
  446. data/resources/locales/sk/rbnf.yml +304 -0
  447. data/resources/locales/sk/territories.yml +264 -263
  448. data/resources/locales/sq/calendars.yml +283 -206
  449. data/resources/locales/sq/currencies.yml +954 -916
  450. data/resources/locales/sq/languages.yml +583 -580
  451. data/resources/locales/sq/layout.yml +5 -5
  452. data/resources/locales/sq/lists.yml +23 -7
  453. data/resources/locales/sq/numbers.yml +62 -57
  454. data/resources/locales/sq/plurals.yml +2 -2
  455. data/resources/locales/sq/rbnf.yml +181 -0
  456. data/resources/locales/sq/territories.yml +264 -263
  457. data/resources/locales/sr/calendars.yml +290 -289
  458. data/resources/locales/sr/currencies.yml +1251 -1508
  459. data/resources/locales/sr/languages.yml +583 -580
  460. data/resources/locales/sr/layout.yml +5 -5
  461. data/resources/locales/sr/lists.yml +23 -7
  462. data/resources/locales/sr/numbers.yml +62 -58
  463. data/resources/locales/sr/plurals.yml +12 -4
  464. data/resources/locales/sr/rbnf.yml +429 -0
  465. data/resources/locales/sr/territories.yml +264 -263
  466. data/resources/locales/sv/calendars.yml +290 -289
  467. data/resources/locales/sv/currencies.yml +960 -930
  468. data/resources/locales/sv/languages.yml +583 -580
  469. data/resources/locales/sv/layout.yml +5 -5
  470. data/resources/locales/sv/lists.yml +23 -7
  471. data/resources/locales/sv/numbers.yml +63 -58
  472. data/resources/locales/sv/plurals.yml +3 -2
  473. data/resources/locales/sv/rbnf.yml +692 -0
  474. data/resources/locales/sv/territories.yml +264 -263
  475. data/resources/locales/ta/calendars.yml +281 -266
  476. data/resources/locales/ta/currencies.yml +953 -915
  477. data/resources/locales/ta/languages.yml +583 -580
  478. data/resources/locales/ta/layout.yml +5 -5
  479. data/resources/locales/ta/lists.yml +23 -7
  480. data/resources/locales/ta/numbers.yml +62 -57
  481. data/resources/locales/ta/plurals.yml +2 -2
  482. data/resources/locales/ta/rbnf.yml +241 -0
  483. data/resources/locales/ta/territories.yml +264 -263
  484. data/resources/locales/th/calendars.yml +278 -289
  485. data/resources/locales/th/currencies.yml +953 -915
  486. data/resources/locales/th/languages.yml +583 -580
  487. data/resources/locales/th/layout.yml +5 -5
  488. data/resources/locales/th/lists.yml +23 -7
  489. data/resources/locales/th/numbers.yml +62 -57
  490. data/resources/locales/th/plurals.yml +2 -2
  491. data/resources/locales/th/rbnf.yml +119 -0
  492. data/resources/locales/th/territories.yml +264 -263
  493. data/resources/locales/tr/calendars.yml +287 -286
  494. data/resources/locales/tr/currencies.yml +953 -916
  495. data/resources/locales/tr/languages.yml +583 -580
  496. data/resources/locales/tr/layout.yml +5 -5
  497. data/resources/locales/tr/lists.yml +23 -7
  498. data/resources/locales/tr/numbers.yml +61 -56
  499. data/resources/locales/tr/plurals.yml +2 -2
  500. data/resources/locales/tr/rbnf.yml +277 -0
  501. data/resources/locales/tr/territories.yml +264 -263
  502. data/resources/locales/uk/calendars.yml +286 -252
  503. data/resources/locales/uk/currencies.yml +1311 -1070
  504. data/resources/locales/uk/languages.yml +583 -580
  505. data/resources/locales/uk/layout.yml +5 -5
  506. data/resources/locales/uk/lists.yml +23 -7
  507. data/resources/locales/uk/numbers.yml +64 -59
  508. data/resources/locales/uk/plurals.yml +10 -4
  509. data/resources/locales/uk/rbnf.yml +430 -0
  510. data/resources/locales/uk/territories.yml +264 -263
  511. data/resources/locales/ur/calendars.yml +267 -228
  512. data/resources/locales/ur/currencies.yml +954 -916
  513. data/resources/locales/ur/languages.yml +583 -580
  514. data/resources/locales/ur/layout.yml +5 -5
  515. data/resources/locales/ur/lists.yml +23 -7
  516. data/resources/locales/ur/numbers.yml +62 -57
  517. data/resources/locales/ur/plurals.yml +3 -2
  518. data/resources/locales/ur/rbnf.yml +4 -0
  519. data/resources/locales/ur/territories.yml +264 -263
  520. data/resources/locales/vi/calendars.yml +256 -236
  521. data/resources/locales/vi/currencies.yml +953 -915
  522. data/resources/locales/vi/languages.yml +583 -580
  523. data/resources/locales/vi/layout.yml +5 -5
  524. data/resources/locales/vi/lists.yml +23 -7
  525. data/resources/locales/vi/numbers.yml +62 -57
  526. data/resources/locales/vi/plurals.yml +2 -2
  527. data/resources/locales/vi/rbnf.yml +164 -0
  528. data/resources/locales/vi/territories.yml +264 -263
  529. data/resources/locales/zh/calendars.yml +266 -265
  530. data/resources/locales/zh/currencies.yml +953 -915
  531. data/resources/locales/zh/languages.yml +583 -580
  532. data/resources/locales/zh/layout.yml +5 -5
  533. data/resources/locales/zh/lists.yml +23 -7
  534. data/resources/locales/zh/numbers.yml +62 -57
  535. data/resources/locales/zh/plurals.yml +2 -2
  536. data/resources/locales/zh/rbnf.yml +689 -0
  537. data/resources/locales/zh/territories.yml +264 -263
  538. data/resources/locales/zh-Hant/calendars.yml +266 -265
  539. data/resources/locales/zh-Hant/currencies.yml +955 -915
  540. data/resources/locales/zh-Hant/languages.yml +583 -580
  541. data/resources/locales/zh-Hant/layout.yml +5 -5
  542. data/resources/locales/zh-Hant/lists.yml +23 -7
  543. data/resources/locales/zh-Hant/numbers.yml +62 -57
  544. data/resources/locales/zh-Hant/plurals.yml +2 -2
  545. data/resources/locales/zh-Hant/rbnf.yml +647 -0
  546. data/resources/locales/zh-Hant/territories.yml +264 -263
  547. data/resources/shared/currency_digits_and_rounding.yml +67 -64
  548. data/resources/shared/numbering_systems.yml +176 -0
  549. data/resources/shared/rbnf_root.yml +1573 -0
  550. data/resources/shared/segments/segments_root.yml +728 -0
  551. data/resources/shared/segments/tailorings/en.yml +8 -0
  552. data/resources/uli/segments/de.yml +128 -0
  553. data/resources/uli/segments/en.yml +154 -0
  554. data/resources/uli/segments/es.yml +112 -0
  555. data/resources/uli/segments/fr.yml +47 -0
  556. data/resources/uli/segments/it.yml +37 -0
  557. data/resources/uli/segments/pt.yml +173 -0
  558. data/resources/uli/segments/ru.yml +10 -0
  559. data/resources/unicode_data/casefolding.yml +4765 -0
  560. data/resources/unicode_data/indices/bidi_class.yml +4572 -0
  561. data/resources/unicode_data/indices/bidi_mirrored.yml +3087 -0
  562. data/resources/unicode_data/indices/category.yml +10918 -0
  563. data/resources/unicode_data/indices/keys.yml +101 -0
  564. data/resources/unicode_data/properties/line_break.yml +9269 -0
  565. data/resources/unicode_data/properties/sentence_break.yml +8067 -0
  566. data/resources/unicode_data/properties/word_break.yml +3001 -0
  567. data/spec/collation/collation_spec.rb +2 -1
  568. data/spec/collation/collator_spec.rb +4 -3
  569. data/spec/collation/tailoring_spec.rb +2 -2
  570. data/spec/collation/tailoring_tests/he.txt +5 -2
  571. data/spec/{tokenizers/calendars → data_readers}/additional_date_format_selector_spec.rb +13 -13
  572. data/spec/data_readers/date_time_data_reader_spec.rb +26 -0
  573. data/spec/data_readers/number_data_reader_spec.rb +18 -0
  574. data/spec/data_readers/timespan_data_reader.rb +22 -0
  575. data/spec/formatters/calendars/datetime_formatter_spec.rb +18 -22
  576. data/spec/formatters/list_formatter_spec.rb +16 -87
  577. data/spec/formatters/numbers/abbreviated/abbreviated_number_formatter_spec.rb +15 -59
  578. data/spec/formatters/numbers/abbreviated/long_decimal_formatter_spec.rb +32 -17
  579. data/spec/formatters/numbers/abbreviated/short_decimal_formatter_spec.rb +33 -17
  580. data/spec/formatters/numbers/currency_formatter_spec.rb +18 -13
  581. data/spec/formatters/numbers/decimal_formatter_spec.rb +16 -18
  582. data/spec/formatters/numbers/number_formatter_spec.rb +40 -31
  583. data/spec/formatters/numbers/percent_formatter_spec.rb +14 -6
  584. data/spec/formatters/numbers/rbnf/allowed_failures.yml +74 -0
  585. data/spec/formatters/numbers/rbnf/locales/af/rbnf_test.yml +706 -0
  586. data/spec/formatters/numbers/rbnf/locales/ar/rbnf_test.yml +706 -0
  587. data/spec/formatters/numbers/rbnf/locales/be/rbnf_test.yml +1174 -0
  588. data/spec/formatters/numbers/rbnf/locales/bg/rbnf_test.yml +706 -0
  589. data/spec/formatters/numbers/rbnf/locales/bn/rbnf_test.yml +1291 -0
  590. data/spec/formatters/numbers/rbnf/locales/ca/rbnf_test.yml +1174 -0
  591. data/spec/formatters/numbers/rbnf/locales/cs/rbnf_test.yml +823 -0
  592. data/spec/formatters/numbers/rbnf/locales/cy/rbnf_test.yml +940 -0
  593. data/spec/formatters/numbers/rbnf/locales/da/rbnf_test.yml +940 -0
  594. data/spec/formatters/numbers/rbnf/locales/de/rbnf_test.yml +940 -0
  595. data/spec/formatters/numbers/rbnf/locales/el/rbnf_test.yml +1174 -0
  596. data/spec/formatters/numbers/rbnf/locales/en/rbnf_test.yml +1291 -0
  597. data/spec/formatters/numbers/rbnf/locales/en-GB/rbnf_test.yml +1291 -0
  598. data/spec/formatters/numbers/rbnf/locales/es/rbnf_test.yml +1642 -0
  599. data/spec/formatters/numbers/rbnf/locales/eu/rbnf_test.yml +1291 -0
  600. data/spec/formatters/numbers/rbnf/locales/fa/rbnf_test.yml +589 -0
  601. data/spec/formatters/numbers/rbnf/locales/fi/rbnf_test.yml +706 -0
  602. data/spec/formatters/numbers/rbnf/locales/fil/rbnf_test.yml +706 -0
  603. data/spec/formatters/numbers/rbnf/locales/fr/rbnf_test.yml +1408 -0
  604. data/spec/formatters/numbers/rbnf/locales/ga/rbnf_test.yml +940 -0
  605. data/spec/formatters/numbers/rbnf/locales/gl/rbnf_test.yml +1291 -0
  606. data/spec/formatters/numbers/rbnf/locales/he/rbnf_test.yml +1057 -0
  607. data/spec/formatters/numbers/rbnf/locales/hi/rbnf_test.yml +823 -0
  608. data/spec/formatters/numbers/rbnf/locales/hr/rbnf_test.yml +1174 -0
  609. data/spec/formatters/numbers/rbnf/locales/hu/rbnf_test.yml +940 -0
  610. data/spec/formatters/numbers/rbnf/locales/id/rbnf_test.yml +706 -0
  611. data/spec/formatters/numbers/rbnf/locales/is/rbnf_test.yml +823 -0
  612. data/spec/formatters/numbers/rbnf/locales/it/rbnf_test.yml +1174 -0
  613. data/spec/formatters/numbers/rbnf/locales/ja/rbnf_test.yml +823 -0
  614. data/spec/formatters/numbers/rbnf/locales/ko/rbnf_test.yml +1408 -0
  615. data/spec/formatters/numbers/rbnf/locales/lv/rbnf_test.yml +706 -0
  616. data/spec/formatters/numbers/rbnf/locales/ms/rbnf_test.yml +706 -0
  617. data/spec/formatters/numbers/rbnf/locales/nb/rbnf_test.yml +940 -0
  618. data/spec/formatters/numbers/rbnf/locales/nl/rbnf_test.yml +706 -0
  619. data/spec/formatters/numbers/rbnf/locales/pl/rbnf_test.yml +823 -0
  620. data/spec/formatters/numbers/rbnf/locales/pt/rbnf_test.yml +1174 -0
  621. data/spec/formatters/numbers/rbnf/locales/ro/rbnf_test.yml +823 -0
  622. data/spec/formatters/numbers/rbnf/locales/ru/rbnf_test.yml +823 -0
  623. data/spec/formatters/numbers/rbnf/locales/sk/rbnf_test.yml +823 -0
  624. data/spec/formatters/numbers/rbnf/locales/sq/rbnf_test.yml +706 -0
  625. data/spec/formatters/numbers/rbnf/locales/sr/rbnf_test.yml +940 -0
  626. data/spec/formatters/numbers/rbnf/locales/sv/rbnf_test.yml +1876 -0
  627. data/spec/formatters/numbers/rbnf/locales/ta/rbnf_test.yml +706 -0
  628. data/spec/formatters/numbers/rbnf/locales/th/rbnf_test.yml +706 -0
  629. data/spec/formatters/numbers/rbnf/locales/tr/rbnf_test.yml +706 -0
  630. data/spec/formatters/numbers/rbnf/locales/uk/rbnf_test.yml +823 -0
  631. data/spec/formatters/numbers/rbnf/locales/ur/rbnf_test.yml +1291 -0
  632. data/spec/formatters/numbers/rbnf/locales/vi/rbnf_test.yml +706 -0
  633. data/spec/formatters/numbers/rbnf/locales/zh/rbnf_test.yml +940 -0
  634. data/spec/formatters/numbers/rbnf/locales/zh-Hant/rbnf_test.yml +940 -0
  635. data/spec/formatters/numbers/rbnf/rbnf_spec.rb +98 -0
  636. data/spec/formatters/plurals/plural_formatter_spec.rb +4 -4
  637. data/spec/formatters/plurals/rules_spec.rb +5 -5
  638. data/spec/localized/localized_date_spec.rb +1 -1
  639. data/spec/localized/localized_datetime_spec.rb +8 -13
  640. data/spec/localized/localized_number_spec.rb +17 -32
  641. data/spec/localized/localized_object_spec.rb +0 -5
  642. data/spec/localized/localized_string_spec.rb +40 -2
  643. data/spec/localized/localized_time_spec.rb +3 -6
  644. data/spec/localized/localized_timespan_spec.rb +144 -0
  645. data/spec/normalization_spec.rb +12 -12
  646. data/spec/parsers/number_parser_spec.rb +5 -5
  647. data/spec/parsers/parser_spec.rb +60 -0
  648. data/spec/parsers/segmentation_parser_spec.rb +96 -0
  649. data/spec/parsers/symbol_table_spec.rb +32 -0
  650. data/spec/parsers/unicode_regex/character_class_spec.rb +117 -0
  651. data/spec/parsers/unicode_regex/character_range_spec.rb +21 -0
  652. data/spec/parsers/unicode_regex/character_set_spec.rb +36 -0
  653. data/spec/parsers/unicode_regex/literal_spec.rb +34 -0
  654. data/spec/parsers/unicode_regex/unicode_string_spec.rb +22 -0
  655. data/spec/parsers/unicode_regex_parser_spec.rb +86 -0
  656. data/spec/readme_spec.rb +8 -269
  657. data/spec/shared/break_iterator_spec.rb +72 -0
  658. data/spec/shared/calendar_spec.rb +5 -4
  659. data/spec/shared/casefolder_spec.rb +30 -0
  660. data/spec/shared/casefolding.txt +251 -0
  661. data/spec/shared/casefolding_expected.txt +251 -0
  662. data/spec/shared/code_point_spec.rb +44 -14
  663. data/spec/shared/numbering_system_spec.rb +41 -0
  664. data/spec/shared/territories_spec.rb +14 -6
  665. data/spec/shared/unicode_regex_spec.rb +203 -0
  666. data/spec/spec_helper.rb +17 -0
  667. data/spec/tokenizers/calendars/date_tokenizer_spec.rb +26 -30
  668. data/spec/tokenizers/calendars/datetime_tokenizer_spec.rb +11 -90
  669. data/spec/tokenizers/calendars/time_tokenizer_spec.rb +5 -5
  670. data/spec/tokenizers/calendars/timespan_tokenizer_spec.rb +17 -7
  671. data/spec/tokenizers/numbers/number_tokenizer_spec.rb +28 -27
  672. data/spec/tokenizers/segmentation/segmentation_tokenizer_spec.rb +40 -0
  673. data/spec/tokenizers/unicode_regex/unicode_regex_tokenizer_spec.rb +190 -0
  674. data/spec/utils/range_set_spec.rb +171 -0
  675. data/spec/utils/yaml/yaml_spec.rb +62 -51
  676. data/twitter_cldr.gemspec +1 -1
  677. metadata +199 -30
  678. data/lib/twitter_cldr/formatters/base.rb +0 -47
  679. data/lib/twitter_cldr/formatters/calendars/date_formatter.rb +0 -19
  680. data/lib/twitter_cldr/formatters/calendars/time_formatter.rb +0 -19
  681. data/lib/twitter_cldr/normalization/base.rb +0 -37
  682. data/lib/twitter_cldr/normalization/hangul.rb +0 -79
  683. data/lib/twitter_cldr/normalization/nfc.rb +0 -24
  684. data/lib/twitter_cldr/normalization/nfd.rb +0 -26
  685. data/lib/twitter_cldr/normalization/nfkc.rb +0 -114
  686. data/lib/twitter_cldr/normalization/nfkd.rb +0 -120
  687. data/lib/twitter_cldr/normalization/quick_check.rb +0 -41
  688. data/lib/twitter_cldr/tokenizers/base.rb +0 -169
  689. data/lib/twitter_cldr/tokenizers/calendars/datetime_tokenizer.rb +0 -131
  690. data/lib/twitter_cldr/utils/territories.rb +0 -56
  691. data/spec/formatters/base_spec.rb +0 -18
  692. data/spec/formatters/calendars/timespan_formatter_spec.rb +0 -112
  693. data/spec/normalization/NormalizationTestShort.txt +0 -602
  694. data/spec/normalization/base_spec.rb +0 -16
  695. data/spec/normalization/hangul_spec.rb +0 -42
  696. data/spec/normalization/normalization_spec.rb +0 -113
  697. data/spec/tokenizers/base_spec.rb +0 -259
  698. data/spec/utils/territories_spec.rb +0 -16
@@ -1,922 +1,953 @@
1
- ---
2
- :es:
3
- :currencies:
4
- :ADP:
5
- :one: peseta andorrana
6
- :other: pesetas andorranas
7
- :AED:
8
- :one: dirham de los Emiratos Árabes Unidos
9
- :other: dirhams de los Emiratos Árabes Unidos
10
- :AFA:
11
- :one: afgani (1927-2002)
12
- :other: Afghan afghanis (1927-2002)
13
- :AFN:
14
- :one: afgani afgano
15
- :other: afganis afganos
16
- :symbol: Af
17
- :ALK:
18
- :one: Albanian lek (1946-1965)
19
- :other: Albanian lekë (1946-1965)
20
- :ALL:
21
- :one: lek albanés
22
- :other: lekë albaneses
23
- :AMD:
24
- :one: dram armenio
25
- :other: dram armenios
26
- :ANG:
27
- :one: florín de las Antillas Neerlandesas
28
- :other: florines de las Antillas Neerlandesas
29
- :symbol: NAf.
30
- :AOA:
31
- :one: kwanza angoleño
32
- :other: kwanzas angoleños
33
- :symbol: Kz
34
- :AOK:
35
- :one: kwanza angoleño (1977-1990)
36
- :other: Angolan kwanzas (1977-1991)
37
- :AON:
38
- :one: nuevo kwanza angoleño (1990-2000)
39
- :other: Angolan new kwanzas (1990-2000)
40
- :AOR:
41
- :one: kwanza reajustado angoleño (1995-1999)
42
- :other: Angolan readjusted kwanzas (1995-1999)
43
- :ARA:
44
- :one: austral argentino
45
- :other: australes argentinos
46
- :ARL:
47
- :one: Argentine peso ley (1970-1983)
48
- :other: Argentine pesos ley (1970-1983)
49
- :ARM:
50
- :one: Argentine peso (1881-1970)
51
- :other: Argentine pesos (1881-1970)
52
- :ARP:
53
- :one: peso argentino (ARP)
54
- :other: pesos argentinos (ARP)
55
- :ARS:
56
- :one: peso argentino
57
- :other: pesos argentinos
58
- :symbol: AR$
59
- :ATS:
60
- :one: chelín austriaco
61
- :other: chelines austriacos
62
- :AUD:
63
- :one: dólar australiano
64
- :other: dólares australianos
65
- :symbol: AU$
66
- :AWG:
67
- :one: florín de Aruba
68
- :other: florines de Aruba
69
- :symbol: Afl.
70
- :AZM:
71
- :one: manat azerí (1993-2006)
72
- :other: Azerbaijani manats (1993-2006)
73
- :AZN:
74
- :one: manat azerí
75
- :other: manat azeríes
76
- :symbol: man.
77
- :BAD:
78
- :one: dinar bosnio
79
- :other: dinares bosnios
80
- :BAM:
81
- :one: marco convertible de Bosnia-Herzegovina
82
- :other: marcos convertibles de Bosnia-Herzegovina
83
- :BAN:
84
- :one: Bosnia-Herzegovina new dinar (1994-1997)
85
- :other: Bosnia-Herzegovina new dinars (1994-1997)
86
- :BBD:
87
- :one: dólar de Barbados
88
- :other: dólares de Barbados
89
- :BDT:
90
- :one: taka de Bangladesh
91
- :other: taka de Bangladesh
92
- :BEC:
93
- :one: franco belga (convertible)
94
- :other: francos belgas (convertibles)
95
- :BEF:
96
- :one: franco belga
97
- :other: francos belgas
98
- :BEL:
99
- :one: franco belga (financiero)
100
- :other: francos belgas (financieros)
101
- :BGL:
102
- :one: lev fuerte búlgaro
103
- :other: leva fuertes búlgaros
104
- :BGM:
105
- :one: Bulgarian socialist lev
106
- :other: Bulgarian socialist leva
107
- :BGN:
108
- :one: nuevo lev búlgaro
109
- :other: levas búlgaras
110
- :BGO:
111
- :one: Bulgarian lev (1879-1952)
112
- :other: Bulgarian leva (1879-1952)
113
- :BHD:
114
- :one: dinar bahreiní
115
- :other: dinares bahreiníes
116
- :BIF:
117
- :one: franco de Burundi
118
- :other: francos de Burundi
119
- :BMD:
120
- :one: dólar de Bermudas
121
- :other: dólares de Bermudas
122
- :BND:
123
- :one: dólar de Brunéi
124
- :other: dólares de Brunéi
125
- :BOB:
126
- :one: boliviano
127
- :other: bolivianos
128
- :BOL:
129
- :one: Bolivian boliviano (1863-1963)
130
- :other: Bolivian bolivianos (1863-1963)
131
- :BOP:
132
- :one: peso boliviano
133
- :other: pesos bolivianos
134
- :BOV:
135
- :one: MVDOL boliviano
136
- :other: MVDOL bolivianos
137
- :BRB:
138
- :one: nuevo cruzado brasileño (BRB)
139
- :other: nuevos cruzados brasileños (BRB)
140
- :BRC:
141
- :one: cruzado brasileño
142
- :other: cruzados brasileños
143
- :BRE:
144
- :one: cruceiro brasileño (BRE)
145
- :other: cruceiros brasileños (BRE)
146
- :BRL:
147
- :one: real brasileño
148
- :other: reales brasileños
149
- :symbol: R$
150
- :BRN:
151
- :one: nuevo cruzado brasileño
152
- :other: nuevos cruzados brasileños
153
- :BRR:
154
- :one: cruceiro brasileño
155
- :other: cruceiros brasileños
156
- :BRZ:
157
- :one: Brazilian cruzeiro (1942-1967)
158
- :other: Brazilian cruzeiros (1942-1967)
159
- :BSD:
160
- :one: dólar de las Bahamas
161
- :other: dólares de las Bahamas
162
- :BTN:
163
- :one: ngultrum butanés
164
- :other: ngultrum butaneses
165
- :BUK:
166
- :one: kyat birmano
167
- :other: kyat birmanos
168
- :BWP:
169
- :one: pula botsuana
170
- :other: pula botsuanas
171
- :BYB:
172
- :one: nuevo rublo bielorruso
173
- :other: nuevos rublos bielorrusos
174
- :BYR:
175
- :one: rublo bielorruso
176
- :other: rublos bielorrusos
177
- :BZD:
178
- :one: dólar de Belice
179
- :other: dólares de Belice
180
- :CAD:
181
- :one: dólar canadiense
182
- :other: dólares canadienses
183
- :symbol: CA$
184
- :CDF:
185
- :one: franco congoleño
186
- :other: francos congoleños
187
- :CHE:
188
- :one: euro WIR
189
- :other: euros WIR
190
- :CHF:
191
- :one: franco suizo
192
- :other: francos suizos
193
- :CHW:
194
- :one: franco WIR
195
- :other: francos WIR
196
- :CLE:
197
- :one: Chilean escudo
198
- :other: Chilean escudos
199
- :CLF:
200
- :one: unidad de fomento chilena
201
- :other: unidades de fomento chilenas
202
- :CLP:
203
- :one: peso chileno
204
- :other: pesos chilenos
205
- :CNX:
206
- :one: Chinese People’s Bank dollar
207
- :other: Chinese People’s Bank dollars
208
- :CNY:
209
- :one: yuan chino
210
- :other: yuanes chinos
211
- :symbol: CN¥
212
- :COP:
213
- :one: peso colombiano
214
- :other: pesos colombianos
215
- :COU:
216
- :one: unidad de valor real
217
- :other: unidades de valor reales
218
- :CRC:
219
- :one: colón costarricense
220
- :other: colones costarricenses
221
- :CSD:
222
- :one: antiguo dinar serbio
223
- :other: antiguos dinares serbios
224
- :CSK:
225
- :one: corona fuerte checoslovaca
226
- :other: coronas fuertes checoslovacas
227
- :CUC:
228
- :one: peso cubano convertible
229
- :other: pesos cubanos convertibles
230
- :CUP:
231
- :one: peso cubano
232
- :other: pesos cubanos
233
- :CVE:
234
- :one: escudo de Cabo Verde
235
- :other: escudos de Cabo Verde
236
- :CYP:
237
- :one: libra chipriota
238
- :other: libras chipriotas
239
- :CZK:
240
- :one: corona checa
241
- :other: coronas checas
242
- :DDM:
243
- :one: marco de la República Democrática Alemana
244
- :other: marcos de la República Democrática Alemana
245
- :DEM:
246
- :one: marco alemán
247
- :other: marcos alemanes
248
- :DJF:
249
- :one: franco de Yibuti
250
- :other: francos de Yibuti
251
- :DKK:
252
- :one: corona danesa
253
- :other: coronas danesas
254
- :DOP:
255
- :one: peso dominicano
256
- :other: pesos dominicanos
257
- :DZD:
258
- :one: dinar argelino
259
- :other: dinares argelinos
260
- :ECS:
261
- :one: sucre ecuatoriano
262
- :other: sucres ecuatorianos
263
- :ECV:
264
- :one: unidad de valor constante (UVC) ecuatoriana
265
- :other: unidades de valor constante (UVC) ecuatorianas
266
- :EEK:
267
- :one: corona estonia
268
- :other: coronas estonias
269
- :EGP:
270
- :one: libra egipcia
271
- :other: libras egipcias
272
- :ERN:
273
- :one: nakfa eritreo
274
- :other: nakfas eritreos
275
- :ESA:
276
- :one: peseta española (cuenta A)
277
- :other: pesetas españolas (cuenta A)
278
- :ESB:
279
- :one: peseta española (cuenta convertible)
280
- :other: pesetas españolas (cuenta convertible)
281
- :ESP:
282
- :one: peseta española
283
- :other: pesetas españolas
284
- :symbol:
285
- :ETB:
286
- :one: birr etíope
287
- :other: birrs etíopes
288
- :EUR:
289
- :one: euro
290
- :other: euros
291
- :symbol:
292
- :FIM:
293
- :one: marco finlandés
294
- :other: marcos finlandeses
295
- :FJD:
296
- :one: dólar de las Islas Fiyi
297
- :other: dólares de las Islas Fiyi
298
- :FKP:
299
- :one: libra de las Islas Malvinas
300
- :other: libras de las Islas Malvinas
301
- :FRF:
302
- :one: franco francés
303
- :other: francos franceses
304
- :GBP:
305
- :one: libra esterlina británica
306
- :other: libras esterlinas británicas
307
- :symbol: £
308
- :GEK:
309
- :one: kupon larit georgiano
310
- :other: Georgian kupon larits
311
- :GEL:
312
- :one: lari georgiano
313
- :other: laris georgianos
314
- :GHC:
315
- :one: cedi ghanés (1979-2007)
316
- :other: Ghanaian cedis (1979-2007)
317
- :GHS:
318
- :one: cedi ghanés
319
- :other: cedis ghaneses
320
- :GIP:
321
- :one: libra gibraltareña
322
- :other: libras gibraltareñas
323
- :GMD:
324
- :one: dalasi gambiano
325
- :other: dalasis gambianos
326
- :GNF:
327
- :one: franco guineano
328
- :other: francos guineanos
329
- :GNS:
330
- :one: syli guineano
331
- :other: Guinean sylis
332
- :GQE:
333
- :one: ekuele de Guinea Ecuatorial
334
- :other: ekueles de Guinea Ecuatorial
335
- :GRD:
336
- :one: dracma griego
337
- :other: dracmas griegos
338
- :GTQ:
339
- :one: quetzal guatemalteco
340
- :other: quetzales guatemaltecos
341
- :GWE:
342
- :one: escudo de Guinea Portuguesa
343
- :other: Portuguese Guinea escudos
344
- :GWP:
345
- :one: peso de Guinea-Bissáu
346
- :other: Guinea-Bissau pesos
347
- :GYD:
348
- :one: dólar guyanés
349
- :other: dólares guyaneses
350
- :HKD:
351
- :one: dólar de Hong Kong
352
- :other: dólares de Hong Kong
353
- :symbol: HK$
354
- :HNL:
355
- :one: lempira hondureño
356
- :other: lempiras hondureños
357
- :HRD:
358
- :one: dinar croata
359
- :other: dinares croatas
360
- :HRK:
361
- :one: kuna croata
362
- :other: kunas croatas
363
- :HTG:
364
- :one: gourde haitiano
365
- :other: gourdes haitianos
366
- :HUF:
367
- :one: florín húngaro
368
- :other: florines húngaros
369
- :IDR:
370
- :one: rupia indonesia
371
- :other: rupias indonesias
372
- :IEP:
373
- :one: libra irlandesa
374
- :other: libras irlandesas
375
- :ILP:
376
- :one: libra israelí
377
- :other: libras israelíes
378
- :ILR:
379
- :one: Israeli sheqel (1980-1985)
380
- :other: Israeli sheqels (1980-1985)
381
- :ILS:
382
- :one: nuevo sheqel israelí
383
- :other: nuevos sheqels israelíes
384
- :symbol:
385
- :INR:
386
- :one: rupia india
387
- :other: rupias indias
388
- :symbol:
389
- :IQD:
390
- :one: dinar iraquí
391
- :other: dinares iraquíes
392
- :IRR:
393
- :one: rial iraní
394
- :other: riales iraníes
395
- :ISJ:
396
- :one: Icelandic króna (1918-1981)
397
- :other: Icelandic krónur (1918-1981)
398
- :ISK:
399
- :one: corona islandesa
400
- :other: coronas islandesas
401
- :ITL:
402
- :one: lira italiana
403
- :other: liras italianas
404
- :JMD:
405
- :one: dólar de Jamaica
406
- :other: dólares de Jamaica
407
- :JOD:
408
- :one: dinar jordano
409
- :other: dinares jordanos
410
- :JPY:
411
- :one: yen japonés
412
- :other: yenes japoneses
413
- :symbol: ¥
414
- :KES:
415
- :one: chelín keniata
416
- :other: chelines keniatas
417
- :KGS:
418
- :one: som kirguís
419
- :other: soms kirguises
420
- :KHR:
421
- :one: riel camboyano
422
- :other: rieles camboyanos
423
- :KMF:
424
- :one: franco comorense
425
- :other: francos comorenses
426
- :KPW:
427
- :one: won norcoreano
428
- :other: wons norcoreanos
429
- :KRH:
430
- :one: South Korean hwan (1953-1962)
431
- :other: South Korean hwan (1953-1962)
432
- :KRO:
433
- :one: South Korean won (1945-1953)
434
- :other: South Korean won (1945-1953)
435
- :KRW:
436
- :one: won surcoreano
437
- :other: wons surcoreanos
438
- :symbol:
439
- :KWD:
440
- :one: dinar kuwaití
441
- :other: dinares kuwaitíes
442
- :KYD:
443
- :one: dólar de las Islas Caimán
444
- :other: dólares de las Islas Caimán
445
- :KZT:
446
- :one: tenge kazako
447
- :other: tenges kazakos
448
- :LAK:
449
- :one: kip laosiano
450
- :other: kips laosianos
451
- :LBP:
452
- :one: libra libanesa
453
- :other: libras libanesas
454
- :LKR:
455
- :one: rupia de Sri Lanka
456
- :other: rupias de Sri Lanka
457
- :LRD:
458
- :one: dólar liberiano
459
- :other: dólares liberianos
460
- :LSL:
461
- :one: loti lesothense
462
- :other: Lesotho lotis
463
- :LTL:
464
- :one: litas lituana
465
- :other: litas lituanas
466
- :LTT:
467
- :one: talonas lituana
468
- :other: talonas lituanas
469
- :LUC:
470
- :one: franco convertible luxemburgués
471
- :other: francos convertibles luxemburgueses
472
- :LUF:
473
- :one: franco luxemburgués
474
- :other: francos luxemburgueses
475
- :LUL:
476
- :one: franco financiero luxemburgués
477
- :other: francos financieros luxemburgueses
478
- :LVL:
479
- :one: lats letón
480
- :other: lats letones
481
- :LVR:
482
- :one: rublo letón
483
- :other: rublos letones
484
- :LYD:
485
- :one: dinar libio
486
- :other: dinares libios
487
- :MAD:
488
- :one: dirham marroquí
489
- :other: dirhams marroquíes
490
- :MAF:
491
- :one: franco marroquí
492
- :other: francos marroquíes
493
- :MCF:
494
- :one: Monegasque franc
495
- :other: Monegasque francs
496
- :MDC:
497
- :one: Moldovan cupon
498
- :other: Moldovan cupon
499
- :MDL:
500
- :one: leu moldavo
501
- :other: leus moldavos
502
- :MGA:
503
- :one: ariary malgache
504
- :other: ariarys malgaches
505
- :MGF:
506
- :one: franco malgache
507
- :other: Malagasy francs
508
- :MKD:
509
- :one: dinar macedonio
510
- :other: dinares macedonios
511
- :MKN:
512
- :one: Macedonian denar (1992-1993)
513
- :other: Macedonian denari (1992-1993)
514
- :MLF:
515
- :one: franco malí
516
- :other: Malian francs
517
- :MMK:
518
- :one: kyat de Myanmar
519
- :other: kyats de Myanmar
520
- :MNT:
521
- :one: tugrik mongol
522
- :other: tugriks mongoles
523
- :MOP:
524
- :one: pataca de Macao
525
- :other: patacas de Macao
526
- :MRO:
527
- :one: ouguiya mauritano
528
- :other: ouguiyas mauritanos
529
- :MTL:
530
- :one: lira maltesa
531
- :other: liras maltesas
532
- :MTP:
533
- :one: libra maltesa
534
- :other: libras maltesas
535
- :MUR:
536
- :one: rupia mauriciana
537
- :other: rupias mauricianas
538
- :MVP:
539
- :one: Maldivian rupee
540
- :other: Maldivian rupees
541
- :MVR:
542
- :one: rufiyaa de Maldivas
543
- :other: rufiyaas de Maldivas
544
- :MWK:
545
- :one: kwacha de Malawi
546
- :other: kwachas de Malawi
547
- :MXN:
548
- :one: peso mexicano
549
- :other: pesos mexicanos
550
- :symbol: MX$
551
- :MXP:
552
- :one: peso de plata mexicano (MXP)
553
- :other: pesos de plata mexicanos (MXP)
554
- :MXV:
555
- :one: unidad de inversión (UDI) mexicana
556
- :other: unidades de inversión (UDI) mexicanas
557
- :MYR:
558
- :one: ringgit malasio
559
- :other: ringgits malasios
560
- :MZE:
561
- :one: escudo mozambiqueño
562
- :other: escudos mozambiqueños
563
- :MZM:
564
- :one: antiguo metical mozambiqueño
565
- :other: Mozambican meticals (1980-2006)
566
- :MZN:
567
- :one: metical mozambiqueño
568
- :other: meticales mozambiqueños
569
- :NAD:
570
- :one: dólar de Namibia
571
- :other: dólares de Namibia
572
- :NGN:
573
- :one: naira nigeriano
574
- :other: nairas nigerianos
575
- :NIC:
576
- :one: córdoba nicaragüense (1988-1991)
577
- :other: córdobas nicaragüenses (1988-1991)
578
- :NIO:
579
- :one: córdoba nicaragüense
580
- :other: córdobas nicaragüenses
581
- :NLG:
582
- :one: florín neerlandés
583
- :other: florines neerlandeses
584
- :NOK:
585
- :one: corona noruega
586
- :other: coronas noruegas
587
- :NPR:
588
- :one: rupia nepalesa
589
- :other: rupias nepalesas
590
- :NZD:
591
- :one: dólar neozelandés
592
- :other: dólares neozelandeses
593
- :symbol: NZ$
594
- :OMR:
595
- :one: rial omaní
596
- :other: riales omaníes
597
- :PAB:
598
- :one: balboa panameño
599
- :other: balboas panameños
600
- :PEI:
601
- :one: inti peruano
602
- :other: intis peruanos
603
- :PEN:
604
- :one: nuevo sol peruano
605
- :other: nuevos soles peruanos
606
- :PES:
607
- :one: sol peruano
608
- :other: soles peruanos
609
- :PGK:
610
- :one: kina de Papúa Nueva Guinea
611
- :other: kinas de Papúa Nueva Guinea
612
- :PHP:
613
- :one: peso filipino
614
- :other: pesos filipinos
615
- :PKR:
616
- :one: rupia pakistaní
617
- :other: rupias pakistaníes
618
- :PLN:
619
- :one: zloty polaco
620
- :other: zlotys polacos
621
- :PLZ:
622
- :one: zloty polaco (PLZ)
623
- :other: zlotys polacos (PLZ)
624
- :PTE:
625
- :one: escudo portugués
626
- :other: escudos portugueses
627
- :PYG:
628
- :one: guaraní paraguayo
629
- :other: guaraníes paraguayos
630
- :QAR:
631
- :one: riyal de Qatar
632
- :other: riales de Qatar
633
- :RHD:
634
- :one: dólar rodesiano
635
- :other: Rhodesian dollars
636
- :ROL:
637
- :one: antiguo leu rumano
638
- :other: antiguos lei rumanos
639
- :RON:
640
- :one: leu rumano
641
- :other: lei rumanos
642
- :RSD:
643
- :one: dinar serbio
644
- :other: dinares serbios
645
- :RUB:
646
- :one: rublo ruso
647
- :other: rublos rusos
648
- :RUR:
649
- :one: rublo ruso (RUR)
650
- :other: rublos rusos (RUR)
651
- :RWF:
652
- :one: franco ruandés
653
- :other: francos ruandeses
654
- :SAR:
655
- :one: riyal saudí
656
- :other: riales saudíes
657
- :SBD:
658
- :one: dólar de las Islas Salomón
659
- :other: dólares de las Islas Salomón
660
- :SCR:
661
- :one: rupia de Seychelles
662
- :other: rupias de Seychelles
663
- :SDD:
664
- :one: dinar sudanés
665
- :other: dinares sudaneses
666
- :SDG:
667
- :one: libra sudanesa
668
- :other: libras sudanesas
669
- :SDP:
670
- :one: libra sudanesa antigua
671
- :other: libras sudanesas antiguas
672
- :SEK:
673
- :one: corona sueca
674
- :other: coronas suecas
675
- :SGD:
676
- :one: dólar singapurense
677
- :other: dólares singapurenses
678
- :SHP:
679
- :one: libra de Santa Elena
680
- :other: libras de Santa Elena
681
- :SIT:
682
- :one: tólar esloveno
683
- :other: tólares eslovenos
684
- :SKK:
685
- :one: corona eslovaca
686
- :other: coronas eslovacas
687
- :SLL:
688
- :one: leone de Sierra Leona
689
- :other: leones de Sierra Leona
690
- :SOS:
691
- :one: chelín somalí
692
- :other: chelines somalíes
693
- :SRD:
694
- :one: dólar surinamés
695
- :other: dólares surinameses
696
- :SRG:
697
- :one: florín surinamés
698
- :other: Surinamese guilders
699
- :SSP:
700
- :one: libra sursudanesa
701
- :other: libras sursudanesas
702
- :STD:
703
- :one: dobra de Santo Tomé y Príncipe
704
- :other: dobras de Santo Tomé y Príncipe
705
- :SUR:
706
- :one: rublo soviético
707
- :other: rublos soviéticos
708
- :SVC:
709
- :one: colón salvadoreño
710
- :other: colones salvadoreños
711
- :SYP:
712
- :one: libra siria
713
- :other: libras sirias
714
- :SZL:
715
- :one: lilangeni suazi
716
- :other: lilangenis suazis
717
- :THB:
718
- :one: baht tailandés
719
- :other: bahts tailandeses
720
- :symbol: ฿
721
- :TJR:
722
- :one: rublo tayiko
723
- :other: Tajikistani rubles
724
- :TJS:
725
- :one: somoni tayiko
726
- :other: somonis tayikos
727
- :TMM:
728
- :one: manat turcomano (1993-2009)
729
- :other: manats turcomanos (1993-2009)
730
- :TMT:
731
- :one: manat turcomano
732
- :other: manats turcomanos
733
- :TND:
734
- :one: dinar tunecino
735
- :other: dinares tunecinos
736
- :TOP:
737
- :one: paʻanga tongano
738
- :other: paʻangas tonganos
739
- :TPE:
740
- :one: escudo timorense
741
- :other: Timorese escudos
742
- :TRL:
743
- :one: lira turca (1922-2005)
744
- :other: liras turcas (1922-2005)
745
- :TRY:
746
- :one: lira turca
747
- :other: liras turcas
748
- :TTD:
749
- :one: dólar de Trinidad y Tobago
750
- :other: dólares de Trinidad y Tobago
751
- :TWD:
752
- :one: nuevo dólar taiwanés
753
- :other: nuevos dólares taiwaneses
754
- :symbol: NT$
755
- :TZS:
756
- :one: chelín tanzano
757
- :other: chelines tanzanos
758
- :UAH:
759
- :one: grivnia ucraniana
760
- :other: grivnias ucranianas
761
- :UAK:
762
- :one: karbovanet ucraniano
763
- :other: karbovanets ucranianos
764
- :UGS:
765
- :one: chelín ugandés (1966-1987)
766
- :other: Ugandan shillings (1966-1987)
767
- :UGX:
768
- :one: chelín ugandés
769
- :other: chelines ugandeses
770
- :USD:
771
- :one: dólar estadounidense
772
- :other: dólares estadounidenses
773
- :symbol: $
774
- :USN:
775
- :one: dólar estadounidense (día siguiente)
776
- :other: dólares estadounidenses (día siguiente)
777
- :USS:
778
- :one: dólar estadounidense (mismo día)
779
- :other: dólares estadounidenses (mismo día)
780
- :UYI:
781
- :one: peso uruguayo en unidades indexadas
782
- :other: pesos uruguayos en unidades indexadas
783
- :UYP:
784
- :one: peso uruguayo (UYP)
785
- :other: pesos uruguayos (UYP)
786
- :UYU:
787
- :one: peso uruguayo
788
- :other: pesos uruguayos
789
- :UZS:
790
- :one: som uzbeko
791
- :other: soms uzbekos
792
- :VEB:
793
- :one: bolívar venezolano (1871-2008)
794
- :other: bolívares venezolanos (1871-2008)
795
- :VEF:
796
- :one: bolívar venezolano
797
- :other: bolívares venezolanos
798
- :VND:
799
- :one: dong vietnamita
800
- :other: dongs vietnamitas
801
- :symbol:
802
- :VNN:
803
- :one: Vietnamese dong (1978-1985)
804
- :other: Vietnamese dong (1978-1985)
805
- :VUV:
806
- :one: vatu vanuatuense
807
- :other: vatus vanuatuenses
808
- :WST:
809
- :one: tala samoano
810
- :other: talas samoanos
811
- :XAF:
812
- :one: franco CFA BEAC
813
- :other: francos CFA BEAC
814
- :symbol: FCFA
815
- :XAG:
816
- :one: plata
817
- :other: plata
818
- :XAU:
819
- :one: oro
820
- :other: oro
821
- :XBA:
822
- :one: unidad compuesta europea
823
- :other: unidades compuestas europeas
824
- :XBB:
825
- :one: unidad monetaria europea
826
- :other: unidades monetarias europeas
827
- :XBC:
828
- :one: unidad de cuenta europea (XBC)
829
- :other: unidades de cuenta europeas (XBC)
830
- :XBD:
831
- :one: unidad de cuenta europea (XBD)
832
- :other: unidades de cuenta europeas (XBD)
833
- :XCD:
834
- :one: dólar del Caribe Oriental
835
- :other: dólares del Caribe Oriental
836
- :symbol: EC$
837
- :XDR:
838
- :one: derechos especiales de giro
839
- :other: special drawing rights
840
- :XEU:
841
- :one: unidad de moneda europea
842
- :other: unidades de moneda europeas
843
- :XFO:
844
- :one: franco oro francés
845
- :other: francos oro franceses
846
- :XFU:
847
- :one: franco UIC francés
848
- :other: francos UIC franceses
849
- :XOF:
850
- :one: franco CFA BCEAO
851
- :other: francos CFA BCEAO
852
- :symbol: CFA
853
- :XPD:
854
- :one: paladio
855
- :other: paladio
856
- :XPF:
857
- :one: franco CFP
858
- :other: francos CFP
859
- :symbol: CFPF
860
- :XPT:
861
- :one: platino
862
- :other: platino
863
- :XRE:
864
- :one: fondos RINET
865
- :other: RINET Funds units
866
- :XSU:
867
- :one: Sucre
868
- :other: Sucres
869
- :XTS:
870
- :one: código reservado para pruebas
871
- :other: Testing Currency units
872
- :XUA:
873
- :one: ADB unit of account
874
- :other: ADB units of account
875
- :XXX:
876
- :one: moneda desconocida/no válida
877
- :other: monedas desconocidas/no válidas
878
- :YDD:
879
- :one: dinar yemení
880
- :other: Yemeni dinars
881
- :YER:
882
- :one: rial yemení
883
- :other: riales yemeníes
884
- :YUD:
885
- :one: dinar fuerte yugoslavo
886
- :other: Yugoslavian hard dinars (1966-1990)
887
- :YUM:
888
- :one: super dinar yugoslavo
889
- :other: Yugoslavian new dinars (1994-2002)
890
- :YUN:
891
- :one: dinar convertible yugoslavo
892
- :other: dinares convertibles yugoslavos
893
- :YUR:
894
- :one: Yugoslavian reformed dinar (1992-1993)
895
- :other: Yugoslavian reformed dinars (1992-1993)
896
- :ZAL:
897
- :one: rand sudafricano (financiero)
898
- :other: South African rands (financial)
899
- :ZAR:
900
- :one: rand sudafricano
901
- :other: rands sudafricanos
902
- :ZMK:
903
- :one: kwacha zambiano (1968-2012)
904
- :other: kwachas zambianos (1968-2012)
905
- :ZMW:
906
- :one: kwacha zambiano
907
- :other: kwachas zambianos
908
- :ZRN:
909
- :one: nuevo zaire zaireño
910
- :other: Zairean new zaires (1993-1998)
911
- :ZRZ:
912
- :one: zaire zaireño
913
- :other: Zairean zaires (1971-1993)
914
- :ZWD:
915
- :one: dólar de Zimbabue
916
- :other: Zimbabwean dollars (1980-2008)
917
- :ZWL:
918
- :one: dólar zimbabuense
919
- :other: Zimbabwean dollars (2009)
920
- :ZWR:
921
- :one: Zimbabwean dollar (2008)
922
- :other: Zimbabwean dollars (2008)
1
+ ---
2
+ :es:
3
+ :currencies:
4
+ :ADP:
5
+ :one: "peseta andorrana"
6
+ :other: "pesetas andorranas"
7
+ :AED:
8
+ :one: "dírham de los Emiratos Árabes Unidos"
9
+ :other: "dírhams de los Emiratos Árabes Unidos"
10
+ :AFA:
11
+ :one: "afgani (19272002)"
12
+ :other: "Afghan afghanis (19272002)"
13
+ :AFN:
14
+ :one: "afgani afgano"
15
+ :other: "afganis afganos"
16
+ :ALK:
17
+ :one: "Albanian lek (1946–1965)"
18
+ :other: "Albanian lekë (19461965)"
19
+ :ALL:
20
+ :one: "lek albanés"
21
+ :other: "lekë albaneses"
22
+ :AMD:
23
+ :one: "dram armenio"
24
+ :other: "dram armenios"
25
+ :ANG:
26
+ :one: "florín de las Antillas Neerlandesas"
27
+ :other: "florines de las Antillas Neerlandesas"
28
+ :AOA:
29
+ :one: "kwanza angoleño"
30
+ :other: "kwanzas angoleños"
31
+ :AOK:
32
+ :one: "kwanza angoleño (1977–1990)"
33
+ :other: "Angolan kwanzas (1977–1991)"
34
+ :AON:
35
+ :one: "nuevo kwanza angoleño (1990–2000)"
36
+ :other: "Angolan new kwanzas (1990–2000)"
37
+ :AOR:
38
+ :one: "kwanza reajustado angoleño (1995–1999)"
39
+ :other: "Angolan readjusted kwanzas (1995–1999)"
40
+ :ARA:
41
+ :one: "austral argentino"
42
+ :other: "australes argentinos"
43
+ :ARL:
44
+ :one: "Argentine peso ley (1970–1983)"
45
+ :other: "Argentine pesos ley (1970–1983)"
46
+ :ARM:
47
+ :one: "Argentine peso (1881–1970)"
48
+ :other: "Argentine pesos (1881–1970)"
49
+ :ARP:
50
+ :one: "peso argentino (ARP)"
51
+ :other: "pesos argentinos (ARP)"
52
+ :ARS:
53
+ :one: "peso argentino"
54
+ :other: "pesos argentinos"
55
+ :symbol: "AR$"
56
+ :ATS:
57
+ :one: "chelín austriaco"
58
+ :other: "chelines austriacos"
59
+ :AUD:
60
+ :one: "dólar australiano"
61
+ :other: "dólares australianos"
62
+ :symbol: "AU$"
63
+ :AWG:
64
+ :one: "florín de Aruba"
65
+ :other: "florines de Aruba"
66
+ :AZM:
67
+ :one: "manat azerí (1993–2006)"
68
+ :other: "Azerbaijani manats (1993–2006)"
69
+ :AZN:
70
+ :one: "manat azerí"
71
+ :other: "manat azeríes"
72
+ :BAD:
73
+ :one: "dinar bosnio"
74
+ :other: "dinares bosnios"
75
+ :BAM:
76
+ :one: "marco convertible de Bosnia-Herzegovina"
77
+ :other: "marcos convertibles de Bosnia-Herzegovina"
78
+ :BAN:
79
+ :one: "Bosnia-Herzegovina new dinar (1994–1997)"
80
+ :other: "Bosnia-Herzegovina new dinars (1994–1997)"
81
+ :BBD:
82
+ :one: "dólar de Barbados"
83
+ :other: "dólares de Barbados"
84
+ :symbol: "$"
85
+ :BDT:
86
+ :one: "taka de Bangladesh"
87
+ :other: "taka de Bangladesh"
88
+ :symbol: "৳"
89
+ :BEC:
90
+ :one: "franco belga (convertible)"
91
+ :other: "francos belgas (convertibles)"
92
+ :BEF:
93
+ :one: "franco belga"
94
+ :other: "francos belgas"
95
+ :BEL:
96
+ :one: "franco belga (financiero)"
97
+ :other: "francos belgas (financieros)"
98
+ :BGL:
99
+ :one: "lev fuerte búlgaro"
100
+ :other: "leva fuertes búlgaros"
101
+ :BGM:
102
+ :one: "Bulgarian socialist lev"
103
+ :other: "Bulgarian socialist leva"
104
+ :BGN:
105
+ :one: "nuevo lev búlgaro"
106
+ :other: "levas búlgaras"
107
+ :BGO:
108
+ :one: "Bulgarian lev (1879–1952)"
109
+ :other: "Bulgarian leva (1879–1952)"
110
+ :BHD:
111
+ :one: "dinar bahreiní"
112
+ :other: "dinares bahreiníes"
113
+ :BIF:
114
+ :one: "franco de Burundi"
115
+ :other: "francos de Burundi"
116
+ :BMD:
117
+ :one: "dólar de Bermudas"
118
+ :other: "dólares de Bermudas"
119
+ :symbol: "$"
120
+ :BND:
121
+ :one: "dólar de Brunéi"
122
+ :other: "dólares de Brunéi"
123
+ :symbol: "$"
124
+ :BOB:
125
+ :one: "boliviano"
126
+ :other: "bolivianos"
127
+ :BOL:
128
+ :one: "Bolivian boliviano (1863–1963)"
129
+ :other: "Bolivian bolivianos (18631963)"
130
+ :BOP:
131
+ :one: "peso boliviano"
132
+ :other: "pesos bolivianos"
133
+ :BOV:
134
+ :one: "MVDOL boliviano"
135
+ :other: "MVDOL bolivianos"
136
+ :BRB:
137
+ :one: "nuevo cruzado brasileño (BRB)"
138
+ :other: "nuevos cruzados brasileños (BRB)"
139
+ :BRC:
140
+ :one: "cruzado brasileño"
141
+ :other: "cruzados brasileños"
142
+ :BRE:
143
+ :one: "cruceiro brasileño (BRE)"
144
+ :other: "cruceiros brasileños (BRE)"
145
+ :BRL:
146
+ :one: "real brasileño"
147
+ :other: "reales brasileños"
148
+ :symbol: "BRL"
149
+ :BRN:
150
+ :one: "nuevo cruzado brasileño"
151
+ :other: "nuevos cruzados brasileños"
152
+ :BRR:
153
+ :one: "cruceiro brasileño"
154
+ :other: "cruceiros brasileños"
155
+ :BRZ:
156
+ :one: "Brazilian cruzeiro (1942–1967)"
157
+ :other: "Brazilian cruzeiros (19421967)"
158
+ :BSD:
159
+ :one: "dólar de las Bahamas"
160
+ :other: "dólares de las Bahamas"
161
+ :symbol: "$"
162
+ :BTN:
163
+ :one: "ngultrum butanés"
164
+ :other: "ngultrum butaneses"
165
+ :BUK:
166
+ :one: "kyat birmano"
167
+ :other: "kyat birmanos"
168
+ :BWP:
169
+ :one: "pula botsuana"
170
+ :other: "pula botsuanas"
171
+ :BYB:
172
+ :one: "nuevo rublo bielorruso"
173
+ :other: "nuevos rublos bielorrusos"
174
+ :BYR:
175
+ :one: "rublo bielorruso"
176
+ :other: "rublos bielorrusos"
177
+ :symbol: "р."
178
+ :BZD:
179
+ :one: "dólar de Belice"
180
+ :other: "dólares de Belice"
181
+ :symbol: "$"
182
+ :CAD:
183
+ :one: "dólar canadiense"
184
+ :other: "dólares canadienses"
185
+ :symbol: "CA$"
186
+ :CDF:
187
+ :one: "franco congoleño"
188
+ :other: "francos congoleños"
189
+ :CHE:
190
+ :one: "euro WIR"
191
+ :other: "euros WIR"
192
+ :CHF:
193
+ :one: "franco suizo"
194
+ :other: "francos suizos"
195
+ :CHW:
196
+ :one: "franco WIR"
197
+ :other: "francos WIR"
198
+ :CLE:
199
+ :one: "Chilean escudo"
200
+ :other: "Chilean escudos"
201
+ :CLF:
202
+ :one: "unidad de fomento chilena"
203
+ :other: "unidades de fomento chilenas"
204
+ :CLP:
205
+ :one: "peso chileno"
206
+ :other: "pesos chilenos"
207
+ :symbol: "$"
208
+ :CNX:
209
+ :one: "Chinese People’s Bank dollar"
210
+ :other: "Chinese People’s Bank dollars"
211
+ :CNY:
212
+ :one: "yuan chino"
213
+ :other: "yuanes chinos"
214
+ :symbol: "CNY"
215
+ :COP:
216
+ :one: "peso colombiano"
217
+ :other: "pesos colombianos"
218
+ :symbol: "$"
219
+ :COU:
220
+ :one: "unidad de valor real"
221
+ :other: "unidades de valor reales"
222
+ :CRC:
223
+ :one: "colón costarricense"
224
+ :other: "colones costarricenses"
225
+ :symbol: "₡"
226
+ :CSD:
227
+ :one: "antiguo dinar serbio"
228
+ :other: "antiguos dinares serbios"
229
+ :CSK:
230
+ :one: "corona fuerte checoslovaca"
231
+ :other: "coronas fuertes checoslovacas"
232
+ :CUC:
233
+ :one: "peso cubano convertible"
234
+ :other: "pesos cubanos convertibles"
235
+ :CUP:
236
+ :one: "peso cubano"
237
+ :other: "pesos cubanos"
238
+ :symbol: "$"
239
+ :CVE:
240
+ :one: "escudo de Cabo Verde"
241
+ :other: "escudos de Cabo Verde"
242
+ :CYP:
243
+ :one: "libra chipriota"
244
+ :other: "libras chipriotas"
245
+ :CZK:
246
+ :one: "corona checa"
247
+ :other: "coronas checas"
248
+ :DDM:
249
+ :one: "marco de la República Democrática Alemana"
250
+ :other: "marcos de la República Democrática Alemana"
251
+ :DEM:
252
+ :one: "marco alemán"
253
+ :other: "marcos alemanes"
254
+ :DJF:
255
+ :one: "franco de Yibuti"
256
+ :other: "francos de Yibuti"
257
+ :DKK:
258
+ :one: "corona danesa"
259
+ :other: "coronas danesas"
260
+ :DOP:
261
+ :one: "peso dominicano"
262
+ :other: "pesos dominicanos"
263
+ :symbol: "$"
264
+ :DZD:
265
+ :one: "dinar argelino"
266
+ :other: "dinares argelinos"
267
+ :ECS:
268
+ :one: "sucre ecuatoriano"
269
+ :other: "sucres ecuatorianos"
270
+ :ECV:
271
+ :one: "unidad de valor constante (UVC) ecuatoriana"
272
+ :other: "unidades de valor constante (UVC) ecuatorianas"
273
+ :EEK:
274
+ :one: "corona estonia"
275
+ :other: "coronas estonias"
276
+ :EGP:
277
+ :one: "libra egipcia"
278
+ :other: "libras egipcias"
279
+ :ERN:
280
+ :one: "nakfa eritreo"
281
+ :other: "nakfas eritreos"
282
+ :ESA:
283
+ :one: "peseta española (cuenta A)"
284
+ :other: "pesetas españolas (cuenta A)"
285
+ :ESB:
286
+ :one: "peseta española (cuenta convertible)"
287
+ :other: "pesetas españolas (cuenta convertible)"
288
+ :ESP:
289
+ :one: "peseta española"
290
+ :other: "pesetas españolas"
291
+ :symbol: "₧"
292
+ :ETB:
293
+ :one: "birr etíope"
294
+ :other: "birrs etíopes"
295
+ :EUR:
296
+ :one: "euro"
297
+ :other: "euros"
298
+ :symbol: "€"
299
+ :FIM:
300
+ :one: "marco finlandés"
301
+ :other: "marcos finlandeses"
302
+ :FJD:
303
+ :one: "dólar de las Islas Fiyi"
304
+ :other: "dólares de las Islas Fiyi"
305
+ :symbol: "$"
306
+ :FKP:
307
+ :one: "libra de las Islas Malvinas"
308
+ :other: "libras de las Islas Malvinas"
309
+ :FRF:
310
+ :one: "franco francés"
311
+ :other: "francos franceses"
312
+ :GBP:
313
+ :one: "libra esterlina británica"
314
+ :other: "libras esterlinas británicas"
315
+ :symbol: "GBP"
316
+ :GEK:
317
+ :one: "kupon larit georgiano"
318
+ :other: "Georgian kupon larits"
319
+ :GEL:
320
+ :one: "lari georgiano"
321
+ :other: "laris georgianos"
322
+ :GHC:
323
+ :one: "cedi ghanés (1979–2007)"
324
+ :other: "Ghanaian cedis (1979–2007)"
325
+ :GHS:
326
+ :one: "cedi ghanés"
327
+ :other: "cedis ghaneses"
328
+ :symbol: "₵"
329
+ :GIP:
330
+ :one: "libra gibraltareña"
331
+ :other: "libras gibraltareñas"
332
+ :symbol: "£"
333
+ :GMD:
334
+ :one: "dalasi gambiano"
335
+ :other: "dalasis gambianos"
336
+ :GNF:
337
+ :one: "franco guineano"
338
+ :other: "francos guineanos"
339
+ :GNS:
340
+ :one: "syli guineano"
341
+ :other: "Guinean sylis"
342
+ :GQE:
343
+ :one: "ekuele de Guinea Ecuatorial"
344
+ :other: "ekueles de Guinea Ecuatorial"
345
+ :GRD:
346
+ :one: "dracma griego"
347
+ :other: "dracmas griegos"
348
+ :GTQ:
349
+ :one: "quetzal guatemalteco"
350
+ :other: "quetzales guatemaltecos"
351
+ :GWE:
352
+ :one: "escudo de Guinea Portuguesa"
353
+ :other: "Portuguese Guinea escudos"
354
+ :GWP:
355
+ :one: "peso de Guinea-Bissáu"
356
+ :other: "Guinea-Bissau pesos"
357
+ :GYD:
358
+ :one: "dólar guyanés"
359
+ :other: "dólares guyaneses"
360
+ :symbol: "$"
361
+ :HKD:
362
+ :one: "dólar de Hong Kong"
363
+ :other: "dólares de Hong Kong"
364
+ :symbol: "HKD"
365
+ :HNL:
366
+ :one: "lempira hondureño"
367
+ :other: "lempiras hondureños"
368
+ :HRD:
369
+ :one: "dinar croata"
370
+ :other: "dinares croatas"
371
+ :HRK:
372
+ :one: "kuna croata"
373
+ :other: "kunas croatas"
374
+ :HTG:
375
+ :one: "gourde haitiano"
376
+ :other: "gourdes haitianos"
377
+ :HUF:
378
+ :one: "florín húngaro"
379
+ :other: "florines húngaros"
380
+ :IDR:
381
+ :one: "rupia indonesia"
382
+ :other: "rupias indonesias"
383
+ :IEP:
384
+ :one: "libra irlandesa"
385
+ :other: "libras irlandesas"
386
+ :ILP:
387
+ :one: "libra israelí"
388
+ :other: "libras israelíes"
389
+ :ILR:
390
+ :one: "Israeli sheqel (1980–1985)"
391
+ :other: "Israeli sheqels (1980–1985)"
392
+ :ILS:
393
+ :one: "nuevo sheqel israelí"
394
+ :other: "nuevos sheqels israelíes"
395
+ :symbol: "ILS"
396
+ :INR:
397
+ :one: "rupia india"
398
+ :other: "rupias indias"
399
+ :symbol: "INR"
400
+ :IQD:
401
+ :one: "dinar iraquí"
402
+ :other: "dinares iraquíes"
403
+ :IRR:
404
+ :one: "rial iraní"
405
+ :other: "riales iraníes"
406
+ :ISJ:
407
+ :one: "Icelandic króna (1918–1981)"
408
+ :other: "Icelandic krónur (1918–1981)"
409
+ :ISK:
410
+ :one: "corona islandesa"
411
+ :other: "coronas islandesas"
412
+ :ITL:
413
+ :one: "lira italiana"
414
+ :other: "liras italianas"
415
+ :JMD:
416
+ :one: "dólar de Jamaica"
417
+ :other: "dólares de Jamaica"
418
+ :symbol: "$"
419
+ :JOD:
420
+ :one: "dinar jordano"
421
+ :other: "dinares jordanos"
422
+ :JPY:
423
+ :one: "yen japonés"
424
+ :other: "yenes japoneses"
425
+ :symbol: "JPY"
426
+ :KES:
427
+ :one: "chelín keniata"
428
+ :other: "chelines keniatas"
429
+ :KGS:
430
+ :one: "som kirguís"
431
+ :other: "soms kirguises"
432
+ :KHR:
433
+ :one: "riel camboyano"
434
+ :other: "rieles camboyanos"
435
+ :symbol: "៛"
436
+ :KMF:
437
+ :one: "franco comorense"
438
+ :other: "francos comorenses"
439
+ :KPW:
440
+ :one: "won norcoreano"
441
+ :other: "wons norcoreanos"
442
+ :KRH:
443
+ :one: "South Korean hwan (1953–1962)"
444
+ :other: "South Korean hwan (1953–1962)"
445
+ :KRO:
446
+ :one: "South Korean won (1945–1953)"
447
+ :other: "South Korean won (1945–1953)"
448
+ :KRW:
449
+ :one: "won surcoreano"
450
+ :other: "wons surcoreanos"
451
+ :symbol: "KRW"
452
+ :KWD:
453
+ :one: "dinar kuwaití"
454
+ :other: "dinares kuwaitíes"
455
+ :KYD:
456
+ :one: "dólar de las Islas Caimán"
457
+ :other: "dólares de las Islas Caimán"
458
+ :symbol: "$"
459
+ :KZT:
460
+ :one: "tenge kazako"
461
+ :other: "tenges kazakos"
462
+ :symbol: "₸"
463
+ :LAK:
464
+ :one: "kip laosiano"
465
+ :other: "kips laosianos"
466
+ :symbol: "₭"
467
+ :LBP:
468
+ :one: "libra libanesa"
469
+ :other: "libras libanesas"
470
+ :LKR:
471
+ :one: "rupia de Sri Lanka"
472
+ :other: "rupias de Sri Lanka"
473
+ :LRD:
474
+ :one: "dólar liberiano"
475
+ :other: "dólares liberianos"
476
+ :symbol: "$"
477
+ :LSL:
478
+ :one: "loti lesothense"
479
+ :other: "Lesotho lotis"
480
+ :LTL:
481
+ :one: "litas lituana"
482
+ :other: "litas lituanas"
483
+ :LTT:
484
+ :one: "talonas lituana"
485
+ :other: "talonas lituanas"
486
+ :LUC:
487
+ :one: "franco convertible luxemburgués"
488
+ :other: "francos convertibles luxemburgueses"
489
+ :LUF:
490
+ :one: "franco luxemburgués"
491
+ :other: "francos luxemburgueses"
492
+ :LUL:
493
+ :one: "franco financiero luxemburgués"
494
+ :other: "francos financieros luxemburgueses"
495
+ :LVL:
496
+ :one: "lats letón"
497
+ :other: "lats letones"
498
+ :LVR:
499
+ :one: "rublo letón"
500
+ :other: "rublos letones"
501
+ :LYD:
502
+ :one: "dinar libio"
503
+ :other: "dinares libios"
504
+ :MAD:
505
+ :one: "dírham marroquí"
506
+ :other: "dírhams marroquíes"
507
+ :MAF:
508
+ :one: "franco marroquí"
509
+ :other: "francos marroquíes"
510
+ :MCF:
511
+ :one: "Monegasque franc"
512
+ :other: "Monegasque francs"
513
+ :MDC:
514
+ :one: "Moldovan cupon"
515
+ :other: "Moldovan cupon"
516
+ :MDL:
517
+ :one: "leu moldavo"
518
+ :other: "leus moldavos"
519
+ :MGA:
520
+ :one: "ariary malgache"
521
+ :other: "ariarys malgaches"
522
+ :MGF:
523
+ :one: "franco malgache"
524
+ :other: "Malagasy francs"
525
+ :MKD:
526
+ :one: "dinar macedonio"
527
+ :other: "dinares macedonios"
528
+ :MKN:
529
+ :one: "Macedonian denar (1992–1993)"
530
+ :other: "Macedonian denari (1992–1993)"
531
+ :MLF:
532
+ :one: "franco malí"
533
+ :other: "Malian francs"
534
+ :MMK:
535
+ :one: "kyat de Myanmar"
536
+ :other: "kyats de Myanmar"
537
+ :MNT:
538
+ :one: "tugrik mongol"
539
+ :other: "tugriks mongoles"
540
+ :symbol: "₮"
541
+ :MOP:
542
+ :one: "pataca de Macao"
543
+ :other: "patacas de Macao"
544
+ :MRO:
545
+ :one: "ouguiya mauritano"
546
+ :other: "ouguiyas mauritanos"
547
+ :MTL:
548
+ :one: "lira maltesa"
549
+ :other: "liras maltesas"
550
+ :MTP:
551
+ :one: "libra maltesa"
552
+ :other: "libras maltesas"
553
+ :MUR:
554
+ :one: "rupia mauriciana"
555
+ :other: "rupias mauricianas"
556
+ :MVP:
557
+ :one: "Maldivian rupee"
558
+ :other: "Maldivian rupees"
559
+ :MVR:
560
+ :one: "rufiyaa de Maldivas"
561
+ :other: "rufiyaas de Maldivas"
562
+ :MWK:
563
+ :one: "kwacha de Malawi"
564
+ :other: "kwachas de Malawi"
565
+ :MXN:
566
+ :one: "peso mexicano"
567
+ :other: "pesos mexicanos"
568
+ :symbol: "MX$"
569
+ :MXP:
570
+ :one: "peso de plata mexicano (MXP)"
571
+ :other: "pesos de plata mexicanos (MXP)"
572
+ :MXV:
573
+ :one: "unidad de inversión (UDI) mexicana"
574
+ :other: "unidades de inversión (UDI) mexicanas"
575
+ :MYR:
576
+ :one: "ringgit malasio"
577
+ :other: "ringgits malasios"
578
+ :MZE:
579
+ :one: "escudo mozambiqueño"
580
+ :other: "escudos mozambiqueños"
581
+ :MZM:
582
+ :one: "antiguo metical mozambiqueño"
583
+ :other: "Mozambican meticals (1980–2006)"
584
+ :MZN:
585
+ :one: "metical mozambiqueño"
586
+ :other: "meticales mozambiqueños"
587
+ :NAD:
588
+ :one: "dólar de Namibia"
589
+ :other: "dólares de Namibia"
590
+ :symbol: "$"
591
+ :NGN:
592
+ :one: "naira nigeriano"
593
+ :other: "nairas nigerianos"
594
+ :symbol: "₦"
595
+ :NIC:
596
+ :one: "córdoba nicaragüense (1988–1991)"
597
+ :other: "córdobas nicaragüenses (1988–1991)"
598
+ :NIO:
599
+ :one: "córdoba nicaragüense"
600
+ :other: "córdobas nicaragüenses"
601
+ :NLG:
602
+ :one: "florín neerlandés"
603
+ :other: "florines neerlandeses"
604
+ :NOK:
605
+ :one: "corona noruega"
606
+ :other: "coronas noruegas"
607
+ :NPR:
608
+ :one: "rupia nepalesa"
609
+ :other: "rupias nepalesas"
610
+ :NZD:
611
+ :one: "dólar neozelandés"
612
+ :other: "dólares neozelandeses"
613
+ :symbol: "NZD"
614
+ :OMR:
615
+ :one: "rial omaní"
616
+ :other: "riales omaníes"
617
+ :PAB:
618
+ :one: "balboa panameño"
619
+ :other: "balboas panameños"
620
+ :PEI:
621
+ :one: "inti peruano"
622
+ :other: "intis peruanos"
623
+ :PEN:
624
+ :one: "nuevo sol peruano"
625
+ :other: "nuevos soles peruanos"
626
+ :PES:
627
+ :one: "sol peruano"
628
+ :other: "soles peruanos"
629
+ :PGK:
630
+ :one: "kina de Papúa Nueva Guinea"
631
+ :other: "kinas de Papúa Nueva Guinea"
632
+ :PHP:
633
+ :one: "peso filipino"
634
+ :other: "pesos filipinos"
635
+ :symbol: "₱"
636
+ :PKR:
637
+ :one: "rupia pakistaní"
638
+ :other: "rupias pakistaníes"
639
+ :PLN:
640
+ :one: "zloty polaco"
641
+ :other: "zlotys polacos"
642
+ :PLZ:
643
+ :one: "zloty polaco (PLZ)"
644
+ :other: "zlotys polacos (PLZ)"
645
+ :PTE:
646
+ :one: "escudo portugués"
647
+ :other: "escudos portugueses"
648
+ :PYG:
649
+ :one: "guaraní paraguayo"
650
+ :other: "guaraníes paraguayos"
651
+ :symbol: "₲"
652
+ :QAR:
653
+ :one: "riyal de Qatar"
654
+ :other: "riales de Qatar"
655
+ :RHD:
656
+ :one: "dólar rodesiano"
657
+ :other: "Rhodesian dollars"
658
+ :ROL:
659
+ :one: "antiguo leu rumano"
660
+ :other: "antiguos lei rumanos"
661
+ :RON:
662
+ :one: "leu rumano"
663
+ :other: "lei rumanos"
664
+ :RSD:
665
+ :one: "dinar serbio"
666
+ :other: "dinares serbios"
667
+ :RUB:
668
+ :one: "rublo ruso"
669
+ :other: "rublos rusos"
670
+ :RUR:
671
+ :one: "rublo ruso (RUR)"
672
+ :other: "rublos rusos (RUR)"
673
+ :symbol: "р."
674
+ :RWF:
675
+ :one: "franco ruandés"
676
+ :other: "francos ruandeses"
677
+ :SAR:
678
+ :one: "rial saudí"
679
+ :other: "riales saudíes"
680
+ :SBD:
681
+ :one: "dólar de las Islas Salomón"
682
+ :other: "dólares de las Islas Salomón"
683
+ :symbol: "$"
684
+ :SCR:
685
+ :one: "rupia de Seychelles"
686
+ :other: "rupias de Seychelles"
687
+ :SDD:
688
+ :one: "dinar sudanés"
689
+ :other: "dinares sudaneses"
690
+ :SDG:
691
+ :one: "libra sudanesa"
692
+ :other: "libras sudanesas"
693
+ :SDP:
694
+ :one: "libra sudanesa antigua"
695
+ :other: "libras sudanesas antiguas"
696
+ :SEK:
697
+ :one: "corona sueca"
698
+ :other: "coronas suecas"
699
+ :SGD:
700
+ :one: "dólar singapurense"
701
+ :other: "dólares singapurenses"
702
+ :symbol: "$"
703
+ :SHP:
704
+ :one: "libra de Santa Elena"
705
+ :other: "libras de Santa Elena"
706
+ :SIT:
707
+ :one: "tólar esloveno"
708
+ :other: "tólares eslovenos"
709
+ :SKK:
710
+ :one: "corona eslovaca"
711
+ :other: "coronas eslovacas"
712
+ :SLL:
713
+ :one: "leone de Sierra Leona"
714
+ :other: "leones de Sierra Leona"
715
+ :SOS:
716
+ :one: "chelín somalí"
717
+ :other: "chelines somalíes"
718
+ :SRD:
719
+ :one: "dólar surinamés"
720
+ :other: "dólares surinameses"
721
+ :symbol: "$"
722
+ :SRG:
723
+ :one: "florín surinamés"
724
+ :other: "Surinamese guilders"
725
+ :SSP:
726
+ :one: "libra sursudanesa"
727
+ :other: "libras sursudanesas"
728
+ :symbol: "£"
729
+ :STD:
730
+ :one: "dobra de Santo Tomé y Príncipe"
731
+ :other: "dobras de Santo Tomé y Príncipe"
732
+ :SUR:
733
+ :one: "rublo soviético"
734
+ :other: "rublos soviéticos"
735
+ :SVC:
736
+ :one: "colón salvadoreño"
737
+ :other: "colones salvadoreños"
738
+ :SYP:
739
+ :one: "libra siria"
740
+ :other: "libras sirias"
741
+ :SZL:
742
+ :one: "lilangeni suazi"
743
+ :other: "lilangenis suazis"
744
+ :THB:
745
+ :one: "baht tailandés"
746
+ :other: "bahts tailandeses"
747
+ :symbol: "THB"
748
+ :TJR:
749
+ :one: "rublo tayiko"
750
+ :other: "Tajikistani rubles"
751
+ :TJS:
752
+ :one: "somoni tayiko"
753
+ :other: "somonis tayikos"
754
+ :TMM:
755
+ :one: "manat turcomano (1993–2009)"
756
+ :other: "manats turcomanos (1993–2009)"
757
+ :TMT:
758
+ :one: "manat turcomano"
759
+ :other: "manats turcomanos"
760
+ :TND:
761
+ :one: "dinar tunecino"
762
+ :other: "dinares tunecinos"
763
+ :TOP:
764
+ :one: "paʻanga tongano"
765
+ :other: "paʻangas tonganos"
766
+ :TPE:
767
+ :one: "escudo timorense"
768
+ :other: "Timorese escudos"
769
+ :TRL:
770
+ :one: "lira turca (1922–2005)"
771
+ :other: "liras turcas (1922–2005)"
772
+ :TRY:
773
+ :one: "lira turca"
774
+ :other: "liras turcas"
775
+ :symbol: "₺"
776
+ :TTD:
777
+ :one: "dólar de Trinidad y Tobago"
778
+ :other: "dólares de Trinidad y Tobago"
779
+ :symbol: "$"
780
+ :TWD:
781
+ :one: "nuevo dólar taiwanés"
782
+ :other: "nuevos dólares taiwaneses"
783
+ :symbol: "TWD"
784
+ :TZS:
785
+ :one: "chelín tanzano"
786
+ :other: "chelines tanzanos"
787
+ :UAH:
788
+ :one: "grivnia ucraniana"
789
+ :other: "grivnias ucranianas"
790
+ :symbol: "₴"
791
+ :UAK:
792
+ :one: "karbovanet ucraniano"
793
+ :other: "karbovanets ucranianos"
794
+ :UGS:
795
+ :one: "chelín ugandés (1966–1987)"
796
+ :other: "Ugandan shillings (1966–1987)"
797
+ :UGX:
798
+ :one: "chelín ugandés"
799
+ :other: "chelines ugandeses"
800
+ :USD:
801
+ :one: "dólar estadounidense"
802
+ :other: "dólares estadounidenses"
803
+ :symbol: "$"
804
+ :USN:
805
+ :one: "dólar estadounidense (día siguiente)"
806
+ :other: "dólares estadounidenses (día siguiente)"
807
+ :USS:
808
+ :one: "dólar estadounidense (mismo día)"
809
+ :other: "dólares estadounidenses (mismo día)"
810
+ :UYI:
811
+ :one: "peso uruguayo en unidades indexadas"
812
+ :other: "pesos uruguayos en unidades indexadas"
813
+ :UYP:
814
+ :one: "peso uruguayo (UYP)"
815
+ :other: "pesos uruguayos (UYP)"
816
+ :UYU:
817
+ :one: "peso uruguayo"
818
+ :other: "pesos uruguayos"
819
+ :symbol: "$"
820
+ :UZS:
821
+ :one: "som uzbeko"
822
+ :other: "soms uzbekos"
823
+ :VEB:
824
+ :one: "bolívar venezolano (1871–2008)"
825
+ :other: "bolívares venezolanos (1871–2008)"
826
+ :VEF:
827
+ :one: "bolívar venezolano"
828
+ :other: "bolívares venezolanos"
829
+ :VND:
830
+ :one: "dong vietnamita"
831
+ :other: "dongs vietnamitas"
832
+ :symbol: "VND"
833
+ :VNN:
834
+ :one: "Vietnamese dong (1978–1985)"
835
+ :other: "Vietnamese dong (1978–1985)"
836
+ :VUV:
837
+ :one: "vatu vanuatuense"
838
+ :other: "vatus vanuatuenses"
839
+ :WST:
840
+ :one: "tala samoano"
841
+ :other: "talas samoanos"
842
+ :XAF:
843
+ :one: "franco CFA BEAC"
844
+ :other: "francos CFA BEAC"
845
+ :symbol: "FCFA"
846
+ :XAG:
847
+ :one: "plata"
848
+ :other: "plata"
849
+ :XAU:
850
+ :one: "oro"
851
+ :other: "oro"
852
+ :XBA:
853
+ :one: "unidad compuesta europea"
854
+ :other: "unidades compuestas europeas"
855
+ :XBB:
856
+ :one: "unidad monetaria europea"
857
+ :other: "unidades monetarias europeas"
858
+ :XBC:
859
+ :one: "unidad de cuenta europea (XBC)"
860
+ :other: "unidades de cuenta europeas (XBC)"
861
+ :XBD:
862
+ :one: "unidad de cuenta europea (XBD)"
863
+ :other: "unidades de cuenta europeas (XBD)"
864
+ :XCD:
865
+ :one: "dólar del Caribe Oriental"
866
+ :other: "dólares del Caribe Oriental"
867
+ :symbol: "EC$"
868
+ :XDR:
869
+ :one: "derechos especiales de giro"
870
+ :other: "special drawing rights"
871
+ :XEU:
872
+ :one: "unidad de moneda europea"
873
+ :other: "unidades de moneda europeas"
874
+ :XFO:
875
+ :one: "franco oro francés"
876
+ :other: "francos oro franceses"
877
+ :XFU:
878
+ :one: "franco UIC francés"
879
+ :other: "francos UIC franceses"
880
+ :XOF:
881
+ :one: "franco CFA BCEAO"
882
+ :other: "francos CFA BCEAO"
883
+ :symbol: "XOF"
884
+ :XPD:
885
+ :one: "paladio"
886
+ :other: "paladio"
887
+ :XPF:
888
+ :one: "franco CFP"
889
+ :other: "francos CFP"
890
+ :symbol: "XPF"
891
+ :XPT:
892
+ :one: "platino"
893
+ :other: "platino"
894
+ :XRE:
895
+ :one: "fondos RINET"
896
+ :other: "RINET Funds units"
897
+ :XSU:
898
+ :one: "Sucre"
899
+ :other: "Sucres"
900
+ :XTS:
901
+ :one: "código reservado para pruebas"
902
+ :other: "Testing Currency units"
903
+ :XUA:
904
+ :one: "ADB unit of account"
905
+ :other: "ADB units of account"
906
+ :XXX:
907
+ :one: "moneda desconocida/no válida"
908
+ :other: "monedas desconocidas/no válidas"
909
+ :YDD:
910
+ :one: "dinar yemení"
911
+ :other: "Yemeni dinars"
912
+ :YER:
913
+ :one: "rial yemení"
914
+ :other: "riales yemeníes"
915
+ :YUD:
916
+ :one: "dinar fuerte yugoslavo"
917
+ :other: "Yugoslavian hard dinars (1966–1990)"
918
+ :YUM:
919
+ :one: "super dinar yugoslavo"
920
+ :other: "Yugoslavian new dinars (1994–2002)"
921
+ :YUN:
922
+ :one: "dinar convertible yugoslavo"
923
+ :other: "dinares convertibles yugoslavos"
924
+ :YUR:
925
+ :one: "Yugoslavian reformed dinar (1992–1993)"
926
+ :other: "Yugoslavian reformed dinars (1992–1993)"
927
+ :ZAL:
928
+ :one: "rand sudafricano (financiero)"
929
+ :other: "South African rands (financial)"
930
+ :ZAR:
931
+ :one: "rand sudafricano"
932
+ :other: "rands sudafricanos"
933
+ :ZMK:
934
+ :one: "kwacha zambiano (1968–2012)"
935
+ :other: "kwachas zambianos (1968–2012)"
936
+ :ZMW:
937
+ :one: "kwacha zambiano"
938
+ :other: "kwachas zambianos"
939
+ :ZRN:
940
+ :one: "nuevo zaire zaireño"
941
+ :other: "Zairean new zaires (1993–1998)"
942
+ :ZRZ:
943
+ :one: "zaire zaireño"
944
+ :other: "Zairean zaires (1971–1993)"
945
+ :ZWD:
946
+ :one: "dólar de Zimbabue"
947
+ :other: "Zimbabwean dollars (1980–2008)"
948
+ :ZWL:
949
+ :one: "dólar zimbabuense"
950
+ :other: "Zimbabwean dollars (2009)"
951
+ :ZWR:
952
+ :one: "Zimbabwean dollar (2008)"
953
+ :other: "Zimbabwean dollars (2008)"