twitter_cldr 3.0.0.beta1 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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,916 +1,954 @@
1
- ---
2
- :pt:
3
- :currencies:
4
- :ADP:
5
- :one: Peseta de Andorra
6
- :other: Pesetas de Andorra
7
- :AED:
8
- :one: Dirrã dos Emirados Árabes Unidos
9
- :other: Dirrãs dos Emirados Árabes Unidos
10
- :AFA:
11
- :one: Afegane do Afeganistão (AFA)
12
- :other: Afeganes do Afeganistão (AFA)
13
- :AFN:
14
- :one: Afegane afegão
15
- :other: Afeganes afegãos
16
- :ALK:
17
- :one: Lek Albanês (1946-1965)
18
- :other: Leks Albaneses (1946-1965)
19
- :ALL:
20
- :one: Lek albanês
21
- :other: Leks albaneses
22
- :AMD:
23
- :one: Dram armênio
24
- :other: Drams armênios
25
- :ANG:
26
- :one: Florim das Antilhas Holandesas
27
- :other: Florins das Antilhas Holandesas
28
- :AOA:
29
- :one: Kwanza angolano
30
- :other: Kwanzas angolanos
31
- :AOK:
32
- :one: Kwanza angolano (AOK)
33
- :other: Kwanzas angolanos (AOK)
34
- :AON:
35
- :one: Novo kwanza angolano (AON)
36
- :other: Novos kwanzas angolanos (AON)
37
- :AOR:
38
- :one: Kwanza angolano reajustado (AOR)
39
- :other: Kwanzas angolanos reajustados (AOR)
40
- :ARA:
41
- :one: Austral argentino
42
- :other: Austrais argentinos
43
- :ARL:
44
- :one: Peso lei argentino (1970-1983)
45
- :other: Pesos lei argentinos (1970-1983)
46
- :ARM:
47
- :one: Peso argentino (1881-1970)
48
- :other: Pesos argentinos (1881-1970)
49
- :ARP:
50
- :one: Peso argentino (1983-1985)
51
- :other: Pesos argentinos (1983-1985)
52
- :ARS:
53
- :one: Peso argentino
54
- :other: Pesos argentinos
55
- :ATS:
56
- :one: Schilling australiano
57
- :other: Schillings australianos
58
- :AUD:
59
- :one: Dólar australiano
60
- :other: Dólares australianos
61
- :symbol: AU$
62
- :AWG:
63
- :one: Florim arubano
64
- :other: Florins arubanos
65
- :AZM:
66
- :one: Manat do Azeibaijão (1993-2006)
67
- :other: Manats do Azeibaijão (1993-2006)
68
- :AZN:
69
- :one: Manat azeri
70
- :other: Manats azeris
71
- :BAD:
72
- :one: Dinar da Bósnia Herzegovina
73
- :other: Dinares da Bósnia Herzegovina
74
- :BAM:
75
- :one: Marca conversível da Bósnia Herzegovina
76
- :other: Marcas conversíveis da Bósnia Herzegovina
77
- :BAN:
78
- :one: Novo dinar da Bósnia-Herzegovina
79
- :other: Novos dinares da Bósnia-Herzegovina
80
- :BBD:
81
- :one: Dólar barbadense
82
- :other: Dólares barbadenses
83
- :BDT:
84
- :one: Taka bengalesa
85
- :other: Takas bengalesas
86
- :BEC:
87
- :one: Franco belga (conversível)
88
- :other: Francos belgas (conversíveis)
89
- :BEF:
90
- :one: Franco belga
91
- :other: Francos belgas
92
- :BEL:
93
- :one: Franco belga (financeiro)
94
- :other: Francos belgas (financeiros)
95
- :BGL:
96
- :one: Lev forte búlgaro
97
- :other: Levs fortes búlgaros
98
- :BGM:
99
- :one: Lev socialista búlgaro
100
- :other: Levs socialistas búlgaros
101
- :BGN:
102
- :one: Lev búlgaro
103
- :other: Levs búlgaros
104
- :BGO:
105
- :one: Lev búlgaro (1879-1952)
106
- :other: Levs búlgaros (1879-1952)
107
- :BHD:
108
- :one: Dinar bareinita
109
- :other: Dinares bareinitas
110
- :BIF:
111
- :one: Franco burundiano
112
- :other: Francos burundianos
113
- :BMD:
114
- :one: Dólar bermudense
115
- :other: Dólares bermudenses
116
- :BND:
117
- :one: Dólar bruneano
118
- :other: Dólares bruneanos
119
- :BOB:
120
- :one: Boliviano
121
- :other: Bolivianos
122
- :BOL:
123
- :one: Boliviano (1863-1963)
124
- :other: Bolivianos (1863-1963)
125
- :BOP:
126
- :one: Peso boliviano
127
- :other: Pesos bolivianos
128
- :BOV:
129
- :one: Mvdol boliviano
130
- :other: Mvdols bolivianos
131
- :BRB:
132
- :one: Cruzeiro novo brasileiro (BRB)
133
- :other: Cruzeiros novos brasileiros (BRB)
134
- :BRC:
135
- :one: Cruzado brasileiro
136
- :other: Cruzados brasileiros
137
- :BRE:
138
- :one: Cruzeiro brasileiro (BRE)
139
- :other: Cruzeiros brasileiros (BRE)
140
- :BRL:
141
- :one: Real brasileiro
142
- :other: Reais brasileiros
143
- :symbol: R$
144
- :BRN:
145
- :one: Cruzado novo brasileiro
146
- :other: Cruzados novos brasileiros
147
- :BRR:
148
- :one: Cruzeiro brasileiro
149
- :other: Cruzeiros brasileiros
150
- :BRZ:
151
- :one: Cruzeiro brasileiro antigo
152
- :other: Cruzeiros brasileiros antigos
153
- :BSD:
154
- :one: Dólar bahamense
155
- :other: Dólares bahamenses
156
- :BTN:
157
- :one: Ngultrum butanês
158
- :other: Ngultruns butaneses
159
- :BUK:
160
- :one: Kyat burmês
161
- :other: Kyats burmeses
162
- :BWP:
163
- :one: Pula de Botsuana
164
- :other: Pulas de Botsuana
165
- :BYB:
166
- :one: Novo rublo bielorusso (BYB)
167
- :other: Novos rublos bielorussos (BYB)
168
- :BYR:
169
- :one: Rublo bielorrusso
170
- :other: Rublos bielorrussos
171
- :BZD:
172
- :one: Dólar belizenho
173
- :other: Dólares belizenhos
174
- :CAD:
175
- :one: Dólar canadense
176
- :other: Dólares canadenses
177
- :symbol: CA$
178
- :CDF:
179
- :one: Franco congolês
180
- :other: Francos congoleses
181
- :CHE:
182
- :one: Euro WIR
183
- :other: Euros WIR
184
- :CHF:
185
- :one: Franco suíço
186
- :other: Francos suíços
187
- :CHW:
188
- :one: Franco WIR
189
- :other: Francos WIR
190
- :CLE:
191
- :one: Escudo chileno
192
- :other: Escudos chilenos
193
- :CLF:
194
- :one: Unidade de fomento chilena
195
- :other: Unidades de fomento chilenas
196
- :CLP:
197
- :one: Peso chileno
198
- :other: Pesos chilenos
199
- :CNX:
200
- :one: Dólar do Banco Popular da China
201
- :other: Dólares do Banco Popular da China
202
- :CNY:
203
- :one: Yuan chinês
204
- :other: Yuans chineses
205
- :symbol: CN¥
206
- :COP:
207
- :one: Peso colombiano
208
- :other: Pesos colombianos
209
- :COU:
210
- :one: Unidade de valor real
211
- :other: Unidades de valor real
212
- :CRC:
213
- :one: Colón costarriquenho
214
- :other: Colóns costarriquenhos
215
- :CSD:
216
- :one: Dinar antigo da Sérvia
217
- :other: Dinares antigos da Sérvia
218
- :CSK:
219
- :one: Coroa forte tchecoslovaca
220
- :other: Coroas fortes tchecoslovacas
221
- :CUC:
222
- :one: Peso cubano conversível
223
- :other: Pesos cubanos conversíveis
224
- :CUP:
225
- :one: Peso cubano
226
- :other: Pesos cubanos
227
- :CVE:
228
- :one: Escudo cabo-verdiano
229
- :other: Escudos cabo-verdianos
230
- :CYP:
231
- :one: Libra cipriota
232
- :other: Libras cipriotas
233
- :CZK:
234
- :one: Coroa da República Tcheca
235
- :other: Coroas da República Tcheca
236
- :DDM:
237
- :one: Marco da Alemanha Oriental
238
- :other: Marcos da Alemanha Oriental
239
- :DEM:
240
- :one: Marco alemão
241
- :other: Marcos alemães
242
- :DJF:
243
- :one: Franco djibutiense
244
- :other: Francos djibutienses
245
- :DKK:
246
- :one: Coroa dinamarquesa
247
- :other: Coroas dinamarquesas
248
- :DOP:
249
- :one: Peso dominicano
250
- :other: Pesos dominicanos
251
- :DZD:
252
- :one: Dinar argelino
253
- :other: Dinares argelinos
254
- :ECS:
255
- :one: Sucre equatoriano
256
- :other: Sucres equatorianos
257
- :ECV:
258
- :one: Unidade de valor constante equatoriana (UVC)
259
- :other: Unidades de valor constante equatorianas (UVC)
260
- :EEK:
261
- :one: Coroa estoniana
262
- :other: Coroas estonianas
263
- :EGP:
264
- :one: Libra egípcia
265
- :other: Libras egípcias
266
- :ERN:
267
- :one: Nakfa da Eritreia
268
- :other: Nakfas da Eritreia
269
- :ESA:
270
- :one: Peseta espanhola (conta A)
271
- :other: Pesetas espanholas (conta A)
272
- :ESB:
273
- :one: Peseta espanhola (conta conversível)
274
- :other: Pesetas espanholas (conta conversível)
275
- :ESP:
276
- :one: Peseta espanhola
277
- :other: Pesetas espanholas
278
- :ETB:
279
- :one: Birr etíope
280
- :other: Birrs etíopes
281
- :EUR:
282
- :one: Euro
283
- :other: Euros
284
- :symbol:
285
- :FIM:
286
- :one: Marco finlandês
287
- :other: Marcos finlandeses
288
- :FJD:
289
- :one: Dólar fijiano
290
- :other: Dólares fijianos
291
- :FKP:
292
- :one: Libra malvinense
293
- :other: Libras malvinenses
294
- :FRF:
295
- :one: Franco francês
296
- :other: Francos franceses
297
- :GBP:
298
- :one: Libra esterlina britânica
299
- :other: Libras esterlinas britânicas
300
- :symbol: £
301
- :GEK:
302
- :one: Kupon larit da Geórgia
303
- :other: Kupon larits da Geórgia
304
- :GEL:
305
- :one: Lari da Geórgia
306
- :other: Laris da Geórgia
307
- :GHC:
308
- :one: Cedi de Gana (1979-2007)
309
- :other: Cedis de Gana (1979-2007)
310
- :GHS:
311
- :one: Cedi ganês
312
- :other: Cedis ganeses
313
- :GIP:
314
- :one: Libra de Gibraltar
315
- :other: Libras de Gibraltar
316
- :GMD:
317
- :one: Dalasi gambiano
318
- :other: Dalasis gambianos
319
- :GNF:
320
- :one: Franco guineano
321
- :other: Francos guineanos
322
- :GNS:
323
- :one: Syli guineano
324
- :other: Sylis guineanos
325
- :GQE:
326
- :one: Ekwele da Guiné Equatorial
327
- :other: Ekweles da Guiné Equatorial
328
- :GRD:
329
- :one: Dracma grego
330
- :other: Dracmas gregos
331
- :GTQ:
332
- :one: Quetzal guatemalense
333
- :other: Quetzais guatemalenses
334
- :GWE:
335
- :one: Escudo da Guiné Portuguesa
336
- :other: Escudos da Guinéa Portuguesa
337
- :GWP:
338
- :one: Peso de Guiné-Bissau
339
- :other: Pesos de Guiné-Bissau
340
- :GYD:
341
- :one: Dólar guianense
342
- :other: Dólares guianenses
343
- :HKD:
344
- :one: Dólar de Hong Kong
345
- :other: Dólares de Hong Kong
346
- :symbol: HK$
347
- :HNL:
348
- :one: Lempira hondurenha
349
- :other: Lempiras hondurenhas
350
- :HRD:
351
- :one: Dinar croata
352
- :other: Dinares croatas
353
- :HRK:
354
- :one: Kuna croata
355
- :other: Kunas croatas
356
- :HTG:
357
- :one: Gourde haitiano
358
- :other: Gourdes haitianos
359
- :HUF:
360
- :one: Forint húngaro
361
- :other: Forints húngaros
362
- :IDR:
363
- :one: Rúpia da Indonésia
364
- :other: Rúpias da Indonésia
365
- :IEP:
366
- :one: Libra irlandesa
367
- :other: Libras irlandesas
368
- :ILP:
369
- :one: Libra israelita
370
- :other: Libras israelitas
371
- :ILR:
372
- :one: Sheqel antigo israelita
373
- :other: Sheqels antigos israelitas
374
- :ILS:
375
- :one: Sheqel novo israelita
376
- :other: Sheqels novo israelitas
377
- :symbol:
378
- :INR:
379
- :one: Rúpia indiana
380
- :other: Rúpias indianas
381
- :symbol:
382
- :IQD:
383
- :one: Dinar iraquiano
384
- :other: Dinares iraquianos
385
- :IRR:
386
- :one: Rial iraniano
387
- :other: Riales iranianos
388
- :ISJ:
389
- :one: Coroa antiga islandesa
390
- :other: Coroas antigas islandesas
391
- :ISK:
392
- :one: Coroa islandesa
393
- :other: Coroas islandesas
394
- :ITL:
395
- :one: Lira italiana
396
- :other: Liras italianas
397
- :JMD:
398
- :one: Dólar jamaicano
399
- :other: Dólares jamaicanos
400
- :JOD:
401
- :one: Dinar jordaniano
402
- :other: Dinares jordanianos
403
- :JPY:
404
- :one: Iene japonês
405
- :other: Ienes japoneses
406
- :symbol: JP¥
407
- :KES:
408
- :one: Shilling queniano
409
- :other: Shillings quenianos
410
- :KGS:
411
- :one: Som quirguiz
412
- :other: Sons quirguizes
413
- :KHR:
414
- :one: Riel cambojano
415
- :other: Rieles cambojanos
416
- :KMF:
417
- :one: Franco comorense
418
- :other: Francos comorenses
419
- :KPW:
420
- :one: Won norte-coreano
421
- :other: Wons norte-coreanos
422
- :KRH:
423
- :one: Hwan da Coreia do Sul
424
- :other: Hwans da Coreia do Sul
425
- :KRO:
426
- :one: Won antigo da Coreia do Sul
427
- :other: Wons antigos da Coreia do Sul
428
- :KRW:
429
- :one: Won sul-coreano
430
- :other: Wons sul-coreanos
431
- :symbol:
432
- :KWD:
433
- :one: Dinar kuwaitiano
434
- :other: Dinares kuwaitianos
435
- :KYD:
436
- :one: Dólar das Ilhas Cayman
437
- :other: Dólares das Ilhas Caiman
438
- :KZT:
439
- :one: Tenge cazaque
440
- :other: Tenges cazaques
441
- :LAK:
442
- :one: Kip do Laos
443
- :other: Kips do Laos
444
- :LBP:
445
- :one: Libra libanesa
446
- :other: Libras libanesas
447
- :LKR:
448
- :one: Rúpia ceilandesa
449
- :other: Rúpias ceilandesas
450
- :LRD:
451
- :one: Dólar liberiano
452
- :other: Dólares liberianos
453
- :LSL:
454
- :one: Loti do Lesoto
455
- :other: Lotis do Lesoto
456
- :LTL:
457
- :one: Litas lituano
458
- :other: Litai lituanos
459
- :LTT:
460
- :one: Talonas lituanas
461
- :other: Talonases lituanas
462
- :LUC:
463
- :one: Franco conversível de Luxemburgo
464
- :other: Francos conversíveis de Luxemburgo
465
- :LUF:
466
- :one: Franco de Luxemburgo
467
- :other: Francos de Luxemburgo
468
- :LUL:
469
- :one: Franco financeiro de Luxemburgo
470
- :other: Francos financeiros de Luxemburgo
471
- :LVL:
472
- :one: Lats letão
473
- :other: Lati letões
474
- :LVR:
475
- :one: Rublo da Letônia
476
- :other: Rublos da Letônia
477
- :LYD:
478
- :one: Dinar líbio
479
- :other: Dinares líbios
480
- :MAD:
481
- :one: Dirrã marroquino
482
- :other: Dirrãs marroquinos
483
- :MAF:
484
- :one: Franco marroquino
485
- :other: Francos marroquinos
486
- :MCF:
487
- :one: Franco monegasco
488
- :other: Francos monegascos
489
- :MDC:
490
- :one: Cupon moldávio
491
- :other: Cupon moldávio
492
- :MDL:
493
- :one: Leu moldávio
494
- :other: Leus moldávios
495
- :MGA:
496
- :one: Ariary malgaxe
497
- :other: Ariarys malgaxes
498
- :MGF:
499
- :one: Franco de Madagascar
500
- :other: Francos de Madagascar
501
- :MKD:
502
- :one: Dinar da Macedônia
503
- :other: Dinares da Macedônia
504
- :MKN:
505
- :one: Dinar macedônio (1992-1993)
506
- :other: Dinares macedônios (1992-1993)
507
- :MLF:
508
- :one: Franco de Mali
509
- :other: Francos de Mali
510
- :MMK:
511
- :one: Kyat mianmarense
512
- :other: Kyats mianmarenses
513
- :MNT:
514
- :one: Tugrik da Mongólia
515
- :other: Tugriks da Mongólia
516
- :MOP:
517
- :one: Pataca macaense
518
- :other: Patacas macaenses
519
- :MRO:
520
- :one: Ouguiya mauritana
521
- :other: Ouguiyas mauritanas
522
- :MTL:
523
- :one: Lira Maltesa
524
- :other: Liras maltesas
525
- :MTP:
526
- :one: Libra maltesa
527
- :other: Libras maltesas
528
- :MUR:
529
- :one: Rúpia mauriciana
530
- :other: Rúpias mauricianas
531
- :MVP:
532
- :one: Maldivian rupee
533
- :other: Maldivian rupees
534
- :MVR:
535
- :one: Rúpia maldiva
536
- :other: Rúpias maldivas
537
- :MWK:
538
- :one: Kwacha malawiana
539
- :other: Kwachas malawianas
540
- :MXN:
541
- :one: Peso mexicano
542
- :other: Pesos mexicanos
543
- :symbol: MX$
544
- :MXP:
545
- :one: Peso de prata mexicano (1861-1992)
546
- :other: Pesos de prata mexicanos (1861-1992)
547
- :MXV:
548
- :one: Unidade de investimento mexicana (UDI)
549
- :other: Unidades de investimento mexicanas (UDI)
550
- :MYR:
551
- :one: Ringgit malaio
552
- :other: Ringgits malaios
553
- :MZE:
554
- :one: Escudo de Moçambique
555
- :other: Escudos de Moçambique
556
- :MZM:
557
- :one: Metical antigo de Moçambique
558
- :other: Meticales antigos de Moçambique
559
- :MZN:
560
- :one: Metical moçambicano
561
- :other: Meticales de Moçambique
562
- :NAD:
563
- :one: Dólar namibiano
564
- :other: Dólares namibianos
565
- :NGN:
566
- :one: Naira nigeriana
567
- :other: Nairas nigerianas
568
- :NIC:
569
- :one: Córdoba nicaraguense (1988-1991)
570
- :other: Córdobas nicaraguense (1988-1991)
571
- :NIO:
572
- :one: Córdoba nicaraguense
573
- :other: Córdobas nicaraguenses
574
- :NLG:
575
- :one: Florim holandês
576
- :other: Florins holandeses
577
- :NOK:
578
- :one: Coroa norueguesa
579
- :other: Coroas norueguesas
580
- :NPR:
581
- :one: Rúpia nepalesa
582
- :other: Rúpias nepalesas
583
- :NZD:
584
- :one: Dólar da Nova Zelândia
585
- :other: Dólares da Nova Zelândia
586
- :symbol: NZ$
587
- :OMR:
588
- :one: Rial omanense
589
- :other: Riales de Omã
590
- :PAB:
591
- :one: Balboa panamenha
592
- :other: Balboas panamenhas
593
- :PEI:
594
- :one: Inti peruano
595
- :other: Intis peruanos
596
- :PEN:
597
- :one: Novo sol peruano
598
- :other: Novos sóis peruanos
599
- :PES:
600
- :one: Sol peruano
601
- :other: Soles peruanos
602
- :PGK:
603
- :one: Kina papuásia
604
- :other: Kinas papuásias
605
- :PHP:
606
- :one: Peso filipino
607
- :other: Pesos filipinos
608
- :PKR:
609
- :one: Rúpia paquistanesa
610
- :other: Rúpias paquistanesas
611
- :PLN:
612
- :one: Zloti polonês
613
- :other: Zlotis poloneses
614
- :PLZ:
615
- :one: Zloti polonês (1950-1995)
616
- :other: Zlotis poloneses (1950-1995)
617
- :PTE:
618
- :one: Escudo português
619
- :other: Escudos portugueses
620
- :symbol: Esc.
621
- :PYG:
622
- :one: Guarani paraguaio
623
- :other: Guaranis paraguaios
624
- :QAR:
625
- :one: Rial do Qatar
626
- :other: Riales do Qatar
627
- :RHD:
628
- :one: Dólar da Rodésia
629
- :other: Dólares da Rodésia
630
- :ROL:
631
- :one: Leu antigo da Romênia
632
- :other: Leus antigos da Romênia
633
- :RON:
634
- :one: Leu da Romênia
635
- :other: Leus da Romênia
636
- :RSD:
637
- :one: Dinar sérvio
638
- :other: Dinares sérvios
639
- :RUB:
640
- :one: Rublo russo
641
- :other: Rublos russos
642
- :RUR:
643
- :one: Rublo russo (1991-1998)
644
- :other: Rublos russos (1991-1998)
645
- :RWF:
646
- :one: Franco de Ruanda
647
- :other: Francos de Ruanda
648
- :SAR:
649
- :one: Riyal saudita
650
- :other: Riyales sauditas
651
- :SBD:
652
- :one: Dólar das Ilhas Salomão
653
- :other: Dólares das Ilhas Salomão
654
- :SCR:
655
- :one: Rúpia seichelense
656
- :other: Rúpias seichelenses
657
- :SDD:
658
- :one: Dinar antigo do Sudão
659
- :other: Dinares antigos do Sudão
660
- :SDG:
661
- :one: Libra sudanesa
662
- :other: Libras sudanesas
663
- :SDP:
664
- :one: Libra antiga sudanesa
665
- :other: Libras antigas sudanesas
666
- :SEK:
667
- :one: Coroa sueca
668
- :other: Coroas suecas
669
- :SGD:
670
- :one: Dólar de Singapura
671
- :other: Dólares de Singapura
672
- :SHP:
673
- :one: Libra de Santa Helena
674
- :other: Libras de Santa Helena
675
- :SIT:
676
- :one: Tolar da Eslovênia
677
- :other: Tolares da Eslovênia
678
- :SKK:
679
- :one: Coroa eslovaca
680
- :other: Coroas eslovacas
681
- :SLL:
682
- :one: Leone de Serra Leoa
683
- :other: Leones de Serra Leoa
684
- :SOS:
685
- :one: Shilling da Somália
686
- :other: Shillings da Somália
687
- :SRD:
688
- :one: Dólar surinamês
689
- :other: Dólares surinameses
690
- :SRG:
691
- :one: Florim do Suriname
692
- :other: Florins do Suriname
693
- :SSP:
694
- :one: Libra sul-sudanesa
695
- :other: Libras sul-sudanesas
696
- :STD:
697
- :one: Dobra de São Tomé e Príncipe
698
- :other: Dobras de São Tomé e Príncipe
699
- :SUR:
700
- :one: Rublo soviético
701
- :other: Rublos soviéticos
702
- :SVC:
703
- :one: Colon de El Salvador
704
- :other: Colons de El Salvador
705
- :SYP:
706
- :one: Libra síria
707
- :other: Libras sírias
708
- :SZL:
709
- :one: Lilangeni suazi
710
- :other: Lilangenis suazis
711
- :THB:
712
- :one: Baht da Tailândia
713
- :other: Bahts tailandeses
714
- :symbol: ฿
715
- :TJR:
716
- :one: Rublo do Tajaquistão
717
- :other: Rublos do Tajaquistão
718
- :TJS:
719
- :one: Somoni tadjique
720
- :other: Somonis tadjiques
721
- :TMM:
722
- :one: Manat do Turcomenistão (1993-2009)
723
- :other: Manats do Turcomenistão (1993-2009)
724
- :TMT:
725
- :one: Manat do Turcomenistão
726
- :other: Manats do Turcomenistão
727
- :TND:
728
- :one: Dinar tunisiano
729
- :other: Dinares tunisianos
730
- :TOP:
731
- :one: Paʻanga tonganesa
732
- :other: Paʻangas tonganesas
733
- :TPE:
734
- :one: Escudo do Timor
735
- :other: Escudos do Timor
736
- :TRL:
737
- :one: Lira turca antiga
738
- :other: Liras turcas antigas
739
- :TRY:
740
- :one: Lira turca
741
- :other: Liras turcas
742
- :TTD:
743
- :one: Dólar de Trinidad e Tobago
744
- :other: Dólares de Trinidad e Tobago
745
- :TWD:
746
- :one: Novo dólar taiwanês
747
- :other: Novos dólares taiwaneses
748
- :symbol: NT$
749
- :TZS:
750
- :one: Shilling da Tanzânia
751
- :other: Shillings da Tanzânia
752
- :UAH:
753
- :one: Hryvnia da Ucrânia
754
- :other: Hryvnias da Ucrânia
755
- :UAK:
756
- :one: Karbovanetz da Ucrânia
757
- :other: Karbovanetzs da Ucrânia
758
- :UGS:
759
- :one: Shilling de Uganda (1966-1987)
760
- :other: Shillings de Uganda (1966-1987)
761
- :UGX:
762
- :one: Shilling de Uganda
763
- :other: Shillings de Uganda
764
- :USD:
765
- :one: Dólar americano
766
- :other: Dólares americanos
767
- :symbol: US$
768
- :USN:
769
- :one: Dólar americano (dia seguinte)
770
- :other: Dólares americanos (dia seguinte)
771
- :USS:
772
- :one: Dólar americano (mesmo dia)
773
- :other: Dólares americanos (mesmo dia)
774
- :UYI:
775
- :one: Peso uruguaio em unidades indexadas
776
- :other: Pesos uruguaios em unidades indexadas
777
- :UYP:
778
- :one: Peso uruguaio (1975-1993)
779
- :other: Pesos uruguaios (1975-1993)
780
- :UYU:
781
- :one: Peso uruguaio
782
- :other: Pesos uruguaios
783
- :UZS:
784
- :one: Som uzbeque
785
- :other: Sons uzbeques
786
- :VEB:
787
- :one: Bolívar venezuelano (1871-2008)
788
- :other: Bolívares venezuelanos (1871-2008)
789
- :VEF:
790
- :one: Bolívar venezuelano
791
- :other: Bolívares venezuelanos
792
- :VND:
793
- :one: Dong vietnamita
794
- :other: Dongs vietnamitas
795
- :symbol:
796
- :VNN:
797
- :one: Dong vietnamita (1978-1985)
798
- :other: Dong vietnamita (1978-1985)
799
- :VUV:
800
- :one: Vatu de Vanuatu
801
- :other: Vatus de Vanuatu
802
- :WST:
803
- :one: Tala samoano
804
- :other: Talas samoanos
805
- :XAF:
806
- :one: Franco CFA de BEAC
807
- :other: Francos CFA de BEAC
808
- :symbol: FCFA
809
- :XAG:
810
- :one: Prata
811
- :other: Pratas
812
- :XAU:
813
- :one: Ouro
814
- :other: Ouros
815
- :XBA:
816
- :one: Unidade de composição europeia
817
- :other: Unidades de composição europeias
818
- :XBB:
819
- :one: Unidade monetária europeia
820
- :other: Unidades monetárias europeias
821
- :XBC:
822
- :one: Unidade europeia de conta (XBC)
823
- :other: Unidades europeias de conta (XBC)
824
- :XBD:
825
- :one: Unidade europeia de conta (XBD)
826
- :other: Unidades europeias de conta (XBD)
827
- :XCD:
828
- :one: Dólar do Caribe Oriental
829
- :other: Dólares do Caribe Oriental
830
- :symbol: EC$
831
- :XDR:
832
- :one: Direitos de desenho especiais
833
- :other: Direitos de desenho especiais
834
- :XEU:
835
- :one: Unidade de moeda europeia
836
- :other: Unidades de moedas europeias
837
- :XFO:
838
- :one: Franco de ouro francês
839
- :other: Francos de ouro franceses
840
- :XFU:
841
- :one: Franco UIC francês
842
- :other: Francos UIC franceses
843
- :XOF:
844
- :one: Franco CFA de BCEAO
845
- :other: Francos CFA de BCEAO
846
- :symbol: CFA
847
- :XPD:
848
- :one: Paládio
849
- :other: Paládios
850
- :XPF:
851
- :one: Franco CFP
852
- :other: Francos CFP
853
- :symbol: CFPF
854
- :XPT:
855
- :one: Platina
856
- :other: Platinas
857
- :XRE:
858
- :one: Fundos RINET
859
- :other: Fundos RINET
860
- :XSU:
861
- :one: Sucre
862
- :other: Sucres
863
- :XTS:
864
- :one: Código de moeda de teste
865
- :other: Códigos de moeda de teste
866
- :XUA:
867
- :one: ADB unit of account
868
- :other: ADB units of account
869
- :XXX:
870
- :one: (moeda desconhecida)
871
- :other: (moedas desconhecidas)
872
- :YDD:
873
- :one: Dinar do Iêmen
874
- :other: Dinares do Iêmen
875
- :YER:
876
- :one: Rial do Iêmen
877
- :other: Riales do Iêmen
878
- :YUD:
879
- :one: Dinar forte iugoslavo
880
- :other: Dinares fortes iugoslavos
881
- :YUM:
882
- :one: Dinar noviy da Iugoslávia
883
- :other: Dinares noviy da Iugoslávia
884
- :YUN:
885
- :one: Dinar conversível da Iugoslávia
886
- :other: Dinares conversíveis da Iugoslávia
887
- :YUR:
888
- :one: Dinar iugoslavo reformado
889
- :other: Dinares iugoslavos reformados
890
- :ZAL:
891
- :one: Rand da África do Sul (financeiro)
892
- :other: Rands da África do Sul (financeiro)
893
- :ZAR:
894
- :one: Rand sul-africano
895
- :other: Rands sul-africanos
896
- :ZMK:
897
- :one: Kwacha da Zâmbia (1968-2012)
898
- :other: Kwachas da Zâmbia (1968-2012)
899
- :ZMW:
900
- :one: Kwacha da Zâmbia
901
- :other: Kwachas da Zâmbia
902
- :ZRN:
903
- :one: Novo zaire do Zaire
904
- :other: Novos zaires do Zaire
905
- :ZRZ:
906
- :one: Zaire do Zaire
907
- :other: Zaires do Zaire
908
- :ZWD:
909
- :one: Dólar do Zimbábue
910
- :other: Dólares do Zimbábue
911
- :ZWL:
912
- :one: Dólar do Zimbábue (2009)
913
- :other: Dólares do Zimbábue (2009)
914
- :ZWR:
915
- :one: Dólar do Zimbábue (2008)
916
- :other: Dólares do Zimbábue (2008)
1
+ ---
2
+ :pt:
3
+ :currencies:
4
+ :ADP:
5
+ :one: "Peseta de Andorra"
6
+ :other: "Pesetas de Andorra"
7
+ :AED:
8
+ :one: "Dirrã dos Emirados Árabes Unidos"
9
+ :other: "Dirrãs dos Emirados Árabes Unidos"
10
+ :AFA:
11
+ :one: "Afegane do Afeganistão (AFA)"
12
+ :other: "Afeganes do Afeganistão (AFA)"
13
+ :AFN:
14
+ :one: "Afegane afegão"
15
+ :other: "Afeganes afegãos"
16
+ :ALK:
17
+ :one: "Lek Albanês (19461965)"
18
+ :other: "Leks Albaneses (19461965)"
19
+ :ALL:
20
+ :one: "Lek albanês"
21
+ :other: "Leks albaneses"
22
+ :AMD:
23
+ :one: "Dram armênio"
24
+ :other: "Drams armênios"
25
+ :ANG:
26
+ :one: "Florim das Antilhas Holandesas"
27
+ :other: "Florins das Antilhas Holandesas"
28
+ :AOA:
29
+ :one: "Kwanza angolano"
30
+ :other: "Kwanzas angolanos"
31
+ :AOK:
32
+ :one: "Kwanza angolano (AOK)"
33
+ :other: "Kwanzas angolanos (AOK)"
34
+ :AON:
35
+ :one: "Novo kwanza angolano (AON)"
36
+ :other: "Novos kwanzas angolanos (AON)"
37
+ :AOR:
38
+ :one: "Kwanza angolano reajustado (AOR)"
39
+ :other: "Kwanzas angolanos reajustados (AOR)"
40
+ :ARA:
41
+ :one: "Austral argentino"
42
+ :other: "Austrais argentinos"
43
+ :ARL:
44
+ :one: "Peso lei argentino (19701983)"
45
+ :other: "Pesos lei argentinos (19701983)"
46
+ :ARM:
47
+ :one: "Peso argentino (18811970)"
48
+ :other: "Pesos argentinos (18811970)"
49
+ :ARP:
50
+ :one: "Peso argentino (19831985)"
51
+ :other: "Pesos argentinos (19831985)"
52
+ :ARS:
53
+ :one: "Peso argentino"
54
+ :other: "Pesos argentinos"
55
+ :symbol: "$"
56
+ :ATS:
57
+ :one: "Schilling australiano"
58
+ :other: "Schillings australianos"
59
+ :AUD:
60
+ :one: "Dólar australiano"
61
+ :other: "Dólares australianos"
62
+ :symbol: "AU$"
63
+ :AWG:
64
+ :one: "Florim arubano"
65
+ :other: "Florins arubanos"
66
+ :AZM:
67
+ :one: "Manat do Azeibaijão (19932006)"
68
+ :other: "Manats do Azeibaijão (1993–2006)"
69
+ :AZN:
70
+ :one: "Manat azeri"
71
+ :other: "Manats azeris"
72
+ :BAD:
73
+ :one: "Dinar da Bósnia Herzegovina"
74
+ :other: "Dinares da Bósnia Herzegovina"
75
+ :BAM:
76
+ :one: "Marca conversível da Bósnia Herzegovina"
77
+ :other: "Marcas conversíveis da Bósnia Herzegovina"
78
+ :BAN:
79
+ :one: "Novo dinar da Bósnia-Herzegovina"
80
+ :other: "Novos dinares da Bósnia-Herzegovina"
81
+ :BBD:
82
+ :one: "Dólar barbadense"
83
+ :other: "Dólares barbadenses"
84
+ :symbol: "$"
85
+ :BDT:
86
+ :one: "Taka bengalesa"
87
+ :other: "Takas bengalesas"
88
+ :symbol: "৳"
89
+ :BEC:
90
+ :one: "Franco belga (conversível)"
91
+ :other: "Francos belgas (conversíveis)"
92
+ :BEF:
93
+ :one: "Franco belga"
94
+ :other: "Francos belgas"
95
+ :BEL:
96
+ :one: "Franco belga (financeiro)"
97
+ :other: "Francos belgas (financeiros)"
98
+ :BGL:
99
+ :one: "Lev forte búlgaro"
100
+ :other: "Levs fortes búlgaros"
101
+ :BGM:
102
+ :one: "Lev socialista búlgaro"
103
+ :other: "Levs socialistas búlgaros"
104
+ :BGN:
105
+ :one: "Lev búlgaro"
106
+ :other: "Levs búlgaros"
107
+ :BGO:
108
+ :one: "Lev búlgaro (1879–1952)"
109
+ :other: "Levs búlgaros (1879–1952)"
110
+ :BHD:
111
+ :one: "Dinar bareinita"
112
+ :other: "Dinares bareinitas"
113
+ :BIF:
114
+ :one: "Franco burundiano"
115
+ :other: "Francos burundianos"
116
+ :BMD:
117
+ :one: "Dólar bermudense"
118
+ :other: "Dólares bermudenses"
119
+ :symbol: "$"
120
+ :BND:
121
+ :one: "Dólar bruneano"
122
+ :other: "Dólares bruneanos"
123
+ :symbol: "$"
124
+ :BOB:
125
+ :one: "Boliviano"
126
+ :other: "Bolivianos"
127
+ :BOL:
128
+ :one: "Boliviano (1863–1963)"
129
+ :other: "Bolivianos (1863–1963)"
130
+ :BOP:
131
+ :one: "Peso boliviano"
132
+ :other: "Pesos bolivianos"
133
+ :BOV:
134
+ :one: "Mvdol boliviano"
135
+ :other: "Mvdols bolivianos"
136
+ :BRB:
137
+ :one: "Cruzeiro novo brasileiro (BRB)"
138
+ :other: "Cruzeiros novos brasileiros (BRB)"
139
+ :BRC:
140
+ :one: "Cruzado brasileiro"
141
+ :other: "Cruzados brasileiros"
142
+ :BRE:
143
+ :one: "Cruzeiro brasileiro (BRE)"
144
+ :other: "Cruzeiros brasileiros (BRE)"
145
+ :BRL:
146
+ :one: "Real brasileiro"
147
+ :other: "Reais brasileiros"
148
+ :symbol: "R$"
149
+ :BRN:
150
+ :one: "Cruzado novo brasileiro"
151
+ :other: "Cruzados novos brasileiros"
152
+ :BRR:
153
+ :one: "Cruzeiro brasileiro"
154
+ :other: "Cruzeiros brasileiros"
155
+ :BRZ:
156
+ :one: "Cruzeiro brasileiro antigo"
157
+ :other: "Cruzeiros brasileiros antigos"
158
+ :BSD:
159
+ :one: "Dólar bahamense"
160
+ :other: "Dólares bahamenses"
161
+ :symbol: "$"
162
+ :BTN:
163
+ :one: "Ngultrum butanês"
164
+ :other: "Ngultruns butaneses"
165
+ :BUK:
166
+ :one: "Kyat burmês"
167
+ :other: "Kyats burmeses"
168
+ :BWP:
169
+ :one: "Pula de Botsuana"
170
+ :other: "Pulas de Botsuana"
171
+ :BYB:
172
+ :one: "Novo rublo bielorusso (BYB)"
173
+ :other: "Novos rublos bielorussos (BYB)"
174
+ :BYR:
175
+ :one: "Rublo bielorrusso"
176
+ :other: "Rublos bielorrussos"
177
+ :symbol: "р."
178
+ :BZD:
179
+ :one: "Dólar belizenho"
180
+ :other: "Dólares belizenhos"
181
+ :symbol: "$"
182
+ :CAD:
183
+ :one: "Dólar canadense"
184
+ :other: "Dólares canadenses"
185
+ :symbol: "CA$"
186
+ :CDF:
187
+ :one: "Franco congolês"
188
+ :other: "Francos congoleses"
189
+ :CHE:
190
+ :one: "Euro WIR"
191
+ :other: "Euros WIR"
192
+ :CHF:
193
+ :one: "Franco suíço"
194
+ :other: "Francos suíços"
195
+ :CHW:
196
+ :one: "Franco WIR"
197
+ :other: "Francos WIR"
198
+ :CLE:
199
+ :one: "Escudo chileno"
200
+ :other: "Escudos chilenos"
201
+ :CLF:
202
+ :one: "Unidade 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: "Dólar do Banco Popular da China"
210
+ :other: "Dólares do Banco Popular da China"
211
+ :CNY:
212
+ :one: "Yuan chinês"
213
+ :other: "Yuans chineses"
214
+ :symbol: "CN¥"
215
+ :COP:
216
+ :one: "Peso colombiano"
217
+ :other: "Pesos colombianos"
218
+ :symbol: "$"
219
+ :COU:
220
+ :one: "Unidade de valor real"
221
+ :other: "Unidades de valor real"
222
+ :CRC:
223
+ :one: "Colón costarriquenho"
224
+ :other: "Colóns costarriquenhos"
225
+ :symbol: "₡"
226
+ :CSD:
227
+ :one: "Dinar antigo da Sérvia"
228
+ :other: "Dinares antigos da Sérvia"
229
+ :CSK:
230
+ :one: "Coroa forte tchecoslovaca"
231
+ :other: "Coroas fortes tchecoslovacas"
232
+ :CUC:
233
+ :one: "Peso cubano conversível"
234
+ :other: "Pesos cubanos conversíveis"
235
+ :CUP:
236
+ :one: "Peso cubano"
237
+ :other: "Pesos cubanos"
238
+ :symbol: "$"
239
+ :CVE:
240
+ :one: "Escudo cabo-verdiano"
241
+ :other: "Escudos cabo-verdianos"
242
+ :CYP:
243
+ :one: "Libra cipriota"
244
+ :other: "Libras cipriotas"
245
+ :CZK:
246
+ :one: "Coroa da República Tcheca"
247
+ :other: "Coroas da República Tcheca"
248
+ :DDM:
249
+ :one: "Marco da Alemanha Oriental"
250
+ :other: "Marcos da Alemanha Oriental"
251
+ :DEM:
252
+ :one: "Marco alemão"
253
+ :other: "Marcos alemães"
254
+ :DJF:
255
+ :one: "Franco djibutiense"
256
+ :other: "Francos djibutienses"
257
+ :DKK:
258
+ :one: "Coroa dinamarquesa"
259
+ :other: "Coroas dinamarquesas"
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 equatoriano"
269
+ :other: "Sucres equatorianos"
270
+ :ECV:
271
+ :one: "Unidade de valor constante equatoriana (UVC)"
272
+ :other: "Unidades de valor constante equatorianas (UVC)"
273
+ :EEK:
274
+ :one: "Coroa estoniana"
275
+ :other: "Coroas estonianas"
276
+ :EGP:
277
+ :one: "Libra egípcia"
278
+ :other: "Libras egípcias"
279
+ :ERN:
280
+ :one: "Nakfa da Eritreia"
281
+ :other: "Nakfas da Eritreia"
282
+ :ESA:
283
+ :one: "Peseta espanhola (conta A)"
284
+ :other: "Pesetas espanholas (conta A)"
285
+ :ESB:
286
+ :one: "Peseta espanhola (conta conversível)"
287
+ :other: "Pesetas espanholas (conta conversível)"
288
+ :ESP:
289
+ :one: "Peseta espanhola"
290
+ :other: "Pesetas espanholas"
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 fijiano"
304
+ :other: "Dólares fijianos"
305
+ :symbol: "$"
306
+ :FKP:
307
+ :one: "Libra malvinense"
308
+ :other: "Libras malvinenses"
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: "£"
316
+ :GEK:
317
+ :one: "Kupon larit da Geórgia"
318
+ :other: "Kupon larits da Geórgia"
319
+ :GEL:
320
+ :one: "Lari da Geórgia"
321
+ :other: "Laris da Geórgia"
322
+ :GHC:
323
+ :one: "Cedi de Gana (1979–2007)"
324
+ :other: "Cedis de Gana (1979–2007)"
325
+ :GHS:
326
+ :one: "Cedi ganês"
327
+ :other: "Cedis ganeses"
328
+ :symbol: "₵"
329
+ :GIP:
330
+ :one: "Libra de Gibraltar"
331
+ :other: "Libras de Gibraltar"
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: "Sylis guineanos"
342
+ :GQE:
343
+ :one: "Ekwele da Guiné Equatorial"
344
+ :other: "Ekweles da Guiné Equatorial"
345
+ :GRD:
346
+ :one: "Dracma grego"
347
+ :other: "Dracmas gregos"
348
+ :GTQ:
349
+ :one: "Quetzal guatemalense"
350
+ :other: "Quetzais guatemalenses"
351
+ :GWE:
352
+ :one: "Escudo da Guiné Portuguesa"
353
+ :other: "Escudos da Guinéa Portuguesa"
354
+ :GWP:
355
+ :one: "Peso de Guiné-Bissau"
356
+ :other: "Pesos de Guiné-Bissau"
357
+ :GYD:
358
+ :one: "Dólar guianense"
359
+ :other: "Dólares guianenses"
360
+ :symbol: "$"
361
+ :HKD:
362
+ :one: "Dólar de Hong Kong"
363
+ :other: "Dólares de Hong Kong"
364
+ :symbol: "HK$"
365
+ :HNL:
366
+ :one: "Lempira hondurenha"
367
+ :other: "Lempiras hondurenhas"
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: "Forint húngaro"
379
+ :other: "Forints húngaros"
380
+ :IDR:
381
+ :one: "Rupia indonésia"
382
+ :other: "Rupias indonésias"
383
+ :IEP:
384
+ :one: "Libra irlandesa"
385
+ :other: "Libras irlandesas"
386
+ :ILP:
387
+ :one: "Libra israelita"
388
+ :other: "Libras israelitas"
389
+ :ILR:
390
+ :one: "Sheqel antigo israelita"
391
+ :other: "Sheqels antigos israelitas"
392
+ :ILS:
393
+ :one: "Sheqel novo israelita"
394
+ :other: "Sheqels novo israelitas"
395
+ :symbol: "₪"
396
+ :INR:
397
+ :one: "Rupia indiana"
398
+ :other: "Rupias indianas"
399
+ :symbol: "₹"
400
+ :IQD:
401
+ :one: "Dinar iraquiano"
402
+ :other: "Dinares iraquianos"
403
+ :IRR:
404
+ :one: "Rial iraniano"
405
+ :other: "Riales iranianos"
406
+ :ISJ:
407
+ :one: "Coroa antiga islandesa"
408
+ :other: "Coroas antigas islandesas"
409
+ :ISK:
410
+ :one: "Coroa islandesa"
411
+ :other: "Coroas islandesas"
412
+ :ITL:
413
+ :one: "Lira italiana"
414
+ :other: "Liras italianas"
415
+ :JMD:
416
+ :one: "Dólar jamaicano"
417
+ :other: "Dólares jamaicanos"
418
+ :symbol: "$"
419
+ :JOD:
420
+ :one: "Dinar jordaniano"
421
+ :other: "Dinares jordanianos"
422
+ :JPY:
423
+ :one: "Iene japonês"
424
+ :other: "Ienes japoneses"
425
+ :symbol: "JP¥"
426
+ :KES:
427
+ :one: "Shilling queniano"
428
+ :other: "Shillings quenianos"
429
+ :KGS:
430
+ :one: "Som quirguiz"
431
+ :other: "Sons quirguizes"
432
+ :KHR:
433
+ :one: "Riel cambojano"
434
+ :other: "Rieles cambojanos"
435
+ :symbol: "៛"
436
+ :KMF:
437
+ :one: "Franco comorense"
438
+ :other: "Francos comorenses"
439
+ :KPW:
440
+ :one: "Won norte-coreano"
441
+ :other: "Wons norte-coreanos"
442
+ :KRH:
443
+ :one: "Hwan da Coreia do Sul"
444
+ :other: "Hwans da Coreia do Sul"
445
+ :KRO:
446
+ :one: "Won antigo da Coreia do Sul"
447
+ :other: "Wons antigos da Coreia do Sul"
448
+ :KRW:
449
+ :one: "Won sul-coreano"
450
+ :other: "Wons sul-coreanos"
451
+ :symbol: "₩"
452
+ :KWD:
453
+ :one: "Dinar kuwaitiano"
454
+ :other: "Dinares kuwaitianos"
455
+ :KYD:
456
+ :one: "Dólar das Ilhas Cayman"
457
+ :other: "Dólares das Ilhas Caiman"
458
+ :symbol: "$"
459
+ :KZT:
460
+ :one: "Tenge cazaque"
461
+ :other: "Tenges cazaques"
462
+ :symbol: "₸"
463
+ :LAK:
464
+ :one: "Kip do Laos"
465
+ :other: "Kips do Laos"
466
+ :symbol: "₭"
467
+ :LBP:
468
+ :one: "Libra libanesa"
469
+ :other: "Libras libanesas"
470
+ :LKR:
471
+ :one: "Rupia ceilandesa"
472
+ :other: "Rupias ceilandesas"
473
+ :LRD:
474
+ :one: "Dólar liberiano"
475
+ :other: "Dólares liberianos"
476
+ :symbol: "$"
477
+ :LSL:
478
+ :one: "Loti do Lesoto"
479
+ :other: "Lotis do Lesoto"
480
+ :LTL:
481
+ :one: "Litas lituano"
482
+ :other: "Litai lituanos"
483
+ :LTT:
484
+ :one: "Talonas lituanas"
485
+ :other: "Talonases lituanas"
486
+ :LUC:
487
+ :one: "Franco conversível de Luxemburgo"
488
+ :other: "Francos conversíveis de Luxemburgo"
489
+ :LUF:
490
+ :one: "Franco de Luxemburgo"
491
+ :other: "Francos de Luxemburgo"
492
+ :LUL:
493
+ :one: "Franco financeiro de Luxemburgo"
494
+ :other: "Francos financeiros de Luxemburgo"
495
+ :LVL:
496
+ :one: "Lats letão"
497
+ :other: "Lati letões"
498
+ :LVR:
499
+ :one: "Rublo da Letônia"
500
+ :other: "Rublos da Letônia"
501
+ :LYD:
502
+ :one: "Dinar líbio"
503
+ :other: "Dinares líbios"
504
+ :MAD:
505
+ :one: "Dirrã marroquino"
506
+ :other: "Dirrãs marroquinos"
507
+ :MAF:
508
+ :one: "Franco marroquino"
509
+ :other: "Francos marroquinos"
510
+ :MCF:
511
+ :one: "Franco monegasco"
512
+ :other: "Francos monegascos"
513
+ :MDC:
514
+ :one: "Cupon moldávio"
515
+ :other: "Cupon moldávio"
516
+ :MDL:
517
+ :one: "Leu moldávio"
518
+ :other: "Leus moldávios"
519
+ :MGA:
520
+ :one: "Ariary malgaxe"
521
+ :other: "Ariarys malgaxes"
522
+ :MGF:
523
+ :one: "Franco de Madagascar"
524
+ :other: "Francos de Madagascar"
525
+ :MKD:
526
+ :one: "Dinar da Macedônia"
527
+ :other: "Dinares da Macedônia"
528
+ :MKN:
529
+ :one: "Dinar macedônio (1992–1993)"
530
+ :other: "Dinares macedônios (1992–1993)"
531
+ :MLF:
532
+ :one: "Franco de Mali"
533
+ :other: "Francos de Mali"
534
+ :MMK:
535
+ :one: "Kyat mianmarense"
536
+ :other: "Kyats mianmarenses"
537
+ :MNT:
538
+ :one: "Tugrik da Mongólia"
539
+ :other: "Tugriks da Mongólia"
540
+ :symbol: "₮"
541
+ :MOP:
542
+ :one: "Pataca macaense"
543
+ :other: "Patacas macaenses"
544
+ :MRO:
545
+ :one: "Ouguiya mauritana"
546
+ :other: "Ouguiyas mauritanas"
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: "Rupia maldiva"
561
+ :other: "Rupias maldivas"
562
+ :MWK:
563
+ :one: "Kwacha malawiana"
564
+ :other: "Kwachas malawianas"
565
+ :MXN:
566
+ :one: "Peso mexicano"
567
+ :other: "Pesos mexicanos"
568
+ :symbol: "MX$"
569
+ :MXP:
570
+ :one: "Peso de prata mexicano (1861–1992)"
571
+ :other: "Pesos de prata mexicanos (1861–1992)"
572
+ :MXV:
573
+ :one: "Unidade de investimento mexicana (UDI)"
574
+ :other: "Unidades de investimento mexicanas (UDI)"
575
+ :MYR:
576
+ :one: "Ringgit malaio"
577
+ :other: "Ringgits malaios"
578
+ :MZE:
579
+ :one: "Escudo de Moçambique"
580
+ :other: "Escudos de Moçambique"
581
+ :MZM:
582
+ :one: "Metical antigo de Moçambique"
583
+ :other: "Meticales antigos de Moçambique"
584
+ :MZN:
585
+ :one: "Metical moçambicano"
586
+ :other: "Meticales de Moçambique"
587
+ :NAD:
588
+ :one: "Dólar namibiano"
589
+ :other: "Dólares namibianos"
590
+ :symbol: "$"
591
+ :NGN:
592
+ :one: "Naira nigeriana"
593
+ :other: "Nairas nigerianas"
594
+ :symbol: "₦"
595
+ :NIC:
596
+ :one: "Córdoba nicaraguense (1988–1991)"
597
+ :other: "Córdobas nicaraguense (1988–1991)"
598
+ :NIO:
599
+ :one: "Córdoba nicaraguense"
600
+ :other: "Córdobas nicaraguenses"
601
+ :NLG:
602
+ :one: "Florim holandês"
603
+ :other: "Florins holandeses"
604
+ :NOK:
605
+ :one: "Coroa norueguesa"
606
+ :other: "Coroas norueguesas"
607
+ :NPR:
608
+ :one: "Rupia nepalesa"
609
+ :other: "Rupias nepalesas"
610
+ :NZD:
611
+ :one: "Dólar da Nova Zelândia"
612
+ :other: "Dólares da Nova Zelândia"
613
+ :symbol: "NZ$"
614
+ :OMR:
615
+ :one: "Rial omanense"
616
+ :other: "Riales de Omã"
617
+ :PAB:
618
+ :one: "Balboa panamenha"
619
+ :other: "Balboas panamenhas"
620
+ :PEI:
621
+ :one: "Inti peruano"
622
+ :other: "Intis peruanos"
623
+ :PEN:
624
+ :one: "Novo sol peruano"
625
+ :other: "Novos sóis peruanos"
626
+ :PES:
627
+ :one: "Sol peruano"
628
+ :other: "Soles peruanos"
629
+ :PGK:
630
+ :one: "Kina papuásia"
631
+ :other: "Kinas papuásias"
632
+ :PHP:
633
+ :one: "Peso filipino"
634
+ :other: "Pesos filipinos"
635
+ :symbol: "₱"
636
+ :PKR:
637
+ :one: "Rupia paquistanesa"
638
+ :other: "Rupias paquistanesas"
639
+ :PLN:
640
+ :one: "Zloti polonês"
641
+ :other: "Zlotis poloneses"
642
+ :PLZ:
643
+ :one: "Zloti polonês (1950–1995)"
644
+ :other: "Zlotis poloneses (1950–1995)"
645
+ :PTE:
646
+ :one: "Escudo português"
647
+ :other: "Escudos portugueses"
648
+ :symbol: "Esc."
649
+ :PYG:
650
+ :one: "Guarani paraguaio"
651
+ :other: "Guaranis paraguaios"
652
+ :symbol: "₲"
653
+ :QAR:
654
+ :one: "Rial do Qatar"
655
+ :other: "Riales do Qatar"
656
+ :RHD:
657
+ :one: "Dólar da Rodésia"
658
+ :other: "Dólares da Rodésia"
659
+ :ROL:
660
+ :one: "Leu antigo da Romênia"
661
+ :other: "Leus antigos da Romênia"
662
+ :RON:
663
+ :one: "Leu da Romênia"
664
+ :other: "Leus da Romênia"
665
+ :RSD:
666
+ :one: "Dinar sérvio"
667
+ :other: "Dinares sérvios"
668
+ :RUB:
669
+ :one: "Rublo russo"
670
+ :other: "Rublos russos"
671
+ :RUR:
672
+ :one: "Rublo russo (1991–1998)"
673
+ :other: "Rublos russos (1991–1998)"
674
+ :symbol: "р."
675
+ :RWF:
676
+ :one: "Franco de Ruanda"
677
+ :other: "Francos de Ruanda"
678
+ :SAR:
679
+ :one: "Riyal saudita"
680
+ :other: "Riyales sauditas"
681
+ :SBD:
682
+ :one: "Dólar das Ilhas Salomão"
683
+ :other: "Dólares das Ilhas Salomão"
684
+ :symbol: "$"
685
+ :SCR:
686
+ :one: "Rupia seichelense"
687
+ :other: "Rupias seichelenses"
688
+ :SDD:
689
+ :one: "Dinar antigo do Sudão"
690
+ :other: "Dinares antigos do Sudão"
691
+ :SDG:
692
+ :one: "Libra sudanesa"
693
+ :other: "Libras sudanesas"
694
+ :SDP:
695
+ :one: "Libra antiga sudanesa"
696
+ :other: "Libras antigas sudanesas"
697
+ :SEK:
698
+ :one: "Coroa sueca"
699
+ :other: "Coroas suecas"
700
+ :SGD:
701
+ :one: "Dólar de Singapura"
702
+ :other: "Dólares de Singapura"
703
+ :symbol: "$"
704
+ :SHP:
705
+ :one: "Libra de Santa Helena"
706
+ :other: "Libras de Santa Helena"
707
+ :SIT:
708
+ :one: "Tolar da Eslovênia"
709
+ :other: "Tolares da Eslovênia"
710
+ :SKK:
711
+ :one: "Coroa eslovaca"
712
+ :other: "Coroas eslovacas"
713
+ :SLL:
714
+ :one: "Leone de Serra Leoa"
715
+ :other: "Leones de Serra Leoa"
716
+ :SOS:
717
+ :one: "Shilling da Somália"
718
+ :other: "Shillings da Somália"
719
+ :SRD:
720
+ :one: "Dólar surinamês"
721
+ :other: "Dólares surinameses"
722
+ :symbol: "$"
723
+ :SRG:
724
+ :one: "Florim do Suriname"
725
+ :other: "Florins do Suriname"
726
+ :SSP:
727
+ :one: "Libra sul-sudanesa"
728
+ :other: "Libras sul-sudanesas"
729
+ :symbol: "£"
730
+ :STD:
731
+ :one: "Dobra de São Tomé e Príncipe"
732
+ :other: "Dobras de São Tomé e Príncipe"
733
+ :SUR:
734
+ :one: "Rublo soviético"
735
+ :other: "Rublos soviéticos"
736
+ :SVC:
737
+ :one: "Colon de El Salvador"
738
+ :other: "Colons de El Salvador"
739
+ :SYP:
740
+ :one: "Libra síria"
741
+ :other: "Libras sírias"
742
+ :SZL:
743
+ :one: "Lilangeni suazi"
744
+ :other: "Lilangenis suazis"
745
+ :THB:
746
+ :one: "Baht da Tailândia"
747
+ :other: "Bahts tailandeses"
748
+ :symbol: "฿"
749
+ :TJR:
750
+ :one: "Rublo do Tajaquistão"
751
+ :other: "Rublos do Tajaquistão"
752
+ :TJS:
753
+ :one: "Somoni tadjique"
754
+ :other: "Somonis tadjiques"
755
+ :TMM:
756
+ :one: "Manat do Turcomenistão (1993–2009)"
757
+ :other: "Manats do Turcomenistão (1993–2009)"
758
+ :TMT:
759
+ :one: "Manat do Turcomenistão"
760
+ :other: "Manats do Turcomenistão"
761
+ :TND:
762
+ :one: "Dinar tunisiano"
763
+ :other: "Dinares tunisianos"
764
+ :TOP:
765
+ :one: "Paʻanga tonganesa"
766
+ :other: "Paʻangas tonganesas"
767
+ :TPE:
768
+ :one: "Escudo do Timor"
769
+ :other: "Escudos do Timor"
770
+ :TRL:
771
+ :one: "Lira turca antiga"
772
+ :other: "Liras turcas antigas"
773
+ :TRY:
774
+ :one: "Lira turca"
775
+ :other: "Liras turcas"
776
+ :symbol: "₺"
777
+ :TTD:
778
+ :one: "Dólar de Trinidad e Tobago"
779
+ :other: "Dólares de Trinidad e Tobago"
780
+ :symbol: "$"
781
+ :TWD:
782
+ :one: "Novo dólar taiwanês"
783
+ :other: "Novos dólares taiwaneses"
784
+ :symbol: "NT$"
785
+ :TZS:
786
+ :one: "Shilling da Tanzânia"
787
+ :other: "Shillings da Tanzânia"
788
+ :UAH:
789
+ :one: "Hryvnia da Ucrânia"
790
+ :other: "Hryvnias da Ucrânia"
791
+ :symbol: "₴"
792
+ :UAK:
793
+ :one: "Karbovanetz da Ucrânia"
794
+ :other: "Karbovanetzs da Ucrânia"
795
+ :UGS:
796
+ :one: "Shilling de Uganda (1966–1987)"
797
+ :other: "Shillings de Uganda (1966–1987)"
798
+ :UGX:
799
+ :one: "Shilling de Uganda"
800
+ :other: "Shillings de Uganda"
801
+ :USD:
802
+ :one: "Dólar americano"
803
+ :other: "Dólares americanos"
804
+ :symbol: "US$"
805
+ :USN:
806
+ :one: "Dólar americano (dia seguinte)"
807
+ :other: "Dólares americanos (dia seguinte)"
808
+ :USS:
809
+ :one: "Dólar americano (mesmo dia)"
810
+ :other: "Dólares americanos (mesmo dia)"
811
+ :UYI:
812
+ :one: "Peso uruguaio em unidades indexadas"
813
+ :other: "Pesos uruguaios em unidades indexadas"
814
+ :UYP:
815
+ :one: "Peso uruguaio (1975–1993)"
816
+ :other: "Pesos uruguaios (1975–1993)"
817
+ :UYU:
818
+ :one: "Peso uruguaio"
819
+ :other: "Pesos uruguaios"
820
+ :symbol: "$"
821
+ :UZS:
822
+ :one: "Som uzbeque"
823
+ :other: "Sons uzbeques"
824
+ :VEB:
825
+ :one: "Bolívar venezuelano (1871–2008)"
826
+ :other: "Bolívares venezuelanos (1871–2008)"
827
+ :VEF:
828
+ :one: "Bolívar venezuelano"
829
+ :other: "Bolívares venezuelanos"
830
+ :VND:
831
+ :one: "Dong vietnamita"
832
+ :other: "Dongs vietnamitas"
833
+ :symbol: "₫"
834
+ :VNN:
835
+ :one: "Dong vietnamita (1978–1985)"
836
+ :other: "Dong vietnamita (1978–1985)"
837
+ :VUV:
838
+ :one: "Vatu de Vanuatu"
839
+ :other: "Vatus de Vanuatu"
840
+ :WST:
841
+ :one: "Tala samoano"
842
+ :other: "Talas samoanos"
843
+ :XAF:
844
+ :one: "Franco CFA de BEAC"
845
+ :other: "Francos CFA de BEAC"
846
+ :symbol: "FCFA"
847
+ :XAG:
848
+ :one: "Prata"
849
+ :other: "Pratas"
850
+ :XAU:
851
+ :one: "Ouro"
852
+ :other: "Ouros"
853
+ :XBA:
854
+ :one: "Unidade de composição europeia"
855
+ :other: "Unidades de composição europeias"
856
+ :XBB:
857
+ :one: "Unidade monetária europeia"
858
+ :other: "Unidades monetárias europeias"
859
+ :XBC:
860
+ :one: "Unidade europeia de conta (XBC)"
861
+ :other: "Unidades europeias de conta (XBC)"
862
+ :XBD:
863
+ :one: "Unidade europeia de conta (XBD)"
864
+ :other: "Unidades europeias de conta (XBD)"
865
+ :XCD:
866
+ :one: "Dólar do Caribe Oriental"
867
+ :other: "Dólares do Caribe Oriental"
868
+ :symbol: "EC$"
869
+ :XDR:
870
+ :one: "Direitos de desenho especiais"
871
+ :other: "Direitos de desenho especiais"
872
+ :XEU:
873
+ :one: "Unidade de moeda europeia"
874
+ :other: "Unidades de moedas europeias"
875
+ :XFO:
876
+ :one: "Franco de ouro francês"
877
+ :other: "Francos de ouro franceses"
878
+ :XFU:
879
+ :one: "Franco UIC francês"
880
+ :other: "Francos UIC franceses"
881
+ :XOF:
882
+ :one: "Franco CFA de BCEAO"
883
+ :other: "Francos CFA de BCEAO"
884
+ :symbol: "CFA"
885
+ :XPD:
886
+ :one: "Paládio"
887
+ :other: "Paládios"
888
+ :XPF:
889
+ :one: "Franco CFP"
890
+ :other: "Francos CFP"
891
+ :symbol: "CFPF"
892
+ :XPT:
893
+ :one: "Platina"
894
+ :other: "Platinas"
895
+ :XRE:
896
+ :one: "Fundos RINET"
897
+ :other: "Fundos RINET"
898
+ :XSU:
899
+ :one: "Sucre"
900
+ :other: "Sucres"
901
+ :XTS:
902
+ :one: "Código de moeda de teste"
903
+ :other: "Códigos de moeda de teste"
904
+ :XUA:
905
+ :one: "ADB unit of account"
906
+ :other: "ADB units of account"
907
+ :XXX:
908
+ :one: "(moeda desconhecida)"
909
+ :other: "(moedas desconhecidas)"
910
+ :YDD:
911
+ :one: "Dinar do Iêmen"
912
+ :other: "Dinares do Iêmen"
913
+ :YER:
914
+ :one: "Rial do Iêmen"
915
+ :other: "Riales do Iêmen"
916
+ :YUD:
917
+ :one: "Dinar forte iugoslavo"
918
+ :other: "Dinares fortes iugoslavos"
919
+ :YUM:
920
+ :one: "Dinar noviy da Iugoslávia"
921
+ :other: "Dinares noviy da Iugoslávia"
922
+ :YUN:
923
+ :one: "Dinar conversível da Iugoslávia"
924
+ :other: "Dinares conversíveis da Iugoslávia"
925
+ :YUR:
926
+ :one: "Dinar iugoslavo reformado"
927
+ :other: "Dinares iugoslavos reformados"
928
+ :ZAL:
929
+ :one: "Rand da África do Sul (financeiro)"
930
+ :other: "Rands da África do Sul (financeiro)"
931
+ :ZAR:
932
+ :one: "Rand sul-africano"
933
+ :other: "Rands sul-africanos"
934
+ :ZMK:
935
+ :one: "Kwacha da Zâmbia (1968–2012)"
936
+ :other: "Kwachas da Zâmbia (1968–2012)"
937
+ :ZMW:
938
+ :one: "Kwacha da Zâmbia"
939
+ :other: "Kwachas da Zâmbia"
940
+ :ZRN:
941
+ :one: "Novo zaire do Zaire"
942
+ :other: "Novos zaires do Zaire"
943
+ :ZRZ:
944
+ :one: "Zaire do Zaire"
945
+ :other: "Zaires do Zaire"
946
+ :ZWD:
947
+ :one: "Dólar do Zimbábue"
948
+ :other: "Dólares do Zimbábue"
949
+ :ZWL:
950
+ :one: "Dólar do Zimbábue (2009)"
951
+ :other: "Dólares do Zimbábue (2009)"
952
+ :ZWR:
953
+ :one: "Dólar do Zimbábue (2008)"
954
+ :other: "Dólares do Zimbábue (2008)"