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,101 +1,102 @@
1
- ar:
2
- calendars:
3
- gregorian:
4
- days:
5
- format:
6
- abbreviated:
7
- fri: الجمعة
8
- mon: الاثنين
9
- sat: السبت
10
- sun: الأحد
11
- thu: الخميس
12
- tue: الثلاثاء
13
- wed: الأربعاء
14
- narrow: :"calendars.gregorian.days.stand-alone.narrow"
15
- wide:
16
- fri: الجمعة
17
- mon: الاثنين
18
- sat: السبت
19
- sun: الأحد
20
- thu: الخميس
21
- tue: الثلاثاء
22
- wed: الأربعاء
23
- stand-alone:
24
- abbreviated:
25
- fri: الجمعة
26
- mon: الاثنين
27
- sat: السبت
28
- sun: الأحد
29
- thu: الخميس
30
- tue: الثلاثاء
31
- wed: الأربعاء
32
- narrow:
33
- fri: ج
34
- mon: ن
35
- sat: س
36
- sun: ح
37
- thu: خ
38
- tue: ث
39
- wed: ر
40
- wide:
41
- mon: الاثنين
42
- eras:
43
- abbr:
1
+ ---
2
+ :ar:
3
+ :calendars:
4
+ :gregorian:
5
+ :days:
6
+ :format:
7
+ :abbreviated:
8
+ :fri: الجمعة
9
+ :mon: الاثنين
10
+ :sat: السبت
11
+ :sun: الأحد
12
+ :thu: الخميس
13
+ :tue: الثلاثاء
14
+ :wed: الأربعاء
15
+ :narrow: :calendars.gregorian.days.stand-alone.narrow
16
+ :wide:
17
+ :fri: الجمعة
18
+ :mon: الاثنين
19
+ :sat: السبت
20
+ :sun: الأحد
21
+ :thu: الخميس
22
+ :tue: الثلاثاء
23
+ :wed: الأربعاء
24
+ :stand-alone:
25
+ :abbreviated:
26
+ :fri: الجمعة
27
+ :mon: الاثنين
28
+ :sat: السبت
29
+ :sun: الأحد
30
+ :thu: الخميس
31
+ :tue: الثلاثاء
32
+ :wed: الأربعاء
33
+ :narrow:
34
+ :fri: ج
35
+ :mon: ن
36
+ :sat: س
37
+ :sun: ح
38
+ :thu: خ
39
+ :tue: ث
40
+ :wed: ر
41
+ :wide:
42
+ :mon: الاثنين
43
+ :eras:
44
+ :abbr:
44
45
  0: ق.م
45
46
  1: م
46
- name:
47
- 0: "قبل الميلاد"
47
+ :name:
48
+ 0: قبل الميلاد
48
49
  1: ميلادي
49
- narrow:
50
- 0: ""
51
- fields:
52
- day: يوم
53
- dayperiod: ص/م
54
- era: العصر
55
- hour: الساعات
56
- minute: الدقائق
57
- month: الشهر
58
- second: الثواني
59
- week: الأسبوع
60
- weekday: اليوم
61
- year: السنة
62
- zone: التوقيت
63
- formats:
64
- date:
65
- default: :"calendars.gregorian.formats.date.medium"
66
- full:
67
- pattern: "EEEE، d MMMM، y"
68
- long:
69
- pattern: "d MMMM، y"
70
- medium:
71
- pattern: dd‏/MM‏/yyyy
72
- short:
73
- pattern: d‏/M‏/yyyy
74
- datetime:
75
- default: :"calendars.gregorian.formats.datetime.medium"
76
- full:
77
- pattern: "{{date}} {{time}}"
78
- long:
79
- pattern: "{{date}} {{time}}"
80
- medium:
81
- pattern: "{{date}} {{time}}"
82
- short:
83
- pattern: "{{date}} {{time}}"
84
- time:
85
- default: :"calendars.gregorian.formats.time.medium"
86
- full:
87
- pattern: "zzzz h:mm:ss a"
88
- long:
89
- pattern: "z h:mm:ss a"
90
- medium:
91
- pattern: "h:mm:ss a"
92
- short:
93
- pattern: "h:mm a"
94
- months:
95
- format:
96
- abbreviated: :"calendars.gregorian.months.format.wide"
97
- narrow: :"calendars.gregorian.months.stand-alone.narrow"
98
- wide:
50
+ :narrow:
51
+ 0: ''
52
+ :fields:
53
+ :day: يوم
54
+ :dayperiod: ص/م
55
+ :era: العصر
56
+ :hour: الساعات
57
+ :minute: الدقائق
58
+ :month: الشهر
59
+ :second: الثواني
60
+ :week: الأسبوع
61
+ :weekday: اليوم
62
+ :year: السنة
63
+ :zone: التوقيت
64
+ :formats:
65
+ :date:
66
+ :default: :calendars.gregorian.formats.date.medium
67
+ :full:
68
+ :pattern: EEEE، d MMMM، y
69
+ :long:
70
+ :pattern: d MMMM، y
71
+ :medium:
72
+ :pattern: dd‏/MM‏/yyyy
73
+ :short:
74
+ :pattern: d‏/M‏/yyyy
75
+ :datetime:
76
+ :default: :calendars.gregorian.formats.datetime.medium
77
+ :full:
78
+ :pattern: ! '{{date}} {{time}}'
79
+ :long:
80
+ :pattern: ! '{{date}} {{time}}'
81
+ :medium:
82
+ :pattern: ! '{{date}} {{time}}'
83
+ :short:
84
+ :pattern: ! '{{date}} {{time}}'
85
+ :time:
86
+ :default: :calendars.gregorian.formats.time.medium
87
+ :full:
88
+ :pattern: zzzz h:mm:ss a
89
+ :long:
90
+ :pattern: z h:mm:ss a
91
+ :medium:
92
+ :pattern: h:mm:ss a
93
+ :short:
94
+ :pattern: h:mm a
95
+ :months:
96
+ :format:
97
+ :abbreviated: :calendars.gregorian.months.format.wide
98
+ :narrow: :calendars.gregorian.months.stand-alone.narrow
99
+ :wide:
99
100
  1: يناير
