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,1132 +1,1170 @@
1
- ---
2
- :ro:
3
- :currencies:
4
- :ADP:
5
- :few: pesete andorrane
6
- :one: pesetă andorrană
7
- :other: pesete andorrane
8
- :AED:
9
- :few: dirhami Emiratele Arabe Unite
10
- :one: dirham Emiratele Arabe Unite
11
- :other: dirhami Emiratele Arabe Unite
12
- :AFA:
13
- :one: Afghan afghani (1927-2002)
14
- :other: Afghan afghanis (1927-2002)
15
- :AFN:
16
- :few: afgani
17
- :one: afgan
18
- :other: afgani
19
- :ALK:
20
- :one: Albanian lek (1946-1965)
21
- :other: Albanian lekë (1946-1965)
22
- :ALL:
23
- :few: leka albanezi
24
- :one: leka albanez
25
- :other: leka albanezi
26
- :AMD:
27
- :few: drami armenești
28
- :one: dram armenesc
29
- :other: drami armenești
30
- :ANG:
31
- :few: guldeni Antilele Olandeze
32
- :one: gulden Antilele Olandeze
33
- :other: guldeni Antilele Olandeze
34
- :AOA:
35
- :few: kwanze angoleze
36
- :one: kwanza angoleză
37
- :other: kwanze angoleze
38
- :AOK:
39
- :one: Angolan kwanza (1977-1991)
40
- :other: Angolan kwanzas (1977-1991)
41
- :AON:
42
- :one: Angolan new kwanza (1990-2000)
43
- :other: Angolan new kwanzas (1990-2000)
44
- :AOR:
45
- :one: Angolan readjusted kwanza (1995-1999)
46
- :other: Angolan readjusted kwanzas (1995-1999)
47
- :ARA:
48
- :one: Argentine austral
49
- :other: Argentine australs
50
- :ARL:
51
- :one: Argentine peso ley (1970-1983)
52
- :other: Argentine pesos ley (1970-1983)
53
- :ARM:
54
- :one: Argentine peso (1881-1970)
55
- :other: Argentine pesos (1881-1970)
56
- :ARP:
57
- :few: pesos argentinieni (1983-1985)
58
- :one: peso argentinian (1983-1985)
59
- :other: pesos argentinieni (1983-1985)
60
- :ARS:
61
- :few: pesos argentinieni
62
- :one: peso argentinian
63
- :other: pesos argentinieni
64
- :ATS:
65
- :few: șilingi austrieci
66
- :one: șiling austriac
67
- :other: șilingi austrieci
68
- :AUD:
69
- :few: dolari australieni
70
- :one: dolar australien
71
- :other: dolari australieni
72
- :symbol: A$
73
- :AWG:
74
- :few: florini Aruba
75
- :one: florin Aruba
76
- :other: florini Aruba
77
- :AZM:
78
- :one: manat azer (1993-2006)
79
- :other: Azerbaijani manats (1993-2006)
80
- :AZN:
81
- :few: manați Azerbaidjan
82
- :one: manat Azerbaidjan
83
- :other: manați Azerbaidjan
84
- :BAD:
85
- :few: dinari Bosnia-Herțegovina
86
- :one: dinar Bosnia-Herțegovina (1992-1994)
87
- :other: dinari Bosnia-Herțegovina (1992-1994)
88
- :BAM:
89
- :few: mărci convertibile bosniace
90
- :one: marcă convertibilă bosniacă
91
- :other: mărci convertibile bosniace
92
- :BAN:
93
- :one: Bosnia-Herzegovina new dinar (1994-1997)
94
- :other: Bosnia-Herzegovina new dinars (1994-1997)
95
- :BBD:
96
- :few: dolari Barbados
97
- :one: dolar Barbados
98
- :other: dolari Barbados
99
- :BDT:
100
- :few: taka Bangladeș
101
- :one: taka Bangladeș
102
- :other: taka Bangladeș
103
- :BEC:
104
- :few: franci belgieni (convertibili)
105
- :one: franc belgian (convertibil)
106
- :other: franci belgieni (convertibili)
107
- :BEF:
108
- :few: franci belgieni
109
- :one: franc belgian
110
- :other: franci belgieni
111
- :BEL:
112
- :few: franci belgieni (financiari)
113
- :one: franc belgian (financiar)
114
- :other: franci belgieni (financiari)
115
- :BGL:
116
- :one: Bulgarian hard lev
117
- :other: Bulgarian hard leva
118
- :BGM:
119
- :one: Bulgarian socialist lev
120
- :other: Bulgarian socialist leva
121
- :BGN:
122
- :few: leva bulgărești noi
123
- :one: leva bulgărească nouă
124
- :other: leva bulgărești noi
125
- :BGO:
126
- :one: Bulgarian lev (1879-1952)
127
- :other: Bulgarian leva (1879-1952)
128
- :BHD:
129
- :few: dinari Bahrain
130
- :one: dinar Bahrain
131
- :other: dinari Bahrain
132
- :BIF:
133
- :few: franci Burundi
134
- :one: franc Burundi
135
- :other: franci Burundi
136
- :BMD:
137
- :few: dolari Bermude
138
- :one: dolar Bermude
139
- :other: dolari Bermude
140
- :BND:
141
- :few: dolari Brunei
142
- :one: dolar Brunei
143
- :other: dolari Brunei
144
- :BOB:
145
- :few: bolivieni bolivieni
146
- :one: boliviano bolivian
147
- :other: bolivieni bolivieni
148
- :BOL:
149
- :one: Bolivian boliviano (1863-1963)
150
- :other: Bolivian bolivianos (1863-1963)
151
- :BOP:
152
- :few: pesos bolivieni
153
- :one: peso bolivian
154
- :other: pesos bolivieni
155
- :BOV:
156
- :one: mvdol bolivian
157
- :other: Bolivian mvdols
158
- :BRB:
159
- :one: Brazilian new cruzeiro (1967-1986)
160
- :other: Brazilian new cruzeiros (1967-1986)
161
- :BRC:
162
- :one: Brazilian cruzado (1986-1989)
163
- :other: Brazilian cruzados (1986-1989)
164
- :BRE:
165
- :one: cruzeiro brazilian (19901993)
166
- :other: Brazilian cruzeiros (1990-1993)
167
- :BRL:
168
- :few: reali brazilieni
169
- :one: real brazilian
170
- :other: reali brazilieni
171
- :symbol: R$
172
- :BRN:
173
- :one: Brazilian new cruzado (1989-1990)
174
- :other: Brazilian new cruzados (1989-1990)
175
- :BRR:
176
- :one: cruzeiro brazilian (1993-1994)
177
- :other: Brazilian cruzeiros (1993-1994)
178
- :BRZ:
179
- :one: Brazilian cruzeiro (1942-1967)
180
- :other: Brazilian cruzeiros (1942-1967)
181
- :BSD:
182
- :few: dolari Bahamas
183
- :one: dolar Bahamas
184
- :other: dolari Bahamas
185
- :BTN:
186
- :few: ngultrum Bhutan
187
- :one: ngultrum Bhutan
188
- :other: ngultrum Bhutan
189
- :BUK:
190
- :one: kyat birman
191
- :other: Burmese kyats
192
- :BWP:
193
- :few: pule Botswana
194
- :one: pulă Botswana
195
- :other: pule Botswana
196
- :BYB:
197
- :one: Belarusian new ruble (1994-1999)
198
- :other: Belarusian new rubles (1994-1999)
199
- :BYR:
200
- :few: ruble bieloruse
201
- :one: rublă bielorusă
202
- :other: ruble bieloruse
203
- :BZD:
204
- :few: dolari Belize
205
- :one: dolar Belize
206
- :other: dolari Belize
207
- :CAD:
208
- :few: dolari canadieni
209
- :one: dolar canadian
210
- :other: dolari canadieni
211
- :symbol: CA$
212
- :CDF:
213
- :few: franci congolezi
214
- :one: franc congolez
215
- :other: franci congolezi
216
- :CHE:
217
- :one: WIR euro
218
- :other: WIR euros
219
- :CHF:
220
- :few: franci elvețieni
221
- :one: franc elvețian
222
- :other: franci elvețieni
223
- :CHW:
224
- :one: WIR franc
225
- :other: WIR francs
226
- :CLE:
227
- :one: Chilean escudo
228
- :other: Chilean escudos
229
- :CLF:
230
- :one: Chilean unit of account (UF)
231
- :other: Chilean units of account (UF)
232
- :CLP:
233
- :few: pesos chilieni
234
- :one: peso chilian
235
- :other: pesos chilieni
236
- :CNX:
237
- :one: Chinese People’s Bank dollar
238
- :other: Chinese People’s Bank dollars
239
- :CNY:
240
- :few: yuani renminbi chinezești
241
- :one: yuan renminbi chinezesc
242
- :other: yuani renminbi chinezești
243
- :symbol: CN¥
244
- :COP:
245
- :few: pesos columbieni
246
- :one: peso columbian
247
- :other: pesos columbieni
248
- :COU:
249
- :one: Colombian real value unit
250
- :other: Colombian real value units
251
- :CRC:
252
- :few: coloni costaricani
253
- :one: colon costarican
254
- :other: coloni costaricani
255
- :CSD:
256
- :few: dinari Serbia și Muntenegru (2002-2006)
257
- :one: dinar Serbia și Muntenegru (2002-2006)
258
- :other: dinari Serbia și Muntenegru (2002-2006)
259
- :CSK:
260
- :one: Czechoslovak hard koruna
261
- :other: Czechoslovak hard korunas
262
- :CUC:
263
- :few: pesos cubanezi convertibili
264
- :one: peso cubanez convertibil
265
- :other: pesos cubanezi convertibili
266
- :CUP:
267
- :few: pesos cubanezi
268
- :one: peso cubanez
269
- :other: pesos cubanezi
270
- :CVE:
271
- :few: escudo Capul Verde
272
- :one: escudo Capul Verde
273
- :other: escudo Capul Verde
274
- :CYP:
275
- :few: lire cipriote
276
- :one: liră cipriotă
277
- :other: lire cipriote
278
- :CZK:
279
- :few: coroane cehe
280
- :one: coroană cehă
281
- :other: coroane cehe
282
- :DDM:
283
- :few: mărci est-germane
284
- :one: marcă est-germană
285
- :other: mărci est-germane
286
- :DEM:
287
- :few: mărci germane
288
- :one: marcă germană
289
- :other: mărci germane
290
- :DJF:
291
- :few: franci Djibouti
292
- :one: franc Djibouti
293
- :other: franci Djibouti
294
- :DKK:
295
- :few: coroane daneze
296
- :one: coroană daneză
297
- :other: coroane daneze
298
- :DOP:
299
- :few: pesos dominicani
300
- :one: peso dominican
301
- :other: pesos dominicani
302
- :DZD:
303
- :few: dinari algerieni
304
- :one: dinar algerian
305
- :other: dinari algerieni
306
- :ECS:
307
- :one: sucre Ecuador
308
- :other: Ecuadorian sucres
309
- :ECV:
310
- :one: Ecuadorian unit of constant value
311
- :other: Ecuadorian units of constant value
312
- :EEK:
313
- :few: coroane estoniene
314
- :one: coroană estoniană
315
- :other: coroane estoniene
316
- :EGP:
317
- :few: lire egiptene
318
- :one: liră egipteană
319
- :other: lire egiptene
320
- :ERN:
321
- :few: nafka Eritreea
322
- :one: nafka Eritreea
323
- :other: nafka Eritreea
324
- :ESA:
325
- :one: peseta spaniolă (cont A)
326
- :other: Spanish pesetas (A account)
327
- :ESB:
328
- :one: peseta spaniolă (cont convertibil)
329
- :other: Spanish pesetas (convertible account)
330
- :ESP:
331
- :few: pesete spaniole
332
- :one: pesetă spaniolă
333
- :other: pesete spaniole
334
- :ETB:
335
- :few: birr Etiopia
336
- :one: birr Etiopia
337
- :other: birr Etiopia
338
- :EUR:
339
- :few: euro
340
- :one: euro
341
- :other: euro
342
- :symbol:
343
- :FIM:
344
- :few: mărci finlandeze
345
- :one: mărci finlandeze
346
- :other: mărci finlandeze
347
- :FJD:
348
- :few: dolari Fiji
349
- :one: dolar Fiji
350
- :other: dolari Fiji
351
- :FKP:
352
- :few: lire Insulele Falkland
353
- :one: liră Insulele Falkland
354
- :other: lire Insulele Falkland
355
- :FRF:
356
- :few: franci francezi
357
- :one: franc francez
358
- :other: franci francezi
359
- :GBP:
360
- :few: lire sterline
361
- :one: liră sterlină
362
- :other: lire sterline
363
- :symbol: £
364
- :GEK:
365
- :one: Georgian kupon larit
366
- :other: Georgian kupon larits
367
- :GEL:
368
- :few: lari Georgia
369
- :one: lari Georgia
370
- :other: lari Georgia
371
- :GHC:
372
- :one: cedi Ghana (1979-2007)
373
- :other: Ghanaian cedis (1979-2007)
374
- :GHS:
375
- :few: cedi ghanezi
376
- :one: cedi ghanez
377
- :other: cedi ghanezi
378
- :GIP:
379
- :few: lire Gibraltar
380
- :one: liră Gibraltar
381
- :other: lire Gibraltar
382
- :GMD:
383
- :few: dalasi Gambia
384
- :one: dalasi Gambia
385
- :other: dalasi Gambia
386
- :GNF:
387
- :few: franci Guineea
388
- :one: franc guineean
389
- :other: franci Guineea
390
- :GNS:
391
- :one: Guinean syli
392
- :other: Guinean sylis
393
- :GQE:
394
- :one: Equatorial Guinean ekwele
395
- :other: Equatorial Guinean ekwele
396
- :GRD:
397
- :few: drahme grecești
398
- :one: drahmă grecească
399
- :other: drahme grecești
400
- :GTQ:
401
- :few: quetzal Guatemala
402
- :one: quetzal Guatemala
403
- :other: quetzal Guatemala
404
- :GWE:
405
- :one: Portuguese Guinea escudo
406
- :other: Portuguese Guinea escudos
407
- :GWP:
408
- :few: pesos Guineea-Bissau
409
- :one: peso Guineea-Bissau
410
- :other: pesos Guineea-Bissau
411
- :GYD:
412
- :few: dolari Guyana
413
- :one: dolar guyanez
414
- :other: dolari Guyana
415
- :HKD:
416
- :few: dolari Hong Kong
417
- :one: dolar Hong Kong
418
- :other: dolari Hong Kong
419
- :symbol: HK$
420
- :HNL:
421
- :few: lempire honduriene
422
- :one: lempiră honduriană
423
- :other: lempire honduriene
424
- :HRD:
425
- :few: dinari croați
426
- :one: dinar croat
427
- :other: dinari croați
428
- :HRK:
429
- :few: kune croate
430
- :one: kuna croată
431
- :other: kune croate
432
- :HTG:
433
- :few: gourde Haiti
434
- :one: gourde Haiti
435
- :other: gourde Haiti
436
- :HUF:
437
- :few: forinți maghiari
438
- :one: forint maghiar
439
- :other: forinți maghiari
440
- :IDR:
441
- :few: rupii indoneziene
442
- :one: rupie indoneziană
443
- :other: rupii indoneziene
444
- :IEP:
445
- :few: lire irlandeze
446
- :one: liră irlandeză
447
- :other: lire irlandeze
448
- :ILP:
449
- :few: lire israeliene
450
- :one: liră israeliană
451
- :other: lire israeliene
452
- :ILR:
453
- :one: Israeli sheqel (1980-1985)
454
- :other: Israeli sheqels (1980-1985)
455
- :ILS:
456
- :few: șecheli israelieni noi
457
- :one: șechel israelian nou
458
- :other: șecheli israelieni noi
459
- :symbol:
460
- :INR:
461
- :few: rupii indiene
462
- :one: rupie indiană
463
- :other: rupii indiene
464
- :symbol:
465
- :IQD:
466
- :few: dinari irakieni
467
- :one: dinar irakian
468
- :other: dinari irakieni
469
- :IRR:
470
- :few: riali iranieni
471
- :one: rial iranian
472
- :other: riali iranieni
473
- :ISJ:
474
- :one: Icelandic króna (1918-1981)
475
- :other: Icelandic krónur (1918-1981)
476
- :ISK:
477
- :few: coroane islandeze
478
- :one: coroană islandeză
479
- :other: coroane islandeze
480
- :ITL:
481
- :few: lire italiene
482
- :one: liră italiană
483
- :other: lire italiene
484
- :JMD:
485
- :few: dolari jamaicani
486
- :one: dolar jamaican
487
- :other: dolari jamaicani
488
- :JOD:
489
- :few: dinari iordanieni
490
- :one: dinar iordanian
491
- :other: dinari iordanieni
492
- :JPY:
493
- :few: yeni japonezi
494
- :one: yen japonez
495
- :other: yeni japonezi
496
- :symbol: ¥
497
- :KES:
498
- :few: șilingi kenyeni
499
- :one: șiling kenyan
500
- :other: șilingi kenyeni
501
- :KGS:
502
- :few: som Kirghizstan
503
- :one: som Kirghizstan
504
- :other: som Kirghizstan
505
- :KHR:
506
- :few: rieli cambodgieni
507
- :one: riel cambodgian
508
- :other: rieli cambodgieni
509
- :KMF:
510
- :few: franci comorieni
511
- :one: franc comorian
512
- :other: franci comorieni
513
- :KPW:
514
- :few: woni nord-coreeni
515
- :one: won nord-coreeni
516
- :other: woni nord-coreeni
517
- :KRH:
518
- :one: South Korean hwan (1953-1962)
519
- :other: South Korean hwan (1953-1962)
520
- :KRO:
521
- :one: South Korean won (1945-1953)
522
- :other: South Korean won (1945-1953)
523
- :KRW:
524
- :few: woni sud-coreeni
525
- :one: won sud-corean
526
- :other: woni sud-coreeni
527
- :symbol:
528
- :KWD:
529
- :few: dinari kuweitieni
530
- :one: dinar kuweitian
531
- :other: dinari kuweitieni
532
- :KYD:
533
- :few: dolari Insulele Cayman
534
- :one: dolar Insulele Cayman
535
- :other: dolari Insulele Cayman
536
- :KZT:
537
- :few: tenge Kazahstan
538
- :one: tenge Kazahstan
539
- :other: tenge Kazahstan
540
- :LAK:
541
- :few: kipi Laos
542
- :one: kipi Laos
543
- :other: kipi Laos
544
- :LBP:
545
- :few: lire libaneze
546
- :one: liră libaneză
547
- :other: lire libaneze
548
- :LKR:
549
- :few: rupii Sri Lanka
550
- :one: rupie Sri Lanka
551
- :other: rupii Sri Lanka
552
- :LRD:
553
- :few: dolari liberieni
554
- :one: dolar liberian
555
- :other: dolari liberieni
556
- :LSL:
557
- :one: loti lesothian
558
- :other: Lesotho lotis
559
- :LTL:
560
- :few: lite lituaniene
561
- :one: litas lituaniană
562
- :other: lite lituaniene
563
- :LTT:
564
- :one: Lithuanian talonas
565
- :other: Lithuanian talonases
566
- :LUC:
567
- :few: franci convertibili luxemburghezi
568
- :one: franc convertibil luxemburghez
569
- :other: franci convertibili luxemburghezi
570
- :LUF:
571
- :few: franci luxemburghezi
572
- :one: franc luxemburghez
573
- :other: franci luxemburghezi
574
- :LUL:
575
- :few: franci financiari luxemburghezi
576
- :one: franc financiar luxemburghez
577
- :other: franci financiari luxemburghezi
578
- :LVL:
579
- :few: lats letoni
580
- :one: lats leton
581
- :other: lats letoni
582
- :LVR:
583
- :few: ruble Letonia
584
- :one: rublă Letonia
585
- :other: ruble Letonia
586
- :LYD:
587
- :few: dinari libieni
588
- :one: dinar libian
589
- :other: dinari libieni
590
- :MAD:
591
- :few: dirhami marocani
592
- :one: dirham marocan
593
- :other: dirhami marocani
594
- :MAF:
595
- :few: franci marocani
596
- :one: franc marocan
597
- :other: franci marocani
598
- :MCF:
599
- :one: Monegasque franc
600
- :other: Monegasque francs
601
- :MDC:
602
- :one: Moldovan cupon
603
- :other: Moldovan cupon
604
- :MDL:
605
- :few: lei moldovenești
606
- :one: leu moldovenesc
607
- :other: lei moldovenești
608
- :MGA:
609
- :few: ariary Madagascar
610
- :one: ariary Madagascar
611
- :other: ariary Madagascar
612
- :MGF:
613
- :few: franci Madagascar
614
- :one: franc Madagascar
615
- :other: franci Madagascar
616
- :MKD:
617
- :few: dinari macedoneni
618
- :one: denar macedonean
619
- :other: dinari macedoneni
620
- :MKN:
621
- :one: Macedonian denar (1992-1993)
622
- :other: Macedonian denari (1992-1993)
623
- :MLF:
624
- :few: franci Mali
625
- :one: franc Mali
626
- :other: franci Mali
627
- :MMK:
628
- :few: kyați Myanmar
629
- :one: kyat Myanmar
630
- :other: kyați Myanmar
631
- :MNT:
632
- :few: tugrici mongoli
633
- :one: tugrik mongol
634
- :other: tugriki mongoli
635
- :MOP:
636
- :few: patace Macao
637
- :one: pataca Macao
638
- :other: patace Macao
639
- :MRO:
640
- :few: ouguiya mauritane
641
- :one: ouguiya mauritană
642
- :other: ouguiya mauritane
643
- :MTL:
644
- :few: lire malteze
645
- :one: liră malteză
646
- :other: lire malteze
647
- :MTP:
648
- :one: Maltese pound
649
- :other: Maltese pounds
650
- :MUR:
651
- :few: rupii mauritiene
652
- :one: rupie mauritiană
653
- :other: rupii mauritiene
654
- :MVP:
655
- :one: Maldivian rupee
656
- :other: Maldivian rupees
657
- :MVR:
658
- :few: rufiyaa maldiviene
659
- :one: rufiyaa maldiviană
660
- :other: rufiyaa maldiviene
661
- :MWK:
662
- :few: kwache malawiene
663
- :one: kwacha malawiană
664
- :other: kwache malawiene
665
- :MXN:
666
- :few: pesos mexicani
667
- :one: peso mexican
668
- :other: pesos mexicani
669
- :symbol: MX$
670
- :MXP:
671
- :few: pesos mexicani de argint (1861–1992
672
- :one: peso mexican de argint (1861–1992)
673
- :other: pesos mexicani de argint (1861–1992)
674
- :MXV:
675
- :one: Mexican investment unit
676
- :other: Mexican investment units
677
- :MYR:
678
- :few: ringgit malaiezieni
679
- :one: ringgit malaiezian
680
- :other: ringgit malaiezieni
681
- :MZE:
682
- :one: escudo Mozambic
683
- :other: Mozambican escudos
684
- :MZM:
685
- :one: metical Mozambic vechi
686
- :other: Mozambican meticals (1980-2006)
687
- :MZN:
688
- :few: metical mozambicani
689
- :one: metical mozambican
690
- :other: metical mozambicani
691
- :NAD:
692
- :few: dolari namibieni
693
- :one: dolar namibian
694
- :other: dolari namibieni
695
- :NGN:
696
- :few: naire nigeriene
697
- :one: naira nigeriană
698
- :other: naire nigeriene
699
- :NIC:
700
- :one: cordoba nicaraguană (1988-1991)
701
- :other: Nicaraguan córdobas (1988-1991)
702
- :NIO:
703
- :few: cordobe nicaraguane
704
- :one: cordoba nicaraguană
705
- :other: cordobe nicaraguane
706
- :NLG:
707
- :few: guldeni olandezi
708
- :one: gulden olandez
709
- :other: guldeni olandezi
710
- :NOK:
711
- :few: coroane norvegiene
712
- :one: coroană norvegiană
713
- :other: coroane norvegiene
714
- :NPR:
715
- :few: rupii nepaleze
716
- :one: rupie nepaleză
717
- :other: rupii nepaleze
718
- :NZD:
719
- :few: dolari neozeelandezi
720
- :one: dolar neozeelandez
721
- :other: dolari neozeelandezi
722
- :symbol: NZ$
723
- :OMR:
724
- :few: riyali Oman
725
- :one: riyal Oman
726
- :other: riyali Oman
727
- :PAB:
728
- :few: balboa panameze
729
- :one: balboa panameză
730
- :other: balboa panameze
731
- :PEI:
732
- :one: inti peruvian
733
- :other: Peruvian intis
734
- :PEN:
735
- :few: soli noi Peru
736
- :one: sol nou Peru
737
- :other: soli noi Peru
738
- :PES:
739
- :few: soli Peru (1863-1965)
740
- :one: sol peruvian (1863-1965)
741
- :other: soli Peru (1863-1965)
742
- :PGK:
743
- :few: kine Papua-Noua Guinee
744
- :one: kina Papua-Noua Guinee
745
- :other: kine Papua-Noua Guinee
746
- :PHP:
747
- :few: pesos filipinezi
748
- :one: peso filipinez
749
- :other: pesos filipinezi
750
- :PKR:
751
- :few: rupii pakistaneze
752
- :one: rupie pakistaneză
753
- :other: rupii pakistaneze
754
- :PLN:
755
- :few: zloți noi polonezi
756
- :one: zlot nou polonez
757
- :other: zloți noi polonezi
758
- :PLZ:
759
- :few: zloți polonezi (1950–1995)
760
- :one: zlot polonez (1950–1995)
761
- :other: zloți polonezi (1950–1995)
762
- :PTE:
763
- :one: Portuguese escudo
764
- :other: Portuguese escudos
765
- :PYG:
766
- :few: guarani Paraguay
767
- :one: guarani Paraguay
768
- :other: guarani Paraguay
769
- :QAR:
770
- :few: riyali Qatar
771
- :one: ryal Qatar
772
- :other: riyali Qatar
773
- :RHD:
774
- :few: dolari rhodesieni
775
- :one: dolar rhodesian
776
- :other: dolari rhodesieni
777
- :ROL:
778
- :few: lei românești (1952-2006)
779
- :one: leu românesc (1952-2006)
780
- :other: lei românești (1952-2006)
781
- :RON:
782
- :few: lei românești
783
- :one: leu românesc
784
- :other: lei românești
785
- :RSD:
786
- :few: dinari sârbești
787
- :one: dinar sârbesc
788
- :other: dinari sârbești
789
- :RUB:
790
- :few: ruble rusești
791
- :one: rublă rusească
792
- :other: ruble rusești
793
- :RUR:
794
- :one: Russian ruble (1991-1998)
795
- :other: Russian rubles (1991-1998)
796
- :RWF:
797
- :few: franci Rwanda
798
- :one: franc Rwanda
799
- :other: franci Rwanda
800
- :SAR:
801
- :few: riyali Arabia Saudită
802
- :one: riyal Arabia Saudită
803
- :other: riyali Arabia Saudită
804
- :SBD:
805
- :few: dolari Insulele Solomon
806
- :one: dolar Insulele Solomon
807
- :other: dolari Insulele Solomon
808
- :SCR:
809
- :few: rupii Seychelles
810
- :one: rupie Seychelles
811
- :other: rupii Seychelles
812
- :SDD:
813
- :few: dinari sudanezi
814
- :one: dinar sudanez
815
- :other: dinari sudanezi
816
- :SDG:
817
- :few: lire Sudan
818
- :one: liră Sudan
819
- :other: lire Sudan
820
- :SDP:
821
- :few: lire sudaneze (1957-1998)
822
- :one: liră sudaneză (1957-1998)
823
- :other: lire sudaneze (1957-1998)
824
- :SEK:
825
- :few: coroane suedeze
826
- :one: coroană suedeză
827
- :other: coroane suedeze
828
- :SGD:
829
- :few: dolari Singapore
830
- :one: dolar Singapore
831
- :other: dolari Singapore
832
- :SHP:
833
- :few: lire Insula Sf. Elena
834
- :one: liră Insula Sf. Elena
835
- :other: lire Insula Sf. Elena
836
- :SIT:
837
- :few: tolari sloveni
838
- :one: tolar sloven
839
- :other: tolari sloveni
840
- :SKK:
841
- :few: coroane slovace
842
- :one: coroană slovacă
843
- :other: coroane slovace
844
- :SLL:
845
- :few: leoni Sierra Leone
846
- :one: leone Sierra Leone
847
- :other: lei Sierra Leone
848
- :SOS:
849
- :few: șilingi somalezi
850
- :one: șiling somalez
851
- :other: șilingi somalezi
852
- :SRD:
853
- :few: dolari Surinam
854
- :one: dolar Surinam
855
- :other: dolari Surinam
856
- :SRG:
857
- :few: guldeni Surinam
858
- :one: gulden Surinam
859
- :other: guldeni Surinam
860
- :SSP:
861
- :few: lire sud-sudaneze
862
- :one: liră sud-sudaneză
863
- :other: lire sud-sudaneze
864
- :STD:
865
- :few: dobre Sao Tome și Principe
866
- :one: dobra Sao Tome și Principe
867
- :other: dobre Sao Tome și Principe
868
- :SUR:
869
- :few: ruble sovietice
870
- :one: rublă sovietică
871
- :other: ruble sovietice
872
- :SVC:
873
- :few: coloni El Salvador
874
- :one: colon El Salvador
875
- :other: coloni El Salvador
876
- :SYP:
877
- :few: lire siriene
878
- :one: liră siriană
879
- :other: lire siriene
880
- :SZL:
881
- :few: emalangeni Swaziland
882
- :one: lilangeni Swaziland
883
- :other: emalangeni Swaziland
884
- :THB:
885
- :few: bahți thailandezi
886
- :one: baht thailandez
887
- :other: bahți thailandezi
888
- :symbol: ฿
889
- :TJR:
890
- :few: ruble Tadjikistan
891
- :one: rublă Tadjikistan
892
- :other: ruble Tadjikistan
893
- :TJS:
894
- :few: somoni Tadjikistan
895
- :one: somoni tajdic
896
- :other: somoni Tadjikistan
897
- :TMM:
898
- :few: manat turkmeni (1993-2009)
899
- :one: manat turkmen (1993-2009)
900
- :other: manat turkmeni (1993-2009)
901
- :TMT:
902
- :few: manat turkmeni
903
- :one: manat turkmen
904
- :other: manat turkmeni
905
- :TND:
906
- :few: dinari tunisieni
907
- :one: dinar tunisian
908
- :other: dinari tunisieni
909
- :TOP:
910
- :few: pa’anga tongane
911
- :one: pa’anga tongană
912
- :other: pa’anga tongane
913
- :TPE:
914
- :one: Timorese escudo
915
- :other: Timorese escudos
916
- :TRL:
917
- :few: liră turcească (1922-2005)
918
- :one: liră turcească (1922-2005)
919
- :other: lire turcești (1922-2005)
920
- :TRY:
921
- :few: lire turcești
922
- :one: liră turcească
923
- :other: lire turcești
924
- :TTD:
925
- :few: dolari Trinidad-Tobago
926
- :one: dolar Trinidad-Tobago
927
- :other: dolari Trinidad-Tobago
928
- :TWD:
929
- :few: dolari noi Taiwan
930
- :one: dolar nou Taiwan
931
- :other: dolari noi Taiwan
932
- :symbol: NT$
933
- :TZS:
934
- :few: șilingi tanzanieni
935
- :one: șiling tanzanian
936
- :other: șilingi tanzanieni
937
- :UAH:
938
- :few: hryvna ucrainiene
939
- :one: hryvna ucrainiană
940
- :other: hryvna ucrainiene
941
- :UAK:
942
- :few: carboave ucrainiene
943
- :one: carboavă ucraineană
944
- :other: carboave ucrainiene
945
- :UGS:
946
- :few: șilingi ugandezi (1966–1987)
947
- :one: șiling ugandez (1966–1987)
948
- :other: șilingi ugandezi (1966–1987)
949
- :UGX:
950
- :few: șilingi ugandezi
951
- :one: șiling ugandez
952
- :other: șilingi ugandezi
953
- :USD:
954
- :few: dolari americani
955
- :one: dolar american
956
- :other: dolari americani
957
- :symbol: $
958
- :USN:
959
- :few: dolari americani (ziua următoare)
960
- :one: dolar american (ziua următoare)
961
- :other: dolari americani (ziua următoare)
962
- :USS:
963
- :few: dolari americani (aceeași zi)
964
- :one: dolar american (aceeași zi)
965
- :other: dolari americani (aceeași zi)
966
- :UYI:
967
- :one: Uruguayan peso (indexed units)
968
- :other: Uruguayan pesos (indexed units)
969
- :UYP:
970
- :few: pesos Uruguay (1975–1993)
971
- :one: peso Uruguay (1975–1993)
972
- :other: pesos Uruguay (1975–1993)
973
- :UYU:
974
- :few: pesos noi Uruguay
975
- :one: peso nou Uruguay
976
- :other: pesos noi Uruguay
977
- :UZS:
978
- :few: sum Uzbekistan
979
- :one: sum Uzbekistan
980
- :other: sum Uzbekistan
981
- :VEB:
982
- :few: bolivari Venezuela (1871-2008)
983
- :one: bolivar Venezuela (1871-2008)
984
- :other: bolivari Venezuela (1871-2008)
985
- :VEF:
986
- :few: bolivari venezueleni
987
- :one: bolivar venezuelean
988
- :other: bolivari venezueleni
989
- :VND:
990
- :few: dongi vietnamezi
991
- :one: dong vietnamez
992
- :other: dongi vietnamezi
993
- :symbol:
994
- :VNN:
995
- :one: Vietnamese dong (1978-1985)
996
- :other: Vietnamese dong (1978-1985)
997
- :VUV:
998
- :few: vatu Vanuatu
999
- :one: vatu Vanuatu
1000
- :other: vatu Vanuatu
1001
- :WST:
1002
- :few: tala samoane
1003
- :one: tala samoană
1004
- :other: tala samoană
1005
- :XAF:
1006
- :few: franci Comunitatea Financiară
1007
- :one: franc CFA BEAC
1008
- :other: franci Comunitatea Financiară
1009
- :symbol: FCFA
1010
- :XAG:
1011
- :one: argint
1012
- :other: troy ounces of silver
1013
- :XAU:
1014
- :one: aur
1015
- :other: troy ounces of gold
1016
- :XBA:
1017
- :one: unitate compusă europeană
1018
- :other: European composite units
1019
- :XBB:
1020
- :one: unitate monetară europeană
1021
- :other: European monetary units
1022
- :XBC:
1023
- :one: unitate de cont europeană (XBC)
1024
- :other: European units of account (XBC)
1025
- :XBD:
1026
- :one: unitate de cont europeană (XBD)
1027
- :other: European units of account (XBD)
1028
- :XCD:
1029
- :few: dolari Caraibele de Est
1030
- :one: dolar est-caraib
1031
- :other: dolari Caraibele de Est
1032
- :symbol: EC$
1033
- :XDR:
1034
- :one: drepturi speciale de tragere
1035
- :other: special drawing rights
1036
- :XEU:
1037
- :one: unitate de monedă europeană
1038
- :other: European currency units
1039
- :XFO:
1040
- :few: franci francezi de aur
1041
- :one: franc francez de aur
1042
- :other: franci francezi de aur
1043
- :XFU:
1044
- :one: franc UIC francez
1045
- :other: French UIC-francs
1046
- :XOF:
1047
- :few: franci CFA BCEAO
1048
- :one: franc CFA BCEAO
1049
- :other: franci CFA BCEAO
1050
- :symbol: CFA
1051
- :XPD:
1052
- :one: paladiu
1053
- :other: troy ounces of palladium
1054
- :XPF:
1055
- :few: franci CFP
1056
- :one: franc CFP
1057
- :other: franci CFP
1058
- :symbol: CFPF
1059
- :XPT:
1060
- :one: platină
1061
- :other: troy ounces of platinum
1062
- :XRE:
1063
- :one: RINET Funds unit
1064
- :other: RINET Funds units
1065
- :XSU:
1066
- :one: Sucre
1067
- :other: Sucres
1068
- :XTS:
1069
- :one: cod monetar de test
1070
- :other: Testing Currency units
1071
- :XUA:
1072
- :one: ADB unit of account
1073
- :other: ADB units of account
1074
- :XXX:
1075
- :few: monede necunoscute sau nevalide
1076
- :one: monedă necunoscută sau nevalidă
1077
- :other: monede necunoscute sau nevalide
1078
- :YDD:
1079
- :few: dinari Yemen
1080
- :one: dinar Yemen
1081
- :other: dinari Yemen
1082
- :YER:
1083
- :few: riyali Yemen
1084
- :one: riyal Yemen
1085
- :other: riyali Yemen
1086
- :YUD:
1087
- :few: dinari iugoslavi grei
1088
- :one: dinar iugoslav greu
1089
- :other: dinari iugoslavi grei
1090
- :YUM:
1091
- :few: dinari iugoslavi noi
1092
- :one: dinar iugoslav nou
1093
- :other: dinari iugoslavi noi
1094
- :YUN:
1095
- :few: dinari iugoslavi convertibili
1096
- :one: dinar iugoslav convertibil
1097
- :other: dinari iugoslavi convertibili
1098
- :YUR:
1099
- :one: Yugoslavian reformed dinar (1992-1993)
1100
- :other: Yugoslavian reformed dinars (1992-1993)
1101
- :ZAL:
1102
- :one: rand sud-african (financiar)
1103
- :other: South African rands (financial)
1104
- :ZAR:
1105
- :few: ranzi sud-africani
1106
- :one: rand sud-african
1107
- :other: rand sud-african
1108
- :ZMK:
1109
- :few: kwache zambiene (1968-2012)
1110
- :one: kwacha zambiană (1968-2012)
1111
- :other: kwache zambiene (1968-2012)
1112
- :ZMW:
1113
- :few: kwache zambiene
1114
- :one: kwacha zambiană
1115
- :other: kwache zambiene
1116
- :ZRN:
1117
- :few: zairi noi
1118
- :one: zair nou
1119
- :other: zairi noi
1120
- :ZRZ:
1121
- :one: Zairean zaire (1971-1993)
1122
- :other: Zairean zaires (1971-1993)
1123
- :ZWD:
1124
- :few: dolari Zimbabwe (1980-2008)
1125
- :one: dolar Zimbabwe (1980-2008)
1126
- :other: dolari Zimbabwe (1980-2008)
1127
- :ZWL:
1128
- :one: dolar Zimbabwe (2009)
1129
- :other: Zimbabwean dollars (2009)
1130
- :ZWR:
1131
- :one: dolar Zimbabwe (2008)
1132
- :other: Zimbabwean dollars (2008)
1
+ ---
2
+ :ro:
3
+ :currencies:
4
+ :ADP:
5
+ :few: "pesete andorrane"
6
+ :one: "pesetă andorrană"
7
+ :other: "pesete andorrane"
8
+ :AED:
9
+ :few: "dirhami din Emiratele Arabe Unite"
10
+ :one: "dirham din Emiratele Arabe Unite"
11
+ :other: "dirhami Emiratele Arabe Unite"
12
+ :AFA:
13
+ :one: "Afghan afghani (19272002)"
14
+ :other: "Afghan afghanis (19272002)"
15
+ :AFN:
16
+ :few: "afgani afgani"
17
+ :one: "afgani afgan"
18
+ :other: "afgani afgani"
19
+ :ALK:
20
+ :one: "Albanian lek (19461965)"
21
+ :other: "Albanian lekë (19461965)"
22
+ :ALL:
23
+ :few: "leka albanezi"
24
+ :one: "leka albanez"
25
+ :other: "leka albanezi"
26
+ :AMD:
27
+ :few: "drami armenești"
28
+ :one: "dram armenesc"
29
+ :other: "drami armenești"
30
+ :ANG:
31
+ :few: "guldeni din Antilele Olandeze"
32
+ :one: "gulden din Antilele Olandeze"
33
+ :other: "guldeni Antilele Olandeze"
34
+ :AOA:
35
+ :few: "kwanze angoleze"
36
+ :one: "kwanza angoleză"
37
+ :other: "kwanze angoleze"
38
+ :AOK:
39
+ :one: "Angolan kwanza (19771991)"
40
+ :other: "Angolan kwanzas (19771991)"
41
+ :AON:
42
+ :one: "Angolan new kwanza (19902000)"
43
+ :other: "Angolan new kwanzas (19902000)"
44
+ :AOR:
45
+ :one: "Angolan readjusted kwanza (19951999)"
46
+ :other: "Angolan readjusted kwanzas (19951999)"
47
+ :ARA:
48
+ :one: "Argentine austral"
49
+ :other: "Argentine australs"
50
+ :ARL:
51
+ :one: "Argentine peso ley (19701983)"
52
+ :other: "Argentine pesos ley (19701983)"
53
+ :ARM:
54
+ :one: "Argentine peso (18811970)"
55
+ :other: "Argentine pesos (18811970)"
56
+ :ARP:
57
+ :few: "pesos argentinieni (19831985)"
58
+ :one: "peso argentinian (19831985)"
59
+ :other: "pesos argentinieni (19831985)"
60
+ :ARS:
61
+ :few: "pesos argentinieni"
62
+ :one: "peso argentinian"
63
+ :other: "pesos argentinieni"
64
+ :symbol: "$"
65
+ :ATS:
66
+ :few: "șilingi austrieci"
67
+ :one: "șiling austriac"
68
+ :other: "șilingi austrieci"
69
+ :AUD:
70
+ :few: "dolari australieni"
71
+ :one: "dolar australien"
72
+ :other: "dolari australieni"
73
+ :symbol: "AUD"
74
+ :AWG:
75
+ :few: "florini Aruba"
76
+ :one: "florin Aruba"
77
+ :other: "florini Aruba"
78
+ :AZM:
79
+ :one: "manat azer (19932006)"
80
+ :other: "Azerbaijani manats (1993–2006)"
81
+ :AZN:
82
+ :few: "manați azeri"
83
+ :one: "manat azer"
84
+ :other: "manați Azerbaidjan"
85
+ :BAD:
86
+ :few: "dinari Bosnia-Herțegovina"
87
+ :one: "dinar Bosnia-Herțegovina (19921994)"
88
+ :other: "dinari Bosnia-Herțegovina (1992–1994)"
89
+ :BAM:
90
+ :few: "mărci convertibile bosniace"
91
+ :one: "marcă convertibilă bosniacă"
92
+ :other: "mărci convertibile bosniace"
93
+ :BAN:
94
+ :one: "Bosnia-Herzegovina new dinar (19941997)"
95
+ :other: "Bosnia-Herzegovina new dinars (1994–1997)"
96
+ :BBD:
97
+ :few: "dolari Barbados"
98
+ :one: "dolar Barbados"
99
+ :other: "dolari Barbados"
100
+ :symbol: "$"
101
+ :BDT:
102
+ :few: "taka din Bangladesh"
103
+ :one: "taka din Bangladesh"
104
+ :other: "taka din Bangladesh"
105
+ :symbol: "৳"
106
+ :BEC:
107
+ :few: "franci belgieni (convertibili)"
108
+ :one: "franc belgian (convertibil)"
109
+ :other: "franci belgieni (convertibili)"
110
+ :BEF:
111
+ :few: "franci belgieni"
112
+ :one: "franc belgian"
113
+ :other: "franci belgieni"
114
+ :BEL:
115
+ :few: "franci belgieni (financiari)"
116
+ :one: "franc belgian (financiar)"
117
+ :other: "franci belgieni (financiari)"
118
+ :BGL:
119
+ :one: "Bulgarian hard lev"
120
+ :other: "Bulgarian hard leva"
121
+ :BGM:
122
+ :one: "Bulgarian socialist lev"
123
+ :other: "Bulgarian socialist leva"
124
+ :BGN:
125
+ :few: "leva bulgărești noi"
126
+ :one: "leva bulgărească"
127
+ :other: "leva bulgărești noi"
128
+ :BGO:
129
+ :one: "Bulgarian lev (1879–1952)"
130
+ :other: "Bulgarian leva (1879–1952)"
131
+ :BHD:
132
+ :few: "dinari din Bahrain"
133
+ :one: "dinar din Bahrain"
134
+ :other: "dinari din Bahrain"
135
+ :BIF:
136
+ :few: "franci burundezi"
137
+ :one: "franc burundez"
138
+ :other: "franci Burundi"
139
+ :BMD:
140
+ :few: "dolari din Bermuda"
141
+ :one: "dolar din Bermuda"
142
+ :other: "dolari Bermude"
143
+ :symbol: "$"
144
+ :BND:
145
+ :few: "dolari din Brunei"
146
+ :one: "dolar din Brunei"
147
+ :other: "dolari Brunei"
148
+ :symbol: "$"
149
+ :BOB:
150
+ :few: "boliviano bolivieni"
151
+ :one: "boliviano bolivian"
152
+ :other: "bolivieni bolivieni"
153
+ :BOL:
154
+ :one: "Bolivian boliviano (1863–1963)"
155
+ :other: "Bolivian bolivianos (1863–1963)"
156
+ :BOP:
157
+ :few: "pesos bolivieni"
158
+ :one: "peso bolivian"
159
+ :other: "pesos bolivieni"
160
+ :BOV:
161
+ :one: "mvdol bolivian"
162
+ :other: "Bolivian mvdols"
163
+ :BRB:
164
+ :one: "Brazilian new cruzeiro (1967–1986)"
165
+ :other: "Brazilian new cruzeiros (19671986)"
166
+ :BRC:
167
+ :one: "Brazilian cruzado (1986–1989)"
168
+ :other: "Brazilian cruzados (1986–1989)"
169
+ :BRE:
170
+ :one: "cruzeiro brazilian (1990–1993)"
171
+ :other: "Brazilian cruzeiros (1990–1993)"
172
+ :BRL:
173
+ :few: "reali brazilieni"
174
+ :one: "real brazilian"
175
+ :other: "reali brazilieni"
176
+ :symbol: "BRL"
177
+ :BRN:
178
+ :one: "Brazilian new cruzado (1989–1990)"
179
+ :other: "Brazilian new cruzados (1989–1990)"
180
+ :BRR:
181
+ :one: "cruzeiro brazilian (1993–1994)"
182
+ :other: "Brazilian cruzeiros (1993–1994)"
183
+ :BRZ:
184
+ :one: "Brazilian cruzeiro (1942–1967)"
185
+ :other: "Brazilian cruzeiros (1942–1967)"
186
+ :BSD:
187
+ :few: "dolari din Bahamas"
188
+ :one: "dolar din Bahamas"
189
+ :other: "dolari Bahamas"
190
+ :symbol: "$"
191
+ :BTN:
192
+ :few: "ngultrum din Bhutan"
193
+ :one: "ngultrum din Bhutan"
194
+ :other: "ngultrum din Bhutan"
195
+ :BUK:
196
+ :one: "kyat birman"
197
+ :other: "Burmese kyats"
198
+ :BWP:
199
+ :few: "pule Botswana"
200
+ :one: "pulă Botswana"
201
+ :other: "pule Botswana"
202
+ :BYB:
203
+ :one: "Belarusian new ruble (1994–1999)"
204
+ :other: "Belarusian new rubles (1994–1999)"
205
+ :BYR:
206
+ :few: "ruble belaruse"
207
+ :one: "rublă belarusă"
208
+ :other: "ruble bieloruse"
209
+ :symbol: "р."
210
+ :BZD:
211
+ :few: "dolari din Belize"
212
+ :one: "dolar din Belize"
213
+ :other: "dolari Belize"
214
+ :symbol: "$"
215
+ :CAD:
216
+ :few: "dolari canadieni"
217
+ :one: "dolar canadian"
218
+ :other: "dolari canadieni"
219
+ :symbol: "CAD"
220
+ :CDF:
221
+ :few: "franci congolezi"
222
+ :one: "franc congolez"
223
+ :other: "franci congolezi"
224
+ :CHE:
225
+ :one: "WIR euro"
226
+ :other: "WIR euros"
227
+ :CHF:
228
+ :few: "franci elvețieni"
229
+ :one: "franc elvețian"
230
+ :other: "franci elvețieni"
231
+ :CHW:
232
+ :one: "WIR franc"
233
+ :other: "WIR francs"
234
+ :CLE:
235
+ :one: "Chilean escudo"
236
+ :other: "Chilean escudos"
237
+ :CLF:
238
+ :one: "Chilean unit of account (UF)"
239
+ :other: "Chilean units of account (UF)"
240
+ :CLP:
241
+ :few: "pesos chilieni"
242
+ :one: "peso chilian"
243
+ :other: "pesos chilieni"
244
+ :symbol: "$"
245
+ :CNX:
246
+ :one: "Chinese People’s Bank dollar"
247
+ :other: "Chinese People’s Bank dollars"
248
+ :CNY:
249
+ :few: "yuani renminbi chinezești"
250
+ :one: "yuan renminbi chinezesc"
251
+ :other: "yuani renminbi chinezești"
252
+ :symbol: "CNY"
253
+ :COP:
254
+ :few: "pesos columbieni"
255
+ :one: "peso columbian"
256
+ :other: "pesos columbieni"
257
+ :symbol: "$"
258
+ :COU:
259
+ :one: "Colombian real value unit"
260
+ :other: "Colombian real value units"
261
+ :CRC:
262
+ :few: "colóni costaricani"
263
+ :one: "colón costarican"
264
+ :other: "coloni costaricani"
265
+ :symbol: "₡"
266
+ :CSD:
267
+ :few: "dinari Serbia și Muntenegru (2002–2006)"
268
+ :one: "dinar Serbia și Muntenegru (2002–2006)"
269
+ :other: "dinari Serbia și Muntenegru (2002–2006)"
270
+ :CSK:
271
+ :one: "Czechoslovak hard koruna"
272
+ :other: "Czechoslovak hard korunas"
273
+ :CUC:
274
+ :few: "pesos cubanezi convertibili"
275
+ :one: "peso cubanez convertibil"
276
+ :other: "pesos cubanezi convertibili"
277
+ :CUP:
278
+ :few: "pesos cubanezi"
279
+ :one: "peso cubanez"
280
+ :other: "pesos cubanezi"
281
+ :symbol: "$"
282
+ :CVE:
283
+ :few: "escudo din Capul Verde"
284
+ :one: "escudo din Capul Verde"
285
+ :other: "escudo Capul Verde"
286
+ :CYP:
287
+ :few: "lire cipriote"
288
+ :one: "liră cipriotă"
289
+ :other: "lire cipriote"
290
+ :CZK:
291
+ :few: "coroane cehe"
292
+ :one: "coroană cehă"
293
+ :other: "coroane cehe"
294
+ :DDM:
295
+ :few: "mărci est-germane"
296
+ :one: "marcă est-germană"
297
+ :other: "mărci est-germane"
298
+ :DEM:
299
+ :few: "mărci germane"
300
+ :one: "marcă germană"
301
+ :other: "mărci germane"
302
+ :DJF:
303
+ :few: "franci djiboutieni"
304
+ :one: "franc djiboutian"
305
+ :other: "franci Djibouti"
306
+ :DKK:
307
+ :few: "coroane daneze"
308
+ :one: "coroană daneză"
309
+ :other: "coroane daneze"
310
+ :DOP:
311
+ :few: "pesos dominicani"
312
+ :one: "peso dominican"
313
+ :other: "pesos dominicani"
314
+ :symbol: "$"
315
+ :DZD:
316
+ :few: "dinari algerieni"
317
+ :one: "dinar algerian"
318
+ :other: "dinari algerieni"
319
+ :ECS:
320
+ :one: "sucre Ecuador"
321
+ :other: "Ecuadorian sucres"
322
+ :ECV:
323
+ :one: "Ecuadorian unit of constant value"
324
+ :other: "Ecuadorian units of constant value"
325
+ :EEK:
326
+ :few: "coroane estoniene"
327
+ :one: "coroană estoniană"
328
+ :other: "coroane estoniene"
329
+ :EGP:
330
+ :few: "lire egiptene"
331
+ :one: "liră egipteană"
332
+ :other: "lire egiptene"
333
+ :ERN:
334
+ :few: "nakfa eritreene"
335
+ :one: "nakfa eritreeană"
336
+ :other: "nakfa eritreene"
337
+ :ESA:
338
+ :one: "peseta spaniolă (cont A)"
339
+ :other: "Spanish pesetas (A account)"
340
+ :ESB:
341
+ :one: "peseta spaniolă (cont convertibil)"
342
+ :other: "Spanish pesetas (convertible account)"
343
+ :ESP:
344
+ :few: "pesete spaniole"
345
+ :one: "pesetă spaniolă"
346
+ :other: "pesete spaniole"
347
+ :symbol: "₧"
348
+ :ETB:
349
+ :few: "birri etiopieni"
350
+ :one: "birr etiopian"
351
+ :other: "birr Etiopia"
352
+ :EUR:
353
+ :few: "euro"
354
+ :one: "euro"
355
+ :other: "euro"
356
+ :symbol: "€"
357
+ :FIM:
358
+ :few: "mărci finlandeze"
359
+ :one: "mărci finlandeze"
360
+ :other: "mărci finlandeze"
361
+ :FJD:
362
+ :few: "dolari fijieni"
363
+ :one: "dolar fijian"
364
+ :other: "dolari Fiji"
365
+ :symbol: "$"
366
+ :FKP:
367
+ :few: "lire din Insulele Falkland"
368
+ :one: "liră din Insulele Falkland"
369
+ :other: "lire Insulele Falkland"
370
+ :FRF:
371
+ :few: "franci francezi"
372
+ :one: "franc francez"
373
+ :other: "franci francezi"
374
+ :GBP:
375
+ :few: "lire sterline"
376
+ :one: "liră sterlină"
377
+ :other: "lire sterline"
378
+ :symbol: "GBP"
379
+ :GEK:
380
+ :one: "Georgian kupon larit"
381
+ :other: "Georgian kupon larits"
382
+ :GEL:
383
+ :few: "lari georgieni"
384
+ :one: "lari georgian"
385
+ :other: "lari Georgia"
386
+ :GHC:
387
+ :one: "cedi Ghana (1979–2007)"
388
+ :other: "Ghanaian cedis (1979–2007)"
389
+ :GHS:
390
+ :few: "cedi ghanezi"
391
+ :one: "cedi ghanez"
392
+ :other: "cedi ghanezi"
393
+ :symbol: "₵"
394
+ :GIP:
395
+ :few: "lire din Gibraltar"
396
+ :one: "liră din Gibraltar"
397
+ :other: "lire Gibraltar"
398
+ :symbol: "£"
399
+ :GMD:
400
+ :few: "dalasi din Gambia"
401
+ :one: "dalasi din Gambia"
402
+ :other: "dalasi din Gambia"
403
+ :GNF:
404
+ :few: "franci guineeni"
405
+ :one: "franc guineean"
406
+ :other: "franci Guineea"
407
+ :GNS:
408
+ :one: "Guinean syli"
409
+ :other: "Guinean sylis"
410
+ :GQE:
411
+ :one: "Equatorial Guinean ekwele"
412
+ :other: "Equatorial Guinean ekwele"
413
+ :GRD:
414
+ :few: "drahme grecești"
415
+ :one: "drahmă grecească"
416
+ :other: "drahme grecești"
417
+ :GTQ:
418
+ :few: "quetzali guatemalezi"
419
+ :one: "quetzal guatemalez"
420
+ :other: "quetzali guatemalezi"
421
+ :GWE:
422
+ :one: "Portuguese Guinea escudo"
423
+ :other: "Portuguese Guinea escudos"
424
+ :GWP:
425
+ :few: "pesos Guineea-Bissau"
426
+ :one: "peso Guineea-Bissau"
427
+ :other: "pesos Guineea-Bissau"
428
+ :GYD:
429
+ :few: "dolari guyanezi"
430
+ :one: "dolar guyanez"
431
+ :other: "dolari Guyana"
432
+ :symbol: "$"
433
+ :HKD:
434
+ :few: "dolari din Hong Kong"
435
+ :one: "dolar din Hong Kong"
436
+ :other: "dolari Hong Kong"
437
+ :symbol: "HKD"
438
+ :HNL:
439
+ :few: "lempire honduriene"
440
+ :one: "lempiră honduriană"
441
+ :other: "lempire honduriene"
442
+ :HRD:
443
+ :few: "dinari croați"
444
+ :one: "dinar croat"
445
+ :other: "dinari croați"
446
+ :HRK:
447
+ :few: "kune croate"
448
+ :one: "kuna croată"
449
+ :other: "kune croate"
450
+ :HTG:
451
+ :few: "gourde din Haiti"
452
+ :one: "gourde din Haiti"
453
+ :other: "gourde din Haiti"
454
+ :HUF:
455
+ :few: "forinți maghiari"
456
+ :one: "forint maghiar"
457
+ :other: "forinți maghiari"
458
+ :IDR:
459
+ :few: "rupii indoneziene"
460
+ :one: "rupie indoneziană"
461
+ :other: "rupii indoneziene"
462
+ :IEP:
463
+ :few: "lire irlandeze"
464
+ :one: "liră irlandeză"
465
+ :other: "lire irlandeze"
466
+ :ILP:
467
+ :few: "lire israeliene"
468
+ :one: "liră israeliană"
469
+ :other: "lire israeliene"
470
+ :ILR:
471
+ :one: "Israeli sheqel (1980–1985)"
472
+ :other: "Israeli sheqels (1980–1985)"
473
+ :ILS:
474
+ :few: "șecheli israelieni noi"
475
+ :one: "șechel israelian nou"
476
+ :other: "șecheli israelieni noi"
477
+ :symbol: "ILS"
478
+ :INR:
479
+ :few: "rupii indiene"
480
+ :one: "rupie indiană"
481
+ :other: "rupii indiene"
482
+ :symbol: "INR"
483
+ :IQD:
484
+ :few: "dinari irakieni"
485
+ :one: "dinar irakian"
486
+ :other: "dinari irakieni"
487
+ :IRR:
488
+ :few: "riali iranieni"
489
+ :one: "rial iranian"
490
+ :other: "riali iranieni"
491
+ :ISJ:
492
+ :one: "Icelandic króna (1918–1981)"
493
+ :other: "Icelandic krónur (1918–1981)"
494
+ :ISK:
495
+ :few: "coroane islandeze"
496
+ :one: "coroană islandeză"
497
+ :other: "coroane islandeze"
498
+ :ITL:
499
+ :few: "lire italiene"
500
+ :one: "liră italiană"
501
+ :other: "lire italiene"
502
+ :JMD:
503
+ :few: "dolari jamaicani"
504
+ :one: "dolar jamaican"
505
+ :other: "dolari jamaicani"
506
+ :symbol: "$"
507
+ :JOD:
508
+ :few: "dinari iordanieni"
509
+ :one: "dinar iordanian"
510
+ :other: "dinari iordanieni"
511
+ :JPY:
512
+ :few: "yeni japonezi"
513
+ :one: "yen japonez"
514
+ :other: "yeni japonezi"
515
+ :symbol: "JPY"
516
+ :KES:
517
+ :few: "șilingi kenyeni"
518
+ :one: "șiling kenyan"
519
+ :other: "șilingi kenyeni"
520
+ :KGS:
521
+ :few: "somi kârgâzi"
522
+ :one: "som kârgâz"
523
+ :other: "somi kârgâzi"
524
+ :KHR:
525
+ :few: "rieli cambodgieni"
526
+ :one: "riel cambodgian"
527
+ :other: "rieli cambodgieni"
528
+ :symbol: "៛"
529
+ :KMF:
530
+ :few: "franci comorieni"
531
+ :one: "franc comorian"
532
+ :other: "franci comorieni"
533
+ :KPW:
534
+ :few: "woni nord-coreeni"
535
+ :one: "won nord-coreean"
536
+ :other: "woni nord-coreeni"
537
+ :KRH:
538
+ :one: "South Korean hwan (1953–1962)"
539
+ :other: "South Korean hwan (1953–1962)"
540
+ :KRO:
541
+ :one: "South Korean won (1945–1953)"
542
+ :other: "South Korean won (1945–1953)"
543
+ :KRW:
544
+ :few: "woni sud-coreeni"
545
+ :one: "won sud-coreean"
546
+ :other: "woni sud-coreeni"
547
+ :symbol: "KRW"
548
+ :KWD:
549
+ :few: "dinari kuweitieni"
550
+ :one: "dinar kuweitian"
551
+ :other: "dinari kuweitieni"
552
+ :KYD:
553
+ :few: "dolari din Insulele Cayman"
554
+ :one: "dolar din Insulele Cayman"
555
+ :other: "dolari Insulele Cayman"
556
+ :symbol: "$"
557
+ :KZT:
558
+ :few: "tenge kazahe"
559
+ :one: "tenge kazahă"
560
+ :other: "tenge kazahe"
561
+ :symbol: "₸"
562
+ :LAK:
563
+ :few: "kip din Laos"
564
+ :one: "kip din Laos"
565
+ :other: "kip din Laos"
566
+ :symbol: "₭"
567
+ :LBP:
568
+ :few: "lire libaneze"
569
+ :one: "liră libaneză"
570
+ :other: "lire libaneze"
571
+ :LKR:
572
+ :few: "rupii din Sri Lanka"
573
+ :one: "rupie din Sri Lanka"
574
+ :other: "rupii Sri Lanka"
575
+ :LRD:
576
+ :few: "dolari liberieni"
577
+ :one: "dolar liberian"
578
+ :other: "dolari liberieni"
579
+ :symbol: "$"
580
+ :LSL:
581
+ :one: "loti lesothian"
582
+ :other: "Lesotho lotis"
583
+ :LTL:
584
+ :few: "lite lituaniene"
585
+ :one: "litas lituaniană"
586
+ :other: "lite lituaniene"
587
+ :LTT:
588
+ :one: "Lithuanian talonas"
589
+ :other: "Lithuanian talonases"
590
+ :LUC:
591
+ :few: "franci convertibili luxemburghezi"
592
+ :one: "franc convertibil luxemburghez"
593
+ :other: "franci convertibili luxemburghezi"
594
+ :LUF:
595
+ :few: "franci luxemburghezi"
596
+ :one: "franc luxemburghez"
597
+ :other: "franci luxemburghezi"
598
+ :LUL:
599
+ :few: "franci financiari luxemburghezi"
600
+ :one: "franc financiar luxemburghez"
601
+ :other: "franci financiari luxemburghezi"
602
+ :LVL:
603
+ :few: "lats letoni"
604
+ :one: "lats leton"
605
+ :other: "lats letoni"
606
+ :LVR:
607
+ :few: "ruble Letonia"
608
+ :one: "rublă Letonia"
609
+ :other: "ruble Letonia"
610
+ :LYD:
611
+ :few: "dinari libieni"
612
+ :one: "dinar libian"
613
+ :other: "dinari libieni"
614
+ :MAD:
615
+ :few: "dirhami marocani"
616
+ :one: "dirham marocan"
617
+ :other: "dirhami marocani"
618
+ :MAF:
619
+ :few: "franci marocani"
620
+ :one: "franc marocan"
621
+ :other: "franci marocani"
622
+ :MCF:
623
+ :one: "Monegasque franc"
624
+ :other: "Monegasque francs"
625
+ :MDC:
626
+ :one: "Moldovan cupon"
627
+ :other: "Moldovan cupon"
628
+ :MDL:
629
+ :few: "lei moldovenești"
630
+ :one: "leu moldovenesc"
631
+ :other: "lei moldovenești"
632
+ :MGA:
633
+ :few: "ariary malgași"
634
+ :one: "ariary malgaș"
635
+ :other: "ariary malgași"
636
+ :MGF:
637
+ :few: "franci Madagascar"
638
+ :one: "franc Madagascar"
639
+ :other: "franci Madagascar"
640
+ :MKD:
641
+ :few: "dinari macedoneni"
642
+ :one: "dinar macedonean"
643
+ :other: "dinari macedoneni"
644
+ :MKN:
645
+ :one: "Macedonian denar (1992–1993)"
646
+ :other: "Macedonian denari (1992–1993)"
647
+ :MLF:
648
+ :few: "franci Mali"
649
+ :one: "franc Mali"
650
+ :other: "franci Mali"
651
+ :MMK:
652
+ :few: "kyați Myanmar"
653
+ :one: "kyat Myanmar"
654
+ :other: "kyați Myanmar"
655
+ :MNT:
656
+ :few: "tugrici mongoli"
657
+ :one: "tugrik mongol"
658
+ :other: "tugrici mongoli"
659
+ :symbol: "₮"
660
+ :MOP:
661
+ :few: "pataca din Macao"
662
+ :one: "pataca din Macao"
663
+ :other: "pataca din Macao"
664
+ :MRO:
665
+ :few: "ouguiya mauritane"
666
+ :one: "ouguiya mauritană"
667
+ :other: "ouguiya mauritane"
668
+ :MTL:
669
+ :few: "lire malteze"
670
+ :one: "liră malteză"
671
+ :other: "lire malteze"
672
+ :MTP:
673
+ :one: "Maltese pound"
674
+ :other: "Maltese pounds"
675
+ :MUR:
676
+ :few: "rupii mauritiene"
677
+ :one: "rupie mauritiană"
678
+ :other: "rupii mauritiene"
679
+ :MVP:
680
+ :one: "Maldivian rupee"
681
+ :other: "Maldivian rupees"
682
+ :MVR:
683
+ :few: "rufiyaa maldiviene"
684
+ :one: "rufiyaa maldiviană"
685
+ :other: "rufiyaa maldiviene"
686
+ :MWK:
687
+ :few: "kwache malawiene"
688
+ :one: "kwacha malawiană"
689
+ :other: "kwache malawiene"
690
+ :MXN:
691
+ :few: "pesos mexicani"
692
+ :one: "peso mexican"
693
+ :other: "pesos mexicani"
694
+ :symbol: "MXN"
695
+ :MXP:
696
+ :few: "pesos mexicani de argint (1861–1992"
697
+ :one: "peso mexican de argint (1861–1992)"
698
+ :other: "pesos mexicani de argint (1861–1992)"
699
+ :MXV:
700
+ :one: "Mexican investment unit"
701
+ :other: "Mexican investment units"
702
+ :MYR:
703
+ :few: "ringgit malaiezieni"
704
+ :one: "ringgit malaiezian"
705
+ :other: "ringgit malaiezieni"
706
+ :MZE:
707
+ :one: "escudo Mozambic"
708
+ :other: "Mozambican escudos"
709
+ :MZM:
710
+ :one: "metical Mozambic vechi"
711
+ :other: "Mozambican meticals (1980–2006)"
712
+ :MZN:
713
+ :few: "metical mozambicani"
714
+ :one: "metical mozambican"
715
+ :other: "metical mozambicani"
716
+ :NAD:
717
+ :few: "dolari namibieni"
718
+ :one: "dolar namibian"
719
+ :other: "dolari namibieni"
720
+ :symbol: "$"
721
+ :NGN:
722
+ :few: "naire nigeriene"
723
+ :one: "naira nigeriană"
724
+ :other: "naire nigeriene"
725
+ :symbol: "₦"
726
+ :NIC:
727
+ :one: "cordoba nicaraguană (1988–1991)"
728
+ :other: "Nicaraguan córdobas (1988–1991)"
729
+ :NIO:
730
+ :few: "cordobe nicaraguane"
731
+ :one: "cordoba nicaraguană"
732
+ :other: "cordobe nicaraguane"
733
+ :NLG:
734
+ :few: "guldeni olandezi"
735
+ :one: "gulden olandez"
736
+ :other: "guldeni olandezi"
737
+ :NOK:
738
+ :few: "coroane norvegiene"
739
+ :one: "coroană norvegiană"
740
+ :other: "coroane norvegiene"
741
+ :NPR:
742
+ :few: "rupii nepaleze"
743
+ :one: "rupie nepaleză"
744
+ :other: "rupii nepaleze"
745
+ :NZD:
746
+ :few: "dolari neozeelandezi"
747
+ :one: "dolar neozeelandez"
748
+ :other: "dolari neozeelandezi"
749
+ :symbol: "NZD"
750
+ :OMR:
751
+ :few: "riali omanezi"
752
+ :one: "rial omanez"
753
+ :other: "riyali Oman"
754
+ :PAB:
755
+ :few: "balboa panameze"
756
+ :one: "balboa panameză"
757
+ :other: "balboa panameze"
758
+ :PEI:
759
+ :one: "inti peruvian"
760
+ :other: "Peruvian intis"
761
+ :PEN:
762
+ :few: "soli noi peruvieni"
763
+ :one: "sol nou peruvian"
764
+ :other: "soli noi Peru"
765
+ :PES:
766
+ :few: "soli Peru (1863–1965)"
767
+ :one: "sol peruvian (1863–1965)"
768
+ :other: "soli Peru (1863–1965)"
769
+ :PGK:
770
+ :few: "kina din Papua-Noua Guinee"
771
+ :one: "kina din Papua-Noua Guinee"
772
+ :other: "kina din Papua-Noua Guinee"
773
+ :PHP:
774
+ :few: "pesos filipinezi"
775
+ :one: "peso filipinez"
776
+ :other: "pesos filipinezi"
777
+ :symbol: "₱"
778
+ :PKR:
779
+ :few: "rupii pakistaneze"
780
+ :one: "rupie pakistaneză"
781
+ :other: "rupii pakistaneze"
782
+ :PLN:
783
+ :few: "zloți polonezi"
784
+ :one: "zlot polonez"
785
+ :other: "zloți noi polonezi"
786
+ :PLZ:
787
+ :few: "zloți polonezi (1950–1995)"
788
+ :one: "zlot polonez (1950–1995)"
789
+ :other: "zloți polonezi (1950–1995)"
790
+ :PTE:
791
+ :one: "Portuguese escudo"
792
+ :other: "Portuguese escudos"
793
+ :PYG:
794
+ :few: "guarani paraguayeni"
795
+ :one: "guarani paraguayan"
796
+ :other: "guarani Paraguay"
797
+ :symbol: "₲"
798
+ :QAR:
799
+ :few: "riali qatarieni"
800
+ :one: "rial qatarian"
801
+ :other: "riyali Qatar"
802
+ :RHD:
803
+ :few: "dolari rhodesieni"
804
+ :one: "dolar rhodesian"
805
+ :other: "dolari rhodesieni"
806
+ :ROL:
807
+ :few: "lei românești (1952–2006)"
808
+ :one: "leu românesc (1952–2006)"
809
+ :other: "lei românești (1952–2006)"
810
+ :RON:
811
+ :few: "lei românești"
812
+ :one: "leu românesc"
813
+ :other: "lei românești"
814
+ :RSD:
815
+ :few: "dinari sârbești"
816
+ :one: "dinar sârbesc"
817
+ :other: "dinari sârbești"
818
+ :RUB:
819
+ :few: "ruble rusești"
820
+ :one: "rublă rusească"
821
+ :other: "ruble rusești"
822
+ :RUR:
823
+ :one: "Russian ruble (1991–1998)"
824
+ :other: "Russian rubles (1991–1998)"
825
+ :symbol: "р."
826
+ :RWF:
827
+ :few: "franci rwandezi"
828
+ :one: "franc rwandez"
829
+ :other: "franci Rwanda"
830
+ :SAR:
831
+ :few: "riali saudiți"
832
+ :one: "rial saudit"
833
+ :other: "riyali Arabia Saudită"
834
+ :SBD:
835
+ :few: "dolari Insulele Solomon"
836
+ :one: "dolar Insulele Solomon"
837
+ :other: "dolari Insulele Solomon"
838
+ :symbol: "$"
839
+ :SCR:
840
+ :few: "rupii din Seychelles"
841
+ :one: "rupie din Seychelles"
842
+ :other: "rupii Seychelles"
843
+ :SDD:
844
+ :few: "dinari sudanezi"
845
+ :one: "dinar sudanez"
846
+ :other: "dinari sudanezi"
847
+ :SDG:
848
+ :few: "lire sudaneze"
849
+ :one: "liră sudaneză"
850
+ :other: "lire Sudan"
851
+ :SDP:
852
+ :few: "lire sudaneze (1957–1998)"
853
+ :one: "liră sudaneză (1957–1998)"
854
+ :other: "lire sudaneze (1957–1998)"
855
+ :SEK:
856
+ :few: "coroane suedeze"
857
+ :one: "coroană suedeză"
858
+ :other: "coroane suedeze"
859
+ :SGD:
860
+ :few: "dolari Singapore"
861
+ :one: "dolar Singapore"
862
+ :other: "dolari Singapore"
863
+ :symbol: "$"
864
+ :SHP:
865
+ :few: "lire Insula Sf. Elena"
866
+ :one: "liră Insula Sf. Elena"
867
+ :other: "lire Insula Sf. Elena"
868
+ :SIT:
869
+ :few: "tolari sloveni"
870
+ :one: "tolar sloven"
871
+ :other: "tolari sloveni"
872
+ :SKK:
873
+ :few: "coroane slovace"
874
+ :one: "coroană slovacă"
875
+ :other: "coroane slovace"
876
+ :SLL:
877
+ :few: "leoni Sierra Leone"
878
+ :one: "leone Sierra Leone"
879
+ :other: "lei Sierra Leone"
880
+ :SOS:
881
+ :few: "șilingi somalezi"
882
+ :one: "șiling somalez"
883
+ :other: "șilingi somalezi"
884
+ :SRD:
885
+ :few: "dolari surinamezi"
886
+ :one: "dolar surinamez"
887
+ :other: "dolari Surinam"
888
+ :symbol: "$"
889
+ :SRG:
890
+ :few: "guldeni Surinam"
891
+ :one: "gulden Surinam"
892
+ :other: "guldeni Surinam"
893
+ :SSP:
894
+ :few: "lire sud-sudaneze"
895
+ :one: "liră sud-sudaneză"
896
+ :other: "lire sud-sudaneze"
897
+ :symbol: "£"
898
+ :STD:
899
+ :few: "dobre Sao Tome și Principe"
900
+ :one: "dobra Sao Tome și Principe"
901
+ :other: "dobre Sao Tome și Principe"
902
+ :SUR:
903
+ :few: "ruble sovietice"
904
+ :one: "rublă sovietică"
905
+ :other: "ruble sovietice"
906
+ :SVC:
907
+ :few: "coloni El Salvador"
908
+ :one: "colon El Salvador"
909
+ :other: "coloni El Salvador"
910
+ :SYP:
911
+ :few: "lire siriene"
912
+ :one: "liră siriană"
913
+ :other: "lire siriene"
914
+ :SZL:
915
+ :few: "emalangeni din Swaziland"
916
+ :one: "lilangeni din Swaziland"
917
+ :other: "emalangeni din Swaziland"
918
+ :THB:
919
+ :few: "bahți thailandezi"
920
+ :one: "baht thailandez"
921
+ :other: "bahți thailandezi"
922
+ :symbol: "THB"
923
+ :TJR:
924
+ :few: "ruble Tadjikistan"
925
+ :one: "rublă Tadjikistan"
926
+ :other: "ruble Tadjikistan"
927
+ :TJS:
928
+ :few: "somoni Tadjikistan"
929
+ :one: "somoni tajdic"
930
+ :other: "somoni Tadjikistan"
931
+ :TMM:
932
+ :few: "manat turkmeni (1993–2009)"
933
+ :one: "manat turkmen (1993–2009)"
934
+ :other: "manat turkmeni (1993–2009)"
935
+ :TMT:
936
+ :few: "manat turkmeni"
937
+ :one: "manat turkmen"
938
+ :other: "manat turkmeni"
939
+ :TND:
940
+ :few: "dinari tunisieni"
941
+ :one: "dinar tunisian"
942
+ :other: "dinari tunisieni"
943
+ :TOP:
944
+ :few: "pa’anga tongane"
945
+ :one: "pa’anga tongană"
946
+ :other: "pa’anga tongane"
947
+ :TPE:
948
+ :one: "Timorese escudo"
949
+ :other: "Timorese escudos"
950
+ :TRL:
951
+ :few: "liră turcească (1922–2005)"
952
+ :one: "liră turcească (1922–2005)"
953
+ :other: "lire turcești (1922–2005)"
954
+ :TRY:
955
+ :few: "lire turcești"
956
+ :one: "liră turcească"
957
+ :other: "lire turcești"
958
+ :symbol: "₺"
959
+ :TTD:
960
+ :few: "dolari din Trinidad-Tobago"
961
+ :one: "dolar din Trinidad-Tobago"
962
+ :other: "dolari Trinidad-Tobago"
963
+ :symbol: "$"
964
+ :TWD:
965
+ :few: "dolari noi din Taiwan"
966
+ :one: "dolar nou din Taiwan"
967
+ :other: "dolari noi Taiwan"
968
+ :symbol: "TWD"
969
+ :TZS:
970
+ :few: "șilingi tanzanieni"
971
+ :one: "șiling tanzanian"
972
+ :other: "șilingi tanzanieni"
973
+ :UAH:
974
+ :few: "hryvna ucrainiene"
975
+ :one: "hryvna ucrainiană"
976
+ :other: "hryvna ucrainiene"
977
+ :symbol: "₴"
978
+ :UAK:
979
+ :few: "carboave ucrainiene"
980
+ :one: "carboavă ucraineană"
981
+ :other: "carboave ucrainiene"
982
+ :UGS:
983
+ :few: "șilingi ugandezi (1966–1987)"
984
+ :one: "șiling ugandez (1966–1987)"
985
+ :other: "șilingi ugandezi (1966–1987)"
986
+ :UGX:
987
+ :few: "șilingi ugandezi"
988
+ :one: "șiling ugandez"
989
+ :other: "șilingi ugandezi"
990
+ :USD:
991
+ :few: "dolari americani"
992
+ :one: "dolar american"
993
+ :other: "dolari americani"
994
+ :symbol: "USD"
995
+ :USN:
996
+ :few: "dolari americani (ziua următoare)"
997
+ :one: "dolar american (ziua următoare)"
998
+ :other: "dolari americani (ziua următoare)"
999
+ :USS:
1000
+ :few: "dolari americani (aceeași zi)"
1001
+ :one: "dolar american (aceeași zi)"
1002
+ :other: "dolari americani (aceeași zi)"
1003
+ :UYI:
1004
+ :one: "Uruguayan peso (indexed units)"
1005
+ :other: "Uruguayan pesos (indexed units)"
1006
+ :UYP:
1007
+ :few: "pesos Uruguay (1975–1993)"
1008
+ :one: "peso Uruguay (1975–1993)"
1009
+ :other: "pesos Uruguay (1975–1993)"
1010
+ :UYU:
1011
+ :few: "pesos uruguayeni"
1012
+ :one: "peso uruguayan"
1013
+ :other: "pesos noi Uruguay"
1014
+ :symbol: "$"
1015
+ :UZS:
1016
+ :few: "sum Uzbekistan"
1017
+ :one: "sum Uzbekistan"
1018
+ :other: "sum Uzbekistan"
1019
+ :VEB:
1020
+ :few: "bolivari Venezuela (1871–2008)"
1021
+ :one: "bolivar Venezuela (1871–2008)"
1022
+ :other: "bolivari Venezuela (1871–2008)"
1023
+ :VEF:
1024
+ :few: "bolivari venezueleni"
1025
+ :one: "bolivar venezuelean"
1026
+ :other: "bolivari venezueleni"
1027
+ :VND:
1028
+ :few: "dongi vietnamezi"
1029
+ :one: "dong vietnamez"
1030
+ :other: "dongi vietnamezi"
1031
+ :symbol: "VND"
1032
+ :VNN:
1033
+ :one: "Vietnamese dong (1978–1985)"
1034
+ :other: "Vietnamese dong (1978–1985)"
1035
+ :VUV:
1036
+ :few: "vatu din Vanuatu"
1037
+ :one: "vatu din Vanuatu"
1038
+ :other: "vatu din Vanuatu"
1039
+ :WST:
1040
+ :few: "tala samoane"
1041
+ :one: "tala samoană"
1042
+ :other: "tala samoană"
1043
+ :XAF:
1044
+ :few: "franci Comunitatea Financiară"
1045
+ :one: "franc CFA BEAC"
1046
+ :other: "franci Comunitatea Financiară"
1047
+ :symbol: "FCFA"
1048
+ :XAG:
1049
+ :one: "argint"
1050
+ :other: "troy ounces of silver"
1051
+ :XAU:
1052
+ :one: "aur"
1053
+ :other: "troy ounces of gold"
1054
+ :XBA:
1055
+ :one: "unitate compusă europeană"
1056
+ :other: "European composite units"
1057
+ :XBB:
1058
+ :one: "unitate monetară europeană"
1059
+ :other: "European monetary units"
1060
+ :XBC:
1061
+ :one: "unitate de cont europeană (XBC)"
1062
+ :other: "European units of account (XBC)"
1063
+ :XBD:
1064
+ :one: "unitate de cont europeană (XBD)"
1065
+ :other: "European units of account (XBD)"
1066
+ :XCD:
1067
+ :few: "dolari Caraibele de Est"
1068
+ :one: "dolar est-caraib"
1069
+ :other: "dolari Caraibele de Est"
1070
+ :symbol: "XCD"
1071
+ :XDR:
1072
+ :one: "drepturi speciale de tragere"
1073
+ :other: "special drawing rights"
1074
+ :XEU:
1075
+ :one: "unitate de monedă europeană"
1076
+ :other: "European currency units"
1077
+ :XFO:
1078
+ :few: "franci francezi de aur"
1079
+ :one: "franc francez de aur"
1080
+ :other: "franci francezi de aur"
1081
+ :XFU:
1082
+ :one: "franc UIC francez"
1083
+ :other: "French UIC-francs"
1084
+ :XOF:
1085
+ :few: "franci CFA BCEAO"
1086
+ :one: "franc CFA BCEAO"
1087
+ :other: "franci CFA BCEAO"
1088
+ :symbol: "CFA"
1089
+ :XPD:
1090
+ :one: "paladiu"
1091
+ :other: "troy ounces of palladium"
1092
+ :XPF:
1093
+ :few: "franci CFP"
1094
+ :one: "franc CFP"
1095
+ :other: "franci CFP"
1096
+ :symbol: "CFPF"
1097
+ :XPT:
1098
+ :one: "platină"
1099
+ :other: "troy ounces of platinum"
1100
+ :XRE:
1101
+ :one: "RINET Funds unit"
1102
+ :other: "RINET Funds units"
1103
+ :XSU:
1104
+ :one: "Sucre"
1105
+ :other: "Sucres"
1106
+ :XTS:
1107
+ :one: "cod monetar de test"
1108
+ :other: "Testing Currency units"
1109
+ :XUA:
1110
+ :one: "ADB unit of account"
1111
+ :other: "ADB units of account"
1112
+ :XXX:
1113
+ :few: "monede necunoscute sau nevalide"
1114
+ :one: "(unitate monetară necunoscută)"
1115
+ :other: "monede necunoscute sau nevalide"
1116
+ :YDD:
1117
+ :few: "dinari Yemen"
1118
+ :one: "dinar Yemen"
1119
+ :other: "dinari Yemen"
1120
+ :YER:
1121
+ :few: "riali yemeniți"
1122
+ :one: "rial yemenit"
1123
+ :other: "riyali Yemen"
1124
+ :YUD:
1125
+ :few: "dinari iugoslavi grei"
1126
+ :one: "dinar iugoslav greu"
1127
+ :other: "dinari iugoslavi grei"
1128
+ :YUM:
1129
+ :few: "dinari iugoslavi noi"
1130
+ :one: "dinar iugoslav nou"
1131
+ :other: "dinari iugoslavi noi"
1132
+ :YUN:
1133
+ :few: "dinari iugoslavi convertibili"
1134
+ :one: "dinar iugoslav convertibil"
1135
+ :other: "dinari iugoslavi convertibili"
1136
+ :YUR:
1137
+ :one: "Yugoslavian reformed dinar (1992–1993)"
1138
+ :other: "Yugoslavian reformed dinars (1992–1993)"
1139
+ :ZAL:
1140
+ :one: "rand sud-african (financiar)"
1141
+ :other: "South African rands (financial)"
1142
+ :ZAR:
1143
+ :few: "ranzi sud-africani"
1144
+ :one: "rand sud-african"
1145
+ :other: "ranzi sud-africani"
1146
+ :ZMK:
1147
+ :few: "kwache zambiene (1968–2012)"
1148
+ :one: "kwacha zambiană (1968–2012)"
1149
+ :other: "kwache zambiene (1968–2012)"
1150
+ :ZMW:
1151
+ :few: "kwache zambiene"
1152
+ :one: "kwacha zambian"
1153
+ :other: "kwache zambiene"
1154
+ :ZRN:
1155
+ :few: "zairi noi"
1156
+ :one: "zair nou"
1157
+ :other: "zairi noi"
1158
+ :ZRZ:
1159
+ :one: "Zairean zaire (1971–1993)"
1160
+ :other: "Zairean zaires (1971–1993)"
1161
+ :ZWD:
1162
+ :few: "dolari Zimbabwe (1980–2008)"
1163
+ :one: "dolar Zimbabwe (1980–2008)"
1164
+ :other: "dolari Zimbabwe (1980–2008)"
1165
+ :ZWL:
1166
+ :one: "dolar Zimbabwe (2009)"
1167
+ :other: "Zimbabwean dollars (2009)"
1168
+ :ZWR:
1169
+ :one: "dolar Zimbabwe (2008)"
1170
+ :other: "Zimbabwean dollars (2008)"