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
- :el:
3
- :currencies:
4
- :ADP:
5
- :one: πεσέτα Ανδόρας
6
- :other: πεσέτες Ανδόρας
7
- :AED:
8
- :one: ντιράμ Ηνωμένων Αραβικών Εμιράτων
9
- :other: ντιράμ Ηνωμένων Αραβικών Εμιράτων
10
- :AFA:
11
- :one: αφγάνι Αφγανιστάν (AFA)
12
- :other: αφγάνι Αφγανιστάν (AFA)
13
- :AFN:
14
- :one: αφγάνι Αφγανιστάν
15
- :other: Αφγάνι Αφγανιστάν
16
- :ALK:
17
- :one: Παλαιό λεκ Αλβανίας
18
- :other: Παλαιά λεκ Αλβανίας
19
- :ALL:
20
- :one: λεκ Αλβανίας
21
- :other: λεκ Αλβανίας
22
- :AMD:
23
- :one: ντραμ Αρμενίας
24
- :other: ντραμ Αρμενίας
25
- :ANG:
26
- :one: γκίλντα Ολλανδικών Αντιλλών
27
- :other: γκίλντα Ολλανδικών Αντιλλών
28
- :AOA:
29
- :one: κουάνζα Ανγκόλας
30
- :other: κουάνζα Ανγκόλας
31
- :AOK:
32
- :one: κουάνζα Ανγκόλας (AOK)
33
- :other: κουάνζα Ανγκόλας (AOK)
34
- :AON:
35
- :one: νέο κουάνζα Ανγκόλας (1990-2000)
36
- :other: νέα κουάνζα Ανγκόλας (1990-2000)
37
- :AOR:
38
- :one: Angolan readjusted kwanza (1995-1999)
39
- :other: Angolan readjusted kwanzas (1995-1999)
40
- :ARA:
41
- :one: αουστράλ Αργεντινής
42
- :other: αουστράλ Αργεντινής
43
- :ARL:
44
- :one: Πέσο λέι Αργετινής
45
- :other: Πέσο λέι Αργετινής
46
- :ARM:
47
- :one: Argentine peso (1881-1970)
48
- :other: Argentine pesos (1881-1970)
49
- :ARP:
50
- :one: πέσο Αργεντινής (ARP)
51
- :other: πέσο Αργεντινής (ARP)
52
- :ARS:
53
- :one: πέσο Αργεντινής
54
- :other: πέσο Αργεντινής
55
- :ATS:
56
- :one: σελίνι Αυστρίας
57
- :other: σελίνια Αυστρίας
58
- :AUD:
59
- :one: δολάριο Αυστραλίας
60
- :other: δολάρια Αυστραλίας
61
- :symbol: A$
62
- :AWG:
63
- :one: γκίλντα Αρούμπα
64
- :other: γκίλντα Αρούμπα
65
- :AZM:
66
- :one: μανάτ Αζερμπαϊτζάν (1993-2006)
67
- :other: μανάτ Αζερμπαϊτζάν (1993-2006)
68
- :AZN:
69
- :one: μανάτ Αζερμπαϊτζάν
70
- :other: μανάτ Αζερμπαϊτζάν
71
- :BAD:
72
- :one: δηνάριο Βοσνίας-Ερζεγοβίνης
73
- :other: δηνάρια Βοσνίας-Ερζεγοβίνης
74
- :BAM:
75
- :one: μάρκο Βοσνίας-Ερζεγοβίνης
76
- :other: μάρκα Βοσνίας-Ερζεγοβίνης
77
- :BAN:
78
- :one: Νέο δινάριο Βοσνίας-Ερζεγοβίνης
79
- :other: Νέα δινάρια Βοσνίας-Ερζεγοβίνης
80
- :BBD:
81
- :one: δολάριο Μπαρμπάντος
82
- :other: δολάρια Μπαρμπάντος
83
- :BDT:
84
- :one: τάκα Μπαγκλαντές
85
- :other: τάκα Μπαγκλαντές
86
- :BEC:
87
- :one: φράγκο Βελγίου (μετατρέψιμο)
88
- :other: φράγκα Βελγίου (μετατρέψιμα)
89
- :BEF:
90
- :one: φράγκο Βελγίου
91
- :other: φράγκα Βελγίου
92
- :BEL:
93
- :one: φράγκο Βελγίου (οικονομικό)
94
- :other: φράγκα Βελγίου (οικονομικό)
95
- :BGL:
96
- :one: μεταλλικό λεβ Βουλγαρίας
97
- :other: μεταλλικά λεβ Βουλγαρίας
98
- :BGM:
99
- :one: Σοσιαλιστικό λεβ Βουλγαρίας
100
- :other: Σοσιαλιστικά λεβ Βουλγαρίας
101
- :BGN:
102
- :one: λεβ Βουλγαρίας
103
- :other: λεβ Βουλγαρίας
104
- :BGO:
105
- :one: Παλαιό λεβ Βουλγαρίας
106
- :other: Παλαιά λεβ Βουλγαρίας
107
- :BHD:
108
- :one: δηνάριο Μπαχρέιν
109
- :other: δηνάρια Μπαχρέιν
110
- :BIF:
111
- :one: φράγκο Μπουρούντι
112
- :other: φράγκα Μπουρούντι
113
- :BMD:
114
- :one: δολάριο Βερμούδων
115
- :other: δολάρια Βερμούδων
116
- :BND:
117
- :one: δολάριο Μπρουνέι
118
- :other: δολάρια Μπρουνέι
119
- :BOB:
120
- :one: μπολιβιάνο Βολιβίας
121
- :other: μπολιβιάνο Βολιβίας
122
- :BOL:
123
- :one: Παλαιό βολιβιάνο Βολιβίας
124
- :other: Παλαιά βολιβιάνο Βολιβίας
125
- :BOP:
126
- :one: πέσο Βολιβίας
127
- :other: πέσο Βολιβίας
128
- :BOV:
129
- :one: μβντολ Βολιβίας
130
- :other: μβντολ Βολιβίας
131
- :BRB:
132
- :one: νέο κρουζέιρο Βραζιλίας (BRB)
133
- :other: νέα κρουζέιρο Βραζιλίας (BRB)
134
- :BRC:
135
- :one: κρουζάντο Βραζιλίας
136
- :other: κρουζάντο Βραζιλίας
137
- :BRE:
138
- :one: κρουζέιρο Βραζιλίας (BRE)
139
- :other: κρουζέιρο Βραζιλίας (BRE)
140
- :BRL:
141
- :one: ρεάλ Βραζιλίας
142
- :other: ρεάλ Βραζιλίας
143
- :symbol: R$
144
- :BRN:
145
- :one: νέο κρουζάντο Βραζιλίας
146
- :other: νέα κρουζάντο Βραζιλίας
147
- :BRR:
148
- :one: κρουζέιρο Βραζιλίας
149
- :other: κρουζέιρο Βραζιλίας
150
- :BRZ:
151
- :one: Παλαιό κρουζέιρο Βραζιλίας
152
- :other: Παλαιά κρουζέιρο Βραζιλίας
153
- :BSD:
154
- :one: δολάριο Μπαχάμες
155
- :other: δολάρια Μπαχάμες
156
- :BTN:
157
- :one: νγκούλτρουμ Μπουτάν
158
- :other: νγκούλτρουμ Μπουτάν
159
- :BUK:
160
- :one: κιάτ Βιρμανίας
161
- :other: κιάτ Βιρμανίας
162
- :BWP:
163
- :one: πούλα Μποτσουάνας
164
- :other: πούλα Μποτσουάνας
165
- :BYB:
166
- :one: νέο ρούβλι Λευκορωσίας (1994-1999)
167
- :other: νέα ρούβλια Λευκορωσίας (1994-1999)
168
- :BYR:
169
- :one: ρούβλι Λευκορωσίας
170
- :other: ρούβλια Λευκορωσίας
171
- :BZD:
172
- :one: δολάριο Μπελίζ
173
- :other: δολάρια Μπελίζ
174
- :CAD:
175
- :one: δολάριο Καναδά
176
- :other: δολάρια Καναδά
177
- :symbol: CA$
178
- :CDF:
179
- :one: φράγκο Κονγκό
180
- :other: φράγκα Κονγκό
181
- :CHE:
182
- :one: ευρώ WIR
183
- :other: ευρώ WIR
184
- :CHF:
185
- :one: φράγκο Ελβετίας
186
- :other: φράγκα Ελβετίας
187
- :CHW:
188
- :one: φράγκο WIR
189
- :other: φράγκα WIR
190
- :CLE:
191
- :one: Εσκούδο Χιλής
192
- :other: Εσκούδο Χιλής
193
- :CLF:
194
- :one: ουνιδάδες ντε φομέντο Χιλής
195
- :other: ουνιδάδες ντε φομέντο Χιλής
196
- :CLP:
197
- :one: πέσο Χιλής
198
- :other: πέσο Χιλής
199
- :CNX:
200
- :one: Δολάριο Λαϊκής Τράπεζας Κίνας
201
- :other: Δολάρια Λαϊκής Τράπεζας Κίνας
202
- :CNY:
203
- :one: γιουάν Κίνας
204
- :other: γιουάν Κίνας
205
- :symbol: CN¥
206
- :COP:
207
- :one: πέσο Κολομβίας
208
- :other: πέσο Κολομβίας
209
- :COU:
210
- :one: Colombian real value unit
211
- :other: Colombian real value units
212
- :CRC:
213
- :one: κολόν Κόστα Ρίκα
214
- :other: κολόν Κόστα Ρίκα
215
- :CSD:
216
- :one: παλιό δινάρη Σερβίας
217
- :other: παλιά δινάρια Σερβίας
218
- :CSK:
219
- :one: σκληρή κορόνα Τσεχοσλοβακίας
220
- :other: σκληρές κορόνες Τσεχοσλοβακίας
221
- :CUC:
222
- :one: μετατρέψιμο πέσο Κούβας
223
- :other: μετατρέψιμα πέσο Κούβας
224
- :CUP:
225
- :one: πέσο Κούβας
226
- :other: πέσο Κούβας
227
- :CVE:
228
- :one: εσκούδο Πράσινου Ακρωτηρίου
229
- :other: εσκούδο Πράσινου Ακρωτηρίου
230
- :CYP:
231
- :one: λίρα Κύπρου
232
- :other: λίρες Κύπρου
233
- :CZK:
234
- :one: κορόνα Τσεχίας
235
- :other: κορόνες Τσεχίας
236
- :DDM:
237
- :one: όστμαρκ Ανατολικής Γερμανίας
238
- :other: όστμαρκ Ανατολικής Γερμανίας
239
- :DEM:
240
- :one: μάρκο Γερμανίας
241
- :other: μάρκα Γερμανίας
242
- :DJF:
243
- :one: φράγκο Τζιμπουτί
244
- :other: φράγκα Τζιμπουτί
245
- :DKK:
246
- :one: κορόνα Δανίας
247
- :other: κορόνες Δανίας
248
- :DOP:
249
- :one: πέσο Δομίνικου
250
- :other: πέσο Δομινικανής Δημοκρατίας
251
- :DZD:
252
- :one: δηνάριο Αλγερίας
253
- :other: δηνάρια Αλγερίας
254
- :ECS:
255
- :one: σούκρε Εκουαδόρ
256
- :other: σούκρε Εκουαδόρ
257
- :ECV:
258
- :one: Ecuadorian unit of constant value
259
- :other: Ecuadorian units of constant value
260
- :EEK:
261
- :one: κορόνα Εσθονίας
262
- :other: κορόνες Εσθονίας
263
- :EGP:
264
- :one: λίρα Αιγύπτου
265
- :other: λίρες Αιγύπτου
266
- :ERN:
267
- :one: νάκφα Ερυθραίας
268
- :other: νάκφα Ερυθραίας
269
- :ESA:
270
- :one: πεσέτα Ισπανίας (λογαριασμός Α)
271
- :other: πεσέτες Ισπανίας (λογαριασμός Α)
272
- :ESB:
273
- :one: πεσέτα Ισπανίας (μετατρέψιμος λογαριασμός)
274
- :other: πεσέτες Ισπανίας (μετατρέψιμες)
275
- :ESP:
276
- :one: πεσέτα Ισπανίας
277
- :other: πεσέτες Ισπανίας
278
- :ETB:
279
- :one: μπιρ Αιθιοπίας
280
- :other: μπιρ Αιθιοπίας
281
- :EUR:
282
- :one: ευρώ
283
- :other: ευρώ
284
- :symbol:
285
- :FIM:
286
- :one: μάρκο Φινλανδίας
287
- :other: μάρκα Φινλανδίας
288
- :FJD:
289
- :one: δολάριο Φίτζι
290
- :other: δολάρια Φίτζι
291
- :FKP:
292
- :one: λίρα Νησιών Φώλκλαντ
293
- :other: λίρες Νησιών Φώλκλαντ
294
- :FRF:
295
- :one: φράγκο Γαλλίας
296
- :other: φράγκα Γαλλίας
297
- :GBP:
298
- :one: λίρα στερλίνα Βρετανίας
299
- :other: λίρες στερλίνες Βρετανίας
300
- :symbol: £
301
- :GEK:
302
- :one: κούπον λάρι Γεωργίας
303
- :other: κούπον λάρι Γεωργίας
304
- :GEL:
305
- :one: λάρι Γεωργίας
306
- :other: λάρι Γεωργίας
307
- :GHC:
308
- :one: σέντι Γκάνας (GHC)
309
- :other: σέντι Γκάνας (GHC)
310
- :GHS:
311
- :one: σέντι Γκάνας
312
- :other: σέντι Γκανά
313
- :GIP:
314
- :one: λίρα Γιβραλτάρ
315
- :other: λίρες Γιβραλτάρ
316
- :GMD:
317
- :one: νταλάσι Γκάμπιας
318
- :other: νταλάσι Γκάμπιας
319
- :GNF:
320
- :one: φράγκο Γουινέας
321
- :other: φράγκα Γουινέας
322
- :GNS:
323
- :one: συλί Γουινέας
324
- :other: συλί Γουινέας
325
- :GQE:
326
- :one: εκουέλε Ισημερινής Γουινέας
327
- :other: εκουέλε Ισημερινής Γουινέας
328
- :GRD:
329
- :one: δραχμή Ελλάδας
330
- :other: δραχμές Ελλάδας
331
- :symbol: Δρχ
332
- :GTQ:
333
- :one: κουετσάλ Γουατεμάλας
334
- :other: κουετσάλ Γουατεμάλας
335
- :GWE:
336
- :one: γκινέα εσκούδο Πορτογαλίας
337
- :other: γκινέα εσκούδο Πορτογαλίας
338
- :GWP:
339
- :one: πέσο Γουινέα-Μπισάου
340
- :other: πέσο Γουινέα-Μπισάου
341
- :GYD:
342
- :one: δολάριο Γουιάνας
343
- :other: δολάρια Γουιάνας
344
- :HKD:
345
- :one: δολάριο Χονγκ Κονγκ
346
- :other: δολάρια Χονγκ Κονγκ
347
- :symbol: HK$
348
- :HNL:
349
- :one: λεμπίρα Ονδούρας
350
- :other: λεμπίρα Ονδούρας
351
- :HRD:
352
- :one: δηνάριο Κροατίας
353
- :other: δηνάρια Κροατίας
354
- :HRK:
355
- :one: κούνα Κροατίας
356
- :other: κούνα Κροατίας
357
- :HTG:
358
- :one: γκουρντ Αϊτής
359
- :other: γκουρντ Αϊτής
360
- :HUF:
361
- :one: φιορίνι Ουγγαρίας
362
- :other: φιορίνια Ουγγαρίας
363
- :IDR:
364
- :one: ρούπι Ινδονησίας
365
- :other: ρούπια Ινδονησίας
366
- :IEP:
367
- :one: λίρα Ιρλανδίας
368
- :other: λίρες Ιρλανδίας
369
- :ILP:
370
- :one: λίρα Ισραήλ
371
- :other: λίρες Ισραήλ
372
- :ILR:
373
- :one: παλιό σεκέλ Ισραήλ
374
- :other: παλιά σεκέλ Ισραήλ
375
- :ILS:
376
- :one: νέο σέκελ Ισραήλ
377
- :other: νέα σέκελ Ισραήλ
378
- :symbol:
379
- :INR:
380
- :one: ρούπι Ινδίας
381
- :other: ρούπια Ινδίας
382
- :symbol:
383
- :IQD:
384
- :one: δηνάριο Ιράκ
385
- :other: δηνάρια Ιράκ
386
- :IRR:
387
- :one: ριάλ Ιράν
388
- :other: ριάλ Ιράν
389
- :ISJ:
390
- :one: Παλιά κορόνα Ισλανδίας
391
- :other: παλιές κορόνες Ισλανδίας
392
- :ISK:
393
- :one: κορόνα Ισλανδίας
394
- :other: κορόνες Ισλανδίας
395
- :ITL:
396
- :one: λιρέτα Ιταλίας
397
- :other: λιρέτες Ιταλίας
398
- :JMD:
399
- :one: δολάριο Τζαμάικας
400
- :other: δολάρια Τζαμάικας
401
- :JOD:
402
- :one: δηνάριο Ιορδανίας
403
- :other: δηνάρια Ιορδανίας
404
- :JPY:
405
- :one: γιεν Ιαπωνίας
406
- :other: γιεν Ιαπωνίας
407
- :symbol: ¥
408
- :KES:
409
- :one: σελίνι Κένυας
410
- :other: σελίνια Κένυας
411
- :KGS:
412
- :one: σομ Κιργιστάν
413
- :other: σομ Κιργιστάν
414
- :KHR:
415
- :one: ρίελ Καμπότζης
416
- :other: ρίελ Καμπότζης
417
- :KMF:
418
- :one: φράγκο Κομόρος
419
- :other: φράγκα Κομόρο
420
- :KPW:
421
- :one: γουόν Βόρειας Κορέας
422
- :other: γουόν Βόρειας Κορέας
423
- :KRH:
424
- :one: South Korean hwan (1953-1962)
425
- :other: South Korean hwan (1953-1962)
426
- :KRO:
427
- :one: Παλιό γον Νότιας Κορέας
428
- :other: Παλιά γον Νότιας Κορέας
429
- :KRW:
430
- :one: γουόν Νότιας Κορέας
431
- :other: γουόν Νότιας Κορέας
432
- :symbol:
433
- :KWD:
434
- :one: δηνάριο Κουβέιτ
435
- :other: δηνάρια Κουβέιτ
436
- :KYD:
437
- :one: δολάριο Νήσων Κάιμαν
438
- :other: δολάρια Νήσων Κάιμαν
439
- :KZT:
440
- :one: τένγκε Καζακστάν
441
- :other: τένγκε Καζακστάν
442
- :LAK:
443
- :one: κιπ Λάος
444
- :other: κιπ Λάος
445
- :LBP:
446
- :one: λίρα Λιβάνου
447
- :other: λίρες Λιβάνου
448
- :LKR:
449
- :one: ρούπι Σρι Λάνκα
450
- :other: ρούπια Σρι Λάνκα
451
- :LRD:
452
- :one: δολάριο Λιβερίας
453
- :other: δολάρια Λιβερίας
454
- :LSL:
455
- :one: λότι Λεσόθο
456
- :other: λότι Λεσόθο
457
- :LTL:
458
- :one: λίτα Λιθουανίας
459
- :other: λίτα Λιθουανίας
460
- :LTT:
461
- :one: ταλόνας Λιθουανίας
462
- :other: ταλόνας Λιθουανίας
463
- :LUC:
464
- :one: Μετατρέψιμο Φράγκο Λουξεμβούργου
465
- :other: Luxembourgian convertible francs
466
- :LUF:
467
- :one: φράγκο Λουξεμβούργου
468
- :other: φράγκα Λουξεμβούργου
469
- :LUL:
470
- :one: Οικονομικό Φράγκο Λουξεμβούργου
471
- :other: Luxembourg financial francs
472
- :LVL:
473
- :one: λατς Λετονίας
474
- :other: λατς Λετονίας
475
- :LVR:
476
- :one: ρούβλι Λετονίας
477
- :other: ρούβλια Λετονίας
478
- :LYD:
479
- :one: δηνάριο Λιβύης
480
- :other: δηνάρια Λιβύης
481
- :MAD:
482
- :one: ντιράμ Μαρόκου
483
- :other: ντιράμ Μαρόκου
484
- :MAF:
485
- :one: φράγκο Μαρόκου
486
- :other: φράγκα Μαρόκου
487
- :MCF:
488
- :one: Φράγκο Μονακό
489
- :other: Φράγκα Μονακό
490
- :MDC:
491
- :one: Κούπον Μολδαβίας
492
- :other: Κούπον Μολδαβίας
493
- :MDL:
494
- :one: λέι Μολδαβίας
495
- :other: λέι Μολδαβίας
496
- :MGA:
497
- :one: αριάρι Μαδαγασκάρης
498
- :other: αριάρι Μαδαγασκάρης
499
- :MGF:
500
- :one: φράγκο Μαδαγασκάρης
501
- :other: φράγκα Μαδαγασκάρης
502
- :MKD:
503
- :one: δηνάριο Π.Γ.Δ.Μ.
504
- :other: δηνάρια Π.Γ.Δ.Μ.
505
- :MKN:
506
- :one: Παλιό δηνάριο ΠΓΔΜ
507
- :other: Παλιά δηνάρια ΠΓΔΜ
508
- :MLF:
509
- :one: φράγκο Μαλί
510
- :other: φράγκα Μαλί
511
- :MMK:
512
- :one: κυάτ Μιανμάρ
513
- :other: κυάτ Μιανμάρ
514
- :MNT:
515
- :one: τουγκρίκ Μογγολίας
516
- :other: τουγκρίκ Μογγολίας
517
- :MOP:
518
- :one: πατάκα Μακάο
519
- :other: πατάκα Μακάο
520
- :MRO:
521
- :one: ουγκουίγκα Μαυριτανίας
522
- :other: ουγκουίγκα Μαυριτανίας
523
- :MTL:
524
- :one: λιρέτα Μάλτας
525
- :other: λιρέτες Μάλτας
526
- :MTP:
527
- :one: λίρα Μάλτας
528
- :other: λίρες Μάλτας
529
- :MUR:
530
- :one: ρούπι Μαυρικίου
531
- :other: ρούπια Μαυρικίου
532
- :MVP:
533
- :one: Maldivian rupee
534
- :other: Maldivian rupees
535
- :MVR:
536
- :one: ρουφίγια Μαλδίβων
537
- :other: ρουφίγια Μαλδίβων
538
- :MWK:
539
- :one: κουάτσα Μαλάουι
540
- :other: κουάτσα Μαλάουι
541
- :MXN:
542
- :one: πέσο Μεξικού
543
- :other: πέσο Μεξικού
544
- :symbol: MX$
545
- :MXP:
546
- :one: ασημένιο πέσο Μεξικού (MXP)
547
- :other: ασημένια πέσο Μεξικού (MXP)
548
- :MXV:
549
- :one: Mexican investment unit
550
- :other: Mexican investment units
551
- :MYR:
552
- :one: ρινγκίτ Μαλαισίας
553
- :other: ρινγκίτ Μαλαισίας
554
- :MZE:
555
- :one: εσκούδο Μοζαμβίκης
556
- :other: εσκούδο Μοζαμβίκης
557
- :MZM:
558
- :one: παλιό μετικάλ Μοζαμβίκης
559
- :other: παλιά μετικάλ Μοζαμβίκης
560
- :MZN:
561
- :one: μετικάλ Μοζαμβίκης
562
- :other: μετικάλ Μοζαμβίκης
563
- :NAD:
564
- :one: δολάριο Ναμίμπια
565
- :other: δολάρια Ναμίμπια
566
- :NGN:
567
- :one: νάιρα Νιγηρίας
568
- :other: νάιρα Νιγηρίας
569
- :NIC:
570
- :one: κόρδοβα Νικαράγουας
571
- :other: κόρδοβα Νικαράγουας
572
- :NIO:
573
- :one: χρυσή κόρδοβα Νικαράγουας
574
- :other: χρυσές κόρδοβα Νικαράγουας
575
- :NLG:
576
- :one: γκίλντα Ολλανδίας
577
- :other: γκίλντα Ολλανδίας
578
- :NOK:
579
- :one: κορόνα Νορβηγίας
580
- :other: κορόνες Νορβηγίας
581
- :NPR:
582
- :one: ρούπι Νεπάλ
583
- :other: ρούπια Νεπάλ
584
- :NZD:
585
- :one: δολάριο Νέας Ζηλανδίας
586
- :other: δολάρια Νέας Ζηλανδίας
587
- :symbol: NZ$
588
- :OMR:
589
- :one: ριάλ Ομάν
590
- :other: ριάλ Ομάν
591
- :PAB:
592
- :one: μπαλμπόα Παναμά
593
- :other: μπαλμπόα Παναμά
594
- :PEI:
595
- :one: ίντι Περού
596
- :other: ίντι Περού
597
- :PEN:
598
- :one: νέο σολ Περού
599
- :other: νέα Σολ Περού
600
- :PES:
601
- :one: σολ Περού
602
- :other: σολ Περού
603
- :PGK:
604
- :one: κίνα Παπούα Νέα Γουινέα
605
- :other: κίνα Παπούα Νέα Γουινέα
606
- :PHP:
607
- :one: πέσο Φιλιππίνων
608
- :other: πέσο Φιλιππίνων
609
- :PKR:
610
- :one: ρούπι Πακιστάν
611
- :other: ρούπια Πακιστάν
612
- :PLN:
613
- :one: ζλότι Πολωνίας
614
- :other: ζλότι Πολωνίας
615
- :PLZ:
616
- :one: ζλότυ Πολωνίας (PLZ)
617
- :other: ζλότυ Πολωνίας (PLZ)
618
- :PTE:
619
- :one: εσκούδο Πορτογαλίας
620
- :other: εσκούδο Πορτογαλίας
621
- :PYG:
622
- :one: γκουαρανί Παραγουάης
623
- :other: γκουαρανί Παραγουάης
624
- :QAR:
625
- :one: ριάλ Κατάρ
626
- :other: ριάλ Κατάρ
627
- :RHD:
628
- :one: δολάριο Ροδεσίας
629
- :other: δολάρια Ροδεσίας
630
- :ROL:
631
- :one: παλιό λέι Ρουμανίας
632
- :other: παλιά λέι Ρουμανίας
633
- :RON:
634
- :one: λεβ Ρουμανίας
635
- :other: λεβ Ρουμανίας
636
- :RSD:
637
- :one: δηνάριο Σερβίας
638
- :other: δηνάρια Σερβίας
639
- :RUB:
640
- :one: ρούβλι Ρωσίας
641
- :other: ρούβλια Ρωσίας
642
- :RUR:
643
- :one: ρούβλι Ρωσίας (RUR)
644
- :other: ρούβλια Ρωσίας (1991-1998)
645
- :RWF:
646
- :one: φράγκο Ρουάντας
647
- :other: φράγκα Ρουάντας
648
- :SAR:
649
- :one: ριάλ Σαουδικής Αραβίας
650
- :other: ριάλ Σαουδικής Αραβίας
651
- :SBD:
652
- :one: δολάριο Νήσων Σολομώντος
653
- :other: δολάρια Νήσων Σολομώντος
654
- :SCR:
655
- :one: ρούπι Σεϋχέλες
656
- :other: ρούπια Σεϋχέλες
657
- :SDD:
658
- :one: δηνάριο Σουδάν
659
- :other: δηνάρια Σουδάν
660
- :SDG:
661
- :one: λίρα Σουδάν
662
- :other: λίρες Σουδάν
663
- :SDP:
664
- :one: παλιά λίρα Σουδάν
665
- :other: παλαιές λίρες Σουδάν
666
- :SEK:
667
- :one: κορόνα Σουηδίας
668
- :other: κορόνες Σουηδίας
669
- :SGD:
670
- :one: δολάριο Σιγκαπούρης
671
- :other: δολάρια Σιγκαπούρης
672
- :SHP:
673
- :one: λίρα Αγίας Ελένης
674
- :other: λίρες Αγίας Ελένης
675
- :SIT:
676
- :one: τόλαρ Σλοβενίας
677
- :other: τόλαρ Σλοβ
678
- :SKK:
679
- :one: κορόνα Σλοβενίας
680
- :other: κορόνες Σλοβενίας
681
- :SLL:
682
- :one: λεόνε Σιέρα Λεόνε
683
- :other: λεόνε Σιέρα Λεόνε
684
- :SOS:
685
- :one: σελίνι Σομαλίας
686
- :other: σελίνια Σομαλίας
687
- :SRD:
688
- :one: δολάριο Σουρινάμ
689
- :other: δολάρια Σουρινάμ
690
- :SRG:
691
- :one: γκίλντα Σουρινάμ
692
- :other: γκίλντα Σουρινάμ
693
- :SSP:
694
- :one: λίρα Νότιου Σουδάν
695
- :other: λίρες Νότιου Σουδάν
696
- :STD:
697
- :one: ντόμπρα Σάο Τόμε και Πρίνσιπε
698
- :other: ντόμπρα Σάο Τόμε και Πρίνσιπε
699
- :SUR:
700
- :one: σοβιετικό ρούβλι
701
- :other: σοβιετικά ρούβλια
702
- :SVC:
703
- :one: κολόν Ελ Σαλβαδόρ
704
- :other: κολόν Ελ Σαλβαδόρ
705
- :SYP:
706
- :one: λίρα Συρίας
707
- :other: λίρες Συρίας
708
- :SZL:
709
- :one: λιλανγκένι Σουαζιλάνδη
710
- :other: λιλανγκένι Σουαζιλάνδη
711
- :THB:
712
- :one: μπατ Ταϊλάνδης
713
- :other: μπατ Ταϊλάνδης
714
- :symbol: ฿
715
- :TJR:
716
- :one: ρούβλι Τατζικιστάν
717
- :other: ρούβλια Τατζικιστάν
718
- :TJS:
719
- :one: σομόν Τατζικιστάν
720
- :other: σομόν Τατζικιστάν
721
- :TMM:
722
- :one: μανάτ Τουρκμενιστάν
723
- :other: μανάτ Τουρκμενιστάν
724
- :TMT:
725
- :one: Νέο μανάτ Τουρκμενιστάν
726
- :other: Νέα μανάτ Τουρκμενιστάν
727
- :TND:
728
- :one: δηνάριο Τυνησίας
729
- :other: δηνάρια Τυνησίας
730
- :TOP:
731
- :one: πάνγκα Τόγκα
732
- :other: πάνγκα Τόγκα
733
- :TPE:
734
- :one: εσκούδο Τιμόρ
735
- :other: εσκούδο Τιμόρ
736
- :TRL:
737
- :one: παλιά λίρα Τουρκίας
738
- :other: παλιές λίρες Τουρκίας
739
- :TRY:
740
- :one: λίρα Τουρκίας
741
- :other: λίρες Τουρκίας
742
- :TTD:
743
- :one: δολάριο Τρινιδάδ και Τομπάγκο
744
- :other: δολάρια Τρινιδάδ και Τομπάγκο
745
- :TWD:
746
- :one: νέο δολάριο Ταϊβάν
747
- :other: νέα δολάρια Ταϊβάν
748
- :symbol: NT$
749
- :TZS:
750
- :one: σελίνι Τανζανίας
751
- :other: σελίνι Τανζανίας
752
- :UAH:
753
- :one: χρίφνα Ουκρανίας
754
- :other: χρίφνα Ουκρανίας
755
- :UAK:
756
- :one: καρμποβανέτς Ουκρανίας
757
- :other: καρμποβανέτς Ουκρανίας
758
- :UGS:
759
- :one: σελίνι Ουγκάντας (UGS)
760
- :other: σελίνια Ουγκάντας (UGS)
761
- :UGX:
762
- :one: σελίνι Ουγκάντας
763
- :other: σελίνια Ουγκάντας
764
- :USD:
765
- :one: δολάριο Η.Π.Α.
766
- :other: δολάρια Η.Π.Α.
767
- :symbol: $
768
- :USN:
769
- :one: δολάριο Η.Π.Α. (επόμενη ημέρα)
770
- :other: δολάρια Η.Π.Α. (επόμενη ημέρα)
771
- :USS:
772
- :one: δολάριο Η.Π.Α. (ίδια ημέρα)
773
- :other: δολάρια Η.Π.Α. (ίδια ημέρα)
774
- :UYI:
775
- :one: Uruguayan peso (indexed units)
776
- :other: Uruguayan pesos (indexed units)
777
- :UYP:
778
- :one: πέσο Ουρουγουάης (UYP)
779
- :other: πέσο Ουρουγουάης (UYP)
780
- :UYU:
781
- :one: πέσο Ουρουγουάης
782
- :other: πέσο Ουρουγουάης
783
- :UZS:
784
- :one: σομ Ουζμπεκιστάν
785
- :other: σομ Ουζμπεκιστάν
786
- :VEB:
787
- :one: μπολιβάρ Βενεζουέλας (1871-2008)
788
- :other: μπολιβάρ Βενεζουέλας (1871-2008)
789
- :VEF:
790
- :one: μπολιβάρ Βενεζουέλας
791
- :other: μπολιβάρ Βενεζουέλας
792
- :VND:
793
- :one: ντονγκ Βιετνάμ
794
- :other: ντονγκ Βιετνάμ
795
- :symbol:
796
- :VNN:
797
- :one: Παλαιό ντονγκ Βιετνάμ
798
- :other: Παλαιά ντονγκ Βιετνάμ
799
- :VUV:
800
- :one: βατού Βανουάτου
801
- :other: βατού Βανουάτου
802
- :WST:
803
- :one: τάλα Σαμόας
804
- :other: τάλα Σαμόας
805
- :XAF:
806
- :one: φράγκο Κεντρικής Αφρικής
807
- :other: φράγκα Κεντρικής Αφρικής
808
- :symbol: FCFA
809
- :XAG:
810
- :one: troy ounce of silver
811
- :other: troy ounces of silver
812
- :XAU:
813
- :one: troy ounce of gold
814
- :other: troy ounces of gold
815
- :XBA:
816
- :one: ευρωπαϊκή σύνθετη μονάδα
817
- :other: ευρωπαϊκές σύνθετες μονάδες
818
- :XBB:
819
- :one: ευρωπαϊκή νομισματική μονάδα
820
- :other: ευρωπαϊκές νομισματικές μονάδες
821
- :XBC:
822
- :one: ευρωπαϊκή μονάδα λογαριασμού (XBC)
823
- :other: ευρωπαϊκές μονάδες λογαριασμού (XBC)
824
- :XBD:
825
- :one: ευρωπαϊκή μονάδα λογαριασμού (XBD)
826
- :other: ευρωπαϊκές μονάδες λογαριασμού (XBD)
827
- :XCD:
828
- :one: δολάριο Ανατολικής Καραϊβικής
829
- :other: δολάρια Ανατολικής Καραϊβικής
830
- :symbol: EC$
831
- :XDR:
832
- :one: ειδικό δικαίωμα ανάληψης
833
- :other: ειδικά δικαιώματα ανάληψης
834
- :XEU:
835
- :one: ευρωπαϊκή συναλλαγματική μονάδα
836
- :other: ευρωπαϊκές συναλλαγματικές μονάδες
837
- :XFO:
838
- :one: χρυσό φράγκο Γαλλίας
839
- :other: χρυσά φράγκα Γαλλίας
840
- :XFU:
841
- :one: UIC-φράγκο Γαλλίας
842
- :other: UIC-φράγκα Γαλλίας
843
- :XOF:
844
- :one: φράγκο BCEAO CFA
845
- :other: φράγκα BCEAO CFA
846
- :symbol: CFA
847
- :XPD:
848
- :one: troy ounce of palladium
849
- :other: troy ounces of palladium
850
- :XPF:
851
- :one: φράγκο CFP
852
- :other: φράγκα CFP
853
- :symbol: CFPF
854
- :XPT:
855
- :one: troy ounce of platinum
856
- :other: troy ounces of platinum
857
- :XRE:
858
- :one: Ταμείο RINET
859
- :other: Ταμείο RINET
860
- :XSU:
861
- :one: Sucre
862
- :other: Sucres
863
- :XTS:
864
- :one: Testing Currency unit
865
- :other: Testing Currency units
866
- :XUA:
867
- :one: ADB unit of account
868
- :other: ADB units of account
869
- :XXX:
870
- :one: (άγνωστο νόμισμα)
871
- :other: (άγνωστο νόμισμα)
872
- :YDD:
873
- :one: δηνάριο Υεμένης
874
- :other: δηνάρια Υεμένης
875
- :YER:
876
- :one: ριάλ Υεμένης
877
- :other: ριάλ Υεμένης
878
- :YUD:
879
- :one: μεταλλικό δηνάριο Γιουγκοσλαβίας
880
- :other: μεταλλικά δηνάρια Γιουγκοσλαβίας
881
- :YUM:
882
- :one: νέο δηνάριο Γιουγκοσλαβίας
883
- :other: νέο δηνάριο Γιουγκοσλαβίας
884
- :YUN:
885
- :one: μετατρέψιμο δινάριο Γιουγκοσλαβίας
886
- :other: μετατρέψιμο δηνάριο Γιουγκοσλαβίας
887
- :YUR:
888
- :one: Αναμορφωμένο δηνάριο Γιουγκοσλαβίας
889
- :other: Αναμορφωμένα δηνάρια Γιουγκοσλαβίας
890
- :ZAL:
891
- :one: ραντ Νότιας Αφρικής (οικονομικό)
892
- :other: ραντ Νότιας Αφρικής (οικονομικό)
893
- :ZAR:
894
- :one: ραντ Νότιας Αφρικής
895
- :other: ραντ Νότιας Αφρικής
896
- :ZMK:
897
- :one: κουάτσα Ζάμπιας (1968-2012)
898
- :other: κουάτσα Ζάμπιας (1968-2012)
899
- :ZMW:
900
- :one: κουάτσα Ζάμπιας
901
- :other: κουάτσα Ζάμπιας
902
- :ZRN:
903
- :one: νέο ζαΐρ Ζαΐρ
904
- :other: νέα ζαΐρ Ζαΐρ
905
- :ZRZ:
906
- :one: ζαΐρ Ζαΐρ
907
- :other: ζαΐρ Ζαΐρ
908
- :ZWD:
909
- :one: δολάριο Ζιμπάμπουε
910
- :other: δολάρια Ζιμπάμπουε
911
- :ZWL:
912
- :one: Δολάριο Ζιμπάμπουε (2009)
913
- :other: Δολάριο Ζιμπάμπουε (2009)
914
- :ZWR:
915
- :one: Δολάριο Ζιμπάμπουε (2008)
916
- :other: Δολάρια Ζιμπάμπουε (2008)
1
+ ---
2
+ :el:
3
+ :currencies:
4
+ :ADP:
5
+ :one: "πεσέτα Ανδόρας"
6
+ :other: "πεσέτες Ανδόρας"
7
+ :AED:
8
+ :one: "ντιράμ Ηνωμένων Αραβικών Εμιράτων"
9
+ :other: "ντιράμ Ηνωμένων Αραβικών Εμιράτων"
10
+ :AFA:
11
+ :one: "αφγάνι Αφγανιστάν (AFA)"
12
+ :other: "αφγάνι Αφγανιστάν (AFA)"
13
+ :AFN:
14
+ :one: "αφγάνι Αφγανιστάν"
15
+ :other: "αφγάνι Αφγανιστάν"
16
+ :ALK:
17
+ :one: "Παλαιό λεκ Αλβανίας"
18
+ :other: "Παλαιά λεκ Αλβανίας"
19
+ :ALL:
20
+ :one: "λεκ Αλβανίας"
21
+ :other: "λεκ Αλβανίας"
22
+ :AMD:
23
+ :one: "ντραμ Αρμενίας"
24
+ :other: "ντραμ Αρμενίας"
25
+ :ANG:
26
+ :one: "γκίλντα Ολλανδικών Αντιλλών"
27
+ :other: "γκίλντα Ολλανδικών Αντιλλών"
28
+ :AOA:
29
+ :one: "κουάνζα Ανγκόλας"
30
+ :other: "κουάνζα Ανγκόλας"
31
+ :AOK:
32
+ :one: "κουάνζα Ανγκόλας (AOK)"
33
+ :other: "κουάνζα Ανγκόλας (AOK)"
34
+ :AON:
35
+ :one: "νέο κουάνζα Ανγκόλας (19902000)"
36
+ :other: "νέα κουάνζα Ανγκόλας (19902000)"
37
+ :AOR:
38
+ :one: "Angolan readjusted kwanza (19951999)"
39
+ :other: "Angolan readjusted kwanzas (19951999)"
40
+ :ARA:
41
+ :one: "αουστράλ Αργεντινής"
42
+ :other: "αουστράλ Αργεντινής"
43
+ :ARL:
44
+ :one: "Πέσο λέι Αργετινής"
45
+ :other: "Πέσο λέι Αργετινής"
46
+ :ARM:
47
+ :one: "Argentine peso (18811970)"
48
+ :other: "Argentine pesos (18811970)"
49
+ :ARP:
50
+ :one: "πέσο Αργεντινής (ARP)"
51
+ :other: "πέσο Αργεντινής (ARP)"
52
+ :ARS:
53
+ :one: "πέσο Αργεντινής"
54
+ :other: "πέσο Αργεντινής"
55
+ :symbol: "$"
56
+ :ATS:
57
+ :one: "σελίνι Αυστρίας"
58
+ :other: "σελίνια Αυστρίας"
59
+ :AUD:
60
+ :one: "δολάριο Αυστραλίας"
61
+ :other: "δολάρια Αυστραλίας"
62
+ :symbol: "A$"
63
+ :AWG:
64
+ :one: "φλορίνι Αρούμπα"
65
+ :other: "φλορίνια Αρούμπα"
66
+ :AZM:
67
+ :one: "μανάτ Αζερμπαϊτζάν (19932006)"
68
+ :other: "μανάτ Αζερμπαϊτζάν (1993–2006)"
69
+ :AZN:
70
+ :one: "μανάτ Αζερμπαϊτζάν"
71
+ :other: "μανάτ Αζερμπαϊτζάν"
72
+ :BAD:
73
+ :one: "δηνάριο Βοσνίας-Ερζεγοβίνης"
74
+ :other: "δηνάρια Βοσνίας-Ερζεγοβίνης"
75
+ :BAM:
76
+ :one: "μετατρέψιμο μάρκο Βοσνίας-Ερζεγοβίνης"
77
+ :other: "μετατρέψιμα μάρκα Βοσνίας-Ερζεγοβίνης"
78
+ :BAN:
79
+ :one: "Νέο δινάριο Βοσνίας-Ερζεγοβίνης"
80
+ :other: "Νέα δινάρια Βοσνίας-Ερζεγοβίνης"
81
+ :BBD:
82
+ :one: "δολάριο Μπαρμπάντος"
83
+ :other: "δολάρια Μπαρμπάντος"
84
+ :symbol: "$"
85
+ :BDT:
86
+ :one: "τάκα Μπαγκλαντές"
87
+ :other: "τάκα Μπαγκλαντές"
88
+ :symbol: "৳"
89
+ :BEC:
90
+ :one: "φράγκο Βελγίου (μετατρέψιμο)"
91
+ :other: "φράγκα Βελγίου (μετατρέψιμα)"
92
+ :BEF:
93
+ :one: "φράγκο Βελγίου"
94
+ :other: "φράγκα Βελγίου"
95
+ :BEL:
96
+ :one: "φράγκο Βελγίου (οικονομικό)"
97
+ :other: "φράγκα Βελγίου (οικονομικό)"
98
+ :BGL:
99
+ :one: "μεταλλικό λεβ Βουλγαρίας"
100
+ :other: "μεταλλικά λεβ Βουλγαρίας"
101
+ :BGM:
102
+ :one: "Σοσιαλιστικό λεβ Βουλγαρίας"
103
+ :other: "Σοσιαλιστικά λεβ Βουλγαρίας"
104
+ :BGN:
105
+ :one: "λεβ Βουλγαρίας"
106
+ :other: "λεβ Βουλγαρίας"
107
+ :BGO:
108
+ :one: "Παλαιό λεβ Βουλγαρίας"
109
+ :other: "Παλαιά λεβ Βουλγαρίας"
110
+ :BHD:
111
+ :one: "δηνάριο Μπαχρέιν"
112
+ :other: "δηνάρια Μπαχρέιν"
113
+ :BIF:
114
+ :one: "φράγκο Μπουρούντι"
115
+ :other: "φράγκα Μπουρούντι"
116
+ :BMD:
117
+ :one: "δολάριο Βερμούδων"
118
+ :other: "δολάρια Βερμούδων"
119
+ :symbol: "$"
120
+ :BND:
121
+ :one: "δολάριο Μπρουνέι"
122
+ :other: "δολάρια Μπρουνέι"
123
+ :symbol: "$"
124
+ :BOB:
125
+ :one: "μπολιβιάνο Βολιβίας"
126
+ :other: "μπολιβιάνο Βολιβίας"
127
+ :BOL:
128
+ :one: "Παλαιό βολιβιάνο Βολιβίας"
129
+ :other: "Παλαιά βολιβιάνο Βολιβίας"
130
+ :BOP:
131
+ :one: "πέσο Βολιβίας"
132
+ :other: "πέσο Βολιβίας"
133
+ :BOV:
134
+ :one: "μβντολ Βολιβίας"
135
+ :other: "μβντολ Βολιβίας"
136
+ :BRB:
137
+ :one: "νέο κρουζέιρο Βραζιλίας (BRB)"
138
+ :other: "νέα κρουζέιρο Βραζιλίας (BRB)"
139
+ :BRC:
140
+ :one: "κρουζάντο Βραζιλίας"
141
+ :other: "κρουζάντο Βραζιλίας"
142
+ :BRE:
143
+ :one: "κρουζέιρο Βραζιλίας (BRE)"
144
+ :other: "κρουζέιρο Βραζιλίας (BRE)"
145
+ :BRL:
146
+ :one: "ρεάλ Βραζιλίας"
147
+ :other: "ρεάλ Βραζιλίας"
148
+ :symbol: "R$"
149
+ :BRN:
150
+ :one: "νέο κρουζάντο Βραζιλίας"
151
+ :other: "νέα κρουζάντο Βραζιλίας"
152
+ :BRR:
153
+ :one: "κρουζέιρο Βραζιλίας"
154
+ :other: "κρουζέιρο Βραζιλίας"
155
+ :BRZ:
156
+ :one: "Παλαιό κρουζέιρο Βραζιλίας"
157
+ :other: "Παλαιά κρουζέιρο Βραζιλίας"
158
+ :BSD:
159
+ :one: "δολάριο Μπαχάμες"
160
+ :other: "δολάρια Μπαχάμες"
161
+ :symbol: "$"
162
+ :BTN:
163
+ :one: "νγκούλτρουμ Μπουτάν"
164
+ :other: "νγκούλτρουμ Μπουτάν"
165
+ :BUK:
166
+ :one: "κιάτ Βιρμανίας"
167
+ :other: "κιάτ Βιρμανίας"
168
+ :BWP:
169
+ :one: "πούλα Μποτσουάνας"
170
+ :other: "πούλα Μποτσουάνας"
171
+ :BYB:
172
+ :one: "νέο ρούβλι Λευκορωσίας (1994–1999)"
173
+ :other: "νέα ρούβλια Λευκορωσίας (1994–1999)"
174
+ :BYR:
175
+ :one: "ρούβλι Λευκορωσίας"
176
+ :other: "ρούβλια Λευκορωσίας"
177
+ :symbol: "р."
178
+ :BZD:
179
+ :one: "δολάριο Μπελίζ"
180
+ :other: "δολάρια Μπελίζ"
181
+ :symbol: "$"
182
+ :CAD:
183
+ :one: "δολάριο Καναδά"
184
+ :other: "δολάρια Καναδά"
185
+ :symbol: "CA$"
186
+ :CDF:
187
+ :one: "φράγκο Κονγκό"
188
+ :other: "φράγκα Κονγκό"
189
+ :CHE:
190
+ :one: "ευρώ WIR"
191
+ :other: "ευρώ WIR"
192
+ :CHF:
193
+ :one: "φράγκο Ελβετίας"
194
+ :other: "φράγκα Ελβετίας"
195
+ :CHW:
196
+ :one: "φράγκο WIR"
197
+ :other: "φράγκα WIR"
198
+ :CLE:
199
+ :one: "Εσκούδο Χιλής"
200
+ :other: "Εσκούδο Χιλής"
201
+ :CLF:
202
+ :one: "ουνιδάδες ντε φομέντο Χιλής"
203
+ :other: "ουνιδάδες ντε φομέντο Χιλής"
204
+ :CLP:
205
+ :one: "πέσο Χιλής"
206
+ :other: "πέσο Χιλής"
207
+ :symbol: "$"
208
+ :CNX:
209
+ :one: "Δολάριο Λαϊκής Τράπεζας Κίνας"
210
+ :other: "Δολάρια Λαϊκής Τράπεζας Κίνας"
211
+ :CNY:
212
+ :one: "γουάν Κίνας"
213
+ :other: "γουάν Κίνας"
214
+ :symbol: "CN¥"
215
+ :COP:
216
+ :one: "πέσο Κολομβίας"
217
+ :other: "πέσο Κολομβίας"
218
+ :symbol: "$"
219
+ :COU:
220
+ :one: "Colombian real value unit"
221
+ :other: "Colombian real value units"
222
+ :CRC:
223
+ :one: "κολόν Κόστα Ρίκα"
224
+ :other: "κολόν Κόστα Ρίκα"
225
+ :symbol: "₡"
226
+ :CSD:
227
+ :one: "παλιό δινάρη Σερβίας"
228
+ :other: "παλιά δινάρια Σερβίας"
229
+ :CSK:
230
+ :one: "σκληρή κορόνα Τσεχοσλοβακίας"
231
+ :other: "σκληρές κορόνες Τσεχοσλοβακίας"
232
+ :CUC:
233
+ :one: "μετατρέψιμο πέσο Κούβας"
234
+ :other: "μετατρέψιμα πέσο Κούβας"
235
+ :CUP:
236
+ :one: "πέσο Κούβας"
237
+ :other: "πέσο Κούβας"
238
+ :symbol: "$"
239
+ :CVE:
240
+ :one: "εσκούδο Πράσινου Ακρωτηρίου"
241
+ :other: "εσκούδο Πράσινου Ακρωτηρίου"
242
+ :CYP:
243
+ :one: "λίρα Κύπρου"
244
+ :other: "λίρες Κύπρου"
245
+ :CZK:
246
+ :one: "κορόνα Τσεχίας"
247
+ :other: "κορόνες Τσεχίας"
248
+ :DDM:
249
+ :one: "όστμαρκ Ανατολικής Γερμανίας"
250
+ :other: "όστμαρκ Ανατολικής Γερμανίας"
251
+ :DEM:
252
+ :one: "μάρκο Γερμανίας"
253
+ :other: "μάρκα Γερμανίας"
254
+ :DJF:
255
+ :one: "φράγκο Τζιμπουτί"
256
+ :other: "φράγκα Τζιμπουτί"
257
+ :DKK:
258
+ :one: "κορόνα Δανίας"
259
+ :other: "κορόνες Δανίας"
260
+ :DOP:
261
+ :one: "πέσο Δομινικανής Δημοκρατίας"
262
+ :other: "πέσο Δομινικανής Δημοκρατίας"
263
+ :symbol: "$"
264
+ :DZD:
265
+ :one: "δηνάριο Αλγερίας"
266
+ :other: "δηνάρια Αλγερίας"
267
+ :ECS:
268
+ :one: "σούκρε Εκουαδόρ"
269
+ :other: "σούκρε Εκουαδόρ"
270
+ :ECV:
271
+ :one: "Ecuadorian unit of constant value"
272
+ :other: "Ecuadorian units of constant value"
273
+ :EEK:
274
+ :one: "κορόνα Εσθονίας"
275
+ :other: "κορόνες Εσθονίας"
276
+ :EGP:
277
+ :one: "λίρα Αιγύπτου"
278
+ :other: "λίρες Αιγύπτου"
279
+ :ERN:
280
+ :one: "νάκφα Ερυθραίας"
281
+ :other: "νάκφα Ερυθραίας"
282
+ :ESA:
283
+ :one: "πεσέτα Ισπανίας (λογαριασμός Α)"
284
+ :other: "πεσέτες Ισπανίας (λογαριασμός Α)"
285
+ :ESB:
286
+ :one: "πεσέτα Ισπανίας (μετατρέψιμος λογαριασμός)"
287
+ :other: "πεσέτες Ισπανίας (μετατρέψιμες)"
288
+ :ESP:
289
+ :one: "πεσέτα Ισπανίας"
290
+ :other: "πεσέτες Ισπανίας"
291
+ :symbol: "₧"
292
+ :ETB:
293
+ :one: "μπιρ Αιθιοπίας"
294
+ :other: "μπιρ Αιθιοπίας"
295
+ :EUR:
296
+ :one: "ευρώ"
297
+ :other: "ευρώ"
298
+ :symbol: "€"
299
+ :FIM:
300
+ :one: "μάρκο Φινλανδίας"
301
+ :other: "μάρκα Φινλανδίας"
302
+ :FJD:
303
+ :one: "δολάριο Φίτζι"
304
+ :other: "δολάρια Φίτζι"
305
+ :symbol: "$"
306
+ :FKP:
307
+ :one: "λίρα Νησιών Φώκλαντ"
308
+ :other: "λίρες Νησιών Φώκλαντ"
309
+ :FRF:
310
+ :one: "φράγκο Γαλλίας"
311
+ :other: "φράγκα Γαλλίας"
312
+ :GBP:
313
+ :one: "λίρα στερλίνα Βρετανίας"
314
+ :other: "λίρες στερλίνες Βρετανίας"
315
+ :symbol: "£"
316
+ :GEK:
317
+ :one: "κούπον λάρι Γεωργίας"
318
+ :other: "κούπον λάρι Γεωργίας"
319
+ :GEL:
320
+ :one: "λάρι Γεωργίας"
321
+ :other: "λάρι Γεωργίας"
322
+ :GHC:
323
+ :one: "σέντι Γκάνας (GHC)"
324
+ :other: "σέντι Γκάνας (GHC)"
325
+ :GHS:
326
+ :one: "σέντι Γκάνας"
327
+ :other: "σέντι Γκάνας"
328
+ :symbol: "₵"
329
+ :GIP:
330
+ :one: "λίρα Γιβραλτάρ"
331
+ :other: "λίρες Γιβραλτάρ"
332
+ :symbol: "£"
333
+ :GMD:
334
+ :one: "νταλάσι Γκάμπιας"
335
+ :other: "νταλάσι Γκάμπιας"
336
+ :GNF:
337
+ :one: "φράγκο Γουινέας"
338
+ :other: "φράγκα Γουινέας"
339
+ :GNS:
340
+ :one: "συλί Γουινέας"
341
+ :other: "συλί Γουινέας"
342
+ :GQE:
343
+ :one: "εκουέλε Ισημερινής Γουινέας"
344
+ :other: "εκουέλε Ισημερινής Γουινέας"
345
+ :GRD:
346
+ :one: "δραχμή Ελλάδας"
347
+ :other: "δραχμές Ελλάδας"
348
+ :symbol: "Δρχ"
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: "παλιό σεκέλ Ισραήλ"
392
+ :other: "παλιά σεκέλ Ισραήλ"
393
+ :ILS:
394
+ :one: "νέο σέκελ Ισραήλ"
395
+ :other: "νέα σέκελ Ισραήλ"
396
+ :symbol: "₪"
397
+ :INR:
398
+ :one: "ρουπία Ινδίας"
399
+ :other: "ρουπίες Ινδίας"
400
+ :symbol: "₹"
401
+ :IQD:
402
+ :one: "δηνάριο Ιράκ"
403
+ :other: "δηνάρια Ιράκ"
404
+ :IRR:
405
+ :one: "ριάλ Ιράν"
406
+ :other: "ριάλ Ιράν"
407
+ :ISJ:
408
+ :one: "Παλιά κορόνα Ισλανδίας"
409
+ :other: "παλιές κορόνες Ισλανδίας"
410
+ :ISK:
411
+ :one: "κορόνα Ισλανδίας"
412
+ :other: "κορόνες Ισλανδίας"
413
+ :ITL:
414
+ :one: "λιρέτα Ιταλίας"
415
+ :other: "λιρέτες Ιταλίας"
416
+ :JMD:
417
+ :one: "δολάριο Τζαμάικας"
418
+ :other: "δολάρια Τζαμάικας"
419
+ :symbol: "$"
420
+ :JOD:
421
+ :one: "δηνάριο Ιορδανίας"
422
+ :other: "δηνάρια Ιορδανίας"
423
+ :JPY:
424
+ :one: "γιεν Ιαπωνίας"
425
+ :other: "γιεν Ιαπωνίας"
426
+ :symbol: "JP¥"
427
+ :KES:
428
+ :one: "σελίνι Κένυας"
429
+ :other: "σελίνια Κένυας"
430
+ :KGS:
431
+ :one: "σομ Κιργιζίας"
432
+ :other: "σομ Κιργιζίας"
433
+ :KHR:
434
+ :one: "ρίελ Καμπότζης"
435
+ :other: "ρίελ Καμπότζης"
436
+ :symbol: "៛"
437
+ :KMF:
438
+ :one: "φράγκο Κομορών"
439
+ :other: "φράγκα Κομορών"
440
+ :KPW:
441
+ :one: "γουόν Βόρειας Κορέας"
442
+ :other: "γουόν Βόρειας Κορέας"
443
+ :KRH:
444
+ :one: "South Korean hwan (1953–1962)"
445
+ :other: "South Korean hwan (1953–1962)"
446
+ :KRO:
447
+ :one: "Παλιό γον Νότιας Κορέας"
448
+ :other: "Παλιά γον Νότιας Κορέας"
449
+ :KRW:
450
+ :one: "γουόν Νότιας Κορέας"
451
+ :other: "γουόν Νότιας Κορέας"
452
+ :symbol: "₩"
453
+ :KWD:
454
+ :one: "δηνάριο Κουβέιτ"
455
+ :other: "δηνάρια Κουβέιτ"
456
+ :KYD:
457
+ :one: "δολάριο Νήσων Κάιμαν"
458
+ :other: "δολάρια Νήσων Κάιμαν"
459
+ :symbol: "$"
460
+ :KZT:
461
+ :one: "τένγκε Καζακστάν"
462
+ :other: "τένγκε Καζακστάν"
463
+ :symbol: "₸"
464
+ :LAK:
465
+ :one: "κιπ Λάος"
466
+ :other: "κιπ Λάος"
467
+ :symbol: "₭"
468
+ :LBP:
469
+ :one: "λίρα Λιβάνου"
470
+ :other: "λίρες Λιβάνου"
471
+ :LKR:
472
+ :one: "ρουπία Σρι Λάνκα"
473
+ :other: "ρουπίες Σρι Λάνκα"
474
+ :LRD:
475
+ :one: "δολάριο Λιβερίας"
476
+ :other: "δολάρια Λιβερίας"
477
+ :symbol: "$"
478
+ :LSL:
479
+ :one: "λότι Λεσόθο"
480
+ :other: "λότι Λεσόθο"
481
+ :LTL:
482
+ :one: "λίτα Λιθουανίας"
483
+ :other: "λίτα Λιθουανίας"
484
+ :LTT:
485
+ :one: "ταλόνας Λιθουανίας"
486
+ :other: "ταλόνας Λιθουανίας"
487
+ :LUC:
488
+ :one: "Μετατρέψιμο Φράγκο Λουξεμβούργου"
489
+ :other: "Luxembourgian convertible francs"
490
+ :LUF:
491
+ :one: "φράγκο Λουξεμβούργου"
492
+ :other: "φράγκα Λουξεμβούργου"
493
+ :LUL:
494
+ :one: "Οικονομικό Φράγκο Λουξεμβούργου"
495
+ :other: "Luxembourg financial francs"
496
+ :LVL:
497
+ :one: "λατς Λετονίας"
498
+ :other: "λατς Λετονίας"
499
+ :LVR:
500
+ :one: "ρούβλι Λετονίας"
501
+ :other: "ρούβλια Λετονίας"
502
+ :LYD:
503
+ :one: "δηνάριο Λιβύης"
504
+ :other: "δηνάρια Λιβύης"
505
+ :MAD:
506
+ :one: "ντιράμ Μαρόκου"
507
+ :other: "ντιράμ Μαρόκου"
508
+ :MAF:
509
+ :one: "φράγκο Μαρόκου"
510
+ :other: "φράγκα Μαρόκου"
511
+ :MCF:
512
+ :one: "Φράγκο Μονακό"
513
+ :other: "Φράγκα Μονακό"
514
+ :MDC:
515
+ :one: "Κούπον Μολδαβίας"
516
+ :other: "Κούπον Μολδαβίας"
517
+ :MDL:
518
+ :one: "λέου Μολδαβίας"
519
+ :other: "λέου Μολδαβίας"
520
+ :MGA:
521
+ :one: "αριάρι Μαδαγασκάρης"
522
+ :other: "αριάρι Μαδαγασκάρης"
523
+ :MGF:
524
+ :one: "φράγκο Μαδαγασκάρης"
525
+ :other: "φράγκα Μαδαγασκάρης"
526
+ :MKD:
527
+ :one: "δηνάριο Π.Γ.Δ.Μ."
528
+ :other: "δηνάρια Π.Γ.Δ.Μ."
529
+ :MKN:
530
+ :one: "Παλιό δηνάριο ΠΓΔΜ"
531
+ :other: "Παλιά δηνάρια ΠΓΔΜ"
532
+ :MLF:
533
+ :one: "φράγκο Μαλί"
534
+ :other: "φράγκα Μαλί"
535
+ :MMK:
536
+ :one: "κυάτ Μιανμάρ"
537
+ :other: "κυάτ Μιανμάρ"
538
+ :MNT:
539
+ :one: "τουγκρίκ Μογγολίας"
540
+ :other: "τουγκρίκ Μογγολίας"
541
+ :symbol: "₮"
542
+ :MOP:
543
+ :one: "πατάκα Μακάο"
544
+ :other: "πατάκα Μακάο"
545
+ :MRO:
546
+ :one: "ουγκίγια Μαυριτανίας"
547
+ :other: "ουγκίγια Μαυριτανίας"
548
+ :MTL:
549
+ :one: "λιρέτα Μάλτας"
550
+ :other: "λιρέτες Μάλτας"
551
+ :MTP:
552
+ :one: "λίρα Μάλτας"
553
+ :other: "λίρες Μάλτας"
554
+ :MUR:
555
+ :one: "ρουπία Μαυρικίου"
556
+ :other: "ρουπίες Μαυρικίου"
557
+ :MVP:
558
+ :one: "Maldivian rupee"
559
+ :other: "Maldivian rupees"
560
+ :MVR:
561
+ :one: "ρουφίγια Μαλδίβων"
562
+ :other: "ρουφίγια Μαλδίβων"
563
+ :MWK:
564
+ :one: "κουάτσα Μαλάουι"
565
+ :other: "κουάτσα Μαλάουι"
566
+ :MXN:
567
+ :one: "πέσο Μεξικού"
568
+ :other: "πέσο Μεξικού"
569
+ :symbol: "MX$"
570
+ :MXP:
571
+ :one: "ασημένιο πέσο Μεξικού (MXP)"
572
+ :other: "ασημένια πέσο Μεξικού (MXP)"
573
+ :MXV:
574
+ :one: "Mexican investment unit"
575
+ :other: "Mexican investment units"
576
+ :MYR:
577
+ :one: "ρινγκίτ Μαλαισίας"
578
+ :other: "ρινγκίτ Μαλαισίας"
579
+ :MZE:
580
+ :one: "εσκούδο Μοζαμβίκης"
581
+ :other: "εσκούδο Μοζαμβίκης"
582
+ :MZM:
583
+ :one: "παλιό μετικάλ Μοζαμβίκης"
584
+ :other: "παλιά μετικάλ Μοζαμβίκης"
585
+ :MZN:
586
+ :one: "μετικάλ Μοζαμβίκης"
587
+ :other: "μετικάλ Μοζαμβίκης"
588
+ :NAD:
589
+ :one: "δολάριο Ναμίμπια"
590
+ :other: "δολάρια Ναμίμπια"
591
+ :symbol: "$"
592
+ :NGN:
593
+ :one: "νάιρα Νιγηρίας"
594
+ :other: "νάιρα Νιγηρίας"
595
+ :symbol: "₦"
596
+ :NIC:
597
+ :one: "κόρδοβα Νικαράγουας"
598
+ :other: "κόρδοβα Νικαράγουας"
599
+ :NIO:
600
+ :one: "χρυσή κόρδοβα Νικαράγουας"
601
+ :other: "χρυσές κόρδοβα Νικαράγουας"
602
+ :NLG:
603
+ :one: "γκίλντα Ολλανδίας"
604
+ :other: "γκίλντα Ολλανδίας"
605
+ :NOK:
606
+ :one: "κορόνα Νορβηγίας"
607
+ :other: "κορόνες Νορβηγίας"
608
+ :NPR:
609
+ :one: "ρουπία Νεπάλ"
610
+ :other: "ρουπίες Νεπάλ"
611
+ :NZD:
612
+ :one: "δολάριο Νέας Ζηλανδίας"
613
+ :other: "δολάρια Νέας Ζηλανδίας"
614
+ :symbol: "NZ$"
615
+ :OMR:
616
+ :one: "ριάλ Ομάν"
617
+ :other: "ριάλ Ομάν"
618
+ :PAB:
619
+ :one: "μπαλμπόα Παναμά"
620
+ :other: "μπαλμπόα Παναμά"
621
+ :PEI:
622
+ :one: "ίντι Περού"
623
+ :other: "ίντι Περού"
624
+ :PEN:
625
+ :one: "νέο σολ Περού"
626
+ :other: "νέα Σολ Περού"
627
+ :PES:
628
+ :one: "σολ Περού"
629
+ :other: "σολ Περού"
630
+ :PGK:
631
+ :one: "κίνα Παπούα Νέα Γουινέα"
632
+ :other: "κίνα Παπούα Νέα Γουινέα"
633
+ :PHP:
634
+ :one: "πέσο Φιλιππίνων"
635
+ :other: "πέσο Φιλιππίνων"
636
+ :symbol: "₱"
637
+ :PKR:
638
+ :one: "ρουπία Πακιστάν"
639
+ :other: "ρουπίες Πακιστάν"
640
+ :PLN:
641
+ :one: "ζλότι Πολωνίας"
642
+ :other: "ζλότι Πολωνίας"
643
+ :PLZ:
644
+ :one: "ζλότυ Πολωνίας (PLZ)"
645
+ :other: "ζλότυ Πολωνίας (PLZ)"
646
+ :PTE:
647
+ :one: "εσκούδο Πορτογαλίας"
648
+ :other: "εσκούδο Πορτογαλίας"
649
+ :PYG:
650
+ :one: "γκουαρανί Παραγουάης"
651
+ :other: "γκουαρανί Παραγουάης"
652
+ :symbol: "₲"
653
+ :QAR:
654
+ :one: "ριάλ Κατάρ"
655
+ :other: "ριάλ Κατάρ"
656
+ :RHD:
657
+ :one: "δολάριο Ροδεσίας"
658
+ :other: "δολάρια Ροδεσίας"
659
+ :ROL:
660
+ :one: "παλιό λέι Ρουμανίας"
661
+ :other: "παλιά λέι Ρουμανίας"
662
+ :RON:
663
+ :one: "λέου Ρουμανίας"
664
+ :other: "λέου Ρουμανίας"
665
+ :RSD:
666
+ :one: "δηνάριο Σερβίας"
667
+ :other: "δηνάρια Σερβίας"
668
+ :RUB:
669
+ :one: "ρούβλι Ρωσίας"
670
+ :other: "ρούβλια Ρωσίας"
671
+ :RUR:
672
+ :one: "ρούβλι Ρωσίας (RUR)"
673
+ :other: "ρούβλια Ρωσίας (1991–1998)"
674
+ :symbol: "р."
675
+ :RWF:
676
+ :one: "φράγκο Ρουάντας"
677
+ :other: "φράγκα Ρουάντας"
678
+ :SAR:
679
+ :one: "ριάλ Σαουδικής Αραβίας"
680
+ :other: "ριάλ Σαουδικής Αραβίας"
681
+ :SBD:
682
+ :one: "δολάριο Νήσων Σολομώντος"
683
+ :other: "δολάρια Νήσων Σολομώντος"
684
+ :symbol: "$"
685
+ :SCR:
686
+ :one: "ρουπία Σεϋχελλών"
687
+ :other: "ρουπίες Σεϋχελλών"
688
+ :SDD:
689
+ :one: "δηνάριο Σουδάν"
690
+ :other: "δηνάρια Σουδάν"
691
+ :SDG:
692
+ :one: "λίρα Σουδάν"
693
+ :other: "λίρες Σουδάν"
694
+ :SDP:
695
+ :one: "παλιά λίρα Σουδάν"
696
+ :other: "παλαιές λίρες Σουδάν"
697
+ :SEK:
698
+ :one: "κορόνα Σουηδίας"
699
+ :other: "κορόνες Σουηδίας"
700
+ :SGD:
701
+ :one: "δολάριο Σιγκαπούρης"
702
+ :other: "δολάρια Σιγκαπούρης"
703
+ :symbol: "$"
704
+ :SHP:
705
+ :one: "λίρα Αγίας Ελένης"
706
+ :other: "λίρες Αγίας Ελένης"
707
+ :SIT:
708
+ :one: "τόλαρ Σλοβενίας"
709
+ :other: "τόλαρ Σλοβ"
710
+ :SKK:
711
+ :one: "κορόνα Σλοβενίας"
712
+ :other: "κορόνες Σλοβενίας"
713
+ :SLL:
714
+ :one: "λεόνε Σιέρα Λεόνε"
715
+ :other: "λεόνε Σιέρα Λεόνε"
716
+ :SOS:
717
+ :one: "σελίνι Σομαλίας"
718
+ :other: "σελίνια Σομαλίας"
719
+ :SRD:
720
+ :one: "δολάριο Σουρινάμ"
721
+ :other: "δολάρια Σουρινάμ"
722
+ :symbol: "$"
723
+ :SRG:
724
+ :one: "γκίλντα Σουρινάμ"
725
+ :other: "γκίλντα Σουρινάμ"
726
+ :SSP:
727
+ :one: "λίρα Νότιου Σουδάν"
728
+ :other: "λίρες Νότιου Σουδάν"
729
+ :symbol: "£"
730
+ :STD:
731
+ :one: "ντόμπρα Σάο Τόμε και Πρίνσιπε"
732
+ :other: "ντόμπρα Σάο Τόμε και Πρίνσιπε"
733
+ :SUR:
734
+ :one: "σοβιετικό ρούβλι"
735
+ :other: "σοβιετικά ρούβλια"
736
+ :SVC:
737
+ :one: "κολόν Ελ Σαλβαδόρ"
738
+ :other: "κολόν Ελ Σαλβαδόρ"
739
+ :SYP:
740
+ :one: "λίρα Συρίας"
741
+ :other: "λίρες Συρίας"
742
+ :SZL:
743
+ :one: "λιλανγκένι Σουαζιλάνδης"
744
+ :other: "λιλανγκένι Σουαζιλάνδης"
745
+ :THB:
746
+ :one: "μπατ Ταϊλάνδης"
747
+ :other: "μπατ Ταϊλάνδης"
748
+ :symbol: "฿"
749
+ :TJR:
750
+ :one: "ρούβλι Τατζικιστάν"
751
+ :other: "ρούβλια Τατζικιστάν"
752
+ :TJS:
753
+ :one: "σομόνι Τατζικιστάν"
754
+ :other: "σομόνι Τατζικιστάν"
755
+ :TMM:
756
+ :one: "μανάτ Τουρκμενιστάν"
757
+ :other: "μανάτ Τουρκμενιστάν"
758
+ :TMT:
759
+ :one: "μάνατ Τουρκμενιστάν"
760
+ :other: "μάνατ Τουρκμενιστάν"
761
+ :TND:
762
+ :one: "δηνάριο Τυνησίας"
763
+ :other: "δηνάρια Τυνησίας"
764
+ :TOP:
765
+ :one: "παάγκα νήσων Τόγκα"
766
+ :other: "παάγκα νήσων Τόγκα"
767
+ :TPE:
768
+ :one: "εσκούδο Τιμόρ"
769
+ :other: "εσκούδο Τιμόρ"
770
+ :TRL:
771
+ :one: "παλιά λίρα Τουρκίας"
772
+ :other: "παλιές λίρες Τουρκίας"
773
+ :TRY:
774
+ :one: "τουρκική λίρα"
775
+ :other: "τουρκικές λίρες"
776
+ :symbol: "₺"
777
+ :TTD:
778
+ :one: "δολάριο Τρινιντάντ και Τομπάγκο"
779
+ :other: "δολάρια Τρινιντάντ και Τομπάγκο"
780
+ :symbol: "$"
781
+ :TWD:
782
+ :one: "νέο δολάριο Ταϊβάν"
783
+ :other: "νέα δολάρια Ταϊβάν"
784
+ :symbol: "NT$"
785
+ :TZS:
786
+ :one: "σελίνι Τανζανίας"
787
+ :other: "σελίνια Τανζανίας"
788
+ :UAH:
789
+ :one: "γρίβνα Ουκρανίας"
790
+ :other: "γρίβνα Ουκρανίας"
791
+ :symbol: "₴"
792
+ :UAK:
793
+ :one: "καρμποβανέτς Ουκρανίας"
794
+ :other: "καρμποβανέτς Ουκρανίας"
795
+ :UGS:
796
+ :one: "σελίνι Ουγκάντας (UGS)"
797
+ :other: "σελίνια Ουγκάντας (UGS)"
798
+ :UGX:
799
+ :one: "σελίνι Ουγκάντας"
800
+ :other: "σελίνια Ουγκάντας"
801
+ :USD:
802
+ :one: "δολάριο Η.Π.Α."
803
+ :other: "δολάρια Η.Π.Α."
804
+ :symbol: "$"
805
+ :USN:
806
+ :one: "δολάριο Η.Π.Α. (επόμενη ημέρα)"
807
+ :other: "δολάρια Η.Π.Α. (επόμενη ημέρα)"
808
+ :USS:
809
+ :one: "δολάριο Η.Π.Α. (ίδια ημέρα)"
810
+ :other: "δολάρια Η.Π.Α. (ίδια ημέρα)"
811
+ :UYI:
812
+ :one: "Uruguayan peso (indexed units)"
813
+ :other: "Uruguayan pesos (indexed units)"
814
+ :UYP:
815
+ :one: "πέσο Ουρουγουάης (UYP)"
816
+ :other: "πέσο Ουρουγουάης (UYP)"
817
+ :UYU:
818
+ :one: "πέσο Ουρουγουάης"
819
+ :other: "πέσο Ουρουγουάης"
820
+ :symbol: "$"
821
+ :UZS:
822
+ :one: "σομ Ουζμπεκιστάν"
823
+ :other: "σομ Ουζμπεκιστάν"
824
+ :VEB:
825
+ :one: "μπολιβάρ Βενεζουέλας (1871–2008)"
826
+ :other: "μπολιβάρ Βενεζουέλας (1871–2008)"
827
+ :VEF:
828
+ :one: "μπολιβάρ Βενεζουέλας"
829
+ :other: "μπολιβάρ Βενεζουέλας"
830
+ :VND:
831
+ :one: "ντονγκ Βιετνάμ"
832
+ :other: "ντονγκ Βιετνάμ"
833
+ :symbol: "₫"
834
+ :VNN:
835
+ :one: "Παλαιό ντονγκ Βιετνάμ"
836
+ :other: "Παλαιά ντονγκ Βιετνάμ"
837
+ :VUV:
838
+ :one: "βατού Βανουάτου"
839
+ :other: "βατού Βανουάτου"
840
+ :WST:
841
+ :one: "τάλα Σαμόα"
842
+ :other: "τάλα Σαμόα"
843
+ :XAF:
844
+ :one: "φράγκο CFA Κεντρικής Αφρικής"
845
+ :other: "φράγκα CFA Κεντρικής Αφρικής"
846
+ :symbol: "FCFA"
847
+ :XAG:
848
+ :one: "troy ounce of silver"
849
+ :other: "troy ounces of silver"
850
+ :XAU:
851
+ :one: "troy ounce of gold"
852
+ :other: "troy ounces of gold"
853
+ :XBA:
854
+ :one: "ευρωπαϊκή σύνθετη μονάδα"
855
+ :other: "ευρωπαϊκές σύνθετες μονάδες"
856
+ :XBB:
857
+ :one: "ευρωπαϊκή νομισματική μονάδα"
858
+ :other: "ευρωπαϊκές νομισματικές μονάδες"
859
+ :XBC:
860
+ :one: "ευρωπαϊκή μονάδα λογαριασμού (XBC)"
861
+ :other: "ευρωπαϊκές μονάδες λογαριασμού (XBC)"
862
+ :XBD:
863
+ :one: "ευρωπαϊκή μονάδα λογαριασμού (XBD)"
864
+ :other: "ευρωπαϊκές μονάδες λογαριασμού (XBD)"
865
+ :XCD:
866
+ :one: "δολάριο Ανατολικής Καραϊβικής"
867
+ :other: "δολάρια Ανατολικής Καραϊβικής"
868
+ :symbol: "EC$"
869
+ :XDR:
870
+ :one: "ειδικό δικαίωμα ανάληψης"
871
+ :other: "ειδικά δικαιώματα ανάληψης"
872
+ :XEU:
873
+ :one: "ευρωπαϊκή συναλλαγματική μονάδα"
874
+ :other: "ευρωπαϊκές συναλλαγματικές μονάδες"
875
+ :XFO:
876
+ :one: "χρυσό φράγκο Γαλλίας"
877
+ :other: "χρυσά φράγκα Γαλλίας"
878
+ :XFU:
879
+ :one: "UIC-φράγκο Γαλλίας"
880
+ :other: "UIC-φράγκα Γαλλίας"
881
+ :XOF:
882
+ :one: "φράγκο CFA Δυτικής Αφρικής"
883
+ :other: "φράγκα CFA Δυτικής Αφρικής"
884
+ :symbol: "CFA"
885
+ :XPD:
886
+ :one: "troy ounce of palladium"
887
+ :other: "troy ounces of palladium"
888
+ :XPF:
889
+ :one: "φράγκο CFP"
890
+ :other: "φράγκα CFP"
891
+ :symbol: "CFPF"
892
+ :XPT:
893
+ :one: "troy ounce of platinum"
894
+ :other: "troy ounces of platinum"
895
+ :XRE:
896
+ :one: "Ταμείο RINET"
897
+ :other: "Ταμείο RINET"
898
+ :XSU:
899
+ :one: "Sucre"
900
+ :other: "Sucres"
901
+ :XTS:
902
+ :one: "Testing Currency unit"
903
+ :other: "Testing Currency units"
904
+ :XUA:
905
+ :one: "ADB unit of account"
906
+ :other: "ADB units of account"
907
+ :XXX:
908
+ :one: "(άγνωστο νόμισμα)"
909
+ :other: "(άγνωστο νόμισμα)"
910
+ :YDD:
911
+ :one: "δηνάριο Υεμένης"
912
+ :other: "δηνάρια Υεμένης"
913
+ :YER:
914
+ :one: "ριάλ Υεμένης"
915
+ :other: "ριάλ Υεμένης"
916
+ :YUD:
917
+ :one: "μεταλλικό δηνάριο Γιουγκοσλαβίας"
918
+ :other: "μεταλλικά δηνάρια Γιουγκοσλαβίας"
919
+ :YUM:
920
+ :one: "νέο δηνάριο Γιουγκοσλαβίας"
921
+ :other: "νέο δηνάριο Γιουγκοσλαβίας"
922
+ :YUN:
923
+ :one: "μετατρέψιμο δινάριο Γιουγκοσλαβίας"
924
+ :other: "μετατρέψιμο δηνάριο Γιουγκοσλαβίας"
925
+ :YUR:
926
+ :one: "Αναμορφωμένο δηνάριο Γιουγκοσλαβίας"
927
+ :other: "Αναμορφωμένα δηνάρια Γιουγκοσλαβίας"
928
+ :ZAL:
929
+ :one: "ραντ Νότιας Αφρικής (οικονομικό)"
930
+ :other: "ραντ Νότιας Αφρικής (οικονομικό)"
931
+ :ZAR:
932
+ :one: "ραντ Νότιας Αφρικής"
933
+ :other: "ραντ Νότιας Αφρικής"
934
+ :ZMK:
935
+ :one: "κουάτσα Ζάμπιας (1968–2012)"
936
+ :other: "κουάτσα Ζάμπιας (1968–2012)"
937
+ :ZMW:
938
+ :one: "κουάτσα Ζάμπιας"
939
+ :other: "κουάτσα Ζάμπιας"
940
+ :ZRN:
941
+ :one: "νέο ζαΐρ Ζαΐρ"
942
+ :other: "νέα ζαΐρ Ζαΐρ"
943
+ :ZRZ:
944
+ :one: "ζαΐρ Ζαΐρ"
945
+ :other: "ζαΐρ Ζαΐρ"
946
+ :ZWD:
947
+ :one: "δολάριο Ζιμπάμπουε"
948
+ :other: "δολάρια Ζιμπάμπουε"
949
+ :ZWL:
950
+ :one: "Δολάριο Ζιμπάμπουε (2009)"
951
+ :other: "Δολάριο Ζιμπάμπουε (2009)"
952
+ :ZWR:
953
+ :one: "Δολάριο Ζιμπάμπουε (2008)"
954
+ :other: "Δολάρια Ζιμπάμπουε (2008)"