100
101
  10: أكتوبر
101
102
  11: نوفمبر
@@ -108,9 +109,9 @@ ar:
108
109
  7: يوليو
109
110
  8: أغسطس
110
111
  9: سبتمبر
111
- stand-alone:
112
- abbreviated: :"calendars.gregorian.months.format.abbreviated"
113
- narrow:
112
+ :stand-alone:
113
+ :abbreviated: :calendars.gregorian.months.format.abbreviated
114
+ :narrow:
114
115
  1: ي
115
116
  10: ك
116
117
  11: ب
@@ -123,29 +124,29 @@ ar:
123
124
  7: ل
124
125
  8: غ
125
126
  9: س
126
- wide: :"calendars.gregorian.months.format.wide"
127
- periods:
128
- format:
129
- abbreviated: :"calendars.gregorian.dayPeriods.format.wide"
130
- narrow: :"calendars.gregorian.dayPeriods.format.abbreviated"
131
- wide:
132
- am: ص
133
- pm: م
134
- stand-alone: {}
135
- quarters:
136
- format:
137
- abbreviated: :"calendars.gregorian.quarters.format.wide"
138
- narrow: :"calendars.gregorian.quarters.stand-alone.narrow"
139
- wide:
140
- 1: "الربع الأول"
141
- 2: "الربع الثاني"
142
- 3: "الربع الثالث"
143
- 4: "الربع الرابع"
144
- stand-alone:
145
- abbreviated: :"calendars.gregorian.quarters.format.abbreviated"
146
- narrow:
127
+ :wide: :calendars.gregorian.months.format.wide
128
+ :periods:
129
+ :format:
130
+ :abbreviated: :calendars.gregorian.dayPeriods.format.wide
131
+ :narrow: :calendars.gregorian.dayPeriods.format.abbreviated
132
+ :wide:
133
+ :am: ص
134
+ :pm: م
135
+ :stand-alone: {}
136
+ :quarters:
137
+ :format:
138
+ :abbreviated: :calendars.gregorian.quarters.format.wide
139
+ :narrow: :calendars.gregorian.quarters.stand-alone.narrow
140
+ :wide:
141
+ 1: الربع الأول
142
+ 2: الربع الثاني
143
+ 3: الربع الثالث
144
+ 4: الربع الرابع
145
+ :stand-alone:
146
+ :abbreviated: :calendars.gregorian.quarters.format.abbreviated
147
+ :narrow:
147
148
  1: ١
148
149
  2: ٢
149
150
  3: ٣
150
151
  4: ٤
