twitter_cldr 3.0.0.beta1 → 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (698) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +16 -2
  3. data/History.txt +9 -1
  4. data/README.md +297 -113
  5. data/Rakefile +97 -17
  6. data/lib/twitter_cldr/collation/collator.rb +12 -3
  7. data/lib/twitter_cldr/collation/trie_builder.rb +1 -1
  8. data/lib/twitter_cldr/{tokenizers/calendars → data_readers}/additional_date_format_selector.rb +6 -4
  9. data/lib/twitter_cldr/data_readers/calendar_data_reader.rb +91 -0
  10. data/lib/twitter_cldr/data_readers/data_reader.rb +32 -0
  11. data/lib/twitter_cldr/data_readers/date_data_reader.rb +26 -0
  12. data/lib/twitter_cldr/data_readers/date_time_data_reader.rb +41 -0
  13. data/lib/twitter_cldr/data_readers/number_data_reader.rb +142 -0
  14. data/lib/twitter_cldr/data_readers/time_data_reader.rb +26 -0
  15. data/lib/twitter_cldr/data_readers/timespan_data_reader.rb +122 -0
  16. data/lib/twitter_cldr/data_readers.rb +17 -0
  17. data/lib/twitter_cldr/formatters/calendars/{datetime_formatter.rb → date_time_formatter.rb} +27 -42
  18. data/lib/twitter_cldr/formatters/calendars/timespan_formatter.rb +3 -64
  19. data/lib/twitter_cldr/formatters/formatter.rb +39 -0
  20. data/lib/twitter_cldr/formatters/list_formatter.rb +22 -12
  21. data/lib/twitter_cldr/formatters/numbers/abbreviated/abbreviated_number_formatter.rb +5 -26
  22. data/lib/twitter_cldr/formatters/numbers/currency_formatter.rb +2 -11
  23. data/lib/twitter_cldr/formatters/numbers/decimal_formatter.rb +4 -2
  24. data/lib/twitter_cldr/formatters/numbers/number_formatter.rb +45 -27
  25. data/lib/twitter_cldr/formatters/numbers/percent_formatter.rb +3 -13
  26. data/lib/twitter_cldr/formatters/numbers/rbnf/formatters.rb +224 -0
  27. data/lib/twitter_cldr/formatters/numbers/rbnf/post_processors/chinese.rb +122 -0
  28. data/lib/twitter_cldr/formatters/numbers/rbnf/rule.rb +93 -0
  29. data/lib/twitter_cldr/formatters/numbers/rbnf/rule_group.rb +20 -0
  30. data/lib/twitter_cldr/formatters/numbers/rbnf/rule_parser.rb +86 -0
  31. data/lib/twitter_cldr/formatters/numbers/rbnf/rule_set.rb +259 -0
  32. data/lib/twitter_cldr/formatters/numbers/rbnf/substitution.rb +30 -0
  33. data/lib/twitter_cldr/formatters/numbers/rbnf.rb +127 -0
  34. data/lib/twitter_cldr/formatters/plurals/plural_formatter.rb +18 -6
  35. data/lib/twitter_cldr/formatters.rb +4 -5
  36. data/lib/twitter_cldr/localized/localized_array.rb +1 -1
  37. data/lib/twitter_cldr/localized/localized_date.rb +6 -3
  38. data/lib/twitter_cldr/localized/localized_datetime.rb +38 -15
  39. data/lib/twitter_cldr/localized/localized_number.rb +40 -24
  40. data/lib/twitter_cldr/localized/localized_object.rb +4 -4
  41. data/lib/twitter_cldr/localized/localized_string.rb +40 -7
  42. data/lib/twitter_cldr/localized/localized_time.rb +9 -2
  43. data/lib/twitter_cldr/localized/localized_timespan.rb +50 -5
  44. data/lib/twitter_cldr/normalization.rb +8 -19
  45. data/lib/twitter_cldr/parsers/parser.rb +50 -0
  46. data/lib/twitter_cldr/parsers/segmentation_parser.rb +137 -0
  47. data/lib/twitter_cldr/parsers/symbol_table.rb +30 -0
  48. data/lib/twitter_cldr/parsers/unicode_regex/character_class.rb +91 -0
  49. data/lib/twitter_cldr/parsers/unicode_regex/character_range.rb +39 -0
  50. data/lib/twitter_cldr/parsers/unicode_regex/character_set.rb +65 -0
  51. data/lib/twitter_cldr/parsers/unicode_regex/component.rb +50 -0
  52. data/lib/twitter_cldr/parsers/unicode_regex/literal.rb +83 -0
  53. data/lib/twitter_cldr/parsers/unicode_regex/unicode_string.rb +41 -0
  54. data/lib/twitter_cldr/parsers/unicode_regex_parser.rb +262 -0
  55. data/lib/twitter_cldr/parsers.rb +5 -1
  56. data/lib/twitter_cldr/resources/casefolder.rb.erb +64 -0
  57. data/lib/twitter_cldr/resources/casefolder_class_generator.rb +75 -0
  58. data/lib/twitter_cldr/resources/download.rb +10 -4
  59. data/lib/twitter_cldr/resources/icu_based_importer.rb +18 -0
  60. data/lib/twitter_cldr/resources/locales_resources_importer.rb +24 -13
  61. data/lib/twitter_cldr/resources/normalization_quick_check_importer.rb +1 -14
  62. data/lib/twitter_cldr/resources/rbnf_test_importer.rb +107 -0
  63. data/lib/twitter_cldr/resources/readme_renderer.rb +115 -0
  64. data/lib/twitter_cldr/resources/tailoring_importer.rb +2 -8
  65. data/lib/twitter_cldr/resources/uli/segment_exceptions_importer.rb +62 -0
  66. data/lib/twitter_cldr/resources/uli.rb +12 -0
  67. data/lib/twitter_cldr/resources/unicode_data_importer.rb +84 -14
  68. data/lib/twitter_cldr/resources/unicode_importer.rb +37 -0
  69. data/lib/twitter_cldr/resources/unicode_properties_importer.rb +79 -0
  70. data/lib/twitter_cldr/resources.rb +8 -1
  71. data/lib/twitter_cldr/shared/break_iterator.rb +213 -0
  72. data/lib/twitter_cldr/shared/calendar.rb +38 -14
  73. data/lib/twitter_cldr/shared/casefolder.rb +210 -0
  74. data/lib/twitter_cldr/shared/code_point.rb +103 -16
  75. data/lib/twitter_cldr/shared/numbering_system.rb +58 -0
  76. data/lib/twitter_cldr/shared/territories.rb +43 -1
  77. data/lib/twitter_cldr/shared/unicode_regex.rb +81 -0
  78. data/lib/twitter_cldr/shared.rb +13 -9
  79. data/lib/twitter_cldr/tokenizers/calendars/date_time_tokenizer.rb +77 -0
  80. data/lib/twitter_cldr/tokenizers/calendars/date_tokenizer.rb +14 -29
  81. data/lib/twitter_cldr/tokenizers/calendars/time_tokenizer.rb +13 -28
  82. data/lib/twitter_cldr/tokenizers/calendars/timespan_tokenizer.rb +11 -87
  83. data/lib/twitter_cldr/tokenizers/numbers/number_tokenizer.rb +16 -71
  84. data/lib/twitter_cldr/tokenizers/numbers/rbnf_tokenizer.rb +53 -0
  85. data/lib/twitter_cldr/tokenizers/pattern_tokenizer.rb +42 -0
  86. data/lib/twitter_cldr/tokenizers/segmentation/segmentation_tokenizer.rb +39 -0
  87. data/lib/twitter_cldr/tokenizers/tokenizer.rb +116 -0
  88. data/lib/twitter_cldr/tokenizers/unicode_regex/unicode_regex_tokenizer.rb +52 -0
  89. data/lib/twitter_cldr/tokenizers.rb +8 -4
  90. data/lib/twitter_cldr/utils/code_points.rb +1 -1
  91. data/lib/twitter_cldr/utils/range_set.rb +242 -0
  92. data/lib/twitter_cldr/utils/yaml.rb +17 -12
  93. data/lib/twitter_cldr/utils.rb +1 -1
  94. data/lib/twitter_cldr/version.rb +1 -1
  95. data/lib/twitter_cldr.rb +2 -1
  96. data/resources/custom/locales/sv/units.yml +8 -0
  97. data/resources/locales/af/calendars.yml +278 -224
  98. data/resources/locales/af/currencies.yml +954 -916
  99. data/resources/locales/af/languages.yml +583 -580
  100. data/resources/locales/af/layout.yml +5 -5
  101. data/resources/locales/af/lists.yml +23 -7
  102. data/resources/locales/af/numbers.yml +59 -54
  103. data/resources/locales/af/plurals.yml +2 -2
  104. data/resources/locales/af/rbnf.yml +261 -0
  105. data/resources/locales/af/territories.yml +264 -263
  106. data/resources/locales/ar/calendars.yml +287 -259
  107. data/resources/locales/ar/currencies.yml +1730 -1692
  108. data/resources/locales/ar/languages.yml +583 -580
  109. data/resources/locales/ar/layout.yml +5 -5
  110. data/resources/locales/ar/lists.yml +23 -7
  111. data/resources/locales/ar/numbers.yml +66 -61
  112. data/resources/locales/ar/plurals.yml +5 -8
  113. data/resources/locales/ar/rbnf.yml +519 -0
  114. data/resources/locales/ar/territories.yml +264 -263
  115. data/resources/locales/be/calendars.yml +238 -237
  116. data/resources/locales/be/currencies.yml +954 -917
  117. data/resources/locales/be/languages.yml +583 -580
  118. data/resources/locales/be/layout.yml +5 -5
  119. data/resources/locales/be/lists.yml +23 -7
  120. data/resources/locales/be/numbers.yml +62 -57
  121. data/resources/locales/be/plurals.yml +7 -4
  122. data/resources/locales/be/rbnf.yml +1288 -0
  123. data/resources/locales/be/territories.yml +264 -263
  124. data/resources/locales/bg/calendars.yml +278 -218
  125. data/resources/locales/bg/currencies.yml +955 -917
  126. data/resources/locales/bg/languages.yml +583 -580
  127. data/resources/locales/bg/layout.yml +5 -5
  128. data/resources/locales/bg/lists.yml +23 -7
  129. data/resources/locales/bg/numbers.yml +62 -57
  130. data/resources/locales/bg/plurals.yml +2 -2
  131. data/resources/locales/bg/rbnf.yml +280 -0
  132. data/resources/locales/bg/territories.yml +264 -263
  133. data/resources/locales/bn/calendars.yml +287 -225
  134. data/resources/locales/bn/currencies.yml +953 -916
  135. data/resources/locales/bn/languages.yml +583 -580
  136. data/resources/locales/bn/layout.yml +5 -5
  137. data/resources/locales/bn/lists.yml +23 -7
  138. data/resources/locales/bn/numbers.yml +62 -57
  139. data/resources/locales/bn/plurals.yml +2 -2
  140. data/resources/locales/bn/rbnf.yml +4 -0
  141. data/resources/locales/bn/territories.yml +264 -263
  142. data/resources/locales/ca/calendars.yml +278 -278
  143. data/resources/locales/ca/currencies.yml +953 -916
  144. data/resources/locales/ca/languages.yml +583 -580
  145. data/resources/locales/ca/layout.yml +5 -5
  146. data/resources/locales/ca/lists.yml +23 -7
  147. data/resources/locales/ca/numbers.yml +62 -57
  148. data/resources/locales/ca/plurals.yml +3 -2
  149. data/resources/locales/ca/rbnf.yml +756 -0
  150. data/resources/locales/ca/territories.yml +264 -263
  151. data/resources/locales/cs/calendars.yml +269 -262
  152. data/resources/locales/cs/currencies.yml +1483 -1172
  153. data/resources/locales/cs/languages.yml +583 -580
  154. data/resources/locales/cs/layout.yml +5 -5
  155. data/resources/locales/cs/lists.yml +23 -7
  156. data/resources/locales/cs/numbers.yml +64 -58
  157. data/resources/locales/cs/plurals.yml +6 -2
  158. data/resources/locales/cs/rbnf.yml +367 -0
  159. data/resources/locales/cs/territories.yml +264 -263
  160. data/resources/locales/cy/calendars.yml +275 -274
  161. data/resources/locales/cy/currencies.yml +1585 -1548
  162. data/resources/locales/cy/languages.yml +583 -580
  163. data/resources/locales/cy/layout.yml +5 -5
  164. data/resources/locales/cy/lists.yml +23 -7
  165. data/resources/locales/cy/numbers.yml +66 -61
  166. data/resources/locales/cy/plurals.yml +4 -3
  167. data/resources/locales/cy/rbnf.yml +298 -0
  168. data/resources/locales/cy/territories.yml +264 -263
  169. data/resources/locales/da/calendars.yml +281 -280
  170. data/resources/locales/da/currencies.yml +954 -916
  171. data/resources/locales/da/languages.yml +583 -580
  172. data/resources/locales/da/layout.yml +5 -5
  173. data/resources/locales/da/lists.yml +23 -7
  174. data/resources/locales/da/numbers.yml +62 -57
  175. data/resources/locales/da/plurals.yml +3 -2
  176. data/resources/locales/da/rbnf.yml +194 -0
  177. data/resources/locales/da/territories.yml +264 -263
  178. data/resources/locales/de/calendars.yml +294 -293
  179. data/resources/locales/de/currencies.yml +954 -916
  180. data/resources/locales/de/languages.yml +583 -580
  181. data/resources/locales/de/layout.yml +5 -5
  182. data/resources/locales/de/lists.yml +23 -7
  183. data/resources/locales/de/numbers.yml +62 -57
  184. data/resources/locales/de/plurals.yml +3 -2
  185. data/resources/locales/de/rbnf.yml +346 -0
  186. data/resources/locales/de/territories.yml +264 -263
  187. data/resources/locales/el/calendars.yml +279 -282
  188. data/resources/locales/el/currencies.yml +954 -916
  189. data/resources/locales/el/languages.yml +583 -580
  190. data/resources/locales/el/layout.yml +5 -5
  191. data/resources/locales/el/lists.yml +23 -7
  192. data/resources/locales/el/numbers.yml +62 -57
  193. data/resources/locales/el/plurals.yml +2 -2
  194. data/resources/locales/el/rbnf.yml +880 -0
  195. data/resources/locales/el/territories.yml +264 -263
  196. data/resources/locales/en/calendars.yml +192 -191
  197. data/resources/locales/en/currencies.yml +953 -915
  198. data/resources/locales/en/languages.yml +583 -580
  199. data/resources/locales/en/layout.yml +5 -5
  200. data/resources/locales/en/lists.yml +23 -7
  201. data/resources/locales/en/numbers.yml +62 -57
  202. data/resources/locales/en/plurals.yml +3 -2
  203. data/resources/locales/en/rbnf.yml +542 -0
  204. data/resources/locales/en/territories.yml +264 -263
  205. data/resources/locales/en-GB/calendars.yml +195 -194
  206. data/resources/locales/en-GB/currencies.yml +953 -915
  207. data/resources/locales/en-GB/languages.yml +583 -580
  208. data/resources/locales/en-GB/layout.yml +5 -5
  209. data/resources/locales/en-GB/lists.yml +23 -7
  210. data/resources/locales/en-GB/numbers.yml +62 -57
  211. data/resources/locales/en-GB/plurals.yml +2 -1
  212. data/resources/locales/en-GB/rbnf.yml +4 -0
  213. data/resources/locales/en-GB/territories.yml +264 -263
  214. data/resources/locales/es/calendars.yml +288 -238
  215. data/resources/locales/es/currencies.yml +953 -922
  216. data/resources/locales/es/languages.yml +583 -580
  217. data/resources/locales/es/layout.yml +5 -5
  218. data/resources/locales/es/lists.yml +23 -7
  219. data/resources/locales/es/numbers.yml +62 -57
  220. data/resources/locales/es/plurals.yml +2 -2
  221. data/resources/locales/es/rbnf.yml +913 -0
  222. data/resources/locales/es/territories.yml +264 -263
  223. data/resources/locales/eu/calendars.yml +277 -218
  224. data/resources/locales/eu/currencies.yml +953 -916
  225. data/resources/locales/eu/languages.yml +583 -580
  226. data/resources/locales/eu/layout.yml +5 -5
  227. data/resources/locales/eu/lists.yml +23 -7
  228. data/resources/locales/eu/numbers.yml +56 -51
  229. data/resources/locales/eu/plurals.yml +2 -2
  230. data/resources/locales/eu/rbnf.yml +4 -0
  231. data/resources/locales/eu/territories.yml +264 -263
  232. data/resources/locales/fa/calendars.yml +294 -293
  233. data/resources/locales/fa/currencies.yml +955 -916
  234. data/resources/locales/fa/languages.yml +583 -580
  235. data/resources/locales/fa/layout.yml +5 -5
  236. data/resources/locales/fa/lists.yml +23 -7
  237. data/resources/locales/fa/numbers.yml +62 -57
  238. data/resources/locales/fa/plurals.yml +2 -2
  239. data/resources/locales/fa/rbnf.yml +157 -0
  240. data/resources/locales/fa/territories.yml +264 -263
  241. data/resources/locales/fi/calendars.yml +284 -283
  242. data/resources/locales/fi/currencies.yml +953 -915
  243. data/resources/locales/fi/languages.yml +583 -580
  244. data/resources/locales/fi/layout.yml +5 -5
  245. data/resources/locales/fi/lists.yml +23 -7
  246. data/resources/locales/fi/numbers.yml +62 -57
  247. data/resources/locales/fi/plurals.yml +3 -2
  248. data/resources/locales/fi/rbnf.yml +206 -0
  249. data/resources/locales/fi/territories.yml +264 -263
  250. data/resources/locales/fil/calendars.yml +281 -230
  251. data/resources/locales/fil/currencies.yml +953 -916
  252. data/resources/locales/fil/languages.yml +583 -580
  253. data/resources/locales/fil/layout.yml +5 -5
  254. data/resources/locales/fil/lists.yml +23 -7
  255. data/resources/locales/fil/numbers.yml +62 -57
  256. data/resources/locales/fil/plurals.yml +3 -2
  257. data/resources/locales/fil/rbnf.yml +158 -0
  258. data/resources/locales/fil/territories.yml +264 -263
  259. data/resources/locales/fr/calendars.yml +297 -296
  260. data/resources/locales/fr/currencies.yml +968 -949
  261. data/resources/locales/fr/languages.yml +583 -580
  262. data/resources/locales/fr/layout.yml +5 -5
  263. data/resources/locales/fr/lists.yml +23 -7
  264. data/resources/locales/fr/numbers.yml +62 -57
  265. data/resources/locales/fr/plurals.yml +2 -2
  266. data/resources/locales/fr/rbnf.yml +621 -0
  267. data/resources/locales/fr/territories.yml +264 -263
  268. data/resources/locales/ga/calendars.yml +192 -191
  269. data/resources/locales/ga/currencies.yml +954 -916
  270. data/resources/locales/ga/languages.yml +583 -580
  271. data/resources/locales/ga/layout.yml +5 -5
  272. data/resources/locales/ga/lists.yml +23 -7
  273. data/resources/locales/ga/numbers.yml +62 -57
  274. data/resources/locales/ga/plurals.yml +4 -3
  275. data/resources/locales/ga/rbnf.yml +615 -0
  276. data/resources/locales/ga/territories.yml +264 -263
  277. data/resources/locales/gl/calendars.yml +283 -217
  278. data/resources/locales/gl/currencies.yml +953 -916
  279. data/resources/locales/gl/languages.yml +583 -580
  280. data/resources/locales/gl/layout.yml +5 -5
  281. data/resources/locales/gl/lists.yml +23 -7
  282. data/resources/locales/gl/numbers.yml +62 -57
  283. data/resources/locales/gl/plurals.yml +3 -2
  284. data/resources/locales/gl/rbnf.yml +4 -0
  285. data/resources/locales/gl/territories.yml +264 -263
  286. data/resources/locales/he/calendars.yml +248 -220
  287. data/resources/locales/he/currencies.yml +992 -932
  288. data/resources/locales/he/languages.yml +583 -580
  289. data/resources/locales/he/layout.yml +5 -5
  290. data/resources/locales/he/lists.yml +23 -7
  291. data/resources/locales/he/numbers.yml +64 -59
  292. data/resources/locales/he/plurals.yml +6 -3
  293. data/resources/locales/he/rbnf.yml +1029 -0
  294. data/resources/locales/he/territories.yml +264 -263
  295. data/resources/locales/hi/calendars.yml +284 -216
  296. data/resources/locales/hi/currencies.yml +953 -915
  297. data/resources/locales/hi/languages.yml +583 -580
  298. data/resources/locales/hi/layout.yml +5 -5
  299. data/resources/locales/hi/lists.yml +23 -7
  300. data/resources/locales/hi/numbers.yml +60 -55
  301. data/resources/locales/hi/plurals.yml +2 -2
  302. data/resources/locales/hi/rbnf.yml +430 -0
  303. data/resources/locales/hi/territories.yml +264 -263
  304. data/resources/locales/hr/calendars.yml +308 -307
  305. data/resources/locales/hr/currencies.yml +1248 -1504
  306. data/resources/locales/hr/languages.yml +583 -580
  307. data/resources/locales/hr/layout.yml +5 -5
  308. data/resources/locales/hr/lists.yml +23 -7
  309. data/resources/locales/hr/numbers.yml +63 -59
  310. data/resources/locales/hr/plurals.yml +12 -4
  311. data/resources/locales/hr/rbnf.yml +599 -0
  312. data/resources/locales/hr/territories.yml +264 -263
  313. data/resources/locales/hu/calendars.yml +285 -284
  314. data/resources/locales/hu/currencies.yml +954 -916
  315. data/resources/locales/hu/languages.yml +583 -580
  316. data/resources/locales/hu/layout.yml +5 -5
  317. data/resources/locales/hu/lists.yml +23 -7
  318. data/resources/locales/hu/numbers.yml +62 -57
  319. data/resources/locales/hu/plurals.yml +2 -2
  320. data/resources/locales/hu/rbnf.yml +363 -0
  321. data/resources/locales/hu/territories.yml +264 -263
  322. data/resources/locales/id/calendars.yml +276 -275
  323. data/resources/locales/id/currencies.yml +954 -916
  324. data/resources/locales/id/languages.yml +583 -580
  325. data/resources/locales/id/layout.yml +5 -5
  326. data/resources/locales/id/lists.yml +23 -7
  327. data/resources/locales/id/numbers.yml +61 -56
  328. data/resources/locales/id/plurals.yml +2 -2
  329. data/resources/locales/id/rbnf.yml +121 -0
  330. data/resources/locales/id/territories.yml +264 -263
  331. data/resources/locales/is/calendars.yml +281 -242
  332. data/resources/locales/is/currencies.yml +954 -916
  333. data/resources/locales/is/languages.yml +583 -580
  334. data/resources/locales/is/layout.yml +5 -5
  335. data/resources/locales/is/lists.yml +23 -7
  336. data/resources/locales/is/numbers.yml +62 -57
  337. data/resources/locales/is/plurals.yml +5 -2
  338. data/resources/locales/is/rbnf.yml +326 -0
  339. data/resources/locales/is/territories.yml +264 -263
  340. data/resources/locales/it/calendars.yml +275 -260
  341. data/resources/locales/it/currencies.yml +953 -920
  342. data/resources/locales/it/languages.yml +583 -580
  343. data/resources/locales/it/layout.yml +5 -5
  344. data/resources/locales/it/lists.yml +23 -7
  345. data/resources/locales/it/numbers.yml +59 -54
  346. data/resources/locales/it/plurals.yml +3 -2
  347. data/resources/locales/it/rbnf.yml +1189 -0
  348. data/resources/locales/it/territories.yml +264 -263
  349. data/resources/locales/ja/calendars.yml +269 -207
  350. data/resources/locales/ja/currencies.yml +953 -915
  351. data/resources/locales/ja/languages.yml +583 -580
  352. data/resources/locales/ja/layout.yml +5 -5
  353. data/resources/locales/ja/lists.yml +23 -7
  354. data/resources/locales/ja/numbers.yml +62 -57
  355. data/resources/locales/ja/plurals.yml +2 -2
  356. data/resources/locales/ja/rbnf.yml +209 -0
  357. data/resources/locales/ja/territories.yml +264 -263
  358. data/resources/locales/ko/calendars.yml +246 -213
  359. data/resources/locales/ko/currencies.yml +953 -915
  360. data/resources/locales/ko/languages.yml +583 -580
  361. data/resources/locales/ko/layout.yml +5 -5
  362. data/resources/locales/ko/lists.yml +23 -7
  363. data/resources/locales/ko/numbers.yml +60 -55
  364. data/resources/locales/ko/plurals.yml +2 -2
  365. data/resources/locales/ko/rbnf.yml +722 -0
  366. data/resources/locales/ko/territories.yml +264 -263
  367. data/resources/locales/lv/calendars.yml +286 -285
  368. data/resources/locales/lv/currencies.yml +1122 -1084
  369. data/resources/locales/lv/languages.yml +583 -580
  370. data/resources/locales/lv/layout.yml +5 -5
  371. data/resources/locales/lv/lists.yml +23 -7
  372. data/resources/locales/lv/numbers.yml +63 -58
  373. data/resources/locales/lv/plurals.yml +11 -3
  374. data/resources/locales/lv/rbnf.yml +238 -0
  375. data/resources/locales/lv/territories.yml +264 -263
  376. data/resources/locales/ms/calendars.yml +280 -279
  377. data/resources/locales/ms/currencies.yml +954 -916
  378. data/resources/locales/ms/languages.yml +583 -580
  379. data/resources/locales/ms/layout.yml +5 -5
  380. data/resources/locales/ms/lists.yml +23 -7
  381. data/resources/locales/ms/numbers.yml +62 -57
  382. data/resources/locales/ms/plurals.yml +2 -2
  383. data/resources/locales/ms/rbnf.yml +130 -0
  384. data/resources/locales/ms/territories.yml +264 -263
  385. data/resources/locales/nb/calendars.yml +284 -283
  386. data/resources/locales/nb/currencies.yml +958 -916
  387. data/resources/locales/nb/languages.yml +583 -580
  388. data/resources/locales/nb/layout.yml +5 -5
  389. data/resources/locales/nb/lists.yml +23 -7
  390. data/resources/locales/nb/numbers.yml +62 -57
  391. data/resources/locales/nb/plurals.yml +2 -2
  392. data/resources/locales/nb/rbnf.yml +191 -0
  393. data/resources/locales/nb/territories.yml +264 -263
  394. data/resources/locales/nl/calendars.yml +285 -284
  395. data/resources/locales/nl/currencies.yml +953 -917
  396. data/resources/locales/nl/languages.yml +583 -580
  397. data/resources/locales/nl/layout.yml +5 -5
  398. data/resources/locales/nl/lists.yml +23 -7
  399. data/resources/locales/nl/numbers.yml +62 -57
  400. data/resources/locales/nl/plurals.yml +3 -2
  401. data/resources/locales/nl/rbnf.yml +320 -0
  402. data/resources/locales/nl/territories.yml +264 -263
  403. data/resources/locales/pl/calendars.yml +288 -287
  404. data/resources/locales/pl/currencies.yml +1326 -1284
  405. data/resources/locales/pl/languages.yml +583 -580
  406. data/resources/locales/pl/layout.yml +5 -5
  407. data/resources/locales/pl/lists.yml +23 -7
  408. data/resources/locales/pl/numbers.yml +64 -59
  409. data/resources/locales/pl/plurals.yml +11 -4
  410. data/resources/locales/pl/rbnf.yml +410 -0
  411. data/resources/locales/pl/territories.yml +264 -263
  412. data/resources/locales/pt/calendars.yml +290 -289
  413. data/resources/locales/pt/currencies.yml +954 -916
  414. data/resources/locales/pt/languages.yml +583 -580
  415. data/resources/locales/pt/layout.yml +5 -5
  416. data/resources/locales/pt/lists.yml +23 -7
  417. data/resources/locales/pt/numbers.yml +62 -57
  418. data/resources/locales/pt/plurals.yml +4 -2
  419. data/resources/locales/pt/rbnf.yml +586 -0
  420. data/resources/locales/pt/territories.yml +264 -263
  421. data/resources/locales/ro/calendars.yml +284 -283
  422. data/resources/locales/ro/currencies.yml +1170 -1132
  423. data/resources/locales/ro/languages.yml +583 -580
  424. data/resources/locales/ro/layout.yml +5 -5
  425. data/resources/locales/ro/lists.yml +23 -7
  426. data/resources/locales/ro/numbers.yml +63 -58
  427. data/resources/locales/ro/plurals.yml +5 -2
  428. data/resources/locales/ro/rbnf.yml +250 -0
  429. data/resources/locales/ro/territories.yml +264 -263
  430. data/resources/locales/ru/calendars.yml +282 -281
  431. data/resources/locales/ru/currencies.yml +1118 -1247
  432. data/resources/locales/ru/languages.yml +583 -580
  433. data/resources/locales/ru/layout.yml +5 -5
  434. data/resources/locales/ru/lists.yml +23 -7
  435. data/resources/locales/ru/numbers.yml +63 -59
  436. data/resources/locales/ru/plurals.yml +8 -4
  437. data/resources/locales/ru/rbnf.yml +385 -0
  438. data/resources/locales/ru/territories.yml +264 -263
  439. data/resources/locales/sk/calendars.yml +254 -251
  440. data/resources/locales/sk/currencies.yml +1174 -1008
  441. data/resources/locales/sk/languages.yml +583 -580
  442. data/resources/locales/sk/layout.yml +5 -5
  443. data/resources/locales/sk/lists.yml +23 -7
  444. data/resources/locales/sk/numbers.yml +64 -58
  445. data/resources/locales/sk/plurals.yml +6 -2
  446. data/resources/locales/sk/rbnf.yml +304 -0
  447. data/resources/locales/sk/territories.yml +264 -263
  448. data/resources/locales/sq/calendars.yml +283 -206
  449. data/resources/locales/sq/currencies.yml +954 -916
  450. data/resources/locales/sq/languages.yml +583 -580
  451. data/resources/locales/sq/layout.yml +5 -5
  452. data/resources/locales/sq/lists.yml +23 -7
  453. data/resources/locales/sq/numbers.yml +62 -57
  454. data/resources/locales/sq/plurals.yml +2 -2
  455. data/resources/locales/sq/rbnf.yml +181 -0
  456. data/resources/locales/sq/territories.yml +264 -263
  457. data/resources/locales/sr/calendars.yml +290 -289
  458. data/resources/locales/sr/currencies.yml +1251 -1508
  459. data/resources/locales/sr/languages.yml +583 -580
  460. data/resources/locales/sr/layout.yml +5 -5
  461. data/resources/locales/sr/lists.yml +23 -7
  462. data/resources/locales/sr/numbers.yml +62 -58
  463. data/resources/locales/sr/plurals.yml +12 -4
  464. data/resources/locales/sr/rbnf.yml +429 -0
  465. data/resources/locales/sr/territories.yml +264 -263
  466. data/resources/locales/sv/calendars.yml +290 -289
  467. data/resources/locales/sv/currencies.yml +960 -930
  468. data/resources/locales/sv/languages.yml +583 -580
  469. data/resources/locales/sv/layout.yml +5 -5
  470. data/resources/locales/sv/lists.yml +23 -7
  471. data/resources/locales/sv/numbers.yml +63 -58
  472. data/resources/locales/sv/plurals.yml +3 -2
  473. data/resources/locales/sv/rbnf.yml +692 -0
  474. data/resources/locales/sv/territories.yml +264 -263
  475. data/resources/locales/ta/calendars.yml +281 -266
  476. data/resources/locales/ta/currencies.yml +953 -915
  477. data/resources/locales/ta/languages.yml +583 -580
  478. data/resources/locales/ta/layout.yml +5 -5
  479. data/resources/locales/ta/lists.yml +23 -7
  480. data/resources/locales/ta/numbers.yml +62 -57
  481. data/resources/locales/ta/plurals.yml +2 -2
  482. data/resources/locales/ta/rbnf.yml +241 -0
  483. data/resources/locales/ta/territories.yml +264 -263
  484. data/resources/locales/th/calendars.yml +278 -289
  485. data/resources/locales/th/currencies.yml +953 -915
  486. data/resources/locales/th/languages.yml +583 -580
  487. data/resources/locales/th/layout.yml +5 -5
  488. data/resources/locales/th/lists.yml +23 -7
  489. data/resources/locales/th/numbers.yml +62 -57
  490. data/resources/locales/th/plurals.yml +2 -2
  491. data/resources/locales/th/rbnf.yml +119 -0
  492. data/resources/locales/th/territories.yml +264 -263
  493. data/resources/locales/tr/calendars.yml +287 -286
  494. data/resources/locales/tr/currencies.yml +953 -916
  495. data/resources/locales/tr/languages.yml +583 -580
  496. data/resources/locales/tr/layout.yml +5 -5
  497. data/resources/locales/tr/lists.yml +23 -7
  498. data/resources/locales/tr/numbers.yml +61 -56
  499. data/resources/locales/tr/plurals.yml +2 -2
  500. data/resources/locales/tr/rbnf.yml +277 -0
  501. data/resources/locales/tr/territories.yml +264 -263
  502. data/resources/locales/uk/calendars.yml +286 -252
  503. data/resources/locales/uk/currencies.yml +1311 -1070
  504. data/resources/locales/uk/languages.yml +583 -580
  505. data/resources/locales/uk/layout.yml +5 -5
  506. data/resources/locales/uk/lists.yml +23 -7
  507. data/resources/locales/uk/numbers.yml +64 -59
  508. data/resources/locales/uk/plurals.yml +10 -4
  509. data/resources/locales/uk/rbnf.yml +430 -0
  510. data/resources/locales/uk/territories.yml +264 -263
  511. data/resources/locales/ur/calendars.yml +267 -228
  512. data/resources/locales/ur/currencies.yml +954 -916
  513. data/resources/locales/ur/languages.yml +583 -580
  514. data/resources/locales/ur/layout.yml +5 -5
  515. data/resources/locales/ur/lists.yml +23 -7
  516. data/resources/locales/ur/numbers.yml +62 -57
  517. data/resources/locales/ur/plurals.yml +3 -2
  518. data/resources/locales/ur/rbnf.yml +4 -0
  519. data/resources/locales/ur/territories.yml +264 -263
  520. data/resources/locales/vi/calendars.yml +256 -236
  521. data/resources/locales/vi/currencies.yml +953 -915
  522. data/resources/locales/vi/languages.yml +583 -580
  523. data/resources/locales/vi/layout.yml +5 -5
  524. data/resources/locales/vi/lists.yml +23 -7
  525. data/resources/locales/vi/numbers.yml +62 -57
  526. data/resources/locales/vi/plurals.yml +2 -2
  527. data/resources/locales/vi/rbnf.yml +164 -0
  528. data/resources/locales/vi/territories.yml +264 -263
  529. data/resources/locales/zh/calendars.yml +266 -265
  530. data/resources/locales/zh/currencies.yml +953 -915
  531. data/resources/locales/zh/languages.yml +583 -580
  532. data/resources/locales/zh/layout.yml +5 -5
  533. data/resources/locales/zh/lists.yml +23 -7
  534. data/resources/locales/zh/numbers.yml +62 -57
  535. data/resources/locales/zh/plurals.yml +2 -2
  536. data/resources/locales/zh/rbnf.yml +689 -0
  537. data/resources/locales/zh/territories.yml +264 -263
  538. data/resources/locales/zh-Hant/calendars.yml +266 -265
  539. data/resources/locales/zh-Hant/currencies.yml +955 -915
  540. data/resources/locales/zh-Hant/languages.yml +583 -580
  541. data/resources/locales/zh-Hant/layout.yml +5 -5
  542. data/resources/locales/zh-Hant/lists.yml +23 -7
  543. data/resources/locales/zh-Hant/numbers.yml +62 -57
  544. data/resources/locales/zh-Hant/plurals.yml +2 -2
  545. data/resources/locales/zh-Hant/rbnf.yml +647 -0
  546. data/resources/locales/zh-Hant/territories.yml +264 -263
  547. data/resources/shared/currency_digits_and_rounding.yml +67 -64
  548. data/resources/shared/numbering_systems.yml +176 -0
  549. data/resources/shared/rbnf_root.yml +1573 -0
  550. data/resources/shared/segments/segments_root.yml +728 -0
  551. data/resources/shared/segments/tailorings/en.yml +8 -0
  552. data/resources/uli/segments/de.yml +128 -0
  553. data/resources/uli/segments/en.yml +154 -0
  554. data/resources/uli/segments/es.yml +112 -0
  555. data/resources/uli/segments/fr.yml +47 -0
  556. data/resources/uli/segments/it.yml +37 -0
  557. data/resources/uli/segments/pt.yml +173 -0
  558. data/resources/uli/segments/ru.yml +10 -0
  559. data/resources/unicode_data/casefolding.yml +4765 -0
  560. data/resources/unicode_data/indices/bidi_class.yml +4572 -0
  561. data/resources/unicode_data/indices/bidi_mirrored.yml +3087 -0
  562. data/resources/unicode_data/indices/category.yml +10918 -0
  563. data/resources/unicode_data/indices/keys.yml +101 -0
  564. data/resources/unicode_data/properties/line_break.yml +9269 -0
  565. data/resources/unicode_data/properties/sentence_break.yml +8067 -0
  566. data/resources/unicode_data/properties/word_break.yml +3001 -0
  567. data/spec/collation/collation_spec.rb +2 -1
  568. data/spec/collation/collator_spec.rb +4 -3
  569. data/spec/collation/tailoring_spec.rb +2 -2
  570. data/spec/collation/tailoring_tests/he.txt +5 -2
  571. data/spec/{tokenizers/calendars → data_readers}/additional_date_format_selector_spec.rb +13 -13
  572. data/spec/data_readers/date_time_data_reader_spec.rb +26 -0
  573. data/spec/data_readers/number_data_reader_spec.rb +18 -0
  574. data/spec/data_readers/timespan_data_reader.rb +22 -0
  575. data/spec/formatters/calendars/datetime_formatter_spec.rb +18 -22
  576. data/spec/formatters/list_formatter_spec.rb +16 -87
  577. data/spec/formatters/numbers/abbreviated/abbreviated_number_formatter_spec.rb +15 -59
  578. data/spec/formatters/numbers/abbreviated/long_decimal_formatter_spec.rb +32 -17
  579. data/spec/formatters/numbers/abbreviated/short_decimal_formatter_spec.rb +33 -17
  580. data/spec/formatters/numbers/currency_formatter_spec.rb +18 -13
  581. data/spec/formatters/numbers/decimal_formatter_spec.rb +16 -18
  582. data/spec/formatters/numbers/number_formatter_spec.rb +40 -31
  583. data/spec/formatters/numbers/percent_formatter_spec.rb +14 -6
  584. data/spec/formatters/numbers/rbnf/allowed_failures.yml +74 -0
  585. data/spec/formatters/numbers/rbnf/locales/af/rbnf_test.yml +706 -0
  586. data/spec/formatters/numbers/rbnf/locales/ar/rbnf_test.yml +706 -0
  587. data/spec/formatters/numbers/rbnf/locales/be/rbnf_test.yml +1174 -0
  588. data/spec/formatters/numbers/rbnf/locales/bg/rbnf_test.yml +706 -0
  589. data/spec/formatters/numbers/rbnf/locales/bn/rbnf_test.yml +1291 -0
  590. data/spec/formatters/numbers/rbnf/locales/ca/rbnf_test.yml +1174 -0
  591. data/spec/formatters/numbers/rbnf/locales/cs/rbnf_test.yml +823 -0
  592. data/spec/formatters/numbers/rbnf/locales/cy/rbnf_test.yml +940 -0
  593. data/spec/formatters/numbers/rbnf/locales/da/rbnf_test.yml +940 -0
  594. data/spec/formatters/numbers/rbnf/locales/de/rbnf_test.yml +940 -0
  595. data/spec/formatters/numbers/rbnf/locales/el/rbnf_test.yml +1174 -0
  596. data/spec/formatters/numbers/rbnf/locales/en/rbnf_test.yml +1291 -0
  597. data/spec/formatters/numbers/rbnf/locales/en-GB/rbnf_test.yml +1291 -0
  598. data/spec/formatters/numbers/rbnf/locales/es/rbnf_test.yml +1642 -0
  599. data/spec/formatters/numbers/rbnf/locales/eu/rbnf_test.yml +1291 -0
  600. data/spec/formatters/numbers/rbnf/locales/fa/rbnf_test.yml +589 -0
  601. data/spec/formatters/numbers/rbnf/locales/fi/rbnf_test.yml +706 -0
  602. data/spec/formatters/numbers/rbnf/locales/fil/rbnf_test.yml +706 -0
  603. data/spec/formatters/numbers/rbnf/locales/fr/rbnf_test.yml +1408 -0
  604. data/spec/formatters/numbers/rbnf/locales/ga/rbnf_test.yml +940 -0
  605. data/spec/formatters/numbers/rbnf/locales/gl/rbnf_test.yml +1291 -0
  606. data/spec/formatters/numbers/rbnf/locales/he/rbnf_test.yml +1057 -0
  607. data/spec/formatters/numbers/rbnf/locales/hi/rbnf_test.yml +823 -0
  608. data/spec/formatters/numbers/rbnf/locales/hr/rbnf_test.yml +1174 -0
  609. data/spec/formatters/numbers/rbnf/locales/hu/rbnf_test.yml +940 -0
  610. data/spec/formatters/numbers/rbnf/locales/id/rbnf_test.yml +706 -0
  611. data/spec/formatters/numbers/rbnf/locales/is/rbnf_test.yml +823 -0
  612. data/spec/formatters/numbers/rbnf/locales/it/rbnf_test.yml +1174 -0
  613. data/spec/formatters/numbers/rbnf/locales/ja/rbnf_test.yml +823 -0
  614. data/spec/formatters/numbers/rbnf/locales/ko/rbnf_test.yml +1408 -0
  615. data/spec/formatters/numbers/rbnf/locales/lv/rbnf_test.yml +706 -0
  616. data/spec/formatters/numbers/rbnf/locales/ms/rbnf_test.yml +706 -0
  617. data/spec/formatters/numbers/rbnf/locales/nb/rbnf_test.yml +940 -0
  618. data/spec/formatters/numbers/rbnf/locales/nl/rbnf_test.yml +706 -0
  619. data/spec/formatters/numbers/rbnf/locales/pl/rbnf_test.yml +823 -0
  620. data/spec/formatters/numbers/rbnf/locales/pt/rbnf_test.yml +1174 -0
  621. data/spec/formatters/numbers/rbnf/locales/ro/rbnf_test.yml +823 -0
  622. data/spec/formatters/numbers/rbnf/locales/ru/rbnf_test.yml +823 -0
  623. data/spec/formatters/numbers/rbnf/locales/sk/rbnf_test.yml +823 -0
  624. data/spec/formatters/numbers/rbnf/locales/sq/rbnf_test.yml +706 -0
  625. data/spec/formatters/numbers/rbnf/locales/sr/rbnf_test.yml +940 -0
  626. data/spec/formatters/numbers/rbnf/locales/sv/rbnf_test.yml +1876 -0
  627. data/spec/formatters/numbers/rbnf/locales/ta/rbnf_test.yml +706 -0
  628. data/spec/formatters/numbers/rbnf/locales/th/rbnf_test.yml +706 -0
  629. data/spec/formatters/numbers/rbnf/locales/tr/rbnf_test.yml +706 -0
  630. data/spec/formatters/numbers/rbnf/locales/uk/rbnf_test.yml +823 -0
  631. data/spec/formatters/numbers/rbnf/locales/ur/rbnf_test.yml +1291 -0
  632. data/spec/formatters/numbers/rbnf/locales/vi/rbnf_test.yml +706 -0
  633. data/spec/formatters/numbers/rbnf/locales/zh/rbnf_test.yml +940 -0
  634. data/spec/formatters/numbers/rbnf/locales/zh-Hant/rbnf_test.yml +940 -0
  635. data/spec/formatters/numbers/rbnf/rbnf_spec.rb +98 -0
  636. data/spec/formatters/plurals/plural_formatter_spec.rb +4 -4
  637. data/spec/formatters/plurals/rules_spec.rb +5 -5
  638. data/spec/localized/localized_date_spec.rb +1 -1
  639. data/spec/localized/localized_datetime_spec.rb +8 -13
  640. data/spec/localized/localized_number_spec.rb +17 -32
  641. data/spec/localized/localized_object_spec.rb +0 -5
  642. data/spec/localized/localized_string_spec.rb +40 -2
  643. data/spec/localized/localized_time_spec.rb +3 -6
  644. data/spec/localized/localized_timespan_spec.rb +144 -0
  645. data/spec/normalization_spec.rb +12 -12
  646. data/spec/parsers/number_parser_spec.rb +5 -5
  647. data/spec/parsers/parser_spec.rb +60 -0
  648. data/spec/parsers/segmentation_parser_spec.rb +96 -0
  649. data/spec/parsers/symbol_table_spec.rb +32 -0
  650. data/spec/parsers/unicode_regex/character_class_spec.rb +117 -0
  651. data/spec/parsers/unicode_regex/character_range_spec.rb +21 -0
  652. data/spec/parsers/unicode_regex/character_set_spec.rb +36 -0
  653. data/spec/parsers/unicode_regex/literal_spec.rb +34 -0
  654. data/spec/parsers/unicode_regex/unicode_string_spec.rb +22 -0
  655. data/spec/parsers/unicode_regex_parser_spec.rb +86 -0
  656. data/spec/readme_spec.rb +8 -269
  657. data/spec/shared/break_iterator_spec.rb +72 -0
  658. data/spec/shared/calendar_spec.rb +5 -4
  659. data/spec/shared/casefolder_spec.rb +30 -0
  660. data/spec/shared/casefolding.txt +251 -0
  661. data/spec/shared/casefolding_expected.txt +251 -0
  662. data/spec/shared/code_point_spec.rb +44 -14
  663. data/spec/shared/numbering_system_spec.rb +41 -0
  664. data/spec/shared/territories_spec.rb +14 -6
  665. data/spec/shared/unicode_regex_spec.rb +203 -0
  666. data/spec/spec_helper.rb +17 -0
  667. data/spec/tokenizers/calendars/date_tokenizer_spec.rb +26 -30
  668. data/spec/tokenizers/calendars/datetime_tokenizer_spec.rb +11 -90
  669. data/spec/tokenizers/calendars/time_tokenizer_spec.rb +5 -5
  670. data/spec/tokenizers/calendars/timespan_tokenizer_spec.rb +17 -7
  671. data/spec/tokenizers/numbers/number_tokenizer_spec.rb +28 -27
  672. data/spec/tokenizers/segmentation/segmentation_tokenizer_spec.rb +40 -0
  673. data/spec/tokenizers/unicode_regex/unicode_regex_tokenizer_spec.rb +190 -0
  674. data/spec/utils/range_set_spec.rb +171 -0
  675. data/spec/utils/yaml/yaml_spec.rb +62 -51
  676. data/twitter_cldr.gemspec +1 -1
  677. metadata +199 -30
  678. data/lib/twitter_cldr/formatters/base.rb +0 -47
  679. data/lib/twitter_cldr/formatters/calendars/date_formatter.rb +0 -19
  680. data/lib/twitter_cldr/formatters/calendars/time_formatter.rb +0 -19
  681. data/lib/twitter_cldr/normalization/base.rb +0 -37
  682. data/lib/twitter_cldr/normalization/hangul.rb +0 -79
  683. data/lib/twitter_cldr/normalization/nfc.rb +0 -24
  684. data/lib/twitter_cldr/normalization/nfd.rb +0 -26
  685. data/lib/twitter_cldr/normalization/nfkc.rb +0 -114
  686. data/lib/twitter_cldr/normalization/nfkd.rb +0 -120
  687. data/lib/twitter_cldr/normalization/quick_check.rb +0 -41
  688. data/lib/twitter_cldr/tokenizers/base.rb +0 -169
  689. data/lib/twitter_cldr/tokenizers/calendars/datetime_tokenizer.rb +0 -131
  690. data/lib/twitter_cldr/utils/territories.rb +0 -56
  691. data/spec/formatters/base_spec.rb +0 -18
  692. data/spec/formatters/calendars/timespan_formatter_spec.rb +0 -112
  693. data/spec/normalization/NormalizationTestShort.txt +0 -602
  694. data/spec/normalization/base_spec.rb +0 -16
  695. data/spec/normalization/hangul_spec.rb +0 -42
  696. data/spec/normalization/normalization_spec.rb +0 -113
  697. data/spec/tokenizers/base_spec.rb +0 -259
  698. data/spec/utils/territories_spec.rb +0 -16
