twitter_cldr 3.0.0.beta1 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (698) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +16 -2
  3. data/History.txt +9 -1
  4. data/README.md +297 -113
  5. data/Rakefile +97 -17
  6. data/lib/twitter_cldr/collation/collator.rb +12 -3
  7. data/lib/twitter_cldr/collation/trie_builder.rb +1 -1
  8. data/lib/twitter_cldr/{tokenizers/calendars → data_readers}/additional_date_format_selector.rb +6 -4
  9. data/lib/twitter_cldr/data_readers/calendar_data_reader.rb +91 -0
  10. data/lib/twitter_cldr/data_readers/data_reader.rb +32 -0
  11. data/lib/twitter_cldr/data_readers/date_data_reader.rb +26 -0
  12. data/lib/twitter_cldr/data_readers/date_time_data_reader.rb +41 -0
  13. data/lib/twitter_cldr/data_readers/number_data_reader.rb +142 -0
  14. data/lib/twitter_cldr/data_readers/time_data_reader.rb +26 -0
  15. data/lib/twitter_cldr/data_readers/timespan_data_reader.rb +122 -0
  16. data/lib/twitter_cldr/data_readers.rb +17 -0
  17. data/lib/twitter_cldr/formatters/calendars/{datetime_formatter.rb → date_time_formatter.rb} +27 -42
  18. data/lib/twitter_cldr/formatters/calendars/timespan_formatter.rb +3 -64
  19. data/lib/twitter_cldr/formatters/formatter.rb +39 -0
  20. data/lib/twitter_cldr/formatters/list_formatter.rb +22 -12
  21. data/lib/twitter_cldr/formatters/numbers/abbreviated/abbreviated_number_formatter.rb +5 -26
  22. data/lib/twitter_cldr/formatters/numbers/currency_formatter.rb +2 -11
  23. data/lib/twitter_cldr/formatters/numbers/decimal_formatter.rb +4 -2
  24. data/lib/twitter_cldr/formatters/numbers/number_formatter.rb +45 -27
  25. data/lib/twitter_cldr/formatters/numbers/percent_formatter.rb +3 -13
  26. data/lib/twitter_cldr/formatters/numbers/rbnf/formatters.rb +224 -0
  27. data/lib/twitter_cldr/formatters/numbers/rbnf/post_processors/chinese.rb +122 -0
  28. data/lib/twitter_cldr/formatters/numbers/rbnf/rule.rb +93 -0
  29. data/lib/twitter_cldr/formatters/numbers/rbnf/rule_group.rb +20 -0
  30. data/lib/twitter_cldr/formatters/numbers/rbnf/rule_parser.rb +86 -0
  31. data/lib/twitter_cldr/formatters/numbers/rbnf/rule_set.rb +259 -0
  32. data/lib/twitter_cldr/formatters/numbers/rbnf/substitution.rb +30 -0
  33. data/lib/twitter_cldr/formatters/numbers/rbnf.rb +127 -0
  34. data/lib/twitter_cldr/formatters/plurals/plural_formatter.rb +18 -6
  35. data/lib/twitter_cldr/formatters.rb +4 -5
  36. data/lib/twitter_cldr/localized/localized_array.rb +1 -1
  37. data/lib/twitter_cldr/localized/localized_date.rb +6 -3
  38. data/lib/twitter_cldr/localized/localized_datetime.rb +38 -15
  39. data/lib/twitter_cldr/localized/localized_number.rb +40 -24
  40. data/lib/twitter_cldr/localized/localized_object.rb +4 -4
  41. data/lib/twitter_cldr/localized/localized_string.rb +40 -7
  42. data/lib/twitter_cldr/localized/localized_time.rb +9 -2
  43. data/lib/twitter_cldr/localized/localized_timespan.rb +50 -5
  44. data/lib/twitter_cldr/normalization.rb +8 -19
  45. data/lib/twitter_cldr/parsers/parser.rb +50 -0
  46. data/lib/twitter_cldr/parsers/segmentation_parser.rb +137 -0
  47. data/lib/twitter_cldr/parsers/symbol_table.rb +30 -0
  48. data/lib/twitter_cldr/parsers/unicode_regex/character_class.rb +91 -0
  49. data/lib/twitter_cldr/parsers/unicode_regex/character_range.rb +39 -0
  50. data/lib/twitter_cldr/parsers/unicode_regex/character_set.rb +65 -0
  51. data/lib/twitter_cldr/parsers/unicode_regex/component.rb +50 -0
  52. data/lib/twitter_cldr/parsers/unicode_regex/literal.rb +83 -0
  53. data/lib/twitter_cldr/parsers/unicode_regex/unicode_string.rb +41 -0
  54. data/lib/twitter_cldr/parsers/unicode_regex_parser.rb +262 -0
  55. data/lib/twitter_cldr/parsers.rb +5 -1
  56. data/lib/twitter_cldr/resources/casefolder.rb.erb +64 -0
  57. data/lib/twitter_cldr/resources/casefolder_class_generator.rb +75 -0
  58. data/lib/twitter_cldr/resources/download.rb +10 -4
  59. data/lib/twitter_cldr/resources/icu_based_importer.rb +18 -0
  60. data/lib/twitter_cldr/resources/locales_resources_importer.rb +24 -13
  61. data/lib/twitter_cldr/resources/normalization_quick_check_importer.rb +1 -14
  62. data/lib/twitter_cldr/resources/rbnf_test_importer.rb +107 -0
  63. data/lib/twitter_cldr/resources/readme_renderer.rb +115 -0
  64. data/lib/twitter_cldr/resources/tailoring_importer.rb +2 -8
  65. data/lib/twitter_cldr/resources/uli/segment_exceptions_importer.rb +62 -0
  66. data/lib/twitter_cldr/resources/uli.rb +12 -0
  67. data/lib/twitter_cldr/resources/unicode_data_importer.rb +84 -14
  68. data/lib/twitter_cldr/resources/unicode_importer.rb +37 -0
  69. data/lib/twitter_cldr/resources/unicode_properties_importer.rb +79 -0
  70. data/lib/twitter_cldr/resources.rb +8 -1
  71. data/lib/twitter_cldr/shared/break_iterator.rb +213 -0
  72. data/lib/twitter_cldr/shared/calendar.rb +38 -14
  73. data/lib/twitter_cldr/shared/casefolder.rb +210 -0
  74. data/lib/twitter_cldr/shared/code_point.rb +103 -16
  75. data/lib/twitter_cldr/shared/numbering_system.rb +58 -0
  76. data/lib/twitter_cldr/shared/territories.rb +43 -1
  77. data/lib/twitter_cldr/shared/unicode_regex.rb +81 -0
  78. data/lib/twitter_cldr/shared.rb +13 -9
  79. data/lib/twitter_cldr/tokenizers/calendars/date_time_tokenizer.rb +77 -0
  80. data/lib/twitter_cldr/tokenizers/calendars/date_tokenizer.rb +14 -29
  81. data/lib/twitter_cldr/tokenizers/calendars/time_tokenizer.rb +13 -28
  82. data/lib/twitter_cldr/tokenizers/calendars/timespan_tokenizer.rb +11 -87
  83. data/lib/twitter_cldr/tokenizers/numbers/number_tokenizer.rb +16 -71
  84. data/lib/twitter_cldr/tokenizers/numbers/rbnf_tokenizer.rb +53 -0
  85. data/lib/twitter_cldr/tokenizers/pattern_tokenizer.rb +42 -0
  86. data/lib/twitter_cldr/tokenizers/segmentation/segmentation_tokenizer.rb +39 -0
  87. data/lib/twitter_cldr/tokenizers/tokenizer.rb +116 -0
  88. data/lib/twitter_cldr/tokenizers/unicode_regex/unicode_regex_tokenizer.rb +52 -0
  89. data/lib/twitter_cldr/tokenizers.rb +8 -4
  90. data/lib/twitter_cldr/utils/code_points.rb +1 -1
  91. data/lib/twitter_cldr/utils/range_set.rb +242 -0
  92. data/lib/twitter_cldr/utils/yaml.rb +17 -12
  93. data/lib/twitter_cldr/utils.rb +1 -1
  94. data/lib/twitter_cldr/version.rb +1 -1
  95. data/lib/twitter_cldr.rb +2 -1
  96. data/resources/custom/locales/sv/units.yml +8 -0
  97. data/resources/locales/af/calendars.yml +278 -224
  98. data/resources/locales/af/currencies.yml +954 -916
  99. data/resources/locales/af/languages.yml +583 -580
  100. data/resources/locales/af/layout.yml +5 -5
  101. data/resources/locales/af/lists.yml +23 -7
  102. data/resources/locales/af/numbers.yml +59 -54
  103. data/resources/locales/af/plurals.yml +2 -2
  104. data/resources/locales/af/rbnf.yml +261 -0
  105. data/resources/locales/af/territories.yml +264 -263
  106. data/resources/locales/ar/calendars.yml +287 -259
  107. data/resources/locales/ar/currencies.yml +1730 -1692
  108. data/resources/locales/ar/languages.yml +583 -580
  109. data/resources/locales/ar/layout.yml +5 -5
  110. data/resources/locales/ar/lists.yml +23 -7
  111. data/resources/locales/ar/numbers.yml +66 -61
  112. data/resources/locales/ar/plurals.yml +5 -8
  113. data/resources/locales/ar/rbnf.yml +519 -0
  114. data/resources/locales/ar/territories.yml +264 -263
  115. data/resources/locales/be/calendars.yml +238 -237
  116. data/resources/locales/be/currencies.yml +954 -917
  117. data/resources/locales/be/languages.yml +583 -580
  118. data/resources/locales/be/layout.yml +5 -5
  119. data/resources/locales/be/lists.yml +23 -7
  120. data/resources/locales/be/numbers.yml +62 -57
  121. data/resources/locales/be/plurals.yml +7 -4
  122. data/resources/locales/be/rbnf.yml +1288 -0
  123. data/resources/locales/be/territories.yml +264 -263
  124. data/resources/locales/bg/calendars.yml +278 -218
  125. data/resources/locales/bg/currencies.yml +955 -917
  126. data/resources/locales/bg/languages.yml +583 -580
  127. data/resources/locales/bg/layout.yml +5 -5
  128. data/resources/locales/bg/lists.yml +23 -7
  129. data/resources/locales/bg/numbers.yml +62 -57
  130. data/resources/locales/bg/plurals.yml +2 -2
  131. data/resources/locales/bg/rbnf.yml +280 -0
  132. data/resources/locales/bg/territories.yml +264 -263
  133. data/resources/locales/bn/calendars.yml +287 -225
  134. data/resources/locales/bn/currencies.yml +953 -916
  135. data/resources/locales/bn/languages.yml +583 -580
  136. data/resources/locales/bn/layout.yml +5 -5
  137. data/resources/locales/bn/lists.yml +23 -7
  138. data/resources/locales/bn/numbers.yml +62 -57
  139. data/resources/locales/bn/plurals.yml +2 -2
  140. data/resources/locales/bn/rbnf.yml +4 -0
  141. data/resources/locales/bn/territories.yml +264 -263
  142. data/resources/locales/ca/calendars.yml +278 -278
  143. data/resources/locales/ca/currencies.yml +953 -916
  144. data/resources/locales/ca/languages.yml +583 -580
  145. data/resources/locales/ca/layout.yml +5 -5
  146. data/resources/locales/ca/lists.yml +23 -7
  147. data/resources/locales/ca/numbers.yml +62 -57
  148. data/resources/locales/ca/plurals.yml +3 -2
  149. data/resources/locales/ca/rbnf.yml +756 -0
  150. data/resources/locales/ca/territories.yml +264 -263
  151. data/resources/locales/cs/calendars.yml +269 -262
  152. data/resources/locales/cs/currencies.yml +1483 -1172
  153. data/resources/locales/cs/languages.yml +583 -580
  154. data/resources/locales/cs/layout.yml +5 -5
  155. data/resources/locales/cs/lists.yml +23 -7
  156. data/resources/locales/cs/numbers.yml +64 -58
  157. data/resources/locales/cs/plurals.yml +6 -2
  158. data/resources/locales/cs/rbnf.yml +367 -0
  159. data/resources/locales/cs/territories.yml +264 -263
  160. data/resources/locales/cy/calendars.yml +275 -274
  161. data/resources/locales/cy/currencies.yml +1585 -1548
  162. data/resources/locales/cy/languages.yml +583 -580
  163. data/resources/locales/cy/layout.yml +5 -5
  164. data/resources/locales/cy/lists.yml +23 -7
  165. data/resources/locales/cy/numbers.yml +66 -61
  166. data/resources/locales/cy/plurals.yml +4 -3
  167. data/resources/locales/cy/rbnf.yml +298 -0
  168. data/resources/locales/cy/territories.yml +264 -263
  169. data/resources/locales/da/calendars.yml +281 -280
  170. data/resources/locales/da/currencies.yml +954 -916
  171. data/resources/locales/da/languages.yml +583 -580
  172. data/resources/locales/da/layout.yml +5 -5
  173. data/resources/locales/da/lists.yml +23 -7
  174. data/resources/locales/da/numbers.yml +62 -57
  175. data/resources/locales/da/plurals.yml +3 -2
  176. data/resources/locales/da/rbnf.yml +194 -0
  177. data/resources/locales/da/territories.yml +264 -263
  178. data/resources/locales/de/calendars.yml +294 -293
  179. data/resources/locales/de/currencies.yml +954 -916
  180. data/resources/locales/de/languages.yml +583 -580
  181. data/resources/locales/de/layout.yml +5 -5
  182. data/resources/locales/de/lists.yml +23 -7
  183. data/resources/locales/de/numbers.yml +62 -57
  184. data/resources/locales/de/plurals.yml +3 -2
  185. data/resources/locales/de/rbnf.yml +346 -0
  186. data/resources/locales/de/territories.yml +264 -263
  187. data/resources/locales/el/calendars.yml +279 -282
  188. data/resources/locales/el/currencies.yml +954 -916
  189. data/resources/locales/el/languages.yml +583 -580
  190. data/resources/locales/el/layout.yml +5 -5
  191. data/resources/locales/el/lists.yml +23 -7
  192. data/resources/locales/el/numbers.yml +62 -57
  193. data/resources/locales/el/plurals.yml +2 -2
  194. data/resources/locales/el/rbnf.yml +880 -0
  195. data/resources/locales/el/territories.yml +264 -263
  196. data/resources/locales/en/calendars.yml +192 -191
  197. data/resources/locales/en/currencies.yml +953 -915
  198. data/resources/locales/en/languages.yml +583 -580
  199. data/resources/locales/en/layout.yml +5 -5
  200. data/resources/locales/en/lists.yml +23 -7
  201. data/resources/locales/en/numbers.yml +62 -57
  202. data/resources/locales/en/plurals.yml +3 -2
  203. data/resources/locales/en/rbnf.yml +542 -0
  204. data/resources/locales/en/territories.yml +264 -263
  205. data/resources/locales/en-GB/calendars.yml +195 -194
  206. data/resources/locales/en-GB/currencies.yml +953 -915
  207. data/resources/locales/en-GB/languages.yml +583 -580
  208. data/resources/locales/en-GB/layout.yml +5 -5
  209. data/resources/locales/en-GB/lists.yml +23 -7
  210. data/resources/locales/en-GB/numbers.yml +62 -57
  211. data/resources/locales/en-GB/plurals.yml +2 -1
  212. data/resources/locales/en-GB/rbnf.yml +4 -0
  213. data/resources/locales/en-GB/territories.yml +264 -263
  214. data/resources/locales/es/calendars.yml +288 -238
  215. data/resources/locales/es/currencies.yml +953 -922
  216. data/resources/locales/es/languages.yml +583 -580
  217. data/resources/locales/es/layout.yml +5 -5
  218. data/resources/locales/es/lists.yml +23 -7
  219. data/resources/locales/es/numbers.yml +62 -57
  220. data/resources/locales/es/plurals.yml +2 -2
  221. data/resources/locales/es/rbnf.yml +913 -0
  222. data/resources/locales/es/territories.yml +264 -263
  223. data/resources/locales/eu/calendars.yml +277 -218
  224. data/resources/locales/eu/currencies.yml +953 -916
  225. data/resources/locales/eu/languages.yml +583 -580
  226. data/resources/locales/eu/layout.yml +5 -5
  227. data/resources/locales/eu/lists.yml +23 -7
  228. data/resources/locales/eu/numbers.yml +56 -51
  229. data/resources/locales/eu/plurals.yml +2 -2
  230. data/resources/locales/eu/rbnf.yml +4 -0
  231. data/resources/locales/eu/territories.yml +264 -263
  232. data/resources/locales/fa/calendars.yml +294 -293
  233. data/resources/locales/fa/currencies.yml +955 -916
  234. data/resources/locales/fa/languages.yml +583 -580
  235. data/resources/locales/fa/layout.yml +5 -5
  236. data/resources/locales/fa/lists.yml +23 -7
  237. data/resources/locales/fa/numbers.yml +62 -57
  238. data/resources/locales/fa/plurals.yml +2 -2
  239. data/resources/locales/fa/rbnf.yml +157 -0
  240. data/resources/locales/fa/territories.yml +264 -263
  241. data/resources/locales/fi/calendars.yml +284 -283
  242. data/resources/locales/fi/currencies.yml +953 -915
  243. data/resources/locales/fi/languages.yml +583 -580
  244. data/resources/locales/fi/layout.yml +5 -5
  245. data/resources/locales/fi/lists.yml +23 -7
  246. data/resources/locales/fi/numbers.yml +62 -57
  247. data/resources/locales/fi/plurals.yml +3 -2
  248. data/resources/locales/fi/rbnf.yml +206 -0
  249. data/resources/locales/fi/territories.yml +264 -263
  250. data/resources/locales/fil/calendars.yml +281 -230
  251. data/resources/locales/fil/currencies.yml +953 -916
  252. data/resources/locales/fil/languages.yml +583 -580
  253. data/resources/locales/fil/layout.yml +5 -5
  254. data/resources/locales/fil/lists.yml +23 -7
  255. data/resources/locales/fil/numbers.yml +62 -57
  256. data/resources/locales/fil/plurals.yml +3 -2
  257. data/resources/locales/fil/rbnf.yml +158 -0
  258. data/resources/locales/fil/territories.yml +264 -263
  259. data/resources/locales/fr/calendars.yml +297 -296
  260. data/resources/locales/fr/currencies.yml +968 -949
  261. data/resources/locales/fr/languages.yml +583 -580
  262. data/resources/locales/fr/layout.yml +5 -5
  263. data/resources/locales/fr/lists.yml +23 -7
  264. data/resources/locales/fr/numbers.yml +62 -57
  265. data/resources/locales/fr/plurals.yml +2 -2
  266. data/resources/locales/fr/rbnf.yml +621 -0
  267. data/resources/locales/fr/territories.yml +264 -263
  268. data/resources/locales/ga/calendars.yml +192 -191
  269. data/resources/locales/ga/currencies.yml +954 -916
  270. data/resources/locales/ga/languages.yml +583 -580
  271. data/resources/locales/ga/layout.yml +5 -5
  272. data/resources/locales/ga/lists.yml +23 -7
  273. data/resources/locales/ga/numbers.yml +62 -57
  274. data/resources/locales/ga/plurals.yml +4 -3
  275. data/resources/locales/ga/rbnf.yml +615 -0
  276. data/resources/locales/ga/territories.yml +264 -263
  277. data/resources/locales/gl/calendars.yml +283 -217
  278. data/resources/locales/gl/currencies.yml +953 -916
  279. data/resources/locales/gl/languages.yml +583 -580
  280. data/resources/locales/gl/layout.yml +5 -5
  281. data/resources/locales/gl/lists.yml +23 -7
  282. data/resources/locales/gl/numbers.yml +62 -57
  283. data/resources/locales/gl/plurals.yml +3 -2
  284. data/resources/locales/gl/rbnf.yml +4 -0
  285. data/resources/locales/gl/territories.yml +264 -263
  286. data/resources/locales/he/calendars.yml +248 -220
  287. data/resources/locales/he/currencies.yml +992 -932
  288. data/resources/locales/he/languages.yml +583 -580
  289. data/resources/locales/he/layout.yml +5 -5
  290. data/resources/locales/he/lists.yml +23 -7
  291. data/resources/locales/he/numbers.yml +64 -59
  292. data/resources/locales/he/plurals.yml +6 -3
  293. data/resources/locales/he/rbnf.yml +1029 -0
  294. data/resources/locales/he/territories.yml +264 -263
  295. data/resources/locales/hi/calendars.yml +284 -216
  296. data/resources/locales/hi/currencies.yml +953 -915
  297. data/resources/locales/hi/languages.yml +583 -580
  298. data/resources/locales/hi/layout.yml +5 -5
  299. data/resources/locales/hi/lists.yml +23 -7
  300. data/resources/locales/hi/numbers.yml +60 -55
  301. data/resources/locales/hi/plurals.yml +2 -2
  302. data/resources/locales/hi/rbnf.yml +430 -0
  303. data/resources/locales/hi/territories.yml +264 -263
  304. data/resources/locales/hr/calendars.yml +308 -307
  305. data/resources/locales/hr/currencies.yml +1248 -1504
  306. data/resources/locales/hr/languages.yml +583 -580
  307. data/resources/locales/hr/layout.yml +5 -5
  308. data/resources/locales/hr/lists.yml +23 -7
  309. data/resources/locales/hr/numbers.yml +63 -59
  310. data/resources/locales/hr/plurals.yml +12 -4
  311. data/resources/locales/hr/rbnf.yml +599 -0
  312. data/resources/locales/hr/territories.yml +264 -263
  313. data/resources/locales/hu/calendars.yml +285 -284
  314. data/resources/locales/hu/currencies.yml +954 -916
  315. data/resources/locales/hu/languages.yml +583 -580
  316. data/resources/locales/hu/layout.yml +5 -5
  317. data/resources/locales/hu/lists.yml +23 -7
  318. data/resources/locales/hu/numbers.yml +62 -57
  319. data/resources/locales/hu/plurals.yml +2 -2
  320. data/resources/locales/hu/rbnf.yml +363 -0
  321. data/resources/locales/hu/territories.yml +264 -263
  322. data/resources/locales/id/calendars.yml +276 -275
  323. data/resources/locales/id/currencies.yml +954 -916
  324. data/resources/locales/id/languages.yml +583 -580
  325. data/resources/locales/id/layout.yml +5 -5
  326. data/resources/locales/id/lists.yml +23 -7
  327. data/resources/locales/id/numbers.yml +61 -56
  328. data/resources/locales/id/plurals.yml +2 -2
  329. data/resources/locales/id/rbnf.yml +121 -0
  330. data/resources/locales/id/territories.yml +264 -263
  331. data/resources/locales/is/calendars.yml +281 -242
  332. data/resources/locales/is/currencies.yml +954 -916
  333. data/resources/locales/is/languages.yml +583 -580
  334. data/resources/locales/is/layout.yml +5 -5
  335. data/resources/locales/is/lists.yml +23 -7
  336. data/resources/locales/is/numbers.yml +62 -57
  337. data/resources/locales/is/plurals.yml +5 -2
  338. data/resources/locales/is/rbnf.yml +326 -0
  339. data/resources/locales/is/territories.yml +264 -263
  340. data/resources/locales/it/calendars.yml +275 -260
  341. data/resources/locales/it/currencies.yml +953 -920
  342. data/resources/locales/it/languages.yml +583 -580
  343. data/resources/locales/it/layout.yml +5 -5
  344. data/resources/locales/it/lists.yml +23 -7
  345. data/resources/locales/it/numbers.yml +59 -54
  346. data/resources/locales/it/plurals.yml +3 -2
  347. data/resources/locales/it/rbnf.yml +1189 -0
  348. data/resources/locales/it/territories.yml +264 -263
  349. data/resources/locales/ja/calendars.yml +269 -207
  350. data/resources/locales/ja/currencies.yml +953 -915
  351. data/resources/locales/ja/languages.yml +583 -580
  352. data/resources/locales/ja/layout.yml +5 -5
  353. data/resources/locales/ja/lists.yml +23 -7
  354. data/resources/locales/ja/numbers.yml +62 -57
  355. data/resources/locales/ja/plurals.yml +2 -2
  356. data/resources/locales/ja/rbnf.yml +209 -0
  357. data/resources/locales/ja/territories.yml +264 -263
  358. data/resources/locales/ko/calendars.yml +246 -213
  359. data/resources/locales/ko/currencies.yml +953 -915
  360. data/resources/locales/ko/languages.yml +583 -580
  361. data/resources/locales/ko/layout.yml +5 -5
  362. data/resources/locales/ko/lists.yml +23 -7
  363. data/resources/locales/ko/numbers.yml +60 -55
  364. data/resources/locales/ko/plurals.yml +2 -2
  365. data/resources/locales/ko/rbnf.yml +722 -0
  366. data/resources/locales/ko/territories.yml +264 -263
  367. data/resources/locales/lv/calendars.yml +286 -285
  368. data/resources/locales/lv/currencies.yml +1122 -1084
  369. data/resources/locales/lv/languages.yml +583 -580
  370. data/resources/locales/lv/layout.yml +5 -5
  371. data/resources/locales/lv/lists.yml +23 -7
  372. data/resources/locales/lv/numbers.yml +63 -58
  373. data/resources/locales/lv/plurals.yml +11 -3
  374. data/resources/locales/lv/rbnf.yml +238 -0
  375. data/resources/locales/lv/territories.yml +264 -263
  376. data/resources/locales/ms/calendars.yml +280 -279
  377. data/resources/locales/ms/currencies.yml +954 -916
  378. data/resources/locales/ms/languages.yml +583 -580
  379. data/resources/locales/ms/layout.yml +5 -5
  380. data/resources/locales/ms/lists.yml +23 -7
  381. data/resources/locales/ms/numbers.yml +62 -57
  382. data/resources/locales/ms/plurals.yml +2 -2
  383. data/resources/locales/ms/rbnf.yml +130 -0
  384. data/resources/locales/ms/territories.yml +264 -263
  385. data/resources/locales/nb/calendars.yml +284 -283
  386. data/resources/locales/nb/currencies.yml +958 -916
  387. data/resources/locales/nb/languages.yml +583 -580
  388. data/resources/locales/nb/layout.yml +5 -5
  389. data/resources/locales/nb/lists.yml +23 -7
  390. data/resources/locales/nb/numbers.yml +62 -57
  391. data/resources/locales/nb/plurals.yml +2 -2
  392. data/resources/locales/nb/rbnf.yml +191 -0
  393. data/resources/locales/nb/territories.yml +264 -263
  394. data/resources/locales/nl/calendars.yml +285 -284
  395. data/resources/locales/nl/currencies.yml +953 -917
  396. data/resources/locales/nl/languages.yml +583 -580
  397. data/resources/locales/nl/layout.yml +5 -5
  398. data/resources/locales/nl/lists.yml +23 -7
  399. data/resources/locales/nl/numbers.yml +62 -57
  400. data/resources/locales/nl/plurals.yml +3 -2
  401. data/resources/locales/nl/rbnf.yml +320 -0
  402. data/resources/locales/nl/territories.yml +264 -263
  403. data/resources/locales/pl/calendars.yml +288 -287
  404. data/resources/locales/pl/currencies.yml +1326 -1284
  405. data/resources/locales/pl/languages.yml +583 -580
  406. data/resources/locales/pl/layout.yml +5 -5
  407. data/resources/locales/pl/lists.yml +23 -7
  408. data/resources/locales/pl/numbers.yml +64 -59
  409. data/resources/locales/pl/plurals.yml +11 -4
  410. data/resources/locales/pl/rbnf.yml +410 -0
  411. data/resources/locales/pl/territories.yml +264 -263
  412. data/resources/locales/pt/calendars.yml +290 -289
  413. data/resources/locales/pt/currencies.yml +954 -916
  414. data/resources/locales/pt/languages.yml +583 -580
  415. data/resources/locales/pt/layout.yml +5 -5
  416. data/resources/locales/pt/lists.yml +23 -7
  417. data/resources/locales/pt/numbers.yml +62 -57
  418. data/resources/locales/pt/plurals.yml +4 -2
  419. data/resources/locales/pt/rbnf.yml +586 -0
  420. data/resources/locales/pt/territories.yml +264 -263
  421. data/resources/locales/ro/calendars.yml +284 -283
  422. data/resources/locales/ro/currencies.yml +1170 -1132
  423. data/resources/locales/ro/languages.yml +583 -580
  424. data/resources/locales/ro/layout.yml +5 -5
  425. data/resources/locales/ro/lists.yml +23 -7
  426. data/resources/locales/ro/numbers.yml +63 -58
  427. data/resources/locales/ro/plurals.yml +5 -2
  428. data/resources/locales/ro/rbnf.yml +250 -0
  429. data/resources/locales/ro/territories.yml +264 -263
  430. data/resources/locales/ru/calendars.yml +282 -281
  431. data/resources/locales/ru/currencies.yml +1118 -1247
  432. data/resources/locales/ru/languages.yml +583 -580
  433. data/resources/locales/ru/layout.yml +5 -5
  434. data/resources/locales/ru/lists.yml +23 -7
  435. data/resources/locales/ru/numbers.yml +63 -59
  436. data/resources/locales/ru/plurals.yml +8 -4
  437. data/resources/locales/ru/rbnf.yml +385 -0
  438. data/resources/locales/ru/territories.yml +264 -263
  439. data/resources/locales/sk/calendars.yml +254 -251
  440. data/resources/locales/sk/currencies.yml +1174 -1008
  441. data/resources/locales/sk/languages.yml +583 -580
  442. data/resources/locales/sk/layout.yml +5 -5
  443. data/resources/locales/sk/lists.yml +23 -7
  444. data/resources/locales/sk/numbers.yml +64 -58
  445. data/resources/locales/sk/plurals.yml +6 -2
  446. data/resources/locales/sk/rbnf.yml +304 -0
  447. data/resources/locales/sk/territories.yml +264 -263
  448. data/resources/locales/sq/calendars.yml +283 -206
  449. data/resources/locales/sq/currencies.yml +954 -916
  450. data/resources/locales/sq/languages.yml +583 -580
  451. data/resources/locales/sq/layout.yml +5 -5
  452. data/resources/locales/sq/lists.yml +23 -7
  453. data/resources/locales/sq/numbers.yml +62 -57
  454. data/resources/locales/sq/plurals.yml +2 -2
  455. data/resources/locales/sq/rbnf.yml +181 -0
  456. data/resources/locales/sq/territories.yml +264 -263
  457. data/resources/locales/sr/calendars.yml +290 -289
  458. data/resources/locales/sr/currencies.yml +1251 -1508
  459. data/resources/locales/sr/languages.yml +583 -580
  460. data/resources/locales/sr/layout.yml +5 -5
  461. data/resources/locales/sr/lists.yml +23 -7
  462. data/resources/locales/sr/numbers.yml +62 -58
  463. data/resources/locales/sr/plurals.yml +12 -4
  464. data/resources/locales/sr/rbnf.yml +429 -0
  465. data/resources/locales/sr/territories.yml +264 -263
  466. data/resources/locales/sv/calendars.yml +290 -289
  467. data/resources/locales/sv/currencies.yml +960 -930
  468. data/resources/locales/sv/languages.yml +583 -580
  469. data/resources/locales/sv/layout.yml +5 -5
  470. data/resources/locales/sv/lists.yml +23 -7
  471. data/resources/locales/sv/numbers.yml +63 -58
  472. data/resources/locales/sv/plurals.yml +3 -2
  473. data/resources/locales/sv/rbnf.yml +692 -0
  474. data/resources/locales/sv/territories.yml +264 -263
  475. data/resources/locales/ta/calendars.yml +281 -266
  476. data/resources/locales/ta/currencies.yml +953 -915
  477. data/resources/locales/ta/languages.yml +583 -580
  478. data/resources/locales/ta/layout.yml +5 -5
  479. data/resources/locales/ta/lists.yml +23 -7
  480. data/resources/locales/ta/numbers.yml +62 -57
  481. data/resources/locales/ta/plurals.yml +2 -2
  482. data/resources/locales/ta/rbnf.yml +241 -0
  483. data/resources/locales/ta/territories.yml +264 -263
  484. data/resources/locales/th/calendars.yml +278 -289
  485. data/resources/locales/th/currencies.yml +953 -915
  486. data/resources/locales/th/languages.yml +583 -580
  487. data/resources/locales/th/layout.yml +5 -5
  488. data/resources/locales/th/lists.yml +23 -7
  489. data/resources/locales/th/numbers.yml +62 -57
  490. data/resources/locales/th/plurals.yml +2 -2
  491. data/resources/locales/th/rbnf.yml +119 -0
  492. data/resources/locales/th/territories.yml +264 -263
  493. data/resources/locales/tr/calendars.yml +287 -286
  494. data/resources/locales/tr/currencies.yml +953 -916
  495. data/resources/locales/tr/languages.yml +583 -580
  496. data/resources/locales/tr/layout.yml +5 -5
  497. data/resources/locales/tr/lists.yml +23 -7
  498. data/resources/locales/tr/numbers.yml +61 -56
  499. data/resources/locales/tr/plurals.yml +2 -2
  500. data/resources/locales/tr/rbnf.yml +277 -0
  501. data/resources/locales/tr/territories.yml +264 -263
  502. data/resources/locales/uk/calendars.yml +286 -252
  503. data/resources/locales/uk/currencies.yml +1311 -1070
  504. data/resources/locales/uk/languages.yml +583 -580
  505. data/resources/locales/uk/layout.yml +5 -5
  506. data/resources/locales/uk/lists.yml +23 -7
  507. data/resources/locales/uk/numbers.yml +64 -59
  508. data/resources/locales/uk/plurals.yml +10 -4
  509. data/resources/locales/uk/rbnf.yml +430 -0
  510. data/resources/locales/uk/territories.yml +264 -263
  511. data/resources/locales/ur/calendars.yml +267 -228
  512. data/resources/locales/ur/currencies.yml +954 -916
  513. data/resources/locales/ur/languages.yml +583 -580
  514. data/resources/locales/ur/layout.yml +5 -5
  515. data/resources/locales/ur/lists.yml +23 -7
  516. data/resources/locales/ur/numbers.yml +62 -57
  517. data/resources/locales/ur/plurals.yml +3 -2
  518. data/resources/locales/ur/rbnf.yml +4 -0
  519. data/resources/locales/ur/territories.yml +264 -263
  520. data/resources/locales/vi/calendars.yml +256 -236
  521. data/resources/locales/vi/currencies.yml +953 -915
  522. data/resources/locales/vi/languages.yml +583 -580
  523. data/resources/locales/vi/layout.yml +5 -5
  524. data/resources/locales/vi/lists.yml +23 -7
  525. data/resources/locales/vi/numbers.yml +62 -57
  526. data/resources/locales/vi/plurals.yml +2 -2
  527. data/resources/locales/vi/rbnf.yml +164 -0
  528. data/resources/locales/vi/territories.yml +264 -263
  529. data/resources/locales/zh/calendars.yml +266 -265
  530. data/resources/locales/zh/currencies.yml +953 -915
  531. data/resources/locales/zh/languages.yml +583 -580
  532. data/resources/locales/zh/layout.yml +5 -5
  533. data/resources/locales/zh/lists.yml +23 -7
  534. data/resources/locales/zh/numbers.yml +62 -57
  535. data/resources/locales/zh/plurals.yml +2 -2
  536. data/resources/locales/zh/rbnf.yml +689 -0
  537. data/resources/locales/zh/territories.yml +264 -263
  538. data/resources/locales/zh-Hant/calendars.yml +266 -265
  539. data/resources/locales/zh-Hant/currencies.yml +955 -915
  540. data/resources/locales/zh-Hant/languages.yml +583 -580
  541. data/resources/locales/zh-Hant/layout.yml +5 -5
  542. data/resources/locales/zh-Hant/lists.yml +23 -7
  543. data/resources/locales/zh-Hant/numbers.yml +62 -57
  544. data/resources/locales/zh-Hant/plurals.yml +2 -2
  545. data/resources/locales/zh-Hant/rbnf.yml +647 -0
  546. data/resources/locales/zh-Hant/territories.yml +264 -263
  547. data/resources/shared/currency_digits_and_rounding.yml +67 -64
  548. data/resources/shared/numbering_systems.yml +176 -0
  549. data/resources/shared/rbnf_root.yml +1573 -0
  550. data/resources/shared/segments/segments_root.yml +728 -0
  551. data/resources/shared/segments/tailorings/en.yml +8 -0
  552. data/resources/uli/segments/de.yml +128 -0
  553. data/resources/uli/segments/en.yml +154 -0
  554. data/resources/uli/segments/es.yml +112 -0
  555. data/resources/uli/segments/fr.yml +47 -0
  556. data/resources/uli/segments/it.yml +37 -0
  557. data/resources/uli/segments/pt.yml +173 -0
  558. data/resources/uli/segments/ru.yml +10 -0
  559. data/resources/unicode_data/casefolding.yml +4765 -0
  560. data/resources/unicode_data/indices/bidi_class.yml +4572 -0
  561. data/resources/unicode_data/indices/bidi_mirrored.yml +3087 -0
  562. data/resources/unicode_data/indices/category.yml +10918 -0
  563. data/resources/unicode_data/indices/keys.yml +101 -0
  564. data/resources/unicode_data/properties/line_break.yml +9269 -0
  565. data/resources/unicode_data/properties/sentence_break.yml +8067 -0
  566. data/resources/unicode_data/properties/word_break.yml +3001 -0
  567. data/spec/collation/collation_spec.rb +2 -1
  568. data/spec/collation/collator_spec.rb +4 -3
  569. data/spec/collation/tailoring_spec.rb +2 -2
  570. data/spec/collation/tailoring_tests/he.txt +5 -2
  571. data/spec/{tokenizers/calendars → data_readers}/additional_date_format_selector_spec.rb +13 -13
  572. data/spec/data_readers/date_time_data_reader_spec.rb +26 -0
  573. data/spec/data_readers/number_data_reader_spec.rb +18 -0
  574. data/spec/data_readers/timespan_data_reader.rb +22 -0
  575. data/spec/formatters/calendars/datetime_formatter_spec.rb +18 -22
  576. data/spec/formatters/list_formatter_spec.rb +16 -87
  577. data/spec/formatters/numbers/abbreviated/abbreviated_number_formatter_spec.rb +15 -59
  578. data/spec/formatters/numbers/abbreviated/long_decimal_formatter_spec.rb +32 -17
  579. data/spec/formatters/numbers/abbreviated/short_decimal_formatter_spec.rb +33 -17
  580. data/spec/formatters/numbers/currency_formatter_spec.rb +18 -13
  581. data/spec/formatters/numbers/decimal_formatter_spec.rb +16 -18
  582. data/spec/formatters/numbers/number_formatter_spec.rb +40 -31
  583. data/spec/formatters/numbers/percent_formatter_spec.rb +14 -6
  584. data/spec/formatters/numbers/rbnf/allowed_failures.yml +74 -0
  585. data/spec/formatters/numbers/rbnf/locales/af/rbnf_test.yml +706 -0
  586. data/spec/formatters/numbers/rbnf/locales/ar/rbnf_test.yml +706 -0
  587. data/spec/formatters/numbers/rbnf/locales/be/rbnf_test.yml +1174 -0
  588. data/spec/formatters/numbers/rbnf/locales/bg/rbnf_test.yml +706 -0
  589. data/spec/formatters/numbers/rbnf/locales/bn/rbnf_test.yml +1291 -0
  590. data/spec/formatters/numbers/rbnf/locales/ca/rbnf_test.yml +1174 -0
  591. data/spec/formatters/numbers/rbnf/locales/cs/rbnf_test.yml +823 -0
  592. data/spec/formatters/numbers/rbnf/locales/cy/rbnf_test.yml +940 -0
  593. data/spec/formatters/numbers/rbnf/locales/da/rbnf_test.yml +940 -0
  594. data/spec/formatters/numbers/rbnf/locales/de/rbnf_test.yml +940 -0
  595. data/spec/formatters/numbers/rbnf/locales/el/rbnf_test.yml +1174 -0
  596. data/spec/formatters/numbers/rbnf/locales/en/rbnf_test.yml +1291 -0
  597. data/spec/formatters/numbers/rbnf/locales/en-GB/rbnf_test.yml +1291 -0
  598. data/spec/formatters/numbers/rbnf/locales/es/rbnf_test.yml +1642 -0
  599. data/spec/formatters/numbers/rbnf/locales/eu/rbnf_test.yml +1291 -0
  600. data/spec/formatters/numbers/rbnf/locales/fa/rbnf_test.yml +589 -0
  601. data/spec/formatters/numbers/rbnf/locales/fi/rbnf_test.yml +706 -0
  602. data/spec/formatters/numbers/rbnf/locales/fil/rbnf_test.yml +706 -0
  603. data/spec/formatters/numbers/rbnf/locales/fr/rbnf_test.yml +1408 -0
  604. data/spec/formatters/numbers/rbnf/locales/ga/rbnf_test.yml +940 -0
  605. data/spec/formatters/numbers/rbnf/locales/gl/rbnf_test.yml +1291 -0
  606. data/spec/formatters/numbers/rbnf/locales/he/rbnf_test.yml +1057 -0
  607. data/spec/formatters/numbers/rbnf/locales/hi/rbnf_test.yml +823 -0
  608. data/spec/formatters/numbers/rbnf/locales/hr/rbnf_test.yml +1174 -0
  609. data/spec/formatters/numbers/rbnf/locales/hu/rbnf_test.yml +940 -0
  610. data/spec/formatters/numbers/rbnf/locales/id/rbnf_test.yml +706 -0
  611. data/spec/formatters/numbers/rbnf/locales/is/rbnf_test.yml +823 -0
  612. data/spec/formatters/numbers/rbnf/locales/it/rbnf_test.yml +1174 -0
  613. data/spec/formatters/numbers/rbnf/locales/ja/rbnf_test.yml +823 -0
  614. data/spec/formatters/numbers/rbnf/locales/ko/rbnf_test.yml +1408 -0
  615. data/spec/formatters/numbers/rbnf/locales/lv/rbnf_test.yml +706 -0
  616. data/spec/formatters/numbers/rbnf/locales/ms/rbnf_test.yml +706 -0
  617. data/spec/formatters/numbers/rbnf/locales/nb/rbnf_test.yml +940 -0
  618. data/spec/formatters/numbers/rbnf/locales/nl/rbnf_test.yml +706 -0
  619. data/spec/formatters/numbers/rbnf/locales/pl/rbnf_test.yml +823 -0
  620. data/spec/formatters/numbers/rbnf/locales/pt/rbnf_test.yml +1174 -0
  621. data/spec/formatters/numbers/rbnf/locales/ro/rbnf_test.yml +823 -0
  622. data/spec/formatters/numbers/rbnf/locales/ru/rbnf_test.yml +823 -0
  623. data/spec/formatters/numbers/rbnf/locales/sk/rbnf_test.yml +823 -0
  624. data/spec/formatters/numbers/rbnf/locales/sq/rbnf_test.yml +706 -0
  625. data/spec/formatters/numbers/rbnf/locales/sr/rbnf_test.yml +940 -0
  626. data/spec/formatters/numbers/rbnf/locales/sv/rbnf_test.yml +1876 -0
  627. data/spec/formatters/numbers/rbnf/locales/ta/rbnf_test.yml +706 -0
  628. data/spec/formatters/numbers/rbnf/locales/th/rbnf_test.yml +706 -0
  629. data/spec/formatters/numbers/rbnf/locales/tr/rbnf_test.yml +706 -0
  630. data/spec/formatters/numbers/rbnf/locales/uk/rbnf_test.yml +823 -0
  631. data/spec/formatters/numbers/rbnf/locales/ur/rbnf_test.yml +1291 -0
  632. data/spec/formatters/numbers/rbnf/locales/vi/rbnf_test.yml +706 -0
  633. data/spec/formatters/numbers/rbnf/locales/zh/rbnf_test.yml +940 -0
  634. data/spec/formatters/numbers/rbnf/locales/zh-Hant/rbnf_test.yml +940 -0
  635. data/spec/formatters/numbers/rbnf/rbnf_spec.rb +98 -0
  636. data/spec/formatters/plurals/plural_formatter_spec.rb +4 -4
  637. data/spec/formatters/plurals/rules_spec.rb +5 -5
  638. data/spec/localized/localized_date_spec.rb +1 -1
  639. data/spec/localized/localized_datetime_spec.rb +8 -13
  640. data/spec/localized/localized_number_spec.rb +17 -32
  641. data/spec/localized/localized_object_spec.rb +0 -5
  642. data/spec/localized/localized_string_spec.rb +40 -2
  643. data/spec/localized/localized_time_spec.rb +3 -6
  644. data/spec/localized/localized_timespan_spec.rb +144 -0
  645. data/spec/normalization_spec.rb +12 -12
  646. data/spec/parsers/number_parser_spec.rb +5 -5
  647. data/spec/parsers/parser_spec.rb +60 -0
  648. data/spec/parsers/segmentation_parser_spec.rb +96 -0
  649. data/spec/parsers/symbol_table_spec.rb +32 -0
  650. data/spec/parsers/unicode_regex/character_class_spec.rb +117 -0
  651. data/spec/parsers/unicode_regex/character_range_spec.rb +21 -0
  652. data/spec/parsers/unicode_regex/character_set_spec.rb +36 -0
  653. data/spec/parsers/unicode_regex/literal_spec.rb +34 -0
  654. data/spec/parsers/unicode_regex/unicode_string_spec.rb +22 -0
  655. data/spec/parsers/unicode_regex_parser_spec.rb +86 -0
  656. data/spec/readme_spec.rb +8 -269
  657. data/spec/shared/break_iterator_spec.rb +72 -0
  658. data/spec/shared/calendar_spec.rb +5 -4
  659. data/spec/shared/casefolder_spec.rb +30 -0
  660. data/spec/shared/casefolding.txt +251 -0
  661. data/spec/shared/casefolding_expected.txt +251 -0
  662. data/spec/shared/code_point_spec.rb +44 -14
  663. data/spec/shared/numbering_system_spec.rb +41 -0
  664. data/spec/shared/territories_spec.rb +14 -6
  665. data/spec/shared/unicode_regex_spec.rb +203 -0
  666. data/spec/spec_helper.rb +17 -0
  667. data/spec/tokenizers/calendars/date_tokenizer_spec.rb +26 -30
  668. data/spec/tokenizers/calendars/datetime_tokenizer_spec.rb +11 -90
  669. data/spec/tokenizers/calendars/time_tokenizer_spec.rb +5 -5
  670. data/spec/tokenizers/calendars/timespan_tokenizer_spec.rb +17 -7
  671. data/spec/tokenizers/numbers/number_tokenizer_spec.rb +28 -27
  672. data/spec/tokenizers/segmentation/segmentation_tokenizer_spec.rb +40 -0
  673. data/spec/tokenizers/unicode_regex/unicode_regex_tokenizer_spec.rb +190 -0
  674. data/spec/utils/range_set_spec.rb +171 -0
  675. data/spec/utils/yaml/yaml_spec.rb +62 -51
  676. data/twitter_cldr.gemspec +1 -1
  677. metadata +199 -30
  678. data/lib/twitter_cldr/formatters/base.rb +0 -47
  679. data/lib/twitter_cldr/formatters/calendars/date_formatter.rb +0 -19
  680. data/lib/twitter_cldr/formatters/calendars/time_formatter.rb +0 -19
  681. data/lib/twitter_cldr/normalization/base.rb +0 -37
  682. data/lib/twitter_cldr/normalization/hangul.rb +0 -79
  683. data/lib/twitter_cldr/normalization/nfc.rb +0 -24
  684. data/lib/twitter_cldr/normalization/nfd.rb +0 -26
  685. data/lib/twitter_cldr/normalization/nfkc.rb +0 -114
  686. data/lib/twitter_cldr/normalization/nfkd.rb +0 -120
  687. data/lib/twitter_cldr/normalization/quick_check.rb +0 -41
  688. data/lib/twitter_cldr/tokenizers/base.rb +0 -169
  689. data/lib/twitter_cldr/tokenizers/calendars/datetime_tokenizer.rb +0 -131
  690. data/lib/twitter_cldr/utils/territories.rb +0 -56
  691. data/spec/formatters/base_spec.rb +0 -18
  692. data/spec/formatters/calendars/timespan_formatter_spec.rb +0 -112
  693. data/spec/normalization/NormalizationTestShort.txt +0 -602
  694. data/spec/normalization/base_spec.rb +0 -16
  695. data/spec/normalization/hangul_spec.rb +0 -42
  696. data/spec/normalization/normalization_spec.rb +0 -113
  697. data/spec/tokenizers/base_spec.rb +0 -259
  698. data/spec/utils/territories_spec.rb +0 -16
