twitter_cldr 3.0.0.beta1 → 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (698) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +16 -2
  3. data/History.txt +9 -1
  4. data/README.md +297 -113
  5. data/Rakefile +97 -17
  6. data/lib/twitter_cldr/collation/collator.rb +12 -3
  7. data/lib/twitter_cldr/collation/trie_builder.rb +1 -1
  8. data/lib/twitter_cldr/{tokenizers/calendars → data_readers}/additional_date_format_selector.rb +6 -4
  9. data/lib/twitter_cldr/data_readers/calendar_data_reader.rb +91 -0
  10. data/lib/twitter_cldr/data_readers/data_reader.rb +32 -0
  11. data/lib/twitter_cldr/data_readers/date_data_reader.rb +26 -0
  12. data/lib/twitter_cldr/data_readers/date_time_data_reader.rb +41 -0
  13. data/lib/twitter_cldr/data_readers/number_data_reader.rb +142 -0
  14. data/lib/twitter_cldr/data_readers/time_data_reader.rb +26 -0
  15. data/lib/twitter_cldr/data_readers/timespan_data_reader.rb +122 -0
  16. data/lib/twitter_cldr/data_readers.rb +17 -0
  17. data/lib/twitter_cldr/formatters/calendars/{datetime_formatter.rb → date_time_formatter.rb} +27 -42
  18. data/lib/twitter_cldr/formatters/calendars/timespan_formatter.rb +3 -64
  19. data/lib/twitter_cldr/formatters/formatter.rb +39 -0
  20. data/lib/twitter_cldr/formatters/list_formatter.rb +22 -12
  21. data/lib/twitter_cldr/formatters/numbers/abbreviated/abbreviated_number_formatter.rb +5 -26
  22. data/lib/twitter_cldr/formatters/numbers/currency_formatter.rb +2 -11
  23. data/lib/twitter_cldr/formatters/numbers/decimal_formatter.rb +4 -2
  24. data/lib/twitter_cldr/formatters/numbers/number_formatter.rb +45 -27
  25. data/lib/twitter_cldr/formatters/numbers/percent_formatter.rb +3 -13
  26. data/lib/twitter_cldr/formatters/numbers/rbnf/formatters.rb +224 -0
  27. data/lib/twitter_cldr/formatters/numbers/rbnf/post_processors/chinese.rb +122 -0
  28. data/lib/twitter_cldr/formatters/numbers/rbnf/rule.rb +93 -0
  29. data/lib/twitter_cldr/formatters/numbers/rbnf/rule_group.rb +20 -0
  30. data/lib/twitter_cldr/formatters/numbers/rbnf/rule_parser.rb +86 -0
  31. data/lib/twitter_cldr/formatters/numbers/rbnf/rule_set.rb +259 -0
  32. data/lib/twitter_cldr/formatters/numbers/rbnf/substitution.rb +30 -0
  33. data/lib/twitter_cldr/formatters/numbers/rbnf.rb +127 -0
  34. data/lib/twitter_cldr/formatters/plurals/plural_formatter.rb +18 -6
  35. data/lib/twitter_cldr/formatters.rb +4 -5
  36. data/lib/twitter_cldr/localized/localized_array.rb +1 -1
  37. data/lib/twitter_cldr/localized/localized_date.rb +6 -3
  38. data/lib/twitter_cldr/localized/localized_datetime.rb +38 -15
  39. data/lib/twitter_cldr/localized/localized_number.rb +40 -24
  40. data/lib/twitter_cldr/localized/localized_object.rb +4 -4
  41. data/lib/twitter_cldr/localized/localized_string.rb +40 -7
  42. data/lib/twitter_cldr/localized/localized_time.rb +9 -2
  43. data/lib/twitter_cldr/localized/localized_timespan.rb +50 -5
  44. data/lib/twitter_cldr/normalization.rb +8 -19
  45. data/lib/twitter_cldr/parsers/parser.rb +50 -0
  46. data/lib/twitter_cldr/parsers/segmentation_parser.rb +137 -0
  47. data/lib/twitter_cldr/parsers/symbol_table.rb +30 -0
  48. data/lib/twitter_cldr/parsers/unicode_regex/character_class.rb +91 -0
  49. data/lib/twitter_cldr/parsers/unicode_regex/character_range.rb +39 -0
  50. data/lib/twitter_cldr/parsers/unicode_regex/character_set.rb +65 -0
  51. data/lib/twitter_cldr/parsers/unicode_regex/component.rb +50 -0
  52. data/lib/twitter_cldr/parsers/unicode_regex/literal.rb +83 -0
  53. data/lib/twitter_cldr/parsers/unicode_regex/unicode_string.rb +41 -0
  54. data/lib/twitter_cldr/parsers/unicode_regex_parser.rb +262 -0
  55. data/lib/twitter_cldr/parsers.rb +5 -1
  56. data/lib/twitter_cldr/resources/casefolder.rb.erb +64 -0
  57. data/lib/twitter_cldr/resources/casefolder_class_generator.rb +75 -0
  58. data/lib/twitter_cldr/resources/download.rb +10 -4
  59. data/lib/twitter_cldr/resources/icu_based_importer.rb +18 -0
  60. data/lib/twitter_cldr/resources/locales_resources_importer.rb +24 -13
  61. data/lib/twitter_cldr/resources/normalization_quick_check_importer.rb +1 -14
  62. data/lib/twitter_cldr/resources/rbnf_test_importer.rb +107 -0
  63. data/lib/twitter_cldr/resources/readme_renderer.rb +115 -0
  64. data/lib/twitter_cldr/resources/tailoring_importer.rb +2 -8
  65. data/lib/twitter_cldr/resources/uli/segment_exceptions_importer.rb +62 -0
  66. data/lib/twitter_cldr/resources/uli.rb +12 -0
  67. data/lib/twitter_cldr/resources/unicode_data_importer.rb +84 -14
  68. data/lib/twitter_cldr/resources/unicode_importer.rb +37 -0
  69. data/lib/twitter_cldr/resources/unicode_properties_importer.rb +79 -0
  70. data/lib/twitter_cldr/resources.rb +8 -1
  71. data/lib/twitter_cldr/shared/break_iterator.rb +213 -0
  72. data/lib/twitter_cldr/shared/calendar.rb +38 -14
  73. data/lib/twitter_cldr/shared/casefolder.rb +210 -0
  74. data/lib/twitter_cldr/shared/code_point.rb +103 -16
  75. data/lib/twitter_cldr/shared/numbering_system.rb +58 -0
  76. data/lib/twitter_cldr/shared/territories.rb +43 -1
  77. data/lib/twitter_cldr/shared/unicode_regex.rb +81 -0
  78. data/lib/twitter_cldr/shared.rb +13 -9
  79. data/lib/twitter_cldr/tokenizers/calendars/date_time_tokenizer.rb +77 -0
  80. data/lib/twitter_cldr/tokenizers/calendars/date_tokenizer.rb +14 -29
  81. data/lib/twitter_cldr/tokenizers/calendars/time_tokenizer.rb +13 -28
  82. data/lib/twitter_cldr/tokenizers/calendars/timespan_tokenizer.rb +11 -87
  83. data/lib/twitter_cldr/tokenizers/numbers/number_tokenizer.rb +16 -71
  84. data/lib/twitter_cldr/tokenizers/numbers/rbnf_tokenizer.rb +53 -0
  85. data/lib/twitter_cldr/tokenizers/pattern_tokenizer.rb +42 -0
  86. data/lib/twitter_cldr/tokenizers/segmentation/segmentation_tokenizer.rb +39 -0
  87. data/lib/twitter_cldr/tokenizers/tokenizer.rb +116 -0
  88. data/lib/twitter_cldr/tokenizers/unicode_regex/unicode_regex_tokenizer.rb +52 -0
  89. data/lib/twitter_cldr/tokenizers.rb +8 -4
  90. data/lib/twitter_cldr/utils/code_points.rb +1 -1
  91. data/lib/twitter_cldr/utils/range_set.rb +242 -0
  92. data/lib/twitter_cldr/utils/yaml.rb +17 -12
  93. data/lib/twitter_cldr/utils.rb +1 -1
  94. data/lib/twitter_cldr/version.rb +1 -1
  95. data/lib/twitter_cldr.rb +2 -1
  96. data/resources/custom/locales/sv/units.yml +8 -0
  97. data/resources/locales/af/calendars.yml +278 -224
  98. data/resources/locales/af/currencies.yml +954 -916
  99. data/resources/locales/af/languages.yml +583 -580
  100. data/resources/locales/af/layout.yml +5 -5
  101. data/resources/locales/af/lists.yml +23 -7
  102. data/resources/locales/af/numbers.yml +59 -54
  103. data/resources/locales/af/plurals.yml +2 -2
  104. data/resources/locales/af/rbnf.yml +261 -0
  105. data/resources/locales/af/territories.yml +264 -263
  106. data/resources/locales/ar/calendars.yml +287 -259
  107. data/resources/locales/ar/currencies.yml +1730 -1692
  108. data/resources/locales/ar/languages.yml +583 -580
  109. data/resources/locales/ar/layout.yml +5 -5
  110. data/resources/locales/ar/lists.yml +23 -7
  111. data/resources/locales/ar/numbers.yml +66 -61
  112. data/resources/locales/ar/plurals.yml +5 -8
  113. data/resources/locales/ar/rbnf.yml +519 -0
  114. data/resources/locales/ar/territories.yml +264 -263
  115. data/resources/locales/be/calendars.yml +238 -237
  116. data/resources/locales/be/currencies.yml +954 -917
  117. data/resources/locales/be/languages.yml +583 -580
  118. data/resources/locales/be/layout.yml +5 -5
  119. data/resources/locales/be/lists.yml +23 -7
  120. data/resources/locales/be/numbers.yml +62 -57
  121. data/resources/locales/be/plurals.yml +7 -4
  122. data/resources/locales/be/rbnf.yml +1288 -0
  123. data/resources/locales/be/territories.yml +264 -263
  124. data/resources/locales/bg/calendars.yml +278 -218
  125. data/resources/locales/bg/currencies.yml +955 -917
  126. data/resources/locales/bg/languages.yml +583 -580
  127. data/resources/locales/bg/layout.yml +5 -5
  128. data/resources/locales/bg/lists.yml +23 -7
  129. data/resources/locales/bg/numbers.yml +62 -57
  130. data/resources/locales/bg/plurals.yml +2 -2
  131. data/resources/locales/bg/rbnf.yml +280 -0
  132. data/resources/locales/bg/territories.yml +264 -263
  133. data/resources/locales/bn/calendars.yml +287 -225
  134. data/resources/locales/bn/currencies.yml +953 -916
  135. data/resources/locales/bn/languages.yml +583 -580
  136. data/resources/locales/bn/layout.yml +5 -5
  137. data/resources/locales/bn/lists.yml +23 -7
  138. data/resources/locales/bn/numbers.yml +62 -57
  139. data/resources/locales/bn/plurals.yml +2 -2
  140. data/resources/locales/bn/rbnf.yml +4 -0
  141. data/resources/locales/bn/territories.yml +264 -263
  142. data/resources/locales/ca/calendars.yml +278 -278
  143. data/resources/locales/ca/currencies.yml +953 -916
  144. data/resources/locales/ca/languages.yml +583 -580
  145. data/resources/locales/ca/layout.yml +5 -5
  146. data/resources/locales/ca/lists.yml +23 -7
  147. data/resources/locales/ca/numbers.yml +62 -57
  148. data/resources/locales/ca/plurals.yml +3 -2
  149. data/resources/locales/ca/rbnf.yml +756 -0
  150. data/resources/locales/ca/territories.yml +264 -263
  151. data/resources/locales/cs/calendars.yml +269 -262
  152. data/resources/locales/cs/currencies.yml +1483 -1172
  153. data/resources/locales/cs/languages.yml +583 -580
  154. data/resources/locales/cs/layout.yml +5 -5
  155. data/resources/locales/cs/lists.yml +23 -7
  156. data/resources/locales/cs/numbers.yml +64 -58
  157. data/resources/locales/cs/plurals.yml +6 -2
  158. data/resources/locales/cs/rbnf.yml +367 -0
  159. data/resources/locales/cs/territories.yml +264 -263
  160. data/resources/locales/cy/calendars.yml +275 -274
  161. data/resources/locales/cy/currencies.yml +1585 -1548
  162. data/resources/locales/cy/languages.yml +583 -580
  163. data/resources/locales/cy/layout.yml +5 -5
  164. data/resources/locales/cy/lists.yml +23 -7
  165. data/resources/locales/cy/numbers.yml +66 -61
  166. data/resources/locales/cy/plurals.yml +4 -3
  167. data/resources/locales/cy/rbnf.yml +298 -0
  168. data/resources/locales/cy/territories.yml +264 -263
  169. data/resources/locales/da/calendars.yml +281 -280
  170. data/resources/locales/da/currencies.yml +954 -916
  171. data/resources/locales/da/languages.yml +583 -580
  172. data/resources/locales/da/layout.yml +5 -5
  173. data/resources/locales/da/lists.yml +23 -7
  174. data/resources/locales/da/numbers.yml +62 -57
  175. data/resources/locales/da/plurals.yml +3 -2
  176. data/resources/locales/da/rbnf.yml +194 -0
  177. data/resources/locales/da/territories.yml +264 -263
  178. data/resources/locales/de/calendars.yml +294 -293
  179. data/resources/locales/de/currencies.yml +954 -916
  180. data/resources/locales/de/languages.yml +583 -580
  181. data/resources/locales/de/layout.yml +5 -5
  182. data/resources/locales/de/lists.yml +23 -7
  183. data/resources/locales/de/numbers.yml +62 -57
  184. data/resources/locales/de/plurals.yml +3 -2
  185. data/resources/locales/de/rbnf.yml +346 -0
  186. data/resources/locales/de/territories.yml +264 -263
  187. data/resources/locales/el/calendars.yml +279 -282
  188. data/resources/locales/el/currencies.yml +954 -916
  189. data/resources/locales/el/languages.yml +583 -580
  190. data/resources/locales/el/layout.yml +5 -5
  191. data/resources/locales/el/lists.yml +23 -7
  192. data/resources/locales/el/numbers.yml +62 -57
  193. data/resources/locales/el/plurals.yml +2 -2
  194. data/resources/locales/el/rbnf.yml +880 -0
  195. data/resources/locales/el/territories.yml +264 -263
  196. data/resources/locales/en/calendars.yml +192 -191
  197. data/resources/locales/en/currencies.yml +953 -915
  198. data/resources/locales/en/languages.yml +583 -580
  199. data/resources/locales/en/layout.yml +5 -5
  200. data/resources/locales/en/lists.yml +23 -7
  201. data/resources/locales/en/numbers.yml +62 -57
  202. data/resources/locales/en/plurals.yml +3 -2
  203. data/resources/locales/en/rbnf.yml +542 -0
  204. data/resources/locales/en/territories.yml +264 -263
  205. data/resources/locales/en-GB/calendars.yml +195 -194
  206. data/resources/locales/en-GB/currencies.yml +953 -915
  207. data/resources/locales/en-GB/languages.yml +583 -580
  208. data/resources/locales/en-GB/layout.yml +5 -5
  209. data/resources/locales/en-GB/lists.yml +23 -7
  210. data/resources/locales/en-GB/numbers.yml +62 -57
  211. data/resources/locales/en-GB/plurals.yml +2 -1
  212. data/resources/locales/en-GB/rbnf.yml +4 -0
  213. data/resources/locales/en-GB/territories.yml +264 -263
  214. data/resources/locales/es/calendars.yml +288 -238
  215. data/resources/locales/es/currencies.yml +953 -922
  216. data/resources/locales/es/languages.yml +583 -580
  217. data/resources/locales/es/layout.yml +5 -5
  218. data/resources/locales/es/lists.yml +23 -7
  219. data/resources/locales/es/numbers.yml +62 -57
  220. data/resources/locales/es/plurals.yml +2 -2
  221. data/resources/locales/es/rbnf.yml +913 -0
  222. data/resources/locales/es/territories.yml +264 -263
  223. data/resources/locales/eu/calendars.yml +277 -218
  224. data/resources/locales/eu/currencies.yml +953 -916
  225. data/resources/locales/eu/languages.yml +583 -580
  226. data/resources/locales/eu/layout.yml +5 -5
  227. data/resources/locales/eu/lists.yml +23 -7
  228. data/resources/locales/eu/numbers.yml +56 -51
  229. data/resources/locales/eu/plurals.yml +2 -2
  230. data/resources/locales/eu/rbnf.yml +4 -0
  231. data/resources/locales/eu/territories.yml +264 -263
  232. data/resources/locales/fa/calendars.yml +294 -293
  233. data/resources/locales/fa/currencies.yml +955 -916
  234. data/resources/locales/fa/languages.yml +583 -580
  235. data/resources/locales/fa/layout.yml +5 -5
  236. data/resources/locales/fa/lists.yml +23 -7
  237. data/resources/locales/fa/numbers.yml +62 -57
  238. data/resources/locales/fa/plurals.yml +2 -2
  239. data/resources/locales/fa/rbnf.yml +157 -0
  240. data/resources/locales/fa/territories.yml +264 -263
  241. data/resources/locales/fi/calendars.yml +284 -283
  242. data/resources/locales/fi/currencies.yml +953 -915
  243. data/resources/locales/fi/languages.yml +583 -580
  244. data/resources/locales/fi/layout.yml +5 -5
  245. data/resources/locales/fi/lists.yml +23 -7
  246. data/resources/locales/fi/numbers.yml +62 -57
  247. data/resources/locales/fi/plurals.yml +3 -2
  248. data/resources/locales/fi/rbnf.yml +206 -0
  249. data/resources/locales/fi/territories.yml +264 -263
  250. data/resources/locales/fil/calendars.yml +281 -230
  251. data/resources/locales/fil/currencies.yml +953 -916
  252. data/resources/locales/fil/languages.yml +583 -580
  253. data/resources/locales/fil/layout.yml +5 -5
  254. data/resources/locales/fil/lists.yml +23 -7
  255. data/resources/locales/fil/numbers.yml +62 -57
  256. data/resources/locales/fil/plurals.yml +3 -2
  257. data/resources/locales/fil/rbnf.yml +158 -0
  258. data/resources/locales/fil/territories.yml +264 -263
  259. data/resources/locales/fr/calendars.yml +297 -296
  260. data/resources/locales/fr/currencies.yml +968 -949
  261. data/resources/locales/fr/languages.yml +583 -580
  262. data/resources/locales/fr/layout.yml +5 -5
  263. data/resources/locales/fr/lists.yml +23 -7
  264. data/resources/locales/fr/numbers.yml +62 -57
  265. data/resources/locales/fr/plurals.yml +2 -2
  266. data/resources/locales/fr/rbnf.yml +621 -0
  267. data/resources/locales/fr/territories.yml +264 -263
  268. data/resources/locales/ga/calendars.yml +192 -191
  269. data/resources/locales/ga/currencies.yml +954 -916
  270. data/resources/locales/ga/languages.yml +583 -580
  271. data/resources/locales/ga/layout.yml +5 -5
  272. data/resources/locales/ga/lists.yml +23 -7
  273. data/resources/locales/ga/numbers.yml +62 -57
  274. data/resources/locales/ga/plurals.yml +4 -3
  275. data/resources/locales/ga/rbnf.yml +615 -0
  276. data/resources/locales/ga/territories.yml +264 -263
  277. data/resources/locales/gl/calendars.yml +283 -217
  278. data/resources/locales/gl/currencies.yml +953 -916
  279. data/resources/locales/gl/languages.yml +583 -580
  280. data/resources/locales/gl/layout.yml +5 -5
  281. data/resources/locales/gl/lists.yml +23 -7
  282. data/resources/locales/gl/numbers.yml +62 -57
  283. data/resources/locales/gl/plurals.yml +3 -2
  284. data/resources/locales/gl/rbnf.yml +4 -0
  285. data/resources/locales/gl/territories.yml +264 -263
  286. data/resources/locales/he/calendars.yml +248 -220
  287. data/resources/locales/he/currencies.yml +992 -932
  288. data/resources/locales/he/languages.yml +583 -580
  289. data/resources/locales/he/layout.yml +5 -5
  290. data/resources/locales/he/lists.yml +23 -7
  291. data/resources/locales/he/numbers.yml +64 -59
  292. data/resources/locales/he/plurals.yml +6 -3
  293. data/resources/locales/he/rbnf.yml +1029 -0
  294. data/resources/locales/he/territories.yml +264 -263
  295. data/resources/locales/hi/calendars.yml +284 -216
  296. data/resources/locales/hi/currencies.yml +953 -915
  297. data/resources/locales/hi/languages.yml +583 -580
  298. data/resources/locales/hi/layout.yml +5 -5
  299. data/resources/locales/hi/lists.yml +23 -7
  300. data/resources/locales/hi/numbers.yml +60 -55
  301. data/resources/locales/hi/plurals.yml +2 -2
  302. data/resources/locales/hi/rbnf.yml +430 -0
  303. data/resources/locales/hi/territories.yml +264 -263
  304. data/resources/locales/hr/calendars.yml +308 -307
  305. data/resources/locales/hr/currencies.yml +1248 -1504
  306. data/resources/locales/hr/languages.yml +583 -580
  307. data/resources/locales/hr/layout.yml +5 -5
  308. data/resources/locales/hr/lists.yml +23 -7
  309. data/resources/locales/hr/numbers.yml +63 -59
  310. data/resources/locales/hr/plurals.yml +12 -4
  311. data/resources/locales/hr/rbnf.yml +599 -0
  312. data/resources/locales/hr/territories.yml +264 -263
  313. data/resources/locales/hu/calendars.yml +285 -284
  314. data/resources/locales/hu/currencies.yml +954 -916
  315. data/resources/locales/hu/languages.yml +583 -580
  316. data/resources/locales/hu/layout.yml +5 -5
  317. data/resources/locales/hu/lists.yml +23 -7
  318. data/resources/locales/hu/numbers.yml +62 -57
  319. data/resources/locales/hu/plurals.yml +2 -2
  320. data/resources/locales/hu/rbnf.yml +363 -0
  321. data/resources/locales/hu/territories.yml +264 -263
  322. data/resources/locales/id/calendars.yml +276 -275
  323. data/resources/locales/id/currencies.yml +954 -916
  324. data/resources/locales/id/languages.yml +583 -580
  325. data/resources/locales/id/layout.yml +5 -5
  326. data/resources/locales/id/lists.yml +23 -7
  327. data/resources/locales/id/numbers.yml +61 -56
  328. data/resources/locales/id/plurals.yml +2 -2
  329. data/resources/locales/id/rbnf.yml +121 -0
  330. data/resources/locales/id/territories.yml +264 -263
  331. data/resources/locales/is/calendars.yml +281 -242
  332. data/resources/locales/is/currencies.yml +954 -916
  333. data/resources/locales/is/languages.yml +583 -580
  334. data/resources/locales/is/layout.yml +5 -5
  335. data/resources/locales/is/lists.yml +23 -7
  336. data/resources/locales/is/numbers.yml +62 -57
  337. data/resources/locales/is/plurals.yml +5 -2
  338. data/resources/locales/is/rbnf.yml +326 -0
  339. data/resources/locales/is/territories.yml +264 -263
  340. data/resources/locales/it/calendars.yml +275 -260
  341. data/resources/locales/it/currencies.yml +953 -920
  342. data/resources/locales/it/languages.yml +583 -580
  343. data/resources/locales/it/layout.yml +5 -5
  344. data/resources/locales/it/lists.yml +23 -7
  345. data/resources/locales/it/numbers.yml +59 -54
  346. data/resources/locales/it/plurals.yml +3 -2
  347. data/resources/locales/it/rbnf.yml +1189 -0
  348. data/resources/locales/it/territories.yml +264 -263
  349. data/resources/locales/ja/calendars.yml +269 -207
  350. data/resources/locales/ja/currencies.yml +953 -915
  351. data/resources/locales/ja/languages.yml +583 -580
  352. data/resources/locales/ja/layout.yml +5 -5
  353. data/resources/locales/ja/lists.yml +23 -7
  354. data/resources/locales/ja/numbers.yml +62 -57
  355. data/resources/locales/ja/plurals.yml +2 -2
  356. data/resources/locales/ja/rbnf.yml +209 -0
  357. data/resources/locales/ja/territories.yml +264 -263
  358. data/resources/locales/ko/calendars.yml +246 -213
  359. data/resources/locales/ko/currencies.yml +953 -915
  360. data/resources/locales/ko/languages.yml +583 -580
  361. data/resources/locales/ko/layout.yml +5 -5
  362. data/resources/locales/ko/lists.yml +23 -7
  363. data/resources/locales/ko/numbers.yml +60 -55
  364. data/resources/locales/ko/plurals.yml +2 -2
  365. data/resources/locales/ko/rbnf.yml +722 -0
  366. data/resources/locales/ko/territories.yml +264 -263
  367. data/resources/locales/lv/calendars.yml +286 -285
  368. data/resources/locales/lv/currencies.yml +1122 -1084
  369. data/resources/locales/lv/languages.yml +583 -580
  370. data/resources/locales/lv/layout.yml +5 -5
  371. data/resources/locales/lv/lists.yml +23 -7
  372. data/resources/locales/lv/numbers.yml +63 -58
  373. data/resources/locales/lv/plurals.yml +11 -3
  374. data/resources/locales/lv/rbnf.yml +238 -0
  375. data/resources/locales/lv/territories.yml +264 -263
  376. data/resources/locales/ms/calendars.yml +280 -279
  377. data/resources/locales/ms/currencies.yml +954 -916
  378. data/resources/locales/ms/languages.yml +583 -580
  379. data/resources/locales/ms/layout.yml +5 -5
  380. data/resources/locales/ms/lists.yml +23 -7
  381. data/resources/locales/ms/numbers.yml +62 -57
  382. data/resources/locales/ms/plurals.yml +2 -2
  383. data/resources/locales/ms/rbnf.yml +130 -0
  384. data/resources/locales/ms/territories.yml +264 -263
  385. data/resources/locales/nb/calendars.yml +284 -283
  386. data/resources/locales/nb/currencies.yml +958 -916
  387. data/resources/locales/nb/languages.yml +583 -580
  388. data/resources/locales/nb/layout.yml +5 -5
  389. data/resources/locales/nb/lists.yml +23 -7
  390. data/resources/locales/nb/numbers.yml +62 -57
  391. data/resources/locales/nb/plurals.yml +2 -2
  392. data/resources/locales/nb/rbnf.yml +191 -0
  393. data/resources/locales/nb/territories.yml +264 -263
  394. data/resources/locales/nl/calendars.yml +285 -284
  395. data/resources/locales/nl/currencies.yml +953 -917
  396. data/resources/locales/nl/languages.yml +583 -580
  397. data/resources/locales/nl/layout.yml +5 -5
  398. data/resources/locales/nl/lists.yml +23 -7
  399. data/resources/locales/nl/numbers.yml +62 -57
  400. data/resources/locales/nl/plurals.yml +3 -2
  401. data/resources/locales/nl/rbnf.yml +320 -0
  402. data/resources/locales/nl/territories.yml +264 -263
  403. data/resources/locales/pl/calendars.yml +288 -287
  404. data/resources/locales/pl/currencies.yml +1326 -1284
  405. data/resources/locales/pl/languages.yml +583 -580
  406. data/resources/locales/pl/layout.yml +5 -5
  407. data/resources/locales/pl/lists.yml +23 -7
  408. data/resources/locales/pl/numbers.yml +64 -59
  409. data/resources/locales/pl/plurals.yml +11 -4
  410. data/resources/locales/pl/rbnf.yml +410 -0
  411. data/resources/locales/pl/territories.yml +264 -263
  412. data/resources/locales/pt/calendars.yml +290 -289
  413. data/resources/locales/pt/currencies.yml +954 -916
  414. data/resources/locales/pt/languages.yml +583 -580
  415. data/resources/locales/pt/layout.yml +5 -5
  416. data/resources/locales/pt/lists.yml +23 -7
  417. data/resources/locales/pt/numbers.yml +62 -57
  418. data/resources/locales/pt/plurals.yml +4 -2
  419. data/resources/locales/pt/rbnf.yml +586 -0
  420. data/resources/locales/pt/territories.yml +264 -263
  421. data/resources/locales/ro/calendars.yml +284 -283
  422. data/resources/locales/ro/currencies.yml +1170 -1132
  423. data/resources/locales/ro/languages.yml +583 -580
  424. data/resources/locales/ro/layout.yml +5 -5
  425. data/resources/locales/ro/lists.yml +23 -7
  426. data/resources/locales/ro/numbers.yml +63 -58
  427. data/resources/locales/ro/plurals.yml +5 -2
  428. data/resources/locales/ro/rbnf.yml +250 -0
  429. data/resources/locales/ro/territories.yml +264 -263
  430. data/resources/locales/ru/calendars.yml +282 -281
  431. data/resources/locales/ru/currencies.yml +1118 -1247
  432. data/resources/locales/ru/languages.yml +583 -580
  433. data/resources/locales/ru/layout.yml +5 -5
  434. data/resources/locales/ru/lists.yml +23 -7
  435. data/resources/locales/ru/numbers.yml +63 -59
  436. data/resources/locales/ru/plurals.yml +8 -4
  437. data/resources/locales/ru/rbnf.yml +385 -0
  438. data/resources/locales/ru/territories.yml +264 -263
  439. data/resources/locales/sk/calendars.yml +254 -251
  440. data/resources/locales/sk/currencies.yml +1174 -1008
  441. data/resources/locales/sk/languages.yml +583 -580
  442. data/resources/locales/sk/layout.yml +5 -5
  443. data/resources/locales/sk/lists.yml +23 -7
  444. data/resources/locales/sk/numbers.yml +64 -58
  445. data/resources/locales/sk/plurals.yml +6 -2
  446. data/resources/locales/sk/rbnf.yml +304 -0
  447. data/resources/locales/sk/territories.yml +264 -263
  448. data/resources/locales/sq/calendars.yml +283 -206
  449. data/resources/locales/sq/currencies.yml +954 -916
  450. data/resources/locales/sq/languages.yml +583 -580
  451. data/resources/locales/sq/layout.yml +5 -5
  452. data/resources/locales/sq/lists.yml +23 -7
  453. data/resources/locales/sq/numbers.yml +62 -57
  454. data/resources/locales/sq/plurals.yml +2 -2
  455. data/resources/locales/sq/rbnf.yml +181 -0
  456. data/resources/locales/sq/territories.yml +264 -263
  457. data/resources/locales/sr/calendars.yml +290 -289
  458. data/resources/locales/sr/currencies.yml +1251 -1508
  459. data/resources/locales/sr/languages.yml +583 -580
  460. data/resources/locales/sr/layout.yml +5 -5
  461. data/resources/locales/sr/lists.yml +23 -7
  462. data/resources/locales/sr/numbers.yml +62 -58
  463. data/resources/locales/sr/plurals.yml +12 -4
  464. data/resources/locales/sr/rbnf.yml +429 -0
  465. data/resources/locales/sr/territories.yml +264 -263
  466. data/resources/locales/sv/calendars.yml +290 -289
  467. data/resources/locales/sv/currencies.yml +960 -930
  468. data/resources/locales/sv/languages.yml +583 -580
  469. data/resources/locales/sv/layout.yml +5 -5
  470. data/resources/locales/sv/lists.yml +23 -7
  471. data/resources/locales/sv/numbers.yml +63 -58
  472. data/resources/locales/sv/plurals.yml +3 -2
  473. data/resources/locales/sv/rbnf.yml +692 -0
  474. data/resources/locales/sv/territories.yml +264 -263
  475. data/resources/locales/ta/calendars.yml +281 -266
  476. data/resources/locales/ta/currencies.yml +953 -915
  477. data/resources/locales/ta/languages.yml +583 -580
  478. data/resources/locales/ta/layout.yml +5 -5
  479. data/resources/locales/ta/lists.yml +23 -7
  480. data/resources/locales/ta/numbers.yml +62 -57
  481. data/resources/locales/ta/plurals.yml +2 -2
  482. data/resources/locales/ta/rbnf.yml +241 -0
  483. data/resources/locales/ta/territories.yml +264 -263
  484. data/resources/locales/th/calendars.yml +278 -289
  485. data/resources/locales/th/currencies.yml +953 -915
  486. data/resources/locales/th/languages.yml +583 -580
  487. data/resources/locales/th/layout.yml +5 -5
  488. data/resources/locales/th/lists.yml +23 -7
  489. data/resources/locales/th/numbers.yml +62 -57
  490. data/resources/locales/th/plurals.yml +2 -2
  491. data/resources/locales/th/rbnf.yml +119 -0
  492. data/resources/locales/th/territories.yml +264 -263
  493. data/resources/locales/tr/calendars.yml +287 -286
  494. data/resources/locales/tr/currencies.yml +953 -916
  495. data/resources/locales/tr/languages.yml +583 -580
  496. data/resources/locales/tr/layout.yml +5 -5
  497. data/resources/locales/tr/lists.yml +23 -7
  498. data/resources/locales/tr/numbers.yml +61 -56
  499. data/resources/locales/tr/plurals.yml +2 -2
  500. data/resources/locales/tr/rbnf.yml +277 -0
  501. data/resources/locales/tr/territories.yml +264 -263
  502. data/resources/locales/uk/calendars.yml +286 -252
  503. data/resources/locales/uk/currencies.yml +1311 -1070
  504. data/resources/locales/uk/languages.yml +583 -580
  505. data/resources/locales/uk/layout.yml +5 -5
  506. data/resources/locales/uk/lists.yml +23 -7
  507. data/resources/locales/uk/numbers.yml +64 -59
  508. data/resources/locales/uk/plurals.yml +10 -4
  509. data/resources/locales/uk/rbnf.yml +430 -0
  510. data/resources/locales/uk/territories.yml +264 -263
  511. data/resources/locales/ur/calendars.yml +267 -228
  512. data/resources/locales/ur/currencies.yml +954 -916
  513. data/resources/locales/ur/languages.yml +583 -580
  514. data/resources/locales/ur/layout.yml +5 -5
  515. data/resources/locales/ur/lists.yml +23 -7
  516. data/resources/locales/ur/numbers.yml +62 -57
  517. data/resources/locales/ur/plurals.yml +3 -2
  518. data/resources/locales/ur/rbnf.yml +4 -0
  519. data/resources/locales/ur/territories.yml +264 -263
  520. data/resources/locales/vi/calendars.yml +256 -236
  521. data/resources/locales/vi/currencies.yml +953 -915
  522. data/resources/locales/vi/languages.yml +583 -580
  523. data/resources/locales/vi/layout.yml +5 -5
  524. data/resources/locales/vi/lists.yml +23 -7
  525. data/resources/locales/vi/numbers.yml +62 -57
  526. data/resources/locales/vi/plurals.yml +2 -2
  527. data/resources/locales/vi/rbnf.yml +164 -0
  528. data/resources/locales/vi/territories.yml +264 -263
  529. data/resources/locales/zh/calendars.yml +266 -265
  530. data/resources/locales/zh/currencies.yml +953 -915
  531. data/resources/locales/zh/languages.yml +583 -580
  532. data/resources/locales/zh/layout.yml +5 -5
  533. data/resources/locales/zh/lists.yml +23 -7
  534. data/resources/locales/zh/numbers.yml +62 -57
  535. data/resources/locales/zh/plurals.yml +2 -2
  536. data/resources/locales/zh/rbnf.yml +689 -0
  537. data/resources/locales/zh/territories.yml +264 -263
  538. data/resources/locales/zh-Hant/calendars.yml +266 -265
  539. data/resources/locales/zh-Hant/currencies.yml +955 -915
  540. data/resources/locales/zh-Hant/languages.yml +583 -580
  541. data/resources/locales/zh-Hant/layout.yml +5 -5
  542. data/resources/locales/zh-Hant/lists.yml +23 -7
  543. data/resources/locales/zh-Hant/numbers.yml +62 -57
  544. data/resources/locales/zh-Hant/plurals.yml +2 -2
  545. data/resources/locales/zh-Hant/rbnf.yml +647 -0
  546. data/resources/locales/zh-Hant/territories.yml +264 -263
  547. data/resources/shared/currency_digits_and_rounding.yml +67 -64
  548. data/resources/shared/numbering_systems.yml +176 -0
  549. data/resources/shared/rbnf_root.yml +1573 -0
  550. data/resources/shared/segments/segments_root.yml +728 -0
  551. data/resources/shared/segments/tailorings/en.yml +8 -0
  552. data/resources/uli/segments/de.yml +128 -0
  553. data/resources/uli/segments/en.yml +154 -0
  554. data/resources/uli/segments/es.yml +112 -0
  555. data/resources/uli/segments/fr.yml +47 -0
  556. data/resources/uli/segments/it.yml +37 -0
  557. data/resources/uli/segments/pt.yml +173 -0
  558. data/resources/uli/segments/ru.yml +10 -0
  559. data/resources/unicode_data/casefolding.yml +4765 -0
  560. data/resources/unicode_data/indices/bidi_class.yml +4572 -0
  561. data/resources/unicode_data/indices/bidi_mirrored.yml +3087 -0
  562. data/resources/unicode_data/indices/category.yml +10918 -0
  563. data/resources/unicode_data/indices/keys.yml +101 -0
  564. data/resources/unicode_data/properties/line_break.yml +9269 -0
  565. data/resources/unicode_data/properties/sentence_break.yml +8067 -0
  566. data/resources/unicode_data/properties/word_break.yml +3001 -0
  567. data/spec/collation/collation_spec.rb +2 -1
  568. data/spec/collation/collator_spec.rb +4 -3
  569. data/spec/collation/tailoring_spec.rb +2 -2
  570. data/spec/collation/tailoring_tests/he.txt +5 -2
  571. data/spec/{tokenizers/calendars → data_readers}/additional_date_format_selector_spec.rb +13 -13
  572. data/spec/data_readers/date_time_data_reader_spec.rb +26 -0
  573. data/spec/data_readers/number_data_reader_spec.rb +18 -0
  574. data/spec/data_readers/timespan_data_reader.rb +22 -0
  575. data/spec/formatters/calendars/datetime_formatter_spec.rb +18 -22
  576. data/spec/formatters/list_formatter_spec.rb +16 -87
  577. data/spec/formatters/numbers/abbreviated/abbreviated_number_formatter_spec.rb +15 -59
  578. data/spec/formatters/numbers/abbreviated/long_decimal_formatter_spec.rb +32 -17
  579. data/spec/formatters/numbers/abbreviated/short_decimal_formatter_spec.rb +33 -17
  580. data/spec/formatters/numbers/currency_formatter_spec.rb +18 -13
  581. data/spec/formatters/numbers/decimal_formatter_spec.rb +16 -18
  582. data/spec/formatters/numbers/number_formatter_spec.rb +40 -31
  583. data/spec/formatters/numbers/percent_formatter_spec.rb +14 -6
  584. data/spec/formatters/numbers/rbnf/allowed_failures.yml +74 -0
  585. data/spec/formatters/numbers/rbnf/locales/af/rbnf_test.yml +706 -0
  586. data/spec/formatters/numbers/rbnf/locales/ar/rbnf_test.yml +706 -0
  587. data/spec/formatters/numbers/rbnf/locales/be/rbnf_test.yml +1174 -0
  588. data/spec/formatters/numbers/rbnf/locales/bg/rbnf_test.yml +706 -0
  589. data/spec/formatters/numbers/rbnf/locales/bn/rbnf_test.yml +1291 -0
  590. data/spec/formatters/numbers/rbnf/locales/ca/rbnf_test.yml +1174 -0
  591. data/spec/formatters/numbers/rbnf/locales/cs/rbnf_test.yml +823 -0
  592. data/spec/formatters/numbers/rbnf/locales/cy/rbnf_test.yml +940 -0
  593. data/spec/formatters/numbers/rbnf/locales/da/rbnf_test.yml +940 -0
  594. data/spec/formatters/numbers/rbnf/locales/de/rbnf_test.yml +940 -0
  595. data/spec/formatters/numbers/rbnf/locales/el/rbnf_test.yml +1174 -0
  596. data/spec/formatters/numbers/rbnf/locales/en/rbnf_test.yml +1291 -0
  597. data/spec/formatters/numbers/rbnf/locales/en-GB/rbnf_test.yml +1291 -0
  598. data/spec/formatters/numbers/rbnf/locales/es/rbnf_test.yml +1642 -0
  599. data/spec/formatters/numbers/rbnf/locales/eu/rbnf_test.yml +1291 -0
  600. data/spec/formatters/numbers/rbnf/locales/fa/rbnf_test.yml +589 -0
  601. data/spec/formatters/numbers/rbnf/locales/fi/rbnf_test.yml +706 -0
  602. data/spec/formatters/numbers/rbnf/locales/fil/rbnf_test.yml +706 -0
  603. data/spec/formatters/numbers/rbnf/locales/fr/rbnf_test.yml +1408 -0
  604. data/spec/formatters/numbers/rbnf/locales/ga/rbnf_test.yml +940 -0
  605. data/spec/formatters/numbers/rbnf/locales/gl/rbnf_test.yml +1291 -0
  606. data/spec/formatters/numbers/rbnf/locales/he/rbnf_test.yml +1057 -0
  607. data/spec/formatters/numbers/rbnf/locales/hi/rbnf_test.yml +823 -0
  608. data/spec/formatters/numbers/rbnf/locales/hr/rbnf_test.yml +1174 -0
  609. data/spec/formatters/numbers/rbnf/locales/hu/rbnf_test.yml +940 -0
  610. data/spec/formatters/numbers/rbnf/locales/id/rbnf_test.yml +706 -0
  611. data/spec/formatters/numbers/rbnf/locales/is/rbnf_test.yml +823 -0
  612. data/spec/formatters/numbers/rbnf/locales/it/rbnf_test.yml +1174 -0
  613. data/spec/formatters/numbers/rbnf/locales/ja/rbnf_test.yml +823 -0
  614. data/spec/formatters/numbers/rbnf/locales/ko/rbnf_test.yml +1408 -0
  615. data/spec/formatters/numbers/rbnf/locales/lv/rbnf_test.yml +706 -0
  616. data/spec/formatters/numbers/rbnf/locales/ms/rbnf_test.yml +706 -0
  617. data/spec/formatters/numbers/rbnf/locales/nb/rbnf_test.yml +940 -0
  618. data/spec/formatters/numbers/rbnf/locales/nl/rbnf_test.yml +706 -0
  619. data/spec/formatters/numbers/rbnf/locales/pl/rbnf_test.yml +823 -0
  620. data/spec/formatters/numbers/rbnf/locales/pt/rbnf_test.yml +1174 -0
  621. data/spec/formatters/numbers/rbnf/locales/ro/rbnf_test.yml +823 -0
  622. data/spec/formatters/numbers/rbnf/locales/ru/rbnf_test.yml +823 -0
  623. data/spec/formatters/numbers/rbnf/locales/sk/rbnf_test.yml +823 -0
  624. data/spec/formatters/numbers/rbnf/locales/sq/rbnf_test.yml +706 -0
  625. data/spec/formatters/numbers/rbnf/locales/sr/rbnf_test.yml +940 -0
  626. data/spec/formatters/numbers/rbnf/locales/sv/rbnf_test.yml +1876 -0
  627. data/spec/formatters/numbers/rbnf/locales/ta/rbnf_test.yml +706 -0
  628. data/spec/formatters/numbers/rbnf/locales/th/rbnf_test.yml +706 -0
  629. data/spec/formatters/numbers/rbnf/locales/tr/rbnf_test.yml +706 -0
  630. data/spec/formatters/numbers/rbnf/locales/uk/rbnf_test.yml +823 -0
  631. data/spec/formatters/numbers/rbnf/locales/ur/rbnf_test.yml +1291 -0
  632. data/spec/formatters/numbers/rbnf/locales/vi/rbnf_test.yml +706 -0
  633. data/spec/formatters/numbers/rbnf/locales/zh/rbnf_test.yml +940 -0
  634. data/spec/formatters/numbers/rbnf/locales/zh-Hant/rbnf_test.yml +940 -0
  635. data/spec/formatters/numbers/rbnf/rbnf_spec.rb +98 -0
  636. data/spec/formatters/plurals/plural_formatter_spec.rb +4 -4
  637. data/spec/formatters/plurals/rules_spec.rb +5 -5
  638. data/spec/localized/localized_date_spec.rb +1 -1
  639. data/spec/localized/localized_datetime_spec.rb +8 -13
  640. data/spec/localized/localized_number_spec.rb +17 -32
  641. data/spec/localized/localized_object_spec.rb +0 -5
  642. data/spec/localized/localized_string_spec.rb +40 -2
  643. data/spec/localized/localized_time_spec.rb +3 -6
  644. data/spec/localized/localized_timespan_spec.rb +144 -0
  645. data/spec/normalization_spec.rb +12 -12
  646. data/spec/parsers/number_parser_spec.rb +5 -5
  647. data/spec/parsers/parser_spec.rb +60 -0
  648. data/spec/parsers/segmentation_parser_spec.rb +96 -0
  649. data/spec/parsers/symbol_table_spec.rb +32 -0
  650. data/spec/parsers/unicode_regex/character_class_spec.rb +117 -0
  651. data/spec/parsers/unicode_regex/character_range_spec.rb +21 -0
  652. data/spec/parsers/unicode_regex/character_set_spec.rb +36 -0
  653. data/spec/parsers/unicode_regex/literal_spec.rb +34 -0
  654. data/spec/parsers/unicode_regex/unicode_string_spec.rb +22 -0
  655. data/spec/parsers/unicode_regex_parser_spec.rb +86 -0
  656. data/spec/readme_spec.rb +8 -269
  657. data/spec/shared/break_iterator_spec.rb +72 -0
  658. data/spec/shared/calendar_spec.rb +5 -4
  659. data/spec/shared/casefolder_spec.rb +30 -0
  660. data/spec/shared/casefolding.txt +251 -0
  661. data/spec/shared/casefolding_expected.txt +251 -0
  662. data/spec/shared/code_point_spec.rb +44 -14
  663. data/spec/shared/numbering_system_spec.rb +41 -0
  664. data/spec/shared/territories_spec.rb +14 -6
  665. data/spec/shared/unicode_regex_spec.rb +203 -0
  666. data/spec/spec_helper.rb +17 -0
  667. data/spec/tokenizers/calendars/date_tokenizer_spec.rb +26 -30
  668. data/spec/tokenizers/calendars/datetime_tokenizer_spec.rb +11 -90
  669. data/spec/tokenizers/calendars/time_tokenizer_spec.rb +5 -5
  670. data/spec/tokenizers/calendars/timespan_tokenizer_spec.rb +17 -7
  671. data/spec/tokenizers/numbers/number_tokenizer_spec.rb +28 -27
  672. data/spec/tokenizers/segmentation/segmentation_tokenizer_spec.rb +40 -0
  673. data/spec/tokenizers/unicode_regex/unicode_regex_tokenizer_spec.rb +190 -0
  674. data/spec/utils/range_set_spec.rb +171 -0
  675. data/spec/utils/yaml/yaml_spec.rb +62 -51
  676. data/twitter_cldr.gemspec +1 -1
  677. metadata +199 -30
  678. data/lib/twitter_cldr/formatters/base.rb +0 -47
  679. data/lib/twitter_cldr/formatters/calendars/date_formatter.rb +0 -19
  680. data/lib/twitter_cldr/formatters/calendars/time_formatter.rb +0 -19
  681. data/lib/twitter_cldr/normalization/base.rb +0 -37
  682. data/lib/twitter_cldr/normalization/hangul.rb +0 -79
  683. data/lib/twitter_cldr/normalization/nfc.rb +0 -24
  684. data/lib/twitter_cldr/normalization/nfd.rb +0 -26
  685. data/lib/twitter_cldr/normalization/nfkc.rb +0 -114
  686. data/lib/twitter_cldr/normalization/nfkd.rb +0 -120
  687. data/lib/twitter_cldr/normalization/quick_check.rb +0 -41
  688. data/lib/twitter_cldr/tokenizers/base.rb +0 -169
  689. data/lib/twitter_cldr/tokenizers/calendars/datetime_tokenizer.rb +0 -131
  690. data/lib/twitter_cldr/utils/territories.rb +0 -56
  691. data/spec/formatters/base_spec.rb +0 -18
  692. data/spec/formatters/calendars/timespan_formatter_spec.rb +0 -112
  693. data/spec/normalization/NormalizationTestShort.txt +0 -602
  694. data/spec/normalization/base_spec.rb +0 -16
  695. data/spec/normalization/hangul_spec.rb +0 -42
  696. data/spec/normalization/normalization_spec.rb +0 -113
  697. data/spec/tokenizers/base_spec.rb +0 -259
  698. data/spec/utils/territories_spec.rb +0 -16
