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,98 +1,99 @@
1
- fr:
2
- calendars:
3
- gregorian:
4
- days:
5
- format:
6
- abbreviated:
7
- fri: ven.
8
- mon: lun.
9
- sat: sam.
10
- sun: dim.
11
- thu: jeu.
12
- tue: mar.
13
- wed: mer.
14
- narrow: :"calendars.gregorian.days.stand-alone.narrow"
15
- wide:
16
- fri: vendredi
17
- mon: lundi
18
- sat: samedi
19
- sun: dimanche
20
- thu: jeudi
21
- tue: mardi
22
- wed: mercredi
23
- stand-alone:
24
- abbreviated:
25
- fri: ven.
26
- mon: lun.
27
- sat: sam.
28
- sun: dim.
29
- thu: jeu.
30
- tue: mar.
31
- wed: mer.
32
- narrow:
33
- fri: V
34
- mon: L
35
- sat: S
36
- sun: D
37
- thu: J
38
- tue: M
39
- wed: M
40
- wide: :"calendars.gregorian.days.format.wide"
41
- eras:
42
- abbr:
43
- 0: "av. J.-C."
44
- 1: "ap. J.-C."
45
- name:
46
- 0: "avant Jésus-Christ"
47
- 1: "après Jésus-Christ"
48
- narrow:
49
- 0: ""
50
- fields:
51
- day: jour
52
- dayperiod: cadran
53
- era: ère
54
- hour: heure
55
- minute: minute
56
- month: mois
57
- second: seconde
58
- week: semaine
59
- weekday: "jour de la semaine"
60
- year: année
61
- zone: "fuseau horaire"
62
- formats:
63
- date:
64
- default: :"calendars.gregorian.formats.date.medium"
65
- full:
66
- pattern: "EEEE d MMMM y"
67
- long:
68
- pattern: "d MMMM y"
69
- medium:
70
- pattern: "d MMM y"
71
- short:
72
- pattern: dd/MM/yy
73
- datetime:
74
- default: :"calendars.gregorian.formats.datetime.medium"
75
- full:
76
- pattern: "{{date}} {{time}}"
77
- long:
78
- pattern: "{{date}} {{time}}"
79
- medium:
80
- pattern: "{{date}} {{time}}"
81
- short:
82
- pattern: "{{date}} {{time}}"
83
- time:
84
- default: :"calendars.gregorian.formats.time.medium"
85
- full:
86
- pattern: "HH:mm:ss zzzz"
87
- long:
88
- pattern: "HH:mm:ss z"
89
- medium:
90
- pattern: "HH:mm:ss"
91
- short:
92
- pattern: "HH:mm"
93
- months:
94
- format:
95
- abbreviated:
1
+ ---
2
+ :fr:
3
+ :calendars:
4
+ :gregorian:
5
+ :days:
6
+ :format:
7
+ :abbreviated:
8
+ :fri: ven.
9
+ :mon: lun.
10
+ :sat: sam.
11
+ :sun: dim.
12
+ :thu: jeu.
13
+ :tue: mar.
14
+ :wed: mer.
15
+ :narrow: :calendars.gregorian.days.stand-alone.narrow
16
+ :wide:
17
+ :fri: vendredi
18
+ :mon: lundi
19
+ :sat: samedi
20
+ :sun: dimanche
21
+ :thu: jeudi
22
+ :tue: mardi
23
+ :wed: mercredi
24
+ :stand-alone:
25
+ :abbreviated:
26
+ :fri: ven.
27
+ :mon: lun.
28
+ :sat: sam.
29
+ :sun: dim.
30
+ :thu: jeu.
31
+ :tue: mar.
32
+ :wed: mer.
33
+ :narrow:
34
+ :fri: V
35
+ :mon: L
36
+ :sat: S
37
+ :sun: D
38
+ :thu: J
39
+ :tue: M
40
+ :wed: M
41
+ :wide: :calendars.gregorian.days.format.wide
42
+ :eras:
43
+ :abbr:
44
+ 0: av. J.-C.
45
+ 1: ap. J.-C.
46
+ :name:
47
+ 0: avant Jésus-Christ
48
+ 1: après Jésus-Christ
49
+ :narrow:
50
+ 0: ''
51
+ :fields:
52
+ :day: jour
53
+ :dayperiod: cadran
54
+ :era: ère
55
+ :hour: heure
56
+ :minute: minute
57
+ :month: mois
58
+ :second: seconde
59
+ :week: semaine
60
+ :weekday: jour de la semaine
61
+ :year: année
62
+ :zone: fuseau horaire
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: d MMM y
72
+ :short:
73
+ :pattern: dd/MM/yy
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: HH:mm:ss zzzz
88
+ :long:
89
+ :pattern: HH:mm:ss z
90
+ :medium:
91
+ :pattern: HH:mm:ss
92
+ :short:
93
+ :pattern: HH:mm
94
+ :months:
95
+ :format:
96
+ :abbreviated:
96
97
  1: janv.
97
98
  10: oct.
98
99
  11: nov.
@@ -105,8 +106,8 @@ fr:
105
106
  7: juil.
106
107
  8: août
