twitter_cldr 1.6.2 → 1.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (733) hide show
  1. data/Gemfile +3 -1
  2. data/History.txt +8 -0
  3. data/README.md +64 -14
  4. data/Rakefile +57 -7
  5. data/js/lib/compiler.rb +3 -1
  6. data/js/lib/mustache/bundle.coffee +5 -5
  7. data/js/lib/mustache/numbers/numbers.coffee +179 -0
  8. data/js/lib/mustache/shared/currencies.coffee +27 -0
  9. data/js/lib/renderers/numbers/numbers_renderer.rb +31 -0
  10. data/js/lib/renderers/plurals/rules/plural_rules_compiler.rb +5 -1
  11. data/js/lib/renderers/shared/currencies_renderer.rb +23 -0
  12. data/js/lib/twitter_cldr_js.rb +2 -0
  13. data/js/spec/js/calendars/timespan_spec.js +2 -2
  14. data/js/spec/js/numbers/currency_spec.js +34 -0
  15. data/js/spec/js/numbers/decimal_spec.js +24 -0
  16. data/js/spec/js/numbers/helpers/fraction_spec.js +23 -0
  17. data/js/spec/js/numbers/helpers/integer_spec.js +100 -0
  18. data/js/spec/js/numbers/number_spec.js +70 -0
  19. data/js/spec/js/numbers/percent_spec.js +22 -0
  20. data/js/spec/rb/renderers/plurals/plural_rules_compiler_spec.rb +4 -0
  21. data/lib/twitter_cldr/collation/collator.rb +14 -20
  22. data/lib/twitter_cldr/collation/trie_builder.rb +3 -3
  23. data/lib/twitter_cldr/formatters/numbers/decimal_formatter.rb +0 -6
  24. data/lib/twitter_cldr/formatters/numbers/helpers/base.rb +1 -1
  25. data/lib/twitter_cldr/formatters/numbers/number_formatter.rb +6 -2
  26. data/lib/twitter_cldr/normalization/base.rb +7 -1
  27. data/lib/twitter_cldr/normalization/nfd.rb +2 -6
  28. data/lib/twitter_cldr/normalization/nfkc.rb +4 -10
  29. data/lib/twitter_cldr/normalization/nfkd.rb +12 -37
  30. data/lib/twitter_cldr/resources.rb +10 -3
  31. data/lib/twitter_cldr/resources/canonical_compositions_updater.rb +51 -0
  32. data/lib/twitter_cldr/resources/composition_exclusions_importer.rb +62 -0
  33. data/lib/twitter_cldr/resources/custom_locales_resources_importer.rb +80 -0
  34. data/lib/twitter_cldr/resources/download.rb +41 -0
  35. data/lib/twitter_cldr/resources/loader.rb +1 -1
  36. data/lib/twitter_cldr/resources/locales_resources_importer.rb +105 -0
  37. data/lib/twitter_cldr/resources/phone_codes_importer.rb +48 -0
  38. data/lib/twitter_cldr/resources/postal_codes_importer.rb +44 -0
  39. data/lib/twitter_cldr/resources/tailoring_importer.rb +18 -16
  40. data/lib/twitter_cldr/resources/unicode_data_importer.rb +90 -0
  41. data/lib/twitter_cldr/shared.rb +3 -1
  42. data/lib/twitter_cldr/shared/code_point.rb +47 -36
  43. data/lib/twitter_cldr/shared/currencies.rb +12 -15
  44. data/lib/twitter_cldr/shared/phone_codes.rb +30 -0
  45. data/lib/twitter_cldr/shared/postal_codes.rb +35 -0
  46. data/lib/twitter_cldr/tokenizers/calendars/timespan_tokenizer.rb +11 -3
  47. data/lib/twitter_cldr/tokenizers/numbers/number_tokenizer.rb +8 -1
  48. data/lib/twitter_cldr/utils/code_points.rb +2 -2
  49. data/lib/twitter_cldr/version.rb +1 -1
  50. data/resources/collation/tailoring/af.yml +3 -3
  51. data/resources/collation/tailoring/ar.yml +3 -3
  52. data/resources/collation/tailoring/ca.yml +3 -3
  53. data/resources/collation/tailoring/cs.yml +3 -3
  54. data/resources/collation/tailoring/da.yml +4 -4
  55. data/resources/collation/tailoring/de.yml +3 -3
  56. data/resources/collation/tailoring/el.yml +3 -3
  57. data/resources/collation/tailoring/en.yml +3 -3
  58. data/resources/collation/tailoring/es.yml +3 -3
  59. data/resources/collation/tailoring/eu.yml +3 -3
  60. data/resources/collation/tailoring/fa.yml +3 -3
  61. data/resources/collation/tailoring/fi.yml +3 -3
  62. data/resources/collation/tailoring/fil.yml +3 -3
  63. data/resources/collation/tailoring/fr.yml +3 -3
  64. data/resources/collation/tailoring/he.yml +3 -3
  65. data/resources/collation/tailoring/hi.yml +3 -3
  66. data/resources/collation/tailoring/hu.yml +3 -3
  67. data/resources/collation/tailoring/id.yml +3 -3
  68. data/resources/collation/tailoring/it.yml +3 -3
  69. data/resources/collation/tailoring/ja.yml +3 -3
  70. data/resources/collation/tailoring/ko.yml +3 -3
  71. data/resources/collation/tailoring/ms.yml +3 -3
  72. data/resources/collation/tailoring/nb.yml +3 -3
  73. data/resources/collation/tailoring/nl.yml +3 -3
  74. data/resources/collation/tailoring/pl.yml +3 -3
  75. data/resources/collation/tailoring/pt.yml +3 -3
  76. data/resources/collation/tailoring/ru.yml +3 -3
  77. data/resources/collation/tailoring/sv.yml +3 -3
  78. data/resources/collation/tailoring/th.yml +3 -3
  79. data/resources/collation/tailoring/tr.yml +3 -3
  80. data/resources/collation/tailoring/uk.yml +3 -3
  81. data/resources/collation/tailoring/ur.yml +3 -3
  82. data/resources/collation/tailoring/zh-Hant.yml +3 -3
  83. data/resources/collation/tailoring/zh.yml +3 -3
  84. data/resources/custom/locales/af/units.yml +19 -19
  85. data/resources/custom/locales/ar/units.yml +35 -35
  86. data/resources/custom/locales/ca/units.yml +19 -19
  87. data/resources/custom/locales/cs/units.yml +23 -23
  88. data/resources/custom/locales/da/units.yml +19 -19
  89. data/resources/custom/locales/de/units.yml +19 -19
  90. data/resources/custom/locales/el/units.yml +19 -19
  91. data/resources/custom/locales/en/units.yml +10 -10
  92. data/resources/custom/locales/es/units.yml +19 -19
  93. data/resources/custom/locales/eu/units.yml +19 -19
  94. data/resources/custom/locales/fa/units.yml +15 -15
  95. data/resources/custom/locales/fi/units.yml +19 -19
  96. data/resources/custom/locales/fil/units.yml +19 -19
  97. data/resources/custom/locales/fr/units.yml +19 -19
  98. data/resources/custom/locales/he/units.yml +19 -19
  99. data/resources/custom/locales/hi/units.yml +19 -19
  100. data/resources/custom/locales/hu/units.yml +15 -15
  101. data/resources/custom/locales/id/units.yml +15 -15
  102. data/resources/custom/locales/it/units.yml +19 -19
  103. data/resources/custom/locales/ja/units.yml +15 -15
  104. data/resources/custom/locales/ko/units.yml +15 -15
  105. data/resources/custom/locales/ms/units.yml +15 -15
  106. data/resources/custom/locales/nb/units.yml +19 -19
  107. data/resources/custom/locales/nl/units.yml +19 -19
  108. data/resources/custom/locales/pl/units.yml +27 -23
  109. data/resources/custom/locales/pt/units.yml +19 -19
  110. data/resources/custom/locales/ru/units.yml +27 -27
  111. data/resources/custom/locales/sv/units.yml +19 -19
  112. data/resources/custom/locales/th/units.yml +15 -15
  113. data/resources/custom/locales/tr/units.yml +15 -15
  114. data/resources/custom/locales/uk/units.yml +27 -27
  115. data/resources/custom/locales/ur/units.yml +19 -19
  116. data/resources/custom/locales/zh-Hant/units.yml +15 -15
  117. data/resources/custom/locales/zh/units.yml +15 -15
  118. data/resources/locales/af/calendars.yml +114 -113
  119. data/resources/locales/af/languages.yml +174 -173
  120. data/resources/locales/af/numbers.yml +43 -42
  121. data/resources/locales/af/plurals.yml +3 -2
  122. data/resources/locales/af/units.yml +136 -135
  123. data/resources/locales/ar/calendars.yml +121 -120
  124. data/resources/locales/ar/languages.yml +501 -500
  125. data/resources/locales/ar/numbers.yml +36 -35
  126. data/resources/locales/ar/plurals.yml +9 -1
  127. data/resources/locales/ar/units.yml +220 -219
  128. data/resources/locales/ca/calendars.yml +157 -156
  129. data/resources/locales/ca/languages.yml +511 -510
  130. data/resources/locales/ca/numbers.yml +44 -43
  131. data/resources/locales/ca/plurals.yml +3 -2
  132. data/resources/locales/ca/units.yml +136 -135
  133. data/resources/locales/cs/calendars.yml +153 -152
  134. data/resources/locales/cs/languages.yml +472 -471
  135. data/resources/locales/cs/numbers.yml +45 -44
  136. data/resources/locales/cs/plurals.yml +3 -2
  137. data/resources/locales/cs/units.yml +164 -163
  138. data/resources/locales/da/calendars.yml +117 -116
  139. data/resources/locales/da/languages.yml +515 -514
  140. data/resources/locales/da/numbers.yml +44 -43
  141. data/resources/locales/da/plurals.yml +3 -1
  142. data/resources/locales/da/units.yml +122 -121
  143. data/resources/locales/de/calendars.yml +136 -135
  144. data/resources/locales/de/languages.yml +514 -513
  145. data/resources/locales/de/numbers.yml +44 -43
  146. data/resources/locales/de/plurals.yml +3 -1
  147. data/resources/locales/de/units.yml +136 -135
  148. data/resources/locales/el/calendars.yml +138 -137
  149. data/resources/locales/el/languages.yml +520 -519
  150. data/resources/locales/el/numbers.yml +43 -42
  151. data/resources/locales/el/plurals.yml +3 -2
  152. data/resources/locales/el/units.yml +143 -142
  153. data/resources/locales/en/calendars.yml +117 -116
  154. data/resources/locales/en/languages.yml +559 -558
  155. data/resources/locales/en/numbers.yml +32 -31
  156. data/resources/locales/en/plurals.yml +3 -1
  157. data/resources/locales/en/units.yml +108 -107
  158. data/resources/locales/es/calendars.yml +118 -117
  159. data/resources/locales/es/languages.yml +511 -510
  160. data/resources/locales/es/numbers.yml +42 -41
  161. data/resources/locales/es/plurals.yml +3 -1
  162. data/resources/locales/es/units.yml +136 -135
  163. data/resources/locales/eu/calendars.yml +124 -123
  164. data/resources/locales/eu/languages.yml +162 -161
  165. data/resources/locales/eu/numbers.yml +44 -43
  166. data/resources/locales/eu/plurals.yml +3 -2
  167. data/resources/locales/eu/units.yml +129 -128
  168. data/resources/locales/fa/calendars.yml +137 -136
  169. data/resources/locales/fa/languages.yml +489 -488
  170. data/resources/locales/fa/numbers.yml +31 -30
  171. data/resources/locales/fa/plurals.yml +3 -1
  172. data/resources/locales/fa/units.yml +122 -121
  173. data/resources/locales/fi/calendars.yml +153 -152
  174. data/resources/locales/fi/languages.yml +520 -519
  175. data/resources/locales/fi/numbers.yml +44 -43
  176. data/resources/locales/fi/plurals.yml +3 -1
  177. data/resources/locales/fi/units.yml +136 -135
  178. data/resources/locales/fil/calendars.yml +123 -122
  179. data/resources/locales/fil/languages.yml +169 -168
  180. data/resources/locales/fil/numbers.yml +32 -31
  181. data/resources/locales/fil/plurals.yml +3 -1
  182. data/resources/locales/fil/units.yml +122 -121
  183. data/resources/locales/fr/calendars.yml +144 -143
  184. data/resources/locales/fr/languages.yml +512 -511
  185. data/resources/locales/fr/numbers.yml +44 -43
  186. data/resources/locales/fr/plurals.yml +3 -1
  187. data/resources/locales/fr/units.yml +136 -135
  188. data/resources/locales/he/calendars.yml +120 -119
  189. data/resources/locales/he/languages.yml +282 -281
  190. data/resources/locales/he/numbers.yml +32 -31
  191. data/resources/locales/he/plurals.yml +3 -1
  192. data/resources/locales/he/units.yml +122 -121
  193. data/resources/locales/hi/calendars.yml +112 -111
  194. data/resources/locales/hi/languages.yml +511 -510
  195. data/resources/locales/hi/numbers.yml +32 -31
  196. data/resources/locales/hi/plurals.yml +3 -1
  197. data/resources/locales/hi/units.yml +122 -121
  198. data/resources/locales/hu/calendars.yml +142 -141
  199. data/resources/locales/hu/languages.yml +520 -519
  200. data/resources/locales/hu/numbers.yml +43 -42
  201. data/resources/locales/hu/plurals.yml +3 -1
  202. data/resources/locales/hu/units.yml +108 -107
  203. data/resources/locales/id/calendars.yml +117 -116
  204. data/resources/locales/id/languages.yml +514 -513
  205. data/resources/locales/id/numbers.yml +43 -42
  206. data/resources/locales/id/plurals.yml +3 -1
  207. data/resources/locales/id/units.yml +108 -107
  208. data/resources/locales/it/calendars.yml +123 -122
  209. data/resources/locales/it/languages.yml +504 -503
  210. data/resources/locales/it/numbers.yml +44 -43
  211. data/resources/locales/it/plurals.yml +3 -1
  212. data/resources/locales/it/units.yml +122 -121
  213. data/resources/locales/ja/calendars.yml +109 -108
  214. data/resources/locales/ja/languages.yml +516 -515
  215. data/resources/locales/ja/numbers.yml +35 -34
  216. data/resources/locales/ja/plurals.yml +3 -1
  217. data/resources/locales/ja/units.yml +108 -107
  218. data/resources/locales/ko/calendars.yml +112 -111
  219. data/resources/locales/ko/languages.yml +509 -508
  220. data/resources/locales/ko/numbers.yml +32 -31
  221. data/resources/locales/ko/plurals.yml +3 -1
  222. data/resources/locales/ko/units.yml +108 -107
  223. data/resources/locales/ms/calendars.yml +134 -133
  224. data/resources/locales/ms/languages.yml +158 -157
  225. data/resources/locales/ms/numbers.yml +31 -30
  226. data/resources/locales/ms/plurals.yml +3 -1
  227. data/resources/locales/ms/units.yml +136 -135
  228. data/resources/locales/nb/calendars.yml +143 -142
  229. data/resources/locales/nb/languages.yml +530 -529
  230. data/resources/locales/nb/numbers.yml +44 -43
  231. data/resources/locales/nb/plurals.yml +3 -2
  232. data/resources/locales/nb/units.yml +130 -129
  233. data/resources/locales/nl/calendars.yml +124 -123
  234. data/resources/locales/nl/languages.yml +516 -515
  235. data/resources/locales/nl/numbers.yml +44 -43
  236. data/resources/locales/nl/plurals.yml +3 -1
  237. data/resources/locales/nl/units.yml +122 -121
  238. data/resources/locales/pl/calendars.yml +148 -147
  239. data/resources/locales/pl/languages.yml +505 -504
  240. data/resources/locales/pl/numbers.yml +46 -45
  241. data/resources/locales/pl/plurals.yml +5 -1
  242. data/resources/locales/pl/units.yml +205 -204
  243. data/resources/locales/pt/calendars.yml +131 -130
  244. data/resources/locales/pt/languages.yml +517 -516
  245. data/resources/locales/pt/numbers.yml +44 -43
  246. data/resources/locales/pt/plurals.yml +3 -1
  247. data/resources/locales/pt/units.yml +136 -135
  248. data/resources/locales/ru/calendars.yml +143 -142
  249. data/resources/locales/ru/languages.yml +511 -510
  250. data/resources/locales/ru/numbers.yml +43 -42
  251. data/resources/locales/ru/plurals.yml +5 -1
  252. data/resources/locales/ru/units.yml +192 -191
  253. data/resources/locales/sv/calendars.yml +151 -150
  254. data/resources/locales/sv/languages.yml +531 -530
  255. data/resources/locales/sv/numbers.yml +44 -43
  256. data/resources/locales/sv/plurals.yml +3 -1
  257. data/resources/locales/sv/units.yml +136 -135
  258. data/resources/locales/th/calendars.yml +125 -124
  259. data/resources/locales/th/languages.yml +510 -509
  260. data/resources/locales/th/numbers.yml +41 -40
  261. data/resources/locales/th/plurals.yml +3 -1
  262. data/resources/locales/th/units.yml +108 -107
  263. data/resources/locales/tr/calendars.yml +139 -138
  264. data/resources/locales/tr/languages.yml +511 -510
  265. data/resources/locales/tr/numbers.yml +43 -42
  266. data/resources/locales/tr/plurals.yml +3 -1
  267. data/resources/locales/tr/units.yml +108 -107
  268. data/resources/locales/uk/calendars.yml +131 -130
  269. data/resources/locales/uk/languages.yml +520 -519
  270. data/resources/locales/uk/numbers.yml +46 -45
  271. data/resources/locales/uk/plurals.yml +5 -2
  272. data/resources/locales/uk/units.yml +192 -191
  273. data/resources/locales/ur/calendars.yml +111 -110
  274. data/resources/locales/ur/languages.yml +164 -163
  275. data/resources/locales/ur/numbers.yml +32 -31
  276. data/resources/locales/ur/plurals.yml +3 -1
  277. data/resources/locales/ur/units.yml +136 -135
  278. data/resources/locales/zh-Hant/calendars.yml +116 -115
  279. data/resources/locales/zh-Hant/languages.yml +510 -509
  280. data/resources/locales/zh-Hant/numbers.yml +35 -34
  281. data/resources/locales/zh-Hant/plurals.yml +3 -2
  282. data/resources/locales/zh-Hant/units.yml +108 -107
  283. data/resources/locales/zh/calendars.yml +138 -137
  284. data/resources/locales/zh/languages.yml +506 -505
  285. data/resources/locales/zh/numbers.yml +35 -34
  286. data/resources/locales/zh/plurals.yml +3 -1
  287. data/resources/locales/zh/units.yml +80 -79
  288. data/resources/shared/currencies.yml +448 -451
  289. data/resources/shared/phone_codes.yml +241 -0
  290. data/resources/shared/postal_codes.yml +160 -0
  291. data/resources/unicode_data/blocks.yml +221 -221
  292. data/resources/unicode_data/blocks/aegean_numbers.yml +913 -0
  293. data/resources/unicode_data/blocks/alchemical_symbols.yml +1857 -0
  294. data/resources/unicode_data/blocks/alphabetic_presentation_forms.yml +929 -0
  295. data/resources/unicode_data/blocks/ancient_greek_musical_notation.yml +1121 -0
  296. data/resources/unicode_data/blocks/ancient_greek_numbers.yml +1201 -0
  297. data/resources/unicode_data/blocks/ancient_symbols.yml +193 -0
  298. data/resources/unicode_data/blocks/arabic.yml +4049 -0
  299. data/resources/unicode_data/blocks/arabic_extended_a.yml +625 -0
  300. data/resources/unicode_data/blocks/arabic_mathematical_alphabetic_symbols.yml +2289 -0
  301. data/resources/unicode_data/{arabic_presentation_forms_a.yml → blocks/arabic_presentation_forms_a.yml} +7369 -7368
  302. data/resources/unicode_data/{arabic_presentation_forms_b.yml → blocks/arabic_presentation_forms_b.yml} +1414 -1414
  303. data/resources/unicode_data/blocks/arabic_supplement.yml +769 -0
  304. data/resources/unicode_data/blocks/armenian.yml +1393 -0
  305. data/resources/unicode_data/blocks/arrows.yml +1793 -0
  306. data/resources/unicode_data/blocks/avestan.yml +977 -0
  307. data/resources/unicode_data/blocks/balinese.yml +1937 -0
  308. data/resources/unicode_data/blocks/bamum.yml +1409 -0
  309. data/resources/unicode_data/blocks/bamum_supplement.yml +9105 -0
  310. data/resources/unicode_data/blocks/basic_latin.yml +2049 -0
  311. data/resources/unicode_data/blocks/batak.yml +897 -0
  312. data/resources/unicode_data/blocks/bengali.yml +1473 -0
  313. data/resources/unicode_data/blocks/block_elements.yml +513 -0
  314. data/resources/unicode_data/blocks/bopomofo.yml +657 -0
  315. data/resources/unicode_data/blocks/bopomofo_extended.yml +433 -0
  316. data/resources/unicode_data/{box_drawing.yml → blocks/box_drawing.yml} +1537 -1537
  317. data/resources/unicode_data/blocks/brahmi.yml +1729 -0
  318. data/resources/unicode_data/blocks/braille_patterns.yml +4097 -0
  319. data/resources/unicode_data/blocks/buginese.yml +481 -0
  320. data/resources/unicode_data/blocks/buhid.yml +321 -0
  321. data/resources/unicode_data/blocks/byzantine_musical_symbols.yml +3937 -0
  322. data/resources/unicode_data/blocks/carian.yml +785 -0
  323. data/resources/unicode_data/blocks/chakma.yml +1073 -0
  324. data/resources/unicode_data/blocks/cham.yml +1329 -0
  325. data/resources/unicode_data/blocks/cherokee.yml +1361 -0
  326. data/resources/unicode_data/{cjk_compatibility.yml → blocks/cjk_compatibility.yml} +2706 -2706
  327. data/resources/unicode_data/{cjk_compatibility_forms.yml → blocks/cjk_compatibility_forms.yml} +363 -363
  328. data/resources/unicode_data/blocks/cjk_compatibility_ideographs.yml +7553 -0
  329. data/resources/unicode_data/blocks/cjk_compatibility_ideographs_supplement.yml +8673 -0
  330. data/resources/unicode_data/blocks/cjk_radicals_supplement.yml +1841 -0
  331. data/resources/unicode_data/blocks/cjk_strokes.yml +577 -0
  332. data/resources/unicode_data/blocks/cjk_symbols_and_punctuation.yml +1025 -0
  333. data/resources/unicode_data/blocks/cjk_unified_ideographs.yml +33 -0
  334. data/resources/unicode_data/blocks/cjk_unified_ideographs_extension_a.yml +33 -0
  335. data/resources/unicode_data/blocks/cjk_unified_ideographs_extension_b.yml +33 -0
  336. data/resources/unicode_data/blocks/cjk_unified_ideographs_extension_c.yml +33 -0
  337. data/resources/unicode_data/blocks/cjk_unified_ideographs_extension_d.yml +33 -0
  338. data/resources/unicode_data/blocks/combining_diacritical_marks.yml +1793 -0
  339. data/resources/unicode_data/{combining_diacritical_marks_for_symbols.yml → blocks/combining_diacritical_marks_for_symbols.yml} +409 -409
  340. data/resources/unicode_data/blocks/combining_diacritical_marks_supplement.yml +689 -0
  341. data/resources/unicode_data/blocks/combining_half_marks.yml +113 -0
  342. data/resources/unicode_data/blocks/common_indic_number_forms.yml +161 -0
  343. data/resources/unicode_data/blocks/control_pictures.yml +625 -0
  344. data/resources/unicode_data/blocks/coptic.yml +1969 -0
  345. data/resources/unicode_data/blocks/counting_rod_numerals.yml +289 -0
  346. data/resources/unicode_data/blocks/cuneiform.yml +14065 -0
  347. data/resources/unicode_data/blocks/cuneiform_numbers_and_punctuation.yml +1649 -0
  348. data/resources/unicode_data/blocks/currency_symbols.yml +417 -0
  349. data/resources/unicode_data/blocks/cypriot_syllabary.yml +881 -0
  350. data/resources/unicode_data/{cyrillic.yml → blocks/cyrillic.yml} +2765 -2765
  351. data/resources/unicode_data/blocks/cyrillic_extended_a.yml +513 -0
  352. data/resources/unicode_data/blocks/cyrillic_extended_b.yml +1425 -0
  353. data/resources/unicode_data/blocks/cyrillic_supplement.yml +641 -0
  354. data/resources/unicode_data/blocks/deseret.yml +1281 -0
  355. data/resources/unicode_data/blocks/devanagari.yml +2033 -0
  356. data/resources/unicode_data/blocks/devanagari_extended.yml +449 -0
  357. data/resources/unicode_data/blocks/dingbats.yml +3057 -0
  358. data/resources/unicode_data/blocks/domino_tiles.yml +1601 -0
  359. data/resources/unicode_data/blocks/egyptian_hieroglyphs.yml +17137 -0
  360. data/resources/unicode_data/blocks/emoticons.yml +1217 -0
  361. data/resources/unicode_data/blocks/enclosed_alphanumeric_supplement.yml +2737 -0
  362. data/resources/unicode_data/blocks/enclosed_alphanumerics.yml +2561 -0
  363. data/resources/unicode_data/{enclosed_cjk_letters_and_months.yml → blocks/enclosed_cjk_letters_and_months.yml} +3067 -3067
  364. data/resources/unicode_data/{enclosed_ideographic_supplement.yml → blocks/enclosed_ideographic_supplement.yml} +685 -685
  365. data/resources/unicode_data/blocks/ethiopic.yml +5729 -0
  366. data/resources/unicode_data/blocks/ethiopic_extended.yml +1265 -0
  367. data/resources/unicode_data/blocks/ethiopic_extended_a.yml +513 -0
  368. data/resources/unicode_data/blocks/ethiopic_supplement.yml +417 -0
  369. data/resources/unicode_data/blocks/general_punctuation.yml +1713 -0
  370. data/resources/unicode_data/blocks/geometric_shapes.yml +1537 -0
  371. data/resources/unicode_data/blocks/georgian.yml +1409 -0
  372. data/resources/unicode_data/blocks/georgian_supplement.yml +641 -0
  373. data/resources/unicode_data/blocks/glagolitic.yml +1505 -0
  374. data/resources/unicode_data/blocks/gothic.yml +433 -0
  375. data/resources/unicode_data/{greek_and_coptic.yml → blocks/greek_and_coptic.yml} +1360 -1360
  376. data/resources/unicode_data/{greek_extended.yml → blocks/greek_extended.yml} +2330 -2330
  377. data/resources/unicode_data/blocks/gujarati.yml +1345 -0
  378. data/resources/unicode_data/blocks/gurmukhi.yml +1265 -0
  379. data/resources/unicode_data/{halfwidth_and_fullwidth_forms.yml → blocks/halfwidth_and_fullwidth_forms.yml} +2517 -2517
  380. data/resources/unicode_data/{hangul_compatibility_jamo.yml → blocks/hangul_compatibility_jamo.yml} +993 -993
  381. data/resources/unicode_data/blocks/hangul_jamo.yml +4097 -0
  382. data/resources/unicode_data/blocks/hangul_jamo_extended_a.yml +465 -0
  383. data/resources/unicode_data/blocks/hangul_jamo_extended_b.yml +1153 -0
  384. data/resources/unicode_data/blocks/hangul_syllables.yml +33 -0
  385. data/resources/unicode_data/blocks/hanunoo.yml +369 -0
  386. data/resources/unicode_data/blocks/hebrew.yml +1393 -0
  387. data/resources/unicode_data/blocks/high_private_use_surrogates.yml +33 -0
  388. data/resources/unicode_data/blocks/high_surrogates.yml +33 -0
  389. data/resources/unicode_data/blocks/hiragana.yml +1489 -0
  390. data/resources/unicode_data/blocks/ideographic_description_characters.yml +193 -0
  391. data/resources/unicode_data/blocks/imperial_aramaic.yml +497 -0
  392. data/resources/unicode_data/blocks/inscriptional_pahlavi.yml +433 -0
  393. data/resources/unicode_data/blocks/inscriptional_parthian.yml +481 -0
  394. data/resources/unicode_data/{ipa_extensions.yml → blocks/ipa_extensions.yml} +1050 -1050
  395. data/resources/unicode_data/blocks/javanese.yml +1457 -0
  396. data/resources/unicode_data/blocks/kaithi.yml +1057 -0
  397. data/resources/unicode_data/blocks/kana_supplement.yml +33 -0
  398. data/resources/unicode_data/{kanbun.yml → blocks/kanbun.yml} +167 -167
  399. data/resources/unicode_data/blocks/kangxi_radicals.yml +3425 -0
  400. data/resources/unicode_data/blocks/kannada.yml +1377 -0
  401. data/resources/unicode_data/blocks/katakana.yml +1537 -0
  402. data/resources/unicode_data/blocks/katakana_phonetic_extensions.yml +257 -0
  403. data/resources/unicode_data/blocks/kayah_li.yml +769 -0
  404. data/resources/unicode_data/blocks/kharoshthi.yml +1041 -0
  405. data/resources/unicode_data/blocks/khmer.yml +1825 -0
  406. data/resources/unicode_data/blocks/khmer_symbols.yml +513 -0
  407. data/resources/unicode_data/blocks/lao.yml +1073 -0
  408. data/resources/unicode_data/{latin_1_supplement.yml → blocks/latin_1_supplement.yml} +1319 -1319
  409. data/resources/unicode_data/{latin_extended_a.yml → blocks/latin_extended_a.yml} +1210 -1210
  410. data/resources/unicode_data/{latin_extended_additional.yml → blocks/latin_extended_additional.yml} +2460 -2460
  411. data/resources/unicode_data/{latin_extended_b.yml → blocks/latin_extended_b.yml} +2096 -2096
  412. data/resources/unicode_data/blocks/latin_extended_c.yml +513 -0
  413. data/resources/unicode_data/blocks/latin_extended_d.yml +2145 -0
  414. data/resources/unicode_data/blocks/lepcha.yml +1185 -0
  415. data/resources/unicode_data/blocks/letterlike_symbols.yml +1281 -0
  416. data/resources/unicode_data/blocks/limbu.yml +1057 -0
  417. data/resources/unicode_data/blocks/linear_b_ideograms.yml +1969 -0
  418. data/resources/unicode_data/blocks/linear_b_syllabary.yml +1409 -0
  419. data/resources/unicode_data/blocks/lisu.yml +769 -0
  420. data/resources/unicode_data/blocks/low_surrogates.yml +33 -0
  421. data/resources/unicode_data/blocks/lycian.yml +465 -0
  422. data/resources/unicode_data/blocks/lydian.yml +433 -0
  423. data/resources/unicode_data/blocks/mahjong_tiles.yml +705 -0
  424. data/resources/unicode_data/blocks/malayalam.yml +1569 -0
  425. data/resources/unicode_data/blocks/mandaic.yml +465 -0
  426. data/resources/unicode_data/{mathematical_alphanumeric_symbols.yml → blocks/mathematical_alphanumeric_symbols.yml} +11953 -11953
  427. data/resources/unicode_data/blocks/mathematical_operators.yml +4097 -0
  428. data/resources/unicode_data/blocks/meetei_mayek.yml +897 -0
  429. data/resources/unicode_data/blocks/meetei_mayek_extensions.yml +369 -0
  430. data/resources/unicode_data/blocks/meroitic_cursive.yml +417 -0
  431. data/resources/unicode_data/blocks/meroitic_hieroglyphs.yml +513 -0
  432. data/resources/unicode_data/blocks/miao.yml +2129 -0
  433. data/resources/unicode_data/blocks/miscellaneous_mathematical_symbols_a.yml +769 -0
  434. data/resources/unicode_data/blocks/miscellaneous_mathematical_symbols_b.yml +2049 -0
  435. data/resources/unicode_data/blocks/miscellaneous_symbols.yml +4097 -0
  436. data/resources/unicode_data/blocks/miscellaneous_symbols_and_arrows.yml +1393 -0
  437. data/resources/unicode_data/blocks/miscellaneous_symbols_and_pictographs.yml +8529 -0
  438. data/resources/unicode_data/blocks/miscellaneous_technical.yml +3905 -0
  439. data/resources/unicode_data/blocks/modifier_tone_letters.yml +513 -0
  440. data/resources/unicode_data/blocks/mongolian.yml +2497 -0
  441. data/resources/unicode_data/blocks/musical_symbols.yml +3521 -0
  442. data/resources/unicode_data/blocks/myanmar.yml +2561 -0
  443. data/resources/unicode_data/blocks/myanmar_extended_a.yml +449 -0
  444. data/resources/unicode_data/blocks/new_tai_lue.yml +1329 -0
  445. data/resources/unicode_data/blocks/nko.yml +945 -0
  446. data/resources/unicode_data/blocks/number_forms.yml +929 -0
  447. data/resources/unicode_data/blocks/ogham.yml +465 -0
  448. data/resources/unicode_data/blocks/ol_chiki.yml +769 -0
  449. data/resources/unicode_data/blocks/old_italic.yml +561 -0
  450. data/resources/unicode_data/blocks/old_persian.yml +801 -0
  451. data/resources/unicode_data/blocks/old_south_arabian.yml +513 -0
  452. data/resources/unicode_data/blocks/old_turkic.yml +1169 -0
  453. data/resources/unicode_data/blocks/optical_character_recognition.yml +177 -0
  454. data/resources/unicode_data/blocks/oriya.yml +1441 -0
  455. data/resources/unicode_data/blocks/osmanya.yml +641 -0
  456. data/resources/unicode_data/blocks/phags_pa.yml +897 -0
  457. data/resources/unicode_data/blocks/phaistos_disc.yml +737 -0
  458. data/resources/unicode_data/blocks/phoenician.yml +465 -0
  459. data/resources/unicode_data/blocks/phonetic_extensions.yml +2049 -0
  460. data/resources/unicode_data/blocks/phonetic_extensions_supplement.yml +1025 -0
  461. data/resources/unicode_data/blocks/playing_cards.yml +945 -0
  462. data/resources/unicode_data/blocks/private_use_area.yml +33 -0
  463. data/resources/unicode_data/blocks/rejang.yml +593 -0
  464. data/resources/unicode_data/blocks/rumi_numeral_symbols.yml +497 -0
  465. data/resources/unicode_data/blocks/runic.yml +1297 -0
  466. data/resources/unicode_data/blocks/samaritan.yml +977 -0
  467. data/resources/unicode_data/blocks/saurashtra.yml +1297 -0
  468. data/resources/unicode_data/blocks/sharada.yml +1329 -0
  469. data/resources/unicode_data/blocks/shavian.yml +769 -0
  470. data/resources/unicode_data/blocks/sinhala.yml +1281 -0
  471. data/resources/unicode_data/blocks/small_form_variants.yml +417 -0
  472. data/resources/unicode_data/blocks/sora_sompeng.yml +561 -0
  473. data/resources/unicode_data/blocks/spacing_modifier_letters.yml +1281 -0
  474. data/resources/unicode_data/blocks/specials.yml +81 -0
  475. data/resources/unicode_data/blocks/sundanese.yml +1025 -0
  476. data/resources/unicode_data/blocks/sundanese_supplement.yml +129 -0
  477. data/resources/unicode_data/blocks/superscripts_and_subscripts.yml +673 -0
  478. data/resources/unicode_data/blocks/supplemental_arrows_a.yml +257 -0
  479. data/resources/unicode_data/blocks/supplemental_arrows_b.yml +2049 -0
  480. data/resources/unicode_data/blocks/supplemental_mathematical_operators.yml +4097 -0
  481. data/resources/unicode_data/blocks/supplemental_punctuation.yml +961 -0
  482. data/resources/unicode_data/blocks/supplementary_private_use_area_a.yml +33 -0
  483. data/resources/unicode_data/blocks/supplementary_private_use_area_b.yml +33 -0
  484. data/resources/unicode_data/blocks/syloti_nagri.yml +705 -0
  485. data/resources/unicode_data/blocks/syriac.yml +1233 -0
  486. data/resources/unicode_data/blocks/tagalog.yml +321 -0
  487. data/resources/unicode_data/blocks/tagbanwa.yml +289 -0
  488. data/resources/unicode_data/blocks/tags.yml +1553 -0
  489. data/resources/unicode_data/blocks/tai_le.yml +561 -0
  490. data/resources/unicode_data/blocks/tai_tham.yml +2033 -0
  491. data/resources/unicode_data/blocks/tai_viet.yml +1153 -0
  492. data/resources/unicode_data/blocks/tai_xuan_jing_symbols.yml +1393 -0
  493. data/resources/unicode_data/blocks/takri.yml +1057 -0
  494. data/resources/unicode_data/blocks/tamil.yml +1153 -0
  495. data/resources/unicode_data/blocks/telugu.yml +1489 -0
  496. data/resources/unicode_data/blocks/thaana.yml +801 -0
  497. data/resources/unicode_data/blocks/thai.yml +1393 -0
  498. data/resources/unicode_data/blocks/tibetan.yml +3377 -0
  499. data/resources/unicode_data/blocks/tifinagh.yml +945 -0
  500. data/resources/unicode_data/blocks/transport_and_map_symbols.yml +1121 -0
  501. data/resources/unicode_data/blocks/ugaritic.yml +497 -0
  502. data/resources/unicode_data/blocks/unified_canadian_aboriginal_syllabics.yml +10241 -0
  503. data/resources/unicode_data/blocks/unified_canadian_aboriginal_syllabics_extended.yml +1121 -0
  504. data/resources/unicode_data/blocks/vai.yml +4801 -0
  505. data/resources/unicode_data/blocks/variation_selectors.yml +257 -0
  506. data/resources/unicode_data/blocks/variation_selectors_supplement.yml +3841 -0
  507. data/resources/unicode_data/blocks/vedic_extensions.yml +625 -0
  508. data/resources/unicode_data/{vertical_forms.yml → blocks/vertical_forms.yml} +121 -121
  509. data/resources/unicode_data/blocks/yi_radicals.yml +881 -0
  510. data/resources/unicode_data/blocks/yi_syllables.yml +18641 -0
  511. data/resources/unicode_data/blocks/yijing_hexagram_symbols.yml +1025 -0
  512. data/resources/unicode_data/canonical_compositions.yml +4925 -0
  513. data/resources/unicode_data/composition_exclusions.yml +78 -74
  514. data/resources/unicode_data/hangul_blocks.yml +9 -9
  515. data/spec/collation/collation_spec.rb +6 -6
  516. data/spec/collation/collator_spec.rb +18 -19
  517. data/spec/collation/trie_builder_spec.rb +6 -9
  518. data/spec/core_ext/array_spec.rb +1 -1
  519. data/spec/core_ext/string_spec.rb +1 -1
  520. data/spec/formatters/numbers/currency_formatter_spec.rb +5 -0
  521. data/spec/formatters/numbers/decimal_formatter_spec.rb +4 -0
  522. data/spec/formatters/numbers/number_formatter_spec.rb +4 -4
  523. data/spec/formatters/numbers/percent_formatter_spec.rb +8 -0
  524. data/spec/normalization/base_spec.rb +2 -2
  525. data/spec/normalization/normalization_spec.rb +7 -3
  526. data/spec/readme_spec.rb +9 -9
  527. data/spec/resources/loader_spec.rb +4 -4
  528. data/spec/shared/code_point_spec.rb +102 -62
  529. data/spec/shared/currencies_spec.rb +17 -19
  530. data/spec/shared/phone_codes_spec.rb +49 -0
  531. data/spec/shared/postal_codes_spec.rb +68 -0
  532. data/spec/utils/code_points_spec.rb +6 -6
  533. metadata +264 -224
  534. data/resources/unicode_data/aegean_numbers.yml +0 -913
  535. data/resources/unicode_data/alchemical_symbols.yml +0 -1857
  536. data/resources/unicode_data/alphabetic_presentation_forms.yml +0 -929
  537. data/resources/unicode_data/ancient_greek_musical_notation.yml +0 -1121
  538. data/resources/unicode_data/ancient_greek_numbers.yml +0 -1201
  539. data/resources/unicode_data/ancient_symbols.yml +0 -193
  540. data/resources/unicode_data/arabic.yml +0 -4049
  541. data/resources/unicode_data/arabic_extended_a.yml +0 -625
  542. data/resources/unicode_data/arabic_mathematical_alphabetic_symbols.yml +0 -2289
  543. data/resources/unicode_data/arabic_supplement.yml +0 -769
  544. data/resources/unicode_data/armenian.yml +0 -1393
  545. data/resources/unicode_data/arrows.yml +0 -1793
  546. data/resources/unicode_data/avestan.yml +0 -977
  547. data/resources/unicode_data/balinese.yml +0 -1937
  548. data/resources/unicode_data/bamum.yml +0 -1409
  549. data/resources/unicode_data/bamum_supplement.yml +0 -9105
  550. data/resources/unicode_data/basic_latin.yml +0 -2049
  551. data/resources/unicode_data/batak.yml +0 -897
  552. data/resources/unicode_data/bengali.yml +0 -1473
  553. data/resources/unicode_data/block_elements.yml +0 -513
  554. data/resources/unicode_data/bopomofo.yml +0 -657
  555. data/resources/unicode_data/bopomofo_extended.yml +0 -433
  556. data/resources/unicode_data/brahmi.yml +0 -1729
  557. data/resources/unicode_data/braille_patterns.yml +0 -4097
  558. data/resources/unicode_data/buginese.yml +0 -481
  559. data/resources/unicode_data/buhid.yml +0 -321
  560. data/resources/unicode_data/byzantine_musical_symbols.yml +0 -3937
  561. data/resources/unicode_data/carian.yml +0 -785
  562. data/resources/unicode_data/chakma.yml +0 -1073
  563. data/resources/unicode_data/cham.yml +0 -1329
  564. data/resources/unicode_data/cherokee.yml +0 -1361
  565. data/resources/unicode_data/cjk_compatibility_ideographs.yml +0 -7553
  566. data/resources/unicode_data/cjk_compatibility_ideographs_supplement.yml +0 -8673
  567. data/resources/unicode_data/cjk_radicals_supplement.yml +0 -1841
  568. data/resources/unicode_data/cjk_strokes.yml +0 -577
  569. data/resources/unicode_data/cjk_symbols_and_punctuation.yml +0 -1025
  570. data/resources/unicode_data/cjk_unified_ideographs.yml +0 -33
  571. data/resources/unicode_data/cjk_unified_ideographs_extension_a.yml +0 -33
  572. data/resources/unicode_data/cjk_unified_ideographs_extension_b.yml +0 -33
  573. data/resources/unicode_data/cjk_unified_ideographs_extension_c.yml +0 -33
  574. data/resources/unicode_data/cjk_unified_ideographs_extension_d.yml +0 -33
  575. data/resources/unicode_data/combining_diacritical_marks.yml +0 -1793
  576. data/resources/unicode_data/combining_diacritical_marks_supplement.yml +0 -689
  577. data/resources/unicode_data/combining_half_marks.yml +0 -113
  578. data/resources/unicode_data/common_indic_number_forms.yml +0 -161
  579. data/resources/unicode_data/control_pictures.yml +0 -625
  580. data/resources/unicode_data/coptic.yml +0 -1969
  581. data/resources/unicode_data/counting_rod_numerals.yml +0 -289
  582. data/resources/unicode_data/cuneiform.yml +0 -14065
  583. data/resources/unicode_data/cuneiform_numbers_and_punctuation.yml +0 -1649
  584. data/resources/unicode_data/currency_symbols.yml +0 -417
  585. data/resources/unicode_data/cypriot_syllabary.yml +0 -881
  586. data/resources/unicode_data/cyrillic_extended_a.yml +0 -513
  587. data/resources/unicode_data/cyrillic_extended_b.yml +0 -1425
  588. data/resources/unicode_data/cyrillic_supplement.yml +0 -641
  589. data/resources/unicode_data/decomposition_map.yml +0 -4565
  590. data/resources/unicode_data/deseret.yml +0 -1281
  591. data/resources/unicode_data/devanagari.yml +0 -2033
  592. data/resources/unicode_data/devanagari_extended.yml +0 -449
  593. data/resources/unicode_data/dingbats.yml +0 -3057
  594. data/resources/unicode_data/domino_tiles.yml +0 -1601
  595. data/resources/unicode_data/egyptian_hieroglyphs.yml +0 -17137
  596. data/resources/unicode_data/emoticons.yml +0 -1217
  597. data/resources/unicode_data/enclosed_alphanumeric_supplement.yml +0 -2737
  598. data/resources/unicode_data/enclosed_alphanumerics.yml +0 -2561
  599. data/resources/unicode_data/ethiopic.yml +0 -5729
  600. data/resources/unicode_data/ethiopic_extended.yml +0 -1265
  601. data/resources/unicode_data/ethiopic_extended_a.yml +0 -513
  602. data/resources/unicode_data/ethiopic_supplement.yml +0 -417
  603. data/resources/unicode_data/general_punctuation.yml +0 -1713
  604. data/resources/unicode_data/geometric_shapes.yml +0 -1537
  605. data/resources/unicode_data/georgian.yml +0 -1409
  606. data/resources/unicode_data/georgian_supplement.yml +0 -641
  607. data/resources/unicode_data/glagolitic.yml +0 -1505
  608. data/resources/unicode_data/gothic.yml +0 -433
  609. data/resources/unicode_data/gujarati.yml +0 -1345
  610. data/resources/unicode_data/gurmukhi.yml +0 -1265
  611. data/resources/unicode_data/hangul_jamo.yml +0 -4097
  612. data/resources/unicode_data/hangul_jamo_extended_a.yml +0 -465
  613. data/resources/unicode_data/hangul_jamo_extended_b.yml +0 -1153
  614. data/resources/unicode_data/hangul_syllables.yml +0 -33
  615. data/resources/unicode_data/hanunoo.yml +0 -369
  616. data/resources/unicode_data/hebrew.yml +0 -1393
  617. data/resources/unicode_data/high_private_use_surrogates.yml +0 -33
  618. data/resources/unicode_data/high_surrogates.yml +0 -33
  619. data/resources/unicode_data/hiragana.yml +0 -1489
  620. data/resources/unicode_data/ideographic_description_characters.yml +0 -193
  621. data/resources/unicode_data/imperial_aramaic.yml +0 -497
  622. data/resources/unicode_data/inscriptional_pahlavi.yml +0 -433
  623. data/resources/unicode_data/inscriptional_parthian.yml +0 -481
  624. data/resources/unicode_data/javanese.yml +0 -1457
  625. data/resources/unicode_data/kaithi.yml +0 -1057
  626. data/resources/unicode_data/kana_supplement.yml +0 -33
  627. data/resources/unicode_data/kangxi_radicals.yml +0 -3425
  628. data/resources/unicode_data/kannada.yml +0 -1377
  629. data/resources/unicode_data/katakana.yml +0 -1537
  630. data/resources/unicode_data/katakana_phonetic_extensions.yml +0 -257
  631. data/resources/unicode_data/kayah_li.yml +0 -769
  632. data/resources/unicode_data/kharoshthi.yml +0 -1041
  633. data/resources/unicode_data/khmer.yml +0 -1825
  634. data/resources/unicode_data/khmer_symbols.yml +0 -513
  635. data/resources/unicode_data/lao.yml +0 -1073
  636. data/resources/unicode_data/latin_extended_c.yml +0 -513
  637. data/resources/unicode_data/latin_extended_d.yml +0 -2145
  638. data/resources/unicode_data/lepcha.yml +0 -1185
  639. data/resources/unicode_data/letterlike_symbols.yml +0 -1281
  640. data/resources/unicode_data/limbu.yml +0 -1057
  641. data/resources/unicode_data/linear_b_ideograms.yml +0 -1969
  642. data/resources/unicode_data/linear_b_syllabary.yml +0 -1409
  643. data/resources/unicode_data/lisu.yml +0 -769
  644. data/resources/unicode_data/low_surrogates.yml +0 -33
  645. data/resources/unicode_data/lycian.yml +0 -465
  646. data/resources/unicode_data/lydian.yml +0 -433
  647. data/resources/unicode_data/mahjong_tiles.yml +0 -705
  648. data/resources/unicode_data/malayalam.yml +0 -1569
  649. data/resources/unicode_data/mandaic.yml +0 -465
  650. data/resources/unicode_data/mathematical_operators.yml +0 -4097
  651. data/resources/unicode_data/meetei_mayek.yml +0 -897
  652. data/resources/unicode_data/meetei_mayek_extensions.yml +0 -369
  653. data/resources/unicode_data/meroitic_cursive.yml +0 -417
  654. data/resources/unicode_data/meroitic_hieroglyphs.yml +0 -513
  655. data/resources/unicode_data/miao.yml +0 -2129
  656. data/resources/unicode_data/miscellaneous_mathematical_symbols_a.yml +0 -769
  657. data/resources/unicode_data/miscellaneous_mathematical_symbols_b.yml +0 -2049
  658. data/resources/unicode_data/miscellaneous_symbols.yml +0 -4097
  659. data/resources/unicode_data/miscellaneous_symbols_and_arrows.yml +0 -1393
  660. data/resources/unicode_data/miscellaneous_symbols_and_pictographs.yml +0 -8529
  661. data/resources/unicode_data/miscellaneous_technical.yml +0 -3905
  662. data/resources/unicode_data/modifier_tone_letters.yml +0 -513
  663. data/resources/unicode_data/mongolian.yml +0 -2497
  664. data/resources/unicode_data/musical_symbols.yml +0 -3521
  665. data/resources/unicode_data/myanmar.yml +0 -2561
  666. data/resources/unicode_data/myanmar_extended_a.yml +0 -449
  667. data/resources/unicode_data/new_tai_lue.yml +0 -1329
  668. data/resources/unicode_data/nko.yml +0 -945
  669. data/resources/unicode_data/number_forms.yml +0 -929
  670. data/resources/unicode_data/ogham.yml +0 -465
  671. data/resources/unicode_data/ol_chiki.yml +0 -769
  672. data/resources/unicode_data/old_italic.yml +0 -561
  673. data/resources/unicode_data/old_persian.yml +0 -801
  674. data/resources/unicode_data/old_south_arabian.yml +0 -513
  675. data/resources/unicode_data/old_turkic.yml +0 -1169
  676. data/resources/unicode_data/optical_character_recognition.yml +0 -177
  677. data/resources/unicode_data/oriya.yml +0 -1441
  678. data/resources/unicode_data/osmanya.yml +0 -641
  679. data/resources/unicode_data/phags_pa.yml +0 -897
  680. data/resources/unicode_data/phaistos_disc.yml +0 -737
  681. data/resources/unicode_data/phoenician.yml +0 -465
  682. data/resources/unicode_data/phonetic_extensions.yml +0 -2049
  683. data/resources/unicode_data/phonetic_extensions_supplement.yml +0 -1025
  684. data/resources/unicode_data/playing_cards.yml +0 -945
  685. data/resources/unicode_data/private_use_area.yml +0 -33
  686. data/resources/unicode_data/rejang.yml +0 -593
  687. data/resources/unicode_data/rumi_numeral_symbols.yml +0 -497
  688. data/resources/unicode_data/runic.yml +0 -1297
  689. data/resources/unicode_data/samaritan.yml +0 -977
  690. data/resources/unicode_data/saurashtra.yml +0 -1297
  691. data/resources/unicode_data/sharada.yml +0 -1329
  692. data/resources/unicode_data/shavian.yml +0 -769
  693. data/resources/unicode_data/sinhala.yml +0 -1281
  694. data/resources/unicode_data/small_form_variants.yml +0 -417
  695. data/resources/unicode_data/sora_sompeng.yml +0 -561
  696. data/resources/unicode_data/spacing_modifier_letters.yml +0 -1281
  697. data/resources/unicode_data/specials.yml +0 -81
  698. data/resources/unicode_data/sundanese.yml +0 -1025
  699. data/resources/unicode_data/sundanese_supplement.yml +0 -129
  700. data/resources/unicode_data/superscripts_and_subscripts.yml +0 -673
  701. data/resources/unicode_data/supplemental_arrows_a.yml +0 -257
  702. data/resources/unicode_data/supplemental_arrows_b.yml +0 -2049
  703. data/resources/unicode_data/supplemental_mathematical_operators.yml +0 -4097
  704. data/resources/unicode_data/supplemental_punctuation.yml +0 -961
  705. data/resources/unicode_data/supplementary_private_use_area_a.yml +0 -33
  706. data/resources/unicode_data/supplementary_private_use_area_b.yml +0 -33
  707. data/resources/unicode_data/syloti_nagri.yml +0 -705
  708. data/resources/unicode_data/syriac.yml +0 -1233
  709. data/resources/unicode_data/tagalog.yml +0 -321
  710. data/resources/unicode_data/tagbanwa.yml +0 -289
  711. data/resources/unicode_data/tags.yml +0 -1553
  712. data/resources/unicode_data/tai_le.yml +0 -561
  713. data/resources/unicode_data/tai_tham.yml +0 -2033
  714. data/resources/unicode_data/tai_viet.yml +0 -1153
  715. data/resources/unicode_data/tai_xuan_jing_symbols.yml +0 -1393
  716. data/resources/unicode_data/takri.yml +0 -1057
  717. data/resources/unicode_data/tamil.yml +0 -1153
  718. data/resources/unicode_data/telugu.yml +0 -1489
  719. data/resources/unicode_data/thaana.yml +0 -801
  720. data/resources/unicode_data/thai.yml +0 -1393
  721. data/resources/unicode_data/tibetan.yml +0 -3377
  722. data/resources/unicode_data/tifinagh.yml +0 -945
  723. data/resources/unicode_data/transport_and_map_symbols.yml +0 -1121
  724. data/resources/unicode_data/ugaritic.yml +0 -497
  725. data/resources/unicode_data/unified_canadian_aboriginal_syllabics.yml +0 -10241
  726. data/resources/unicode_data/unified_canadian_aboriginal_syllabics_extended.yml +0 -1121
  727. data/resources/unicode_data/vai.yml +0 -4801
  728. data/resources/unicode_data/variation_selectors.yml +0 -257
  729. data/resources/unicode_data/variation_selectors_supplement.yml +0 -3841
  730. data/resources/unicode_data/vedic_extensions.yml +0 -625
  731. data/resources/unicode_data/yi_radicals.yml +0 -881
  732. data/resources/unicode_data/yi_syllables.yml +0 -18641
  733. data/resources/unicode_data/yijing_hexagram_symbols.yml +0 -1025