151
- wide: :"calendars.gregorian.quarters.format.wide"
152
+ :wide: :calendars.gregorian.quarters.format.wide
@@ -1,500 +1,501 @@
1
- ar:
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
- cch: الأتسام
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
- 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: الإنترلينج
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
- kaj: الجو
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
- 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: "النوارية التقليدية"
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
- shn: الشانية
401
- si: السنهالية
402
- sid: السيدامو
403
- sio: "لغة السيويون"
404
- sit: "اللغة الصينية التيبتية"
405
- sk: السلوفاكية
406
- sl: السلوفانية
407
- sla: "اللغة السلافية"
408
- sm: الساموائية
409
- sma: "السامي الجنوبي"
410
- smi: "اللغة السامية"
411
- smj: "اللول سامي"
412
- smn: "الإيناري سامي"
413
- sms: "السكولت سامي"
414
- sn: الشونا
415
- snk: السونينك
416
- so: الصومالية
417
- sog: السوجدين
418
- son: السونجهاي
419
- sq: الألبانية
420
- sr: الصربية
421
- srn: "السرانان تونجو"
422
- srr: السرر
423
- ss: السواتي
424
- ssa: "لغة نيلية الصحراوية"
425
- st: "السوتو الجنوبية"
426
- su: السودانية
427
- suk: السوكوما
428
- sus: السوسو
429
- sux: السومارية
430
- sv: السويدية
431
- sw: السواحلية
432
- swb: القمرية
433
- syc: "سريانية تقليدية"
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
- udm: الأدمرت
467
- ug: الأيغورية
468
- uga: اليجاريتيك
469
- uk: الأوكرانية
470
- umb: الأمبندو
471
- und: "لغة غير معروفة"
472
- ur: الأردية
473
- uz: الأوزباكية
474
- vai: الفاي
475
- ve: الفيندا
476
- vi: الفيتنامية
477
- vot: الفوتيك
478
- wa: الولونية
479
- wak: "اللغة الواكاشانية"
480
- wal: الوالامو
481
- war: الواراي
482
- was: الواشو
483
- wen: "اللغة الصربية"
484
- wo: الولوف
485
- xal: الكالميك
486
- xh: الخوسا
487
- yao: الياو
488
- yap: اليابيز
489
- yi: اليديشية
490
- yo: اليوروبية
491
- ypk: "اللغة اليوبيكية"
492
- yue: الكَنْتُونية
493
- za: الزهيونج
494
- zap: الزابوتيك
495
- zen: الزيناجا
496
- zh: الصينية
497
- znd: الزاند
498
- zu: الزولو
499
- zun: الزونية
500
- zxx: "بدون محتوى لغوي"
1
+ ---
2
+ :ar:
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
+ :cch: الأتسام
74
+ :ce: الشيشانية
75
+ :ceb: السيبيونو
76
+ :cel: السلتية - أخرى
77
+ :ch: التشامورو
78
+ :chb: التشيبشا
79
+ :chg: التشاجاتاي
80
+ :chk: التشكيزية
81
+ :chm: الماري
82
+ :chn: الشينوك جارجون
83
+ :cho: الشوكتو
84
+ :chp: الشيباوايان
85
+ :chr: الشيروكي
86
+ :chy: الشايان
87
+ :cmc: اللغة التشاميكية
88
+ :co: الكورسيكية
89
+ :cop: القبطية
90
+ :cpe: الكرييولى و اللغات المبسطة الأخرى للتفاهم بين الشعوب على أساس الأنجليزية
91
+ :cpf: الكرييولى و اللغات المبسطة الأخرى للتفاهم بين الشعوب على أساس الفرنسية
92
+ :cpp: الكرييولي واللغات المبسطة الأخرى للتفاهم بين الشعوب على أساس البرتغالية
93
+ :cr: الكرى
94
+ :crh: التركية الكريمينية
95
+ :crp: الكرييولى و اللغات المبسطة الأخرى للتفاهم بين الشعوب - أخرى
96
+ :cs: التشيكية
97
+ :csb: الكاشبايان
98
+ :cu: سلافية كنسية
99
+ :cus: اللغة الكشيتيكية
100
+ :cv: التشفاش
101
+ :cy: الولزية
102
+ :da: الدانماركية
103
+ :dak: الداكوتا
104
+ :dar: الدارجوا
105
+ :day: الدياك
106
+ :de: الألمانية
107
+ :de-AT: الألمانية النمساوية
108
+ :de-CH: الألمانية العليا السويسرية
109
+ :del: الديلوير
110
+ :den: السلافية
111
+ :dgr: الدوجريب
112
+ :din: الدنكا
113
+ :doi: الدوجري
114
+ :dra: اللغة الدرافيدينية
115
+ :dsb: الصربية السفلى
116
+ :dua: الديولا
117
+ :dum: الهولندية الوسطى
118
+ :dv: المالديفية
119
+ :dyu: الدايلا
120
+ :dz: الزونخاية
121
+ :ee: الإيوي
122
+ :efi: الإفيك
123
+ :egy: المصرية القديمة
124
+ :eka: الإكاجك
125
+ :el: اليونانية
126
+ :elx: الإمايت
127
+ :en: الإنجليزية
128
+ :en-AU: الإنجليزية الأسترالية
129
+ :en-CA: الإنجليزية الكندية
130
+ :en-GB: الإنجليزية البريطانية
131
+ :en-US: الإنجليزية الولايات المتحدة
132
+ :enm: الإنجليزية الوسطى
133
+ :eo: الإسبرانتو
134
+ :es: الإسبانية
135
+ :es-419: إسبانية أمريكا اللاتينية
136
+ :es-ES: الإسبانية الأيبيرية
137
+ :et: الإستونية
138
+ :eu: لغة الباسك
139
+ :ewo: الإيوندو
140
+ :fa: الفارسية
141
+ :fan: الفانج
142
+ :fat: الفانتي
143
+ :ff: الفلة
144
+ :fi: الفنلندية
145
+ :fil: الفلبينية
146
+ :fiu: لغة فينو أجريانية
147
+ :fj: الفيجية
148
+ :fo: الفارويز
149
+ :fon: الفون
150
+ :fr: الفرنسية
151
+ :fr-CA: الفرنسية الكندية
152
+ :fr-CH: الفرنسية السويسرية
153
+ :frm: الفرنسية الوسطى
154
+ :fro: الفرنسية القديمة
155
+ :frr: الفريزينية الشمالية
156
+ :frs: الفريزينية الشرقية
157
+ :fur: الفريلايان
158
+ :fy: الفريزيان
159
+ :ga: الأيرلندية
160
+ :gaa: الجا
161
+ :gay: الجايو
162
+ :gba: الجبيا
163
+ :gd: الغيلية الأسكتلندية
164
+ :gem: اللغة الجرمانية
165
+ :gez: الجيز
166
+ :gil: لغة أهل جبل طارق
167
+ :gl: الجاليكية
168
+ :gmh: الألمانية العليا الوسطى
169
+ :gn: الجواراني
170
+ :goh: الألمانية العليا القديمة
171
+ :gon: الجندي
172
+ :gor: الجورونتالو
173
+ :got: القوطية
174
+ :grb: الجريبو
175
+ :grc: اليونانية القديمة
176
+ :gsw: الألمانية السويسرية
177
+ :gu: الغوجاراتية
178
+ :gv: المنكية
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: الإنترلينج
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
+ :kaj: الجو
224
+ :kam: الكامبا
225
+ :kar: الكاريين
226
+ :kaw: الكوي
227
+ :kbd: الكاباردايان
228
+ :kfo: الكورو
229
+ :kg: الكونغو
230
+ :kha: الكازية
231
+ :khi: اللغة الخويسانية
232
+ :kho: الخوتانيز
233
+ :ki: الكيكيو
234
+ :kj: الكيونياما
235
+ :kk: الكازاخستانية
236
+ :kl: الكالاليست
237
+ :km: الخميرية
238
+ :kmb: الكيمبندو
239
+ :kn: الكانادا
240
+ :ko: الكورية
241
+ :kok: الكونكانية
242
+ :kos: الكوسراين
243
+ :kpe: الكبيل
244
+ :kr: الكانيوري
245
+ :krc: الكاراتشاي-بالكار
246
+ :krl: الكريلية
247
+ :kro: الكرو
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: النوارية التقليدية
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
+ :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
+ :syc: سريانية تقليدية
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
+ :udm: الأدمرت
468
+ :ug: الأيغورية
469
+ :uga: اليجاريتيك
470
+ :uk: الأوكرانية
471
+ :umb: الأمبندو
472
+ :und: لغة غير معروفة
473
+ :ur: الأردية
474
+ :uz: الأوزباكية
475
+ :vai: الفاي
476
+ :ve: الفيندا
477
+ :vi: الفيتنامية
478
+ :vot: الفوتيك
479
+ :wa: الولونية
480
+ :wak: اللغة الواكاشانية
481
+ :wal: الوالامو
482
+ :war: الواراي
483
+ :was: الواشو
484
+ :wen: اللغة الصربية
485
+ :wo: الولوف
486
+ :xal: الكالميك
487
+ :xh: الخوسا
488
+ :yao: الياو
489
+ :yap: اليابيز
490
+ :yi: اليديشية
491
+ :yo: اليوروبية
492
+ :ypk: اللغة اليوبيكية
493
+ :yue: الكَنْتُونية
494
+ :za: الزهيونج
495
+ :zap: الزابوتيك
496
+ :zen: الزيناجا
497
+ :zh: الصينية
498
+ :znd: الزاند
499
+ :zu: الزولو
500
+ :zun: الزونية
501
+ :zxx: بدون محتوى لغوي