107
108
  9: sept.
108
- narrow: :"calendars.gregorian.months.stand-alone.narrow"
109
- wide:
109
+ :narrow: :calendars.gregorian.months.stand-alone.narrow
110
+ :wide:
110
111
  1: janvier
111
112
  10: octobre
112
113
  11: novembre
@@ -119,8 +120,8 @@ fr:
119
120
  7: juillet
120
121
  8: août
121
122
  9: septembre
122
- stand-alone:
123
- abbreviated:
123
+ :stand-alone:
124
+ :abbreviated:
124
125
  1: janv.
125
126
  10: oct.
126
127
  11: nov.
@@ -130,7 +131,7 @@ fr:
130
131
  4: avr.
131
132
  7: juil.
132
133
  9: sept.
133
- narrow:
134
+ :narrow:
134
135
  1: J
135
136
  10: O
136
137
  11: N
@@ -143,58 +144,58 @@ fr:
143
144
  7: J
144
145
  8: A
145
146
  9: S
146
- wide: :"calendars.gregorian.months.format.wide"
147
- periods:
148
- format:
149
- abbreviated:
150
- afternoon: ap.m.
151
- am: AM
152
- pm: PM
153
- narrow:
154
- afternoon: ap.m.
155
- am: av.m.
156
- pm: p
157
- wide:
158
- afternoon: après-midi
159
- am: AM
160
- morning: matin
161
- night: soir
162
- noon: midi
163
- pm: PM
164
- stand-alone:
165
- abbreviated:
166
- afternoon: ap.m.
167
- am: av.m.
168
- pm: ap.m.
169
- wide:
170
- afternoon: après-midi
171
- am: avant-midi
172
- morning: matin
173
- night: soir
174
- noon: midi
175
- pm: après-midi
176
- quarters:
177
- format:
178
- abbreviated:
147
+ :wide: :calendars.gregorian.months.format.wide
148
+ :periods:
149
+ :format:
150
+ :abbreviated:
151
+ :afternoon: ap.m.
152
+ :am: AM
153
+ :pm: PM
154
+ :narrow:
155
+ :afternoon: ap.m.
156
+ :am: av.m.
157
+ :pm: p
158
+ :wide:
159
+ :afternoon: après-midi
160
+ :am: AM
161
+ :morning: matin
162
+ :night: soir
163
+ :noon: midi
164
+ :pm: PM
165
+ :stand-alone:
166
+ :abbreviated:
167
+ :afternoon: ap.m.
168
+ :am: av.m.
169
+ :pm: ap.m.
170
+ :wide:
171
+ :afternoon: après-midi
172
+ :am: avant-midi
173
+ :morning: matin
174
+ :night: soir
175
+ :noon: midi
176
+ :pm: après-midi
177
+ :quarters:
178
+ :format:
179
+ :abbreviated:
179
180
  1: T1
180
181
  2: T2
181
182
  3: T3
182
183
  4: T4
183
- narrow:
184
+ :narrow:
184
185
  1: T1
185
186
  2: T2
186
187
  3: T3
187
188
  4: T4
188
- wide:
189
- 1: "1er trimestre"
190
- 2: "2e trimestre"
191
- 3: "3e trimestre"
192
- 4: "4e trimestre"
193
- stand-alone:
194
- abbreviated: :"calendars.gregorian.quarters.format.abbreviated"
195
- narrow:
189
+ :wide:
190
+ 1: 1er trimestre
191
+ 2: 2e trimestre
192
+ 3: 3e trimestre
193
+ 4: 4e trimestre
194
+ :stand-alone:
195
+ :abbreviated: :calendars.gregorian.quarters.format.abbreviated
196
+ :narrow:
196
197
  1: T1
197
198
  2: T2
198
199
  3: T3
199
200
  4: T4