@@ -1,932 +1,992 @@
1
- ---
2
- :he:
3
- :currencies:
4
- :ADP:
5
- :one: פזטה אנדורית
6
- :other: Andorran pesetas
7
- :AED:
8
- :one: דירהם של איחוד הנסיכויות הערביות
9
- :other: UAE dirhams
10
- :AFA:
11
- :one: Afghan afghani (1927-2002)
12
- :other: Afghan afghanis (1927-2002)
13
- :AFN:
14
- :one: אפגני אפגני
15
- :other: Afghan Afghanis
16
- :ALK:
17
- :one: Albanian lek (1946-1965)
18
- :other: Albanian lekë (1946-1965)
19
- :ALL:
20
- :one: לק אלבני
21
- :other: Albanian lekë
22
- :AMD:
23
- :one: דראם ארמני
24
- :other: Armenian drams
25
- :ANG:
26
- :one: גילדן של האנטילים ההולנדיים
27
- :other: Netherlands Antillean guilders
28
- :AOA:
29
- :one: קואנזה אנגולי
30
- :other: Angolan kwanzas
31
- :AOK:
32
- :one: Angolan kwanza (1977-1991)
33
- :other: Angolan kwanzas (1977-1991)
34
- :AON:
35
- :one: קואנזה חדש אנגולי (1990-2000)
36
- :other: Angolan new kwanzas (1990-2000)
37
- :AOR:
38
- :one: קואנזה רג׳וסטדו אנגולי (1995-1999)
39
- :other: Angolan readjusted kwanzas (1995-1999)
40
- :ARA:
41
- :one: Argentine austral
42
- :other: Argentine australs
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: פזו ארגנטינאי (1983-1985)
51
- :other: Argentine pesos (1983-1985)
52
- :ARS:
53
- :one: פזו ארגנטינאי
54
- :other: Argentine pesos
55
- :ATS:
56
- :one: שילינג אוסטרי
57
- :other: Austrian schillings
58
- :AUD:
59
- :one: דולר אוסטרלי
60
- :other: Australian dollars
61
- :symbol: A$
62
- :AWG:
63
- :one: פלורין של ארובה
64
- :other: Aruban florin
65
- :AZM:
66
- :one: מנאט אזרביג׳אני (1993-2006)
67
- :other: Azerbaijani manats (1993-2006)
68
- :AZN:
69
- :one: מאנאט אזרביג׳ני
70
- :other: Azerbaijani manats
71
- :BAD:
72
- :one: דינר של בוסניה־הרצגובינה
73
- :other: Bosnia-Herzegovina dinars (1992-1994)
74
- :BAM:
75
- :one: מארק בר המרה של בוסניה־הרצגובינה
76
- :other: Bosnia-Herzegovina convertible marks
77
- :BAN:
78
- :one: Bosnia-Herzegovina new dinar (1994-1997)
79
- :other: Bosnia-Herzegovina new dinars (1994-1997)
80
- :BBD:
81
- :one: דולר ברבדיאני
82
- :other: Barbadian dollars
83
- :BDT:
84
- :one: טאקה בנגלדשי
85
- :other: Bangladeshi takas
86
- :BEC:
87
- :one: פרנק בלגי (בר המרה)
88
- :other: Belgian francs (convertible)
89
- :BEF:
90
- :one: פרנק בלגי
91
- :other: Belgian francs
92
- :BEL:
93
- :one: Belgian franc (financial)
94
- :other: Belgian francs (financial)
95
- :BGL:
96
- :one: לב בולגרי ישן
97
- :other: Bulgarian hard leva
98
- :BGM:
99
- :one: Bulgarian socialist lev
100
- :other: Bulgarian socialist leva
101
- :BGN:
102
- :one: לב בולגרי
103
- :other: Bulgarian leva
104
- :BGO:
105
- :one: Bulgarian lev (1879-1952)
106
- :other: Bulgarian leva (1879-1952)
107
- :BHD:
108
- :one: דינר בחרייני
109
- :other: Bahraini dinars
110
- :BIF:
111
- :one: פרנק בורונדי
112
- :other: Burundian francs
113
- :BMD:
114
- :one: דולר ברמודה
115
- :other: Bermudan dollars
116
- :BND:
117
- :one: דולר ברוניי
118
- :other: Brunei dollars
119
- :BOB:
120
- :one: בוליביאנו
121
- :other: Bolivian bolivianos
122
- :BOL:
123
- :one: Bolivian boliviano (1863-1963)
124
- :other: Bolivian bolivianos (1863-1963)
125
- :BOP:
126
- :one: פזו בוליבי
127
- :other: Bolivian pesos
128
- :BOV:
129
- :one: Bolivian mvdol
130
- :other: Bolivian mvdols
131
- :BRB:
132
- :one: קרוזיארו חדש ברזילאי (1967-1986)
133
- :other: Brazilian new cruzeiros (1967-1986)
134
- :BRC:
135
- :one: קרוזדו ברזילאי
136
- :other: Brazilian cruzados (1986-1989)
137
- :BRE:
138
- :one: Brazilian cruzeiro (1990-1993)
139
- :other: Brazilian cruzeiros (1990-1993)
140
- :BRL:
141
- :one: ריאל ברזילאי
142
- :other: Brazilian reals
143
- :symbol: R$
144
- :BRN:
145
- :one: Brazilian new cruzado (1989-1990)
146
- :other: Brazilian new cruzados (1989-1990)
147
- :BRR:
148
- :one: Brazilian cruzeiro (1993-1994)
149
- :other: Brazilian cruzeiros (1993-1994)
150
- :BRZ:
151
- :one: Brazilian cruzeiro (1942-1967)
152
- :other: Brazilian cruzeiros (1942-1967)
153
- :BSD:
154
- :one: דולר בהאמי
155
- :other: Bahamian dollars
156
- :BTN:
157
- :one: נגולטרום בהוטני
158
- :other: Bhutanese ngultrums
159
- :BUK:
160
- :one: Burmese kyat
161
- :other: Burmese kyats
162
- :BWP:
163
- :one: פולה בוצוואני
164
- :other: Botswanan pulas
165
- :BYB:
166
- :one: Belarusian new ruble (1994-1999)
167
- :other: Belarusian new rubles (1994-1999)
168
- :BYR:
169
- :one: רובל בלרוסי
170
- :other: Belarusian rubles
171
- :BZD:
172
- :one: דולר בליזי
173
- :other: Belize dollars
174
- :CAD:
175
- :one: דולר קנדי
176
- :other: Canadian dollars
177
- :symbol: CA$
178
- :CDF:
179
- :one: פרנק קונגולזי
180
- :other: Congolese francs
181
- :CHE:
182
- :one: WIR euro
183
- :other: WIR euros
184
- :CHF:
185
- :one: פרנק שוויצרי
186
- :other: Swiss francs
187
- :CHW:
188
- :one: WIR franc
189
- :other: WIR francs
190
- :CLE:
191
- :one: Chilean escudo
192
- :other: Chilean escudos
193
- :CLF:
194
- :one: Chilean unit of account (UF)
195
- :other: Chilean units of account (UF)
196
- :CLP:
197
- :one: פזו צ׳ילאני
198
- :other: Chilean pesos
199
- :CNX:
200
- :one: Chinese People’s Bank dollar
201
- :other: Chinese People’s Bank dollars
202
- :CNY:
203
- :many: יואן רנמינבי סיני
204
- :one: יואן רנמינבי סיני
205
- :other: יואן רנמינבי סיני
206
- :symbol: CN¥
207
- :two: יואן רנמינבי סיני
208
- :COP:
209
- :one: פזו קולומביאני
210
- :other: Colombian pesos
211
- :COU:
212
- :one: Colombian real value unit
213
- :other: Colombian real value units
214
- :CRC:
215
- :one: קולון קוסטה־ריקני
216
- :other: Costa Rican colóns
217
- :CSD:
218
- :one: דינר סרבי ישן
219
- :other: Serbian dinars (2002-2006)
220
- :CSK:
221
- :one: Czechoslovak hard koruna
222
- :other: Czechoslovak hard korunas
223
- :CUC:
224
- :one: פזו קובני להמרה
225
- :other: Cuban convertible pesos
226
- :CUP:
227
- :one: פזו קובני
228
- :other: Cuban pesos
229
- :CVE:
230
- :one: אסקודו כף ורדה
231
- :other: Cape Verdean escudos
232
- :CYP:
233
- :one: לירה קפריסאית
234
- :other: Cypriot pounds
235
- :CZK:
236
- :one: קורונה צ׳כית
237
- :other: Czech Republic korunas
238
- :DDM:
239
- :one: מרק מזרח גרמני
240
- :other: East German marks
241
- :DEM:
242
- :one: מרק גרמני
243
- :other: German marks
244
- :DJF:
245
- :one: פרנק ג׳יבוטי
246
- :other: Djiboutian francs
247
- :DKK:
248
- :one: כתר דני
249
- :other: Danish kroner
250
- :DOP:
251
- :one: פזו דומיניקני
252
- :other: Dominican pesos
253
- :DZD:
254
- :one: דינר אלג׳ירי
255
- :other: Algerian dinars
256
- :ECS:
257
- :one: סוקר אקואדורי
258
- :other: Ecuadorian sucres
259
- :ECV:
260
- :one: Ecuadorian unit of constant value
261
- :other: Ecuadorian units of constant value
262
- :EEK:
263
- :one: קרון אסטוני
264
- :other: Estonian kroons
265
- :EGP:
266
- :one: לירה מיצרית
267
- :other: Egyptian pounds
268
- :ERN:
269
- :one: נאקפה אריתראי
270
- :other: Eritrean nakfas
271
- :ESA:
272
- :one: פזטה [ESA]
273
- :other: Spanish pesetas (A account)
274
- :ESB:
275
- :one: פזטה [ESB]
276
- :other: Spanish pesetas (convertible account)
277
- :ESP:
278
- :one: פסטה ספרדי
279
- :other: Spanish pesetas
280
- :ETB:
281
- :one: ביר אתיופי
282
- :other: Ethiopian birrs
283
- :EUR:
284
- :one: אירו
285
- :other: euros
286
- :symbol:
287
- :FIM:
288
- :one: מרק פיני
289
- :other: Finnish markkas
290
- :FJD:
291
- :one: דולר פיג׳י
292
- :other: Fijian dollars
293
- :FKP:
294
- :one: לירה של איי פוקלנד
295
- :other: Falkland Islands pounds
296
- :FRF:
297
- :one: פרנק צרפתי
298
- :other: French francs
299
- :GBP:
300
- :one: לירה שטרלינג
301
- :other: British pounds sterling
302
- :symbol: £
303
- :GEK:
304
- :one: Georgian kupon larit
305
- :other: Georgian kupon larits
306
- :GEL:
307
- :one: לרי גאורגי
308
- :other: Georgian laris
309
- :GHC:
310
- :one: Ghanaian cedi (1979-2007)
311
- :other: Ghanaian cedis (1979-2007)
312
- :GHS:
313
- :one: סדי גאני
314
- :other: Ghanaian cedis
315
- :GIP:
316
- :one: פאונד גיברלטר
317
- :other: Gibraltar pounds
318
- :GMD:
319
- :one: דלאסי גמבי
320
- :other: Gambian dalasis
321
- :GNF:
322
- :one: פרנק גינאי
323
- :other: Guinean francs
324
- :GNS:
325
- :one: Guinean syli
326
- :other: Guinean sylis
327
- :GQE:
328
- :one: Equatorial Guinean ekwele
329
- :other: Equatorial Guinean ekwele
330
- :GRD:
331
- :one: דרכמה
332
- :other: Greek drachmas
333
- :GTQ:
334
- :one: קצל גואטמלי
335
- :other: Guatemalan quetzals
336
- :GWE:
337
- :one: Portuguese Guinea escudo
338
- :other: Portuguese Guinea escudos
339
- :GWP:
340
- :one: פזו גינאי
341
- :other: Guinea-Bissau pesos
342
- :GYD:
343
- :one: דולר גיאני
344
- :other: Guyanaese dollars
345
- :HKD:
346
- :one: דולר הונג קונגי
347
- :other: Hong Kong dollars
348
- :symbol: HK$
349
- :HNL:
350
- :one: למפירה הונדורי
351
- :other: Honduran lempiras
352
- :HRD:
353
- :one: Croatian dinar
354
- :other: Croatian dinars
355
- :HRK:
356
- :one: קונה קרואטי
357
- :other: Croatian kunas
358
- :HTG:
359
- :one: גארד האיטי
360
- :other: Haitian gourdes
361
- :HUF:
362
- :one: פורינט הונגרי
363
- :other: Hungarian forints
364
- :IDR:
365
- :many: רופיה אינדונזית
366
- :one: רופיה אינדונזית
367
- :other: רופיה אינדונזית
368
- :two: רופיה אינדונזית
369
- :IEP:
370
- :one: לירה אירית
371
- :other: Irish pounds
372
- :ILP:
373
- :one: לירה ישראלית
374
- :other: Israeli pounds
375
- :symbol: ל״י
376
- :ILR:
377
- :one: Israeli sheqel (1980-1985)
378
- :other: Israeli sheqels (1980-1985)
379
- :ILS:
380
- :many: שקלים חדשים
381
- :one: שקלים חדשים
382
- :other: שקלים חדשים
383
- :symbol:
384
- :two: שקלים חדשים
385
- :INR:
386
- :many: רופי הודית
387
- :one: רופי הודית
388
- :other: רופי הודית
389
- :symbol:
390
- :two: רופי הודית
391
- :IQD:
392
- :one: דינר עירקי
393
- :other: Iraqi dinars
394
- :IRR:
395
- :one: ריאל איראני
396
- :other: Iranian rials
397
- :ISJ:
398
- :one: Icelandic króna (1918-1981)
399
- :other: Icelandic krónur (1918-1981)
400
- :ISK:
401
- :one: קרונה איסלנדית
402
- :other: Icelandic krónur
403
- :ITL:
404
- :one: לירה איטלקית
405
- :other: Italian liras
406
- :JMD:
407
- :one: דולר ג׳מאיקני
408
- :other: Jamaican dollars
409
- :JOD:
410
- :one: דינר ירדני
411
- :other: Jordanian dinars
412
- :JPY:
413
- :one: ין יפני
414
- :other: Japanese yen
415
- :symbol: ¥
416
- :KES:
417
- :one: שילינג קנייאתי
418
- :other: Kenyan shillings
419
- :KGS:
420
- :one: סום קירגיזי
421
- :other: Kyrgystani soms
422
- :KHR:
423
- :one: ריל קמבודי
424
- :other: Cambodian riels
425
- :KMF:
426
- :one: פרנק קומורואי
427
- :other: Comorian francs
428
- :KPW:
429
- :one: וון צפון קוראני
430
- :other: North Korean won
431
- :KRH:
432
- :one: South Korean hwan (1953-1962)
433
- :other: South Korean hwan (1953-1962)
434
- :KRO:
435
- :one: South Korean won (1945-1953)
436
- :other: South Korean won (1945-1953)
437
- :KRW:
438
- :one: וון דרום קוראני
439
- :other: South Korean won
440
- :symbol:
441
- :KWD:
442
- :one: דינר כוויתי
443
- :other: Kuwaiti dinars
444
- :KYD:
445
- :one: דולר קיימאני
446
- :other: Cayman Islands dollars
447
- :KZT:
448
- :one: טנגה קזחסטני
449
- :other: Kazakhstani tenges
450
- :LAK:
451
- :one: קיפ לאי
452
- :other: Laotian kips
453
- :LBP:
454
- :one: לירה לבנונית
455
- :other: Lebanese pounds
456
- :LKR:
457
- :one: רופי סרי לנקי
458
- :other: Sri Lankan rupees
459
- :LRD:
460
- :one: דולר ליברי
461
- :other: Liberian dollars
462
- :LSL:
463
- :one: לוטי לסותי
464
- :other: Lesotho lotis
465
- :LTL:
466
- :one: ליטא ליטאי
467
- :other: Lithuanian litai
468
- :LTT:
469
- :one: Lithuanian talonas
470
- :other: Lithuanian talonases
471
- :LUC:
472
- :one: Luxembourgian convertible franc
473
- :other: Luxembourgian convertible francs
474
- :LUF:
475
- :one: פרנק לוקסמבורגי
476
- :other: Luxembourgian francs
477
- :LUL:
478
- :one: Luxembourg financial franc
479
- :other: Luxembourg financial francs
480
- :LVL:
481
- :one: לט לטבי
482
- :other: Latvian lati
483
- :LVR:
484
- :one: Latvian ruble
485
- :other: Latvian rubles
486
- :LYD:
487
- :one: דינר לובי
488
- :other: Libyan dinars
489
- :MAD:
490
- :one: דירהם מרוקאי
491
- :other: Moroccan dirhams
492
- :MAF:
493
- :one: פרנק מרוקאי
494
- :other: Moroccan francs
495
- :MCF:
496
- :one: Monegasque franc
497
- :other: Monegasque francs
498
- :MDC:
499
- :one: Moldovan cupon
500
- :other: Moldovan cupon
501
- :MDL:
502
- :one: ליאו מולדובני
503
- :other: Moldovan lei
504
- :MGA:
505
- :one: אריארי מלגשי
506
- :other: Malagasy Ariaries
507
- :MGF:
508
- :one: פרנק מדגסקארי
509
- :other: Malagasy francs
510
- :MKD:
511
- :one: דינר מקדוני
512
- :other: Macedonian denari
513
- :MKN:
514
- :one: Macedonian denar (1992-1993)
515
- :other: Macedonian denari (1992-1993)
516
- :MLF:
517
- :one: Malian franc
518
- :other: Malian francs
519
- :MMK:
520
- :one: קיאט מיאנמרי
521
- :other: Myanma kyats
522
- :MNT:
523
- :one: טוגריק מונגולי
524
- :other: Mongolian tugriks
525
- :MOP:
526
- :one: פטקה של מקאו
527
- :other: Macanese patacas
528
- :MRO:
529
- :one: אוגוויה מאוריטני
530
- :other: Mauritanian ouguiyas
531
- :MTL:
532
- :one: לירה מלטית
533
- :other: Maltese lira
534
- :MTP:
535
- :one: Maltese pound
536
- :other: Maltese pounds
537
- :MUR:
538
- :one: רופי מאוריציני
539
- :other: Mauritian rupees
540
- :MVP:
541
- :one: Maldivian rupee
542
- :other: Maldivian rupees
543
- :MVR:
544
- :one: רופיה מלדיבית
545
- :other: Maldivian rufiyaas
546
- :MWK:
547
- :one: קואצ׳ה מלאוי
548
- :other: Malawian Kwachas
549
- :MXN:
550
- :one: פזו מקסיקני
551
- :other: Mexican pesos
552
- :symbol: MX$
553
- :MXP:
554
- :one: פזו מקסיקני (1861 - 1992)
555
- :other: Mexican silver pesos (1861-1992)
556
- :MXV:
557
- :one: Mexican investment unit
558
- :other: Mexican investment units
559
- :MYR:
560
- :one: רינגיט מלזי
561
- :other: Malaysian ringgits
562
- :MZE:
563
- :one: Mozambican escudo
564
- :other: Mozambican escudos
565
- :MZM:
566
- :one: מטיקל
567
- :other: Mozambican meticals (1980-2006)
568
- :MZN:
569
- :many: מטיקל מוזמביני
570
- :one: מטיקל מוזמביני
571
- :other: מטיקל מוזמביני
572
- :two: מטיקל מוזמביני
573
- :NAD:
574
- :one: דולר נמיבי
575
- :other: Namibian dollars
576
- :NGN:
577
- :one: נאירה ניגרי
578
- :other: Nigerian nairas
579
- :NIC:
580
- :one: Nicaraguan córdoba (1988-1991)
581
- :other: Nicaraguan córdobas (1988-1991)
582
- :NIO:
583
- :one: קורדובה ניקראגי
584
- :other: Nicaraguan córdobas
585
- :NLG:
586
- :one: גילדן הולנדי
587
- :other: Dutch guilders
588
- :NOK:
589
- :one: כתר נורבגי
590
- :other: Norwegian kroner
591
- :NPR:
592
- :one: רופי נפאלי
593
- :other: Nepalese rupees
594
- :NZD:
595
- :one: דולר ניו זילנדי
596
- :other: New Zealand dollars
597
- :symbol: NZ$
598
- :OMR:
599
- :one: ריאל עומאני
600
- :other: Omani rials
601
- :PAB:
602
- :one: בלבואה פנמי
603
- :other: Panamanian balboas
604
- :PEI:
605
- :one: Peruvian inti
606
- :other: Peruvian intis
607
- :PEN:
608
- :one: סול פרואני חדש
609
- :other: Peruvian nuevos soles
610
- :PES:
611
- :one: Peruvian sol (1863-1965)
612
- :other: Peruvian soles (1863-1965)
613
- :PGK:
614
- :one: קינה של פפואה גינאה החדשה
615
- :other: Papua New Guinean kina
616
- :PHP:
617
- :one: פזו פיליפיני
618
- :other: Philippine pesos
619
- :PKR:
620
- :one: רופי פקיסטני
621
- :other: Pakistani rupees
622
- :PLN:
623
- :one: זלוטי פולני
624
- :other: Polish zlotys
625
- :PLZ:
626
- :one: זלוטי (1950 - 1995)
627
- :other: Polish zlotys (PLZ)
628
- :PTE:
629
- :one: אסקודו פורטוגלי
630
- :other: Portuguese escudos
631
- :PYG:
632
- :one: גוורני פראגוואי
633
- :other: Paraguayan guaranis
634
- :QAR:
635
- :one: ריאל קטארי
636
- :other: Qatari rials
637
- :RHD:
638
- :one: Rhodesian dollar
639
- :other: Rhodesian dollars
640
- :ROL:
641
- :one: לאו רומני ישן
642
- :other: Romanian Lei (1952-2006)
643
- :RON:
644
- :one: לאו רומני חדש
645
- :other: Romanian lei
646
- :RSD:
647
- :one: דינר סרבי
648
- :other: Serbian dinars
649
- :RUB:
650
- :one: רובל
651
- :other: Russian rubles
652
- :RUR:
653
- :one: רובל רוסי (1991 - 1998)
654
- :other: Russian rubles (1991-1998)
655
- :RWF:
656
- :one: פרנק רואנדי
657
- :other: Rwandan francs
658
- :SAR:
659
- :one: ריאל סעודי
660
- :other: Saudi riyals
661
- :SBD:
662
- :one: דולר איי שלמה
663
- :other: Solomon Islands dollars
664
- :SCR:
665
- :one: רופי סיישלי
666
- :other: Seychellois rupees
667
- :SDD:
668
- :one: דינר סודני
669
- :other: Sudanese dinars (1992-2007)
670
- :SDG:
671
- :one: לירה סודנית
672
- :other: Sudanese pounds
673
- :SDP:
674
- :one: לירה סודנית (1957-1998)
675
- :other: Sudanese pounds (1957-1998)
676
- :SEK:
677
- :one: כתר שוודי
678
- :other: Swedish kronor
679
- :SGD:
680
- :one: דולר סינגפורי
681
- :other: Singapore dollars
682
- :SHP:
683
- :one: פאונד סנט הלני
684
- :other: Saint Helena pounds
685
- :SIT:
686
- :one: טולאר סלובני
687
- :other: Slovenian tolars
688
- :SKK:
689
- :one: קורונה סלובקי
690
- :other: Slovak korunas
691
- :SLL:
692
- :one: ליאון סיירה לאוני
693
- :other: Sierra Leonean leones
694
- :SOS:
695
- :one: שילינג סומאלי
696
- :other: Somali shillings
697
- :SRD:
698
- :one: דולר סורינאמי
699
- :other: Surinamese dollars
700
- :SRG:
701
- :one: גילדר סורינאמי
702
- :other: Surinamese guilders
703
- :SSP:
704
- :many: לירה דרום סודאנית
705
- :one: לירה דרום סודאנית
706
- :other: לירה דרום סודאנית
707
- :two: לירה דרום סודאנית
708
- :STD:
709
- :one: דוברה של סן טומה ופרינסיפה
710
- :other: São Tomé and Príncipe dobras
711
- :SUR:
712
- :one: רובל סובייטי
713
- :other: Soviet roubles
714
- :SVC:
715
- :one: Salvadoran colón
716
- :other: Salvadoran colones
717
- :SYP:
718
- :one: לירה סורית
719
- :other: Syrian pounds
720
- :SZL:
721
- :one: לילנגני סווזי
722
- :other: Swazi emalangeni
723
- :THB:
724
- :one: בהט תאילנדי
725
- :other: Thai baht
726
- :symbol: ฿
727
- :TJR:
728
- :one: Tajikistani ruble
729
- :other: Tajikistani rubles
730
- :TJS:
731
- :one: סומוני טג׳קיסטני
732
- :other: Tajikistani somonis
733
- :TMM:
734
- :one: מנאט טורקמאני
735
- :other: Turkmenistani manat (1993-2009)
736
- :TMT:
737
- :one: מנאט טורקמני
738
- :other: Turkmenistani manat
739
- :TND:
740
- :one: דינר טוניסאי
741
- :other: Tunisian dinars
742
- :TOP:
743
- :one: פאאמגה טונגי
744
- :other: Tongan paʻanga
745
- :TPE:
746
- :one: אסקודו טימוראי
747
- :other: Timorese escudos
748
- :TRL:
749
- :one: לירה טורקית
750
- :other: Turkish Lira (1922-2005)
751
- :TRY:
752
- :many: לירה טורקית חדשה
753
- :one: לירה טורקית חדשה
754
- :other: לירה טורקית חדשה
755
- :two: לירה טורקית חדשה
756
- :TTD:
757
- :one: דולר טרינידדי
758
- :other: Trinidad and Tobago dollars
759
- :TWD:
760
- :many: דולר טאייוני חדש
761
- :one: דולר טאייוני חדש
762
- :other: דולר טאייוני חדש
763
- :symbol: NT$
764
- :two: דולר טאייוני חדש
765
- :TZS:
766
- :one: שילינג טנזני
767
- :other: Tanzanian shillings
768
- :UAH:
769
- :one: גריבנה אוקראיני
770
- :other: Ukrainian hryvnias
771
- :UAK:
772
- :one: Ukrainian karbovanets
773
- :other: Ukrainian karbovantsiv
774
- :UGS:
775
- :one: שילינג אוגנדי (1966 - 1987)
776
- :other: Ugandan shillings (1966-1987)
777
- :UGX:
778
- :one: שילינג אוגנדי
779
- :other: Ugandan shillings
780
- :USD:
781
- :one: דולר אמריקאי
782
- :other: US dollars
783
- :symbol: $
784
- :USN:
785
- :one: דולר אמריקאי (היום הבא)
786
- :other: US dollars (next day)
787
- :USS:
788
- :one: דולר אמריקאי (היום הזה)
789
- :other: US dollars (same day)
790
- :UYI:
791
- :one: Uruguayan peso (indexed units)
792
- :other: Uruguayan pesos (indexed units)
793
- :UYP:
794
- :one: Uruguayan peso (1975-1993)
795
- :other: Uruguayan pesos (1975-1993)
796
- :UYU:
797
- :one: פזו אורוגוואי
798
- :other: Uruguayan pesos
799
- :UZS:
800
- :one: סום אוזבקי
801
- :other: Uzbekistan som
802
- :VEB:
803
- :one: בוליבר ונצואלי (1871-2008)
804
- :other: Venezuelan bolívars (1871-2008)
805
- :VEF:
806
- :one: בוליבר ונצואלי
807
- :other: Venezuelan bolívars
808
- :VND:
809
- :one: דונג וייטנאמי
810
- :other: Vietnamese dong
811
- :symbol:
812
- :VNN:
813
- :one: Vietnamese dong (1978-1985)
814
- :other: Vietnamese dong (1978-1985)
815
- :VUV:
816
- :one: ואטו של ונואטו
817
- :other: Vanuatu vatus
818
- :WST:
819
- :one: טאלה סמואי
820
- :other: Samoan tala
821
- :XAF:
822
- :one: פרנק CFA BEAC
823
- :other: CFA francs BEAC
824
- :symbol: FCFA
825
- :XAG:
826
- :one: כסף
827
- :other: troy ounces of silver
828
- :XAU:
829
- :one: זהב
830
- :other: troy ounces of gold
831
- :XBA:
832
- :one: European composite unit
833
- :other: European composite units
834
- :XBB:
835
- :one: European monetary unit
836
- :other: European monetary units
837
- :XBC:
838
- :one: European unit of account (XBC)
839
- :other: European units of account (XBC)
840
- :XBD:
841
- :one: European unit of account (XBD)
842
- :other: European units of account (XBD)
843
- :XCD:
844
- :one: דולר מזרח קריבי
845
- :other: East Caribbean dollars
846
- :symbol: EC$
847
- :XDR:
848
- :one: זכויות משיכה מיוחדות
849
- :other: special drawing rights
850
- :XEU:
851
- :one: European currency unit
852
- :other: European currency units
853
- :XFO:
854
- :one: פרנק זהב
855
- :other: French gold francs
856
- :XFU:
857
- :one: French UIC-franc
858
- :other: French UIC-francs
859
- :XOF:
860
- :one: פרנק CFA BCEAO
861
- :other: CFA francs BCEAO
862
- :symbol: CFA
863
- :XPD:
864
- :one: פלדיום
865
- :other: troy ounces of palladium
866
- :XPF:
867
- :one: פרנק CFP
868
- :other: CFP francs
869
- :symbol: CFPF
870
- :XPT:
871
- :one: פלטינה
872
- :other: troy ounces of platinum
873
- :XRE:
874
- :one: RINET Funds unit
875
- :other: RINET Funds units
876
- :XSU:
877
- :one: Sucre
878
- :other: Sucres
879
- :XTS:
880
- :one: סימון למטרות בדיקה
881
- :other: Testing Currency units
882
- :XUA:
883
- :one: ADB unit of account
884
- :other: ADB units of account
885
- :XXX:
886
- :one: מטבע שאינו ידוע
887
- :other: (unknown currency)
888
- :YDD:
889
- :one: דינר תימני
890
- :other: Yemeni dinars
891
- :YER:
892
- :one: ריאל תימני
893
- :other: Yemeni rials
894
- :YUD:
895
- :one: דינר יגוסלבי חדש
896
- :other: Yugoslavian hard dinars (1966-1990)
897
- :YUM:
898
- :one: דינר יגוסלבי
899
- :other: Yugoslavian new dinars (1994-2002)
900
- :YUN:
901
- :one: Yugoslavian convertible dinar (1990-1992)
902
- :other: Yugoslavian convertible dinars (1990-1992)
903
- :YUR:
904
- :one: Yugoslavian reformed dinar (1992-1993)
905
- :other: Yugoslavian reformed dinars (1992-1993)
906
- :ZAL:
907
- :one: ראנד דרום אפריקאי (כספי)
908
- :other: South African rands (financial)
909
- :ZAR:
910
- :one: ראנד דרום אפריקאי
911
- :other: South African rand
912
- :ZMK:
913
- :one: קוואצ׳ה זמבית (1968-2012)
914
- :other: Zambian kwachas (1968-2012)
915
- :ZMW:
916
- :one: קוואצ׳ה זמבית
917
- :other: Zambian kwachas
918
- :ZRN:
919
- :one: זאיר חדש
920
- :other: Zairean new zaires (1993-1998)
921
- :ZRZ:
922
- :one: Zairean zaire (1971-1993)
923
- :other: Zairean zaires (1971-1993)
924
- :ZWD:
925
- :one: דולר זימבבואי
926
- :other: Zimbabwean dollars (1980-2008)
927
- :ZWL:
928
- :one: Zimbabwean dollar (2009)
929
- :other: Zimbabwean dollars (2009)
930
- :ZWR:
931
- :one: Zimbabwean dollar (2008)
932
- :other: Zimbabwean dollars (2008)
1
+ ---
2
+ :he:
3
+ :currencies:
4
+ :ADP:
5
+ :one: "פזטה אנדורית"
6
+ :other: "Andorran pesetas"
7
+ :AED:
8
+ :one: "דירהם של איחוד הנסיכויות הערביות"
9
+ :other: "UAE dirhams"
10
+ :AFA:
11
+ :one: "Afghan afghani (19272002)"
12
+ :other: "Afghan afghanis (19272002)"
13
+ :AFN:
14
+ :one: "אפגני אפגני"
15
+ :other: "Afghan Afghanis"
16
+ :ALK:
17
+ :one: "Albanian lek (19461965)"
18
+ :other: "Albanian lekë (19461965)"
19
+ :ALL:
20
+ :one: "לק אלבני"
21
+ :other: "Albanian lekë"
22
+ :AMD:
23
+ :one: "דראם ארמני"
24
+ :other: "Armenian drams"
25
+ :ANG:
26
+ :one: "גילדן של האנטילים ההולנדיים"
27
+ :other: "Netherlands Antillean guilders"
28
+ :AOA:
29
+ :one: "קואנזה אנגולי"
30
+ :other: "Angolan kwanzas"
31
+ :AOK:
32
+ :one: "Angolan kwanza (19771991)"
33
+ :other: "Angolan kwanzas (19771991)"
34
+ :AON:
35
+ :one: "קואנזה חדש אנגולי (19902000)"
36
+ :other: "Angolan new kwanzas (19902000)"
37
+ :AOR:
38
+ :one: "קואנזה רג׳וסטדו אנגולי (19951999)"
39
+ :other: "Angolan readjusted kwanzas (19951999)"
40
+ :ARA:
41
+ :one: "Argentine austral"
42
+ :other: "Argentine australs"
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: "פזו ארגנטינאי (19831985)"
51
+ :other: "Argentine pesos (19831985)"
52
+ :ARS:
53
+ :one: "פזו ארגנטינאי"
54
+ :other: "Argentine pesos"
55
+ :symbol: "$"
56
+ :ATS:
57
+ :one: "שילינג אוסטרי"
58
+ :other: "Austrian schillings"
59
+ :AUD:
60
+ :one: "דולר אוסטרלי"
61
+ :other: "Australian dollars"
62
+ :symbol: "A$"
63
+ :AWG:
64
+ :one: "פלורין של ארובה"
65
+ :other: "Aruban florin"
66
+ :AZM:
67
+ :one: "מנאט אזרביג׳אני (19932006)"
68
+ :other: "Azerbaijani manats (1993–2006)"
69
+ :AZN:
70
+ :one: "מאנאט אזרביג׳ני"
71
+ :other: "Azerbaijani manats"
72
+ :BAD:
73
+ :one: "דינר של בוסניה־הרצגובינה"
74
+ :other: "Bosnia-Herzegovina dinars (1992–1994)"
75
+ :BAM:
76
+ :one: "מארק בר המרה של בוסניה־הרצגובינה"
77
+ :other: "Bosnia-Herzegovina convertible marks"
78
+ :BAN:
79
+ :one: "Bosnia-Herzegovina new dinar (19941997)"
80
+ :other: "Bosnia-Herzegovina new dinars (1994–1997)"
81
+ :BBD:
82
+ :one: "דולר ברבדיאני"
83
+ :other: "Barbadian dollars"
84
+ :symbol: "$"
85
+ :BDT:
86
+ :one: "טאקה בנגלדשי"
87
+ :other: "Bangladeshi takas"
88
+ :symbol: "৳"
89
+ :BEC:
90
+ :one: "פרנק בלגי (בר המרה)"
91
+ :other: "Belgian francs (convertible)"
92
+ :BEF:
93
+ :one: "פרנק בלגי"
94
+ :other: "Belgian francs"
95
+ :BEL:
96
+ :one: "Belgian franc (financial)"
97
+ :other: "Belgian francs (financial)"
98
+ :BGL:
99
+ :one: "לב בולגרי ישן"
100
+ :other: "Bulgarian hard leva"
101
+ :BGM:
102
+ :one: "Bulgarian socialist lev"
103
+ :other: "Bulgarian socialist leva"
104
+ :BGN:
105
+ :one: "לב בולגרי"
106
+ :other: "Bulgarian leva"
107
+ :BGO:
108
+ :one: "Bulgarian lev (1879–1952)"
109
+ :other: "Bulgarian leva (1879–1952)"
110
+ :BHD:
111
+ :one: "דינר בחרייני"
112
+ :other: "Bahraini dinars"
113
+ :BIF:
114
+ :one: "פרנק בורונדי"
115
+ :other: "Burundian francs"
116
+ :BMD:
117
+ :many: "דולר ברמודה"
118
+ :one: "דולר ברמודה"
119
+ :other: "דולר ברמודה"
120
+ :symbol: "$"
121
+ :two: "דולר ברמודה"
122
+ :BND:
123
+ :one: "דולר ברוניי"
124
+ :other: "Brunei dollars"
125
+ :symbol: "$"
126
+ :BOB:
127
+ :one: "בוליביאנו"
128
+ :other: "Bolivian bolivianos"
129
+ :BOL:
130
+ :one: "Bolivian boliviano (1863–1963)"
131
+ :other: "Bolivian bolivianos (1863–1963)"
132
+ :BOP:
133
+ :one: "פזו בוליבי"
134
+ :other: "Bolivian pesos"
135
+ :BOV:
136
+ :one: "Bolivian mvdol"
137
+ :other: "Bolivian mvdols"
138
+ :BRB:
139
+ :one: "קרוזיארו חדש ברזילאי (1967–1986)"
140
+ :other: "Brazilian new cruzeiros (1967–1986)"
141
+ :BRC:
142
+ :one: "קרוזדו ברזילאי"
143
+ :other: "Brazilian cruzados (1986–1989)"
144
+ :BRE:
145
+ :one: "Brazilian cruzeiro (1990–1993)"
146
+ :other: "Brazilian cruzeiros (1990–1993)"
147
+ :BRL:
148
+ :one: "ריאל ברזילאי"
149
+ :other: "Brazilian reals"
150
+ :symbol: "R$"
151
+ :BRN:
152
+ :one: "Brazilian new cruzado (1989–1990)"
153
+ :other: "Brazilian new cruzados (1989–1990)"
154
+ :BRR:
155
+ :one: "Brazilian cruzeiro (1993–1994)"
156
+ :other: "Brazilian cruzeiros (1993–1994)"
157
+ :BRZ:
158
+ :one: "Brazilian cruzeiro (1942–1967)"
159
+ :other: "Brazilian cruzeiros (1942–1967)"
160
+ :BSD:
161
+ :one: "דולר בהאמי"
162
+ :other: "Bahamian dollars"
163
+ :symbol: "$"
164
+ :BTN:
165
+ :one: "נגולטרום בהוטני"
166
+ :other: "Bhutanese ngultrums"
167
+ :BUK:
168
+ :one: "Burmese kyat"
169
+ :other: "Burmese kyats"
170
+ :BWP:
171
+ :one: "פולה בוצוואני"
172
+ :other: "Botswanan pulas"
173
+ :BYB:
174
+ :one: "Belarusian new ruble (1994–1999)"
175
+ :other: "Belarusian new rubles (1994–1999)"
176
+ :BYR:
177
+ :one: "רובל בלרוסי"
178
+ :other: "Belarusian rubles"
179
+ :symbol: "р."
180
+ :BZD:
181
+ :many: "דולר בליזי"
182
+ :one: "דולר בליזי"
183
+ :other: "דולר בליזי"
184
+ :symbol: "$"
185
+ :two: "דולר בליזי"
186
+ :CAD:
187
+ :many: "דולר קנדי"
188
+ :one: "דולר קנדי"
189
+ :other: "דולר קנדי"
190
+ :symbol: "CA$"
191
+ :two: "דולר קנדי"
192
+ :CDF:
193
+ :one: "פרנק קונגולזי"
194
+ :other: "Congolese francs"
195
+ :CHE:
196
+ :one: "WIR euro"
197
+ :other: "WIR euros"
198
+ :CHF:
199
+ :one: "פרנק שוויצרי"
200
+ :other: "Swiss francs"
201
+ :CHW:
202
+ :one: "WIR franc"
203
+ :other: "WIR francs"
204
+ :CLE:
205
+ :one: "Chilean escudo"
206
+ :other: "Chilean escudos"
207
+ :CLF:
208
+ :one: "Chilean unit of account (UF)"
209
+ :other: "Chilean units of account (UF)"
210
+ :CLP:
211
+ :one: "פזו צ׳ילאני"
212
+ :other: "Chilean pesos"
213
+ :symbol: "$"
214
+ :CNX:
215
+ :one: "Chinese People’s Bank dollar"
216
+ :other: "Chinese People’s Bank dollars"
217
+ :CNY:
218
+ :many: "יואן רנמינבי סיני"
219
+ :one: "יואן רנמינבי סיני"
220
+ :other: "יואן רנמינבי סיני"
221
+ :symbol: "CN¥"
222
+ :two: "יואן רנמינבי סיני"
223
+ :COP:
224
+ :one: "פזו קולומביאני"
225
+ :other: "Colombian pesos"
226
+ :symbol: "$"
227
+ :COU:
228
+ :one: "Colombian real value unit"
229
+ :other: "Colombian real value units"
230
+ :CRC:
231
+ :many: "קולון קוסטה־ריקני"
232
+ :one: "קולון קוסטה־ריקני"
233
+ :other: "קולון קוסטה־ריקני"
234
+ :symbol: "₡"
235
+ :two: "קולון קוסטה־ריקני"
236
+ :CSD:
237
+ :one: "דינר סרבי ישן"
238
+ :other: "Serbian dinars (2002–2006)"
239
+ :CSK:
240
+ :one: "Czechoslovak hard koruna"
241
+ :other: "Czechoslovak hard korunas"
242
+ :CUC:
243
+ :one: "פזו קובני להמרה"
244
+ :other: "Cuban convertible pesos"
245
+ :CUP:
246
+ :one: "פזו קובני"
247
+ :other: "Cuban pesos"
248
+ :symbol: "$"
249
+ :CVE:
250
+ :one: "אסקודו כף ורדה"
251
+ :other: "Cape Verdean escudos"
252
+ :CYP:
253
+ :one: "לירה קפריסאית"
254
+ :other: "Cypriot pounds"
255
+ :CZK:
256
+ :one: "קורונה צ׳כית"
257
+ :other: "Czech Republic korunas"
258
+ :DDM:
259
+ :one: "מרק מזרח גרמני"
260
+ :other: "East German marks"
261
+ :DEM:
262
+ :one: "מרק גרמני"
263
+ :other: "German marks"
264
+ :DJF:
265
+ :one: "פרנק ג׳יבוטי"
266
+ :other: "Djiboutian francs"
267
+ :DKK:
268
+ :one: "כתר דני"
269
+ :other: "Danish kroner"
270
+ :DOP:
271
+ :one: "פזו דומיניקני"
272
+ :other: "Dominican pesos"
273
+ :symbol: "$"
274
+ :DZD:
275
+ :one: "דינר אלג׳ירי"
276
+ :other: "Algerian dinars"
277
+ :ECS:
278
+ :one: "סוקר אקואדורי"
279
+ :other: "Ecuadorian sucres"
280
+ :ECV:
281
+ :one: "Ecuadorian unit of constant value"
282
+ :other: "Ecuadorian units of constant value"
283
+ :EEK:
284
+ :one: "קרון אסטוני"
285
+ :other: "Estonian kroons"
286
+ :EGP:
287
+ :one: "לירה מיצרית"
288
+ :other: "Egyptian pounds"
289
+ :ERN:
290
+ :one: "נאקפה אריתראי"
291
+ :other: "Eritrean nakfas"
292
+ :ESA:
293
+ :one: "פזטה [ESA]"
294
+ :other: "Spanish pesetas (A account)"
295
+ :ESB:
296
+ :one: "פזטה [ESB]"
297
+ :other: "Spanish pesetas (convertible account)"
298
+ :ESP:
299
+ :one: "פסטה ספרדי"
300
+ :other: "Spanish pesetas"
301
+ :symbol: "₧"
302
+ :ETB:
303
+ :one: "ביר אתיופי"
304
+ :other: "Ethiopian birrs"
305
+ :EUR:
306
+ :one: "אירו"
307
+ :other: "euros"
308
+ :symbol: "€"
309
+ :FIM:
310
+ :one: "מרק פיני"
311
+ :other: "Finnish markkas"
312
+ :FJD:
313
+ :one: "דולר פיג׳י"
314
+ :other: "Fijian dollars"
315
+ :symbol: "$"
316
+ :FKP:
317
+ :one: "לירה של איי פוקלנד"
318
+ :other: "Falkland Islands pounds"
319
+ :FRF:
320
+ :one: "פרנק צרפתי"
321
+ :other: "French francs"
322
+ :GBP:
323
+ :one: "לירה שטרלינג"
324
+ :other: "British pounds sterling"
325
+ :symbol: "£"
326
+ :GEK:
327
+ :one: "Georgian kupon larit"
328
+ :other: "Georgian kupon larits"
329
+ :GEL:
330
+ :one: "לרי גאורגי"
331
+ :other: "Georgian laris"
332
+ :GHC:
333
+ :one: "Ghanaian cedi (1979–2007)"
334
+ :other: "Ghanaian cedis (1979–2007)"
335
+ :GHS:
336
+ :one: "סדי גאני"
337
+ :other: "Ghanaian cedis"
338
+ :symbol: "₵"
339
+ :GIP:
340
+ :one: "פאונד גיברלטר"
341
+ :other: "Gibraltar pounds"
342
+ :symbol: "£"
343
+ :GMD:
344
+ :one: "דלאסי גמבי"
345
+ :other: "Gambian dalasis"
346
+ :GNF:
347
+ :one: "פרנק גינאי"
348
+ :other: "Guinean francs"
349
+ :GNS:
350
+ :one: "Guinean syli"
351
+ :other: "Guinean sylis"
352
+ :GQE:
353
+ :one: "Equatorial Guinean ekwele"
354
+ :other: "Equatorial Guinean ekwele"
355
+ :GRD:
356
+ :one: "דרכמה"
357
+ :other: "Greek drachmas"
358
+ :GTQ:
359
+ :many: "קצל גואטמלי"
360
+ :one: "קצל גואטמלי"
361
+ :other: "קצל גואטמלי"
362
+ :two: "קצל גואטמלי"
363
+ :GWE:
364
+ :one: "Portuguese Guinea escudo"
365
+ :other: "Portuguese Guinea escudos"
366
+ :GWP:
367
+ :one: "פזו גינאי"
368
+ :other: "Guinea-Bissau pesos"
369
+ :GYD:
370
+ :one: "דולר גיאני"
371
+ :other: "Guyanaese dollars"
372
+ :symbol: "$"
373
+ :HKD:
374
+ :one: "דולר הונג קונגי"
375
+ :other: "Hong Kong dollars"
376
+ :symbol: "HK$"
377
+ :HNL:
378
+ :many: "למפירה הונדורי"
379
+ :one: "למפירה הונדורי"
380
+ :other: "למפירה הונדורי"
381
+ :two: "למפירה הונדורי"
382
+ :HRD:
383
+ :one: "Croatian dinar"
384
+ :other: "Croatian dinars"
385
+ :HRK:
386
+ :one: "קונה קרואטי"
387
+ :other: "Croatian kunas"
388
+ :HTG:
389
+ :one: "גארד האיטי"
390
+ :other: "Haitian gourdes"
391
+ :HUF:
392
+ :one: "פורינט הונגרי"
393
+ :other: "Hungarian forints"
394
+ :IDR:
395
+ :many: "רופיה אינדונזית"
396
+ :one: "רופיה אינדונזית"
397
+ :other: "רופיה אינדונזית"
398
+ :two: "רופיה אינדונזית"
399
+ :IEP:
400
+ :one: "לירה אירית"
401
+ :other: "Irish pounds"
402
+ :ILP:
403
+ :one: "לירה ישראלית"
404
+ :other: "Israeli pounds"
405
+ :symbol: "ל״י"
406
+ :ILR:
407
+ :one: "Israeli sheqel (1980–1985)"
408
+ :other: "Israeli sheqels (1980–1985)"
409
+ :ILS:
410
+ :many: "שקלים חדשים"
411
+ :one: "שקלים חדשים"
412
+ :other: "שקלים חדשים"
413
+ :symbol: "₪"
414
+ :two: "שקלים חדשים"
415
+ :INR:
416
+ :many: "רופי הודית"
417
+ :one: "רופי הודית"
418
+ :other: "רופי הודית"
419
+ :symbol: "₹"
420
+ :two: "רופי הודית"
421
+ :IQD:
422
+ :one: "דינר עירקי"
423
+ :other: "Iraqi dinars"
424
+ :IRR:
425
+ :one: "ריאל איראני"
426
+ :other: "Iranian rials"
427
+ :ISJ:
428
+ :one: "Icelandic króna (1918–1981)"
429
+ :other: "Icelandic krónur (1918–1981)"
430
+ :ISK:
431
+ :one: "קרונה איסלנדית"
432
+ :other: "Icelandic krónur"
433
+ :ITL:
434
+ :one: "לירה איטלקית"
435
+ :other: "Italian liras"
436
+ :JMD:
437
+ :one: "דולר ג׳מאיקני"
438
+ :other: "Jamaican dollars"
439
+ :symbol: "$"
440
+ :JOD:
441
+ :one: "דינר ירדני"
442
+ :other: "Jordanian dinars"
443
+ :JPY:
444
+ :one: "ין יפני"
445
+ :other: "Japanese yen"
446
+ :symbol: "JP¥"
447
+ :KES:
448
+ :one: "שילינג קנייאתי"
449
+ :other: "Kenyan shillings"
450
+ :KGS:
451
+ :one: "סום קירגיזי"
452
+ :other: "Kyrgystani soms"
453
+ :KHR:
454
+ :one: "ריל קמבודי"
455
+ :other: "Cambodian riels"
456
+ :symbol: "៛"
457
+ :KMF:
458
+ :one: "פרנק קומורואי"
459
+ :other: "Comorian francs"
460
+ :KPW:
461
+ :one: "וון צפון קוראני"
462
+ :other: "North Korean won"
463
+ :KRH:
464
+ :one: "South Korean hwan (1953–1962)"
465
+ :other: "South Korean hwan (1953–1962)"
466
+ :KRO:
467
+ :one: "South Korean won (1945–1953)"
468
+ :other: "South Korean won (1945–1953)"
469
+ :KRW:
470
+ :one: "וון דרום קוראני"
471
+ :other: "South Korean won"
472
+ :symbol: "₩"
473
+ :KWD:
474
+ :one: "דינר כוויתי"
475
+ :other: "Kuwaiti dinars"
476
+ :KYD:
477
+ :one: "דולר קיימאני"
478
+ :other: "Cayman Islands dollars"
479
+ :symbol: "$"
480
+ :KZT:
481
+ :one: "טנגה קזחסטני"
482
+ :other: "Kazakhstani tenges"
483
+ :symbol: "₸"
484
+ :LAK:
485
+ :one: "קיפ לאי"
486
+ :other: "Laotian kips"
487
+ :symbol: "₭"
488
+ :LBP:
489
+ :one: "לירה לבנונית"
490
+ :other: "Lebanese pounds"
491
+ :LKR:
492
+ :one: "רופי סרי לנקי"
493
+ :other: "Sri Lankan rupees"
494
+ :LRD:
495
+ :one: "דולר ליברי"
496
+ :other: "Liberian dollars"
497
+ :symbol: "$"
498
+ :LSL:
499
+ :one: "לוטי לסותי"
500
+ :other: "Lesotho lotis"
501
+ :LTL:
502
+ :one: "ליטא ליטאי"
503
+ :other: "Lithuanian litai"
504
+ :LTT:
505
+ :one: "Lithuanian talonas"
506
+ :other: "Lithuanian talonases"
507
+ :LUC:
508
+ :one: "Luxembourgian convertible franc"
509
+ :other: "Luxembourgian convertible francs"
510
+ :LUF:
511
+ :one: "פרנק לוקסמבורגי"
512
+ :other: "Luxembourgian francs"
513
+ :LUL:
514
+ :one: "Luxembourg financial franc"
515
+ :other: "Luxembourg financial francs"
516
+ :LVL:
517
+ :one: "לט לטבי"
518
+ :other: "Latvian lati"
519
+ :LVR:
520
+ :one: "Latvian ruble"
521
+ :other: "Latvian rubles"
522
+ :LYD:
523
+ :one: "דינר לובי"
524
+ :other: "Libyan dinars"
525
+ :MAD:
526
+ :one: "דירהם מרוקאי"
527
+ :other: "Moroccan dirhams"
528
+ :MAF:
529
+ :one: "פרנק מרוקאי"
530
+ :other: "Moroccan francs"
531
+ :MCF:
532
+ :one: "Monegasque franc"
533
+ :other: "Monegasque francs"
534
+ :MDC:
535
+ :one: "Moldovan cupon"
536
+ :other: "Moldovan cupon"
537
+ :MDL:
538
+ :one: "ליאו מולדובני"
539
+ :other: "Moldovan lei"
540
+ :MGA:
541
+ :one: "אריארי מלגשי"
542
+ :other: "Malagasy Ariaries"
543
+ :MGF:
544
+ :one: "פרנק מדגסקארי"
545
+ :other: "Malagasy francs"
546
+ :MKD:
547
+ :one: "דינר מקדוני"
548
+ :other: "Macedonian denari"
549
+ :MKN:
550
+ :one: "Macedonian denar (1992–1993)"
551
+ :other: "Macedonian denari (1992–1993)"
552
+ :MLF:
553
+ :one: "Malian franc"
554
+ :other: "Malian francs"
555
+ :MMK:
556
+ :one: "קיאט מיאנמרי"
557
+ :other: "Myanmar kyats"
558
+ :MNT:
559
+ :one: "טוגריק מונגולי"
560
+ :other: "Mongolian tugriks"
561
+ :symbol: "₮"
562
+ :MOP:
563
+ :one: "פטקה של מקאו"
564
+ :other: "Macanese patacas"
565
+ :MRO:
566
+ :one: "אוגוויה מאוריטני"
567
+ :other: "Mauritanian ouguiyas"
568
+ :MTL:
569
+ :one: "לירה מלטית"
570
+ :other: "Maltese lira"
571
+ :MTP:
572
+ :one: "Maltese pound"
573
+ :other: "Maltese pounds"
574
+ :MUR:
575
+ :one: "רופי מאוריציני"
576
+ :other: "Mauritian rupees"
577
+ :MVP:
578
+ :one: "Maldivian rupee"
579
+ :other: "Maldivian rupees"
580
+ :MVR:
581
+ :one: "רופיה מלדיבית"
582
+ :other: "Maldivian rufiyaas"
583
+ :MWK:
584
+ :one: "קואצ׳ה מלאוי"
585
+ :other: "Malawian Kwachas"
586
+ :MXN:
587
+ :many: "פזו מקסיקני"
588
+ :one: "פזו מקסיקני"
589
+ :other: "פזו מקסיקני"
590
+ :symbol: "MX$"
591
+ :two: "פזו מקסיקני"
592
+ :MXP:
593
+ :one: "פזו מקסיקני (1861 – 1992)"
594
+ :other: "Mexican silver pesos (1861–1992)"
595
+ :MXV:
596
+ :one: "Mexican investment unit"
597
+ :other: "Mexican investment units"
598
+ :MYR:
599
+ :one: "רינגיט מלזי"
600
+ :other: "Malaysian ringgits"
601
+ :MZE:
602
+ :many: "אסקודו מוזמביקי"
603
+ :one: "אסקודו מוזמביקי"
604
+ :other: "אסקודואים מוזמביקיים"
605
+ :two: "אסקודואים מוזמביקיים"
606
+ :MZM:
607
+ :one: "מטיקל"
608
+ :other: "Mozambican meticals (1980–2006)"
609
+ :MZN:
610
+ :many: "מטיקל מוזמביני"
611
+ :one: "מטיקל מוזמביני"
612
+ :other: "מטיקל מוזמביני"
613
+ :two: "מטיקל מוזמביני"
614
+ :NAD:
615
+ :one: "דולר נמיבי"
616
+ :other: "Namibian dollars"
617
+ :symbol: "$"
618
+ :NGN:
619
+ :one: "נאירה ניגרי"
620
+ :other: "Nigerian nairas"
621
+ :symbol: "₦"
622
+ :NIC:
623
+ :one: "Nicaraguan córdoba (1988–1991)"
624
+ :other: "Nicaraguan córdobas (1988–1991)"
625
+ :NIO:
626
+ :many: "קורדובה ניקראגי"
627
+ :one: "קורדובה ניקראגי"
628
+ :other: "קורדובה ניקראגי"
629
+ :two: "קורדובה ניקראגי"
630
+ :NLG:
631
+ :one: "גילדן הולנדי"
632
+ :other: "Dutch guilders"
633
+ :NOK:
634
+ :one: "כתר נורבגי"
635
+ :other: "Norwegian kroner"
636
+ :NPR:
637
+ :one: "רופי נפאלי"
638
+ :other: "Nepalese rupees"
639
+ :NZD:
640
+ :one: "דולר ניו זילנדי"
641
+ :other: "New Zealand dollars"
642
+ :symbol: "NZ$"
643
+ :OMR:
644
+ :one: "ריאל עומאני"
645
+ :other: "Omani rials"
646
+ :PAB:
647
+ :one: "בלבואה פנמי"
648
+ :other: "Panamanian balboas"
649
+ :PEI:
650
+ :one: "Peruvian inti"
651
+ :other: "Peruvian intis"
652
+ :PEN:
653
+ :one: "סול פרואני חדש"
654
+ :other: "Peruvian nuevos soles"
655
+ :PES:
656
+ :one: "Peruvian sol (1863–1965)"
657
+ :other: "Peruvian soles (1863–1965)"
658
+ :PGK:
659
+ :one: "קינה של פפואה גינאה החדשה"
660
+ :other: "Papua New Guinean kina"
661
+ :PHP:
662
+ :one: "פזו פיליפיני"
663
+ :other: "Philippine pesos"
664
+ :symbol: "₱"
665
+ :PKR:
666
+ :one: "רופי פקיסטני"
667
+ :other: "Pakistani rupees"
668
+ :PLN:
669
+ :one: "זלוטי פולני"
670
+ :other: "Polish zlotys"
671
+ :PLZ:
672
+ :one: "זלוטי (1950 – 1995)"
673
+ :other: "Polish zlotys (PLZ)"
674
+ :PTE:
675
+ :one: "אסקודו פורטוגלי"
676
+ :other: "Portuguese escudos"
677
+ :PYG:
678
+ :one: "גוורני פראגוואי"
679
+ :other: "Paraguayan guaranis"
680
+ :symbol: "₲"
681
+ :QAR:
682
+ :one: "ריאל קטארי"
683
+ :other: "Qatari rials"
684
+ :RHD:
685
+ :one: "Rhodesian dollar"
686
+ :other: "Rhodesian dollars"
687
+ :ROL:
688
+ :one: "לאו רומני ישן"
689
+ :other: "Romanian Lei (1952–2006)"
690
+ :RON:
691
+ :one: "לאו רומני חדש"
692
+ :other: "Romanian lei"
693
+ :RSD:
694
+ :one: "דינר סרבי"
695
+ :other: "Serbian dinars"
696
+ :RUB:
697
+ :one: "רובל"
698
+ :other: "Russian rubles"
699
+ :RUR:
700
+ :one: "רובל רוסי (1991 – 1998)"
701
+ :other: "Russian rubles (1991–1998)"
702
+ :symbol: "р."
703
+ :RWF:
704
+ :one: "פרנק רואנדי"
705
+ :other: "Rwandan francs"
706
+ :SAR:
707
+ :one: "ריאל סעודי"
708
+ :other: "Saudi riyals"
709
+ :SBD:
710
+ :one: "דולר איי שלמה"
711
+ :other: "Solomon Islands dollars"
712
+ :symbol: "$"
713
+ :SCR:
714
+ :one: "רופי סיישלי"
715
+ :other: "Seychellois rupees"
716
+ :SDD:
717
+ :one: "דינר סודני"
718
+ :other: "Sudanese dinars (1992–2007)"
719
+ :SDG:
720
+ :one: "לירה סודנית"
721
+ :other: "Sudanese pounds"
722
+ :SDP:
723
+ :one: "לירה סודנית (1957–1998)"
724
+ :other: "Sudanese pounds (1957–1998)"
725
+ :SEK:
726
+ :one: "כתר שוודי"
727
+ :other: "Swedish kronor"
728
+ :SGD:
729
+ :one: "דולר סינגפורי"
730
+ :other: "Singapore dollars"
731
+ :symbol: "$"
732
+ :SHP:
733
+ :one: "פאונד סנט הלני"
734
+ :other: "Saint Helena pounds"
735
+ :SIT:
736
+ :one: "טולאר סלובני"
737
+ :other: "Slovenian tolars"
738
+ :SKK:
739
+ :one: "קורונה סלובקי"
740
+ :other: "Slovak korunas"
741
+ :SLL:
742
+ :one: "ליאון סיירה לאוני"
743
+ :other: "Sierra Leonean leones"
744
+ :SOS:
745
+ :one: "שילינג סומאלי"
746
+ :other: "Somali shillings"
747
+ :SRD:
748
+ :one: "דולר סורינאמי"
749
+ :other: "Surinamese dollars"
750
+ :symbol: "$"
751
+ :SRG:
752
+ :one: "גילדר סורינאמי"
753
+ :other: "Surinamese guilders"
754
+ :SSP:
755
+ :many: "לירה דרום סודאנית"
756
+ :one: "לירה דרום סודאנית"
757
+ :other: "לירה דרום סודאנית"
758
+ :symbol: "£"
759
+ :two: "לירה דרום סודאנית"
760
+ :STD:
761
+ :one: "דוברה של סן טומה ופרינסיפה"
762
+ :other: "São Tomé and Príncipe dobras"
763
+ :SUR:
764
+ :one: "רובל סובייטי"
765
+ :other: "Soviet roubles"
766
+ :SVC:
767
+ :many: "קולון סלבדורי"
768
+ :one: "קולון סלבדורי"
769
+ :other: "קולונים סלבדוריים"
770
+ :two: "קולונים סלבדוריים"
771
+ :SYP:
772
+ :one: "לירה סורית"
773
+ :other: "Syrian pounds"
774
+ :SZL:
775
+ :one: "לילנגני סווזי"
776
+ :other: "Swazi emalangeni"
777
+ :THB:
778
+ :one: "בהט תאילנדי"
779
+ :other: "Thai baht"
780
+ :symbol: "฿"
781
+ :TJR:
782
+ :one: "Tajikistani ruble"
783
+ :other: "Tajikistani rubles"
784
+ :TJS:
785
+ :one: "סומוני טג׳קיסטני"
786
+ :other: "Tajikistani somonis"
787
+ :TMM:
788
+ :one: "מנאט טורקמאני"
789
+ :other: "Turkmenistani manat (1993–2009)"
790
+ :TMT:
791
+ :one: "מנאט טורקמני"
792
+ :other: "Turkmenistani manat"
793
+ :TND:
794
+ :one: "דינר טוניסאי"
795
+ :other: "Tunisian dinars"
796
+ :TOP:
797
+ :one: "פאאמגה טונגי"
798
+ :other: "Tongan paʻanga"
799
+ :TPE:
800
+ :one: "אסקודו טימוראי"
801
+ :other: "Timorese escudos"
802
+ :TRL:
803
+ :one: "לירה טורקית"
804
+ :other: "Turkish Lira (1922–2005)"
805
+ :TRY:
806
+ :many: "לירה טורקית חדשה"
807
+ :one: "לירה טורקית חדשה"
808
+ :other: "לירה טורקית חדשה"
809
+ :symbol: "₺"
810
+ :two: "לירה טורקית חדשה"
811
+ :TTD:
812
+ :one: "דולר טרינידדי"
813
+ :other: "Trinidad and Tobago dollars"
814
+ :symbol: "$"
815
+ :TWD:
816
+ :many: "דולר טאייוני חדש"
817
+ :one: "דולר טאייוני חדש"
818
+ :other: "דולר טאייוני חדש"
819
+ :symbol: "NT$"
820
+ :two: "דולר טאייוני חדש"
821
+ :TZS:
822
+ :one: "שילינג טנזני"
823
+ :other: "Tanzanian shillings"
824
+ :UAH:
825
+ :one: "גריבנה אוקראיני"
826
+ :other: "Ukrainian hryvnias"
827
+ :symbol: "₴"
828
+ :UAK:
829
+ :one: "Ukrainian karbovanets"
830
+ :other: "Ukrainian karbovantsiv"
831
+ :UGS:
832
+ :one: "שילינג אוגנדי (1966 – 1987)"
833
+ :other: "Ugandan shillings (1966–1987)"
834
+ :UGX:
835
+ :one: "שילינג אוגנדי"
836
+ :other: "Ugandan shillings"
837
+ :USD:
838
+ :many: "דולר אמריקאי"
839
+ :one: "דולר אמריקאי"
840
+ :other: "דולר אמריקאי"
841
+ :symbol: "US$"
842
+ :two: "דולר אמריקאי"
843
+ :USN:
844
+ :one: "דולר אמריקאי (היום הבא)"
845
+ :other: "US dollars (next day)"
846
+ :USS:
847
+ :one: "דולר אמריקאי (היום הזה)"
848
+ :other: "US dollars (same day)"
849
+ :UYI:
850
+ :one: "Uruguayan peso (indexed units)"
851
+ :other: "Uruguayan pesos (indexed units)"
852
+ :UYP:
853
+ :one: "Uruguayan peso (1975–1993)"
854
+ :other: "Uruguayan pesos (1975–1993)"
855
+ :UYU:
856
+ :one: "פזו אורוגוואי"
857
+ :other: "Uruguayan pesos"
858
+ :symbol: "$"
859
+ :UZS:
860
+ :one: "סום אוזבקי"
861
+ :other: "Uzbekistan som"
862
+ :VEB:
863
+ :one: "בוליבר ונצואלי (1871–2008)"
864
+ :other: "Venezuelan bolívars (1871–2008)"
865
+ :VEF:
866
+ :one: "בוליבר ונצואלי"
867
+ :other: "Venezuelan bolívars"
868
+ :VND:
869
+ :one: "דונג וייטנאמי"
870
+ :other: "Vietnamese dong"
871
+ :symbol: "₫"
872
+ :VNN:
873
+ :one: "Vietnamese dong (1978–1985)"
874
+ :other: "Vietnamese dong (1978–1985)"
875
+ :VUV:
876
+ :one: "ואטו של ונואטו"
877
+ :other: "Vanuatu vatus"
878
+ :WST:
879
+ :one: "טאלה סמואי"
880
+ :other: "Samoan tala"
881
+ :XAF:
882
+ :one: "פרנק CFA BEAC"
883
+ :other: "CFA francs BEAC"
884
+ :symbol: "FCFA"
885
+ :XAG:
886
+ :one: "כסף"
887
+ :other: "troy ounces of silver"
888
+ :XAU:
889
+ :one: "זהב"
890
+ :other: "troy ounces of gold"
891
+ :XBA:
892
+ :one: "European composite unit"
893
+ :other: "European composite units"
894
+ :XBB:
895
+ :one: "European monetary unit"
896
+ :other: "European monetary units"
897
+ :XBC:
898
+ :one: "European unit of account (XBC)"
899
+ :other: "European units of account (XBC)"
900
+ :XBD:
901
+ :one: "European unit of account (XBD)"
902
+ :other: "European units of account (XBD)"
903
+ :XCD:
904
+ :one: "דולר מזרח קריבי"
905
+ :other: "East Caribbean dollars"
906
+ :symbol: "EC$"
907
+ :XDR:
908
+ :one: "זכויות משיכה מיוחדות"
909
+ :other: "special drawing rights"
910
+ :XEU:
911
+ :one: "European currency unit"
912
+ :other: "European currency units"
913
+ :XFO:
914
+ :one: "פרנק זהב"
915
+ :other: "French gold francs"
916
+ :XFU:
917
+ :one: "French UIC-franc"
918
+ :other: "French UIC-francs"
919
+ :XOF:
920
+ :one: "פרנק CFA BCEAO"
921
+ :other: "CFA francs BCEAO"
922
+ :symbol: "CFA"
923
+ :XPD:
924
+ :one: "פלדיום"
925
+ :other: "troy ounces of palladium"
926
+ :XPF:
927
+ :one: "פרנק CFP"
928
+ :other: "CFP francs"
929
+ :symbol: "CFPF"
930
+ :XPT:
931
+ :one: "פלטינה"
932
+ :other: "troy ounces of platinum"
933
+ :XRE:
934
+ :one: "RINET Funds unit"
935
+ :other: "RINET Funds units"
936
+ :XSU:
937
+ :one: "Sucre"
938
+ :other: "Sucres"
939
+ :XTS:
940
+ :one: "סימון למטרות בדיקה"
941
+ :other: "Testing Currency units"
942
+ :XUA:
943
+ :one: "ADB unit of account"
944
+ :other: "ADB units of account"
945
+ :XXX:
946
+ :one: "מטבע שאינו ידוע"
947
+ :other: "(unknown currency)"
948
+ :YDD:
949
+ :one: "דינר תימני"
950
+ :other: "Yemeni dinars"
951
+ :YER:
952
+ :one: "ריאל תימני"
953
+ :other: "Yemeni rials"
954
+ :YUD:
955
+ :one: "דינר יגוסלבי חדש"
956
+ :other: "Yugoslavian hard dinars (1966–1990)"
957
+ :YUM:
958
+ :one: "דינר יגוסלבי"
959
+ :other: "Yugoslavian new dinars (1994–2002)"
960
+ :YUN:
961
+ :one: "Yugoslavian convertible dinar (1990–1992)"
962
+ :other: "Yugoslavian convertible dinars (1990–1992)"
963
+ :YUR:
964
+ :one: "Yugoslavian reformed dinar (1992–1993)"
965
+ :other: "Yugoslavian reformed dinars (1992–1993)"
966
+ :ZAL:
967
+ :one: "ראנד דרום אפריקאי (כספי)"
968
+ :other: "South African rands (financial)"
969
+ :ZAR:
970
+ :one: "ראנד דרום אפריקאי"
971
+ :other: "South African rand"
972
+ :ZMK:
973
+ :one: "קוואצ׳ה זמבית (1968–2012)"
974
+ :other: "Zambian kwachas (1968–2012)"
975
+ :ZMW:
976
+ :one: "קוואצ׳ה זמבית"
977
+ :other: "Zambian kwachas"
978
+ :ZRN:
979
+ :one: "זאיר חדש"
980
+ :other: "Zairean new zaires (1993–1998)"
981
+ :ZRZ:
982
+ :one: "Zairean zaire (1971–1993)"
983
+ :other: "Zairean zaires (1971–1993)"
984
+ :ZWD:
985
+ :one: "דולר זימבבואי"
986
+ :other: "Zimbabwean dollars (1980–2008)"
987
+ :ZWL:
988
+ :one: "Zimbabwean dollar (2009)"
989
+ :other: "Zimbabwean dollars (2009)"
990
+ :ZWR:
991
+ :one: "Zimbabwean dollar (2008)"
992
+ :other: "Zimbabwean dollars (2008)"