@@ -1,949 +1,968 @@
1
- ---
2
- :fr:
3
- :currencies:
4
- :ADP:
5
- :one: peseta andorrane
6
- :other: pesetas andorranes
7
- :symbol: ₧A
8
- :AED:
9
- :one: dirham des Émirats arabes unis
10
- :other: dirhams des Émirats arabes unis
11
- :AFA:
12
- :one: afghani (1927–2002)
13
- :other: afghanis (1927–2002)
14
- :AFN:
15
- :one: afghani afghan
16
- :other: afghanis afghan
17
- :symbol: Af
18
- :ALK:
19
- :one: lek albanais (1947–1961)
20
- :other: leks albanais (1947–1961)
21
- :ALL:
22
- :one: lek albanais
23
- :other: leks albanais
24
- :AMD:
25
- :one: dram arménien
26
- :other: drams arméniens
27
- :ANG:
28
- :one: florin antillais
29
- :other: florins antillais
30
- :symbol: f.NA
31
- :AOA:
32
- :one: kwanza angolais
33
- :other: kwanzas angolais
34
- :AOK:
35
- :one: kwanza angolais (19771990)
36
- :other: kwanzas angolais (19771990)
37
- :AON:
38
- :one: nouveau kwanza angolais (19902000)
39
- :other: nouveaux kwanzas angolais (19902000)
40
- :AOR:
41
- :one: kwanza angolais réajusté (1995–1999)
42
- :other: kwanzas angolais réajustés (1995–1999)
43
- :ARA:
44
- :one: austral argentin
45
- :other: australs argentins
46
- :ARL:
47
- :one: Argentine peso ley (1970-1983)
48
- :other: Argentine pesos ley (1970-1983)
49
- :ARM:
50
- :one: Argentine peso (1881-1970)
51
- :other: Argentine pesos (1881-1970)
52
- :ARP:
53
- :one: peso argentin (1983–1985)
54
- :other: pesos argentins (1983–1985)
55
- :ARS:
56
- :one: peso argentin
57
- :other: pesos argentins
58
- :ATS:
59
- :one: schilling autrichien
60
- :other: schillings autrichiens
61
- :AUD:
62
- :one: dollar australien
63
- :other: dollars australiens
64
- :symbol: $AU
65
- :AWG:
66
- :one: florin arubais
67
- :other: florins arubais
68
- :AZM:
69
- :one: manat azéri (1993–2006)
70
- :other: manats azéris (1993–2006)
71
- :AZN:
72
- :one: manat azéri
73
- :other: manats azéris
74
- :BAD:
75
- :one: dinar bosniaque
76
- :other: dinars bosniaques
77
- :BAM:
78
- :one: mark convertible bosniaque
79
- :other: marks convertibles bosniaques
80
- :symbol: KM
81
- :BAN:
82
- :one: Bosnia-Herzegovina new dinar (1994-1997)
83
- :other: Bosnia-Herzegovina new dinars (1994-1997)
84
- :BBD:
85
- :one: dollar barbadien
86
- :other: dollars barbadiens
87
- :BDT:
88
- :one: taka bangladeshi
89
- :other: takas bangladeshis
90
- :symbol: Tk
91
- :BEC:
92
- :one: franc belge (convertible)
93
- :other: francs belges (convertibles)
94
- :BEF:
95
- :one: franc belge
96
- :other: francs belges
97
- :symbol: FB
98
- :BEL:
99
- :one: franc belge (financier)
100
- :other: francs belges (financiers)
101
- :BGL:
102
- :one: lev bulgare (1962–1999)
103
- :other: levs bulgares (1962–1999)
104
- :BGM:
105
- :one: Bulgarian socialist lev
106
- :other: Bulgarian socialist leva
107
- :BGN:
108
- :one: nouveau lev bulgare
109
- :other: nouveaux levs bulgares
110
- :BGO:
111
- :one: Bulgarian lev (1879-1952)
112
- :other: Bulgarian leva (1879-1952)
113
- :BHD:
114
- :one: dinar bahreïni
115
- :other: dinars bahreïnis
116
- :BIF:
117
- :one: franc burundais
118
- :other: francs burundais
119
- :BMD:
120
- :one: dollar bermudien
121
- :other: dollars bermudiens
122
- :BND:
123
- :one: dollar brunéien
124
- :other: dollars brunéiens
125
- :symbol: $BN
126
- :BOB:
127
- :one: boliviano bolivien
128
- :other: bolivianos boliviens
129
- :BOL:
130
- :one: Bolivian boliviano (1863-1963)
131
- :other: Bolivian bolivianos (1863-1963)
132
- :BOP:
133
- :one: peso bolivien
134
- :other: pesos boliviens
135
- :BOV:
136
- :one: mvdol bolivien
137
- :other: mvdols boliviens
138
- :BRB:
139
- :one: nouveau cruzeiro brésilien (1967–1986)
140
- :other: nouveaux cruzeiros brésiliens (1967–1986)
141
- :BRC:
142
- :one: cruzado brésilien (1986–1989)
143
- :other: cruzados brésiliens (1986–1989)
144
- :BRE:
145
- :one: cruzeiro brésilien (1990–1993)
146
- :other: cruzeiros brésiliens (1990–1993)
147
- :BRL:
148
- :one: réal brésilien
149
- :other: réals brésiliens
150
- :symbol: R$
151
- :BRN:
152
- :one: nouveau cruzado brésilien (1989–1990)
153
- :other: nouveaux cruzados brésiliens (1989–1990)
154
- :BRR:
155
- :one: cruzeiro réal brésilien (1993–1994)
156
- :other: cruzeiros réals brésiliens (1993–1994)
157
- :BRZ:
158
- :one: Brazilian cruzeiro (1942-1967)
159
- :other: Brazilian cruzeiros (1942-1967)
160
- :BSD:
161
- :one: dollar bahaméen
162
- :other: dollars bahaméens
163
- :BTN:
164
- :one: ngultrum bouthanais
165
- :other: ngultrums bouthanais
166
- :BUK:
167
- :one: kyat birman
168
- :other: kyats birmans
169
- :BWP:
170
- :one: pula botswanais
171
- :other: pulas botswanais
172
- :BYB:
173
- :one: nouveau rouble biélorusse (1994–1999)
174
- :other: nouveaux roubles biélorusses (1994–1999)
175
- :BYR:
176
- :one: rouble biélorusse
177
- :other: roubles biélorusses
178
- :BZD:
179
- :one: dollar bélizéen
180
- :other: dollars bélizéens
181
- :CAD:
182
- :one: dollar canadien
183
- :other: dollars canadiens
184
- :symbol: $CA
185
- :CDF:
186
- :one: franc congolais
187
- :other: francs congolais
188
- :CHE:
189
- :one: euro WIR
190
- :other: euros WIR
191
- :CHF:
192
- :one: franc suisse
193
- :other: francs suisses
194
- :CHW:
195
- :one: franc WIR
196
- :other: francs WIR
197
- :CLE:
198
- :one: Chilean escudo
199
- :other: Chilean escudos
200
- :CLF:
201
- :one: unité d’investissement chilienne
202
- :other: unités d’investissement chiliennes
203
- :CLP:
204
- :one: peso chilien
205
- :other: pesos chiliens
206
- :CNX:
207
- :one: Chinese People’s Bank dollar
208
- :other: Chinese People’s Bank dollars
209
- :CNY:
210
- :one: yuan renminbi chinois
211
- :other: yuans renminbi chinois
212
- :symbol: ¥CN
213
- :COP:
214
- :one: peso colombien
215
- :other: pesos colombiens
216
- :COU:
217
- :one: unité de valeur réelle colombienne
218
- :other: unités de valeur réelle colombiennes
219
- :CRC:
220
- :one: colón costaricain
221
- :other: colóns costaricains
222
- :CSD:
223
- :one: dinar serbo-monténégrin
224
- :other: dinars serbo-monténégrins
225
- :CSK:
226
- :one: couronne forte tchécoslovaque
227
- :other: couronnes fortes tchécoslovaques
228
- :CUC:
229
- :one: peso cubain convertible
230
- :other: pesos cubains convertibles
231
- :CUP:
232
- :one: peso cubain
233
- :other: pesos cubains
234
- :CVE:
235
- :one: escudo capverdien
236
- :other: escudos capverdiens
237
- :CYP:
238
- :one: livre chypriote
239
- :other: livres chypriotes
240
- :symbol: £CY
241
- :CZK:
242
- :one: couronne tchèque
243
- :other: couronnes tchèques
244
- :DDM:
245
- :one: mark est-allemand
246
- :other: marks est-allemands
247
- :DEM:
248
- :one: mark allemand
249
- :other: marks allemands
250
- :DJF:
251
- :one: franc djiboutien
252
- :other: francs djiboutiens
253
- :symbol: FDj
254
- :DKK:
255
- :one: couronne danoise
256
- :other: couronnes danoises
257
- :DOP:
258
- :one: peso dominicain
259
- :other: pesos dominicains
260
- :DZD:
261
- :one: dinar algérien
262
- :other: dinars algériens
263
- :ECS:
264
- :one: sucre équatorien
265
- :other: sucres équatoriens
266
- :ECV:
267
- :one: unité de valeur constante équatorienne (UVC)
268
- :other: unités de valeur constante équatoriennes (UVC)
269
- :EEK:
270
- :one: couronne estonienne
271
- :other: couronnes estoniennes
272
- :symbol: krE
273
- :EGP:
274
- :one: livre égyptienne
275
- :other: livres égyptiennes
276
- :ERN:
277
- :one: nafka érythréen
278
- :other: nafkas érythréens
279
- :ESA:
280
- :one: peseta espagnole (compte A)
281
- :other: pesetas espagnoles (compte A)
282
- :ESB:
283
- :one: peseta espagnole (compte convertible)
284
- :other: pesetas espagnoles (compte convertible)
285
- :ESP:
286
- :one: peseta espagnole
287
- :other: pesetas espagnoles
288
- :symbol:
289
- :ETB:
290
- :one: birr éthiopien
291
- :other: birrs éthiopiens
292
- :EUR:
293
- :one: euro
294
- :other: euros
295
- :symbol:
296
- :FIM:
297
- :one: mark finlandais
298
- :other: marks finlandais
299
- :FJD:
300
- :one: dollar fidjien
301
- :other: dollars fidjien
302
- :symbol: $FJ
303
- :FKP:
304
- :one: livre des Falkland
305
- :other: livres des Falkland
306
- :FRF:
307
- :one: franc français
308
- :other: francs français
309
- :symbol: F
310
- :GBP:
311
- :one: livre sterling
312
- :other: livres sterling
313
- :symbol: £UK
314
- :GEK:
315
- :one: coupon de lari géorgien
316
- :other: coupons de lari géorgiens
317
- :GEL:
318
- :one: lari géorgien
319
- :other: lari géorgiens
320
- :GHC:
321
- :one: cédi ghanéen (1967–2007)
322
- :other: cédis ghanéens (1967–2007)
323
- :GHS:
324
- :one: cédi ghanéen
325
- :other: cédis ghanéens
326
- :GIP:
327
- :one: livre de Gibraltar
328
- :other: livres de Gibraltar
329
- :GMD:
330
- :one: dalasi gambien
331
- :other: dalasis gambiens
332
- :GNF:
333
- :one: franc guinéen
334
- :other: francs guinéens
335
- :GNS:
336
- :one: syli guinéen
337
- :other: sylis guinéens
338
- :GQE:
339
- :one: ekwélé équatoguinéen
340
- :other: ekwélés équatoguinéens
341
- :GRD:
342
- :one: drachme grecque
343
- :other: drachmes grecques
344
- :GTQ:
345
- :one: quetzal guatémaltèque
346
- :other: quetzals guatémaltèques
347
- :GWE:
348
- :one: escudo de Guinée portugaise
349
- :other: escudos de Guinée portugaise
350
- :GWP:
351
- :one: peso bissau-guinéen
352
- :other: pesos bissau-guinéens
353
- :GYD:
354
- :one: dollar du Guyana
355
- :other: dollars du Guyana
356
- :HKD:
357
- :one: dollar de Hong Kong
358
- :other: dollars de Hong Kong
359
- :symbol: $HK
360
- :HNL:
361
- :one: lempira hondurien
362
- :other: lempiras honduriens
363
- :HRD:
364
- :one: dinar croate
365
- :other: dinars croates
366
- :HRK:
367
- :one: kuna croate
368
- :other: kunas croates
369
- :HTG:
370
- :one: gourde haïtienne
371
- :other: gourdes haïtiennes
372
- :HUF:
373
- :one: forint hongrois
374
- :other: forints hongrois
375
- :IDR:
376
- :one: roupie indonésienne
377
- :other: roupies indonésiennes
378
- :symbol: Rp
379
- :IEP:
380
- :one: livre irlandaise
381
- :other: livres irlandaises
382
- :symbol: £IE
383
- :ILP:
384
- :one: livre israélienne
385
- :other: livres israéliennes
386
- :symbol: £IL
387
- :ILR:
388
- :one: Israeli sheqel (1980-1985)
389
- :other: Israeli sheqels (1980-1985)
390
- :ILS:
391
- :one: nouveau shekel israélien
392
- :other: nouveaux shekels israélien
393
- :symbol:
394
- :INR:
395
- :one: roupie indienne
396
- :other: roupies indiennes
397
- :symbol:
398
- :IQD:
399
- :one: dinar irakien
400
- :other: dinars irakiens
401
- :IRR:
402
- :one: rial iranien
403
- :other: rials iraniens
404
- :ISJ:
405
- :one: Icelandic króna (1918-1981)
406
- :other: Icelandic krónur (1918-1981)
407
- :ISK:
408
- :one: couronne islandaise
409
- :other: couronnes islandaises
410
- :ITL:
411
- :one: lire italienne
412
- :other: lires italiennes
413
- :symbol: ₤IT
414
- :JMD:
415
- :one: dollar jamaïcain
416
- :other: dollars jamaïcains
417
- :JOD:
418
- :one: dinar jordanien
419
- :other: dinars jordaniens
420
- :JPY:
421
- :one: yen japonais
422
- :other: yens japonais
423
- :symbol: ¥JP
424
- :KES:
425
- :one: shilling kényan
426
- :other: shillings kényans
427
- :KGS:
428
- :one: som kirghize
429
- :other: soms kirghizes
430
- :KHR:
431
- :one: riel cambodgien
432
- :other: riels cambodgiens
433
- :KMF:
434
- :one: franc comorien
435
- :other: francs comoriens
436
- :KPW:
437
- :one: won nord-coréen
438
- :other: wons nord-coréens
439
- :KRH:
440
- :one: South Korean hwan (1953-1962)
441
- :other: South Korean hwan (1953-1962)
442
- :KRO:
443
- :one: South Korean won (1945-1953)
444
- :other: South Korean won (1945-1953)
445
- :KRW:
446
- :one: won sud-coréen
447
- :other: wons sud-coréens
448
- :symbol:
449
- :KWD:
450
- :one: dinar koweïtien
451
- :other: dinar koweïtiens
452
- :KYD:
453
- :one: dollar des îles Caïmanes
454
- :other: dollars des îles Caïmanes
455
- :KZT:
456
- :one: tenge kazakh
457
- :other: tenges kazakhs
458
- :LAK:
459
- :one: kip loatien
460
- :other: kips loatiens
461
- :LBP:
462
- :one: livre libanaise
463
- :other: livres libanaises
464
- :LKR:
465
- :one: roupie srilankaise
466
- :other: roupies srilankaises
467
- :symbol: RsSL
468
- :LRD:
469
- :one: dollar libérien
470
- :other: dollars libériens
471
- :LSL:
472
- :one: loti lesothan
473
- :other: maloti lesothans
474
- :symbol: LLs
475
- :LTL:
476
- :one: litas lituanien
477
- :other: litas lituaniens
478
- :LTT:
479
- :one: talonas lituanien
480
- :other: talonas lituaniens
481
- :LUC:
482
- :one: franc convertible luxembourgeois
483
- :other: francs convertibles luxembourgeois
484
- :LUF:
485
- :one: franc luxembourgeois
486
- :other: francs luxembourgeois
487
- :LUL:
488
- :one: franc financier luxembourgeois
489
- :other: francs financiers luxembourgeois
490
- :LVL:
491
- :one: lats letton
492
- :other: lats lettons
493
- :LVR:
494
- :one: rouble letton
495
- :other: roubles lettons
496
- :LYD:
497
- :one: dinar lybien
498
- :other: dinars lybien
499
- :MAD:
500
- :one: dirham marocain
501
- :other: dirhams marocains
502
- :MAF:
503
- :one: franc marocain
504
- :other: francs marocains
505
- :MCF:
506
- :one: Monegasque franc
507
- :other: Monegasque francs
508
- :MDC:
509
- :one: Moldovan cupon
510
- :other: Moldovan cupon
511
- :MDL:
512
- :one: leu moldave
513
- :other: leus moldaves
514
- :MGA:
515
- :one: ariary malgache
516
- :other: ariarys malgaches
517
- :MGF:
518
- :one: franc malgache
519
- :other: francs malgaches
520
- :MKD:
521
- :one: denar macédonien
522
- :other: denars macédoniens
523
- :MKN:
524
- :one: Macedonian denar (1992-1993)
525
- :other: Macedonian denari (1992-1993)
526
- :MLF:
527
- :one: franc malien
528
- :other: francs maliens
529
- :MMK:
530
- :one: kyat myanmarais
531
- :other: kyats myanmarais
532
- :symbol: KMm
533
- :MNT:
534
- :one: tugrik mongol
535
- :other: tugriks mongols
536
- :symbol: Tug
537
- :MOP:
538
- :one: pataca macanaise
539
- :other: patacas macanaises
540
- :MRO:
541
- :one: ouguiya mauritanien
542
- :other: ouguiyas mauritaniens
543
- :MTL:
544
- :one: lire maltaise
545
- :other: lires maltaises
546
- :MTP:
547
- :one: livre maltaise
548
- :other: livres maltaises
549
- :symbol: £MT
550
- :MUR:
551
- :one: roupie mauricienne
552
- :other: roupies mauriciennes
553
- :MVP:
554
- :one: Maldivian rupee
555
- :other: Maldivian rupees
556
- :MVR:
557
- :one: rufiyaa maldivienne
558
- :other: rufiyaas maldiviennes
559
- :symbol: Rf
560
- :MWK:
561
- :one: kwacha malawite
562
- :other: kwachas malawites
563
- :MXN:
564
- :one: peso mexicain
565
- :other: pesos mexicains
566
- :symbol: $MEX
567
- :MXP:
568
- :one: peso d’argent mexicain (1861–1992)
569
- :other: pesos d’argent mexicains (1861–1992)
570
- :MXV:
571
- :one: unité de conversion mexicaine (UDI)
572
- :other: unités de conversion mexicaines (UDI)
573
- :MYR:
574
- :one: ringgit malais
575
- :other: ringgits malais
576
- :symbol: RM
577
- :MZE:
578
- :one: escudo mozambicain
579
- :other: escudos mozambicains
580
- :MZM:
581
- :one: metical mozambicain (19802006)
582
- :other: meticais mozambicains (19802006)
583
- :MZN:
584
- :one: metical mozambicain
585
- :other: meticais mozambicains
586
- :NAD:
587
- :one: dollar namibien
588
- :other: dollars namibiens
589
- :NGN:
590
- :one: naira nigérian
591
- :other: nairas nigérians
592
- :NIC:
593
- :one: córdoba nicaraguayen (19121988)
594
- :other: córdobas nicaraguayens (19121988)
595
- :NIO:
596
- :one: córdoba oro nicaraguayen
597
- :other: córdobas oro nicaraguayens
598
- :NLG:
599
- :one: florin néerlandais
600
- :other: florins néerlandais
601
- :NOK:
602
- :one: couronne norvégienne
603
- :other: couronnes norvégiennes
604
- :NPR:
605
- :one: roupie népalaise
606
- :other: roupies népalaises
607
- :symbol: RsNP
608
- :NZD:
609
- :one: dollar néo-zélandais
610
- :other: dollars néo-zélandais
611
- :symbol: $NZ
612
- :OMR:
613
- :one: rial omanais
614
- :other: rials omanis
615
- :PAB:
616
- :one: balboa panaméen
617
- :other: balboas panaméens
618
- :PEI:
619
- :one: inti péruvien
620
- :other: intis péruviens
621
- :PEN:
622
- :one: nouveau sol péruvien
623
- :other: nouveaux sols péruviens
624
- :PES:
625
- :one: sol péruvien (1863–1985)
626
- :other: sols péruviens (1863–1985)
627
- :PGK:
628
- :one: kina papouan-néo-guinéen
629
- :other: kinas papouan-néo-guinéens
630
- :symbol: K
631
- :PHP:
632
- :one: peso philippin
633
- :other: pesos philippins
634
- :PKR:
635
- :one: roupie pakistanaise
636
- :other: roupies pakistanaises
637
- :symbol: RsPK
638
- :PLN:
639
- :one: zloty polonais
640
- :other: zlotys polonais
641
- :PLZ:
642
- :one: zloty polonais (1950–1995)
643
- :other: zlotys polonais (1950–1995)
644
- :PTE:
645
- :one: escudo portugais
646
- :other: escudos portugais
647
- :PYG:
648
- :one: guaraní paraguayen
649
- :other: guaranís paraguayens
650
- :QAR:
651
- :one: rial qatari
652
- :other: rials qataris
653
- :RHD:
654
- :one: dollar rhodésien
655
- :other: dollars rhodésiens
656
- :symbol: $RH
657
- :ROL:
658
- :one: leu roumain (1952–2005)
659
- :other: lei roumains (1952–2005)
660
- :RON:
661
- :one: leu roumain
662
- :other: lei roumains
663
- :RSD:
664
- :one: dinar serbe
665
- :other: dinars serbes
666
- :RUB:
667
- :one: rouble russe
668
- :other: roubles russes
669
- :RUR:
670
- :one: rouble russe (1991–1998)
671
- :other: roubles russes (19911998)
672
- :RWF:
673
- :one: franc rwandais
674
- :other: francs rwandais
675
- :SAR:
676
- :one: rial saoudien
677
- :other: rials saoudiens
678
- :SBD:
679
- :one: dollar des îles Salomon
680
- :other: dollars des îles Salomon
681
- :symbol: $SB
682
- :SCR:
683
- :one: roupie des Seychelles
684
- :other: roupies des Seychelles
685
- :SDD:
686
- :one: dinar soudanais (1992–2007)
687
- :other: dinars soudanais (1992–2007)
688
- :SDG:
689
- :one: livre soudanaise
690
- :other: livres soudanaises
691
- :SDP:
692
- :one: livre soudanaise (1956–2007)
693
- :other: livres soudanaises (1956–2007)
694
- :SEK:
695
- :one: couronne suédoise
696
- :other: couronnes suédoises
697
- :SGD:
698
- :one: dollar de Singapour
699
- :other: dollars de Singapour
700
- :symbol: $SG
701
- :SHP:
702
- :one: livre de Sainte-Hélène
703
- :other: livres de Sainte-Hélène
704
- :SIT:
705
- :one: tolar slovène
706
- :other: tolars slovènes
707
- :SKK:
708
- :one: couronne slovaque
709
- :other: couronnes slovaques
710
- :SLL:
711
- :one: leone sierra-léonais
712
- :other: leones sierra-léonais
713
- :SOS:
714
- :one: shilling somalien
715
- :other: shillings somaliens
716
- :SRD:
717
- :one: dollar surinamais
718
- :other: dollars surinamais
719
- :SRG:
720
- :one: florin surinamais
721
- :other: florins surinamais
722
- :SSP:
723
- :one: livre sud-soudanaise
724
- :other: livres sud-soudanaises
725
- :STD:
726
- :one: dobra santoméen
727
- :other: dobras santoméens
728
- :SUR:
729
- :one: rouble soviétique
730
- :other: roubles soviétiques
731
- :SVC:
732
- :one: colón salvadorien
733
- :other: colóns salvadoriens
734
- :SYP:
735
- :one: livre syrienne
736
- :other: livres syriennes
737
- :SZL:
738
- :one: lilangeni swazi
739
- :other: emalangeni swazis
740
- :THB:
741
- :one: baht thaïlandais
742
- :other: baths thaïlandais
743
- :symbol: ฿
744
- :TJR:
745
- :one: rouble tadjik
746
- :other: roubles tadjiks
747
- :TJS:
748
- :one: somoni tadjik
749
- :other: somonis tadjiks
750
- :TMM:
751
- :one: manat turkmène
752
- :other: manats turkmènes
753
- :TMT:
754
- :one: nouveau manat turkmène
755
- :other: nouveaux manats turkmènes
756
- :TND:
757
- :one: dinar tunisien
758
- :other: dinars tunisiens
759
- :TOP:
760
- :one: pa’anga tongan
761
- :other: pa’angas tongans
762
- :symbol: T$
763
- :TPE:
764
- :one: escudo timorais
765
- :other: escudos timorais
766
- :TRL:
767
- :one: livre turque (1844–2005)
768
- :other: livres turques (1844-2005)
769
- :TRY:
770
- :one: livre turque
771
- :other: livres turques
772
- :TTD:
773
- :one: dollar de Trinité-et-Tobago
774
- :other: dollars de Trinité-et-Tobago
775
- :TWD:
776
- :one: nouveau dollar taïwanais
777
- :other: nouveaux dollars taïwanais
778
- :symbol: NT$
779
- :TZS:
780
- :one: shilling tanzanien
781
- :other: shillings tanzaniens
782
- :UAH:
783
- :one: hryvnia ukrainienne
784
- :other: hryvnias ukrainiennes
785
- :UAK:
786
- :one: karbovanets ukrainien (1992–1996)
787
- :other: karbovanets ukrainiens (1992–1996)
788
- :UGS:
789
- :one: shilling ougandais (1966–1987)
790
- :other: shillings ougandais (1966–1987)
791
- :UGX:
792
- :one: shilling ougandais
793
- :other: shillings ougandais
794
- :USD:
795
- :one: dollar des États-Unis
796
- :other: dollars des États-Unis
797
- :symbol: $US
798
- :USN:
799
- :one: dollar des États-Unis (jour suivant)
800
- :other: dollars des États-Unis (jour suivant)
801
- :USS:
802
- :one: dollar des États-Unis (jour même)
803
- :other: dollars des États-Unis (jour même)
804
- :UYI:
805
- :one: peso uruguayen (unités indexées)
806
- :other: pesos uruguayen (unités indexées)
807
- :UYP:
808
- :one: peso uruguayen (1975–1993)
809
- :other: pesos uruguayens (19751993)
810
- :UYU:
811
- :one: peso uruguayen
812
- :other: pesos uruguayens
813
- :UZS:
814
- :one: sum ouzbek
815
- :other: sums ouzbeks
816
- :VEB:
817
- :one: bolivar vénézuélien (1871-2008)
818
- :other: bolivar vénézuélien (1871-2008)
819
- :VEF:
820
- :one: bolivar vénézuélien
821
- :other: bolivar vénézuélien
822
- :VND:
823
- :one: dông vietnamien
824
- :other: dôngs vietnamiens
825
- :symbol:
826
- :VNN:
827
- :one: Vietnamese dong (1978-1985)
828
- :other: Vietnamese dong (1978-1985)
829
- :VUV:
830
- :one: vatu vanuatuan
831
- :other: vatus vanuatuans
832
- :symbol: VT
833
- :WST:
834
- :one: tala samoan
835
- :other: talas samoans
836
- :symbol: WS$
837
- :XAF:
838
- :one: franc CFA (BEAC)
839
- :other: francs CFA (BEAC)
840
- :symbol: FCFA
841
- :XAG:
842
- :one: once troy d’argent
843
- :other: onces troy d’argent
844
- :XAU:
845
- :one: once troy d’or
846
- :other: onces troy d’or
847
- :XBA:
848
- :one: unité composée européenne (EURCO)
849
- :other: unités composées européennes (EURCO)
850
- :XBB:
851
- :one: unité monétaire européenne (UME-6)
852
- :other: unités monétaires européennes (UME-6)
853
- :XBC:
854
- :one: unité de compte 9 européenne (UEC-9)
855
- :other: unités de compte 9 européennes (UEC-9)
856
- :XBD:
857
- :one: unité de compte 17 européenne (UEC-17)
858
- :other: unités de compte 17 européennes (UEC-17)
859
- :XCD:
860
- :one: dollar des Caraïbes orientales
861
- :other: dollars des Caraïbes orientales
862
- :symbol: $EC
863
- :XDR:
864
- :one: droit de tirage spécial
865
- :other: droits de tirage spéciaux
866
- :XEU:
867
- :one: unité de compte européenne (ECU)
868
- :other: unités de compte européennes (ECU)
869
- :XFO:
870
- :one: franc or
871
- :other: francs or
872
- :XFU:
873
- :one: franc UIC
874
- :other: francs UIC
875
- :XOF:
876
- :one: franc CFA (BCEAO)
877
- :other: francs CFA (BCEAO)
878
- :symbol: CFA
879
- :XPD:
880
- :one: once troy de palladium
881
- :other: onces troy de palladium
882
- :XPF:
883
- :one: franc CFP
884
- :other: francs CFP
885
- :symbol: FCFP
886
- :XPT:
887
- :one: once troy de platine
888
- :other: onces troy de platine
889
- :XRE:
890
- :one: unité de fonds RINET
891
- :other: unités de fonds RINET
892
- :XSU:
893
- :one: Sucre
894
- :other: Sucres
895
- :XTS:
896
- :one: (devise de test)
897
- :other: (devises de test)
898
- :XUA:
899
- :one: ADB unit of account
900
- :other: ADB units of account
901
- :XXX:
902
- :one: devise inconnue ou non valide
903
- :other: devise inconnue ou non valide
904
- :YDD:
905
- :one: dinar nord-yéménite
906
- :other: dinars nord-yéménites
907
- :YER:
908
- :one: rial yéménite
909
- :other: rials yéménites
910
- :YUD:
911
- :one: dinar fort yougoslave (1966–1989)
912
- :other: dinars forts yougoslaves (1966–1989)
913
- :YUM:
914
- :one: nouveau dinar yougoslave (1994–2003)
915
- :other: nouveaux dinars yougoslaves (1994–2003)
916
- :YUN:
917
- :one: dinar convertible yougoslave (1990–1992)
918
- :other: dinars convertibles yougoslaves (1990–1992)
919
- :YUR:
920
- :one: Yugoslavian reformed dinar (1992-1993)
921
- :other: Yugoslavian reformed dinars (1992-1993)
922
- :ZAL:
923
- :one: rand sud-africain (financier)
924
- :other: rands sud-africains (financiers)
925
- :ZAR:
926
- :one: rand sud-africain
927
- :other: rands sud-africains
928
- :ZMK:
929
- :one: kwacha zambien (1968-2012)
930
- :other: kwachas zambiens (1968-2012)
931
- :ZMW:
932
- :one: kwacha zambien
933
- :other: kwachas zambiens
934
- :ZRN:
935
- :one: nouveau zaïre zaïrien
936
- :other: nouveaux zaïres zaïriens
937
- :ZRZ:
938
- :one: zaïre zaïrois
939
- :other: zaïres zaïrois
940
- :ZWD:
941
- :one: dollar zimbabwéen
942
- :other: dollars zimbabwéens
943
- :symbol: $Z
944
- :ZWL:
945
- :one: dollar zimbabwéen (2009)
946
- :other: dollars zimbabwéens (2009)
947
- :ZWR:
948
- :one: dollar zimbabwéen (2008)
949
- :other: dollars zimbabwéens (2008)
1
+ ---
2
+ :fr:
3
+ :currencies:
4
+ :ADP:
5
+ :one: "peseta andorrane"
6
+ :other: "pesetas andorranes"
7
+ :AED:
8
+ :one: "dirham des Émirats arabes unis"
9
+ :other: "dirhams des Émirats arabes unis"
10
+ :AFA:
11
+ :one: "afghani (1927–2002)"
12
+ :other: "afghanis (1927–2002)"
13
+ :AFN:
14
+ :one: "afghani afghan"
15
+ :other: "afghanis afghan"
16
+ :ALK:
17
+ :one: "lek albanais (1947–1961)"
18
+ :other: "leks albanais (1947–1961)"
19
+ :ALL:
20
+ :one: "lek albanais"
21
+ :other: "leks albanais"
22
+ :AMD:
23
+ :one: "dram arménien"
24
+ :other: "drams arméniens"
25
+ :ANG:
26
+ :one: "florin antillais"
27
+ :other: "florins antillais"
28
+ :AOA:
29
+ :one: "kwanza angolais"
30
+ :other: "kwanzas angolais"
31
+ :AOK:
32
+ :one: "kwanza angolais (1977–1990)"
33
+ :other: "kwanzas angolais (1977–1990)"
34
+ :AON:
35
+ :one: "nouveau kwanza angolais (19902000)"
36
+ :other: "nouveaux kwanzas angolais (19902000)"
37
+ :AOR:
38
+ :one: "kwanza angolais réajusté (19951999)"
39
+ :other: "kwanzas angolais réajustés (19951999)"
40
+ :ARA:
41
+ :one: "austral argentin"
42
+ :other: "australs argentins"
43
+ :ARL:
44
+ :one: "Argentine peso ley (1970–1983)"
45
+ :other: "Argentine pesos ley (1970–1983)"
46
+ :ARM:
47
+ :one: "Argentine peso (1881–1970)"
48
+ :other: "Argentine pesos (1881–1970)"
49
+ :ARP:
50
+ :one: "peso argentin (1983–1985)"
51
+ :other: "pesos argentins (1983–1985)"
52
+ :ARS:
53
+ :one: "peso argentin"
54
+ :other: "pesos argentins"
55
+ :symbol: "$AR"
56
+ :ATS:
57
+ :one: "schilling autrichien"
58
+ :other: "schillings autrichiens"
59
+ :AUD:
60
+ :one: "dollar australien"
61
+ :other: "dollars australiens"
62
+ :symbol: "$AU"
63
+ :AWG:
64
+ :one: "florin arubais"
65
+ :other: "florins arubais"
66
+ :AZM:
67
+ :one: "manat azéri (1993–2006)"
68
+ :other: "manats azéris (1993–2006)"
69
+ :AZN:
70
+ :one: "manat azéri"
71
+ :other: "manats azéris"
72
+ :BAD:
73
+ :one: "dinar bosniaque"
74
+ :other: "dinars bosniaques"
75
+ :BAM:
76
+ :one: "mark convertible bosniaque"
77
+ :other: "marks convertibles bosniaques"
78
+ :BAN:
79
+ :one: "Bosnia-Herzegovina new dinar (1994–1997)"
80
+ :other: "Bosnia-Herzegovina new dinars (1994–1997)"
81
+ :BBD:
82
+ :one: "dollar barbadien"
83
+ :other: "dollars barbadiens"
84
+ :symbol: "$"
85
+ :BDT:
86
+ :one: "taka bangladeshi"
87
+ :other: "takas bangladeshis"
88
+ :symbol: "৳"
89
+ :BEC:
90
+ :one: "franc belge (convertible)"
91
+ :other: "francs belges (convertibles)"
92
+ :BEF:
93
+ :one: "franc belge"
94
+ :other: "francs belges"
95
+ :symbol: "FB"
96
+ :BEL:
97
+ :one: "franc belge (financier)"
98
+ :other: "francs belges (financiers)"
99
+ :BGL:
100
+ :one: "lev bulgare (1962–1999)"
101
+ :other: "levs bulgares (1962–1999)"
102
+ :BGM:
103
+ :one: "Bulgarian socialist lev"
104
+ :other: "Bulgarian socialist leva"
105
+ :BGN:
106
+ :one: "lev bulgare"
107
+ :other: "levs bulgares"
108
+ :BGO:
109
+ :one: "Bulgarian lev (1879–1952)"
110
+ :other: "Bulgarian leva (1879–1952)"
111
+ :BHD:
112
+ :one: "dinar bahreïni"
113
+ :other: "dinars bahreïnis"
114
+ :BIF:
115
+ :one: "franc burundais"
116
+ :other: "francs burundais"
117
+ :BMD:
118
+ :one: "dollar bermudien"
119
+ :other: "dollars bermudiens"
120
+ :symbol: "$BM"
121
+ :BND:
122
+ :one: "dollar brunéien"
123
+ :other: "dollars brunéiens"
124
+ :symbol: "$BN"
125
+ :BOB:
126
+ :one: "boliviano bolivien"
127
+ :other: "bolivianos boliviens"
128
+ :BOL:
129
+ :one: "Bolivian boliviano (1863–1963)"
130
+ :other: "Bolivian bolivianos (18631963)"
131
+ :BOP:
132
+ :one: "peso bolivien"
133
+ :other: "pesos boliviens"
134
+ :BOV:
135
+ :one: "mvdol bolivien"
136
+ :other: "mvdols boliviens"
137
+ :BRB:
138
+ :one: "nouveau cruzeiro brésilien (1967–1986)"
139
+ :other: "nouveaux cruzeiros brésiliens (1967–1986)"
140
+ :BRC:
141
+ :one: "cruzado brésilien (1986–1989)"
142
+ :other: "cruzados brésiliens (1986–1989)"
143
+ :BRE:
144
+ :one: "cruzeiro brésilien (1990–1993)"
145
+ :other: "cruzeiros brésiliens (1990–1993)"
146
+ :BRL:
147
+ :one: "réal brésilien"
148
+ :other: "réals brésiliens"
149
+ :symbol: "R$"
150
+ :BRN:
151
+ :one: "nouveau cruzado brésilien (1989–1990)"
152
+ :other: "nouveaux cruzados brésiliens (1989–1990)"
153
+ :BRR:
154
+ :one: "cruzeiro réal brésilien (1993–1994)"
155
+ :other: "cruzeiros réals brésiliens (1993–1994)"
156
+ :BRZ:
157
+ :one: "Brazilian cruzeiro (1942–1967)"
158
+ :other: "Brazilian cruzeiros (19421967)"
159
+ :BSD:
160
+ :one: "dollar bahaméen"
161
+ :other: "dollars bahaméens"
162
+ :symbol: "$BS"
163
+ :BTN:
164
+ :one: "ngultrum bouthanais"
165
+ :other: "ngultrums bouthanais"
166
+ :BUK:
167
+ :one: "kyat birman"
168
+ :other: "kyats birmans"
169
+ :BWP:
170
+ :one: "pula botswanais"
171
+ :other: "pulas botswanais"
172
+ :BYB:
173
+ :one: "nouveau rouble biélorusse (1994–1999)"
174
+ :other: "nouveaux roubles biélorusses (1994–1999)"
175
+ :BYR:
176
+ :one: "rouble biélorusse"
177
+ :other: "roubles biélorusses"
178
+ :symbol: "р."
179
+ :BZD:
180
+ :one: "dollar bélizéen"
181
+ :other: "dollars bélizéens"
182
+ :symbol: "$BZ"
183
+ :CAD:
184
+ :one: "dollar canadien"
185
+ :other: "dollars canadiens"
186
+ :symbol: "$CA"
187
+ :CDF:
188
+ :one: "franc congolais"
189
+ :other: "francs congolais"
190
+ :CHE:
191
+ :one: "euro WIR"
192
+ :other: "euros WIR"
193
+ :CHF:
194
+ :one: "franc suisse"
195
+ :other: "francs suisses"
196
+ :CHW:
197
+ :one: "franc WIR"
198
+ :other: "francs WIR"
199
+ :CLE:
200
+ :one: "Chilean escudo"
201
+ :other: "Chilean escudos"
202
+ :CLF:
203
+ :one: "unité d’investissement chilienne"
204
+ :other: "unités d’investissement chiliennes"
205
+ :CLP:
206
+ :one: "peso chilien"
207
+ :other: "pesos chiliens"
208
+ :symbol: "$CL"
209
+ :CNX:
210
+ :one: "Chinese People’s Bank dollar"
211
+ :other: "Chinese People’s Bank dollars"
212
+ :CNY:
213
+ :one: "yuan renminbi chinois"
214
+ :other: "yuans renminbi chinois"
215
+ :symbol: "¥CN"
216
+ :COP:
217
+ :one: "peso colombien"
218
+ :other: "pesos colombiens"
219
+ :symbol: "$CO"
220
+ :COU:
221
+ :one: "unité de valeur réelle colombienne"
222
+ :other: "unités de valeur réelle colombiennes"
223
+ :CRC:
224
+ :one: "colón costaricain"
225
+ :other: "colóns costaricains"
226
+ :symbol: "₡"
227
+ :CSD:
228
+ :one: "dinar serbo-monténégrin"
229
+ :other: "dinars serbo-monténégrins"
230
+ :CSK:
231
+ :one: "couronne forte tchécoslovaque"
232
+ :other: "couronnes fortes tchécoslovaques"
233
+ :CUC:
234
+ :one: "peso cubain convertible"
235
+ :other: "pesos cubains convertibles"
236
+ :CUP:
237
+ :one: "peso cubain"
238
+ :other: "pesos cubains"
239
+ :symbol: "$"
240
+ :CVE:
241
+ :one: "escudo capverdien"
242
+ :other: "escudos capverdiens"
243
+ :symbol: "$CV"
244
+ :CYP:
245
+ :one: "livre chypriote"
246
+ :other: "livres chypriotes"
247
+ :symbol: "£CY"
248
+ :CZK:
249
+ :one: "couronne tchèque"
250
+ :other: "couronnes tchèques"
251
+ :DDM:
252
+ :one: "mark est-allemand"
253
+ :other: "marks est-allemands"
254
+ :DEM:
255
+ :one: "mark allemand"
256
+ :other: "marks allemands"
257
+ :DJF:
258
+ :one: "franc djiboutien"
259
+ :other: "francs djiboutiens"
260
+ :DKK:
261
+ :one: "couronne danoise"
262
+ :other: "couronnes danoises"
263
+ :DOP:
264
+ :one: "peso dominicain"
265
+ :other: "pesos dominicains"
266
+ :symbol: "$"
267
+ :DZD:
268
+ :one: "dinar algérien"
269
+ :other: "dinars algériens"
270
+ :ECS:
271
+ :one: "sucre équatorien"
272
+ :other: "sucres équatoriens"
273
+ :ECV:
274
+ :one: "unité de valeur constante équatorienne (UVC)"
275
+ :other: "unités de valeur constante équatoriennes (UVC)"
276
+ :EEK:
277
+ :one: "couronne estonienne"
278
+ :other: "couronnes estoniennes"
279
+ :EGP:
280
+ :one: "livre égyptienne"
281
+ :other: "livres égyptiennes"
282
+ :symbol: "£EG"
283
+ :ERN:
284
+ :one: "nafka érythréen"
285
+ :other: "nafkas érythréens"
286
+ :ESA:
287
+ :one: "peseta espagnole (compte A)"
288
+ :other: "pesetas espagnoles (compte A)"
289
+ :ESB:
290
+ :one: "peseta espagnole (compte convertible)"
291
+ :other: "pesetas espagnoles (compte convertible)"
292
+ :ESP:
293
+ :one: "peseta espagnole"
294
+ :other: "pesetas espagnoles"
295
+ :symbol: "₧"
296
+ :ETB:
297
+ :one: "birr éthiopien"
298
+ :other: "birrs éthiopiens"
299
+ :EUR:
300
+ :one: "euro"
301
+ :other: "euros"
302
+ :symbol: "€"
303
+ :FIM:
304
+ :one: "mark finlandais"
305
+ :other: "marks finlandais"
306
+ :FJD:
307
+ :one: "dollar fidjien"
308
+ :other: "dollars fidjiens"
309
+ :symbol: "$FJ"
310
+ :FKP:
311
+ :one: "livre des Falkland"
312
+ :other: "livres des Falkland"
313
+ :symbol: "£FK"
314
+ :FRF:
315
+ :one: "franc français"
316
+ :other: "francs français"
317
+ :symbol: "F"
318
+ :GBP:
319
+ :one: "livre sterling"
320
+ :other: "livres sterling"
321
+ :symbol: "£GB"
322
+ :GEK:
323
+ :one: "coupon de lari géorgien"
324
+ :other: "coupons de lari géorgiens"
325
+ :GEL:
326
+ :one: "lari géorgien"
327
+ :other: "lari géorgiens"
328
+ :GHC:
329
+ :one: "cédi ghanéen (1967–2007)"
330
+ :other: "cédis ghanéens (1967–2007)"
331
+ :GHS:
332
+ :one: "cédi ghanéen"
333
+ :other: "cédis ghanéens"
334
+ :symbol: "₵"
335
+ :GIP:
336
+ :one: "livre de Gibraltar"
337
+ :other: "livres de Gibraltar"
338
+ :symbol: "£GI"
339
+ :GMD:
340
+ :one: "dalasi gambien"
341
+ :other: "dalasis gambiens"
342
+ :GNF:
343
+ :one: "franc guinéen"
344
+ :other: "francs guinéens"
345
+ :GNS:
346
+ :one: "syli guinéen"
347
+ :other: "sylis guinéens"
348
+ :GQE:
349
+ :one: "ekwélé équatoguinéen"
350
+ :other: "ekwélés équatoguinéens"
351
+ :GRD:
352
+ :one: "drachme grecque"
353
+ :other: "drachmes grecques"
354
+ :GTQ:
355
+ :one: "quetzal guatémaltèque"
356
+ :other: "quetzals guatémaltèques"
357
+ :GWE:
358
+ :one: "escudo de Guinée portugaise"
359
+ :other: "escudos de Guinée portugaise"
360
+ :GWP:
361
+ :one: "peso bissau-guinéen"
362
+ :other: "pesos bissau-guinéens"
363
+ :GYD:
364
+ :one: "dollar du Guyana"
365
+ :other: "dollars du Guyana"
366
+ :symbol: "$"
367
+ :HKD:
368
+ :one: "dollar de Hong Kong"
369
+ :other: "dollars de Hong Kong"
370
+ :symbol: "$HK"
371
+ :HNL:
372
+ :one: "lempira hondurien"
373
+ :other: "lempiras honduriens"
374
+ :HRD:
375
+ :one: "dinar croate"
376
+ :other: "dinars croates"
377
+ :HRK:
378
+ :one: "kuna croate"
379
+ :other: "kunas croates"
380
+ :HTG:
381
+ :one: "gourde haïtienne"
382
+ :other: "gourdes haïtiennes"
383
+ :HUF:
384
+ :one: "forint hongrois"
385
+ :other: "forints hongrois"
386
+ :IDR:
387
+ :one: "roupie indonésienne"
388
+ :other: "roupies indonésiennes"
389
+ :IEP:
390
+ :one: "livre irlandaise"
391
+ :other: "livres irlandaises"
392
+ :symbol: "£IE"
393
+ :ILP:
394
+ :one: "livre israélienne"
395
+ :other: "livres israéliennes"
396
+ :symbol: "£IL"
397
+ :ILR:
398
+ :one: "Israeli sheqel (1980–1985)"
399
+ :other: "Israeli sheqels (1980–1985)"
400
+ :ILS:
401
+ :one: "nouveau shekel israélien"
402
+ :other: "nouveaux shekels israéliens"
403
+ :symbol: "₪"
404
+ :INR:
405
+ :one: "roupie indienne"
406
+ :other: "roupies indiennes"
407
+ :symbol: "₹"
408
+ :IQD:
409
+ :one: "dinar irakien"
410
+ :other: "dinars irakiens"
411
+ :IRR:
412
+ :one: "rial iranien"
413
+ :other: "rials iraniens"
414
+ :ISJ:
415
+ :one: "Icelandic króna (1918–1981)"
416
+ :other: "Icelandic krónur (1918–1981)"
417
+ :ISK:
418
+ :one: "couronne islandaise"
419
+ :other: "couronnes islandaises"
420
+ :ITL:
421
+ :one: "lire italienne"
422
+ :other: "lires italiennes"
423
+ :symbol: "₤IT"
424
+ :JMD:
425
+ :one: "dollar jamaïcain"
426
+ :other: "dollars jamaïcains"
427
+ :symbol: "$"
428
+ :JOD:
429
+ :one: "dinar jordanien"
430
+ :other: "dinars jordaniens"
431
+ :JPY:
432
+ :one: "yen japonais"
433
+ :other: "yens japonais"
434
+ :symbol: "¥JP"
435
+ :KES:
436
+ :one: "shilling kényan"
437
+ :other: "shillings kényans"
438
+ :KGS:
439
+ :one: "som kirghize"
440
+ :other: "soms kirghizes"
441
+ :KHR:
442
+ :one: "riel cambodgien"
443
+ :other: "riels cambodgiens"
444
+ :symbol: "៛"
445
+ :KMF:
446
+ :one: "franc comorien"
447
+ :other: "francs comoriens"
448
+ :KPW:
449
+ :one: "won nord-coréen"
450
+ :other: "wons nord-coréens"
451
+ :KRH:
452
+ :one: "South Korean hwan (1953–1962)"
453
+ :other: "South Korean hwan (1953–1962)"
454
+ :KRO:
455
+ :one: "South Korean won (1945–1953)"
456
+ :other: "South Korean won (1945–1953)"
457
+ :KRW:
458
+ :one: "won sud-coréen"
459
+ :other: "wons sud-coréens"
460
+ :symbol: "₩"
461
+ :KWD:
462
+ :one: "dinar koweïtien"
463
+ :other: "dinar koweïtiens"
464
+ :KYD:
465
+ :one: "dollar des îles Caïmans"
466
+ :other: "dollars des îles Caïmans"
467
+ :symbol: "$"
468
+ :KZT:
469
+ :one: "tenge kazakh"
470
+ :other: "tenges kazakhs"
471
+ :symbol: "₸"
472
+ :LAK:
473
+ :one: "kip loatien"
474
+ :other: "kips loatiens"
475
+ :symbol: "₭"
476
+ :LBP:
477
+ :one: "livre libanaise"
478
+ :other: "livres libanaises"
479
+ :symbol: "£LB"
480
+ :LKR:
481
+ :one: "roupie srilankaise"
482
+ :other: "roupies srilankaises"
483
+ :LRD:
484
+ :one: "dollar libérien"
485
+ :other: "dollars libériens"
486
+ :symbol: "$LR"
487
+ :LSL:
488
+ :one: "loti lesothan"
489
+ :other: "maloti lesothans"
490
+ :LTL:
491
+ :one: "litas lituanien"
492
+ :other: "litas lituaniens"
493
+ :LTT:
494
+ :one: "talonas lituanien"
495
+ :other: "talonas lituaniens"
496
+ :LUC:
497
+ :one: "franc convertible luxembourgeois"
498
+ :other: "francs convertibles luxembourgeois"
499
+ :LUF:
500
+ :one: "franc luxembourgeois"
501
+ :other: "francs luxembourgeois"
502
+ :LUL:
503
+ :one: "franc financier luxembourgeois"
504
+ :other: "francs financiers luxembourgeois"
505
+ :LVL:
506
+ :one: "lats letton"
507
+ :other: "lats lettons"
508
+ :LVR:
509
+ :one: "rouble letton"
510
+ :other: "roubles lettons"
511
+ :LYD:
512
+ :one: "dinar libyen"
513
+ :other: "dinars libyens"
514
+ :MAD:
515
+ :one: "dirham marocain"
516
+ :other: "dirhams marocains"
517
+ :MAF:
518
+ :one: "franc marocain"
519
+ :other: "francs marocains"
520
+ :MCF:
521
+ :one: "Monegasque franc"
522
+ :other: "Monegasque francs"
523
+ :MDC:
524
+ :one: "Moldovan cupon"
525
+ :other: "Moldovan cupon"
526
+ :MDL:
527
+ :one: "leu moldave"
528
+ :other: "leus moldaves"
529
+ :MGA:
530
+ :one: "ariary malgache"
531
+ :other: "ariarys malgaches"
532
+ :MGF:
533
+ :one: "franc malgache"
534
+ :other: "francs malgaches"
535
+ :MKD:
536
+ :one: "denar macédonien"
537
+ :other: "denars macédoniens"
538
+ :MKN:
539
+ :one: "Macedonian denar (1992–1993)"
540
+ :other: "Macedonian denari (1992–1993)"
541
+ :MLF:
542
+ :one: "franc malien"
543
+ :other: "francs maliens"
544
+ :MMK:
545
+ :one: "kyat myanmarais"
546
+ :other: "kyats myanmarais"
547
+ :MNT:
548
+ :one: "tugrik mongol"
549
+ :other: "tugriks mongols"
550
+ :symbol: "₮"
551
+ :MOP:
552
+ :one: "pataca macanaise"
553
+ :other: "patacas macanaises"
554
+ :MRO:
555
+ :one: "ouguiya mauritanien"
556
+ :other: "ouguiyas mauritaniens"
557
+ :MTL:
558
+ :one: "lire maltaise"
559
+ :other: "lires maltaises"
560
+ :MTP:
561
+ :one: "livre maltaise"
562
+ :other: "livres maltaises"
563
+ :symbol: "£MT"
564
+ :MUR:
565
+ :one: "roupie mauricienne"
566
+ :other: "roupies mauriciennes"
567
+ :MVP:
568
+ :one: "Maldivian rupee"
569
+ :other: "Maldivian rupees"
570
+ :MVR:
571
+ :one: "rufiyaa maldivienne"
572
+ :other: "rufiyaas maldiviennes"
573
+ :MWK:
574
+ :one: "kwacha malawite"
575
+ :other: "kwachas malawites"
576
+ :MXN:
577
+ :one: "peso mexicain"
578
+ :other: "pesos mexicains"
579
+ :symbol: "$MX"
580
+ :MXP:
581
+ :one: "peso d’argent mexicain (18611992)"
582
+ :other: "pesos d’argent mexicains (18611992)"
583
+ :MXV:
584
+ :one: "unité de conversion mexicaine (UDI)"
585
+ :other: "unités de conversion mexicaines (UDI)"
586
+ :MYR:
587
+ :one: "ringgit malais"
588
+ :other: "ringgits malais"
589
+ :MZE:
590
+ :one: "escudo mozambicain"
591
+ :other: "escudos mozambicains"
592
+ :MZM:
593
+ :one: "metical mozambicain (19802006)"
594
+ :other: "meticais mozambicains (19802006)"
595
+ :MZN:
596
+ :one: "metical mozambicain"
597
+ :other: "meticais mozambicains"
598
+ :NAD:
599
+ :one: "dollar namibien"
600
+ :other: "dollars namibiens"
601
+ :symbol: "$NA"
602
+ :NGN:
603
+ :one: "naira nigérian"
604
+ :other: "nairas nigérians"
605
+ :symbol: "₦"
606
+ :NIC:
607
+ :one: "córdoba nicaraguayen (1912–1988)"
608
+ :other: "córdobas nicaraguayens (1912–1988)"
609
+ :NIO:
610
+ :one: "córdoba oro nicaraguayen"
611
+ :other: "córdobas oro nicaraguayens"
612
+ :NLG:
613
+ :one: "florin néerlandais"
614
+ :other: "florins néerlandais"
615
+ :NOK:
616
+ :one: "couronne norvégienne"
617
+ :other: "couronnes norvégiennes"
618
+ :NPR:
619
+ :one: "roupie népalaise"
620
+ :other: "roupies népalaises"
621
+ :NZD:
622
+ :one: "dollar néo-zélandais"
623
+ :other: "dollars néo-zélandais"
624
+ :symbol: "$NZ"
625
+ :OMR:
626
+ :one: "rial omanais"
627
+ :other: "rials omanis"
628
+ :PAB:
629
+ :one: "balboa panaméen"
630
+ :other: "balboas panaméens"
631
+ :PEI:
632
+ :one: "inti péruvien"
633
+ :other: "intis péruviens"
634
+ :PEN:
635
+ :one: "nouveau sol péruvien"
636
+ :other: "nouveaux sols péruviens"
637
+ :PES:
638
+ :one: "sol péruvien (1863–1985)"
639
+ :other: "sols péruviens (1863–1985)"
640
+ :PGK:
641
+ :one: "kina papouan-néo-guinéen"
642
+ :other: "kinas papouan-néo-guinéens"
643
+ :PHP:
644
+ :one: "peso philippin"
645
+ :other: "pesos philippins"
646
+ :symbol: "₱"
647
+ :PKR:
648
+ :one: "roupie pakistanaise"
649
+ :other: "roupies pakistanaises"
650
+ :PLN:
651
+ :one: "zloty polonais"
652
+ :other: "zlotys polonais"
653
+ :PLZ:
654
+ :one: "zloty polonais (1950–1995)"
655
+ :other: "zlotys polonais (1950–1995)"
656
+ :PTE:
657
+ :one: "escudo portugais"
658
+ :other: "escudos portugais"
659
+ :PYG:
660
+ :one: "guaraní paraguayen"
661
+ :other: "guaranís paraguayens"
662
+ :symbol: "₲"
663
+ :QAR:
664
+ :one: "rial qatari"
665
+ :other: "rials qataris"
666
+ :RHD:
667
+ :one: "dollar rhodésien"
668
+ :other: "dollars rhodésiens"
669
+ :symbol: "$RH"
670
+ :ROL:
671
+ :one: "leu roumain (19522005)"
672
+ :other: "lei roumains (1952–2005)"
673
+ :RON:
674
+ :one: "leu roumain"
675
+ :other: "lei roumains"
676
+ :RSD:
677
+ :one: "dinar serbe"
678
+ :other: "dinars serbes"
679
+ :RUB:
680
+ :one: "rouble russe"
681
+ :other: "roubles russes"
682
+ :RUR:
683
+ :one: "rouble russe (1991–1998)"
684
+ :other: "roubles russes (1991–1998)"
685
+ :symbol: "р."
686
+ :RWF:
687
+ :one: "franc rwandais"
688
+ :other: "francs rwandais"
689
+ :SAR:
690
+ :one: "rial saoudien"
691
+ :other: "rials saoudiens"
692
+ :SBD:
693
+ :one: "dollar des îles Salomon"
694
+ :other: "dollars des îles Salomon"
695
+ :symbol: "$SB"
696
+ :SCR:
697
+ :one: "roupie des Seychelles"
698
+ :other: "roupies des Seychelles"
699
+ :SDD:
700
+ :one: "dinar soudanais (1992–2007)"
701
+ :other: "dinars soudanais (1992–2007)"
702
+ :SDG:
703
+ :one: "livre soudanaise"
704
+ :other: "livres soudanaises"
705
+ :symbol: "£SD"
706
+ :SDP:
707
+ :one: "livre soudanaise (1956–2007)"
708
+ :other: "livres soudanaises (1956–2007)"
709
+ :SEK:
710
+ :one: "couronne suédoise"
711
+ :other: "couronnes suédoises"
712
+ :SGD:
713
+ :one: "dollar de Singapour"
714
+ :other: "dollars de Singapour"
715
+ :symbol: "$SG"
716
+ :SHP:
717
+ :one: "livre de Sainte-Hélène"
718
+ :other: "livres de Sainte-Hélène"
719
+ :symbol: "£SH"
720
+ :SIT:
721
+ :one: "tolar slovène"
722
+ :other: "tolars slovènes"
723
+ :SKK:
724
+ :one: "couronne slovaque"
725
+ :other: "couronnes slovaques"
726
+ :SLL:
727
+ :one: "leone sierra-léonais"
728
+ :other: "leones sierra-léonais"
729
+ :SOS:
730
+ :one: "shilling somalien"
731
+ :other: "shillings somaliens"
732
+ :SRD:
733
+ :one: "dollar surinamais"
734
+ :other: "dollars surinamais"
735
+ :symbol: "$SR"
736
+ :SRG:
737
+ :one: "florin surinamais"
738
+ :other: "florins surinamais"
739
+ :SSP:
740
+ :one: "livre sud-soudanaise"
741
+ :other: "livres sud-soudanaises"
742
+ :symbol: "£SS"
743
+ :STD:
744
+ :one: "dobra santoméen"
745
+ :other: "dobras santoméens"
746
+ :SUR:
747
+ :one: "rouble soviétique"
748
+ :other: "roubles soviétiques"
749
+ :SVC:
750
+ :one: "colón salvadorien"
751
+ :other: "colóns salvadoriens"
752
+ :SYP:
753
+ :one: "livre syrienne"
754
+ :other: "livres syriennes"
755
+ :SZL:
756
+ :one: "lilangeni swazi"
757
+ :other: "lilangenis swazis"
758
+ :THB:
759
+ :one: "baht thaïlandais"
760
+ :other: "bahts thaïlandais"
761
+ :symbol: "฿"
762
+ :TJR:
763
+ :one: "rouble tadjik"
764
+ :other: "roubles tadjiks"
765
+ :TJS:
766
+ :one: "somoni tadjik"
767
+ :other: "somonis tadjiks"
768
+ :TMM:
769
+ :one: "manat turkmène"
770
+ :other: "manats turkmènes"
771
+ :TMT:
772
+ :one: "nouveau manat turkmène"
773
+ :other: "nouveaux manats turkmènes"
774
+ :TND:
775
+ :one: "dinar tunisien"
776
+ :other: "dinars tunisiens"
777
+ :TOP:
778
+ :one: "pa’anga tongan"
779
+ :other: "pa’angas tongans"
780
+ :TPE:
781
+ :one: "escudo timorais"
782
+ :other: "escudos timorais"
783
+ :TRL:
784
+ :one: "livre turque (1844–2005)"
785
+ :other: "livres turques (1844–2005)"
786
+ :TRY:
787
+ :one: "livre turque"
788
+ :other: "livres turques"
789
+ :symbol: "₺"
790
+ :TTD:
791
+ :one: "dollar de Trinité-et-Tobago"
792
+ :other: "dollars de Trinité-et-Tobago"
793
+ :symbol: "$TT"
794
+ :TWD:
795
+ :one: "nouveau dollar taïwanais"
796
+ :other: "nouveaux dollars taïwanais"
797
+ :symbol: "$TW"
798
+ :TZS:
799
+ :one: "shilling tanzanien"
800
+ :other: "shillings tanzaniens"
801
+ :UAH:
802
+ :one: "hryvnia ukrainienne"
803
+ :other: "hryvnias ukrainiennes"
804
+ :symbol: "₴"
805
+ :UAK:
806
+ :one: "karbovanets ukrainien (1992–1996)"
807
+ :other: "karbovanets ukrainiens (1992–1996)"
808
+ :UGS:
809
+ :one: "shilling ougandais (19661987)"
810
+ :other: "shillings ougandais (1966–1987)"
811
+ :UGX:
812
+ :one: "shilling ougandais"
813
+ :other: "shillings ougandais"
814
+ :USD:
815
+ :one: "dollar des États-Unis"
816
+ :other: "dollars des États-Unis"
817
+ :symbol: "$US"
818
+ :USN:
819
+ :one: "dollar des États-Unis (jour suivant)"
820
+ :other: "dollars des États-Unis (jour suivant)"
821
+ :USS:
822
+ :one: "dollar des États-Unis (jour même)"
823
+ :other: "dollars des États-Unis (jour même)"
824
+ :UYI:
825
+ :one: "peso uruguayen (unités indexées)"
826
+ :other: "pesos uruguayen (unités indexées)"
827
+ :UYP:
828
+ :one: "peso uruguayen (1975–1993)"
829
+ :other: "pesos uruguayens (1975–1993)"
830
+ :UYU:
831
+ :one: "peso uruguayen"
832
+ :other: "pesos uruguayens"
833
+ :symbol: "$UY"
834
+ :UZS:
835
+ :one: "sum ouzbek"
836
+ :other: "sums ouzbeks"
837
+ :VEB:
838
+ :one: "bolivar vénézuélien (1871–2008)"
839
+ :other: "bolivar vénézuélien (1871–2008)"
840
+ :VEF:
841
+ :one: "bolivar vénézuélien"
842
+ :other: "bolivars vénézuéliens"
843
+ :VND:
844
+ :one: "dông vietnamien"
845
+ :other: "dôngs vietnamiens"
846
+ :symbol: "₫"
847
+ :VNN:
848
+ :one: "Vietnamese dong (1978–1985)"
849
+ :other: "Vietnamese dong (1978–1985)"
850
+ :VUV:
851
+ :one: "vatu vanuatuan"
852
+ :other: "vatus vanuatuans"
853
+ :WST:
854
+ :one: "tala samoan"
855
+ :other: "talas samoans"
856
+ :symbol: "WS$"
857
+ :XAF:
858
+ :one: "franc CFA (BEAC)"
859
+ :other: "francs CFA (BEAC)"
860
+ :symbol: "FCFA"
861
+ :XAG:
862
+ :one: "once troy d’argent"
863
+ :other: "onces troy d’argent"
864
+ :XAU:
865
+ :one: "once troy d’or"
866
+ :other: "onces troy d’or"
867
+ :XBA:
868
+ :one: "unité composée européenne (EURCO)"
869
+ :other: "unités composées européennes (EURCO)"
870
+ :XBB:
871
+ :one: "unité monétaire européenne (UME–6)"
872
+ :other: "unités monétaires européennes (UME–6)"
873
+ :XBC:
874
+ :one: "unité de compte 9 européenne (UEC–9)"
875
+ :other: "unités de compte 9 européennes (UEC–9)"
876
+ :XBD:
877
+ :one: "unité de compte 17 européenne (UEC–17)"
878
+ :other: "unités de compte 17 européennes (UEC–17)"
879
+ :XCD:
880
+ :one: "dollar des Caraïbes orientales"
881
+ :other: "dollars des Caraïbes orientales"
882
+ :symbol: "EC$"
883
+ :XDR:
884
+ :one: "droit de tirage spécial"
885
+ :other: "droits de tirage spéciaux"
886
+ :XEU:
887
+ :one: "unité de compte européenne (ECU)"
888
+ :other: "unités de compte européennes (ECU)"
889
+ :XFO:
890
+ :one: "franc or"
891
+ :other: "francs or"
892
+ :XFU:
893
+ :one: "franc UIC"
894
+ :other: "francs UIC"
895
+ :XOF:
896
+ :one: "franc CFA (BCEAO)"
897
+ :other: "francs CFA (BCEAO)"
898
+ :symbol: "CFA"
899
+ :XPD:
900
+ :one: "once troy de palladium"
901
+ :other: "onces troy de palladium"
902
+ :XPF:
903
+ :one: "franc CFP"
904
+ :other: "francs CFP"
905
+ :symbol: "FCFP"
906
+ :XPT:
907
+ :one: "once troy de platine"
908
+ :other: "onces troy de platine"
909
+ :XRE:
910
+ :one: "unité de fonds RINET"
911
+ :other: "unités de fonds RINET"
912
+ :XSU:
913
+ :one: "Sucre"
914
+ :other: "Sucres"
915
+ :XTS:
916
+ :one: "(devise de test)"
917
+ :other: "(devises de test)"
918
+ :XUA:
919
+ :one: "ADB unit of account"
920
+ :other: "ADB units of account"
921
+ :XXX:
922
+ :one: "devise inconnue ou non valide"
923
+ :other: "devise inconnue ou non valide"
924
+ :YDD:
925
+ :one: "dinar nord-yéménite"
926
+ :other: "dinars nord-yéménites"
927
+ :YER:
928
+ :one: "rial yéménite"
929
+ :other: "rials yéménites"
930
+ :YUD:
931
+ :one: "dinar fort yougoslave (1966–1989)"
932
+ :other: "dinars forts yougoslaves (1966–1989)"
933
+ :YUM:
934
+ :one: "nouveau dinar yougoslave (1994–2003)"
935
+ :other: "nouveaux dinars yougoslaves (1994–2003)"
936
+ :YUN:
937
+ :one: "dinar convertible yougoslave (1990–1992)"
938
+ :other: "dinars convertibles yougoslaves (1990–1992)"
939
+ :YUR:
940
+ :one: "Yugoslavian reformed dinar (1992–1993)"
941
+ :other: "Yugoslavian reformed dinars (1992–1993)"
942
+ :ZAL:
943
+ :one: "rand sud-africain (financier)"
944
+ :other: "rands sud-africains (financiers)"
945
+ :ZAR:
946
+ :one: "rand sud-africain"
947
+ :other: "rands sud-africains"
948
+ :ZMK:
949
+ :one: "kwacha zambien (1968–2012)"
950
+ :other: "kwachas zambiens (1968–2012)"
951
+ :ZMW:
952
+ :one: "kwacha zambien"
953
+ :other: "kwachas zambiens"
954
+ :ZRN:
955
+ :one: "nouveau zaïre zaïrien"
956
+ :other: "nouveaux zaïres zaïriens"
957
+ :ZRZ:
958
+ :one: "zaïre zaïrois"
959
+ :other: "zaïres zaïrois"
960
+ :ZWD:
961
+ :one: "dollar zimbabwéen"
962
+ :other: "dollars zimbabwéens"
963
+ :ZWL:
964
+ :one: "dollar zimbabwéen (2009)"
965
+ :other: "dollars zimbabwéens (2009)"
966
+ :ZWR:
967
+ :one: "dollar zimbabwéen (2008)"
968
+ :other: "dollars zimbabwéens (2008)"