200
- wide: :"calendars.gregorian.quarters.format.wide"
201
+ :wide: :calendars.gregorian.quarters.format.wide
@@ -1,511 +1,512 @@
1
- fr:
2
- languages:
3
- aa: afar
4
- ab: abkhaze
5
- ace: aceh
6
- ach: acoli
7
- ada: adangme
8
- ady: adyghéen
9
- ae: avestique
10
- af: afrikaans
11
- afa: "langue afro-asiatique"
12
- afh: afrihili
13
- ain: aïnou
14
- ak: akan
15
- akk: akkadien
16
- ale: aléoute
17
- alg: "langue algonquienne"
18
- alt: "altaï du Sud"
19
- am: amharique
20
- an: aragonais
21
- ang: "ancien anglais"
22
- anp: angika
23
- apa: "langue apache"
24
- ar: arabe
25
- arc: araméen
26
- arn: araukan
27
- arp: arapaho
28
- art: "langue artificielle"
29
- arw: arawak
30
- as: assamais
31
- ast: asturien
32
- ath: "langue athapascane"
33
- aus: "langue australienne"
34
- av: avar
35
- awa: awadhi
36
- ay: aymara
37
- az: azéri
38
- ba: bachkir
39
- bad: banda
40
- bai: "langue bamilékée"
41
- bal: baloutchi
42
- ban: balinais
43
- bas: bassa
44
- bat: "langue balte"
45
- be: biélorusse
46
- bej: bedja
47
- bem: bemba
48
- ber: berbère
49
- bg: bulgare
50
- bh: bihari
51
- bho: bhojpuri
52
- bi: bichelamar
53
- bik: bikol
54
- bin: bini
55
- bla: siksika
56
- bm: bambara
57
- bn: bengali
58
- bnt: bantou
59
- bo: tibétain
60
- br: breton
61
- bra: braj
62
- bs: bosniaque
63
- btk: batak
64
- bua: bouriate
65
- bug: bugi
66
- byn: blin
67
- ca: catalan
68
- cad: caddo
69
- cai: "langue amérindienne centrale"
70
- car: caribe
71
- cau: "langue caucasienne"
72
- cch: atsam
73
- ce: tchétchène
74
- ceb: cebuano
75
- cel: "langue celtique"
76
- ch: chamorro
77
- chb: chibcha
78
- chg: tchaghataï
79
- chk: chuuk
80
- chm: mari
81
- chn: "jargon chinook"
82
- cho: choctaw
83
- chp: chipewyan
84
- chr: cherokee
85
- chy: cheyenne
86
- cmc: "langue chame"
87
- co: corse
88
- cop: copte
89
- cpe: "créole ou pidgin anglais"
90
- cpf: "créole ou pidgin français"
91
- cpp: "créole ou pidgin portugais"
92
- cr: cree
93
- crh: "turc de Crimée"
94
- crp: "créole ou pidgin"
95
- cs: tchèque
96
- csb: kachoube
97
- cu: "slavon d’église"
98
- cus: "langue couchitique"
99
- cv: tchouvache
100
- cy: gallois
101
- da: danois
102
- dak: dakota
103
- dar: dargwa
104
- day: dayak
105
- de: allemand
106
- de-AT: "allemand autrichien"
107
- de-CH: "allemand suisse"
108
- del: delaware
109
- den: slavey
110
- dgr: dogrib
111
- din: dinka
112
- doi: dogri
113
- dra: "langue dravidienne"
114
- dsb: bas-sorabe
115
- dua: douala
116
- dum: "moyen néerlandais"
117
- dv: maldivien
118
- dyu: dioula
119
- dz: dzongkha
120
- ee: éwé
121
- efi: efik
122
- egy: "égyptien ancien"
123
- eka: ekajuk
124
- el: grec
125
- elx: élamite
126
- en: anglais
127
- en-AU: "anglais australien"
128
- en-CA: "anglais canadien"
129
- en-GB: "anglais britannique"
130
- en-US: "anglais américain"
131
- enm: "moyen anglais"
132
- eo: espéranto
133
- es: espagnol
134
- es-419: "espagnol latino-américain"
135
- es-ES: "espagnol ibérique"
136
- et: estonien
137
- eu: basque
138
- ewo: éwondo
139
- fa: persan
140
- fan: fang
141
- fat: fanti
142
- ff: peul
143
- fi: finnois
144
- fil: filipino
145
- fiu: "langue finno-ougrienne"
146
- fj: fidjien
147
- fo: féroïen
148
- fon: fon
149
- fr: français
150
- fr-CA: "français canadien"
151
- fr-CH: "français suisse"
152
- frm: "moyen français"
153
- fro: "ancien français"
154
- frr: "frison du Nord"
155
- frs: "frison oriental"
156
- fur: frioulan
157
- fy: frison
158
- ga: irlandais
159
- gaa: ga
160
- gay: gayo
161
- gba: gbaya
162
- gd: "gaélique écossais"
163
- gem: "langue germanique"
164
- gez: guèze
165
- gil: gilbertais
166
- gl: galicien
167
- gmh: "moyen haut-allemand"
168
- gn: guarani
169
- goh: "ancien haut allemand"
170
- gon: gondi
171
- gor: gorontalo
172
- got: gotique
173
- grb: grebo
174
- grc: "grec ancien"
175
- gsw: alémanique
176
- gu: goudjarâtî
177
- gv: manx
178
- gwi: gwichʼin
179
- ha: haoussa
180
- hai: haida
181
- haw: hawaïen
182
- he: hébreu
183
- hi: hindi
184
- hil: hiligaynon
185
- him: himachali
186
- hit: hittite
187
- hmn: hmong
188
- ho: "hiri motu"
189
- hr: croate
190
- hsb: haut-sorabe
191
- ht: haïtien
192
- hu: hongrois
193
- hup: hupa
194
- hy: arménien
195
- hz: héréro
196
- ia: interlingua
197
- iba: iban
198
- id: indonésien
199
- ie: interlingue
200
- ig: igbo
201
- ii: "yi de Sichuan"
202
- ijo: ijo
203
- ik: inupiaq
204
- ilo: ilokano
205
- inc: "langue indo-aryenne"
206
- ine: "langue indo-européenne"
207
- inh: ingouche
208
- io: ido
209
- ira: "langue iranienne"
210
- iro: "langue iroquoienne"
211
- is: islandais
212
- it: italien
213
- iu: inuktitut
214
- ja: japonais
215
- jbo: lojban
216
- jpr: judéo-persan
217
- jrb: judéo-arabe
218
- jv: javanais
219
- ka: géorgien
220
- kaa: karakalpak
221
- kab: kabyle
222
- kac: kachin
223
- kaj: jju
224
- kam: kamba
225
- kar: karen
226
- kaw: kawi
227
- kbd: kabardin
228
- kcg: tyap
229
- kea: capverdien
230
- kfo: koro
231
- kg: kongo
232
- kha: khasi
233
- khi: "langue khoïsan"
234
- kho: khotanais
235
- ki: kikuyu
236
- kj: kuanyama
237
- kk: kazakh
238
- kl: groenlandais
239
- km: khmer
240
- kmb: kiMboundou
241
- kn: kannada
242
- ko: coréen
243
- kok: konkani
244
- kos: kusaien
245
- kpe: kpellé
246
- kr: kanouri
247
- krc: "karatchaï balkar"
248
- krl: carélien
249
- kro: krou
250
- kru: kurukh
251
- ks: kâshmîrî
252
- ku: kurde
253
- kum: koumyk
254
- kut: kutenai
255
- kv: komi
256
- kw: cornique
257
- ky: kirghize
258
- la: latin
259
- lad: ladino
260
- lah: lahnda
261
- lam: lamba
262
- lb: luxembourgeois
263
- lez: lezghien
264
- lg: ganda
265
- li: limbourgeois
266
- ln: lingala
267
- lo: lao
268
- lol: mongo
269
- loz: lozi
270
- lt: lituanien
271
- lu: luba-katanga
272
- lua: luba-lulua
273
- lui: luiseno
274
- lun: lunda
275
- luo: luo
276
- lus: lushai
277
- lv: letton
278
- mad: madurais
279
- mag: magahi
280
- mai: maithili
281
- mak: makassar
282
- man: mandingue
283
- map: malayo-polynésien
284
- mas: masai
285
- mdf: moksa
286
- mdr: mandar
287
- men: mendé
288
- mg: malgache
289
- mga: "moyen irlandais"
290
- mh: marshall
291
- mi: maori
292
- mic: micmac
293
- min: minangkabau
294
- mis: "langue diverse"
295
- mk: macédonien
296
- mkh: "langue mon-khmère"
297
- ml: malayalam
298
- mn: mongol
299
- mnc: mandchou
300
- mni: manipuri
301
- mno: "langue manobo"
302
- mo: moldave
303
- moh: mohawk
304
- mos: moré
305
- mr: marathe
306
- ms: malais
307
- mt: maltais
308
- mul: multilingue
309
- mun: "langue mounda"
310
- mus: creek
311
- mwl: mirandais
312
- mwr: marwarî
313
- my: birman
314
- myn: "langue maya"
315
- myv: erzya
316
- na: nauruan
317
- nah: nahuatl
318
- nai: "langue amérindienne du Nord"
319
- nap: napolitain
320
- nb: "norvégien bokmål"
321
- nd: "ndébélé du Nord"
322
- nds: bas-allemand
323
- ne: népalais
324
- new: newari
325
- ng: ndonga
326
- nia: nias
327
- nic: "langue nigéro-congolaise"
328
- niu: niué
329
- nl: néerlandais
330
- nl-BE: "néerlandais belge"
331
- nn: "norvégien nynorsk"
332
- "no": norvégien
333
- nog: nogaï
334
- non: "vieux norrois"
335
- nqo: n’ko
336
- nr: "ndébélé du Sud"
337
- nso: "sotho du Nord"
338
- nub: "langue nubienne"
339
- nv: navaho
340
- nwc: "newarî classique"
341
- ny: nyanja
342
- nym: nyamwezi
343
- nyn: nyankolé
344
- nyo: nyoro
345
- nzi: nzema
346
- oc: occitan
347
- oj: ojibwa
348
- om: oromo
349
- or: oriya
350
- os: ossète
351
- osa: osage
352
- ota: "turc ottoman"
353
- oto: "langue otomangue"
354
- pa: pendjabi
355
- paa: "langue papoue"
356
- pag: pangasinan
357
- pal: pahlavi
358
- pam: pampangan
359
- pap: papiamento
360
- pau: palau
361
- peo: "persan ancien"
362
- phi: "langue philippine"
363
- phn: phénicien
364
- pi: pali
365
- pl: polonais
366
- pon: pohnpei
367
- pra: "langues prâkrit"
368
- pro: "provençal ancien"
369
- ps: pashto
370
- pt: portugais
371
- pt-BR: "portugais brésilien"
372
- pt-PT: "portugais ibérique"
373
- qu: "langue quechua"
374
- raj: rajasthani
375
- rap: rapanui
376
- rar: rarotongien
377
- rm: rhéto-roman
378
- rn: roundi
379
- ro: roumain
380
- roa: "langue romane"
381
- rom: tzigane
382
- root: racine
383
- ru: russe
384
- rup: valaque
385
- rw: rwanda
386
- sa: sanskrit
387
- sad: sandawe
388
- sah: iakoute
389
- sai: "langue amérindienne du Sud"
390
- sal: "langue salishenne"
391
- sam: "araméen samaritain"
392
- sas: sasak
393
- sat: santal
394
- sc: sarde
395
- scn: sicilien
396
- sco: écossais
397
- sd: sindhî
398
- se: "sami du Nord"
399
- sel: selkoupe
400
- sem: "langue sémitique"
401
- sg: sangho
402
- sga: "ancien irlandais"
403
- sgn: "langue des signes"
404
- sh: serbo-croate
405
- shn: shan
406
- si: singhalais
407
- sid: sidamo
408
- sio: "langue sioux"
409
- sit: "langue sino-tibétaine"
410
- sk: slovaque
411
- sl: slovène
412
- sla: "langue slave"
413
- sm: samoan
414
- sma: "sami du Sud"
415
- smi: "langue samie"
416
- smj: "sami de Lule"
417
- smn: "sami d’Inari"
418
- sms: "sami skolt"
419
- sn: shona
420
- snk: soninké
421
- so: somali
422
- sog: sogdien
423
- son: songhai
424
- sq: albanais
425
- sr: serbe
426
- srn: "sranan tongo"
427
- srr: sérère
428
- ss: swati
429
- ssa: "langue nilo-saharienne"
430
- st: sesotho
431
- su: soundanais
432
- suk: sukuma
433
- sus: soussou
434
- sux: sumérien
435
- sv: suédois
436
- sw: swahili
437
- swb: comorien
438
- syc: "syriaque classique"
439
- syr: syriaque
440
- ta: tamoul
441
- tai: "langue taï"
442
- te: télougou
443
- tem: temne
444
- ter: tereno
445
- tet: tetum
446
- tg: tadjik
447
- th: thaï
448
- ti: tigrigna
449
- tig: tigré
450
- tiv: tiv
451
- tk: turkmène
452
- tkl: tokelau
453
- tl: tagalog
454
- tlh: klingon
455
- tli: tlingit
456
- tmh: tamacheq
457
- tn: tswana
458
- to: tongan
459
- tog: "tonga nyasa"
460
- tpi: "tok pisin"
461
- tr: turc
462
- ts: tsonga
463
- tsi: tsimshian
464
- tt: tatar
465
- tum: tumbuka
466
- tup: "langue tupi"
467
- tut: "langue altaïque"
468
- tvl: tuvalu
469
- tw: twi
470
- ty: tahitien
471
- tyv: touva
472
- udm: oudmourte
473
- ug: ouïghour
474
- uga: ougaritique
475
- uk: ukrainien
476
- umb: umbundu
477
- und: indéterminé
478
- ur: ourdou
479
- uz: ouzbek
480
- vai: vaï
481
- ve: venda
482
- vi: vietnamien
483
- vo: volapuk
484
- vot: vote
485
- wa: wallon
486
- wak: "langues wakashennes"
487
- wal: walamo
488
- war: waray
489
- was: washo
490
- wen: "langue sorabe"
491
- wo: wolof
492
- xal: kalmouk
493
- xh: xhosa
494
- yao: yao
495
- yap: yapois
496
- yi: yiddish
497
- yo: yoruba
498
- ypk: "langues yupik"
499
- yue: cantonais
500
- za: zhuang
501
- zap: zapotèque
502
- zbl: "symboles Bliss"
503
- zen: zenaga
504
- zh: chinois
505
- zh-Hans: "chinois simplifié"
506
- zh-Hant: "chinois traditionnel"
507
- znd: zandé
508
- zu: zoulou
509
- zun: zuni
510
- zxx: "sans contenu linguistique"
511
- zza: zazaki
1
+ ---
2
+ :fr:
3
+ :languages:
4
+ :aa: afar
5
+ :ab: abkhaze
6
+ :ace: aceh
7
+ :ach: acoli
8
+ :ada: adangme
9
+ :ady: adyghéen
10
+ :ae: avestique
11
+ :af: afrikaans
12
+ :afa: langue afro-asiatique
13
+ :afh: afrihili
14
+ :ain: aïnou
15
+ :ak: akan
16
+ :akk: akkadien
17
+ :ale: aléoute
18
+ :alg: langue algonquienne
19
+ :alt: altaï du Sud
20
+ :am: amharique
21
+ :an: aragonais
22
+ :ang: ancien anglais
23
+ :anp: angika
24
+ :apa: langue apache
25
+ :ar: arabe
26
+ :arc: araméen
27
+ :arn: araukan
28
+ :arp: arapaho
29
+ :art: langue artificielle
30
+ :arw: arawak
31
+ :as: assamais
32
+ :ast: asturien
33
+ :ath: langue athapascane
34
+ :aus: langue australienne
35
+ :av: avar
36
+ :awa: awadhi
37
+ :ay: aymara
38
+ :az: azéri
39
+ :ba: bachkir
40
+ :bad: banda
41
+ :bai: langue bamilékée
42
+ :bal: baloutchi
43
+ :ban: balinais
44
+ :bas: bassa
45
+ :bat: langue balte
46
+ :be: biélorusse
47
+ :bej: bedja
48
+ :bem: bemba
49
+ :ber: berbère
50
+ :bg: bulgare
51
+ :bh: bihari
52
+ :bho: bhojpuri
53
+ :bi: bichelamar
54
+ :bik: bikol
55
+ :bin: bini
56
+ :bla: siksika
57
+ :bm: bambara
58
+ :bn: bengali
59
+ :bnt: bantou
60
+ :bo: tibétain
61
+ :br: breton
62
+ :bra: braj
63
+ :bs: bosniaque
64
+ :btk: batak
65
+ :bua: bouriate
66
+ :bug: bugi
67
+ :byn: blin
68
+ :ca: catalan
69
+ :cad: caddo
70
+ :cai: langue amérindienne centrale
71
+ :car: caribe
72
+ :cau: langue caucasienne
73
+ :cch: atsam
74
+ :ce: tchétchène
75
+ :ceb: cebuano
76
+ :cel: langue celtique
77
+ :ch: chamorro
78
+ :chb: chibcha
79
+ :chg: tchaghataï
80
+ :chk: chuuk
81
+ :chm: mari
82
+ :chn: jargon chinook
83
+ :cho: choctaw
84
+ :chp: chipewyan
85
+ :chr: cherokee
86
+ :chy: cheyenne
87
+ :cmc: langue chame
88
+ :co: corse
89
+ :cop: copte
90
+ :cpe: créole ou pidgin anglais
91
+ :cpf: créole ou pidgin français
92
+ :cpp: créole ou pidgin portugais
93
+ :cr: cree
94
+ :crh: turc de Crimée
95
+ :crp: créole ou pidgin
96
+ :cs: tchèque
97
+ :csb: kachoube
98
+ :cu: slavon d’église
99
+ :cus: langue couchitique
100
+ :cv: tchouvache
101
+ :cy: gallois
102
+ :da: danois
103
+ :dak: dakota
104
+ :dar: dargwa
105
+ :day: dayak
106
+ :de: allemand
107
+ :de-AT: allemand autrichien
108
+ :de-CH: allemand suisse
109
+ :del: delaware
110
+ :den: slavey
111
+ :dgr: dogrib
112
+ :din: dinka
113
+ :doi: dogri
114
+ :dra: langue dravidienne
115
+ :dsb: bas-sorabe
116
+ :dua: douala
117
+ :dum: moyen néerlandais
118
+ :dv: maldivien
119
+ :dyu: dioula
120
+ :dz: dzongkha
121
+ :ee: éwé
122
+ :efi: efik
123
+ :egy: égyptien ancien
124
+ :eka: ekajuk
125
+ :el: grec
126
+ :elx: élamite
127
+ :en: anglais
128
+ :en-AU: anglais australien
129
+ :en-CA: anglais canadien
130
+ :en-GB: anglais britannique
131
+ :en-US: anglais américain
132
+ :enm: moyen anglais
133
+ :eo: espéranto
134
+ :es: espagnol
135
+ :es-419: espagnol latino-américain
136
+ :es-ES: espagnol ibérique
137
+ :et: estonien
138
+ :eu: basque
139
+ :ewo: éwondo
140
+ :fa: persan
141
+ :fan: fang
142
+ :fat: fanti
143
+ :ff: peul
144
+ :fi: finnois
145
+ :fil: filipino
146
+ :fiu: langue finno-ougrienne
147
+ :fj: fidjien
148
+ :fo: féroïen
149
+ :fon: fon
150
+ :fr: français
151
+ :fr-CA: français canadien
152
+ :fr-CH: français suisse
153
+ :frm: moyen français
154
+ :fro: ancien français
155
+ :frr: frison du Nord
156
+ :frs: frison oriental
157
+ :fur: frioulan
158
+ :fy: frison
159
+ :ga: irlandais
160
+ :gaa: ga
161
+ :gay: gayo
162
+ :gba: gbaya
163
+ :gd: gaélique écossais
164
+ :gem: langue germanique
165
+ :gez: guèze
166
+ :gil: gilbertais
167
+ :gl: galicien
168
+ :gmh: moyen haut-allemand
169
+ :gn: guarani
170
+ :goh: ancien haut allemand
171
+ :gon: gondi
172
+ :gor: gorontalo
173
+ :got: gotique
174
+ :grb: grebo
175
+ :grc: grec ancien
176
+ :gsw: alémanique
177
+ :gu: goudjarâtî
178
+ :gv: manx
179
+ :gwi: gwichʼin
180
+ :ha: haoussa
181
+ :hai: haida
182
+ :haw: hawaïen
183
+ :he: hébreu
184
+ :hi: hindi
185
+ :hil: hiligaynon
186
+ :him: himachali
187
+ :hit: hittite
188
+ :hmn: hmong
189
+ :ho: hiri motu
190
+ :hr: croate
191
+ :hsb: haut-sorabe
192
+ :ht: haïtien
193
+ :hu: hongrois
194
+ :hup: hupa
195
+ :hy: arménien
196
+ :hz: héréro
197
+ :ia: interlingua
198
+ :iba: iban
199
+ :id: indonésien
200
+ :ie: interlingue
201
+ :ig: igbo
202
+ :ii: yi de Sichuan
203
+ :ijo: ijo
204
+ :ik: inupiaq
205
+ :ilo: ilokano
206
+ :inc: langue indo-aryenne
207
+ :ine: langue indo-européenne
208
+ :inh: ingouche
209
+ :io: ido
210
+ :ira: langue iranienne
211
+ :iro: langue iroquoienne
212
+ :is: islandais
213
+ :it: italien
214
+ :iu: inuktitut
215
+ :ja: japonais
216
+ :jbo: lojban
217
+ :jpr: judéo-persan
218
+ :jrb: judéo-arabe
219
+ :jv: javanais
220
+ :ka: géorgien
221
+ :kaa: karakalpak
222
+ :kab: kabyle
223
+ :kac: kachin
224
+ :kaj: jju
225
+ :kam: kamba
226
+ :kar: karen
227
+ :kaw: kawi
228
+ :kbd: kabardin
229
+ :kcg: tyap
230
+ :kea: capverdien
231
+ :kfo: koro
232
+ :kg: kongo
233
+ :kha: khasi
234
+ :khi: langue khoïsan
235
+ :kho: khotanais
236
+ :ki: kikuyu
237
+ :kj: kuanyama
238
+ :kk: kazakh
239
+ :kl: groenlandais
240
+ :km: khmer
241
+ :kmb: kiMboundou
242
+ :kn: kannada
243
+ :ko: coréen
244
+ :kok: konkani
245
+ :kos: kusaien
246
+ :kpe: kpellé
247
+ :kr: kanouri
248
+ :krc: karatchaï balkar
249
+ :krl: carélien
250
+ :kro: krou
251
+ :kru: kurukh
252
+ :ks: kâshmîrî
253
+ :ku: kurde
254
+ :kum: koumyk
255
+ :kut: kutenai
256
+ :kv: komi
257
+ :kw: cornique
258
+ :ky: kirghize
259
+ :la: latin
260
+ :lad: ladino
261
+ :lah: lahnda
262
+ :lam: lamba
263
+ :lb: luxembourgeois
264
+ :lez: lezghien
265
+ :lg: ganda
266
+ :li: limbourgeois
267
+ :ln: lingala
268
+ :lo: lao
269
+ :lol: mongo
270
+ :loz: lozi
271
+ :lt: lituanien
272
+ :lu: luba-katanga
273
+ :lua: luba-lulua
274
+ :lui: luiseno
275
+ :lun: lunda
276
+ :luo: luo
277
+ :lus: lushai
278
+ :lv: letton
279
+ :mad: madurais
280
+ :mag: magahi
281
+ :mai: maithili
282
+ :mak: makassar
283
+ :man: mandingue
284
+ :map: malayo-polynésien
285
+ :mas: masai
286
+ :mdf: moksa
287
+ :mdr: mandar
288
+ :men: mendé
289
+ :mg: malgache
290
+ :mga: moyen irlandais
291
+ :mh: marshall
292
+ :mi: maori
293
+ :mic: micmac
294
+ :min: minangkabau
295
+ :mis: langue diverse
296
+ :mk: macédonien
297
+ :mkh: langue mon-khmère
298
+ :ml: malayalam
299
+ :mn: mongol
300
+ :mnc: mandchou
301
+ :mni: manipuri
302
+ :mno: langue manobo
303
+ :mo: moldave
304
+ :moh: mohawk
305
+ :mos: moré
306
+ :mr: marathe
307
+ :ms: malais
308
+ :mt: maltais
309
+ :mul: multilingue
310
+ :mun: langue mounda
311
+ :mus: creek
312
+ :mwl: mirandais
313
+ :mwr: marwarî
314
+ :my: birman
315
+ :myn: langue maya
316
+ :myv: erzya
317
+ :na: nauruan
318
+ :nah: nahuatl
319
+ :nai: langue amérindienne du Nord
320
+ :nap: napolitain
321
+ :nb: norvégien bokmål
322
+ :nd: ndébélé du Nord
323
+ :nds: bas-allemand
324
+ :ne: népalais
325
+ :new: newari
326
+ :ng: ndonga
327
+ :nia: nias
328
+ :nic: langue nigéro-congolaise
329
+ :niu: niué
330
+ :nl: néerlandais
331
+ :nl-BE: néerlandais belge
332
+ :nn: norvégien nynorsk
333
+ :no: norvégien
334
+ :nog: nogaï
335
+ :non: vieux norrois
336
+ :nqo: n’ko
337
+ :nr: ndébélé du Sud
338
+ :nso: sotho du Nord
339
+ :nub: langue nubienne
340
+ :nv: navaho
341
+ :nwc: newarî classique
342
+ :ny: nyanja
343
+ :nym: nyamwezi
344
+ :nyn: nyankolé
345
+ :nyo: nyoro
346
+ :nzi: nzema
347
+ :oc: occitan
348
+ :oj: ojibwa
349
+ :om: oromo
350
+ :or: oriya
351
+ :os: ossète
352
+ :osa: osage
353
+ :ota: turc ottoman
354
+ :oto: langue otomangue
355
+ :pa: pendjabi
356
+ :paa: langue papoue
357
+ :pag: pangasinan
358
+ :pal: pahlavi
359
+ :pam: pampangan
360
+ :pap: papiamento
361
+ :pau: palau
362
+ :peo: persan ancien
363
+ :phi: langue philippine
364
+ :phn: phénicien
365
+ :pi: pali
366
+ :pl: polonais
367
+ :pon: pohnpei
368
+ :pra: langues prâkrit
369
+ :pro: provençal ancien
370
+ :ps: pashto
371
+ :pt: portugais
372
+ :pt-BR: portugais brésilien
373
+ :pt-PT: portugais ibérique
374
+ :qu: langue quechua
375
+ :raj: rajasthani
376
+ :rap: rapanui
377
+ :rar: rarotongien
378
+ :rm: rhéto-roman
379
+ :rn: roundi
380
+ :ro: roumain
381
+ :roa: langue romane
382
+ :rom: tzigane
383
+ :root: racine
384
+ :ru: russe
385
+ :rup: valaque
386
+ :rw: rwanda
387
+ :sa: sanskrit
388
+ :sad: sandawe
389
+ :sah: iakoute
390
+ :sai: langue amérindienne du Sud
391
+ :sal: langue salishenne
392
+ :sam: araméen samaritain
393
+ :sas: sasak
394
+ :sat: santal
395
+ :sc: sarde
396
+ :scn: sicilien
397
+ :sco: écossais
398
+ :sd: sindhî
399
+ :se: sami du Nord
400
+ :sel: selkoupe
401
+ :sem: langue sémitique
402
+ :sg: sangho
403
+ :sga: ancien irlandais
404
+ :sgn: langue des signes
405
+ :sh: serbo-croate
406
+ :shn: shan
407
+ :si: singhalais
408
+ :sid: sidamo
409
+ :sio: langue sioux
410
+ :sit: langue sino-tibétaine
411
+ :sk: slovaque
412
+ :sl: slovène
413
+ :sla: langue slave
414
+ :sm: samoan
415
+ :sma: sami du Sud
416
+ :smi: langue samie
417
+ :smj: sami de Lule
418
+ :smn: sami d’Inari
419
+ :sms: sami skolt
420
+ :sn: shona
421
+ :snk: soninké
422
+ :so: somali
423
+ :sog: sogdien
424
+ :son: songhai
425
+ :sq: albanais
426
+ :sr: serbe
427
+ :srn: sranan tongo
428
+ :srr: sérère
429
+ :ss: swati
430
+ :ssa: langue nilo-saharienne
431
+ :st: sesotho
432
+ :su: soundanais
433
+ :suk: sukuma
434
+ :sus: soussou
435
+ :sux: sumérien
436
+ :sv: suédois
437
+ :sw: swahili
438
+ :swb: comorien
439
+ :syc: syriaque classique
440
+ :syr: syriaque
441
+ :ta: tamoul
442
+ :tai: langue taï
443
+ :te: télougou
444
+ :tem: temne
445
+ :ter: tereno
446
+ :tet: tetum
447
+ :tg: tadjik
448
+ :th: thaï
449
+ :ti: tigrigna
450
+ :tig: tigré
451
+ :tiv: tiv
452
+ :tk: turkmène
453
+ :tkl: tokelau
454
+ :tl: tagalog
455
+ :tlh: klingon
456
+ :tli: tlingit
457
+ :tmh: tamacheq
458
+ :tn: tswana
459
+ :to: tongan
460
+ :tog: tonga nyasa
461
+ :tpi: tok pisin
462
+ :tr: turc
463
+ :ts: tsonga
464
+ :tsi: tsimshian
465
+ :tt: tatar
466
+ :tum: tumbuka
467
+ :tup: langue tupi
468
+ :tut: langue altaïque
469
+ :tvl: tuvalu
470
+ :tw: twi
471
+ :ty: tahitien
472
+ :tyv: touva
473
+ :udm: oudmourte
474
+ :ug: ouïghour
475
+ :uga: ougaritique
476
+ :uk: ukrainien
477
+ :umb: umbundu
478
+ :und: indéterminé
479
+ :ur: ourdou
480
+ :uz: ouzbek
481
+ :vai: vaï
482
+ :ve: venda
483
+ :vi: vietnamien
484
+ :vo: volapuk
485
+ :vot: vote
486
+ :wa: wallon
487
+ :wak: langues wakashennes
488
+ :wal: walamo
489
+ :war: waray
490
+ :was: washo
491
+ :wen: langue sorabe
492
+ :wo: wolof
493
+ :xal: kalmouk
494
+ :xh: xhosa
495
+ :yao: yao
496
+ :yap: yapois
497
+ :yi: yiddish
498
+ :yo: yoruba
499
+ :ypk: langues yupik
500
+ :yue: cantonais
501
+ :za: zhuang
502
+ :zap: zapotèque
503
+ :zbl: symboles Bliss
504
+ :zen: zenaga
505
+ :zh: chinois
506
+ :zh-Hans: chinois simplifié
507
+ :zh-Hant: chinois traditionnel
508
+ :znd: zandé
509
+ :zu: zoulou
510
+ :zun: zuni
511
+ :zxx: sans contenu linguistique
512
+ :zza: zazaki