@@ -1,505 +1,506 @@
1
- zh:
2
- languages:
3
- aa: 阿法文
4
- ab: 阿布哈西亚文
5
- ace: 亚齐文
6
- ach: 阿乔利文
7
- ada: 阿当梅文
8
- ady: 阿迪何文
9
- ae: 阿维斯塔文
10
- af: 南非荷兰文
11
- afa: 其他亚非语系
12
- afh: 阿弗里希利文
13
- ain: 阿伊努文
14
- ak: 阿肯文
15
- akk: 阿卡德文
16
- ale: 阿留申文
17
- alg: 其他阿尔贡语系
18
- alt: 南阿尔泰文
19
- am: 阿姆哈拉文
20
- an: 阿拉贡文
21
- ang: 古英文
22
- anp: 昂加语
23
- apa: 阿帕切文
24
- ar: 阿拉伯文
25
- arc: 阿拉米文
26
- arn: 阿劳坎文
27
- arp: 阿拉帕霍文
28
- art: 其他人工语系
29
- arw: 阿拉瓦克文
30
- as: 阿萨姆文
31
- ast: 阿斯图里亚思特文
32
- ath: 阿萨帕斯坎语系
33
- aus: 澳大利亚语系
34
- av: 阿瓦尔文
35
- awa: 阿瓦乔文
36
- ay: 艾马拉文
37
- az: 阿塞拜疆文
38
- ba: 巴什客尔文
39
- bad: 班达文
40
- bai: 巴米累克语系
41
- bal: 俾路支文
42
- ban: 巴里文
43
- bas: 巴萨文
44
- bat: 其他波罗的语系
45
- be: 白俄罗斯文
46
- bej: 别札文
47
- bem: 别姆巴文
48
- ber: 柏柏尔文
49
- bg: 保加利亚文
50
- bh: 比哈尔文
51
- bho: 博杰普尔文
52
- bi: 比斯拉马文
53
- bik: 毕库尔文
54
- bin: 比尼文
55
- bla: 司克司卡文
56
- bm: 班巴拉文
57
- bn: 孟加拉文
58
- bnt: 班图文
59
- bo: 藏文
60
- br: 布里多尼文
61
- bra: 布拉杰文
62
- bs: 波斯尼亚文
63
- btk: 巴塔克文
64
- bua: 布里亚特文
65
- bug: 布吉文
66
- byn: 布林文
67
- ca: 加泰罗尼亚文
68
- cad: 卡多文
69
- cai: 其他中美印第安语系
70
- car: 巴勒比文
71
- cau: 其他高加索语系
72
- ce: 车臣文
73
- ceb: 宿务文
74
- cel: 其他凯尔特语系
75
- ch: 查莫罗文
76
- chb: 契布卡文
77
- chg: 查加文
78
- chk: 楚吾克文
79
- chm: 马里文
80
- chn: 契努克文
81
- cho: 乔克托文
82
- chp: 佩瓦扬文
83
- chr: 彻罗基文
84
- chy: 夏延文
85
- cmc: 查米克文
86
- co: 科西嘉文
87
- cop: 科普特文
88
- cpe: 其他以英文为基础的克里奥尔混合语系
89
- cpf: 其他以法文为基础的克里奥尔混合语系
90
- cpp: 其他以葡萄牙文为基础的克里奥尔混合语系
91
- cr: 克里族文
92
- crh: 克里米亚土耳其文;克里米亚塔塔文
93
- crp: 其他克里奥尔混合语系
94
- cs: 捷克文
95
- csb: 卡舒文
96
- cu: 宗教斯拉夫文
97
- cus: 其他库施特语系
98
- cv: 楚瓦什文
99
- cy: 威尔士文
100
- da: 丹麦文
101
- dak: 达科他文
102
- dar: 达尔格瓦文
103
- day: 达雅克文
104
- de: 德文
105
- de-AT: 奥地利德语
106
- de-CH: 瑞士高地德文
107
- del: 特拉华文
108
- den: 司雷夫文
109
- dgr: 多格里布文
110
- din: 丁卡文
111
- doi: 多格拉文
112
- dra: 其他德拉维语系
113
- dsb: 下索布文
114
- dua: 都阿拉文
115
- dum: 中古荷兰文
116
- dv: 迪维希文
117
- dyu: 迪尤拉文
118
- dz: 不丹文
119
- ee: 埃维文
120
- efi: 埃菲克文
121
- egy: 古埃及文
122
- eka: 埃克丘克文
123
- el: 希腊文
124
- elx: 艾拉米特文
125
- en: 英文
126
- en-AU: 英语(澳大利亚)
127
- en-CA: 加拿大英语
128
- en-GB: 英语(英国)
129
- en-US: 英语(美国)
130
- enm: 中古英文
131
- eo: 世界文
132
- es: 西班牙文
133
- es-419: 拉丁美洲西班牙语
134
- es-ES: 西班牙语(伊比利亚)
135
- et: 爱沙尼亚文
136
- eu: 巴斯克文
137
- ewo: 旺杜文
138
- fa: 波斯文
139
- fan: 芳格文
140
- fat: 芳蒂文
141
- ff: 夫拉文
142
- fi: 芬兰文
143
- fil: 菲律宾文
144
- fiu: 其他芬兰乌戈尔语系
145
- fj: 斐济文
146
- fo: 法罗文
147
- fon: 丰文
148
- fr: 法文
149
- fr-CA: 加拿大法语
150
- fr-CH: 瑞士法语
151
- frm: 中古法文
152
- fro: 古法文
153
- frr: 北弗里西亚语
154
- frs: 东弗里西亚文
155
- fur: 弗留利文
156
- fy: 西弗里西亚文
157
- ga: 爱尔兰文
158
- gaa: 加文
159
- gay: 迦约文
160
- gba: 葛巴亚文
161
- gd: 苏格兰盖尔文
162
- gem: 其他日尔曼语系
163
- gez: 吉兹文
164
- gil: 吉尔伯特斯文
165
- gl: 加利西亚文
166
- gmh: 中古高地德文
167
- gn: 瓜拉尼文
168
- goh: 古高地德文
169
- gon: 岗德文
170
- gor: 科洛涅达罗文
171
- got: 哥特文
172
- grb: 格列博文
173
- grc: 古希腊文
174
- gsw: 瑞士德文
175
- gu: 古加拉提文
176
- gv: 马恩岛文
177
- gwi: 吉维克琴文
178
- ha: 豪撒文
179
- hai: 海达文
180
- haw: 夏威夷文
181
- he: 希伯来文
182
- hi: 印地文
183
- hil: 希利盖农文
184
- him: 赫马查利文
185
- hit: 赫梯文
186
- hmn: 赫蒙文
187
- ho: 希里莫图文
188
- hr: 克罗地亚文
189
- hsb: 上索布文
190
- ht: 海地文
191
- hu: 匈牙利文
192
- hup: 胡帕文
193
- hy: 亚美尼亚文
194
- hz: 赫雷罗文
195
- ia: 国际语
196
- iba: 伊班文
197
- id: 印度尼西亚文
198
- ie: 国际语(E)
199
- ig: 伊格博文
200
- ii: 四川彝文
201
- ijo: 伊乔文
202
- ik: 依奴皮维克文
203
- ilo: 伊洛干诺文
204
- inc: 其他印度语系
205
- ine: 其他印欧语系
206
- inh: 印古什文
207
- io: 伊多文
208
- ira: 伊朗文
209
- iro: 伊洛魁语系
210
- is: 冰岛文
211
- it: 意大利文
212
- iu: 伊努伊特文
213
- ja: 日文
214
- jbo: 逻辑文
215
- jpr: 犹太波斯文
216
- jrb: 犹太阿拉伯文
217
- jv: 爪哇文
218
- ka: 格鲁吉亚文
219
- kaa: 卡拉卡尔帕克文
220
- kab: 卡比尔文
221
- kac: 卡琴文
222
- kam: 卡姆巴文
223
- kar: 喀伦文
224
- kaw: 卡威文
225
- kbd: 卡巴尔达文
226
- kfo: 科罗语
227
- kg: 刚果文
228
- kha: 卡西文
229
- khi: 其他科伊桑语系
230
- kho: 和田文
231
- ki: 吉库尤文
232
- kj: 宽亚玛文
233
- kk: 哈萨克文
234
- kl: 格陵兰文
235
- km: 柬埔寨文
236
- kmb: 金邦杜文
237
- kn: 坎纳达文
238
- ko: 韩文
239
- kok: 刚卡尼文
240
- kos: 科斯拉伊文
241
- kpe: 克佩列文
242
- kr: 卡努里文
243
- krc: 卡拉恰伊巴尔卡尔文
244
- krl: 卡累利阿文
245
- kro: 克鲁文
246
- kru: 库鲁克文
247
- ks: 克什米尔文
248
- ku: 库尔德文
249
- kum: 库梅克文
250
- kut: 库特内文
251
- kv: 科米文
252
- kw: 凯尔特文
253
- ky: 吉尔吉斯文
254
- la: 拉丁文
255
- lad: 拉迪诺文
256
- lah: 拉亨达文
257
- lam: 兰巴文
258
- lb: 卢森堡文
259
- lez: 莱兹依昂文
260
- lg: 卢干达文
261
- li: 淋布尔吉文
262
- ln: 林加拉文
263
- lo: 老挝文
264
- lol: 芒戈文
265
- loz: 洛兹文
266
- lt: 立陶宛文
267
- lu: 鲁巴加丹加文
268
- lua: 鲁巴鲁瓦文
269
- lui: 路易塞诺文
270
- lun: 隆达文
271
- luo: 卢奥文
272
- lus: 卢晒文
273
- lv: 拉脱维亚文
274
- mad: 马都拉文
275
- mag: 马加伊文
276
- mai: 迈蒂利文
277
- mak: 望加锡文
278
- man: 曼丁哥文
279
- map: 澳斯特罗尼西亚语系
280
- mas: 萨伊语
281
- mdf: 莫克沙文
282
- mdr: 曼达尔
283
- men: 门迪文
284
- mg: 马尔加什文
285
- mga: 中古爱尔兰文
286
- mh: 马绍尔文
287
- mi: 毛利文
288
- mic: 米克马克文
289
- min: 米南卡保文
290
- mis: 各种不同语系
291
- mk: 马其顿文
292
- mkh: 其他孟高棉语系
293
- ml: 马来亚拉姆文
294
- mn: 蒙古文
295
- mnc: 满文
296
- mni: 曼尼普里文
297
- mno: 马诺博语系
298
- mo: 摩尔多瓦文
299
- moh: 摩霍克文
300
- mos: 莫西文
301
- mr: 马拉地文
302
- ms: 马来文
303
- mt: 马耳他文
304
- mul: 多种语系
305
- mun: 蒙达语系
306
- mus: 克里克文
307
- mwl: 米兰德斯文
308
- mwr: 马尔瓦利文
309
- my: 缅甸文
310
- myn: 玛雅语系
311
- myv: 俄日亚文
312
- na: 瑙鲁文
313
- nah: 纳瓦特尔文
314
- nai: 其他北美印第安语系
315
- nap: 拿波里文
316
- nb: 挪威博克马尔文
317
- nd: 北恩德贝勒文
318
- nds: 低地德文;低地撒克逊文
319
- ne: 尼泊尔文
320
- new: 尼瓦尔文
321
- ng: 恩东加文
322
- nia: 尼亚斯文
323
- nic: 其他尼日尔科尔多凡语系
324
- niu: 纽埃文
325
- nl: 荷兰文
326
- nl-BE: 弗拉芒语
327
- nn: 挪威尼诺斯克文
328
- "no": 挪威文
329
- nog: 诺盖文
330
- non: 古诺尔斯文
331
- nqo: 西非书面语言
332
- nr: 南恩德贝勒文
333
- nso: 北索托文
334
- nub: 努比亚语系
335
- nv: 纳瓦霍文
336
- nwc: "尼瓦尔文(Classical Newari)"
337
- ny: 尼扬扎文
338
- nym: 尼亚姆韦齐文
339
- nyn: 尼昂科勒文
340
- nyo: 尼约罗文
341
- nzi: 恩济马文
342
- oc: 奥克西唐语
343
- oj: 奥吉布瓦文
344
- om: 奥洛莫文
345
- or: 欧里亚文
346
- os: 奥塞梯文
347
- osa: 奥萨格文
348
- ota: 奥托曼土耳其文
349
- oto: 奥托米语系
350
- pa: 旁遮普文
351
- paa: 其他巴布亚文
352
- pag: 邦阿西楠语
353
- pal: 帕拉维文
354
- pam: 邦板牙文
355
- pap: 帕皮亚门托文
356
- pau: 帕劳文
357
- peo: 古老波斯语
358
- phi: 其他菲律宾语系
359
- phn: 腓尼基文
360
- pi: 巴利文
361
- pl: 波兰文
362
- pon: 波纳佩文
363
- pra: 普拉克里特诸语言
364
- pro: 普罗文斯文
365
- ps: 普什图文
366
- pt: 葡萄牙文
367
- pt-BR: 葡萄牙语(巴西)
368
- pt-PT: 依伯利亚葡萄牙文
369
- qu: 盖丘亚文
370
- raj: 拉贾斯坦文
371
- rap: 拉帕努伊文
372
- rar: 拉罗汤加文
373
- rm: 罗曼什文
374
- rn: 基隆迪文
375
- ro: 罗马尼亚文
376
- roa: 其他拉丁语系
377
- rom: 吉普赛文
378
- root: 根语言
379
- ru: 俄文
380
- rup: 亚美尼亚语
381
- rw: 卢旺达文
382
- sa: 梵文
383
- sad: 散达维文
384
- sah: 雅库特文
385
- sai: 其他南美印第安文
386
- sal: 萨利什文
387
- sam: 萨玛利亚文
388
- sas: 萨萨克文
389
- sat: 桑塔利文
390
- sc: 萨丁文
391
- scn: 西西里文
392
- sco: 苏格兰文
393
- sd: 信德文
394
- se: 北萨米文
395
- sel: 塞尔库普文
396
- sem: 其他闪族语系
397
- sg: 桑戈文
398
- sga: 古爱尔兰文
399
- sgn: 手语
400
- sh: 塞尔维亚-克罗地亚文
401
- shn: 掸文
402
- si: 僧伽罗文
403
- sid: 悉达摩文
404
- sio: 苏语诸语言
405
- sit: 其他汉藏语系
406
- sk: 斯洛伐克文
407
- sl: 斯洛文尼亚文
408
- sla: 其他斯拉夫语系
409
- sm: 萨摩亚文
410
- sma: 南萨米文
411
- smi: 其他萨米文
412
- smj: 律勒欧萨莫斯语
413
- smn: 伊纳里萨米语
414
- sms: 斯科特萨米文
415
- sn: 绍纳文
416
- snk: 索尼基文
417
- so: 索马里文
418
- sog: 古粟特语
419
- son: 桑海文
420
- sq: 阿尔巴尼亚文
421
- sr: 塞尔维亚文
422
- srn: 苏里南汤加语
423
- srr: 谢列尔文
424
- ss: 斯瓦特文
425
- ssa: 非洲撒哈拉沙漠边缘地带语言
426
- st: 南索托文
427
- su: 巽他语
428
- suk: 苏库马文
429
- sus: 苏苏文
430
- sux: 苏马文
431
- sv: 瑞典文
432
- sw: 斯瓦希里文
433
- swb: 科摩罗语
434
- syr: 叙利亚文
435
- ta: 泰米尔文
436
- tai: 傣语诸语言(其他)
437
- te: 泰卢固文
438
- tem: 滕内语
439
- ter: 特列纳文
440
- tet: 特塔姆文
441
- tg: 塔吉克文
442
- th: 泰文
443
- ti: 提格里尼亚文
444
- tig: 提格雷文
445
- tiv: 蒂夫文
446
- tk: 土库曼文
447
- tkl: 托克劳文
448
- tl: 塔加洛语
449
- tlh: 克林贡文
450
- tli: 特林吉特文
451
- tmh: 塔马奇克文
452
- tn: 塞茨瓦纳文
453
- to: 汤加文
454
- tog: 汤加文(尼亚萨地区)
455
- tpi: 托克皮辛文
456
- tr: 土耳其文
457
- ts: 宗加文
458
- tsi: 蒂姆西亚文
459
- tt: 塔塔尔文
460
- tum: 通布卡文
461
- tup: 图皮语系
462
- tut: 阿尔泰诸语言(其他)
463
- tvl: 图瓦卢文
464
- tw: 特威文
465
- ty: 塔西提文
466
- tyv: 图瓦文
467
- udm: 乌德穆尔特文
468
- ug: 维吾尔文
469
- uga: 乌加里特文
470
- uk: 乌克兰文
471
- umb: 翁本杜文
472
- und: 未知语言
473
- ur: 乌尔都文
474
- uz: 乌兹别克文
475
- vai: 瓦伊文
476
- ve: 文达文
477
- vi: 越南文
478
- vo: 沃拉普克文
479
- vot: 沃提克文
480
- wa: 瓦隆文
481
- wak: 瓦卡什诸语言
482
- wal: 瓦拉莫文
483
- war: 瓦赖文
484
- was: 瓦绍文
485
- wen: 索布诸语言
486
- wo: 沃洛夫文
487
- xal: 卡尔梅克文
488
- xh: 科萨文
489
- yao: 瑶族文
490
- yap: 雅浦文
491
- yi: 依地文
492
- yo: 约鲁巴文
493
- ypk: 尤皮克诸语言
494
- yue: 粤语
495
- za: 壮语
496
- zap: 萨波蒂克文
497
- zen: 泽纳加文
498
- zh: 中文
499
- zh-Hans: 中文(简体)
500
- zh-Hant: 中文(繁体)
501
- znd: 赞德文
502
- zu: 祖鲁文
503
- zun: 祖尼语
504
- zxx: 无语言内容
505
- zza: 扎扎文
1
+ ---
2
+ :zh:
3
+ :languages:
4
+ :aa: 阿法文
5
+ :ab: 阿布哈西亚文
6
+ :ace: 亚齐文
7
+ :ach: 阿乔利文
8
+ :ada: 阿当梅文
9
+ :ady: 阿迪何文
10
+ :ae: 阿维斯塔文
11
+ :af: 南非荷兰文
12
+ :afa: 其他亚非语系
13
+ :afh: 阿弗里希利文
14
+ :ain: 阿伊努文
15
+ :ak: 阿肯文
16
+ :akk: 阿卡德文
17
+ :ale: 阿留申文
18
+ :alg: 其他阿尔贡语系
19
+ :alt: 南阿尔泰文
20
+ :am: 阿姆哈拉文
21
+ :an: 阿拉贡文
22
+ :ang: 古英文
23
+ :anp: 昂加语
24
+ :apa: 阿帕切文
25
+ :ar: 阿拉伯文
26
+ :arc: 阿拉米文
27
+ :arn: 阿劳坎文
28
+ :arp: 阿拉帕霍文
29
+ :art: 其他人工语系
30
+ :arw: 阿拉瓦克文
31
+ :as: 阿萨姆文
32
+ :ast: 阿斯图里亚思特文
33
+ :ath: 阿萨帕斯坎语系
34
+ :aus: 澳大利亚语系
35
+ :av: 阿瓦尔文
36
+ :awa: 阿瓦乔文
37
+ :ay: 艾马拉文
38
+ :az: 阿塞拜疆文
39
+ :ba: 巴什客尔文
40
+ :bad: 班达文
41
+ :bai: 巴米累克语系
42
+ :bal: 俾路支文
43
+ :ban: 巴里文
44
+ :bas: 巴萨文
45
+ :bat: 其他波罗的语系
46
+ :be: 白俄罗斯文
47
+ :bej: 别札文
48
+ :bem: 别姆巴文
49
+ :ber: 柏柏尔文
50
+ :bg: 保加利亚文
51
+ :bh: 比哈尔文
52
+ :bho: 博杰普尔文
53
+ :bi: 比斯拉马文
54
+ :bik: 毕库尔文
55
+ :bin: 比尼文
56
+ :bla: 司克司卡文
57
+ :bm: 班巴拉文
58
+ :bn: 孟加拉文
59
+ :bnt: 班图文
60
+ :bo: 藏文
61
+ :br: 布里多尼文
62
+ :bra: 布拉杰文
63
+ :bs: 波斯尼亚文
64
+ :btk: 巴塔克文
65
+ :bua: 布里亚特文
66
+ :bug: 布吉文
67
+ :byn: 布林文
68
+ :ca: 加泰罗尼亚文
69
+ :cad: 卡多文
70
+ :cai: 其他中美印第安语系
71
+ :car: 巴勒比文
72
+ :cau: 其他高加索语系
73
+ :ce: 车臣文
74
+ :ceb: 宿务文
75
+ :cel: 其他凯尔特语系
76
+ :ch: 查莫罗文
77
+ :chb: 契布卡文
78
+ :chg: 查加文
79
+ :chk: 楚吾克文
80
+ :chm: 马里文
81
+ :chn: 契努克文
82
+ :cho: 乔克托文
83
+ :chp: 佩瓦扬文
84
+ :chr: 彻罗基文
85
+ :chy: 夏延文
86
+ :cmc: 查米克文
87
+ :co: 科西嘉文
88
+ :cop: 科普特文
89
+ :cpe: 其他以英文为基础的克里奥尔混合语系
90
+ :cpf: 其他以法文为基础的克里奥尔混合语系
91
+ :cpp: 其他以葡萄牙文为基础的克里奥尔混合语系
92
+ :cr: 克里族文
93
+ :crh: 克里米亚土耳其文;克里米亚塔塔文
94
+ :crp: 其他克里奥尔混合语系
95
+ :cs: 捷克文
96
+ :csb: 卡舒文
97
+ :cu: 宗教斯拉夫文
98
+ :cus: 其他库施特语系
99
+ :cv: 楚瓦什文
100
+ :cy: 威尔士文
101
+ :da: 丹麦文
102
+ :dak: 达科他文
103
+ :dar: 达尔格瓦文
104
+ :day: 达雅克文
105
+ :de: 德文
106
+ :de-AT: 奥地利德语
107
+ :de-CH: 瑞士高地德文
108
+ :del: 特拉华文
109
+ :den: 司雷夫文
110
+ :dgr: 多格里布文
111
+ :din: 丁卡文
112
+ :doi: 多格拉文
113
+ :dra: 其他德拉维语系
114
+ :dsb: 下索布文
115
+ :dua: 都阿拉文
116
+ :dum: 中古荷兰文
117
+ :dv: 迪维希文
118
+ :dyu: 迪尤拉文
119
+ :dz: 不丹文
120
+ :ee: 埃维文
121
+ :efi: 埃菲克文
122
+ :egy: 古埃及文
123
+ :eka: 埃克丘克文
124
+ :el: 希腊文
125
+ :elx: 艾拉米特文
126
+ :en: 英文
127
+ :en-AU: 英语(澳大利亚)
128
+ :en-CA: 加拿大英语
129
+ :en-GB: 英语(英国)
130
+ :en-US: 英语(美国)
131
+ :enm: 中古英文
132
+ :eo: 世界文
133
+ :es: 西班牙文
134
+ :es-419: 拉丁美洲西班牙语
135
+ :es-ES: 西班牙语(伊比利亚)
136
+ :et: 爱沙尼亚文
137
+ :eu: 巴斯克文
138
+ :ewo: 旺杜文
139
+ :fa: 波斯文
140
+ :fan: 芳格文
141
+ :fat: 芳蒂文
142
+ :ff: 夫拉文
143
+ :fi: 芬兰文
144
+ :fil: 菲律宾文
145
+ :fiu: 其他芬兰乌戈尔语系
146
+ :fj: 斐济文
147
+ :fo: 法罗文
148
+ :fon: 丰文
149
+ :fr: 法文
150
+ :fr-CA: 加拿大法语
151
+ :fr-CH: 瑞士法语
152
+ :frm: 中古法文
153
+ :fro: 古法文
154
+ :frr: 北弗里西亚语
155
+ :frs: 东弗里西亚文
156
+ :fur: 弗留利文
157
+ :fy: 西弗里西亚文
158
+ :ga: 爱尔兰文
159
+ :gaa: 加文
160
+ :gay: 迦约文
161
+ :gba: 葛巴亚文
162
+ :gd: 苏格兰盖尔文
163
+ :gem: 其他日尔曼语系
164
+ :gez: 吉兹文
165
+ :gil: 吉尔伯特斯文
166
+ :gl: 加利西亚文
167
+ :gmh: 中古高地德文
168
+ :gn: 瓜拉尼文
169
+ :goh: 古高地德文
170
+ :gon: 岗德文
171
+ :gor: 科洛涅达罗文
172
+ :got: 哥特文
173
+ :grb: 格列博文
174
+ :grc: 古希腊文
175
+ :gsw: 瑞士德文
176
+ :gu: 古加拉提文
177
+ :gv: 马恩岛文
178
+ :gwi: 吉维克琴文
179
+ :ha: 豪撒文
180
+ :hai: 海达文
181
+ :haw: 夏威夷文
182
+ :he: 希伯来文
183
+ :hi: 印地文
184
+ :hil: 希利盖农文
185
+ :him: 赫马查利文
186
+ :hit: 赫梯文
187
+ :hmn: 赫蒙文
188
+ :ho: 希里莫图文
189
+ :hr: 克罗地亚文
190
+ :hsb: 上索布文
191
+ :ht: 海地文
192
+ :hu: 匈牙利文
193
+ :hup: 胡帕文
194
+ :hy: 亚美尼亚文
195
+ :hz: 赫雷罗文
196
+ :ia: 国际语
197
+ :iba: 伊班文
198
+ :id: 印度尼西亚文
199
+ :ie: 国际语(E)
200
+ :ig: 伊格博文
201
+ :ii: 四川彝文
202
+ :ijo: 伊乔文
203
+ :ik: 依奴皮维克文
204
+ :ilo: 伊洛干诺文
205
+ :inc: 其他印度语系
206
+ :ine: 其他印欧语系
207
+ :inh: 印古什文
208
+ :io: 伊多文
209
+ :ira: 伊朗文
210
+ :iro: 伊洛魁语系
211
+ :is: 冰岛文
212
+ :it: 意大利文
213
+ :iu: 伊努伊特文
214
+ :ja: 日文
215
+ :jbo: 逻辑文
216
+ :jpr: 犹太波斯文
217
+ :jrb: 犹太阿拉伯文
218
+ :jv: 爪哇文
219
+ :ka: 格鲁吉亚文
220
+ :kaa: 卡拉卡尔帕克文
221
+ :kab: 卡比尔文
222
+ :kac: 卡琴文
223
+ :kam: 卡姆巴文
224
+ :kar: 喀伦文
225
+ :kaw: 卡威文
226
+ :kbd: 卡巴尔达文
227
+ :kfo: 科罗语
228
+ :kg: 刚果文
229
+ :kha: 卡西文
230
+ :khi: 其他科伊桑语系
231
+ :kho: 和田文
232
+ :ki: 吉库尤文
233
+ :kj: 宽亚玛文
234
+ :kk: 哈萨克文
235
+ :kl: 格陵兰文
236
+ :km: 柬埔寨文
237
+ :kmb: 金邦杜文
238
+ :kn: 坎纳达文
239
+ :ko: 韩文
240
+ :kok: 刚卡尼文
241
+ :kos: 科斯拉伊文
242
+ :kpe: 克佩列文
243
+ :kr: 卡努里文
244
+ :krc: 卡拉恰伊巴尔卡尔文
245
+ :krl: 卡累利阿文
246
+ :kro: 克鲁文
247
+ :kru: 库鲁克文
248
+ :ks: 克什米尔文
249
+ :ku: 库尔德文
250
+ :kum: 库梅克文
251
+ :kut: 库特内文
252
+ :kv: 科米文
253
+ :kw: 凯尔特文
254
+ :ky: 吉尔吉斯文
255
+ :la: 拉丁文
256
+ :lad: 拉迪诺文
257
+ :lah: 拉亨达文
258
+ :lam: 兰巴文
259
+ :lb: 卢森堡文
260
+ :lez: 莱兹依昂文
261
+ :lg: 卢干达文
262
+ :li: 淋布尔吉文
263
+ :ln: 林加拉文
264
+ :lo: 老挝文
265
+ :lol: 芒戈文
266
+ :loz: 洛兹文
267
+ :lt: 立陶宛文
268
+ :lu: 鲁巴加丹加文
269
+ :lua: 鲁巴鲁瓦文
270
+ :lui: 路易塞诺文
271
+ :lun: 隆达文
272
+ :luo: 卢奥文
273
+ :lus: 卢晒文
274
+ :lv: 拉脱维亚文
275
+ :mad: 马都拉文
276
+ :mag: 马加伊文
277
+ :mai: 迈蒂利文
278
+ :mak: 望加锡文
279
+ :man: 曼丁哥文
280
+ :map: 澳斯特罗尼西亚语系
281
+ :mas: 萨伊语
282
+ :mdf: 莫克沙文
283
+ :mdr: 曼达尔
284
+ :men: 门迪文
285
+ :mg: 马尔加什文
286
+ :mga: 中古爱尔兰文
287
+ :mh: 马绍尔文
288
+ :mi: 毛利文
289
+ :mic: 米克马克文
290
+ :min: 米南卡保文
291
+ :mis: 各种不同语系
292
+ :mk: 马其顿文
293
+ :mkh: 其他孟高棉语系
294
+ :ml: 马来亚拉姆文
295
+ :mn: 蒙古文
296
+ :mnc: 满文
297
+ :mni: 曼尼普里文
298
+ :mno: 马诺博语系
299
+ :mo: 摩尔多瓦文
300
+ :moh: 摩霍克文
301
+ :mos: 莫西文
302
+ :mr: 马拉地文
303
+ :ms: 马来文
304
+ :mt: 马耳他文
305
+ :mul: 多种语系
306
+ :mun: 蒙达语系
307
+ :mus: 克里克文
308
+ :mwl: 米兰德斯文
309
+ :mwr: 马尔瓦利文
310
+ :my: 缅甸文
311
+ :myn: 玛雅语系
312
+ :myv: 俄日亚文
313
+ :na: 瑙鲁文
314
+ :nah: 纳瓦特尔文
315
+ :nai: 其他北美印第安语系
316
+ :nap: 拿波里文
317
+ :nb: 挪威博克马尔文
318
+ :nd: 北恩德贝勒文
319
+ :nds: 低地德文;低地撒克逊文
320
+ :ne: 尼泊尔文
321
+ :new: 尼瓦尔文
322
+ :ng: 恩东加文
323
+ :nia: 尼亚斯文
324
+ :nic: 其他尼日尔科尔多凡语系
325
+ :niu: 纽埃文
326
+ :nl: 荷兰文
327
+ :nl-BE: 弗拉芒语
328
+ :nn: 挪威尼诺斯克文
329
+ :no: 挪威文
330
+ :nog: 诺盖文
331
+ :non: 古诺尔斯文
332
+ :nqo: 西非书面语言
333
+ :nr: 南恩德贝勒文
334
+ :nso: 北索托文
335
+ :nub: 努比亚语系
336
+ :nv: 纳瓦霍文
337
+ :nwc: 尼瓦尔文(Classical Newari)
338
+ :ny: 尼扬扎文
339
+ :nym: 尼亚姆韦齐文
340
+ :nyn: 尼昂科勒文
341
+ :nyo: 尼约罗文
342
+ :nzi: 恩济马文
343
+ :oc: 奥克西唐语
344
+ :oj: 奥吉布瓦文
345
+ :om: 奥洛莫文
346
+ :or: 欧里亚文
347
+ :os: 奥塞梯文
348
+ :osa: 奥萨格文
349
+ :ota: 奥托曼土耳其文
350
+ :oto: 奥托米语系
351
+ :pa: 旁遮普文
352
+ :paa: 其他巴布亚文
353
+ :pag: 邦阿西楠语
354
+ :pal: 帕拉维文
355
+ :pam: 邦板牙文
356
+ :pap: 帕皮亚门托文
357
+ :pau: 帕劳文
358
+ :peo: 古老波斯语
359
+ :phi: 其他菲律宾语系
360
+ :phn: 腓尼基文
361
+ :pi: 巴利文
362
+ :pl: 波兰文
363
+ :pon: 波纳佩文
364
+ :pra: 普拉克里特诸语言
365
+ :pro: 普罗文斯文
366
+ :ps: 普什图文
367
+ :pt: 葡萄牙文
368
+ :pt-BR: 葡萄牙语(巴西)
369
+ :pt-PT: 依伯利亚葡萄牙文
370
+ :qu: 盖丘亚文
371
+ :raj: 拉贾斯坦文
372
+ :rap: 拉帕努伊文
373
+ :rar: 拉罗汤加文
374
+ :rm: 罗曼什文
375
+ :rn: 基隆迪文
376
+ :ro: 罗马尼亚文
377
+ :roa: 其他拉丁语系
378
+ :rom: 吉普赛文
379
+ :root: 根语言
380
+ :ru: 俄文
381
+ :rup: 亚美尼亚语
382
+ :rw: 卢旺达文
383
+ :sa: 梵文
384
+ :sad: 散达维文
385
+ :sah: 雅库特文
386
+ :sai: 其他南美印第安文
387
+ :sal: 萨利什文
388
+ :sam: 萨玛利亚文
389
+ :sas: 萨萨克文
390
+ :sat: 桑塔利文
391
+ :sc: 萨丁文
392
+ :scn: 西西里文
393
+ :sco: 苏格兰文
394
+ :sd: 信德文
395
+ :se: 北萨米文
396
+ :sel: 塞尔库普文
397
+ :sem: 其他闪族语系
398
+ :sg: 桑戈文
399
+ :sga: 古爱尔兰文
400
+ :sgn: 手语
401
+ :sh: 塞尔维亚-克罗地亚文
402
+ :shn: 掸文
403
+ :si: 僧伽罗文
404
+ :sid: 悉达摩文
405
+ :sio: 苏语诸语言
406
+ :sit: 其他汉藏语系
407
+ :sk: 斯洛伐克文
408
+ :sl: 斯洛文尼亚文
409
+ :sla: 其他斯拉夫语系
410
+ :sm: 萨摩亚文
411
+ :sma: 南萨米文
412
+ :smi: 其他萨米文
413
+ :smj: 律勒欧萨莫斯语
414
+ :smn: 伊纳里萨米语
415
+ :sms: 斯科特萨米文
416
+ :sn: 绍纳文
417
+ :snk: 索尼基文
418
+ :so: 索马里文
419
+ :sog: 古粟特语
420
+ :son: 桑海文
421
+ :sq: 阿尔巴尼亚文
422
+ :sr: 塞尔维亚文
423
+ :srn: 苏里南汤加语
424
+ :srr: 谢列尔文
425
+ :ss: 斯瓦特文
426
+ :ssa: 非洲撒哈拉沙漠边缘地带语言
427
+ :st: 南索托文
428
+ :su: 巽他语
429
+ :suk: 苏库马文
430
+ :sus: 苏苏文
431
+ :sux: 苏马文
432
+ :sv: 瑞典文
433
+ :sw: 斯瓦希里文
434
+ :swb: 科摩罗语
435
+ :syr: 叙利亚文
436
+ :ta: 泰米尔文
437
+ :tai: 傣语诸语言(其他)
438
+ :te: 泰卢固文
439
+ :tem: 滕内语
440
+ :ter: 特列纳文
441
+ :tet: 特塔姆文
442
+ :tg: 塔吉克文
443
+ :th: 泰文
444
+ :ti: 提格里尼亚文
445
+ :tig: 提格雷文
446
+ :tiv: 蒂夫文
447
+ :tk: 土库曼文
448
+ :tkl: 托克劳文
449
+ :tl: 塔加洛语
450
+ :tlh: 克林贡文
451
+ :tli: 特林吉特文
452
+ :tmh: 塔马奇克文
453
+ :tn: 塞茨瓦纳文
454
+ :to: 汤加文
455
+ :tog: 汤加文(尼亚萨地区)
456
+ :tpi: 托克皮辛文
457
+ :tr: 土耳其文
458
+ :ts: 宗加文
459
+ :tsi: 蒂姆西亚文
460
+ :tt: 塔塔尔文
461
+ :tum: 通布卡文
462
+ :tup: 图皮语系
463
+ :tut: 阿尔泰诸语言(其他)
464
+ :tvl: 图瓦卢文
465
+ :tw: 特威文
466
+ :ty: 塔西提文
467
+ :tyv: 图瓦文
468
+ :udm: 乌德穆尔特文
469
+ :ug: 维吾尔文
470
+ :uga: 乌加里特文
471
+ :uk: 乌克兰文
472
+ :umb: 翁本杜文
473
+ :und: 未知语言
474
+ :ur: 乌尔都文
475
+ :uz: 乌兹别克文
476
+ :vai: 瓦伊文
477
+ :ve: 文达文
478
+ :vi: 越南文
479
+ :vo: 沃拉普克文
480
+ :vot: 沃提克文
481
+ :wa: 瓦隆文
482
+ :wak: 瓦卡什诸语言
483
+ :wal: 瓦拉莫文
484
+ :war: 瓦赖文
485
+ :was: 瓦绍文
486
+ :wen: 索布诸语言
487
+ :wo: 沃洛夫文
488
+ :xal: 卡尔梅克文
489
+ :xh: 科萨文
490
+ :yao: 瑶族文
491
+ :yap: 雅浦文
492
+ :yi: 依地文
493
+ :yo: 约鲁巴文
494
+ :ypk: 尤皮克诸语言
495
+ :yue: 粤语
496
+ :za: 壮语
497
+ :zap: 萨波蒂克文
498
+ :zen: 泽纳加文
499
+ :zh: 中文
500
+ :zh-Hans: 中文(简体)
501
+ :zh-Hant: 中文(繁体)
502
+ :znd: 赞德文
503
+ :zu: 祖鲁文
504
+ :zun: 祖尼语
505
+ :zxx: 无语言内容
506
+ :zza: 扎扎文