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,915 +1,955 @@
1
- ---
2
- :zh-Hant:
3
- :currencies:
4
- :ADP:
5
- :one: 安道爾陪士特
6
- :other: Andorran pesetas
7
- :AED:
8
- :one: 阿拉伯聯合大公國迪爾汗
9
- :other: UAE dirhams
10
- :AFA:
11
- :one: 阿富汗尼 (1927-2002)
12
- :other: Afghan afghanis (1927-2002)
13
- :AFN:
14
- :one: 阿富汗尼
15
- :other: Afghan Afghanis
16
- :ALK:
17
- :one: Albanian lek (1946-1965)
18
- :other: Albanian lekë (1946-1965)
19
- :ALL:
20
- :one: 阿爾巴尼亞列克
21
- :other: Albanian lekë
22
- :AMD:
23
- :one: 亞美尼亞德拉姆
24
- :other: Armenian drams
25
- :ANG:
26
- :one: 荷屬安地列斯盾
27
- :other: Netherlands Antillean guilders
28
- :AOA:
29
- :one: 安哥拉寬扎
30
- :other: Angolan kwanzas
31
- :AOK:
32
- :one: 安哥拉寬扎 (1977-1990)
33
- :other: Angolan kwanzas (1977-1991)
34
- :AON:
35
- :one: 安哥拉新寬扎 (1990-2000)
36
- :other: Angolan new kwanzas (1990-2000)
37
- :AOR:
38
- :one: 安哥拉新調寬扎 (1995-1999)
39
- :other: Angolan readjusted kwanzas (1995-1999)
40
- :ARA:
41
- :one: 阿根廷奧斯特納爾
42
- :other: Argentine australs
43
- :ARL:
44
- :one: 阿根廷披索(1970-1983)
45
- :other: Argentine pesos ley (1970-1983)
46
- :ARM:
47
- :one: 阿根廷披索(1881-1970)
48
- :other: Argentine pesos (1881-1970)
49
- :ARP:
50
- :one: 阿根廷披索 (1983-1985)
51
- :other: Argentine pesos (1983-1985)
52
- :ARS:
53
- :one: 阿根廷披索
54
- :other: Argentine pesos
55
- :ATS:
56
- :one: 奧地利先令
57
- :other: Austrian schillings
58
- :AUD:
59
- :one: 澳幣
60
- :other: Australian dollars
61
- :symbol: AU$
62
- :AWG:
63
- :one: 阿魯巴盾
64
- :other: Aruban florin
65
- :AZM:
66
- :one: 亞塞拜然馬納特 (1993-2006)
67
- :other: Azerbaijani manats (1993-2006)
68
- :AZN:
69
- :one: 亞塞拜然馬納特
70
- :other: Azerbaijani manats
71
- :BAD:
72
- :one: 波士尼亞-黑塞哥維那第納爾
73
- :other: Bosnia-Herzegovina dinars (1992-1994)
74
- :BAM:
75
- :one: 波士尼亞-黑塞哥維那可轉換馬克
76
- :other: Bosnia-Herzegovina convertible marks
77
- :BAN:
78
- :one: 波士尼亞-黑塞哥維那新第納爾
79
- :other: Bosnia-Herzegovina new dinars (1994-1997)
80
- :BBD:
81
- :one: 巴貝多元
82
- :other: Barbadian dollars
83
- :BDT:
84
- :one: 孟加拉塔卡
85
- :other: Bangladeshi takas
86
- :BEC:
87
- :one: 比利時法郎(可轉換)
88
- :other: Belgian francs (convertible)
89
- :BEF:
90
- :one: 比利時法郎
91
- :other: Belgian francs
92
- :BEL:
93
- :one: 比利時法郎(金融)
94
- :other: Belgian francs (financial)
95
- :BGL:
96
- :one: 保加利亞硬列弗
97
- :other: Bulgarian hard leva
98
- :BGM:
99
- :one: 保加利亞社會黨列弗
100
- :other: Bulgarian socialist leva
101
- :BGN:
102
- :one: 保加利亞新列弗
103
- :other: Bulgarian leva
104
- :BGO:
105
- :one: 保加利亞列弗(1879-1952)
106
- :other: Bulgarian leva (1879-1952)
107
- :BHD:
108
- :one: 巴林第納爾
109
- :other: Bahraini dinars
110
- :BIF:
111
- :one: 蒲隆地法郎
112
- :other: Burundian francs
113
- :BMD:
114
- :one: 百慕達幣
115
- :other: Bermudan dollars
116
- :BND:
117
- :one: 汶萊元
118
- :other: Brunei dollars
119
- :BOB:
120
- :one: 玻利維亞貨幣單位
121
- :other: Bolivian bolivianos
122
- :BOL:
123
- :one: 玻利維亞玻利維亞諾(1863-1963)
124
- :other: Bolivian bolivianos (1863-1963)
125
- :BOP:
126
- :one: 玻利維亞披索
127
- :other: Bolivian pesos
128
- :BOV:
129
- :one: 玻利維亞幕多
130
- :other: Bolivian mvdols
131
- :BRB:
132
- :one: 巴西克魯薩多農瓦 (1967-1986)
133
- :other: Brazilian new cruzeiros (1967-1986)
134
- :BRC:
135
- :one: 巴西克魯賽羅 (1986-1989)
136
- :other: Brazilian cruzados (1986-1989)
137
- :BRE:
138
- :one: 巴西克魯賽羅 (1990-1993)
139
- :other: Brazilian cruzeiros (1990-1993)
140
- :BRL:
141
- :one: 巴西里拉
142
- :other: Brazilian reals
143
- :symbol: R$
144
- :BRN:
145
- :one: 巴西克如爾達農瓦
146
- :other: Brazilian new cruzados (1989-1990)
147
- :BRR:
148
- :one: 巴西克魯賽羅
149
- :other: Brazilian cruzeiros (1993-1994)
150
- :BRZ:
151
- :one: 巴西克魯賽羅(1942 -1967)
152
- :other: Brazilian cruzeiros (1942-1967)
153
- :BSD:
154
- :one: 巴哈馬元
155
- :other: Bahamian dollars
156
- :BTN:
157
- :one: 不丹那特倫
158
- :other: Bhutanese ngultrums
159
- :BUK:
160
- :one: 緬甸基雅特
161
- :other: Burmese kyats
162
- :BWP:
163
- :one: 波札那普拉
164
- :other: Botswanan pulas
165
- :BYB:
166
- :one: 白俄羅斯新盧布 (1994-1999)
167
- :other: Belarusian new rubles (1994-1999)
168
- :BYR:
169
- :one: 白俄羅斯盧布
170
- :other: Belarusian rubles
171
- :BZD:
172
- :one: 貝里斯元
173
- :other: Belize dollars
174
- :CAD:
175
- :one: 加幣
176
- :other: Canadian dollars
177
- :symbol: CA$
178
- :CDF:
179
- :one: 剛果法郎
180
- :other: Congolese francs
181
- :CHE:
182
- :one: 歐元 (WIR)
183
- :other: WIR euros
184
- :CHF:
185
- :one: 瑞士法郎
186
- :other: Swiss francs
187
- :CHW:
188
- :one: 法郎 (WIR)
189
- :other: WIR francs
190
- :CLE:
191
- :one: 智利埃斯庫多
192
- :other: Chilean escudos
193
- :CLF:
194
- :one: 卡林油達佛曼跎
195
- :other: Chilean units of account (UF)
196
- :CLP:
197
- :one: 智利披索
198
- :other: Chilean pesos
199
- :CNX:
200
- :one: Chinese People’s Bank dollar
201
- :other: Chinese People’s Bank dollars
202
- :CNY:
203
- :one: 人民幣
204
- :other: Chinese yuan
205
- :symbol:
206
- :COP:
207
- :one: 哥倫比亞披索
208
- :other: Colombian pesos
209
- :COU:
210
- :one: 哥倫比亞幣(COU)
211
- :other: Colombian real value units
212
- :CRC:
213
- :one: 哥斯大黎加科郎
214
- :other: Costa Rican colóns
215
- :CSD:
216
- :one: 舊塞爾維亞第納爾
217
- :other: Serbian dinars (2002-2006)
218
- :CSK:
219
- :one: 捷克斯洛伐克硬克朗
220
- :other: Czechoslovak hard korunas
221
- :CUC:
222
- :one: 古巴可轉換披索
223
- :other: Cuban convertible pesos
224
- :CUP:
225
- :one: 古巴披索
226
- :other: Cuban pesos
227
- :CVE:
228
- :one: 維德角埃斯庫多
229
- :other: Cape Verdean escudos
230
- :CYP:
231
- :one: 賽普勒斯鎊
232
- :other: Cypriot pounds
233
- :CZK:
234
- :one: 捷克克朗
235
- :other: Czech Republic korunas
236
- :DDM:
237
- :one: 東德奧斯特馬克
238
- :other: East German marks
239
- :DEM:
240
- :one: 德國馬克
241
- :other: German marks
242
- :DJF:
243
- :one: 吉布地法郎
244
- :other: Djiboutian francs
245
- :DKK:
246
- :one: 丹麥克羅納
247
- :other: Danish kroner
248
- :DOP:
249
- :one: 多明尼加披索
250
- :other: Dominican pesos
251
- :DZD:
252
- :one: 阿爾及利亞第納爾
253
- :other: Algerian dinars
254
- :ECS:
255
- :one: 厄瓜多蘇克雷
256
- :other: Ecuadorian sucres
257
- :ECV:
258
- :one: 厄瓜多爾由里達瓦康斯坦 (UVC)
259
- :other: Ecuadorian units of constant value
260
- :EEK:
261
- :one: 愛沙尼亞克朗
262
- :other: Estonian kroons
263
- :EGP:
264
- :one: 埃及鎊
265
- :other: Egyptian pounds
266
- :ERN:
267
- :one: 厄立特里亞納克法
268
- :other: Eritrean nakfas
269
- :ESA:
270
- :one: 西班牙比塞塔(會計單位)
271
- :other: Spanish pesetas (A account)
272
- :ESB:
273
- :one: 西班牙比塞塔(可轉換會計單位)
274
- :other: Spanish pesetas (convertible account)
275
- :ESP:
276
- :one: 西班牙陪士特
277
- :other: Spanish pesetas
278
- :ETB:
279
- :one: 衣索比亞比爾
280
- :other: Ethiopian birrs
281
- :EUR:
282
- :one: 歐元
283
- :other: euros
284
- :symbol:
285
- :FIM:
286
- :one: 芬蘭馬克
287
- :other: Finnish markkas
288
- :FJD:
289
- :one: 斐濟元
290
- :other: Fijian dollars
291
- :FKP:
292
- :one: 福克蘭群島鎊
293
- :other: Falkland Islands pounds
294
- :FRF:
295
- :one: 法國法郎
296
- :other: French francs
297
- :GBP:
298
- :one: 英鎊
299
- :other: British pounds sterling
300
- :symbol: £
301
- :GEK:
302
- :one: 喬治亞庫旁拉里
303
- :other: Georgian kupon larits
304
- :GEL:
305
- :one: 喬治拉里
306
- :other: Georgian laris
307
- :GHC:
308
- :one: 迦納仙蔕 (1979-2007)
309
- :other: Ghanaian cedis (1979-2007)
310
- :GHS:
311
- :one: 迦納仙蔕
312
- :other: Ghanaian cedis
313
- :GIP:
314
- :one: 直布羅陀鎊
315
- :other: Gibraltar pounds
316
- :GMD:
317
- :one: 甘比亞達拉西
318
- :other: Gambian dalasis
319
- :GNF:
320
- :one: 幾內亞法郎
321
- :other: Guinean francs
322
- :GNS:
323
- :one: 幾內亞西里
324
- :other: Guinean sylis
325
- :GQE:
326
- :one: 赤道幾內亞埃奎勒
327
- :other: Equatorial Guinean ekwele
328
- :GRD:
329
- :one: 希臘德拉克馬
330
- :other: Greek drachmas
331
- :GTQ:
332
- :one: 瓜地馬拉格查爾
333
- :other: Guatemalan quetzals
334
- :GWE:
335
- :one: 葡屬幾內亞埃斯庫多
336
- :other: Portuguese Guinea escudos
337
- :GWP:
338
- :one: 幾內亞比索披索
339
- :other: Guinea-Bissau pesos
340
- :GYD:
341
- :one: 圭亞那元
342
- :other: Guyanaese dollars
343
- :HKD:
344
- :one: 港幣
345
- :other: Hong Kong dollars
346
- :symbol: HK$
347
- :HNL:
348
- :one: 洪都拉斯倫皮拉
349
- :other: Honduran lempiras
350
- :HRD:
351
- :one: 克羅地亞第納爾
352
- :other: Croatian dinars
353
- :HRK:
354
- :one: 克羅地亞庫納
355
- :other: Croatian kunas
356
- :HTG:
357
- :one: 海地古德
358
- :other: Haitian gourdes
359
- :HUF:
360
- :one: 匈牙利福林
361
- :other: Hungarian forints
362
- :IDR:
363
- :one: 印尼盾
364
- :other: Indonesian rupiahs
365
- :IEP:
366
- :one: 愛爾蘭鎊
367
- :other: Irish pounds
368
- :ILP:
369
- :one: 以色列鎊
370
- :other: Israeli pounds
371
- :ILR:
372
- :one: Israeli sheqel (1980-1985)
373
- :other: Israeli sheqels (1980-1985)
374
- :ILS:
375
- :one: 以色列新謝克爾
376
- :other: Israeli new sheqels
377
- :symbol:
378
- :INR:
379
- :one: 印度盧比
380
- :other: Indian rupees
381
- :symbol:
382
- :IQD:
383
- :one: 伊拉克第納爾
384
- :other: Iraqi dinars
385
- :IRR:
386
- :one: 伊朗里亞爾
387
- :other: Iranian rials
388
- :ISJ:
389
- :one: Icelandic króna (1918-1981)
390
- :other: Icelandic krónur (1918-1981)
391
- :ISK:
392
- :one: 冰島克朗
393
- :other: Icelandic krónur
394
- :ITL:
395
- :one: 義大利里拉
396
- :other: Italian liras
397
- :JMD:
398
- :one: 牙買加元
399
- :other: Jamaican dollars
400
- :JOD:
401
- :one: 約旦第納爾
402
- :other: Jordanian dinars
403
- :JPY:
404
- :one: 日圓
405
- :other: Japanese yen
406
- :symbol: ¥
407
- :KES:
408
- :one: 肯尼亞先令
409
- :other: Kenyan shillings
410
- :KGS:
411
- :one: 吉爾吉斯索馬
412
- :other: Kyrgystani soms
413
- :KHR:
414
- :one: 柬埔寨瑞爾
415
- :other: Cambodian riels
416
- :KMF:
417
- :one: 科摩羅法郎
418
- :other: Comorian francs
419
- :KPW:
420
- :one: 北韓圜
421
- :other: North Korean won
422
- :KRH:
423
- :one: 南韓圜
424
- :other: South Korean hwan (1953-1962)
425
- :KRO:
426
- :one: 南韓圓
427
- :other: South Korean won (1945-1953)
428
- :KRW:
429
- :one: 韓圜
430
- :other: South Korean won
431
- :symbol:
432
- :KWD:
433
- :one: 科威特第納爾
434
- :other: Kuwaiti dinars
435
- :KYD:
436
- :one: 開曼群島美元
437
- :other: Cayman Islands dollars
438
- :KZT:
439
- :one: 卡扎克斯坦坦吉
440
- :other: Kazakhstani tenges
441
- :LAK:
442
- :one: 寮國基普
443
- :other: Laotian kips
444
- :LBP:
445
- :one: 黎巴嫩鎊
446
- :other: Lebanese pounds
447
- :LKR:
448
- :one: 斯里蘭卡盧布
449
- :other: Sri Lankan rupees
450
- :LRD:
451
- :one: 賴比瑞亞元
452
- :other: Liberian dollars
453
- :LSL:
454
- :one: 賴索托羅蒂
455
- :other: Lesotho lotis
456
- :LTL:
457
- :one: 立陶宛里塔
458
- :other: Lithuanian litai
459
- :LTT:
460
- :one: 立陶宛特羅
461
- :other: Lithuanian talonases
462
- :LUC:
463
- :one: 盧森堡可兌換法郎
464
- :other: Luxembourgian convertible francs
465
- :LUF:
466
- :one: 盧森堡法郎
467
- :other: Luxembourgian francs
468
- :LUL:
469
- :one: 盧森堡金融法郎
470
- :other: Luxembourg financial francs
471
- :LVL:
472
- :one: 拉脫維亞拉特銀幣
473
- :other: Latvian lati
474
- :LVR:
475
- :one: 拉脫維亞盧布
476
- :other: Latvian rubles
477
- :LYD:
478
- :one: 利比亞第納爾
479
- :other: Libyan dinars
480
- :MAD:
481
- :one: 摩洛哥迪拉姆
482
- :other: Moroccan dirhams
483
- :MAF:
484
- :one: 摩洛哥法郎
485
- :other: Moroccan francs
486
- :MCF:
487
- :one: 摩納哥法郎
488
- :other: Monegasque francs
489
- :MDC:
490
- :one: 摩爾多瓦券
491
- :other: Moldovan cupon
492
- :MDL:
493
- :one: 摩杜雲列伊
494
- :other: Moldovan lei
495
- :MGA:
496
- :one: 馬達加斯加艾瑞爾
497
- :other: Malagasy Ariaries
498
- :MGF:
499
- :one: 馬達加斯加法郎
500
- :other: Malagasy francs
501
- :MKD:
502
- :one: 馬其頓第納爾
503
- :other: Macedonian denari
504
- :MKN:
505
- :one: 馬其頓第納爾(1992-1993)
506
- :other: Macedonian denari (1992-1993)
507
- :MLF:
508
- :one: 馬里法郎
509
- :other: Malian francs
510
- :MMK:
511
- :one: 緬甸元
512
- :other: Myanma kyats
513
- :MNT:
514
- :one: 蒙古圖格里克
515
- :other: Mongolian tugriks
516
- :MOP:
517
- :one: 澳門元
518
- :other: Macanese patacas
519
- :MRO:
520
- :one: 茅利塔尼亞烏吉亞
521
- :other: Mauritanian ouguiyas
522
- :MTL:
523
- :one: 馬爾他里拉
524
- :other: Maltese lira
525
- :MTP:
526
- :one: 馬爾他鎊
527
- :other: Maltese pounds
528
- :MUR:
529
- :one: 模里西斯盧布
530
- :other: Mauritian rupees
531
- :MVP:
532
- :one: Maldivian rupee
533
- :other: Maldivian rupees
534
- :MVR:
535
- :one: 馬爾地夫海島盧非亞
536
- :other: Maldivian rufiyaas
537
- :MWK:
538
- :one: 馬拉維克瓦查
539
- :other: Malawian Kwachas
540
- :MXN:
541
- :one: 墨西哥披索
542
- :other: Mexican pesos
543
- :symbol: MX$
544
- :MXP:
545
- :one: 墨西哥銀披索 (1861-1992)
546
- :other: Mexican silver pesos (1861-1992)
547
- :MXV:
548
- :one: 墨西哥轉換單位 (UDI)
549
- :other: Mexican investment units
550
- :MYR:
551
- :one: 馬來西亞令吉
552
- :other: Malaysian ringgits
553
- :MZE:
554
- :one: 莫三比克埃斯庫多
555
- :other: Mozambican escudos
556
- :MZM:
557
- :one: 莫三比克梅蒂卡爾
558
- :other: Mozambican meticals (1980-2006)
559
- :MZN:
560
- :one: 莫三比克美提卡
561
- :other: Mozambican meticals
562
- :NAD:
563
- :one: 納米比亞元
564
- :other: Namibian dollars
565
- :NGN:
566
- :one: 奈及利亞奈拉
567
- :other: Nigerian nairas
568
- :NIC:
569
- :one: 尼加拉瓜科多巴
570
- :other: Nicaraguan córdobas (1988-1991)
571
- :NIO:
572
- :one: 尼加拉瓜金科多巴
573
- :other: Nicaraguan córdobas
574
- :NLG:
575
- :one: 荷蘭盾
576
- :other: Dutch guilders
577
- :NOK:
578
- :one: 挪威克羅納
579
- :other: Norwegian kroner
580
- :NPR:
581
- :one: 尼泊爾盧布
582
- :other: Nepalese rupees
583
- :NZD:
584
- :one: 紐西蘭幣
585
- :other: New Zealand dollars
586
- :symbol: NZ$
587
- :OMR:
588
- :one: 阿曼里奧
589
- :other: Omani rials
590
- :PAB:
591
- :one: 巴拿馬巴波亞
592
- :other: Panamanian balboas
593
- :PEI:
594
- :one: 祕魯因蒂
595
- :other: Peruvian intis
596
- :PEN:
597
- :one: 秘魯新太陽幣
598
- :other: Peruvian nuevos soles
599
- :PES:
600
- :one: 秘魯太陽幣
601
- :other: Peruvian soles (1863-1965)
602
- :PGK:
603
- :one: 巴布亞紐幾內亞基那
604
- :other: Papua New Guinean kina
605
- :PHP:
606
- :one: 菲律賓披索
607
- :other: Philippine pesos
608
- :PKR:
609
- :one: 巴基斯坦盧布
610
- :other: Pakistani rupees
611
- :PLN:
612
- :one: 波蘭茲羅提
613
- :other: Polish zlotys
614
- :PLZ:
615
- :one: 波蘭茲羅提 (1950-1995)
616
- :other: Polish zlotys (PLZ)
617
- :PTE:
618
- :one: 葡萄牙埃斯庫多
619
- :other: Portuguese escudos
620
- :PYG:
621
- :one: 巴拉圭瓜拉尼
622
- :other: Paraguayan guaranis
623
- :QAR:
624
- :one: 卡達爾里亞爾
625
- :other: Qatari rials
626
- :RHD:
627
- :one: 羅德西亞元
628
- :other: Rhodesian dollars
629
- :ROL:
630
- :one: 舊羅馬尼亞列伊
631
- :other: Romanian Lei (1952-2006)
632
- :RON:
633
- :one: 羅馬尼亞列伊
634
- :other: Romanian lei
635
- :RSD:
636
- :one: 塞爾維亞戴納
637
- :other: Serbian dinars
638
- :RUB:
639
- :one: 俄羅斯盧布
640
- :other: Russian rubles
641
- :RUR:
642
- :one: 俄羅斯盧布 (1991-1998)
643
- :other: Russian rubles (1991-1998)
644
- :RWF:
645
- :one: 盧安達法郎
646
- :other: Rwandan francs
647
- :SAR:
648
- :one: 沙烏地里雅
649
- :other: Saudi riyals
650
- :SBD:
651
- :one: 索羅門群島元
652
- :other: Solomon Islands dollars
653
- :SCR:
654
- :one: 塞席爾盧比
655
- :other: Seychellois rupees
656
- :SDD:
657
- :one: 蘇丹第納爾
658
- :other: Sudanese dinars (1992-2007)
659
- :SDG:
660
- :one: 蘇丹鎊
661
- :other: Sudanese pounds
662
- :SDP:
663
- :one: 舊蘇丹鎊
664
- :other: Sudanese pounds (1957-1998)
665
- :SEK:
666
- :one: 瑞典克羅納
667
- :other: Swedish kronor
668
- :SGD:
669
- :one: 新加坡幣
670
- :other: Singapore dollars
671
- :SHP:
672
- :one: 聖赫勒拿鎊
673
- :other: Saint Helena pounds
674
- :SIT:
675
- :one: 斯洛維尼亞托勒
676
- :other: Slovenian tolars
677
- :SKK:
678
- :one: 斯洛伐克克朗
679
- :other: Slovak korunas
680
- :SLL:
681
- :one: 獅子山利昂
682
- :other: Sierra Leonean leones
683
- :SOS:
684
- :one: 索馬利亞先令
685
- :other: Somali shillings
686
- :SRD:
687
- :one: 蘇利南元
688
- :other: Surinamese dollars
689
- :SRG:
690
- :one: 蘇利南基爾
691
- :other: Surinamese guilders
692
- :SSP:
693
- :one: 南蘇丹鎊
694
- :other: South Sudanese pounds
695
- :STD:
696
- :one: 聖多美島和普林西比島多布拉
697
- :other: São Tomé and Príncipe dobras
698
- :SUR:
699
- :one: 蘇聯盧布
700
- :other: Soviet roubles
701
- :SVC:
702
- :one: 薩爾瓦多科郎
703
- :other: Salvadoran colones
704
- :SYP:
705
- :one: 敘利亞鎊
706
- :other: Syrian pounds
707
- :SZL:
708
- :one: 史瓦濟蘭里朗吉尼
709
- :other: Swazi emalangeni
710
- :THB:
711
- :one: 泰銖
712
- :other: Thai baht
713
- :symbol: ฿
714
- :TJR:
715
- :one: 塔吉克盧布
716
- :other: Tajikistani rubles
717
- :TJS:
718
- :one: 塔吉克索莫尼
719
- :other: Tajikistani somonis
720
- :TMM:
721
- :one: 土庫曼馬納特
722
- :other: Turkmenistani manat (1993-2009)
723
- :TMT:
724
- :one: 土庫曼新馬納特
725
- :other: Turkmenistani manat
726
- :TND:
727
- :one: 突尼西亞第納爾
728
- :other: Tunisian dinars
729
- :TOP:
730
- :one: 東加潘加
731
- :other: Tongan paʻanga
732
- :TPE:
733
- :one: 帝汶埃斯庫多
734
- :other: Timorese escudos
735
- :TRL:
736
- :one: 土耳其里拉
737
- :other: Turkish Lira (1922-2005)
738
- :TRY:
739
- :one: 新土耳其里拉
740
- :other: Turkish Lira
741
- :TTD:
742
- :one: 千里達及托巴哥元
743
- :other: Trinidad and Tobago dollars
744
- :TWD:
745
- :one: 新臺幣
746
- :other: New Taiwan dollars
747
- :symbol: NT$
748
- :TZS:
749
- :one: 坦尚尼亞先令
750
- :other: Tanzanian shillings
751
- :UAH:
752
- :one: 烏克蘭格里夫那
753
- :other: Ukrainian hryvnias
754
- :UAK:
755
- :one: 烏克蘭卡本瓦那茲
756
- :other: Ukrainian karbovantsiv
757
- :UGS:
758
- :one: 烏干達先令 (1966-1987)
759
- :other: Ugandan shillings (1966-1987)
760
- :UGX:
761
- :one: 烏干達先令
762
- :other: Ugandan shillings
763
- :USD:
764
- :one: 美金
765
- :other: US dollars
766
- :symbol: $
767
- :USN:
768
- :one: 美元(次日)
769
- :other: US dollars (next day)
770
- :USS:
771
- :one: 美元(當日)
772
- :other: US dollars (same day)
773
- :UYI:
774
- :one: 烏拉圭披索(指數單位)
775
- :other: Uruguayan pesos (indexed units)
776
- :UYP:
777
- :one: 烏拉圭披索 (1975-1993)
778
- :other: Uruguayan pesos (1975-1993)
779
- :UYU:
780
- :one: 烏拉圭披索
781
- :other: Uruguayan pesos
782
- :UZS:
783
- :one: 烏茲別克索姆
784
- :other: Uzbekistan som
785
- :VEB:
786
- :one: 委內瑞拉玻利瓦 (1871-2008)
787
- :other: Venezuelan bolívars (1871-2008)
788
- :VEF:
789
- :one: 委內瑞拉玻利瓦
790
- :other: Venezuelan bolívars
791
- :VND:
792
- :one: 越南盾
793
- :other: Vietnamese dong
794
- :symbol:
795
- :VNN:
796
- :one: 越南盾(1978-1985)
797
- :other: Vietnamese dong (1978-1985)
798
- :VUV:
799
- :one: 萬那杜萬杜
800
- :other: Vanuatu vatus
801
- :WST:
802
- :one: 西薩摩亞塔拉
803
- :other: Samoan tala
804
- :XAF:
805
- :one: 法郎 (CFA-BEAC)
806
- :other: CFA francs BEAC
807
- :symbol: FCFA
808
- :XAG:
809
- :one: 白銀
810
- :other: troy ounces of silver
811
- :XAU:
812
- :one: 黃金
813
- :other: troy ounces of gold
814
- :XBA:
815
- :one: 歐洲綜合單位
816
- :other: European composite units
817
- :XBB:
818
- :one: 歐洲貨幣單位 (XBB)
819
- :other: European monetary units
820
- :XBC:
821
- :one: 歐洲會計單位 (XBC)
822
- :other: European units of account (XBC)
823
- :XBD:
824
- :one: 歐洲會計單位 (XBD)
825
- :other: European units of account (XBD)
826
- :XCD:
827
- :one: 格瑞那達元
828
- :other: East Caribbean dollars
829
- :symbol: EC$
830
- :XDR:
831
- :one: 特殊提款權
832
- :other: special drawing rights
833
- :XEU:
834
- :one: 歐洲貨幣單位 (XEU)
835
- :other: European currency units
836
- :XFO:
837
- :one: 法國金法郎
838
- :other: French gold francs
839
- :XFU:
840
- :one: 法國法郎 (UIC)
841
- :other: French UIC-francs
842
- :XOF:
843
- :one: 法郎 (CFA-BCEAO)
844
- :other: CFA francs BCEAO
845
- :symbol: CFA
846
- :XPD:
847
- :one: 帕拉狄昂
848
- :other: troy ounces of palladium
849
- :XPF:
850
- :one: 法郎 (CFP)
851
- :other: CFP francs
852
- :symbol: CFPF
853
- :XPT:
854
- :one: 白金
855
- :other: troy ounces of platinum
856
- :XRE:
857
- :one: RINET 基金
858
- :other: RINET Funds units
859
- :XSU:
860
- :one: Sucre
861
- :other: Sucres
862
- :XTS:
863
- :one: 測試用貨幣代碼
864
- :other: Testing Currency units
865
- :XUA:
866
- :one: ADB unit of account
867
- :other: ADB units of account
868
- :XXX:
869
- :one: 未知貨幣
870
- :other: (unknown currency)
871
- :YDD:
872
- :one: 葉門第納爾
873
- :other: Yemeni dinars
874
- :YER:
875
- :one: 葉門里雅
876
- :other: Yemeni rials
877
- :YUD:
878
- :one: 南斯拉夫第納爾硬幣
879
- :other: Yugoslavian hard dinars (1966-1990)
880
- :YUM:
881
- :one: 南斯拉夫挪威亞第納爾
882
- :other: Yugoslavian new dinars (1994-2002)
883
- :YUN:
884
- :one: 南斯拉夫 可轉換第納爾
885
- :other: Yugoslavian convertible dinars (1990-1992)
886
- :YUR:
887
- :one: 南斯拉夫改革第納爾(1992-1993)
888
- :other: Yugoslavian reformed dinars (1992-1993)
889
- :ZAL:
890
- :one: 南非蘭特(金融)
891
- :other: South African rands (financial)
892
- :ZAR:
893
- :one: 南非蘭特
894
- :other: South African rand
895
- :ZMK:
896
- :one: 尚比亞克瓦查 (1968-2012)
897
- :other: Zambian kwachas (1968-2012)
898
- :ZMW:
899
- :one: 尚比亞克瓦查
900
- :other: Zambian kwachas
901
- :ZRN:
902
- :one: 薩伊新扎伊爾
903
- :other: Zairean new zaires (1993-1998)
904
- :ZRZ:
905
- :one: 薩伊扎伊爾
906
- :other: Zairean zaires (1971-1993)
907
- :ZWD:
908
- :one: 辛巴威元
909
- :other: Zimbabwean dollars (1980-2008)
910
- :ZWL:
911
- :one: 辛巴威元 (2009)
912
- :other: Zimbabwean dollars (2009)
913
- :ZWR:
914
- :one: 辛巴威元(2008)
915
- :other: Zimbabwean dollars (2008)
1
+ ---
2
+ :zh-Hant:
3
+ :currencies:
4
+ :ADP:
5
+ :one: "安道爾陪士特"
6
+ :other: "安道爾陪士特"
7
+ :AED:
8
+ :one: "阿拉伯聯合大公國迪爾汗"
9
+ :other: "阿拉伯聯合大公國迪爾汗"
10
+ :AFA:
11
+ :one: "阿富汗尼 (19272002)"
12
+ :other: "Afghan afghanis (19272002)"
13
+ :AFN:
14
+ :one: "阿富汗尼"
15
+ :other: "阿富汗尼"
16
+ :ALK:
17
+ :one: "阿爾巴尼亞列克 (19461965)"
18
+ :other: "阿爾巴尼亞列克 (19461965)"
19
+ :symbol: "ALK"
20
+ :ALL:
21
+ :one: "阿爾巴尼亞列克"
22
+ :other: "阿爾巴尼亞列克"
23
+ :AMD:
24
+ :one: "亞美尼亞德拉姆"
25
+ :other: "亞美尼亞德拉姆"
26
+ :ANG:
27
+ :one: "荷屬安地列斯盾"
28
+ :other: "荷屬安地列斯盾"
29
+ :AOA:
30
+ :one: "安哥拉寬扎"
31
+ :other: "安哥拉寬扎"
32
+ :AOK:
33
+ :one: "安哥拉寬扎 (1977–1990)"
34
+ :other: "安哥拉寬扎 (1977–1990)"
35
+ :AON:
36
+ :one: "安哥拉新寬扎 (19902000)"
37
+ :other: "安哥拉新寬扎 (1990–2000)"
38
+ :AOR:
39
+ :one: "安哥拉新調寬扎 (19951999)"
40
+ :other: "安哥拉新調寬扎 (1995–1999)"
41
+ :ARA:
42
+ :one: "阿根廷奧斯特納爾"
43
+ :other: "Argentine australs"
44
+ :ARL:
45
+ :one: "阿根廷披索(1970-1983)"
46
+ :other: "阿根廷披索(1970-1983)"
47
+ :ARM:
48
+ :one: "阿根廷披索(1881-1970)"
49
+ :other: "阿根廷披索(1881-1970)"
50
+ :ARP:
51
+ :one: "阿根廷披索 (19831985)"
52
+ :other: "阿根廷披索 (1983–1985)"
53
+ :ARS:
54
+ :one: "阿根廷披索"
55
+ :other: "阿根廷披索"
56
+ :symbol: "$"
57
+ :ATS:
58
+ :one: "奧地利先令"
59
+ :other: "奧地利先令"
60
+ :AUD:
61
+ :one: "澳幣"
62
+ :other: "澳幣"
63
+ :symbol: "AU$"
64
+ :AWG:
65
+ :one: "阿魯巴盾"
66
+ :other: "阿魯巴盾"
67
+ :AZM:
68
+ :one: "亞塞拜然馬納特 (1993–2006)"
69
+ :other: "亞塞拜然馬納特 (1993–2006)"
70
+ :AZN:
71
+ :one: "亞塞拜然馬納特"
72
+ :other: "亞塞拜然馬納特"
73
+ :BAD:
74
+ :one: "波士尼亞-黑塞哥維那第納爾"
75
+ :other: "波士尼亞-黑塞哥維那第納爾"
76
+ :BAM:
77
+ :one: "波士尼亞赫塞哥維納可轉換馬克"
78
+ :other: "波士尼亞-黑塞哥維那可轉換馬克"
79
+ :BAN:
80
+ :one: "波士尼亞-黑塞哥維那新第納爾"
81
+ :other: "波士尼亞-黑塞哥維那新第納爾"
82
+ :BBD:
83
+ :one: "巴貝多元"
84
+ :other: "巴貝多元"
85
+ :symbol: "$"
86
+ :BDT:
87
+ :one: "孟加拉塔卡"
88
+ :other: "孟加拉塔卡"
89
+ :symbol: "৳"
90
+ :BEC:
91
+ :one: "比利時法郎(可轉換)"
92
+ :other: "比利時法郎(可轉換)"
93
+ :BEF:
94
+ :one: "比利時法郎"
95
+ :other: "比利時法郎"
96
+ :BEL:
97
+ :one: "比利時法郎(金融)"
98
+ :other: "比利時法郎(金融)"
99
+ :BGL:
100
+ :one: "保加利亞硬列弗"
101
+ :other: "保加利亞硬列弗"
102
+ :BGM:
103
+ :one: "保加利亞社會黨列弗"
104
+ :other: "保加利亞社會黨列弗"
105
+ :BGN:
106
+ :one: "保加利亞新列弗"
107
+ :other: "保加利亞新列弗"
108
+ :BGO:
109
+ :one: "保加利亞列弗(1879-1952)"
110
+ :other: "保加利亞列弗(1879-1952)"
111
+ :BHD:
112
+ :one: "巴林第納爾"
113
+ :other: "巴林第納爾"
114
+ :BIF:
115
+ :one: "蒲隆地法郎"
116
+ :other: "蒲隆地法郎"
117
+ :BMD:
118
+ :one: "百慕達幣"
119
+ :other: "百慕達幣"
120
+ :symbol: "$"
121
+ :BND:
122
+ :one: "汶萊元"
123
+ :other: "汶萊元"
124
+ :symbol: "$"
125
+ :BOB:
126
+ :one: "玻利維亞貨幣單位"
127
+ :other: "玻利維亞貨幣單位"
128
+ :BOL:
129
+ :one: "玻利維亞玻利維亞諾(1863-1963)"
130
+ :other: "玻利維亞玻利維亞諾(1863-1963)"
131
+ :BOP:
132
+ :one: "玻利維亞披索"
133
+ :other: "玻利維亞披索"
134
+ :BOV:
135
+ :one: "玻利維亞幕多"
136
+ :other: "玻利維亞幕多"
137
+ :BRB:
138
+ :one: "巴西克魯薩多農瓦 (1967–1986)"
139
+ :other: "巴西克魯薩多農瓦 (1967–1986)"
140
+ :BRC:
141
+ :one: "巴西克魯賽羅 (1986–1989)"
142
+ :other: "巴西克魯賽羅 (1986–1989)"
143
+ :BRE:
144
+ :one: "巴西克魯賽羅 (1990–1993)"
145
+ :other: "巴西克魯賽羅 (1990–1993)"
146
+ :BRL:
147
+ :one: "巴西里拉"
148
+ :other: "巴西里拉"
149
+ :symbol: "R$"
150
+ :BRN:
151
+ :one: "巴西克如爾達農瓦"
152
+ :other: "巴西克如爾達農瓦"
153
+ :BRR:
154
+ :one: "巴西克魯賽羅"
155
+ :other: "巴西克魯賽羅"
156
+ :BRZ:
157
+ :one: "巴西克魯賽羅(1942 -1967)"
158
+ :other: "巴西克魯賽羅(1942 -1967)"
159
+ :BSD:
160
+ :one: "巴哈馬元"
161
+ :other: "巴哈馬元"
162
+ :symbol: "$"
163
+ :BTN:
164
+ :one: "不丹那特倫"
165
+ :other: "不丹那特倫"
166
+ :BUK:
167
+ :one: "緬甸基雅特"
168
+ :other: "Burmese kyats"
169
+ :BWP:
170
+ :one: "波札那普拉"
171
+ :other: "波札那普拉"
172
+ :BYB:
173
+ :one: "白俄羅斯新盧布 (1994–1999)"
174
+ :other: "白俄羅斯新盧布 (1994–1999)"
175
+ :BYR:
176
+ :one: "白俄羅斯盧布"
177
+ :other: "白俄羅斯盧布"
178
+ :symbol: "р."
179
+ :BZD:
180
+ :one: "貝里斯元"
181
+ :other: "貝里斯元"
182
+ :symbol: "$"
183
+ :CAD:
184
+ :one: "加幣"
185
+ :other: "加幣"
186
+ :symbol: "CA$"
187
+ :CDF:
188
+ :one: "剛果法郎"
189
+ :other: "剛果法郎"
190
+ :CHE:
191
+ :one: "歐元 (WIR)"
192
+ :other: "歐元 (WIR)"
193
+ :CHF:
194
+ :one: "瑞士法郎"
195
+ :other: "瑞士法郎"
196
+ :CHW:
197
+ :one: "法郎 (WIR)"
198
+ :other: "法郎 (WIR)"
199
+ :CLE:
200
+ :one: "智利埃斯庫多"
201
+ :other: "智利埃斯庫多"
202
+ :CLF:
203
+ :one: "卡林油達佛曼跎"
204
+ :other: "卡林油達佛曼跎"
205
+ :CLP:
206
+ :one: "智利披索"
207
+ :other: "智利披索"
208
+ :symbol: "$"
209
+ :CNX:
210
+ :one: "Chinese People’s Bank dollar"
211
+ :other: "Chinese People’s Bank dollars"
212
+ :CNY:
213
+ :one: "人民幣"
214
+ :other: "人民幣"
215
+ :symbol: "CN¥"
216
+ :COP:
217
+ :one: "哥倫比亞披索"
218
+ :other: "哥倫比亞披索"
219
+ :symbol: "$"
220
+ :COU:
221
+ :one: "哥倫比亞幣(COU)"
222
+ :other: "哥倫比亞幣(COU)"
223
+ :CRC:
224
+ :one: "哥斯大黎加科朗"
225
+ :other: "哥斯大黎加科郎"
226
+ :symbol: "₡"
227
+ :CSD:
228
+ :one: "舊塞爾維亞第納爾"
229
+ :other: "舊塞爾維亞第納爾"
230
+ :CSK:
231
+ :one: "捷克斯洛伐克硬克朗"
232
+ :other: "捷克斯洛伐克硬克朗"
233
+ :CUC:
234
+ :one: "古巴可轉換披索"
235
+ :other: "古巴可轉換披索"
236
+ :CUP:
237
+ :one: "古巴披索"
238
+ :other: "古巴披索"
239
+ :symbol: "$"
240
+ :CVE:
241
+ :one: "維德角埃斯庫多"
242
+ :other: "維德角埃斯庫多"
243
+ :CYP:
244
+ :one: "賽普勒斯鎊"
245
+ :other: "賽普勒斯鎊"
246
+ :CZK:
247
+ :one: "捷克克朗"
248
+ :other: "捷克克朗"
249
+ :DDM:
250
+ :one: "東德奧斯特馬克"
251
+ :other: "東德奧斯特馬克"
252
+ :DEM:
253
+ :one: "德國馬克"
254
+ :other: "德國馬克"
255
+ :DJF:
256
+ :one: "吉布地法郎"
257
+ :other: "吉布地法郎"
258
+ :DKK:
259
+ :one: "丹麥克朗"
260
+ :other: "丹麥克羅納"
261
+ :DOP:
262
+ :one: "多明尼加披索"
263
+ :other: "多明尼加披索"
264
+ :symbol: "$"
265
+ :DZD:
266
+ :one: "阿爾及利亞第納爾"
267
+ :other: "阿爾及利亞第納爾"
268
+ :ECS:
269
+ :one: "厄瓜多蘇克雷"
270
+ :other: "厄瓜多蘇克雷"
271
+ :ECV:
272
+ :one: "厄瓜多爾由里達瓦康斯坦 (UVC)"
273
+ :other: "厄瓜多爾由里達瓦康斯坦 (UVC)"
274
+ :EEK:
275
+ :one: "愛沙尼亞克朗"
276
+ :other: "愛沙尼亞克朗"
277
+ :EGP:
278
+ :one: "埃及鎊"
279
+ :other: "埃及鎊"
280
+ :ERN:
281
+ :one: "厄立特里亞納克法"
282
+ :other: "厄立特里亞納克法"
283
+ :ESA:
284
+ :one: "西班牙比塞塔(會計單位)"
285
+ :other: "西班牙比塞塔(會計單位)"
286
+ :ESB:
287
+ :one: "西班牙比塞塔(可轉換會計單位)"
288
+ :other: "西班牙比塞塔(可轉換會計單位)"
289
+ :ESP:
290
+ :one: "西班牙陪士特"
291
+ :other: "西班牙陪士特"
292
+ :symbol: "₧"
293
+ :ETB:
294
+ :one: "衣索比亞比爾"
295
+ :other: "衣索比亞比爾"
296
+ :EUR:
297
+ :one: "歐元"
298
+ :other: "歐元"
299
+ :symbol: "€"
300
+ :FIM:
301
+ :one: "芬蘭馬克"
302
+ :other: "芬蘭馬克"
303
+ :FJD:
304
+ :one: "斐濟元"
305
+ :other: "斐濟元"
306
+ :symbol: "$"
307
+ :FKP:
308
+ :one: "福克蘭群島鎊"
309
+ :other: "福克蘭群島鎊"
310
+ :FRF:
311
+ :one: "法國法郎"
312
+ :other: "法國法郎"
313
+ :GBP:
314
+ :one: "英鎊"
315
+ :other: "英鎊"
316
+ :symbol: "£"
317
+ :GEK:
318
+ :one: "喬治亞庫旁拉里"
319
+ :other: "喬治亞庫旁拉里"
320
+ :GEL:
321
+ :one: "喬治亞拉里"
322
+ :other: "喬治拉里"
323
+ :GHC:
324
+ :one: "迦納仙蔕 (1979–2007)"
325
+ :other: "迦納仙蔕 (1979–2007)"
326
+ :GHS:
327
+ :one: "迦納塞地"
328
+ :other: "迦納仙蔕"
329
+ :symbol: "₵"
330
+ :GIP:
331
+ :one: "直布羅陀鎊"
332
+ :other: "直布羅陀鎊"
333
+ :symbol: "£"
334
+ :GMD:
335
+ :one: "甘比亞達拉西"
336
+ :other: "甘比亞達拉西"
337
+ :GNF:
338
+ :one: "幾內亞法郎"
339
+ :other: "幾內亞法郎"
340
+ :GNS:
341
+ :one: "幾內亞西里"
342
+ :other: "幾內亞西里"
343
+ :GQE:
344
+ :one: "赤道幾內亞埃奎勒"
345
+ :other: "赤道幾內亞埃奎勒"
346
+ :GRD:
347
+ :one: "希臘德拉克馬"
348
+ :other: "希臘德拉克馬"
349
+ :GTQ:
350
+ :one: "瓜地馬拉格查爾"
351
+ :other: "瓜地馬拉格查爾"
352
+ :GWE:
353
+ :one: "葡屬幾內亞埃斯庫多"
354
+ :other: "葡屬幾內亞埃斯庫多"
355
+ :GWP:
356
+ :one: "幾內亞比索披索"
357
+ :other: "幾內亞比索披索"
358
+ :GYD:
359
+ :one: "圭亞那元"
360
+ :other: "圭亞那元"
361
+ :symbol: "$"
362
+ :HKD:
363
+ :one: "港幣"
364
+ :other: "港幣"
365
+ :symbol: "HK$"
366
+ :HNL:
367
+ :one: "洪都拉斯倫皮拉"
368
+ :other: "洪都拉斯倫皮拉"
369
+ :HRD:
370
+ :one: "克羅地亞第納爾"
371
+ :other: "克羅地亞第納爾"
372
+ :HRK:
373
+ :one: "克羅埃西亞庫納"
374
+ :other: "克羅地亞庫納"
375
+ :HTG:
376
+ :one: "海地古德"
377
+ :other: "海地古德"
378
+ :HUF:
379
+ :one: "匈牙利福林"
380
+ :other: "匈牙利福林"
381
+ :IDR:
382
+ :one: "印尼盾"
383
+ :other: "印尼盾"
384
+ :IEP:
385
+ :one: "愛爾蘭鎊"
386
+ :other: "愛爾蘭鎊"
387
+ :ILP:
388
+ :one: "以色列鎊"
389
+ :other: "以色列鎊"
390
+ :ILR:
391
+ :one: "以色列謝克爾 (1980–1985)"
392
+ :other: "以色列謝克爾 (1980–1985)"
393
+ :symbol: "ILR"
394
+ :ILS:
395
+ :one: "以色列新謝克爾"
396
+ :other: "以色列新謝克爾"
397
+ :symbol: "₪"
398
+ :INR:
399
+ :one: "印度盧比"
400
+ :other: "印度盧比"
401
+ :symbol: "₹"
402
+ :IQD:
403
+ :one: "伊拉克第納爾"
404
+ :other: "伊拉克第納爾"
405
+ :IRR:
406
+ :one: "伊朗里亞爾"
407
+ :other: "伊朗里亞爾"
408
+ :ISJ:
409
+ :one: "冰島克朗 (1918–1981)"
410
+ :other: "冰島克朗 (1918–1981)"
411
+ :ISK:
412
+ :one: "冰島克朗"
413
+ :other: "冰島克朗"
414
+ :ITL:
415
+ :one: "義大利里拉"
416
+ :other: "義大利里拉"
417
+ :JMD:
418
+ :one: "牙買加元"
419
+ :other: "牙買加元"
420
+ :symbol: "$"
421
+ :JOD:
422
+ :one: "約旦第納爾"
423
+ :other: "約旦第納爾"
424
+ :JPY:
425
+ :one: "日圓"
426
+ :other: "日圓"
427
+ :symbol: "¥"
428
+ :KES:
429
+ :one: "肯亞先令"
430
+ :other: "肯尼亞先令"
431
+ :KGS:
432
+ :one: "吉爾吉斯索姆"
433
+ :other: "吉爾吉斯索馬"
434
+ :KHR:
435
+ :one: "柬埔寨瑞爾"
436
+ :other: "柬埔寨瑞爾"
437
+ :symbol: "៛"
438
+ :KMF:
439
+ :one: "科摩羅法郎"
440
+ :other: "科摩羅法郎"
441
+ :KPW:
442
+ :one: "北韓圓"
443
+ :other: "北韓圓"
444
+ :KRH:
445
+ :one: "南韓圜"
446
+ :other: "South Korean hwan (1953–1962)"
447
+ :KRO:
448
+ :one: "南韓圓"
449
+ :other: "South Korean won (1945–1953)"
450
+ :KRW:
451
+ :one: "韓圓"
452
+ :other: "韓圓"
453
+ :symbol: "₩"
454
+ :KWD:
455
+ :one: "科威特第納爾"
456
+ :other: "科威特第納爾"
457
+ :KYD:
458
+ :one: "開曼群島元"
459
+ :other: "開曼群島美元"
460
+ :symbol: "$"
461
+ :KZT:
462
+ :one: "卡扎克斯坦坦吉"
463
+ :other: "卡扎克斯坦坦吉"
464
+ :symbol: "₸"
465
+ :LAK:
466
+ :one: "寮國基普"
467
+ :other: "寮國基普"
468
+ :symbol: "₭"
469
+ :LBP:
470
+ :one: "黎巴嫩鎊"
471
+ :other: "黎巴嫩鎊"
472
+ :LKR:
473
+ :one: "斯里蘭卡盧比"
474
+ :other: "斯里蘭卡盧布"
475
+ :LRD:
476
+ :one: "賴比瑞亞元"
477
+ :other: "賴比瑞亞元"
478
+ :symbol: "$"
479
+ :LSL:
480
+ :one: "賴索托羅蒂"
481
+ :other: "賴索托羅蒂"
482
+ :LTL:
483
+ :one: "立陶宛立特"
484
+ :other: "立陶宛里塔"
485
+ :LTT:
486
+ :one: "立陶宛特羅"
487
+ :other: "立陶宛特羅"
488
+ :LUC:
489
+ :one: "盧森堡可兌換法郎"
490
+ :other: "盧森堡可兌換法郎"
491
+ :LUF:
492
+ :one: "盧森堡法郎"
493
+ :other: "盧森堡法郎"
494
+ :LUL:
495
+ :one: "盧森堡金融法郎"
496
+ :other: "盧森堡金融法郎"
497
+ :LVL:
498
+ :one: "拉脫維亞拉特銀幣"
499
+ :other: "拉脫維亞拉特銀幣"
500
+ :LVR:
501
+ :one: "拉脫維亞盧布"
502
+ :other: "拉脫維亞盧布"
503
+ :LYD:
504
+ :one: "利比亞第納爾"
505
+ :other: "利比亞第納爾"
506
+ :MAD:
507
+ :one: "摩洛哥迪拉姆"
508
+ :other: "摩洛哥迪拉姆"
509
+ :MAF:
510
+ :one: "摩洛哥法郎"
511
+ :other: "摩洛哥法郎"
512
+ :MCF:
513
+ :one: "摩納哥法郎"
514
+ :other: "摩納哥法郎"
515
+ :MDC:
516
+ :one: "摩爾多瓦券"
517
+ :other: "摩爾多瓦券"
518
+ :MDL:
519
+ :one: "摩杜雲列伊"
520
+ :other: "摩杜雲列伊"
521
+ :MGA:
522
+ :one: "馬達加斯加艾瑞爾"
523
+ :other: "馬達加斯加艾瑞爾"
524
+ :MGF:
525
+ :one: "馬達加斯加法郎"
526
+ :other: "馬達加斯加法郎"
527
+ :MKD:
528
+ :one: "馬其頓第納爾"
529
+ :other: "馬其頓第納爾"
530
+ :MKN:
531
+ :one: "馬其頓第納爾(1992-1993)"
532
+ :other: "馬其頓第納爾(1992-1993)"
533
+ :MLF:
534
+ :one: "馬里法郎"
535
+ :other: "馬里法郎"
536
+ :MMK:
537
+ :one: "緬甸元"
538
+ :other: "緬甸元"
539
+ :MNT:
540
+ :one: "蒙古圖格里克"
541
+ :other: "蒙古圖格里克"
542
+ :symbol: "₮"
543
+ :MOP:
544
+ :one: "澳門元"
545
+ :other: "澳門元"
546
+ :MRO:
547
+ :one: "茅利塔尼亞烏吉亞"
548
+ :other: "茅利塔尼亞烏吉亞"
549
+ :MTL:
550
+ :one: "馬爾他里拉"
551
+ :other: "馬爾他里拉"
552
+ :MTP:
553
+ :one: "馬爾他鎊"
554
+ :other: "馬爾他鎊"
555
+ :MUR:
556
+ :one: "模里西斯盧布"
557
+ :other: "模里西斯盧布"
558
+ :MVP:
559
+ :one: "Maldivian rupee"
560
+ :other: "Maldivian rupees"
561
+ :MVR:
562
+ :one: "馬爾地夫盧非亞"
563
+ :other: "馬爾地夫海島盧非亞"
564
+ :MWK:
565
+ :one: "馬拉維克瓦查"
566
+ :other: "馬拉維克瓦查"
567
+ :MXN:
568
+ :one: "墨西哥披索"
569
+ :other: "墨西哥披索"
570
+ :symbol: "MX$"
571
+ :MXP:
572
+ :one: "墨西哥銀披索 (1861–1992)"
573
+ :other: "墨西哥銀披索 (1861–1992)"
574
+ :MXV:
575
+ :one: "墨西哥轉換單位 (UDI)"
576
+ :other: "墨西哥轉換單位 (UDI)"
577
+ :MYR:
578
+ :one: "馬來西亞令吉"
579
+ :other: "馬來西亞令吉"
580
+ :MZE:
581
+ :one: "莫三比克埃斯庫多"
582
+ :other: "莫三比克埃斯庫多"
583
+ :MZM:
584
+ :one: "莫三比克梅蒂卡爾"
585
+ :other: "莫三比克梅蒂卡爾"
586
+ :MZN:
587
+ :one: "莫三比克美提卡"
588
+ :other: "莫三比克美提卡"
589
+ :NAD:
590
+ :one: "納米比亞元"
591
+ :other: "納米比亞元"
592
+ :symbol: "$"
593
+ :NGN:
594
+ :one: "奈及利亞奈拉"
595
+ :other: "奈及利亞奈拉"
596
+ :symbol: "₦"
597
+ :NIC:
598
+ :one: "尼加拉瓜科多巴"
599
+ :other: "尼加拉瓜科多巴"
600
+ :NIO:
601
+ :one: "尼加拉瓜金科多巴"
602
+ :other: "尼加拉瓜金科多巴"
603
+ :NLG:
604
+ :one: "荷蘭盾"
605
+ :other: "荷蘭盾"
606
+ :NOK:
607
+ :one: "挪威克朗"
608
+ :other: "挪威克羅納"
609
+ :NPR:
610
+ :one: "尼泊爾盧比"
611
+ :other: "尼泊爾盧布"
612
+ :NZD:
613
+ :one: "紐西蘭幣"
614
+ :other: "紐西蘭幣"
615
+ :symbol: "NZ$"
616
+ :OMR:
617
+ :one: "阿曼里奧"
618
+ :other: "阿曼里奧"
619
+ :PAB:
620
+ :one: "巴拿馬巴波亞"
621
+ :other: "巴拿馬巴波亞"
622
+ :PEI:
623
+ :one: "祕魯因蒂"
624
+ :other: "祕魯因蒂"
625
+ :PEN:
626
+ :one: "秘魯新太陽幣"
627
+ :other: "秘魯新太陽幣"
628
+ :PES:
629
+ :one: "秘魯太陽幣"
630
+ :other: "秘魯太陽幣"
631
+ :PGK:
632
+ :one: "巴布亞紐幾內亞基那"
633
+ :other: "巴布亞紐幾內亞基那"
634
+ :PHP:
635
+ :one: "菲律賓披索"
636
+ :other: "菲律賓披索"
637
+ :symbol: "₱"
638
+ :PKR:
639
+ :one: "巴基斯坦盧布"
640
+ :other: "巴基斯坦盧布"
641
+ :PLN:
642
+ :one: "波蘭茲羅提"
643
+ :other: "波蘭茲羅提"
644
+ :PLZ:
645
+ :one: "波蘭茲羅提 (1950–1995)"
646
+ :other: "波蘭茲羅提 (1950–1995)"
647
+ :PTE:
648
+ :one: "葡萄牙埃斯庫多"
649
+ :other: "葡萄牙埃斯庫多"
650
+ :PYG:
651
+ :one: "巴拉圭瓜拉尼"
652
+ :other: "巴拉圭瓜拉尼"
653
+ :symbol: "₲"
654
+ :QAR:
655
+ :one: "卡達爾里亞爾"
656
+ :other: "卡達爾里亞爾"
657
+ :RHD:
658
+ :one: "羅德西亞元"
659
+ :other: "羅德西亞元"
660
+ :ROL:
661
+ :one: "舊羅馬尼亞列伊"
662
+ :other: "舊羅馬尼亞列伊"
663
+ :RON:
664
+ :one: "羅馬尼亞列伊"
665
+ :other: "羅馬尼亞列伊"
666
+ :RSD:
667
+ :one: "塞爾維亞戴納"
668
+ :other: "塞爾維亞戴納"
669
+ :RUB:
670
+ :one: "俄羅斯盧布"
671
+ :other: "俄羅斯盧布"
672
+ :RUR:
673
+ :one: "俄羅斯盧布 (1991–1998)"
674
+ :other: "俄羅斯盧布 (1991–1998)"
675
+ :symbol: "р."
676
+ :RWF:
677
+ :one: "盧安達法郎"
678
+ :other: "盧安達法郎"
679
+ :SAR:
680
+ :one: "沙烏地里雅"
681
+ :other: "沙烏地里雅"
682
+ :SBD:
683
+ :one: "索羅門群島元"
684
+ :other: "索羅門群島元"
685
+ :symbol: "$"
686
+ :SCR:
687
+ :one: "塞席爾盧比"
688
+ :other: "塞席爾盧比"
689
+ :SDD:
690
+ :one: "蘇丹第納爾"
691
+ :other: "蘇丹第納爾"
692
+ :SDG:
693
+ :one: "蘇丹鎊"
694
+ :other: "蘇丹鎊"
695
+ :SDP:
696
+ :one: "舊蘇丹鎊"
697
+ :other: "舊蘇丹鎊"
698
+ :SEK:
699
+ :one: "瑞典克朗"
700
+ :other: "瑞典克羅納"
701
+ :SGD:
702
+ :one: "新加坡幣"
703
+ :other: "新加坡幣"
704
+ :symbol: "$"
705
+ :SHP:
706
+ :one: "聖赫勒拿鎊"
707
+ :other: "聖赫勒拿鎊"
708
+ :SIT:
709
+ :one: "斯洛維尼亞托勒"
710
+ :other: "斯洛維尼亞托勒"
711
+ :SKK:
712
+ :one: "斯洛伐克克朗"
713
+ :other: "斯洛伐克克朗"
714
+ :SLL:
715
+ :one: "獅子山利昂"
716
+ :other: "獅子山利昂"
717
+ :SOS:
718
+ :one: "索馬利亞先令"
719
+ :other: "索馬利亞先令"
720
+ :SRD:
721
+ :one: "蘇利南元"
722
+ :other: "蘇利南元"
723
+ :symbol: "$"
724
+ :SRG:
725
+ :one: "蘇利南基爾"
726
+ :other: "蘇利南基爾"
727
+ :SSP:
728
+ :one: "南蘇丹鎊"
729
+ :other: "南蘇丹鎊"
730
+ :symbol: "£"
731
+ :STD:
732
+ :one: "聖多美島和普林西比島多布拉"
733
+ :other: "聖多美島和普林西比島多布拉"
734
+ :SUR:
735
+ :one: "蘇聯盧布"
736
+ :other: "蘇聯盧布"
737
+ :SVC:
738
+ :one: "薩爾瓦多科郎"
739
+ :other: "薩爾瓦多科郎"
740
+ :SYP:
741
+ :one: "敘利亞鎊"
742
+ :other: "敘利亞鎊"
743
+ :SZL:
744
+ :one: "史瓦濟蘭里朗吉尼"
745
+ :other: "史瓦濟蘭里朗吉尼"
746
+ :THB:
747
+ :one: "泰銖"
748
+ :other: "泰銖"
749
+ :symbol: "฿"
750
+ :TJR:
751
+ :one: "塔吉克盧布"
752
+ :other: "塔吉克盧布"
753
+ :TJS:
754
+ :one: "塔吉克索莫尼"
755
+ :other: "塔吉克索莫尼"
756
+ :TMM:
757
+ :one: "土庫曼馬納特 (1993–2009)"
758
+ :other: "土庫曼馬納特 (1993–2009)"
759
+ :TMT:
760
+ :one: "土庫曼馬納特"
761
+ :other: "土庫曼新馬納特"
762
+ :TND:
763
+ :one: "突尼西亞第納爾"
764
+ :other: "突尼西亞第納爾"
765
+ :TOP:
766
+ :one: "東加潘加"
767
+ :other: "東加潘加"
768
+ :TPE:
769
+ :one: "帝汶埃斯庫多"
770
+ :other: "Timorese escudos"
771
+ :TRL:
772
+ :one: "土耳其里拉"
773
+ :other: "土耳其里拉"
774
+ :TRY:
775
+ :one: "新土耳其里拉"
776
+ :other: "新土耳其里拉"
777
+ :symbol: "₺"
778
+ :TTD:
779
+ :one: "千里達及托巴哥元"
780
+ :other: "千里達及托巴哥元"
781
+ :symbol: "$"
782
+ :TWD:
783
+ :one: "新臺幣"
784
+ :other: "新臺幣"
785
+ :symbol: "NT$"
786
+ :TZS:
787
+ :one: "坦尚尼亞先令"
788
+ :other: "坦尚尼亞先令"
789
+ :UAH:
790
+ :one: "烏克蘭格里夫納"
791
+ :other: "烏克蘭格里夫那"
792
+ :symbol: "₴"
793
+ :UAK:
794
+ :one: "烏克蘭卡本瓦那茲"
795
+ :other: "烏克蘭卡本瓦那茲"
796
+ :UGS:
797
+ :one: "烏干達先令 (1966–1987)"
798
+ :other: "烏干達先令 (1966–1987)"
799
+ :UGX:
800
+ :one: "烏干達先令"
801
+ :other: "烏干達先令"
802
+ :USD:
803
+ :one: "美元"
804
+ :other: "美元"
805
+ :symbol: "$"
806
+ :USN:
807
+ :one: "美元(次日)"
808
+ :other: "美元(次日)"
809
+ :USS:
810
+ :one: "美元(當日)"
811
+ :other: "美元(當日)"
812
+ :UYI:
813
+ :one: "烏拉圭披索(指數單位)"
814
+ :other: "烏拉圭披索(指數單位)"
815
+ :UYP:
816
+ :one: "烏拉圭披索 (1975–1993)"
817
+ :other: "烏拉圭披索 (1975–1993)"
818
+ :UYU:
819
+ :one: "烏拉圭披索"
820
+ :other: "烏拉圭披索"
821
+ :symbol: "$"
822
+ :UZS:
823
+ :one: "烏茲別克索姆"
824
+ :other: "烏茲別克索姆"
825
+ :VEB:
826
+ :one: "委內瑞拉玻利瓦 (1871–2008)"
827
+ :other: "委內瑞拉玻利瓦 (1871–2008)"
828
+ :VEF:
829
+ :one: "委內瑞拉玻利瓦"
830
+ :other: "委內瑞拉玻利瓦"
831
+ :VND:
832
+ :one: "越南盾"
833
+ :other: "越南盾"
834
+ :symbol: "₫"
835
+ :VNN:
836
+ :one: "越南盾(1978-1985)"
837
+ :other: "Vietnamese dong (1978–1985)"
838
+ :VUV:
839
+ :one: "萬那杜萬杜"
840
+ :other: "萬那杜萬杜"
841
+ :WST:
842
+ :one: "西薩摩亞塔拉"
843
+ :other: "西薩摩亞塔拉"
844
+ :XAF:
845
+ :one: "法郎 (CFA–BEAC)"
846
+ :other: "法郎 (CFA–BEAC)"
847
+ :symbol: "FCFA"
848
+ :XAG:
849
+ :one: "白銀"
850
+ :other: "troy ounces of silver"
851
+ :XAU:
852
+ :one: "黃金"
853
+ :other: "troy ounces of gold"
854
+ :XBA:
855
+ :one: "歐洲綜合單位"
856
+ :other: "European composite units"
857
+ :XBB:
858
+ :one: "歐洲貨幣單位 (XBB)"
859
+ :other: "European monetary units"
860
+ :XBC:
861
+ :one: "歐洲會計單位 (XBC)"
862
+ :other: "European units of account (XBC)"
863
+ :XBD:
864
+ :one: "歐洲會計單位 (XBD)"
865
+ :other: "European units of account (XBD)"
866
+ :XCD:
867
+ :one: "格瑞那達元"
868
+ :other: "格瑞那達元"
869
+ :symbol: "EC$"
870
+ :XDR:
871
+ :one: "特殊提款權"
872
+ :other: "special drawing rights"
873
+ :XEU:
874
+ :one: "歐洲貨幣單位 (XEU)"
875
+ :other: "歐洲貨幣單位 (XEU)"
876
+ :XFO:
877
+ :one: "法國金法郎"
878
+ :other: "French gold francs"
879
+ :XFU:
880
+ :one: "法國法郎 (UIC)"
881
+ :other: "French UIC-francs"
882
+ :XOF:
883
+ :one: "法郎 (CFA–BCEAO)"
884
+ :other: "法郎 (CFA–BCEAO)"
885
+ :symbol: "CFA"
886
+ :XPD:
887
+ :one: "帕拉狄昂"
888
+ :other: "troy ounces of palladium"
889
+ :XPF:
890
+ :one: "法郎 (CFP)"
891
+ :other: "法郎 (CFP)"
892
+ :symbol: "CFPF"
893
+ :XPT:
894
+ :one: "白金"
895
+ :other: "troy ounces of platinum"
896
+ :XRE:
897
+ :one: "RINET 基金"
898
+ :other: "RINET Funds units"
899
+ :XSU:
900
+ :one: "Sucre"
901
+ :other: "Sucres"
902
+ :XTS:
903
+ :one: "測試用貨幣代碼"
904
+ :other: "Testing Currency units"
905
+ :XUA:
906
+ :one: "ADB unit of account"
907
+ :other: "ADB units of account"
908
+ :XXX:
909
+ :one: "未知貨幣"
910
+ :other: "未知貨幣"
911
+ :YDD:
912
+ :one: "葉門第納爾"
913
+ :other: "葉門第納爾"
914
+ :YER:
915
+ :one: "葉門里雅"
916
+ :other: "葉門里雅"
917
+ :YUD:
918
+ :one: "南斯拉夫第納爾硬幣"
919
+ :other: "南斯拉夫第納爾硬幣"
920
+ :YUM:
921
+ :one: "南斯拉夫挪威亞第納爾"
922
+ :other: "南斯拉夫挪威亞第納爾"
923
+ :YUN:
924
+ :one: "南斯拉夫 可轉換第納爾"
925
+ :other: "南斯拉夫 可轉換第納爾"
926
+ :YUR:
927
+ :one: "南斯拉夫改革第納爾(1992-1993)"
928
+ :other: "南斯拉夫改革第納爾(1992-1993)"
929
+ :ZAL:
930
+ :one: "南非蘭特(金融)"
931
+ :other: "南非蘭特(金融)"
932
+ :ZAR:
933
+ :one: "南非蘭特"
934
+ :other: "南非蘭特"
935
+ :ZMK:
936
+ :one: "尚比亞克瓦查 (1968–2012)"
937
+ :other: "尚比亞克瓦查 (1968–2012)"
938
+ :ZMW:
939
+ :one: "尚比亞克瓦查"
940
+ :other: "尚比亞克瓦查"
941
+ :ZRN:
942
+ :one: "薩伊新扎伊爾"
943
+ :other: "薩伊新扎伊爾"
944
+ :ZRZ:
945
+ :one: "薩伊扎伊爾"
946
+ :other: "薩伊扎伊爾"
947
+ :ZWD:
948
+ :one: "辛巴威元"
949
+ :other: "辛巴威元"
950
+ :ZWL:
951
+ :one: "辛巴威元 (2009)"
952
+ :other: "辛巴威元 (2009)"
953
+ :ZWR:
954
+ :one: "辛巴威元(2008)"
955
+ :other: "辛巴威元(2008)"