@@ -1,916 +1,954 @@
1
- ---
2
- :de:
3
- :currencies:
4
- :ADP:
5
- :one: Andorranische Pesete
6
- :other: Andorranische Peseten
7
- :AED:
8
- :one: VAE-Dirham
9
- :other: VAE-Dirham
10
- :AFA:
11
- :one: Afghanische Afghani (1927-2002)
12
- :other: Afghanische Afghani (1927-2002)
13
- :AFN:
14
- :one: Afghanische Afghani
15
- :other: Afghanische Afghani
16
- :ALK:
17
- :one: Albanian lek (1946-1965)
18
- :other: Albanian lekë (1946-1965)
19
- :ALL:
20
- :one: Albanische Lek
21
- :other: Albanische Lek
22
- :AMD:
23
- :one: Armenische Dram
24
- :other: Armenische Dram
25
- :ANG:
26
- :one: Niederländische-Antillen-Gulden
27
- :other: Niederländische-Antillen-Gulden
28
- :AOA:
29
- :one: Angolanischer Kwanza
30
- :other: Angolanische Kwanza
31
- :AOK:
32
- :one: Angolanischer Kwanza (1977-1990)
33
- :other: Angolanische Kwanza (1977-1990)
34
- :AON:
35
- :one: Angolanischer Neuer Kwanza (1990-2000)
36
- :other: Angolanische Neue Kwanza (1990-2000)
37
- :AOR:
38
- :one: Angolanischer Kwanza Reajustado (1995-1999)
39
- :other: Angolanische Kwanza Reajustado (1995-1999)
40
- :ARA:
41
- :one: Argentinischer Austral
42
- :other: Argentinische Austral
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: Argentinischer Peso (1983-1985)
51
- :other: Argentinische Peso (1983-1985)
52
- :ARS:
53
- :one: Argentinischer Peso
54
- :other: Argentinische Pesos
55
- :ATS:
56
- :one: Österreichischer Schilling
57
- :other: Österreichische Schilling
58
- :symbol: öS
59
- :AUD:
60
- :one: Australischer Dollar
61
- :other: Australische Dollar
62
- :symbol: AU$
63
- :AWG:
64
- :one: Aruba-Florin
65
- :other: Aruba-Florin
66
- :AZM:
67
- :one: Aserbaidschan-Manat (1993-2006)
68
- :other: Aserbaidschan-Manat (1993-2006)
69
- :AZN:
70
- :one: Aserbaidschan-Manat
71
- :other: Aserbaidschan-Manat
72
- :BAD:
73
- :one: Bosnien und Herzegowina Dinar (1992-1994)
74
- :other: Bosnien und Herzegowina Dinar (1992-1994)
75
- :BAM:
76
- :one: Bosnien und Herzegowina Konvertierbare Mark
77
- :other: Bosnien und Herzegowina Konvertierbare Mark
78
- :BAN:
79
- :one: Bosnia-Herzegovina new dinar (1994-1997)
80
- :other: Bosnia-Herzegovina new dinars (1994-1997)
81
- :BBD:
82
- :one: Barbados-Dollar
83
- :other: Barbados-Dollar
84
- :BDT:
85
- :one: Bangladesch-Taka
86
- :other: Bangladesch-Taka
87
- :BEC:
88
- :one: Belgischer Franc (konvertibel)
89
- :other: Belgische Franc (konvertibel)
90
- :BEF:
91
- :one: Belgischer Franc
92
- :other: Belgische Franc
93
- :BEL:
94
- :one: Belgischer Finanz-Franc
95
- :other: Belgische Finanz-Franc
96
- :BGL:
97
- :one: Bulgarische Lew (1962-1999)
98
- :other: Bulgarische Lew (1962-1999)
99
- :BGM:
100
- :one: Bulgarian socialist lev
101
- :other: Bulgarian socialist leva
102
- :BGN:
103
- :one: Bulgarische Lew
104
- :other: Bulgarische Lew
105
- :BGO:
106
- :one: Bulgarian lev (1879-1952)
107
- :other: Bulgarian leva (1879-1952)
108
- :BHD:
109
- :one: Bahrain-Dinar
110
- :other: Bahrain-Dinar
111
- :BIF:
112
- :one: Burundi-Franc
113
- :other: Burundi-Franc
114
- :BMD:
115
- :one: Bermuda-Dollar
116
- :other: Bermuda-Dollar
117
- :BND:
118
- :one: Brunei-Dollar
119
- :other: Brunei-Dollar
120
- :BOB:
121
- :one: Bolivanischer Boliviano
122
- :other: Bolivanische Boliviano
123
- :BOL:
124
- :one: Bolivian boliviano (1863-1963)
125
- :other: Bolivian bolivianos (1863-1963)
126
- :BOP:
127
- :one: Bolivianischer Peso
128
- :other: Bolivianische Peso
129
- :BOV:
130
- :one: Boliviansiche Mvdol
131
- :other: Bolivianische Mvdol
132
- :BRB:
133
- :one: Brasilianischer Cruzeiro Novo (1967-1986)
134
- :other: Brasilianische Cruzeiro Novo (1967-1986)
135
- :BRC:
136
- :one: Brasilianischer Cruzado (1986-1989)
137
- :other: Brasilianische Cruzado (1986-1989)
138
- :BRE:
139
- :one: Brasilianischer Cruzeiro (1990-1993)
140
- :other: Brasilianische Cruzeiro (1990-1993)
141
- :BRL:
142
- :one: Brasilianischer Real
143
- :other: Brasilianische Real
144
- :symbol: R$
145
- :BRN:
146
- :one: Brasilianischer Cruzado Novo (1989-1990)
147
- :other: Brasilianische Cruzado Novo (1989-1990)
148
- :BRR:
149
- :one: Brasilianischer Cruzeiro (1993-1994)
150
- :other: Brasilianische Cruzeiro (1993-1994)
151
- :BRZ:
152
- :one: Brasilianischer Cruzeiro (1942-1967)
153
- :other: Brazilian cruzeiros (1942-1967)
154
- :BSD:
155
- :one: Bahama-Dollar
156
- :other: Bahama-Dollar
157
- :BTN:
158
- :one: Bhutan-Ngultrum
159
- :other: Bhutan-Ngultrum
160
- :BUK:
161
- :one: Birmanischer Kyat
162
- :other: Birmanische Kyat
163
- :BWP:
164
- :one: Botswanische Pula
165
- :other: Botswanische Pula
166
- :BYB:
167
- :one: Belarus-Rubel (1994-1999)
168
- :other: Belarus-Rubel (1994-1999)
169
- :BYR:
170
- :one: Belarus-Rubel
171
- :other: Belarus-Rubel
172
- :BZD:
173
- :one: Belize-Dollar
174
- :other: Belize-Dollar
175
- :CAD:
176
- :one: Kanadischer Dollar
177
- :other: Kanadische Dollar
178
- :symbol: CA$
179
- :CDF:
180
- :one: Kongo-Franc
181
- :other: Kongo-Franc
182
- :CHE:
183
- :one: WIR-Euro
184
- :other: WIR-Euro
185
- :CHF:
186
- :one: Schweizer Franken
187
- :other: Schweizer Franken
188
- :CHW:
189
- :one: WIR Franken
190
- :other: WIR Franken
191
- :CLE:
192
- :one: Chilean escudo
193
- :other: Chilean escudos
194
- :CLF:
195
- :one: Chilenische Unidades de Fomento
196
- :other: Chilenische Unidades de Fomento
197
- :CLP:
198
- :one: Chilenischer Peso
199
- :other: Chilenische Pesos
200
- :CNX:
201
- :one: Chinese People’s Bank dollar
202
- :other: Chinese People’s Bank dollars
203
- :CNY:
204
- :one: Renminbi Yuan
205
- :other: Renminbi Yuan
206
- :symbol: CN¥
207
- :COP:
208
- :one: Kolumbianischer Peso
209
- :other: Kolumbianische Pesos
210
- :COU:
211
- :one: Colombian real value unit
212
- :other: Colombian real value units
213
- :CRC:
214
- :one: Costa-Rica-Colón
215
- :other: Costa-Rica-Colón
216
- :CSD:
217
- :one: Serbischer Dinar (2002-2006)
218
- :other: Serbische Dinar (2002-2006)
219
- :CSK:
220
- :one: Tschechoslowakische Kronen
221
- :other: Tschechoslowakische Kronen
222
- :CUC:
223
- :one: Kubanischer Peso (konvertibel)
224
- :other: Kubanische Pesos (konvertibel)
225
- :CUP:
226
- :one: Kubanischer Peso
227
- :other: Kubanische Pesos
228
- :CVE:
229
- :one: Kap-Verde-Escudo
230
- :other: Kap-Verde-Escudo
231
- :CYP:
232
- :one: Zypern Pfund
233
- :other: Zypern Pfund
234
- :CZK:
235
- :one: Tschechische Krone
236
- :other: Tschechische Kronen
237
- :DDM:
238
- :one: Mark der DDR
239
- :other: Mark der DDR
240
- :DEM:
241
- :one: Deutsche Mark
242
- :other: Deutsche Mark
243
- :DJF:
244
- :one: Dschibuti-Franc
245
- :other: Dschibuti-Franc
246
- :DKK:
247
- :one: Dänische Krone
248
- :other: Dänische Kronen
249
- :DOP:
250
- :one: Dominikanischer Peso
251
- :other: Dominikanische Pesos
252
- :DZD:
253
- :one: Algerischer Dinar
254
- :other: Algerische Dinar
255
- :ECS:
256
- :one: Ecuadorianischer Sucre
257
- :other: Ecuadorianische Sucre
258
- :ECV:
259
- :one: Verrechnungseinheiten für Ecuador
260
- :other: Verrechnungseinheiten für Ecuador
261
- :EEK:
262
- :one: Estnische Krone
263
- :other: Estnische Kronen
264
- :EGP:
265
- :one: Ägyptisches Pfund
266
- :other: Ägyptische Pfund
267
- :ERN:
268
- :one: Eritreische Nakfa
269
- :other: Eritreische Nakfa
270
- :ESA:
271
- :one: Spanische Peseta (A-Konten)
272
- :other: Spanische Peseten (A-Konten)
273
- :ESB:
274
- :one: Spanische Peseta (konvertibel)
275
- :other: Spanische Peseten (konvertibel)
276
- :ESP:
277
- :one: Spanische Peseta
278
- :other: Spanische Peseten
279
- :ETB:
280
- :one: Äthiopischer Birr
281
- :other: Äthiopische Birr
282
- :EUR:
283
- :one: Euro
284
- :other: Euro
285
- :symbol:
286
- :FIM:
287
- :one: Finnische Mark
288
- :other: Finnische Mark
289
- :FJD:
290
- :one: Fidschi-Dollar
291
- :other: Fidschi-Dollar
292
- :FKP:
293
- :one: Falkland-Pfund
294
- :other: Falkland-Pfund
295
- :FRF:
296
- :one: Französischer Franc
297
- :other: Französische Franc
298
- :GBP:
299
- :one: Britisches Pfund Sterling
300
- :other: Britische Pfund Sterling
301
- :symbol: £
302
- :GEK:
303
- :one: Georgischer Kupon Larit
304
- :other: Georgische Kupon Larit
305
- :GEL:
306
- :one: Georgischer Lari
307
- :other: Georgische Lari
308
- :GHC:
309
- :one: Ghanaischer Cedi (1979-2007)
310
- :other: Ghanaische Cedi (1979-2007)
311
- :GHS:
312
- :one: Ghanaischer Cedi
313
- :other: Ghanaische Cedi
314
- :GIP:
315
- :one: Gibraltar-Pfund
316
- :other: Gibraltar Pfund
317
- :GMD:
318
- :one: Gambia-Dalasi
319
- :other: Gambia-Dalasi
320
- :GNF:
321
- :one: Guinea-Franc
322
- :other: Guinea-Franc
323
- :GNS:
324
- :one: Guineischer Syli
325
- :other: Guineische Syli
326
- :GQE:
327
- :one: Äquatorialguinea-Ekwele
328
- :other: Äquatorialguinea-Ekwele
329
- :GRD:
330
- :one: Griechische Drachme
331
- :other: Griechische Drachmen
332
- :GTQ:
333
- :one: Guatemaltekischer Quetzal
334
- :other: Guatemaltekische Quetzales
335
- :GWE:
336
- :one: Portugiesisch Guinea Escudo
337
- :other: Portugiesisch Guinea Escudo
338
- :GWP:
339
- :one: Guinea-Bissau Peso
340
- :other: Guinea-Bissau Pesos
341
- :GYD:
342
- :one: Guyana-Dollar
343
- :other: Guyana-Dollar
344
- :HKD:
345
- :one: Hongkong-Dollar
346
- :other: Hongkong-Dollar
347
- :symbol: HK$
348
- :HNL:
349
- :one: Honduras-Lempira
350
- :other: Honduras-Lempira
351
- :HRD:
352
- :one: Kroatischer Dinar
353
- :other: Kroatische Dinar
354
- :HRK:
355
- :one: Kroatischer Kuna
356
- :other: Kroatische Kuna
357
- :HTG:
358
- :one: Haitianische Gourde
359
- :other: Haitianische Gourde
360
- :HUF:
361
- :one: Ungarischer Forint
362
- :other: Ungarische Forint
363
- :IDR:
364
- :one: Indonesische Rupiah
365
- :other: Indonesische Rupiah
366
- :IEP:
367
- :one: Irisches Pfund
368
- :other: Irische Pfund
369
- :ILP:
370
- :one: Israelisches Pfund
371
- :other: Israelische Pfund
372
- :ILR:
373
- :one: Israeli sheqel (1980-1985)
374
- :other: Israeli sheqels (1980-1985)
375
- :ILS:
376
- :one: Israelischer Neuer Schekel
377
- :other: Israelische Neue Schekel
378
- :symbol:
379
- :INR:
380
- :one: Indische Rupie
381
- :other: Indische Rupien
382
- :symbol:
383
- :IQD:
384
- :one: Irakischer Dinar
385
- :other: Irakische Dinar
386
- :IRR:
387
- :one: Iranische Rial
388
- :other: Iranische Rial
389
- :ISJ:
390
- :one: Icelandic króna (1918-1981)
391
- :other: Icelandic krónur (1918-1981)
392
- :ISK:
393
- :one: Isländische Krone
394
- :other: Isländische Kronen
395
- :ITL:
396
- :one: Italienische Lira
397
- :other: Italienische Lire
398
- :JMD:
399
- :one: Jamaika-Dollar
400
- :other: Jamaika-Dollar
401
- :JOD:
402
- :one: Jordanischer Dinar
403
- :other: Jordanische Dinar
404
- :JPY:
405
- :one: Japanischer Yen
406
- :other: Japanische Yen
407
- :symbol: ¥
408
- :KES:
409
- :one: Kenia-Schilling
410
- :other: Kenia-Schilling
411
- :KGS:
412
- :one: Kirgisischer Som
413
- :other: Kirgisische Som
414
- :KHR:
415
- :one: Kambodschanischer Riel
416
- :other: Kambodschanische Riel
417
- :KMF:
418
- :one: Komoren-Franc
419
- :other: Komoren-Franc
420
- :KPW:
421
- :one: Nordkoreanischer Won
422
- :other: Nordkoreanische Won
423
- :KRH:
424
- :one: South Korean hwan (1953-1962)
425
- :other: South Korean hwan (1953-1962)
426
- :KRO:
427
- :one: South Korean won (1945-1953)
428
- :other: South Korean won (1945-1953)
429
- :KRW:
430
- :one: Südkoreanischer Won
431
- :other: Südkoreanische Won
432
- :symbol:
433
- :KWD:
434
- :one: Kuwait-Dinar
435
- :other: Kuwait-Dinar
436
- :KYD:
437
- :one: Kaiman-Dollar
438
- :other: Kaiman-Dollar
439
- :KZT:
440
- :one: Kasachischer Tenge
441
- :other: Kasachische Tenge
442
- :LAK:
443
- :one: Laotischer Kip
444
- :other: Laotische Kip
445
- :LBP:
446
- :one: Libanesisches Pfund
447
- :other: Libanesische Pfund
448
- :LKR:
449
- :one: Sri-Lanka-Rupie
450
- :other: Sri-Lanka-Rupien
451
- :LRD:
452
- :one: Liberianischer Dollar
453
- :other: Liberianische Dollar
454
- :LSL:
455
- :one: Loti
456
- :other: Loti
457
- :LTL:
458
- :one: Litauischer Litas
459
- :other: Litauische Litas
460
- :LTT:
461
- :one: Litauische Talonas
462
- :other: Litauische Talonas
463
- :LUC:
464
- :one: Luxemburgische Franc (konvertibel)
465
- :other: Luxemburgische Franc (konvertibel)
466
- :LUF:
467
- :one: Luxemburgische Franc
468
- :other: Luxemburgische Franc
469
- :LUL:
470
- :one: Luxemburgische Finanz-Franc
471
- :other: Luxemburgische Finanz-Franc
472
- :LVL:
473
- :one: Lettischer Lats
474
- :other: Lettische Lats
475
- :LVR:
476
- :one: Lettische Rubel
477
- :other: Lettische Rubel
478
- :LYD:
479
- :one: Libyscher Dinar
480
- :other: Libysche Dinar
481
- :MAD:
482
- :one: Marokkanischer Dirham
483
- :other: Marokkanische Dirham
484
- :MAF:
485
- :one: Marokkanische Franc
486
- :other: Marokkanische Franc
487
- :MCF:
488
- :one: Monegasque franc
489
- :other: Monegasque francs
490
- :MDC:
491
- :one: Moldovan cupon
492
- :other: Moldovan cupon
493
- :MDL:
494
- :one: Moldau-Leu
495
- :other: Moldau-Leu
496
- :MGA:
497
- :one: Madagaskar-Ariary
498
- :other: Madagaskar-Ariary
499
- :MGF:
500
- :one: Madagaskar-Franc
501
- :other: Madagaskar-Franc
502
- :MKD:
503
- :one: Mazedonischer Denar
504
- :other: Mazedonische Denari
505
- :MKN:
506
- :one: Macedonian denar (1992-1993)
507
- :other: Macedonian denari (1992-1993)
508
- :MLF:
509
- :one: Malische Franc
510
- :other: Malische Franc
511
- :MMK:
512
- :one: Myanmarischer Kyat
513
- :other: Myanmarische Kyat
514
- :MNT:
515
- :one: Mongolischer Tögrög
516
- :other: Mongolische Tögrög
517
- :MOP:
518
- :one: Macao-Pataca
519
- :other: Macao-Pataca
520
- :MRO:
521
- :one: Mauretanischer Ouguiya
522
- :other: Mauretanische Ouguiya
523
- :MTL:
524
- :one: Maltesische Lira
525
- :other: Maltesische Lira
526
- :MTP:
527
- :one: Maltesische Pfund
528
- :other: Maltesische Pfund
529
- :MUR:
530
- :one: Mauritius-Rupie
531
- :other: Mauritius-Rupien
532
- :MVP:
533
- :one: Maldivian rupee
534
- :other: Maldivian rupees
535
- :MVR:
536
- :one: Malediven-Rupie
537
- :other: Malediven-Rupie
538
- :MWK:
539
- :one: Malawi-Kwacha
540
- :other: Malawi-Kwacha
541
- :MXN:
542
- :one: Mexikanischer Peso
543
- :other: Mexikanische Pesos
544
- :symbol: MX$
545
- :MXP:
546
- :one: Mexikanische Silber-Peso (1861-1992)
547
- :other: Mexikanische Silber-Pesos (1861-1992)
548
- :MXV:
549
- :one: Mexicanischer Unidad de Inversion (UDI)
550
- :other: Mexikanische Unidad de Inversion (UDI)
551
- :MYR:
552
- :one: Malaysischer Ringgit
553
- :other: Malaysische Ringgit
554
- :MZE:
555
- :one: Mozambikanische Escudo
556
- :other: Mozambikanische Escudo
557
- :MZM:
558
- :one: Mosambikanischer Metical (1980-2006)
559
- :other: Mosambikanische Meticais (1980-2006)
560
- :MZN:
561
- :one: Mosambikanischer Metical
562
- :other: Mosambikanische Meticais
563
- :NAD:
564
- :one: Namibia-Dollar
565
- :other: Namibia-Dollar
566
- :NGN:
567
- :one: Nigerianischer Naira
568
- :other: Nigerianische Naira
569
- :NIC:
570
- :one: Nicaraguanischer Córdoba (1988-1991)
571
- :other: Nicaraguanische Córdoba (1988-1991)
572
- :NIO:
573
- :one: Nicaragua-Cordoba
574
- :other: Nicaragua-Cordoba
575
- :NLG:
576
- :one: Niederländischer Gulden
577
- :other: Niederländische Gulden
578
- :NOK:
579
- :one: Norwegische Krone
580
- :other: Norwegische Kronen
581
- :NPR:
582
- :one: Nepalesische Rupie
583
- :other: Nepalesische Rupien
584
- :NZD:
585
- :one: Neuseeland-Dollar
586
- :other: Neuseeland-Dollar
587
- :symbol: NZ$
588
- :OMR:
589
- :one: Omanischer Rial
590
- :other: Omanische Rials
591
- :PAB:
592
- :one: Panamaischer Balboa
593
- :other: Panamaische Balboas
594
- :PEI:
595
- :one: Peruanische Inti
596
- :other: Peruanische Inti
597
- :PEN:
598
- :one: Peruanischer Neuer Sol
599
- :other: Peruanische Neue Sol
600
- :PES:
601
- :one: Peruanischer Sol (1863-1965)
602
- :other: Peruanische Sol (1863-1965)
603
- :PGK:
604
- :one: Papua-Neuguineischer Kina
605
- :other: Papua-Neuguineische Kina
606
- :PHP:
607
- :one: Philippinischer Peso
608
- :other: Philippinische Pesos
609
- :PKR:
610
- :one: Pakistanische Rupie
611
- :other: Pakistanische Rupien
612
- :PLN:
613
- :one: Polnischer Złoty
614
- :other: Polnische Złoty
615
- :PLZ:
616
- :one: Polnischer Zloty (1950-1995)
617
- :other: Polnische Zloty (1950-1995)
618
- :PTE:
619
- :one: Portugiesische Escudo
620
- :other: Portugiesische Escudo
621
- :PYG:
622
- :one: Paraguayischer Guaraní
623
- :other: Paraguayische Guaraníes
624
- :QAR:
625
- :one: Katar-Riyal
626
- :other: Katar-Riyal
627
- :RHD:
628
- :one: Rhodesische Dollar
629
- :other: Rhodesische Dollar
630
- :ROL:
631
- :one: Rumänischer Leu (1952-2006)
632
- :other: Rumänische Leu (1952-2006)
633
- :RON:
634
- :one: Rumänischer Leu
635
- :other: Rumänische Leu
636
- :RSD:
637
- :one: Serbischer Dinar
638
- :other: Serbische Dinaren
639
- :RUB:
640
- :one: Russischer Rubel
641
- :other: Russische Rubel
642
- :RUR:
643
- :one: Russischer Rubel (1991-1998)
644
- :other: Russische Rubel (1991-1998)
645
- :RWF:
646
- :one: Ruanda-Franc
647
- :other: Ruanda-Franc
648
- :SAR:
649
- :one: Saudi-Rial
650
- :other: Saudi-Rial
651
- :SBD:
652
- :one: Salomonen-Dollar
653
- :other: Salomonen-Dollar
654
- :SCR:
655
- :one: Seychellen-Rupie
656
- :other: Seychellen-Rupien
657
- :SDD:
658
- :one: Sudanesischer Dinar (1992-2007)
659
- :other: Sudanesische Dinar (1992-2007)
660
- :SDG:
661
- :one: Sudanesisches Pfund
662
- :other: Sudanesische Pfund
663
- :SDP:
664
- :one: Sudanesisches Pfund (1957-1998)
665
- :other: Sudanesische Pfund (1957-1998)
666
- :SEK:
667
- :one: Schwedische Krone
668
- :other: Schwedische Kronen
669
- :SGD:
670
- :one: Singapur-Dollar
671
- :other: Singapur-Dollar
672
- :SHP:
673
- :one: St. Helena-Pfund
674
- :other: St. Helena-Pfund
675
- :SIT:
676
- :one: Slowenischer Tolar
677
- :other: Slowenische Tolar
678
- :SKK:
679
- :one: Slowakische Kronen
680
- :other: Slowakische Kronen
681
- :SLL:
682
- :one: Sierra-leonischer Leone
683
- :other: Sierra-leonische Leones
684
- :SOS:
685
- :one: Somalia-Schilling
686
- :other: Somalia-Schilling
687
- :SRD:
688
- :one: Surinamischer Dollar
689
- :other: Surinamische Dollar
690
- :SRG:
691
- :one: Suriname-Gulden
692
- :other: Suriname-Gulden
693
- :SSP:
694
- :one: Südsudanesisches Pfund
695
- :other: Südsudanesische Pfund
696
- :STD:
697
- :one: São-toméischer Dobra
698
- :other: São-toméische Dobra
699
- :SUR:
700
- :one: Sowjetische Rubel
701
- :other: Sowjetische Rubel
702
- :SVC:
703
- :one: El Salvador-Colon
704
- :other: El Salvador-Colon
705
- :SYP:
706
- :one: Syrisches Pfund
707
- :other: Syrische Pfund
708
- :SZL:
709
- :one: Swasiländischer Lilangeni
710
- :other: Swasiländische Emalangeni
711
- :THB:
712
- :one: Thailändischer Baht
713
- :other: Thailändische Baht
714
- :symbol: ฿
715
- :TJR:
716
- :one: Tadschikistan-Rubel
717
- :other: Tadschikistan-Rubel
718
- :TJS:
719
- :one: Tadschikistan-Somoni
720
- :other: Tadschikistan-Somoni
721
- :TMM:
722
- :one: Turkmenistan-Manat (1993-2009)
723
- :other: Turkmenistan-Manat (1993-2009)
724
- :TMT:
725
- :one: Turkmenistan-Manat
726
- :other: Turkmenistan-Manat
727
- :TND:
728
- :one: Tunesischer Dinar
729
- :other: Tunesische Dinar
730
- :TOP:
731
- :one: Tongaischer Paʻanga
732
- :other: Tongaische Paʻanga
733
- :TPE:
734
- :one: Timor-Escudo
735
- :other: Timor-Escudo
736
- :TRL:
737
- :one: Türkische Lira (1922-2005)
738
- :other: Türkische Lira (1922-2005)
739
- :TRY:
740
- :one: Türkische Lira
741
- :other: Türkische Lira
742
- :TTD:
743
- :one: Trinidad und Tobago-Dollar
744
- :other: Trinidad und Tobago-Dollar
745
- :TWD:
746
- :one: Neuer Taiwan-Dollar
747
- :other: Neue Taiwan-Dollar
748
- :symbol: NT$
749
- :TZS:
750
- :one: Tansania-Schilling
751
- :other: Tansania-Schilling
752
- :UAH:
753
- :one: Ukrainische Hrywnja
754
- :other: Ukrainische Hrywen
755
- :UAK:
756
- :one: Ukrainische Karbovanetz
757
- :other: Ukrainische Karbovanetz
758
- :UGS:
759
- :one: Uganda-Schilling (1966-1987)
760
- :other: Uganda-Schilling (1966-1987)
761
- :UGX:
762
- :one: Uganda-Schilling
763
- :other: Uganda-Schilling
764
- :USD:
765
- :one: US-Dollar
766
- :other: US-Dollar
767
- :symbol: $
768
- :USN:
769
- :one: US-Dollar (Nächster Tag)
770
- :other: US-Dollar (Nächster Tag)
771
- :USS:
772
- :one: US-Dollar (Gleicher Tag)
773
- :other: US-Dollar (Gleicher Tag)
774
- :UYI:
775
- :one: Uruguayan peso (indexed units)
776
- :other: Uruguayan pesos (indexed units)
777
- :UYP:
778
- :one: Uruguayischer Peso (1975-1993)
779
- :other: Uruguayische Pesos (1975-1993)
780
- :UYU:
781
- :one: Uruguayischer Peso
782
- :other: Uruguayische Pesos
783
- :UZS:
784
- :one: Usbekistan-Sum
785
- :other: Usbekistan-Sum
786
- :VEB:
787
- :one: Venezolanischer Bolívar (1871-2008)
788
- :other: Venezolanische Bolívares (1871-2008)
789
- :VEF:
790
- :one: Venezolanischer Bolívar
791
- :other: Venezolanische Bolívares
792
- :VND:
793
- :one: Vietnamesischer Dong
794
- :other: Vietnamesische Dong
795
- :symbol:
796
- :VNN:
797
- :one: Vietnamese dong (1978-1985)
798
- :other: Vietnamese dong (1978-1985)
799
- :VUV:
800
- :one: Vanuatu-Vatu
801
- :other: Vanuatu-Vatu
802
- :WST:
803
- :one: Samoanischer Tala
804
- :other: Samoanische Tala
805
- :XAF:
806
- :one: CFA-Franc (BEAC)
807
- :other: CFA-Franc (BEAC)
808
- :symbol: FCFA
809
- :XAG:
810
- :one: Unze Silber
811
- :other: Unzen Silber
812
- :XAU:
813
- :one: Unze Gold
814
- :other: Unzen Gold
815
- :XBA:
816
- :one: Europäische Rechnungseinheiten
817
- :other: Europäische Rechnungseinheiten
818
- :XBB:
819
- :one: Europäische Währungseinheiten (XBB)
820
- :other: Europäische Währungseinheiten (XBB)
821
- :XBC:
822
- :one: Europäische Rechnungseinheiten (XBC)
823
- :other: Europäische Rechnungseinheiten (XBC)
824
- :XBD:
825
- :one: Europäische Rechnungseinheiten (XBD)
826
- :other: Europäische Rechnungseinheiten (XBD)
827
- :XCD:
828
- :one: Ostkaribischer Dollar
829
- :other: Ostkaribische Dollar
830
- :symbol: EC$
831
- :XDR:
832
- :one: Sonderziehungsrechte
833
- :other: Sonderziehungsrechte
834
- :XEU:
835
- :one: Europäische Währungseinheiten (XEU)
836
- :other: Europäische Währungseinheiten (XEU)
837
- :XFO:
838
- :one: Französische Gold-Franc
839
- :other: Französische Gold-Franc
840
- :XFU:
841
- :one: Französische UIC-Franc
842
- :other: Französische UIC-Franc
843
- :XOF:
844
- :one: CFA-Franc (BCEAO)
845
- :other: CFA-Franc (BCEAO)
846
- :symbol: CFA
847
- :XPD:
848
- :one: Unze Palladium
849
- :other: Unzen Palladium
850
- :XPF:
851
- :one: CFP-Franc
852
- :other: CFP-Franc
853
- :symbol: CFPF
854
- :XPT:
855
- :one: Unze Platin
856
- :other: Unzen Platin
857
- :XRE:
858
- :one: RINET Funds
859
- :other: RINET Funds
860
- :XSU:
861
- :one: Sucre
862
- :other: Sucres
863
- :XTS:
864
- :one: Testwährung
865
- :other: Testwährung
866
- :XUA:
867
- :one: ADB unit of account
868
- :other: ADB units of account
869
- :XXX:
870
- :one: Unbekannte Währung
871
- :other: Unbekannte Währung
872
- :YDD:
873
- :one: Jemen-Dinar
874
- :other: Jemen-Dinar
875
- :YER:
876
- :one: Jemen-Rial
877
- :other: Jemen-Rial
878
- :YUD:
879
- :one: Jugoslawischer Dinar (1966-1990)
880
- :other: Jugoslawische Dinar (1966-1990)
881
- :YUM:
882
- :one: Jugoslawischer Neuer Dinar (1994-2002)
883
- :other: Jugoslawische Neue Dinar (1994-2002)
884
- :YUN:
885
- :one: Jugoslawische Dinar (konvertibel)
886
- :other: Jugoslawische Dinar (konvertibel)
887
- :YUR:
888
- :one: Yugoslavian reformed dinar (1992-1993)
889
- :other: Yugoslavian reformed dinars (1992-1993)
890
- :ZAL:
891
- :one: Südafrikanischer Rand (Finanz)
892
- :other: Südafrikanischer Rand (Finanz)
893
- :ZAR:
894
- :one: Südafrikanischer Rand
895
- :other: Südafrikanische Rand
896
- :ZMK:
897
- :one: Kwacha (1968-2012)
898
- :other: Kwacha (1968-2012)
899
- :ZMW:
900
- :one: Kwacha
901
- :other: Kwacha
902
- :ZRN:
903
- :one: Zaire-Neuer Zaïre (1993-1998)
904
- :other: Zaire-Neue Zaïre (1993-1998)
905
- :ZRZ:
906
- :one: Zaire-Zaïre (1971-1993)
907
- :other: Zaire-Zaïre (1971-1993)
908
- :ZWD:
909
- :one: Simbabwe-Dollar (1980-2008)
910
- :other: Simbabwe-Dollar (1980-2008)
911
- :ZWL:
912
- :one: Simbabwe-Dollar (2009)
913
- :other: Simbabwe-Dollar (2009)
914
- :ZWR:
915
- :one: Simbabwe-Dollar (2008)
916
- :other: Simbabwe-Dollar (2008)
1
+ ---
2
+ :de:
3
+ :currencies:
4
+ :ADP:
5
+ :one: "Andorranische Pesete"
6
+ :other: "Andorranische Peseten"
7
+ :AED:
8
+ :one: "VAE-Dirham"
9
+ :other: "VAE-Dirham"
10
+ :AFA:
11
+ :one: "Afghanische Afghani (19272002)"
12
+ :other: "Afghanische Afghani (19272002)"
13
+ :AFN:
14
+ :one: "Afghanischer Afghani"
15
+ :other: "Afghanische Afghani"
16
+ :ALK:
17
+ :one: "Albanian lek (19461965)"
18
+ :other: "Albanian lekë (19461965)"
19
+ :ALL:
20
+ :one: "Albanischer Lek"
21
+ :other: "Albanische Lek"
22
+ :AMD:
23
+ :one: "Armenischer Dram"
24
+ :other: "Armenische Dram"
25
+ :ANG:
26
+ :one: "Niederländische-Antillen-Gulden"
27
+ :other: "Niederländische-Antillen-Gulden"
28
+ :AOA:
29
+ :one: "Angolanischer Kwanza"
30
+ :other: "Angolanische Kwanza"
31
+ :AOK:
32
+ :one: "Angolanischer Kwanza (19771990)"
33
+ :other: "Angolanische Kwanza (19771990)"
34
+ :AON:
35
+ :one: "Angolanischer Neuer Kwanza (19902000)"
36
+ :other: "Angolanische Neue Kwanza (19902000)"
37
+ :AOR:
38
+ :one: "Angolanischer Kwanza Reajustado (19951999)"
39
+ :other: "Angolanische Kwanza Reajustado (19951999)"
40
+ :ARA:
41
+ :one: "Argentinischer Austral"
42
+ :other: "Argentinische Austral"
43
+ :ARL:
44
+ :one: "Argentine peso ley (19701983)"
45
+ :other: "Argentine pesos ley (19701983)"
46
+ :ARM:
47
+ :one: "Argentine peso (18811970)"
48
+ :other: "Argentine pesos (18811970)"
49
+ :ARP:
50
+ :one: "Argentinischer Peso (19831985)"
51
+ :other: "Argentinische Peso (19831985)"
52
+ :ARS:
53
+ :one: "Argentinischer Peso"
54
+ :other: "Argentinische Pesos"
55
+ :symbol: "$"
56
+ :ATS:
57
+ :one: "Österreichischer Schilling"
58
+ :other: "Österreichische Schilling"
59
+ :symbol: "öS"
60
+ :AUD:
61
+ :one: "Australischer Dollar"
62
+ :other: "Australische Dollar"
63
+ :symbol: "AU$"
64
+ :AWG:
65
+ :one: "Aruba-Florin"
66
+ :other: "Aruba-Florin"
67
+ :AZM:
68
+ :one: "Aserbaidschan-Manat (19932006)"
69
+ :other: "Aserbaidschan-Manat (1993–2006)"
70
+ :AZN:
71
+ :one: "Aserbaidschan-Manat"
72
+ :other: "Aserbaidschan-Manat"
73
+ :BAD:
74
+ :one: "Bosnien und Herzegowina Dinar (19921994)"
75
+ :other: "Bosnien und Herzegowina Dinar (1992–1994)"
76
+ :BAM:
77
+ :one: "Bosnien und Herzegowina Konvertierbare Mark"
78
+ :other: "Bosnien und Herzegowina Konvertierbare Mark"
79
+ :BAN:
80
+ :one: "Bosnia-Herzegovina new dinar (19941997)"
81
+ :other: "Bosnia-Herzegovina new dinars (1994–1997)"
82
+ :BBD:
83
+ :one: "Barbados-Dollar"
84
+ :other: "Barbados-Dollar"
85
+ :symbol: "$"
86
+ :BDT:
87
+ :one: "Bangladesch-Taka"
88
+ :other: "Bangladesch-Taka"
89
+ :symbol: "৳"
90
+ :BEC:
91
+ :one: "Belgischer Franc (konvertibel)"
92
+ :other: "Belgische Franc (konvertibel)"
93
+ :BEF:
94
+ :one: "Belgischer Franc"
95
+ :other: "Belgische Franc"
96
+ :BEL:
97
+ :one: "Belgischer Finanz-Franc"
98
+ :other: "Belgische Finanz-Franc"
99
+ :BGL:
100
+ :one: "Bulgarische Lew (1962–1999)"
101
+ :other: "Bulgarische Lew (1962–1999)"
102
+ :BGM:
103
+ :one: "Bulgarian socialist lev"
104
+ :other: "Bulgarian socialist leva"
105
+ :BGN:
106
+ :one: "Bulgarischer Lew"
107
+ :other: "Bulgarische Lew"
108
+ :BGO:
109
+ :one: "Bulgarian lev (1879–1952)"
110
+ :other: "Bulgarian leva (1879–1952)"
111
+ :BHD:
112
+ :one: "Bahrain-Dinar"
113
+ :other: "Bahrain-Dinar"
114
+ :BIF:
115
+ :one: "Burundi-Franc"
116
+ :other: "Burundi-Franc"
117
+ :BMD:
118
+ :one: "Bermuda-Dollar"
119
+ :other: "Bermuda-Dollar"
120
+ :symbol: "$"
121
+ :BND:
122
+ :one: "Brunei-Dollar"
123
+ :other: "Brunei-Dollar"
124
+ :symbol: "$"
125
+ :BOB:
126
+ :one: "Bolivanischer Boliviano"
127
+ :other: "Bolivanische Boliviano"
128
+ :BOL:
129
+ :one: "Bolivian boliviano (1863–1963)"
130
+ :other: "Bolivian bolivianos (1863–1963)"
131
+ :BOP:
132
+ :one: "Bolivianischer Peso"
133
+ :other: "Bolivianische Peso"
134
+ :BOV:
135
+ :one: "Boliviansiche Mvdol"
136
+ :other: "Bolivianische Mvdol"
137
+ :BRB:
138
+ :one: "Brasilianischer Cruzeiro Novo (1967–1986)"
139
+ :other: "Brasilianische Cruzeiro Novo (1967–1986)"
140
+ :BRC:
141
+ :one: "Brasilianischer Cruzado (1986–1989)"
142
+ :other: "Brasilianische Cruzado (1986–1989)"
143
+ :BRE:
144
+ :one: "Brasilianischer Cruzeiro (1990–1993)"
145
+ :other: "Brasilianische Cruzeiro (1990–1993)"
146
+ :BRL:
147
+ :one: "Brasilianischer Real"
148
+ :other: "Brasilianische Real"
149
+ :symbol: "R$"
150
+ :BRN:
151
+ :one: "Brasilianischer Cruzado Novo (1989–1990)"
152
+ :other: "Brasilianische Cruzado Novo (1989–1990)"
153
+ :BRR:
154
+ :one: "Brasilianischer Cruzeiro (1993–1994)"
155
+ :other: "Brasilianische Cruzeiro (1993–1994)"
156
+ :BRZ:
157
+ :one: "Brasilianischer Cruzeiro (1942–1967)"
158
+ :other: "Brazilian cruzeiros (1942–1967)"
159
+ :BSD:
160
+ :one: "Bahama-Dollar"
161
+ :other: "Bahama-Dollar"
162
+ :symbol: "$"
163
+ :BTN:
164
+ :one: "Bhutan-Ngultrum"
165
+ :other: "Bhutan-Ngultrum"
166
+ :BUK:
167
+ :one: "Birmanischer Kyat"
168
+ :other: "Birmanische Kyat"
169
+ :BWP:
170
+ :one: "Botswanischer Pula"
171
+ :other: "Botswanische Pula"
172
+ :BYB:
173
+ :one: "Belarus-Rubel (1994–1999)"
174
+ :other: "Belarus-Rubel (1994–1999)"
175
+ :BYR:
176
+ :one: "Belarus-Rubel"
177
+ :other: "Belarus-Rubel"
178
+ :symbol: "р."
179
+ :BZD:
180
+ :one: "Belize-Dollar"
181
+ :other: "Belize-Dollar"
182
+ :symbol: "$"
183
+ :CAD:
184
+ :one: "Kanadischer Dollar"
185
+ :other: "Kanadische Dollar"
186
+ :symbol: "CA$"
187
+ :CDF:
188
+ :one: "Kongo-Franc"
189
+ :other: "Kongo-Franc"
190
+ :CHE:
191
+ :one: "WIR-Euro"
192
+ :other: "WIR-Euro"
193
+ :CHF:
194
+ :one: "Schweizer Franken"
195
+ :other: "Schweizer Franken"
196
+ :CHW:
197
+ :one: "WIR Franken"
198
+ :other: "WIR Franken"
199
+ :CLE:
200
+ :one: "Chilean escudo"
201
+ :other: "Chilean escudos"
202
+ :CLF:
203
+ :one: "Chilenische Unidades de Fomento"
204
+ :other: "Chilenische Unidades de Fomento"
205
+ :CLP:
206
+ :one: "Chilenischer Peso"
207
+ :other: "Chilenische Pesos"
208
+ :symbol: "$"
209
+ :CNX:
210
+ :one: "Chinese People’s Bank dollar"
211
+ :other: "Chinese People’s Bank dollars"
212
+ :CNY:
213
+ :one: "Renminbi Yuan"
214
+ :other: "Renminbi Yuan"
215
+ :symbol: "CN¥"
216
+ :COP:
217
+ :one: "Kolumbianischer Peso"
218
+ :other: "Kolumbianische Pesos"
219
+ :symbol: "$"
220
+ :COU:
221
+ :one: "Colombian real value unit"
222
+ :other: "Colombian real value units"
223
+ :CRC:
224
+ :one: "Costa-Rica-Colón"
225
+ :other: "Costa-Rica-Colón"
226
+ :symbol: "₡"
227
+ :CSD:
228
+ :one: "Serbischer Dinar (2002–2006)"
229
+ :other: "Serbische Dinar (2002–2006)"
230
+ :CSK:
231
+ :one: "Tschechoslowakische Kronen"
232
+ :other: "Tschechoslowakische Kronen"
233
+ :CUC:
234
+ :one: "Kubanischer Peso (konvertibel)"
235
+ :other: "Kubanische Pesos (konvertibel)"
236
+ :CUP:
237
+ :one: "Kubanischer Peso"
238
+ :other: "Kubanische Pesos"
239
+ :symbol: "$"
240
+ :CVE:
241
+ :one: "Kap-Verde-Escudo"
242
+ :other: "Kap-Verde-Escudos"
243
+ :CYP:
244
+ :one: "Zypern Pfund"
245
+ :other: "Zypern Pfund"
246
+ :CZK:
247
+ :one: "Tschechische Krone"
248
+ :other: "Tschechische Kronen"
249
+ :DDM:
250
+ :one: "Mark der DDR"
251
+ :other: "Mark der DDR"
252
+ :DEM:
253
+ :one: "Deutsche Mark"
254
+ :other: "Deutsche Mark"
255
+ :DJF:
256
+ :one: "Dschibuti-Franc"
257
+ :other: "Dschibuti-Franc"
258
+ :DKK:
259
+ :one: "Dänische Krone"
260
+ :other: "Dänische Kronen"
261
+ :DOP:
262
+ :one: "Dominikanischer Peso"
263
+ :other: "Dominikanische Pesos"
264
+ :symbol: "$"
265
+ :DZD:
266
+ :one: "Algerischer Dinar"
267
+ :other: "Algerische Dinar"
268
+ :ECS:
269
+ :one: "Ecuadorianischer Sucre"
270
+ :other: "Ecuadorianische Sucre"
271
+ :ECV:
272
+ :one: "Verrechnungseinheiten für Ecuador"
273
+ :other: "Verrechnungseinheiten für Ecuador"
274
+ :EEK:
275
+ :one: "Estnische Krone"
276
+ :other: "Estnische Kronen"
277
+ :EGP:
278
+ :one: "Ägyptisches Pfund"
279
+ :other: "Ägyptische Pfund"
280
+ :ERN:
281
+ :one: "Eritreischer Nakfa"
282
+ :other: "Eritreische Nakfa"
283
+ :ESA:
284
+ :one: "Spanische Peseta (A–Konten)"
285
+ :other: "Spanische Peseten (A–Konten)"
286
+ :ESB:
287
+ :one: "Spanische Peseta (konvertibel)"
288
+ :other: "Spanische Peseten (konvertibel)"
289
+ :ESP:
290
+ :one: "Spanische Peseta"
291
+ :other: "Spanische Peseten"
292
+ :symbol: "₧"
293
+ :ETB:
294
+ :one: "Äthiopischer Birr"
295
+ :other: "Äthiopische Birr"
296
+ :EUR:
297
+ :one: "Euro"
298
+ :other: "Euro"
299
+ :symbol: "€"
300
+ :FIM:
301
+ :one: "Finnische Mark"
302
+ :other: "Finnische Mark"
303
+ :FJD:
304
+ :one: "Fidschi-Dollar"
305
+ :other: "Fidschi-Dollar"
306
+ :symbol: "$"
307
+ :FKP:
308
+ :one: "Falkland-Pfund"
309
+ :other: "Falkland-Pfund"
310
+ :FRF:
311
+ :one: "Französischer Franc"
312
+ :other: "Französische Franc"
313
+ :GBP:
314
+ :one: "Britisches Pfund Sterling"
315
+ :other: "Britische Pfund Sterling"
316
+ :symbol: "£"
317
+ :GEK:
318
+ :one: "Georgischer Kupon Larit"
319
+ :other: "Georgische Kupon Larit"
320
+ :GEL:
321
+ :one: "Georgischer Lari"
322
+ :other: "Georgische Lari"
323
+ :GHC:
324
+ :one: "Ghanaischer Cedi (1979–2007)"
325
+ :other: "Ghanaische Cedi (1979–2007)"
326
+ :GHS:
327
+ :one: "Ghanaischer Cedi"
328
+ :other: "Ghanaische Cedi"
329
+ :symbol: "₵"
330
+ :GIP:
331
+ :one: "Gibraltar-Pfund"
332
+ :other: "Gibraltar Pfund"
333
+ :symbol: "£"
334
+ :GMD:
335
+ :one: "Gambia-Dalasi"
336
+ :other: "Gambia-Dalasi"
337
+ :GNF:
338
+ :one: "Guinea-Franc"
339
+ :other: "Guinea-Franc"
340
+ :GNS:
341
+ :one: "Guineischer Syli"
342
+ :other: "Guineische Syli"
343
+ :GQE:
344
+ :one: "Äquatorialguinea-Ekwele"
345
+ :other: "Äquatorialguinea-Ekwele"
346
+ :GRD:
347
+ :one: "Griechische Drachme"
348
+ :other: "Griechische Drachmen"
349
+ :GTQ:
350
+ :one: "Guatemaltekischer Quetzal"
351
+ :other: "Guatemaltekische Quetzales"
352
+ :GWE:
353
+ :one: "Portugiesisch Guinea Escudo"
354
+ :other: "Portugiesisch Guinea Escudo"
355
+ :GWP:
356
+ :one: "Guinea-Bissau Peso"
357
+ :other: "Guinea-Bissau Pesos"
358
+ :GYD:
359
+ :one: "Guyana-Dollar"
360
+ :other: "Guyana-Dollar"
361
+ :symbol: "$"
362
+ :HKD:
363
+ :one: "Hongkong-Dollar"
364
+ :other: "Hongkong-Dollar"
365
+ :symbol: "HK$"
366
+ :HNL:
367
+ :one: "Honduras-Lempira"
368
+ :other: "Honduras-Lempira"
369
+ :HRD:
370
+ :one: "Kroatischer Dinar"
371
+ :other: "Kroatische Dinar"
372
+ :HRK:
373
+ :one: "Kroatischer Kuna"
374
+ :other: "Kroatische Kuna"
375
+ :HTG:
376
+ :one: "Haitianische Gourde"
377
+ :other: "Haitianische Gourdes"
378
+ :HUF:
379
+ :one: "Ungarischer Forint"
380
+ :other: "Ungarische Forint"
381
+ :IDR:
382
+ :one: "Indonesische Rupiah"
383
+ :other: "Indonesische Rupiah"
384
+ :IEP:
385
+ :one: "Irisches Pfund"
386
+ :other: "Irische Pfund"
387
+ :ILP:
388
+ :one: "Israelisches Pfund"
389
+ :other: "Israelische Pfund"
390
+ :ILR:
391
+ :one: "Israeli sheqel (1980–1985)"
392
+ :other: "Israeli sheqels (1980–1985)"
393
+ :ILS:
394
+ :one: "Israelischer Neuer Schekel"
395
+ :other: "Israelische Neue Schekel"
396
+ :symbol: "₪"
397
+ :INR:
398
+ :one: "Indische Rupie"
399
+ :other: "Indische Rupien"
400
+ :symbol: "₹"
401
+ :IQD:
402
+ :one: "Irakischer Dinar"
403
+ :other: "Irakische Dinar"
404
+ :IRR:
405
+ :one: "Iranischer Rial"
406
+ :other: "Iranische Rial"
407
+ :ISJ:
408
+ :one: "Icelandic króna (1918–1981)"
409
+ :other: "Icelandic krónur (1918–1981)"
410
+ :ISK:
411
+ :one: "Isländische Krone"
412
+ :other: "Isländische Kronen"
413
+ :ITL:
414
+ :one: "Italienische Lira"
415
+ :other: "Italienische Lire"
416
+ :JMD:
417
+ :one: "Jamaika-Dollar"
418
+ :other: "Jamaika-Dollar"
419
+ :symbol: "$"
420
+ :JOD:
421
+ :one: "Jordanischer Dinar"
422
+ :other: "Jordanische Dinar"
423
+ :JPY:
424
+ :one: "Japanischer Yen"
425
+ :other: "Japanische Yen"
426
+ :symbol: "¥"
427
+ :KES:
428
+ :one: "Kenia-Schilling"
429
+ :other: "Kenia-Schilling"
430
+ :KGS:
431
+ :one: "Kirgisischer Som"
432
+ :other: "Kirgisische Som"
433
+ :KHR:
434
+ :one: "Kambodschanischer Riel"
435
+ :other: "Kambodschanische Riel"
436
+ :symbol: "៛"
437
+ :KMF:
438
+ :one: "Komoren-Franc"
439
+ :other: "Komoren-Franc"
440
+ :KPW:
441
+ :one: "Nordkoreanischer Won"
442
+ :other: "Nordkoreanische Won"
443
+ :KRH:
444
+ :one: "South Korean hwan (1953–1962)"
445
+ :other: "South Korean hwan (1953–1962)"
446
+ :KRO:
447
+ :one: "South Korean won (1945–1953)"
448
+ :other: "South Korean won (1945–1953)"
449
+ :KRW:
450
+ :one: "Südkoreanischer Won"
451
+ :other: "Südkoreanische Won"
452
+ :symbol: "₩"
453
+ :KWD:
454
+ :one: "Kuwait-Dinar"
455
+ :other: "Kuwait-Dinar"
456
+ :KYD:
457
+ :one: "Kaiman-Dollar"
458
+ :other: "Kaiman-Dollar"
459
+ :symbol: "$"
460
+ :KZT:
461
+ :one: "Kasachischer Tenge"
462
+ :other: "Kasachische Tenge"
463
+ :symbol: "₸"
464
+ :LAK:
465
+ :one: "Laotischer Kip"
466
+ :other: "Laotische Kip"
467
+ :symbol: "₭"
468
+ :LBP:
469
+ :one: "Libanesisches Pfund"
470
+ :other: "Libanesische Pfund"
471
+ :LKR:
472
+ :one: "Sri-Lanka-Rupie"
473
+ :other: "Sri-Lanka-Rupien"
474
+ :LRD:
475
+ :one: "Liberianischer Dollar"
476
+ :other: "Liberianische Dollar"
477
+ :symbol: "$"
478
+ :LSL:
479
+ :one: "Loti"
480
+ :other: "Loti"
481
+ :LTL:
482
+ :one: "Litauischer Litas"
483
+ :other: "Litauische Litas"
484
+ :LTT:
485
+ :one: "Litauische Talonas"
486
+ :other: "Litauische Talonas"
487
+ :LUC:
488
+ :one: "Luxemburgische Franc (konvertibel)"
489
+ :other: "Luxemburgische Franc (konvertibel)"
490
+ :LUF:
491
+ :one: "Luxemburgische Franc"
492
+ :other: "Luxemburgische Franc"
493
+ :LUL:
494
+ :one: "Luxemburgische Finanz-Franc"
495
+ :other: "Luxemburgische Finanz-Franc"
496
+ :LVL:
497
+ :one: "Lettischer Lats"
498
+ :other: "Lettische Lats"
499
+ :LVR:
500
+ :one: "Lettische Rubel"
501
+ :other: "Lettische Rubel"
502
+ :LYD:
503
+ :one: "Libyscher Dinar"
504
+ :other: "Libysche Dinar"
505
+ :MAD:
506
+ :one: "Marokkanischer Dirham"
507
+ :other: "Marokkanische Dirham"
508
+ :MAF:
509
+ :one: "Marokkanische Franc"
510
+ :other: "Marokkanische Franc"
511
+ :MCF:
512
+ :one: "Monegasque franc"
513
+ :other: "Monegasque francs"
514
+ :MDC:
515
+ :one: "Moldovan cupon"
516
+ :other: "Moldovan cupon"
517
+ :MDL:
518
+ :one: "Moldau-Leu"
519
+ :other: "Moldau-Leu"
520
+ :MGA:
521
+ :one: "Madagaskar-Ariary"
522
+ :other: "Madagaskar-Ariary"
523
+ :MGF:
524
+ :one: "Madagaskar-Franc"
525
+ :other: "Madagaskar-Franc"
526
+ :MKD:
527
+ :one: "Mazedonischer Denar"
528
+ :other: "Mazedonische Denari"
529
+ :MKN:
530
+ :one: "Macedonian denar (1992–1993)"
531
+ :other: "Macedonian denari (1992–1993)"
532
+ :MLF:
533
+ :one: "Malische Franc"
534
+ :other: "Malische Franc"
535
+ :MMK:
536
+ :one: "Myanmarischer Kyat"
537
+ :other: "Myanmarische Kyat"
538
+ :MNT:
539
+ :one: "Mongolischer Tögrög"
540
+ :other: "Mongolische Tögrög"
541
+ :symbol: "₮"
542
+ :MOP:
543
+ :one: "Macao-Pataca"
544
+ :other: "Macao-Pataca"
545
+ :MRO:
546
+ :one: "Mauretanischer Ouguiya"
547
+ :other: "Mauretanische Ouguiya"
548
+ :MTL:
549
+ :one: "Maltesische Lira"
550
+ :other: "Maltesische Lira"
551
+ :MTP:
552
+ :one: "Maltesische Pfund"
553
+ :other: "Maltesische Pfund"
554
+ :MUR:
555
+ :one: "Mauritius-Rupie"
556
+ :other: "Mauritius-Rupien"
557
+ :MVP:
558
+ :one: "Maldivian rupee"
559
+ :other: "Maldivian rupees"
560
+ :MVR:
561
+ :one: "Malediven-Rupie"
562
+ :other: "Malediven-Rupien"
563
+ :MWK:
564
+ :one: "Malawi-Kwacha"
565
+ :other: "Malawi-Kwacha"
566
+ :MXN:
567
+ :one: "Mexikanischer Peso"
568
+ :other: "Mexikanische Pesos"
569
+ :symbol: "MX$"
570
+ :MXP:
571
+ :one: "Mexikanische Silber-Peso (1861–1992)"
572
+ :other: "Mexikanische Silber-Pesos (1861–1992)"
573
+ :MXV:
574
+ :one: "Mexicanischer Unidad de Inversion (UDI)"
575
+ :other: "Mexikanische Unidad de Inversion (UDI)"
576
+ :MYR:
577
+ :one: "Malaysischer Ringgit"
578
+ :other: "Malaysische Ringgit"
579
+ :MZE:
580
+ :one: "Mozambikanische Escudo"
581
+ :other: "Mozambikanische Escudo"
582
+ :MZM:
583
+ :one: "Mosambikanischer Metical (1980–2006)"
584
+ :other: "Mosambikanische Meticais (1980–2006)"
585
+ :MZN:
586
+ :one: "Mosambikanischer Metical"
587
+ :other: "Mosambikanische Meticais"
588
+ :NAD:
589
+ :one: "Namibia-Dollar"
590
+ :other: "Namibia-Dollar"
591
+ :symbol: "$"
592
+ :NGN:
593
+ :one: "Nigerianischer Naira"
594
+ :other: "Nigerianische Naira"
595
+ :symbol: "₦"
596
+ :NIC:
597
+ :one: "Nicaraguanischer Córdoba (1988–1991)"
598
+ :other: "Nicaraguanische Córdoba (1988–1991)"
599
+ :NIO:
600
+ :one: "Nicaragua-Cordoba"
601
+ :other: "Nicaragua-Cordoba"
602
+ :NLG:
603
+ :one: "Niederländischer Gulden"
604
+ :other: "Niederländische Gulden"
605
+ :NOK:
606
+ :one: "Norwegische Krone"
607
+ :other: "Norwegische Kronen"
608
+ :NPR:
609
+ :one: "Nepalesische Rupie"
610
+ :other: "Nepalesische Rupien"
611
+ :NZD:
612
+ :one: "Neuseeland-Dollar"
613
+ :other: "Neuseeland-Dollar"
614
+ :symbol: "NZ$"
615
+ :OMR:
616
+ :one: "Omanischer Rial"
617
+ :other: "Omanische Rials"
618
+ :PAB:
619
+ :one: "Panamaischer Balboa"
620
+ :other: "Panamaische Balboas"
621
+ :PEI:
622
+ :one: "Peruanische Inti"
623
+ :other: "Peruanische Inti"
624
+ :PEN:
625
+ :one: "Peruanischer Neuer Sol"
626
+ :other: "Peruanische Neue Sol"
627
+ :PES:
628
+ :one: "Peruanischer Sol (1863–1965)"
629
+ :other: "Peruanische Sol (1863–1965)"
630
+ :PGK:
631
+ :one: "Papua-Neuguineischer Kina"
632
+ :other: "Papua-Neuguineische Kina"
633
+ :PHP:
634
+ :one: "Philippinischer Peso"
635
+ :other: "Philippinische Pesos"
636
+ :symbol: "₱"
637
+ :PKR:
638
+ :one: "Pakistanische Rupie"
639
+ :other: "Pakistanische Rupien"
640
+ :PLN:
641
+ :one: "Polnischer Złoty"
642
+ :other: "Polnische Złoty"
643
+ :PLZ:
644
+ :one: "Polnischer Zloty (1950–1995)"
645
+ :other: "Polnische Zloty (1950–1995)"
646
+ :PTE:
647
+ :one: "Portugiesische Escudo"
648
+ :other: "Portugiesische Escudo"
649
+ :PYG:
650
+ :one: "Paraguayischer Guaraní"
651
+ :other: "Paraguayische Guaraníes"
652
+ :symbol: "₲"
653
+ :QAR:
654
+ :one: "Katar-Riyal"
655
+ :other: "Katar-Riyal"
656
+ :RHD:
657
+ :one: "Rhodesische Dollar"
658
+ :other: "Rhodesische Dollar"
659
+ :ROL:
660
+ :one: "Rumänischer Leu (1952–2006)"
661
+ :other: "Rumänische Leu (1952–2006)"
662
+ :RON:
663
+ :one: "Rumänischer Leu"
664
+ :other: "Rumänische Leu"
665
+ :RSD:
666
+ :one: "Serbischer Dinar"
667
+ :other: "Serbische Dinaren"
668
+ :RUB:
669
+ :one: "Russischer Rubel"
670
+ :other: "Russische Rubel"
671
+ :RUR:
672
+ :one: "Russischer Rubel (1991–1998)"
673
+ :other: "Russische Rubel (1991–1998)"
674
+ :symbol: "р."
675
+ :RWF:
676
+ :one: "Ruanda-Franc"
677
+ :other: "Ruanda-Franc"
678
+ :SAR:
679
+ :one: "Saudi-Rial"
680
+ :other: "Saudi-Rial"
681
+ :SBD:
682
+ :one: "Salomonen-Dollar"
683
+ :other: "Salomonen-Dollar"
684
+ :symbol: "$"
685
+ :SCR:
686
+ :one: "Seychellen-Rupie"
687
+ :other: "Seychellen-Rupien"
688
+ :SDD:
689
+ :one: "Sudanesischer Dinar (1992–2007)"
690
+ :other: "Sudanesische Dinar (1992–2007)"
691
+ :SDG:
692
+ :one: "Sudanesisches Pfund"
693
+ :other: "Sudanesische Pfund"
694
+ :SDP:
695
+ :one: "Sudanesisches Pfund (1957–1998)"
696
+ :other: "Sudanesische Pfund (1957–1998)"
697
+ :SEK:
698
+ :one: "Schwedische Krone"
699
+ :other: "Schwedische Kronen"
700
+ :SGD:
701
+ :one: "Singapur-Dollar"
702
+ :other: "Singapur-Dollar"
703
+ :symbol: "$"
704
+ :SHP:
705
+ :one: "St. Helena-Pfund"
706
+ :other: "St. Helena-Pfund"
707
+ :SIT:
708
+ :one: "Slowenischer Tolar"
709
+ :other: "Slowenische Tolar"
710
+ :SKK:
711
+ :one: "Slowakische Kronen"
712
+ :other: "Slowakische Kronen"
713
+ :SLL:
714
+ :one: "Sierra-leonischer Leone"
715
+ :other: "Sierra-leonische Leones"
716
+ :SOS:
717
+ :one: "Somalia-Schilling"
718
+ :other: "Somalia-Schilling"
719
+ :SRD:
720
+ :one: "Suriname-Dollar"
721
+ :other: "Suriname-Dollar"
722
+ :symbol: "$"
723
+ :SRG:
724
+ :one: "Suriname-Gulden"
725
+ :other: "Suriname-Gulden"
726
+ :SSP:
727
+ :one: "Südsudanesisches Pfund"
728
+ :other: "Südsudanesische Pfund"
729
+ :symbol: "£"
730
+ :STD:
731
+ :one: "São-toméischer Dobra"
732
+ :other: "São-toméische Dobra"
733
+ :SUR:
734
+ :one: "Sowjetische Rubel"
735
+ :other: "Sowjetische Rubel"
736
+ :SVC:
737
+ :one: "El Salvador-Colon"
738
+ :other: "El Salvador-Colon"
739
+ :SYP:
740
+ :one: "Syrisches Pfund"
741
+ :other: "Syrische Pfund"
742
+ :SZL:
743
+ :one: "Swasiländischer Lilangeni"
744
+ :other: "Swasiländische Emalangeni"
745
+ :THB:
746
+ :one: "Thailändischer Baht"
747
+ :other: "Thailändische Baht"
748
+ :symbol: "฿"
749
+ :TJR:
750
+ :one: "Tadschikistan-Rubel"
751
+ :other: "Tadschikistan-Rubel"
752
+ :TJS:
753
+ :one: "Tadschikistan-Somoni"
754
+ :other: "Tadschikistan-Somoni"
755
+ :TMM:
756
+ :one: "Turkmenistan-Manat (1993–2009)"
757
+ :other: "Turkmenistan-Manat (1993–2009)"
758
+ :TMT:
759
+ :one: "Turkmenistan-Manat"
760
+ :other: "Turkmenistan-Manat"
761
+ :TND:
762
+ :one: "Tunesischer Dinar"
763
+ :other: "Tunesische Dinar"
764
+ :TOP:
765
+ :one: "Tongaischer Paʻanga"
766
+ :other: "Tongaische Paʻanga"
767
+ :TPE:
768
+ :one: "Timor-Escudo"
769
+ :other: "Timor-Escudo"
770
+ :TRL:
771
+ :one: "Türkische Lira (1922–2005)"
772
+ :other: "Türkische Lira (1922–2005)"
773
+ :TRY:
774
+ :one: "Türkische Lira"
775
+ :other: "Türkische Lira"
776
+ :symbol: "₺"
777
+ :TTD:
778
+ :one: "Trinidad und Tobago-Dollar"
779
+ :other: "Trinidad und Tobago-Dollar"
780
+ :symbol: "$"
781
+ :TWD:
782
+ :one: "Neuer Taiwan-Dollar"
783
+ :other: "Neue Taiwan-Dollar"
784
+ :symbol: "NT$"
785
+ :TZS:
786
+ :one: "Tansania-Schilling"
787
+ :other: "Tansania-Schilling"
788
+ :UAH:
789
+ :one: "Ukrainische Hrywnja"
790
+ :other: "Ukrainische Hrywen"
791
+ :symbol: "₴"
792
+ :UAK:
793
+ :one: "Ukrainische Karbovanetz"
794
+ :other: "Ukrainische Karbovanetz"
795
+ :UGS:
796
+ :one: "Uganda-Schilling (1966–1987)"
797
+ :other: "Uganda-Schilling (1966–1987)"
798
+ :UGX:
799
+ :one: "Uganda-Schilling"
800
+ :other: "Uganda-Schilling"
801
+ :USD:
802
+ :one: "US-Dollar"
803
+ :other: "US-Dollar"
804
+ :symbol: "$"
805
+ :USN:
806
+ :one: "US-Dollar (Nächster Tag)"
807
+ :other: "US-Dollar (Nächster Tag)"
808
+ :USS:
809
+ :one: "US-Dollar (Gleicher Tag)"
810
+ :other: "US-Dollar (Gleicher Tag)"
811
+ :UYI:
812
+ :one: "Uruguayan peso (indexed units)"
813
+ :other: "Uruguayan pesos (indexed units)"
814
+ :UYP:
815
+ :one: "Uruguayischer Peso (1975–1993)"
816
+ :other: "Uruguayische Pesos (1975–1993)"
817
+ :UYU:
818
+ :one: "Uruguayischer Peso"
819
+ :other: "Uruguayische Pesos"
820
+ :symbol: "$"
821
+ :UZS:
822
+ :one: "Usbekistan-Sum"
823
+ :other: "Usbekistan-Sum"
824
+ :VEB:
825
+ :one: "Venezolanischer Bolívar (1871–2008)"
826
+ :other: "Venezolanische Bolívares (1871–2008)"
827
+ :VEF:
828
+ :one: "Venezolanischer Bolívar"
829
+ :other: "Venezolanische Bolívares"
830
+ :VND:
831
+ :one: "Vietnamesischer Dong"
832
+ :other: "Vietnamesische Dong"
833
+ :symbol: "₫"
834
+ :VNN:
835
+ :one: "Vietnamese dong (1978–1985)"
836
+ :other: "Vietnamese dong (1978–1985)"
837
+ :VUV:
838
+ :one: "Vanuatu-Vatu"
839
+ :other: "Vanuatu-Vatu"
840
+ :WST:
841
+ :one: "Samoanischer Tala"
842
+ :other: "Samoanische Tala"
843
+ :XAF:
844
+ :one: "CFA-Franc (BEAC)"
845
+ :other: "CFA-Franc (BEAC)"
846
+ :symbol: "FCFA"
847
+ :XAG:
848
+ :one: "Unze Silber"
849
+ :other: "Unzen Silber"
850
+ :XAU:
851
+ :one: "Unze Gold"
852
+ :other: "Unzen Gold"
853
+ :XBA:
854
+ :one: "Europäische Rechnungseinheiten"
855
+ :other: "Europäische Rechnungseinheiten"
856
+ :XBB:
857
+ :one: "Europäische Währungseinheiten (XBB)"
858
+ :other: "Europäische Währungseinheiten (XBB)"
859
+ :XBC:
860
+ :one: "Europäische Rechnungseinheiten (XBC)"
861
+ :other: "Europäische Rechnungseinheiten (XBC)"
862
+ :XBD:
863
+ :one: "Europäische Rechnungseinheiten (XBD)"
864
+ :other: "Europäische Rechnungseinheiten (XBD)"
865
+ :XCD:
866
+ :one: "Ostkaribischer Dollar"
867
+ :other: "Ostkaribische Dollar"
868
+ :symbol: "EC$"
869
+ :XDR:
870
+ :one: "Sonderziehungsrechte"
871
+ :other: "Sonderziehungsrechte"
872
+ :XEU:
873
+ :one: "Europäische Währungseinheiten (XEU)"
874
+ :other: "Europäische Währungseinheiten (XEU)"
875
+ :XFO:
876
+ :one: "Französische Gold-Franc"
877
+ :other: "Französische Gold-Franc"
878
+ :XFU:
879
+ :one: "Französische UIC-Franc"
880
+ :other: "Französische UIC-Franc"
881
+ :XOF:
882
+ :one: "CFA-Franc (BCEAO)"
883
+ :other: "CFA-Franc (BCEAO)"
884
+ :symbol: "CFA"
885
+ :XPD:
886
+ :one: "Unze Palladium"
887
+ :other: "Unzen Palladium"
888
+ :XPF:
889
+ :one: "CFP-Franc"
890
+ :other: "CFP-Franc"
891
+ :symbol: "CFPF"
892
+ :XPT:
893
+ :one: "Unze Platin"
894
+ :other: "Unzen Platin"
895
+ :XRE:
896
+ :one: "RINET Funds"
897
+ :other: "RINET Funds"
898
+ :XSU:
899
+ :one: "Sucre"
900
+ :other: "Sucres"
901
+ :XTS:
902
+ :one: "Testwährung"
903
+ :other: "Testwährung"
904
+ :XUA:
905
+ :one: "ADB unit of account"
906
+ :other: "ADB units of account"
907
+ :XXX:
908
+ :one: "Unbekannte Währung"
909
+ :other: "Unbekannte Währung"
910
+ :YDD:
911
+ :one: "Jemen-Dinar"
912
+ :other: "Jemen-Dinar"
913
+ :YER:
914
+ :one: "Jemen-Rial"
915
+ :other: "Jemen-Rial"
916
+ :YUD:
917
+ :one: "Jugoslawischer Dinar (1966–1990)"
918
+ :other: "Jugoslawische Dinar (1966–1990)"
919
+ :YUM:
920
+ :one: "Jugoslawischer Neuer Dinar (1994–2002)"
921
+ :other: "Jugoslawische Neue Dinar (1994–2002)"
922
+ :YUN:
923
+ :one: "Jugoslawische Dinar (konvertibel)"
924
+ :other: "Jugoslawische Dinar (konvertibel)"
925
+ :YUR:
926
+ :one: "Yugoslavian reformed dinar (1992–1993)"
927
+ :other: "Yugoslavian reformed dinars (1992–1993)"
928
+ :ZAL:
929
+ :one: "Südafrikanischer Rand (Finanz)"
930
+ :other: "Südafrikanischer Rand (Finanz)"
931
+ :ZAR:
932
+ :one: "Südafrikanischer Rand"
933
+ :other: "Südafrikanische Rand"
934
+ :ZMK:
935
+ :one: "Kwacha (1968–2012)"
936
+ :other: "Kwacha (1968–2012)"
937
+ :ZMW:
938
+ :one: "Kwacha"
939
+ :other: "Kwacha"
940
+ :ZRN:
941
+ :one: "Zaire-Neuer Zaïre (1993–1998)"
942
+ :other: "Zaire-Neue Zaïre (1993–1998)"
943
+ :ZRZ:
944
+ :one: "Zaire-Zaïre (1971–1993)"
945
+ :other: "Zaire-Zaïre (1971–1993)"
946
+ :ZWD:
947
+ :one: "Simbabwe-Dollar (1980–2008)"
948
+ :other: "Simbabwe-Dollar (1980–2008)"
949
+ :ZWL:
950
+ :one: "Simbabwe-Dollar (2009)"
951
+ :other: "Simbabwe-Dollar (2009)"
952
+ :ZWR:
953
+ :one: "Simbabwe-Dollar (2008)"
954
+ :other: "Simbabwe-Dollar (2008)"