twitter_cldr 3.6.0 → 4.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1258) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +2 -1
  3. data/History.txt +7 -0
  4. data/README.md +133 -6
  5. data/Rakefile +23 -4
  6. data/lib/twitter_cldr.rb +3 -0
  7. data/lib/twitter_cldr/collation.rb +1 -2
  8. data/lib/twitter_cldr/collation/collator.rb +9 -1
  9. data/lib/twitter_cldr/collation/trie_builder.rb +2 -2
  10. data/lib/twitter_cldr/collation/trie_with_fallback.rb +2 -2
  11. data/lib/twitter_cldr/localized.rb +2 -2
  12. data/lib/twitter_cldr/localized/localized_date.rb +3 -15
  13. data/lib/twitter_cldr/localized/localized_string.rb +26 -5
  14. data/lib/twitter_cldr/normalization.rb +1 -1
  15. data/lib/twitter_cldr/resources.rb +2 -0
  16. data/lib/twitter_cldr/resources/hyphenation_importer.rb +115 -0
  17. data/lib/twitter_cldr/resources/loader.rb +17 -5
  18. data/lib/twitter_cldr/resources/locales_resources_importer.rb +3 -2
  19. data/lib/twitter_cldr/resources/properties/indic_positional_category_property_importer.rb +1 -1
  20. data/lib/twitter_cldr/resources/properties/properties_importer.rb +2 -2
  21. data/lib/twitter_cldr/resources/rbnf_test_importer.rb +15 -9
  22. data/lib/twitter_cldr/resources/transform_test_importer.rb +137 -0
  23. data/lib/twitter_cldr/segmentation/break_iterator.rb +1 -1
  24. data/lib/twitter_cldr/shared.rb +1 -0
  25. data/lib/twitter_cldr/shared/hyphenator.rb +188 -0
  26. data/lib/twitter_cldr/shared/likely_subtags.rb +18 -2
  27. data/lib/twitter_cldr/shared/locale.rb +20 -10
  28. data/lib/twitter_cldr/transforms.rb +24 -0
  29. data/lib/twitter_cldr/transforms/comment_rule.rb +30 -0
  30. data/lib/twitter_cldr/transforms/conversion_rule_set.rb +155 -0
  31. data/lib/twitter_cldr/transforms/conversions.rb +16 -0
  32. data/lib/twitter_cldr/transforms/conversions/conversion_rule.rb +131 -0
  33. data/lib/twitter_cldr/transforms/conversions/parser.rb +113 -0
  34. data/lib/twitter_cldr/transforms/conversions/side.rb +117 -0
  35. data/lib/twitter_cldr/transforms/cursor.rb +39 -0
  36. data/lib/twitter_cldr/transforms/filters.rb +16 -0
  37. data/lib/twitter_cldr/transforms/filters/filter_rule.rb +29 -0
  38. data/lib/twitter_cldr/transforms/filters/null_filter.rb +26 -0
  39. data/lib/twitter_cldr/transforms/filters/regex_filter.rb +74 -0
  40. data/lib/twitter_cldr/transforms/rule.rb +121 -0
  41. data/lib/twitter_cldr/transforms/rule_match.rb +37 -0
  42. data/lib/twitter_cldr/transforms/rule_set.rb +95 -0
  43. data/lib/twitter_cldr/transforms/tokenizer.rb +41 -0
  44. data/lib/twitter_cldr/transforms/transform_id.rb +164 -0
  45. data/lib/twitter_cldr/transforms/transformer.rb +220 -0
  46. data/lib/twitter_cldr/transforms/transforms.rb +21 -0
  47. data/lib/twitter_cldr/transforms/transforms/break_internal_transform.rb +20 -0
  48. data/lib/twitter_cldr/transforms/transforms/casing_transform.rb +76 -0
  49. data/lib/twitter_cldr/transforms/transforms/named_transform.rb +45 -0
  50. data/lib/twitter_cldr/transforms/transforms/normalization_transform.rb +57 -0
  51. data/lib/twitter_cldr/transforms/transforms/null_transform.rb +30 -0
  52. data/lib/twitter_cldr/transforms/transforms/parser.rb +129 -0
  53. data/lib/twitter_cldr/transforms/transforms/transform_pair.rb +47 -0
  54. data/lib/twitter_cldr/transforms/transforms/transform_rule.rb +92 -0
  55. data/lib/twitter_cldr/transforms/transliterator.rb +62 -0
  56. data/lib/twitter_cldr/transforms/variable_rule.rb +77 -0
  57. data/lib/twitter_cldr/utils.rb +1 -0
  58. data/lib/twitter_cldr/utils/regexp_ast.rb +1 -0
  59. data/lib/twitter_cldr/utils/regexp_sampler.rb +4 -0
  60. data/lib/twitter_cldr/utils/script_detector.rb +4 -0
  61. data/lib/twitter_cldr/{collation → utils}/trie.rb +7 -2
  62. data/lib/twitter_cldr/version.rb +1 -1
  63. data/lib/twitter_cldr/versions.rb +3 -3
  64. data/resources/collation/tries/af.dump +0 -0
  65. data/resources/collation/tries/ar.dump +0 -0
  66. data/resources/collation/tries/be.dump +0 -0
  67. data/resources/collation/tries/bg.dump +0 -0
  68. data/resources/collation/tries/bn.dump +0 -0
  69. data/resources/collation/tries/ca.dump +0 -0
  70. data/resources/collation/tries/cs.dump +0 -0
  71. data/resources/collation/tries/cy.dump +0 -0
  72. data/resources/collation/tries/da.dump +0 -0
  73. data/resources/collation/tries/de-CH.dump +0 -0
  74. data/resources/collation/tries/de.dump +0 -0
  75. data/resources/collation/tries/default.dump +0 -0
  76. data/resources/collation/tries/el.dump +0 -0
  77. data/resources/collation/tries/en-150.dump +0 -0
  78. data/resources/collation/tries/en-AU.dump +0 -0
  79. data/resources/collation/tries/en-CA.dump +0 -0
  80. data/resources/collation/tries/en-GB.dump +0 -0
  81. data/resources/collation/tries/en-IE.dump +0 -0
  82. data/resources/collation/tries/en-SG.dump +0 -0
  83. data/resources/collation/tries/en-ZA.dump +0 -0
  84. data/resources/collation/tries/en.dump +0 -0
  85. data/resources/collation/tries/es-419.dump +0 -0
  86. data/resources/collation/tries/es-CO.dump +0 -0
  87. data/resources/collation/tries/es-MX.dump +0 -0
  88. data/resources/collation/tries/es-US.dump +0 -0
  89. data/resources/collation/tries/es.dump +0 -0
  90. data/resources/collation/tries/eu.dump +0 -0
  91. data/resources/collation/tries/fa.dump +0 -0
  92. data/resources/collation/tries/fi.dump +0 -0
  93. data/resources/collation/tries/fil.dump +0 -0
  94. data/resources/collation/tries/fr-BE.dump +0 -0
  95. data/resources/collation/tries/fr-CA.dump +0 -0
  96. data/resources/collation/tries/fr-CH.dump +0 -0
  97. data/resources/collation/tries/fr.dump +0 -0
  98. data/resources/collation/tries/ga.dump +0 -0
  99. data/resources/collation/tries/gl.dump +0 -0
  100. data/resources/collation/tries/gu.dump +0 -0
  101. data/resources/collation/tries/he.dump +0 -0
  102. data/resources/collation/tries/hi.dump +0 -0
  103. data/resources/collation/tries/hr.dump +0 -0
  104. data/resources/collation/tries/hu.dump +0 -0
  105. data/resources/collation/tries/id.dump +0 -0
  106. data/resources/collation/tries/is.dump +0 -0
  107. data/resources/collation/tries/it-CH.dump +0 -0
  108. data/resources/collation/tries/it.dump +0 -0
  109. data/resources/collation/tries/ja.dump +0 -0
  110. data/resources/collation/tries/kn.dump +0 -0
  111. data/resources/collation/tries/ko.dump +0 -0
  112. data/resources/collation/tries/lv.dump +0 -0
  113. data/resources/collation/tries/mr.dump +0 -0
  114. data/resources/collation/tries/ms.dump +0 -0
  115. data/resources/collation/tries/nb.dump +0 -0
  116. data/resources/collation/tries/nl.dump +0 -0
  117. data/resources/collation/tries/pl.dump +0 -0
  118. data/resources/collation/tries/pt.dump +0 -0
  119. data/resources/collation/tries/ro.dump +0 -0
  120. data/resources/collation/tries/ru.dump +0 -0
  121. data/resources/collation/tries/sk.dump +0 -0
  122. data/resources/collation/tries/sq.dump +0 -0
  123. data/resources/collation/tries/sr.dump +0 -0
  124. data/resources/collation/tries/sv.dump +0 -0
  125. data/resources/collation/tries/ta.dump +0 -0
  126. data/resources/collation/tries/th.dump +0 -0
  127. data/resources/collation/tries/tr.dump +0 -0
  128. data/resources/collation/tries/uk.dump +0 -0
  129. data/resources/collation/tries/ur.dump +0 -0
  130. data/resources/collation/tries/vi.dump +0 -0
  131. data/resources/collation/tries/zh-Hant.dump +0 -0
  132. data/resources/collation/tries/zh.dump +0 -0
  133. data/resources/locales/af/calendars.yml +86 -44
  134. data/resources/locales/af/fields.yml +55 -26
  135. data/resources/locales/af/languages.yml +13 -4
  136. data/resources/locales/af/numbers.yml +49 -0
  137. data/resources/locales/af/territories.yml +12 -13
  138. data/resources/locales/af/units.yml +71 -6
  139. data/resources/locales/ar/calendars.yml +59 -4
  140. data/resources/locales/ar/fields.yml +276 -262
  141. data/resources/locales/ar/languages.yml +65 -41
  142. data/resources/locales/ar/lists.yml +8 -8
  143. data/resources/locales/ar/numbers.yml +135 -38
  144. data/resources/locales/ar/plurals.yml +3 -4
  145. data/resources/locales/ar/rbnf.yml +322 -0
  146. data/resources/locales/ar/territories.yml +15 -16
  147. data/resources/locales/ar/units.yml +380 -247
  148. data/resources/locales/be/calendars.yml +103 -29
  149. data/resources/locales/be/fields.yml +416 -1
  150. data/resources/locales/be/languages.yml +130 -10
  151. data/resources/locales/be/lists.yml +18 -3
  152. data/resources/locales/be/numbers.yml +200 -16
  153. data/resources/locales/be/plural_rules.yml +2 -1
  154. data/resources/locales/be/plurals.yml +9 -8
  155. data/resources/locales/be/territories.yml +23 -13
  156. data/resources/locales/be/units.yml +1212 -127
  157. data/resources/locales/bg/calendars.yml +65 -23
  158. data/resources/locales/bg/fields.yml +50 -2
  159. data/resources/locales/bg/languages.yml +13 -16
  160. data/resources/locales/bg/numbers.yml +51 -2
  161. data/resources/locales/bg/territories.yml +8 -9
  162. data/resources/locales/bg/units.yml +72 -7
  163. data/resources/locales/bn/calendars.yml +72 -23
  164. data/resources/locales/bn/fields.yml +37 -1
  165. data/resources/locales/bn/languages.yml +28 -22
  166. data/resources/locales/bn/numbers.yml +49 -0
  167. data/resources/locales/bn/plurals.yml +2 -2
  168. data/resources/locales/bn/territories.yml +6 -7
  169. data/resources/locales/bn/units.yml +108 -43
  170. data/resources/locales/ca/calendars.yml +87 -28
  171. data/resources/locales/ca/fields.yml +58 -10
  172. data/resources/locales/ca/languages.yml +61 -10
  173. data/resources/locales/ca/numbers.yml +49 -0
  174. data/resources/locales/ca/plurals.yml +2 -2
  175. data/resources/locales/ca/territories.yml +16 -17
  176. data/resources/locales/ca/units.yml +79 -12
  177. data/resources/locales/cs/calendars.yml +74 -19
  178. data/resources/locales/cs/fields.yml +48 -12
  179. data/resources/locales/cs/languages.yml +8 -3
  180. data/resources/locales/cs/numbers.yml +73 -0
  181. data/resources/locales/cs/plurals.yml +3 -3
  182. data/resources/locales/cs/territories.yml +1 -2
  183. data/resources/locales/cs/units.yml +129 -15
  184. data/resources/locales/cy/calendars.yml +47 -22
  185. data/resources/locales/cy/fields.yml +390 -52
  186. data/resources/locales/cy/languages.yml +83 -8
  187. data/resources/locales/cy/lists.yml +6 -1
  188. data/resources/locales/cy/numbers.yml +99 -2
  189. data/resources/locales/cy/territories.yml +4 -5
  190. data/resources/locales/cy/units.yml +1401 -71
  191. data/resources/locales/da/calendars.yml +67 -20
  192. data/resources/locales/da/fields.yml +59 -11
  193. data/resources/locales/da/languages.yml +10 -4
  194. data/resources/locales/da/numbers.yml +55 -6
  195. data/resources/locales/da/plurals.yml +2 -2
  196. data/resources/locales/da/rbnf.yml +353 -46
  197. data/resources/locales/da/territories.yml +8 -9
  198. data/resources/locales/da/units.yml +84 -16
  199. data/resources/locales/de-CH/calendars.yml +59 -15
  200. data/resources/locales/de-CH/fields.yml +36 -0
  201. data/resources/locales/de-CH/languages.yml +27 -23
  202. data/resources/locales/de-CH/numbers.yml +62 -13
  203. data/resources/locales/de-CH/plurals.yml +2 -2
  204. data/resources/locales/de-CH/rbnf.yml +532 -1
  205. data/resources/locales/de-CH/territories.yml +7 -8
  206. data/resources/locales/de-CH/units.yml +85 -16
  207. data/resources/locales/de/calendars.yml +59 -15
  208. data/resources/locales/de/fields.yml +36 -0
  209. data/resources/locales/de/languages.yml +27 -23
  210. data/resources/locales/de/numbers.yml +61 -12
  211. data/resources/locales/de/plurals.yml +2 -2
  212. data/resources/locales/de/territories.yml +8 -9
  213. data/resources/locales/de/units.yml +85 -16
  214. data/resources/locales/el/calendars.yml +54 -19
  215. data/resources/locales/el/fields.yml +69 -49
  216. data/resources/locales/el/languages.yml +12 -6
  217. data/resources/locales/el/lists.yml +6 -6
  218. data/resources/locales/el/numbers.yml +49 -0
  219. data/resources/locales/el/territories.yml +2 -3
  220. data/resources/locales/el/units.yml +81 -16
  221. data/resources/locales/en-150/calendars.yml +64 -26
  222. data/resources/locales/en-150/fields.yml +19 -12
  223. data/resources/locales/en-150/languages.yml +13 -8
  224. data/resources/locales/en-150/numbers.yml +49 -0
  225. data/resources/locales/en-150/plurals.yml +5 -5
  226. data/resources/locales/en-150/territories.yml +2 -3
  227. data/resources/locales/en-150/units.yml +125 -14
  228. data/resources/locales/en-AU/calendars.yml +117 -73
  229. data/resources/locales/en-AU/fields.yml +26 -19
  230. data/resources/locales/en-AU/languages.yml +13 -8
  231. data/resources/locales/en-AU/lists.yml +2 -2
  232. data/resources/locales/en-AU/numbers.yml +50 -1
  233. data/resources/locales/en-AU/plurals.yml +5 -5
  234. data/resources/locales/en-AU/territories.yml +6 -7
  235. data/resources/locales/en-AU/units.yml +171 -57
  236. data/resources/locales/en-CA/calendars.yml +58 -19
  237. data/resources/locales/en-CA/fields.yml +19 -12
  238. data/resources/locales/en-CA/languages.yml +13 -8
  239. data/resources/locales/en-CA/numbers.yml +49 -0
  240. data/resources/locales/en-CA/plurals.yml +5 -5
  241. data/resources/locales/en-CA/territories.yml +2 -3
  242. data/resources/locales/en-CA/units.yml +125 -14
  243. data/resources/locales/en-GB/calendars.yml +77 -40
  244. data/resources/locales/en-GB/fields.yml +77 -85
  245. data/resources/locales/en-GB/languages.yml +12 -7
  246. data/resources/locales/en-GB/lists.yml +1 -1
  247. data/resources/locales/en-GB/numbers.yml +49 -0
  248. data/resources/locales/en-GB/plurals.yml +5 -5
  249. data/resources/locales/en-GB/territories.yml +14 -15
  250. data/resources/locales/en-GB/units.yml +186 -75
  251. data/resources/locales/en-IE/calendars.yml +55 -17
  252. data/resources/locales/en-IE/fields.yml +19 -12
  253. data/resources/locales/en-IE/languages.yml +13 -8
  254. data/resources/locales/en-IE/numbers.yml +49 -0
  255. data/resources/locales/en-IE/plurals.yml +5 -5
  256. data/resources/locales/en-IE/territories.yml +2 -3
  257. data/resources/locales/en-IE/units.yml +126 -15
  258. data/resources/locales/en-SG/calendars.yml +52 -14
  259. data/resources/locales/en-SG/fields.yml +19 -12
  260. data/resources/locales/en-SG/languages.yml +13 -8
  261. data/resources/locales/en-SG/numbers.yml +49 -0
  262. data/resources/locales/en-SG/plurals.yml +5 -5
  263. data/resources/locales/en-SG/territories.yml +2 -3
  264. data/resources/locales/en-SG/units.yml +125 -14
  265. data/resources/locales/en-ZA/calendars.yml +54 -16
  266. data/resources/locales/en-ZA/fields.yml +19 -12
  267. data/resources/locales/en-ZA/languages.yml +13 -8
  268. data/resources/locales/en-ZA/numbers.yml +49 -0
  269. data/resources/locales/en-ZA/plurals.yml +5 -5
  270. data/resources/locales/en-ZA/territories.yml +2 -3
  271. data/resources/locales/en-ZA/units.yml +125 -14
  272. data/resources/locales/en/calendars.yml +51 -13
  273. data/resources/locales/en/fields.yml +19 -12
  274. data/resources/locales/en/languages.yml +13 -8
  275. data/resources/locales/en/numbers.yml +49 -0
  276. data/resources/locales/en/plurals.yml +5 -5
  277. data/resources/locales/en/rbnf.yml +37 -1
  278. data/resources/locales/en/territories.yml +2 -3
  279. data/resources/locales/en/units.yml +125 -14
  280. data/resources/locales/es-419/calendars.yml +159 -108
  281. data/resources/locales/es-419/fields.yml +122 -94
  282. data/resources/locales/es-419/languages.yml +22 -17
  283. data/resources/locales/es-419/lists.yml +4 -4
  284. data/resources/locales/es-419/numbers.yml +49 -0
  285. data/resources/locales/es-419/rbnf.yml +62 -1
  286. data/resources/locales/es-419/territories.yml +5 -6
  287. data/resources/locales/es-419/units.yml +193 -128
  288. data/resources/locales/es-CO/calendars.yml +128 -77
  289. data/resources/locales/es-CO/fields.yml +40 -12
  290. data/resources/locales/es-CO/languages.yml +22 -17
  291. data/resources/locales/es-CO/lists.yml +4 -4
  292. data/resources/locales/es-CO/numbers.yml +75 -26
  293. data/resources/locales/es-CO/territories.yml +5 -6
  294. data/resources/locales/es-CO/units.yml +167 -102
  295. data/resources/locales/es-MX/calendars.yml +119 -69
  296. data/resources/locales/es-MX/fields.yml +40 -12
  297. data/resources/locales/es-MX/languages.yml +26 -21
  298. data/resources/locales/es-MX/lists.yml +4 -4
  299. data/resources/locales/es-MX/numbers.yml +67 -18
  300. data/resources/locales/es-MX/territories.yml +8 -9
  301. data/resources/locales/es-MX/units.yml +160 -95
  302. data/resources/locales/es-US/calendars.yml +127 -77
  303. data/resources/locales/es-US/fields.yml +40 -12
  304. data/resources/locales/es-US/languages.yml +22 -17
  305. data/resources/locales/es-US/lists.yml +4 -4
  306. data/resources/locales/es-US/numbers.yml +73 -24
  307. data/resources/locales/es-US/territories.yml +5 -6
  308. data/resources/locales/es-US/units.yml +167 -102
  309. data/resources/locales/es/calendars.yml +124 -74
  310. data/resources/locales/es/fields.yml +40 -12
  311. data/resources/locales/es/languages.yml +22 -17
  312. data/resources/locales/es/lists.yml +4 -4
  313. data/resources/locales/es/numbers.yml +73 -24
  314. data/resources/locales/es/rbnf.yml +29 -14
  315. data/resources/locales/es/territories.yml +5 -6
  316. data/resources/locales/es/units.yml +171 -106
  317. data/resources/locales/eu/calendars.yml +18 -3
  318. data/resources/locales/eu/fields.yml +8 -0
  319. data/resources/locales/eu/languages.yml +1 -1
  320. data/resources/locales/eu/numbers.yml +49 -0
  321. data/resources/locales/eu/territories.yml +5 -6
  322. data/resources/locales/eu/units.yml +36 -6
  323. data/resources/locales/fa/calendars.yml +57 -14
  324. data/resources/locales/fa/fields.yml +64 -12
  325. data/resources/locales/fa/languages.yml +29 -17
  326. data/resources/locales/fa/numbers.yml +81 -32
  327. data/resources/locales/fa/plurals.yml +2 -2
  328. data/resources/locales/fa/territories.yml +11 -12
  329. data/resources/locales/fa/units.yml +144 -66
  330. data/resources/locales/fi/calendars.yml +55 -4
  331. data/resources/locales/fi/fields.yml +56 -4
  332. data/resources/locales/fi/languages.yml +8 -4
  333. data/resources/locales/fi/numbers.yml +49 -0
  334. data/resources/locales/fi/plurals.yml +2 -2
  335. data/resources/locales/fi/rbnf.yml +3649 -29
  336. data/resources/locales/fi/territories.yml +1 -2
  337. data/resources/locales/fi/units.yml +98 -12
  338. data/resources/locales/fil/calendars.yml +113 -60
  339. data/resources/locales/fil/fields.yml +78 -30
  340. data/resources/locales/fil/languages.yml +24 -12
  341. data/resources/locales/fil/lists.yml +4 -4
  342. data/resources/locales/fil/numbers.yml +61 -12
  343. data/resources/locales/fil/plurals.yml +4 -4
  344. data/resources/locales/fil/territories.yml +3 -4
  345. data/resources/locales/fil/units.yml +203 -138
  346. data/resources/locales/fr-BE/calendars.yml +103 -73
  347. data/resources/locales/fr-BE/fields.yml +32 -20
  348. data/resources/locales/fr-BE/languages.yml +12 -6
  349. data/resources/locales/fr-BE/numbers.yml +51 -2
  350. data/resources/locales/fr-BE/territories.yml +5 -6
  351. data/resources/locales/fr-BE/units.yml +100 -26
  352. data/resources/locales/fr-CA/calendars.yml +56 -26
  353. data/resources/locales/fr-CA/fields.yml +54 -42
  354. data/resources/locales/fr-CA/languages.yml +23 -17
  355. data/resources/locales/fr-CA/numbers.yml +54 -5
  356. data/resources/locales/fr-CA/territories.yml +4 -5
  357. data/resources/locales/fr-CA/units.yml +93 -19
  358. data/resources/locales/fr-CH/calendars.yml +103 -73
  359. data/resources/locales/fr-CH/fields.yml +32 -20
  360. data/resources/locales/fr-CH/languages.yml +12 -6
  361. data/resources/locales/fr-CH/numbers.yml +52 -3
  362. data/resources/locales/fr-CH/territories.yml +5 -6
  363. data/resources/locales/fr-CH/units.yml +100 -26
  364. data/resources/locales/fr/calendars.yml +103 -73
  365. data/resources/locales/fr/fields.yml +32 -20
  366. data/resources/locales/fr/languages.yml +12 -6
  367. data/resources/locales/fr/numbers.yml +51 -2
  368. data/resources/locales/fr/territories.yml +5 -6
  369. data/resources/locales/fr/units.yml +100 -26
  370. data/resources/locales/ga/calendars.yml +19 -4
  371. data/resources/locales/ga/fields.yml +82 -28
  372. data/resources/locales/ga/languages.yml +4 -3
  373. data/resources/locales/ga/numbers.yml +85 -0
  374. data/resources/locales/ga/plural_rules.yml +2 -1
  375. data/resources/locales/ga/plurals.yml +7 -5
  376. data/resources/locales/ga/territories.yml +0 -1
  377. data/resources/locales/ga/units.yml +140 -24
  378. data/resources/locales/gl/calendars.yml +60 -13
  379. data/resources/locales/gl/fields.yml +29 -0
  380. data/resources/locales/gl/languages.yml +42 -34
  381. data/resources/locales/gl/numbers.yml +50 -1
  382. data/resources/locales/gl/plurals.yml +2 -2
  383. data/resources/locales/gl/territories.yml +4 -5
  384. data/resources/locales/gl/units.yml +89 -24
  385. data/resources/locales/gu/calendars.yml +68 -25
  386. data/resources/locales/gu/fields.yml +55 -19
  387. data/resources/locales/gu/languages.yml +12 -7
  388. data/resources/locales/gu/lists.yml +8 -4
  389. data/resources/locales/gu/numbers.yml +97 -24
  390. data/resources/locales/gu/plurals.yml +2 -2
  391. data/resources/locales/gu/territories.yml +24 -25
  392. data/resources/locales/gu/units.yml +71 -6
  393. data/resources/locales/he/calendars.yml +42 -18
  394. data/resources/locales/he/languages.yml +9 -3
  395. data/resources/locales/he/numbers.yml +97 -24
  396. data/resources/locales/he/plurals.yml +3 -4
  397. data/resources/locales/he/rbnf.yml +4 -1
  398. data/resources/locales/he/territories.yml +7 -8
  399. data/resources/locales/he/units.yml +263 -164
  400. data/resources/locales/hi/calendars.yml +39 -3
  401. data/resources/locales/hi/fields.yml +12 -0
  402. data/resources/locales/hi/languages.yml +11 -5
  403. data/resources/locales/hi/numbers.yml +49 -0
  404. data/resources/locales/hi/plurals.yml +2 -2
  405. data/resources/locales/hi/territories.yml +0 -1
  406. data/resources/locales/hi/units.yml +75 -10
  407. data/resources/locales/hr/calendars.yml +46 -27
  408. data/resources/locales/hr/fields.yml +59 -11
  409. data/resources/locales/hr/languages.yml +8 -1
  410. data/resources/locales/hr/numbers.yml +61 -0
  411. data/resources/locales/hr/plurals.yml +4 -7
  412. data/resources/locales/hr/territories.yml +0 -1
  413. data/resources/locales/hr/units.yml +95 -13
  414. data/resources/locales/hu/calendars.yml +63 -2
  415. data/resources/locales/hu/fields.yml +48 -0
  416. data/resources/locales/hu/languages.yml +7 -1
  417. data/resources/locales/hu/numbers.yml +49 -0
  418. data/resources/locales/hu/territories.yml +3 -4
  419. data/resources/locales/hu/units.yml +73 -8
  420. data/resources/locales/id/calendars.yml +52 -2
  421. data/resources/locales/id/fields.yml +6 -6
  422. data/resources/locales/id/languages.yml +18 -21
  423. data/resources/locales/id/numbers.yml +37 -0
  424. data/resources/locales/id/rbnf.yml +4 -1
  425. data/resources/locales/id/territories.yml +2 -3
  426. data/resources/locales/id/units.yml +52 -4
  427. data/resources/locales/is/calendars.yml +53 -11
  428. data/resources/locales/is/fields.yml +61 -13
  429. data/resources/locales/is/languages.yml +10 -4
  430. data/resources/locales/is/numbers.yml +49 -0
  431. data/resources/locales/is/plurals.yml +2 -2
  432. data/resources/locales/is/territories.yml +4 -5
  433. data/resources/locales/is/units.yml +78 -12
  434. data/resources/locales/it-CH/calendars.yml +81 -31
  435. data/resources/locales/it-CH/fields.yml +22 -10
  436. data/resources/locales/it-CH/languages.yml +9 -5
  437. data/resources/locales/it-CH/lists.yml +4 -4
  438. data/resources/locales/it-CH/numbers.yml +61 -12
  439. data/resources/locales/it-CH/plurals.yml +2 -2
  440. data/resources/locales/it-CH/territories.yml +27 -28
  441. data/resources/locales/it-CH/units.yml +161 -96
  442. data/resources/locales/it/calendars.yml +67 -17
  443. data/resources/locales/it/fields.yml +22 -10
  444. data/resources/locales/it/languages.yml +9 -5
  445. data/resources/locales/it/lists.yml +4 -4
  446. data/resources/locales/it/numbers.yml +61 -12
  447. data/resources/locales/it/plurals.yml +2 -2
  448. data/resources/locales/it/rbnf.yml +3 -15
  449. data/resources/locales/it/territories.yml +27 -28
  450. data/resources/locales/it/units.yml +161 -96
  451. data/resources/locales/ja/calendars.yml +59 -2
  452. data/resources/locales/ja/fields.yml +36 -0
  453. data/resources/locales/ja/languages.yml +9 -6
  454. data/resources/locales/ja/numbers.yml +40 -3
  455. data/resources/locales/ja/territories.yml +1 -2
  456. data/resources/locales/ja/units.yml +57 -9
  457. data/resources/locales/kn/calendars.yml +56 -15
  458. data/resources/locales/kn/fields.yml +49 -1
  459. data/resources/locales/kn/languages.yml +6 -1
  460. data/resources/locales/kn/lists.yml +8 -4
  461. data/resources/locales/kn/numbers.yml +97 -24
  462. data/resources/locales/kn/plurals.yml +2 -2
  463. data/resources/locales/kn/territories.yml +0 -1
  464. data/resources/locales/kn/units.yml +83 -18
  465. data/resources/locales/ko/calendars.yml +61 -4
  466. data/resources/locales/ko/languages.yml +14 -21
  467. data/resources/locales/ko/numbers.yml +39 -2
  468. data/resources/locales/ko/territories.yml +29 -30
  469. data/resources/locales/ko/units.yml +58 -10
  470. data/resources/locales/lv/calendars.yml +58 -10
  471. data/resources/locales/lv/fields.yml +8 -8
  472. data/resources/locales/lv/languages.yml +8 -1
  473. data/resources/locales/lv/numbers.yml +62 -1
  474. data/resources/locales/lv/plurals.yml +4 -6
  475. data/resources/locales/lv/territories.yml +0 -1
  476. data/resources/locales/lv/units.yml +86 -8
  477. data/resources/locales/mr/calendars.yml +70 -11
  478. data/resources/locales/mr/fields.yml +97 -61
  479. data/resources/locales/mr/languages.yml +9 -3
  480. data/resources/locales/mr/lists.yml +8 -4
  481. data/resources/locales/mr/numbers.yml +97 -24
  482. data/resources/locales/mr/plurals.yml +2 -2
  483. data/resources/locales/mr/territories.yml +4 -5
  484. data/resources/locales/mr/units.yml +71 -6
  485. data/resources/locales/ms/calendars.yml +47 -6
  486. data/resources/locales/ms/fields.yml +48 -0
  487. data/resources/locales/ms/languages.yml +12 -4
  488. data/resources/locales/ms/numbers.yml +37 -0
  489. data/resources/locales/ms/rbnf.yml +2 -2
  490. data/resources/locales/ms/territories.yml +2 -3
  491. data/resources/locales/ms/units.yml +54 -6
  492. data/resources/locales/nb/calendars.yml +83 -38
  493. data/resources/locales/nb/fields.yml +89 -55
  494. data/resources/locales/nb/languages.yml +105 -8
  495. data/resources/locales/nb/numbers.yml +50 -1
  496. data/resources/locales/nb/rbnf.yml +762 -22
  497. data/resources/locales/nb/territories.yml +2 -3
  498. data/resources/locales/nb/units.yml +92 -19
  499. data/resources/locales/nl/calendars.yml +88 -52
  500. data/resources/locales/nl/fields.yml +62 -10
  501. data/resources/locales/nl/languages.yml +12 -9
  502. data/resources/locales/nl/lists.yml +1 -1
  503. data/resources/locales/nl/numbers.yml +50 -1
  504. data/resources/locales/nl/plurals.yml +2 -2
  505. data/resources/locales/nl/territories.yml +2 -3
  506. data/resources/locales/nl/units.yml +101 -30
  507. data/resources/locales/pl/calendars.yml +70 -31
  508. data/resources/locales/pl/fields.yml +12 -0
  509. data/resources/locales/pl/languages.yml +8 -5
  510. data/resources/locales/pl/numbers.yml +73 -0
  511. data/resources/locales/pl/plurals.yml +4 -8
  512. data/resources/locales/pl/rbnf.yml +965 -50
  513. data/resources/locales/pl/territories.yml +3 -4
  514. data/resources/locales/pl/units.yml +109 -10
  515. data/resources/locales/pt/calendars.yml +65 -23
  516. data/resources/locales/pt/fields.yml +76 -76
  517. data/resources/locales/pt/languages.yml +20 -13
  518. data/resources/locales/pt/numbers.yml +49 -0
  519. data/resources/locales/pt/plurals.yml +2 -2
  520. data/resources/locales/pt/rbnf.yml +1 -1
  521. data/resources/locales/pt/territories.yml +4 -5
  522. data/resources/locales/pt/units.yml +75 -10
  523. data/resources/locales/ro/calendars.yml +90 -50
  524. data/resources/locales/ro/fields.yml +15 -3
  525. data/resources/locales/ro/languages.yml +10 -4
  526. data/resources/locales/ro/numbers.yml +62 -1
  527. data/resources/locales/ro/plurals.yml +3 -4
  528. data/resources/locales/ro/territories.yml +4 -5
  529. data/resources/locales/ro/units.yml +100 -18
  530. data/resources/locales/ru/calendars.yml +88 -41
  531. data/resources/locales/ru/fields.yml +24 -12
  532. data/resources/locales/ru/languages.yml +13 -6
  533. data/resources/locales/ru/lists.yml +7 -7
  534. data/resources/locales/ru/numbers.yml +73 -0
  535. data/resources/locales/ru/plurals.yml +4 -8
  536. data/resources/locales/ru/rbnf.yml +3916 -8
  537. data/resources/locales/ru/territories.yml +6 -7
  538. data/resources/locales/ru/units.yml +127 -28
  539. data/resources/locales/sk/calendars.yml +97 -42
  540. data/resources/locales/sk/fields.yml +30 -18
  541. data/resources/locales/sk/languages.yml +20 -14
  542. data/resources/locales/sk/lists.yml +1 -1
  543. data/resources/locales/sk/numbers.yml +99 -26
  544. data/resources/locales/sk/plurals.yml +3 -3
  545. data/resources/locales/sk/territories.yml +1 -2
  546. data/resources/locales/sk/units.yml +114 -15
  547. data/resources/locales/sq/calendars.yml +66 -11
  548. data/resources/locales/sq/fields.yml +49 -49
  549. data/resources/locales/sq/languages.yml +48 -39
  550. data/resources/locales/sq/numbers.yml +49 -0
  551. data/resources/locales/sq/plurals.yml +2 -2
  552. data/resources/locales/sq/territories.yml +25 -25
  553. data/resources/locales/sq/units.yml +112 -47
  554. data/resources/locales/sr/calendars.yml +70 -21
  555. data/resources/locales/sr/fields.yml +26 -14
  556. data/resources/locales/sr/languages.yml +12 -6
  557. data/resources/locales/sr/numbers.yml +62 -1
  558. data/resources/locales/sr/plurals.yml +4 -7
  559. data/resources/locales/sr/territories.yml +2 -3
  560. data/resources/locales/sr/units.yml +99 -17
  561. data/resources/locales/sv/calendars.yml +110 -71
  562. data/resources/locales/sv/fields.yml +69 -21
  563. data/resources/locales/sv/languages.yml +35 -5
  564. data/resources/locales/sv/numbers.yml +51 -2
  565. data/resources/locales/sv/plurals.yml +4 -4
  566. data/resources/locales/sv/territories.yml +0 -1
  567. data/resources/locales/sv/units.yml +95 -9
  568. data/resources/locales/ta/calendars.yml +112 -47
  569. data/resources/locales/ta/fields.yml +145 -97
  570. data/resources/locales/ta/languages.yml +30 -26
  571. data/resources/locales/ta/numbers.yml +49 -0
  572. data/resources/locales/ta/territories.yml +31 -32
  573. data/resources/locales/ta/units.yml +90 -25
  574. data/resources/locales/th/calendars.yml +66 -6
  575. data/resources/locales/th/fields.yml +36 -0
  576. data/resources/locales/th/languages.yml +10 -3
  577. data/resources/locales/th/numbers.yml +37 -0
  578. data/resources/locales/th/rbnf.yml +2 -2
  579. data/resources/locales/th/territories.yml +0 -1
  580. data/resources/locales/th/units.yml +54 -6
  581. data/resources/locales/tr/calendars.yml +63 -2
  582. data/resources/locales/tr/fields.yml +28 -0
  583. data/resources/locales/tr/languages.yml +9 -4
  584. data/resources/locales/tr/numbers.yml +49 -0
  585. data/resources/locales/tr/rbnf.yml +9 -28
  586. data/resources/locales/tr/territories.yml +1 -2
  587. data/resources/locales/tr/units.yml +81 -16
  588. data/resources/locales/uk/calendars.yml +93 -61
  589. data/resources/locales/uk/fields.yml +44 -12
  590. data/resources/locales/uk/languages.yml +27 -6
  591. data/resources/locales/uk/numbers.yml +86 -13
  592. data/resources/locales/uk/plurals.yml +6 -10
  593. data/resources/locales/uk/territories.yml +3 -4
  594. data/resources/locales/uk/units.yml +122 -23
  595. data/resources/locales/ur/calendars.yml +58 -9
  596. data/resources/locales/ur/fields.yml +51 -19
  597. data/resources/locales/ur/languages.yml +23 -13
  598. data/resources/locales/ur/numbers.yml +49 -0
  599. data/resources/locales/ur/plurals.yml +2 -2
  600. data/resources/locales/ur/territories.yml +8 -9
  601. data/resources/locales/ur/units.yml +76 -11
  602. data/resources/locales/vi/calendars.yml +72 -23
  603. data/resources/locales/vi/fields.yml +65 -29
  604. data/resources/locales/vi/languages.yml +42 -3
  605. data/resources/locales/vi/numbers.yml +38 -1
  606. data/resources/locales/vi/territories.yml +7 -8
  607. data/resources/locales/vi/units.yml +58 -10
  608. data/resources/locales/zh-Hant/calendars.yml +64 -21
  609. data/resources/locales/zh-Hant/fields.yml +12 -0
  610. data/resources/locales/zh-Hant/languages.yml +13 -8
  611. data/resources/locales/zh-Hant/lists.yml +8 -8
  612. data/resources/locales/zh-Hant/numbers.yml +50 -13
  613. data/resources/locales/zh-Hant/territories.yml +11 -12
  614. data/resources/locales/zh-Hant/units.yml +204 -156
  615. data/resources/locales/zh/calendars.yml +69 -26
  616. data/resources/locales/zh/languages.yml +8 -1
  617. data/resources/locales/zh/numbers.yml +40 -3
  618. data/resources/locales/zh/territories.yml +2 -3
  619. data/resources/locales/zh/units.yml +71 -23
  620. data/resources/shared/aliases.yml +31 -0
  621. data/resources/shared/hyphenation/af-ZA.yml +3343 -0
  622. data/resources/shared/hyphenation/bg-BG.yml +5963 -0
  623. data/resources/shared/hyphenation/ca.yml +2310 -0
  624. data/resources/shared/hyphenation/cs-CZ.yml +3639 -0
  625. data/resources/shared/hyphenation/da-DK.yml +1148 -0
  626. data/resources/shared/hyphenation/de-AT.yml +11392 -0
  627. data/resources/shared/hyphenation/de-CH.yml +11392 -0
  628. data/resources/shared/hyphenation/de-DE.yml +11392 -0
  629. data/resources/shared/hyphenation/el-GR.yml +581 -0
  630. data/resources/shared/hyphenation/en-GB.yml +14064 -0
  631. data/resources/shared/hyphenation/en-US.yml +11132 -0
  632. data/resources/shared/hyphenation/es.yml +867 -0
  633. data/resources/shared/hyphenation/et-EE.yml +3694 -0
  634. data/resources/shared/hyphenation/fr.yml +2844 -0
  635. data/resources/shared/hyphenation/gl.yml +292 -0
  636. data/resources/shared/hyphenation/hr-HR.yml +1599 -0
  637. data/resources/shared/hyphenation/hu-HU.yml +96292 -0
  638. data/resources/shared/hyphenation/is.yml +7697 -0
  639. data/resources/shared/hyphenation/it-IT.yml +401 -0
  640. data/resources/shared/hyphenation/lt.yml +1549 -0
  641. data/resources/shared/hyphenation/lv-LV.yml +11902 -0
  642. data/resources/shared/hyphenation/nb-NO.yml +27144 -0
  643. data/resources/shared/hyphenation/nl-NL.yml +16259 -0
  644. data/resources/shared/hyphenation/nn-NO.yml +27144 -0
  645. data/resources/shared/hyphenation/pl-PL.yml +4826 -0
  646. data/resources/shared/hyphenation/pt-BR.yml +1249 -0
  647. data/resources/shared/hyphenation/pt-PT.yml +310 -0
  648. data/resources/shared/hyphenation/ro-RO.yml +5206 -0
  649. data/resources/shared/hyphenation/ru-RU.yml +3877 -0
  650. data/resources/shared/hyphenation/sk-SK.yml +2470 -0
  651. data/resources/shared/hyphenation/sl-SI.yml +1415 -0
  652. data/resources/shared/hyphenation/sr-Latn.yml +3414 -0
  653. data/resources/shared/hyphenation/sr.yml +3367 -0
  654. data/resources/shared/hyphenation/sv.yml +14956 -0
  655. data/resources/shared/hyphenation/te-IN.yml +75 -0
  656. data/resources/shared/hyphenation/uk-UA.yml +1656 -0
  657. data/resources/shared/hyphenation/zu-ZA.yml +133 -0
  658. data/resources/shared/language_codes_table.dump +0 -0
  659. data/resources/shared/likely_subtags.yml +61 -16
  660. data/resources/shared/numbering_systems.yml +45 -0
  661. data/resources/shared/postal_codes.yml +318 -309
  662. data/resources/shared/rbnf_root.yml +613 -273
  663. data/resources/shared/segments/segments_root.yml +4 -1
  664. data/resources/shared/territories_containment.yml +3 -3
  665. data/resources/shared/transforms/Amharic-Latin-BGN.yml +336 -0
  666. data/resources/shared/transforms/Amharic-Latin.yml +335 -0
  667. data/resources/shared/transforms/Any-Accents.yml +52 -0
  668. data/resources/shared/transforms/Any-Publishing.yml +22 -0
  669. data/resources/shared/transforms/Arabic-Latin-BGN.yml +122 -0
  670. data/resources/shared/transforms/Arabic-Latin.yml +109 -0
  671. data/resources/shared/transforms/Armenian-Latin-BGN.yml +133 -0
  672. data/resources/shared/transforms/Armenian-Latin.yml +132 -0
  673. data/resources/shared/transforms/Azerbaijani-Latin-BGN.yml +93 -0
  674. data/resources/shared/transforms/Azerbaijani-Latin.yml +92 -0
  675. data/resources/shared/transforms/Belarusian-Latin-BGN.yml +108 -0
  676. data/resources/shared/transforms/Belarusian-Latin.yml +107 -0
  677. data/resources/shared/transforms/Bengali-Devanagari.yml +13 -0
  678. data/resources/shared/transforms/Bengali-Gujarati.yml +13 -0
  679. data/resources/shared/transforms/Bengali-Gurmukhi.yml +13 -0
  680. data/resources/shared/transforms/Bengali-InterIndic.yml +100 -0
  681. data/resources/shared/transforms/Bengali-Kannada.yml +13 -0
  682. data/resources/shared/transforms/Bengali-Latin.yml +13 -0
  683. data/resources/shared/transforms/Bengali-Malayalam.yml +13 -0
  684. data/resources/shared/transforms/Bengali-Oriya.yml +13 -0
  685. data/resources/shared/transforms/Bengali-Tamil.yml +13 -0
  686. data/resources/shared/transforms/Bengali-Telugu.yml +13 -0
  687. data/resources/shared/transforms/Bulgarian-Latin-BGN.yml +99 -0
  688. data/resources/shared/transforms/Bulgarian-Latin.yml +98 -0
  689. data/resources/shared/transforms/Cyrillic-Latin.yml +128 -0
  690. data/resources/shared/transforms/Devanagari-Bengali.yml +13 -0
  691. data/resources/shared/transforms/Devanagari-Gujarati.yml +13 -0
  692. data/resources/shared/transforms/Devanagari-Gurmukhi.yml +13 -0
  693. data/resources/shared/transforms/Devanagari-InterIndic.yml +114 -0
  694. data/resources/shared/transforms/Devanagari-Kannada.yml +13 -0
  695. data/resources/shared/transforms/Devanagari-Latin.yml +13 -0
  696. data/resources/shared/transforms/Devanagari-Malayalam.yml +13 -0
  697. data/resources/shared/transforms/Devanagari-Oriya.yml +13 -0
  698. data/resources/shared/transforms/Devanagari-Tamil.yml +13 -0
  699. data/resources/shared/transforms/Devanagari-Telugu.yml +13 -0
  700. data/resources/shared/transforms/Fullwidth-Halfwidth.yml +260 -0
  701. data/resources/shared/transforms/Georgian-Latin-BGN.yml +44 -0
  702. data/resources/shared/transforms/Georgian-Latin.yml +43 -0
  703. data/resources/shared/transforms/Greek-Latin-BGN.yml +208 -0
  704. data/resources/shared/transforms/Greek-Latin-UNGEGN.yml +160 -0
  705. data/resources/shared/transforms/Greek-Latin.yml +206 -0
  706. data/resources/shared/transforms/Gujarati-Bengali.yml +13 -0
  707. data/resources/shared/transforms/Gujarati-Devanagari.yml +13 -0
  708. data/resources/shared/transforms/Gujarati-Gurmukhi.yml +13 -0
  709. data/resources/shared/transforms/Gujarati-InterIndic.yml +91 -0
  710. data/resources/shared/transforms/Gujarati-Kannada.yml +13 -0
  711. data/resources/shared/transforms/Gujarati-Latin.yml +13 -0
  712. data/resources/shared/transforms/Gujarati-Malayalam.yml +13 -0
  713. data/resources/shared/transforms/Gujarati-Oriya.yml +13 -0
  714. data/resources/shared/transforms/Gujarati-Tamil.yml +13 -0
  715. data/resources/shared/transforms/Gujarati-Telugu.yml +13 -0
  716. data/resources/shared/transforms/Gurmukhi-Bengali.yml +13 -0
  717. data/resources/shared/transforms/Gurmukhi-Devanagari.yml +13 -0
  718. data/resources/shared/transforms/Gurmukhi-Gujarati.yml +13 -0
  719. data/resources/shared/transforms/Gurmukhi-InterIndic.yml +84 -0
  720. data/resources/shared/transforms/Gurmukhi-Kannada.yml +13 -0
  721. data/resources/shared/transforms/Gurmukhi-Latin.yml +13 -0
  722. data/resources/shared/transforms/Gurmukhi-Malayalam.yml +13 -0
  723. data/resources/shared/transforms/Gurmukhi-Oriya.yml +13 -0
  724. data/resources/shared/transforms/Gurmukhi-Tamil.yml +13 -0
  725. data/resources/shared/transforms/Gurmukhi-Telugu.yml +13 -0
  726. data/resources/shared/transforms/Han-Latin-Names.yml +53 -0
  727. data/resources/shared/transforms/Han-Latin.yml +1606 -0
  728. data/resources/shared/transforms/Han-Spacedhan.yml +17 -0
  729. data/resources/shared/transforms/Hangul-Latin.yml +12 -0
  730. data/resources/shared/transforms/Hebrew-Latin-BGN.yml +62 -0
  731. data/resources/shared/transforms/Hebrew-Latin.yml +72 -0
  732. data/resources/shared/transforms/Hiragana-Katakana.yml +114 -0
  733. data/resources/shared/transforms/Hiragana-Latin.yml +15 -0
  734. data/resources/shared/transforms/IPA-XSampa.yml +176 -0
  735. data/resources/shared/transforms/InterIndic-Bengali.yml +137 -0
  736. data/resources/shared/transforms/InterIndic-Devanagari.yml +149 -0
  737. data/resources/shared/transforms/InterIndic-Gujarati.yml +137 -0
  738. data/resources/shared/transforms/InterIndic-Gurmukhi.yml +141 -0
  739. data/resources/shared/transforms/InterIndic-Kannada.yml +139 -0
  740. data/resources/shared/transforms/InterIndic-Latin.yml +461 -0
  741. data/resources/shared/transforms/InterIndic-Malayalam.yml +139 -0
  742. data/resources/shared/transforms/InterIndic-Oriya.yml +137 -0
  743. data/resources/shared/transforms/InterIndic-Tamil.yml +138 -0
  744. data/resources/shared/transforms/InterIndic-Telugu.yml +138 -0
  745. data/resources/shared/transforms/Jamo-Latin.yml +12 -0
  746. data/resources/shared/transforms/JapaneseKana-Latin.yml +309 -0
  747. data/resources/shared/transforms/Kannada-Bengali.yml +13 -0
  748. data/resources/shared/transforms/Kannada-Devanagari.yml +13 -0
  749. data/resources/shared/transforms/Kannada-Gujarati.yml +13 -0
  750. data/resources/shared/transforms/Kannada-Gurmukhi.yml +13 -0
  751. data/resources/shared/transforms/Kannada-InterIndic.yml +91 -0
  752. data/resources/shared/transforms/Kannada-Latin.yml +13 -0
  753. data/resources/shared/transforms/Kannada-Malayalam.yml +13 -0
  754. data/resources/shared/transforms/Kannada-Oriya.yml +13 -0
  755. data/resources/shared/transforms/Kannada-Tamil.yml +13 -0
  756. data/resources/shared/transforms/Kannada-Telugu.yml +13 -0
  757. data/resources/shared/transforms/Katakana-Latin-BGN.yml +310 -0
  758. data/resources/shared/transforms/Katakana-Latin.yml +309 -0
  759. data/resources/shared/transforms/Kazakh-Latin-BGN.yml +136 -0
  760. data/resources/shared/transforms/Kazakh-Latin.yml +135 -0
  761. data/resources/shared/transforms/Kirghiz-Latin-BGN.yml +107 -0
  762. data/resources/shared/transforms/Kirghiz-Latin.yml +106 -0
  763. data/resources/shared/transforms/Korean-Latin-BGN.yml +282 -0
  764. data/resources/shared/transforms/Korean-Latin.yml +281 -0
  765. data/resources/shared/transforms/Latin-ASCII.yml +694 -0
  766. data/resources/shared/transforms/Latin-Armenian.yml +90 -0
  767. data/resources/shared/transforms/Latin-Bengali.yml +14 -0
  768. data/resources/shared/transforms/Latin-Bopomofo.yml +1451 -0
  769. data/resources/shared/transforms/Latin-CanadianAboriginal.yml +190 -0
  770. data/resources/shared/transforms/Latin-ConjoiningJamo.yml +263 -0
  771. data/resources/shared/transforms/Latin-Devanagari.yml +14 -0
  772. data/resources/shared/transforms/Latin-Ethiopic.yml +278 -0
  773. data/resources/shared/transforms/Latin-Gujarati.yml +14 -0
  774. data/resources/shared/transforms/Latin-Gurmukhi.yml +14 -0
  775. data/resources/shared/transforms/Latin-Hangul.yml +13 -0
  776. data/resources/shared/transforms/Latin-InterIndic.yml +341 -0
  777. data/resources/shared/transforms/Latin-Jamo.yml +13 -0
  778. data/resources/shared/transforms/Latin-Kannada.yml +14 -0
  779. data/resources/shared/transforms/Latin-Katakana.yml +274 -0
  780. data/resources/shared/transforms/Latin-Malayalam.yml +14 -0
  781. data/resources/shared/transforms/Latin-NumericPinyin.yml +21 -0
  782. data/resources/shared/transforms/Latin-Oriya.yml +14 -0
  783. data/resources/shared/transforms/Latin-Tamil.yml +14 -0
  784. data/resources/shared/transforms/Latin-Telugu.yml +14 -0
  785. data/resources/shared/transforms/Latin-Thaana.yml +439 -0
  786. data/resources/shared/transforms/Latin-Thai.yml +13 -0
  787. data/resources/shared/transforms/Macedonian-Latin-BGN.yml +89 -0
  788. data/resources/shared/transforms/Macedonian-Latin.yml +88 -0
  789. data/resources/shared/transforms/Malayalam-Bengali.yml +13 -0
  790. data/resources/shared/transforms/Malayalam-Devanagari.yml +13 -0
  791. data/resources/shared/transforms/Malayalam-Gujarati.yml +13 -0
  792. data/resources/shared/transforms/Malayalam-Gurmukhi.yml +13 -0
  793. data/resources/shared/transforms/Malayalam-InterIndic.yml +83 -0
  794. data/resources/shared/transforms/Malayalam-Kannada.yml +13 -0
  795. data/resources/shared/transforms/Malayalam-Latin.yml +13 -0
  796. data/resources/shared/transforms/Malayalam-Oriya.yml +13 -0
  797. data/resources/shared/transforms/Malayalam-Tamil.yml +13 -0
  798. data/resources/shared/transforms/Malayalam-Telugu.yml +13 -0
  799. data/resources/shared/transforms/Maldivian-Latin-BGN.yml +77 -0
  800. data/resources/shared/transforms/Maldivian-Latin.yml +76 -0
  801. data/resources/shared/transforms/Mongolian-Latin-BGN.yml +101 -0
  802. data/resources/shared/transforms/Mongolian-Latin.yml +100 -0
  803. data/resources/shared/transforms/Oriya-Bengali.yml +13 -0
  804. data/resources/shared/transforms/Oriya-Devanagari.yml +13 -0
  805. data/resources/shared/transforms/Oriya-Gujarati.yml +13 -0
  806. data/resources/shared/transforms/Oriya-Gurmukhi.yml +13 -0
  807. data/resources/shared/transforms/Oriya-InterIndic.yml +89 -0
  808. data/resources/shared/transforms/Oriya-Kannada.yml +13 -0
  809. data/resources/shared/transforms/Oriya-Latin.yml +13 -0
  810. data/resources/shared/transforms/Oriya-Malayalam.yml +13 -0
  811. data/resources/shared/transforms/Oriya-Tamil.yml +13 -0
  812. data/resources/shared/transforms/Oriya-Telugu.yml +13 -0
  813. data/resources/shared/transforms/Pashto-Latin-BGN.yml +151 -0
  814. data/resources/shared/transforms/Pashto-Latin.yml +150 -0
  815. data/resources/shared/transforms/Persian-Latin-BGN.yml +123 -0
  816. data/resources/shared/transforms/Persian-Latin.yml +122 -0
  817. data/resources/shared/transforms/Pinyin-NumericPinyin.yml +13 -0
  818. data/resources/shared/transforms/Russian-Latin-BGN.yml +113 -0
  819. data/resources/shared/transforms/Russian-Latin.yml +112 -0
  820. data/resources/shared/transforms/Serbian-Latin-BGN.yml +81 -0
  821. data/resources/shared/transforms/Serbian-Latin.yml +80 -0
  822. data/resources/shared/transforms/Simplified-Traditional.yml +3988 -0
  823. data/resources/shared/transforms/Syriac-Latin.yml +55 -0
  824. data/resources/shared/transforms/Tamil-Bengali.yml +13 -0
  825. data/resources/shared/transforms/Tamil-Devanagari.yml +13 -0
  826. data/resources/shared/transforms/Tamil-Gujarati.yml +13 -0
  827. data/resources/shared/transforms/Tamil-Gurmukhi.yml +13 -0
  828. data/resources/shared/transforms/Tamil-InterIndic.yml +72 -0
  829. data/resources/shared/transforms/Tamil-Kannada.yml +13 -0
  830. data/resources/shared/transforms/Tamil-Latin.yml +13 -0
  831. data/resources/shared/transforms/Tamil-Malayalam.yml +13 -0
  832. data/resources/shared/transforms/Tamil-Oriya.yml +13 -0
  833. data/resources/shared/transforms/Tamil-Telugu.yml +13 -0
  834. data/resources/shared/transforms/Telugu-Bengali.yml +13 -0
  835. data/resources/shared/transforms/Telugu-Devanagari.yml +13 -0
  836. data/resources/shared/transforms/Telugu-Gujarati.yml +13 -0
  837. data/resources/shared/transforms/Telugu-Gurmukhi.yml +13 -0
  838. data/resources/shared/transforms/Telugu-InterIndic.yml +89 -0
  839. data/resources/shared/transforms/Telugu-Kannada.yml +13 -0
  840. data/resources/shared/transforms/Telugu-Latin.yml +13 -0
  841. data/resources/shared/transforms/Telugu-Malayalam.yml +13 -0
  842. data/resources/shared/transforms/Telugu-Oriya.yml +13 -0
  843. data/resources/shared/transforms/Telugu-Tamil.yml +13 -0
  844. data/resources/shared/transforms/Thai-Latin.yml +15 -0
  845. data/resources/shared/transforms/Thai-ThaiLogical.yml +15 -0
  846. data/resources/shared/transforms/Thai-ThaiSemi.yml +10 -0
  847. data/resources/shared/transforms/ThaiLogical-Latin.yml +119 -0
  848. data/resources/shared/transforms/Turkmen-Latin-BGN.yml +122 -0
  849. data/resources/shared/transforms/Turkmen-Latin.yml +121 -0
  850. data/resources/shared/transforms/Ukrainian-Latin-BGN.yml +115 -0
  851. data/resources/shared/transforms/Ukrainian-Latin.yml +114 -0
  852. data/resources/shared/transforms/Uzbek-Latin-BGN.yml +117 -0
  853. data/resources/shared/transforms/Uzbek-Latin.yml +116 -0
  854. data/resources/shared/transforms/az-Lower.yml +12 -0
  855. data/resources/shared/transforms/az-Title.yml +13 -0
  856. data/resources/shared/transforms/az-Upper.yml +10 -0
  857. data/resources/shared/transforms/ch-ch_FONIPA.yml +71 -0
  858. data/resources/shared/transforms/cs-cs_FONIPA.yml +62 -0
  859. data/resources/shared/transforms/cs-ja.yml +10 -0
  860. data/resources/shared/transforms/cs-ko.yml +10 -0
  861. data/resources/shared/transforms/cs_FONIPA-ja.yml +201 -0
  862. data/resources/shared/transforms/cs_FONIPA-ko.yml +88 -0
  863. data/resources/shared/transforms/dsb-dsb_FONIPA.yml +73 -0
  864. data/resources/shared/transforms/el-Lower.yml +13 -0
  865. data/resources/shared/transforms/el-Title.yml +14 -0
  866. data/resources/shared/transforms/el-Upper.yml +13 -0
  867. data/resources/shared/transforms/es-am.yml +10 -0
  868. data/resources/shared/transforms/es-es_FONIPA.yml +81 -0
  869. data/resources/shared/transforms/es-ja.yml +10 -0
  870. data/resources/shared/transforms/es-zh.yml +10 -0
  871. data/resources/shared/transforms/es_419-ja.yml +11 -0
  872. data/resources/shared/transforms/es_419-zh.yml +11 -0
  873. data/resources/shared/transforms/es_FONIPA-am.yml +167 -0
  874. data/resources/shared/transforms/es_FONIPA-es_419_FONIPA.yml +10 -0
  875. data/resources/shared/transforms/es_FONIPA-ja.yml +145 -0
  876. data/resources/shared/transforms/es_FONIPA-zh.yml +497 -0
  877. data/resources/shared/transforms/it-am.yml +198 -0
  878. data/resources/shared/transforms/it-ja.yml +185 -0
  879. data/resources/shared/transforms/ja_Latn-ko.yml +92 -0
  880. data/resources/shared/transforms/ja_Latn-ru.yml +63 -0
  881. data/resources/shared/transforms/la-la_FONIPA.yml +81 -0
  882. data/resources/shared/transforms/lt-Lower.yml +17 -0
  883. data/resources/shared/transforms/lt-Title.yml +19 -0
  884. data/resources/shared/transforms/lt-Upper.yml +12 -0
  885. data/resources/shared/transforms/nl-Title.yml +10 -0
  886. data/resources/shared/transforms/pl-ja.yml +10 -0
  887. data/resources/shared/transforms/pl-pl_FONIPA.yml +98 -0
  888. data/resources/shared/transforms/pl_FONIPA-ja.yml +218 -0
  889. data/resources/shared/transforms/ro-ja.yml +10 -0
  890. data/resources/shared/transforms/ro-ro_FONIPA.yml +88 -0
  891. data/resources/shared/transforms/ro_FONIPA-ja.yml +157 -0
  892. data/resources/shared/transforms/ru-ja.yml +441 -0
  893. data/resources/shared/transforms/ru-zh.yml +975 -0
  894. data/resources/shared/transforms/sk-ja.yml +10 -0
  895. data/resources/shared/transforms/sk-sk_FONIPA.yml +74 -0
  896. data/resources/shared/transforms/sk_FONIPA-ja.yml +190 -0
  897. data/resources/shared/transforms/tlh-tlh_FONIPA.yml +54 -0
  898. data/resources/shared/transforms/tr-Lower.yml +12 -0
  899. data/resources/shared/transforms/tr-Title.yml +13 -0
  900. data/resources/shared/transforms/tr-Upper.yml +10 -0
  901. data/resources/shared/transforms/uz_Cyrl-uz_Latn.yml +102 -0
  902. data/resources/shared/transforms/yo-yo_BJ.yml +16 -0
  903. data/resources/shared/transforms/zh_Latn_PINYIN-ru.yml +120 -0
  904. data/resources/unicode_data/blocks.yml +168 -0
  905. data/resources/unicode_data/blocks/ancient_greek_numbers.yml +32 -0
  906. data/resources/unicode_data/blocks/ancient_symbols.yml +16 -0
  907. data/resources/unicode_data/blocks/arabic.yml +16 -0
  908. data/resources/unicode_data/blocks/arabic_extended_a.yml +176 -0
  909. data/resources/unicode_data/blocks/arabic_presentation_forms_a.yml +2 -2
  910. data/resources/unicode_data/blocks/armenian.yml +32 -0
  911. data/resources/unicode_data/blocks/bengali.yml +16 -0
  912. data/resources/unicode_data/blocks/brahmi.yml +16 -0
  913. data/resources/unicode_data/blocks/cherokee.yml +281 -169
  914. data/resources/unicode_data/blocks/cjk_unified_ideographs.yml +2 -2
  915. data/resources/unicode_data/blocks/combining_diacritical_marks_supplement.yml +240 -0
  916. data/resources/unicode_data/blocks/combining_half_marks.yml +144 -0
  917. data/resources/unicode_data/blocks/cuneiform.yml +688 -0
  918. data/resources/unicode_data/blocks/cuneiform_numbers_and_punctuation.yml +208 -0
  919. data/resources/unicode_data/blocks/currency_symbols.yml +64 -0
  920. data/resources/unicode_data/blocks/cyrillic_extended_b.yml +112 -0
  921. data/resources/unicode_data/blocks/cyrillic_supplement.yml +128 -0
  922. data/resources/unicode_data/blocks/devanagari.yml +16 -0
  923. data/resources/unicode_data/blocks/devanagari_extended.yml +32 -0
  924. data/resources/unicode_data/blocks/dingbats.yml +16 -0
  925. data/resources/unicode_data/blocks/emoticons.yml +64 -0
  926. data/resources/unicode_data/blocks/enclosed_alphanumeric_supplement.yml +32 -0
  927. data/resources/unicode_data/blocks/greek_and_coptic.yml +18 -2
  928. data/resources/unicode_data/blocks/gujarati.yml +16 -0
  929. data/resources/unicode_data/blocks/ipa_extensions.yml +12 -12
  930. data/resources/unicode_data/blocks/kannada.yml +16 -0
  931. data/resources/unicode_data/blocks/latin_extended_d.yml +400 -0
  932. data/resources/unicode_data/blocks/limbu.yml +32 -0
  933. data/resources/unicode_data/blocks/malayalam.yml +32 -0
  934. data/resources/unicode_data/blocks/meroitic_cursive.yml +1024 -0
  935. data/resources/unicode_data/blocks/miscellaneous_symbols_and_arrows.yml +1904 -0
  936. data/resources/unicode_data/blocks/miscellaneous_symbols_and_pictographs.yml +4816 -1088
  937. data/resources/unicode_data/blocks/miscellaneous_technical.yml +112 -0
  938. data/resources/unicode_data/blocks/musical_symbols.yml +176 -0
  939. data/resources/unicode_data/blocks/myanmar_extended_a.yml +64 -0
  940. data/resources/unicode_data/blocks/new_tai_lue.yml +19 -19
  941. data/resources/unicode_data/blocks/number_forms.yml +32 -0
  942. data/resources/unicode_data/blocks/old_italic.yml +16 -0
  943. data/resources/unicode_data/blocks/playing_cards.yml +368 -0
  944. data/resources/unicode_data/blocks/runic.yml +128 -0
  945. data/resources/unicode_data/blocks/sharada.yml +176 -0
  946. data/resources/unicode_data/blocks/sinhala.yml +160 -0
  947. data/resources/unicode_data/blocks/sundanese.yml +4 -4
  948. data/resources/unicode_data/blocks/supplemental_punctuation.yml +112 -0
  949. data/resources/unicode_data/blocks/telugu.yml +48 -0
  950. data/resources/unicode_data/blocks/transport_and_map_symbols.yml +448 -0
  951. data/resources/unicode_data/blocks/vedic_extensions.yml +32 -0
  952. data/resources/unicode_data/casefolding.yml +760 -0
  953. data/resources/unicode_data/properties/Age/7.0/value.dump +0 -0
  954. data/resources/unicode_data/properties/Age/8.0/value.dump +0 -0
  955. data/resources/unicode_data/properties/Bidi_Paired_Bracket_Type/Close/value.dump +62 -0
  956. data/resources/unicode_data/properties/Bidi_Paired_Bracket_Type/Open/value.dump +66 -0
  957. data/resources/unicode_data/properties/Block/Ahom/value.dump +0 -0
  958. data/resources/unicode_data/properties/Block/Anatolian Hieroglyphs/value.dump +0 -0
  959. data/resources/unicode_data/properties/Block/Bassa Vah/value.dump +3 -0
  960. data/resources/unicode_data/properties/Block/CJK Unified Ideographs Extension E/value.dump +3 -0
  961. data/resources/unicode_data/properties/Block/Caucasian Albanian/value.dump +3 -0
  962. data/resources/unicode_data/properties/Block/Cherokee Supplement/value.dump +3 -0
  963. data/resources/unicode_data/properties/Block/Combining Diacritical Marks Extended/value.dump +3 -0
  964. data/resources/unicode_data/properties/Block/Coptic Epact Numbers/value.dump +3 -0
  965. data/resources/unicode_data/properties/Block/Duployan/value.dump +0 -0
  966. data/resources/unicode_data/properties/Block/Early Dynastic Cuneiform/value.dump +3 -0
  967. data/resources/unicode_data/properties/Block/Elbasan/value.dump +0 -0
  968. data/resources/unicode_data/properties/Block/Geometric Shapes Extended/value.dump +3 -0
  969. data/resources/unicode_data/properties/Block/Grantha/value.dump +0 -0
  970. data/resources/unicode_data/properties/Block/Hatran/value.dump +3 -0
  971. data/resources/unicode_data/properties/Block/Khojki/value.dump +0 -0
  972. data/resources/unicode_data/properties/Block/Khudawadi/value.dump +3 -0
  973. data/resources/unicode_data/properties/Block/Latin Extended-E/value.dump +3 -0
  974. data/resources/unicode_data/properties/Block/Linear A/value.dump +0 -0
  975. data/resources/unicode_data/properties/Block/Mahajani/value.dump +3 -0
  976. data/resources/unicode_data/properties/Block/Manichaean/value.dump +5 -0
  977. data/resources/unicode_data/properties/Block/Mende Kikakui/value.dump +0 -0
  978. data/resources/unicode_data/properties/Block/Modi/value.dump +0 -0
  979. data/resources/unicode_data/properties/Block/Mro/value.dump +3 -0
  980. data/resources/unicode_data/properties/Block/Multani/value.dump +3 -0
  981. data/resources/unicode_data/properties/Block/Myanmar Extended-B/value.dump +3 -0
  982. data/resources/unicode_data/properties/Block/Nabataean/value.dump +3 -0
  983. data/resources/unicode_data/properties/Block/Old Hungarian/value.dump +3 -0
  984. data/resources/unicode_data/properties/Block/Old North Arabian/value.dump +5 -0
  985. data/resources/unicode_data/properties/Block/Old Permic/value.dump +3 -0
  986. data/resources/unicode_data/properties/Block/Ornamental Dingbats/value.dump +3 -0
  987. data/resources/unicode_data/properties/Block/Pahawh Hmong/value.dump +0 -0
  988. data/resources/unicode_data/properties/Block/Palmyrene/value.dump +3 -0
  989. data/resources/unicode_data/properties/Block/Pau Cin Hau/value.dump +3 -0
  990. data/resources/unicode_data/properties/Block/Psalter Pahlavi/value.dump +3 -0
  991. data/resources/unicode_data/properties/Block/Shorthand Format Controls/value.dump +3 -0
  992. data/resources/unicode_data/properties/Block/Siddham/value.dump +3 -0
  993. data/resources/unicode_data/properties/Block/Sinhala Archaic Numbers/value.dump +3 -0
  994. data/resources/unicode_data/properties/Block/Supplemental Arrows-C/value.dump +0 -0
  995. Pictographs/value.dump +0 -0
  996. data/resources/unicode_data/properties/Block/Sutton SignWriting/value.dump +0 -0
  997. data/resources/unicode_data/properties/Block/Tirhuta/value.dump +3 -0
  998. data/resources/unicode_data/properties/Block/Warang Citi/value.dump +3 -0
  999. data/resources/unicode_data/properties/Indic_Syllabic_Category/Brahmi_Joining_Number/value.dump +3 -0
  1000. data/resources/unicode_data/properties/Indic_Syllabic_Category/Cantillation_Mark/value.dump +10 -0
  1001. data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Killer/value.dump +4 -0
  1002. data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Preceding_Repha/value.dump +3 -0
  1003. data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Prefixed/value.dump +3 -0
  1004. data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Succeeding_Repha/value.dump +6 -0
  1005. data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_With_Stacker/value.dump +4 -0
  1006. data/resources/unicode_data/properties/Indic_Syllabic_Category/Gemination_Mark/value.dump +6 -0
  1007. data/resources/unicode_data/properties/Indic_Syllabic_Category/Invisible_Stacker/value.dump +11 -0
  1008. data/resources/unicode_data/properties/Indic_Syllabic_Category/Joiner/value.dump +3 -0
  1009. data/resources/unicode_data/properties/Indic_Syllabic_Category/Non_Joiner/value.dump +3 -0
  1010. data/resources/unicode_data/properties/Indic_Syllabic_Category/Number/value.dump +0 -0
  1011. data/resources/unicode_data/properties/Indic_Syllabic_Category/Number_Joiner/value.dump +3 -0
  1012. data/resources/unicode_data/properties/Indic_Syllabic_Category/Pure_Killer/value.dump +17 -0
  1013. data/resources/unicode_data/properties/Indic_Syllabic_Category/Syllable_Modifier/value.dump +15 -0
  1014. data/resources/unicode_data/properties/Joining_Group/AIN/value.dump +8 -0
  1015. data/resources/unicode_data/properties/Joining_Group/ALAPH/value.dump +3 -0
  1016. data/resources/unicode_data/properties/Joining_Group/ALEF/value.dump +8 -0
  1017. data/resources/unicode_data/properties/Joining_Group/BEH/value.dump +8 -0
  1018. data/resources/unicode_data/properties/Joining_Group/BETH/value.dump +4 -0
  1019. data/resources/unicode_data/properties/Joining_Group/BURUSHASKI YEH BARREE/value.dump +3 -0
  1020. data/resources/unicode_data/properties/Joining_Group/DAL/value.dump +8 -0
  1021. data/resources/unicode_data/properties/Joining_Group/DALATH RISH/value.dump +5 -0
  1022. data/resources/unicode_data/properties/Joining_Group/E/value.dump +3 -0
  1023. data/resources/unicode_data/properties/Joining_Group/FARSI YEH/value.dump +6 -0
  1024. data/resources/unicode_data/properties/Joining_Group/FE/value.dump +3 -0
  1025. data/resources/unicode_data/properties/Joining_Group/FEH/value.dump +6 -0
  1026. data/resources/unicode_data/properties/Joining_Group/FINAL SEMKATH/value.dump +3 -0
  1027. data/resources/unicode_data/properties/Joining_Group/GAF/value.dump +8 -0
  1028. data/resources/unicode_data/properties/Joining_Group/GAMAL/value.dump +4 -0
  1029. data/resources/unicode_data/properties/Joining_Group/HAH/value.dump +10 -0
  1030. data/resources/unicode_data/properties/Joining_Group/HE/value.dump +3 -0
  1031. data/resources/unicode_data/properties/Joining_Group/HEH GOAL/value.dump +3 -0
  1032. data/resources/unicode_data/properties/Joining_Group/HEH/value.dump +3 -0
  1033. data/resources/unicode_data/properties/Joining_Group/HETH/value.dump +3 -0
  1034. data/resources/unicode_data/properties/Joining_Group/KAF/value.dump +6 -0
  1035. data/resources/unicode_data/properties/Joining_Group/KAPH/value.dump +3 -0
  1036. data/resources/unicode_data/properties/Joining_Group/KHAPH/value.dump +3 -0
  1037. data/resources/unicode_data/properties/Joining_Group/KNOTTED HEH/value.dump +4 -0
  1038. data/resources/unicode_data/properties/Joining_Group/LAM/value.dump +6 -0
  1039. data/resources/unicode_data/properties/Joining_Group/LAMADH/value.dump +3 -0
  1040. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN ALEPH/value.dump +5 -0
  1041. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN AYIN/value.dump +5 -0
  1042. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN BETH/value.dump +5 -0
  1043. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN DALETH/value.dump +5 -0
  1044. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN DHAMEDH/value.dump +5 -0
  1045. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN FIVE/value.dump +5 -0
  1046. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN GIMEL/value.dump +5 -0
  1047. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN HETH/value.dump +5 -0
  1048. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN HUNDRED/value.dump +5 -0
  1049. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN KAPH/value.dump +5 -0
  1050. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN LAMEDH/value.dump +5 -0
  1051. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN MEM/value.dump +5 -0
  1052. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN NUN/value.dump +5 -0
  1053. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN ONE/value.dump +5 -0
  1054. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN PE/value.dump +5 -0
  1055. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN QOPH/value.dump +5 -0
  1056. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN RESH/value.dump +5 -0
  1057. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN SADHE/value.dump +5 -0
  1058. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN SAMEKH/value.dump +5 -0
  1059. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN TAW/value.dump +5 -0
  1060. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN TEN/value.dump +5 -0
  1061. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN TETH/value.dump +5 -0
  1062. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN THAMEDH/value.dump +5 -0
  1063. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN TWENTY/value.dump +5 -0
  1064. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN WAW/value.dump +5 -0
  1065. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN YODH/value.dump +5 -0
  1066. data/resources/unicode_data/properties/Joining_Group/MANICHAEAN ZAYIN/value.dump +5 -0
  1067. data/resources/unicode_data/properties/Joining_Group/MEEM/value.dump +5 -0
  1068. data/resources/unicode_data/properties/Joining_Group/MIM/value.dump +3 -0
  1069. data/resources/unicode_data/properties/Joining_Group/NOON/value.dump +5 -0
  1070. data/resources/unicode_data/properties/Joining_Group/NUN/value.dump +3 -0
  1071. data/resources/unicode_data/properties/Joining_Group/NYA/value.dump +3 -0
  1072. data/resources/unicode_data/properties/Joining_Group/No_Joining_Group/value.dump +0 -0
  1073. data/resources/unicode_data/properties/Joining_Group/PE/value.dump +3 -0
  1074. data/resources/unicode_data/properties/Joining_Group/QAF/value.dump +6 -0
  1075. data/resources/unicode_data/properties/Joining_Group/QAPH/value.dump +3 -0
  1076. data/resources/unicode_data/properties/Joining_Group/REH/value.dump +10 -0
  1077. data/resources/unicode_data/properties/Joining_Group/REVERSED PE/value.dump +3 -0
  1078. data/resources/unicode_data/properties/Joining_Group/ROHINGYA YEH/value.dump +3 -0
  1079. data/resources/unicode_data/properties/Joining_Group/SAD/value.dump +6 -0
  1080. data/resources/unicode_data/properties/Joining_Group/SADHE/value.dump +3 -0
  1081. data/resources/unicode_data/properties/Joining_Group/SEEN/value.dump +9 -0
  1082. data/resources/unicode_data/properties/Joining_Group/SEMKATH/value.dump +3 -0
  1083. data/resources/unicode_data/properties/Joining_Group/SHIN/value.dump +3 -0
  1084. data/resources/unicode_data/properties/Joining_Group/STRAIGHT WAW/value.dump +3 -0
  1085. data/resources/unicode_data/properties/Joining_Group/SWASH KAF/value.dump +3 -0
  1086. data/resources/unicode_data/properties/Joining_Group/SYRIAC WAW/value.dump +3 -0
  1087. data/resources/unicode_data/properties/Joining_Group/TAH/value.dump +5 -0
  1088. data/resources/unicode_data/properties/Joining_Group/TAW/value.dump +3 -0
  1089. data/resources/unicode_data/properties/Joining_Group/TEH MARBUTA GOAL/value.dump +3 -0
  1090. data/resources/unicode_data/properties/Joining_Group/TEH MARBUTA/value.dump +5 -0
  1091. data/resources/unicode_data/properties/Joining_Group/TETH/value.dump +3 -0
  1092. data/resources/unicode_data/properties/Joining_Group/WAW/value.dump +9 -0
  1093. data/resources/unicode_data/properties/Joining_Group/YEH BARREE/value.dump +3 -0
  1094. data/resources/unicode_data/properties/Joining_Group/YEH WITH TAIL/value.dump +3 -0
  1095. data/resources/unicode_data/properties/Joining_Group/YEH/value.dump +9 -0
  1096. data/resources/unicode_data/properties/Joining_Group/YUDH HE/value.dump +3 -0
  1097. data/resources/unicode_data/properties/Joining_Group/YUDH/value.dump +3 -0
  1098. data/resources/unicode_data/properties/Joining_Group/ZAIN/value.dump +3 -0
  1099. data/resources/unicode_data/properties/Joining_Group/ZHAIN/value.dump +3 -0
  1100. data/resources/unicode_data/properties/Joining_Type/Dual_Joining/value.dump +65 -0
  1101. data/resources/unicode_data/properties/Joining_Type/Join_Causing/value.dump +8 -0
  1102. data/resources/unicode_data/properties/Joining_Type/Left_Joining/value.dump +9 -0
  1103. data/resources/unicode_data/properties/Joining_Type/Non_Joining/value.dump +0 -0
  1104. data/resources/unicode_data/properties/Joining_Type/Right_Joining/value.dump +68 -0
  1105. data/resources/unicode_data/properties/Script/Ahom/value.dump +0 -0
  1106. data/resources/unicode_data/properties/Script/Anatolian_Hieroglyphs/value.dump +0 -0
  1107. data/resources/unicode_data/properties/Script/Bassa_Vah/value.dump +4 -0
  1108. data/resources/unicode_data/properties/Script/Caucasian_Albanian/value.dump +4 -0
  1109. data/resources/unicode_data/properties/Script/Duployan/value.dump +0 -0
  1110. data/resources/unicode_data/properties/Script/Elbasan/value.dump +0 -0
  1111. data/resources/unicode_data/properties/Script/Grantha/value.dump +0 -0
  1112. data/resources/unicode_data/properties/Script/Hatran/value.dump +5 -0
  1113. data/resources/unicode_data/properties/Script/Khojki/value.dump +0 -0
  1114. data/resources/unicode_data/properties/Script/Khudawadi/value.dump +4 -0
  1115. data/resources/unicode_data/properties/Script/Linear_A/value.dump +0 -0
  1116. data/resources/unicode_data/properties/Script/Mahajani/value.dump +3 -0
  1117. data/resources/unicode_data/properties/Script/Manichaean/value.dump +8 -0
  1118. data/resources/unicode_data/properties/Script/Mende_Kikakui/value.dump +0 -0
  1119. data/resources/unicode_data/properties/Script/Modi/value.dump +0 -0
  1120. data/resources/unicode_data/properties/Script/Mro/value.dump +5 -0
  1121. data/resources/unicode_data/properties/Script/Multani/value.dump +8 -0
  1122. data/resources/unicode_data/properties/Script/Nabataean/value.dump +4 -0
  1123. data/resources/unicode_data/properties/Script/Old_Hungarian/value.dump +5 -0
  1124. data/resources/unicode_data/properties/Script/Old_North_Arabian/value.dump +5 -0
  1125. data/resources/unicode_data/properties/Script/Old_Permic/value.dump +3 -0
  1126. data/resources/unicode_data/properties/Script/Pahawh_Hmong/value.dump +0 -0
  1127. data/resources/unicode_data/properties/Script/Palmyrene/value.dump +3 -0
  1128. data/resources/unicode_data/properties/Script/Pau_Cin_Hau/value.dump +3 -0
  1129. data/resources/unicode_data/properties/Script/Psalter_Pahlavi/value.dump +5 -0
  1130. data/resources/unicode_data/properties/Script/Siddham/value.dump +4 -0
  1131. data/resources/unicode_data/properties/Script/SignWriting/value.dump +0 -0
  1132. data/resources/unicode_data/properties/Script/Tirhuta/value.dump +4 -0
  1133. data/resources/unicode_data/properties/Script/Warang_Citi/value.dump +4 -0
  1134. data/resources/unicode_data/properties/Script_Extensions/Copt/value.dump +3 -0
  1135. data/resources/unicode_data/properties/Script_Extensions/Dupl/value.dump +3 -0
  1136. data/resources/unicode_data/properties/Script_Extensions/Glag/value.dump +4 -0
  1137. data/resources/unicode_data/properties/Script_Extensions/Gran/value.dump +12 -0
  1138. data/resources/unicode_data/properties/Script_Extensions/Kali/value.dump +3 -0
  1139. data/resources/unicode_data/properties/Script_Extensions/Khoj/value.dump +4 -0
  1140. data/resources/unicode_data/properties/Script_Extensions/Knda/value.dump +6 -0
  1141. data/resources/unicode_data/properties/Script_Extensions/Limb/value.dump +3 -0
  1142. data/resources/unicode_data/properties/Script_Extensions/Mahj/value.dump +4 -0
  1143. data/resources/unicode_data/properties/Script_Extensions/Mani/value.dump +3 -0
  1144. data/resources/unicode_data/properties/Script_Extensions/Mlym/value.dump +5 -0
  1145. data/resources/unicode_data/properties/Script_Extensions/Modi/value.dump +3 -0
  1146. data/resources/unicode_data/properties/Script_Extensions/Mult/value.dump +4 -0
  1147. data/resources/unicode_data/properties/Script_Extensions/Perm/value.dump +3 -0
  1148. data/resources/unicode_data/properties/Script_Extensions/Phlp/value.dump +3 -0
  1149. data/resources/unicode_data/properties/Script_Extensions/Shrd/value.dump +8 -0
  1150. data/resources/unicode_data/properties/Script_Extensions/Sind/value.dump +4 -0
  1151. data/resources/unicode_data/properties/Script_Extensions/Sinh/value.dump +3 -0
  1152. data/resources/unicode_data/properties/Script_Extensions/Taml/value.dump +9 -0
  1153. data/resources/unicode_data/properties/Script_Extensions/Telu/value.dump +5 -0
  1154. data/resources/unicode_data/properties/Script_Extensions/Tirh/value.dump +4 -0
  1155. data/resources/unicode_data/property_aliases.yml +9 -3
  1156. data/resources/unicode_data/property_value_aliases.yml +34 -0
  1157. data/spec/collation/collator_spec.rb +53 -32
  1158. data/spec/collation/trie_builder_spec.rb +2 -2
  1159. data/spec/collation/trie_dumps_spec.rb +2 -2
  1160. data/spec/collation/trie_loader_spec.rb +3 -3
  1161. data/spec/collation/trie_with_fallback_spec.rb +1 -1
  1162. data/spec/data_readers/additional_date_format_selector_spec.rb +1 -1
  1163. data/spec/data_readers/timespan_data_reader_spec.rb +4 -4
  1164. data/spec/formatters/list_formatter_spec.rb +1 -1
  1165. data/spec/formatters/numbers/abbreviated/long_decimal_formatter_spec.rb +4 -4
  1166. data/spec/formatters/numbers/abbreviated/short_decimal_formatter_spec.rb +0 -2
  1167. data/spec/formatters/numbers/decimal_formatter_spec.rb +1 -1
  1168. data/spec/formatters/numbers/rbnf/locales/af/rbnf_test.yml +14 -14
  1169. data/spec/formatters/numbers/rbnf/locales/ar/rbnf_test.yml +248 -14
  1170. data/spec/formatters/numbers/rbnf/locales/be/rbnf_test.yml +14 -14
  1171. data/spec/formatters/numbers/rbnf/locales/bg/rbnf_test.yml +14 -14
  1172. data/spec/formatters/numbers/rbnf/locales/bn/rbnf_test.yml +488 -488
  1173. data/spec/formatters/numbers/rbnf/locales/ca/rbnf_test.yml +28 -28
  1174. data/spec/formatters/numbers/rbnf/locales/cs/rbnf_test.yml +14 -14
  1175. data/spec/formatters/numbers/rbnf/locales/cy/rbnf_test.yml +14 -14
  1176. data/spec/formatters/numbers/rbnf/locales/da/rbnf_test.yml +307 -307
  1177. data/spec/formatters/numbers/rbnf/locales/de-CH/rbnf_test.yml +146 -146
  1178. data/spec/formatters/numbers/rbnf/locales/de/rbnf_test.yml +14 -14
  1179. data/spec/formatters/numbers/rbnf/locales/el/rbnf_test.yml +14 -14
  1180. data/spec/formatters/numbers/rbnf/locales/en-150/rbnf_test.yml +28 -28
  1181. data/spec/formatters/numbers/rbnf/locales/en-AU/rbnf_test.yml +28 -28
  1182. data/spec/formatters/numbers/rbnf/locales/en-CA/rbnf_test.yml +28 -28
  1183. data/spec/formatters/numbers/rbnf/locales/en-GB/rbnf_test.yml +28 -28
  1184. data/spec/formatters/numbers/rbnf/locales/en-IE/rbnf_test.yml +28 -28
  1185. data/spec/formatters/numbers/rbnf/locales/en-SG/rbnf_test.yml +28 -28
  1186. data/spec/formatters/numbers/rbnf/locales/en-ZA/rbnf_test.yml +28 -28
  1187. data/spec/formatters/numbers/rbnf/locales/en/rbnf_test.yml +28 -28
  1188. data/spec/formatters/numbers/rbnf/locales/es-419/rbnf_test.yml +488 -488
  1189. data/spec/formatters/numbers/rbnf/locales/es-CO/rbnf_test.yml +488 -488
  1190. data/spec/formatters/numbers/rbnf/locales/es-MX/rbnf_test.yml +488 -488
  1191. data/spec/formatters/numbers/rbnf/locales/es-US/rbnf_test.yml +488 -488
  1192. data/spec/formatters/numbers/rbnf/locales/es/rbnf_test.yml +488 -488
  1193. data/spec/formatters/numbers/rbnf/locales/eu/rbnf_test.yml +488 -488
  1194. data/spec/formatters/numbers/rbnf/locales/fa/rbnf_test.yml +14 -14
  1195. data/spec/formatters/numbers/rbnf/locales/fi/rbnf_test.yml +5067 -387
  1196. data/spec/formatters/numbers/rbnf/locales/fil/rbnf_test.yml +14 -14
  1197. data/spec/formatters/numbers/rbnf/locales/fr-BE/rbnf_test.yml +28 -28
  1198. data/spec/formatters/numbers/rbnf/locales/fr-CA/rbnf_test.yml +28 -28
  1199. data/spec/formatters/numbers/rbnf/locales/fr-CH/rbnf_test.yml +28 -28
  1200. data/spec/formatters/numbers/rbnf/locales/fr/rbnf_test.yml +28 -28
  1201. data/spec/formatters/numbers/rbnf/locales/ga/rbnf_test.yml +95 -95
  1202. data/spec/formatters/numbers/rbnf/locales/gl/rbnf_test.yml +488 -488
  1203. data/spec/formatters/numbers/rbnf/locales/gu/rbnf_test.yml +1634 -1283
  1204. data/spec/formatters/numbers/rbnf/locales/he/rbnf_test.yml +120 -120
  1205. data/spec/formatters/numbers/rbnf/locales/hi/rbnf_test.yml +28 -28
  1206. data/spec/formatters/numbers/rbnf/locales/hr/rbnf_test.yml +14 -14
  1207. data/spec/formatters/numbers/rbnf/locales/hu/rbnf_test.yml +14 -14
  1208. data/spec/formatters/numbers/rbnf/locales/id/rbnf_test.yml +35 -35
  1209. data/spec/formatters/numbers/rbnf/locales/is/rbnf_test.yml +14 -14
  1210. data/spec/formatters/numbers/rbnf/locales/it-CH/rbnf_test.yml +28 -28
  1211. data/spec/formatters/numbers/rbnf/locales/it/rbnf_test.yml +28 -28
  1212. data/spec/formatters/numbers/rbnf/locales/ja/rbnf_test.yml +7 -7
  1213. data/spec/formatters/numbers/rbnf/locales/kn/rbnf_test.yml +1634 -1283
  1214. data/spec/formatters/numbers/rbnf/locales/ko/rbnf_test.yml +14 -14
  1215. data/spec/formatters/numbers/rbnf/locales/lv/rbnf_test.yml +14 -14
  1216. data/spec/formatters/numbers/rbnf/locales/mr/rbnf_test.yml +1634 -1283
  1217. data/spec/formatters/numbers/rbnf/locales/ms/rbnf_test.yml +35 -35
  1218. data/spec/formatters/numbers/rbnf/locales/nb/rbnf_test.yml +950 -599
  1219. data/spec/formatters/numbers/rbnf/locales/nl/rbnf_test.yml +14 -14
  1220. data/spec/formatters/numbers/rbnf/locales/pl/rbnf_test.yml +2152 -46
  1221. data/spec/formatters/numbers/rbnf/locales/pt/rbnf_test.yml +28 -28
  1222. data/spec/formatters/numbers/rbnf/locales/ro/rbnf_test.yml +14 -14
  1223. data/spec/formatters/numbers/rbnf/locales/ru/rbnf_test.yml +5265 -52
  1224. data/spec/formatters/numbers/rbnf/locales/sk/rbnf_test.yml +14 -14
  1225. data/spec/formatters/numbers/rbnf/locales/sq/rbnf_test.yml +14 -14
  1226. data/spec/formatters/numbers/rbnf/locales/sr/rbnf_test.yml +14 -14
  1227. data/spec/formatters/numbers/rbnf/locales/sv/rbnf_test.yml +42 -42
  1228. data/spec/formatters/numbers/rbnf/locales/ta/rbnf_test.yml +14 -14
  1229. data/spec/formatters/numbers/rbnf/locales/th/rbnf_test.yml +123 -123
  1230. data/spec/formatters/numbers/rbnf/locales/tr/rbnf_test.yml +134 -134
  1231. data/spec/formatters/numbers/rbnf/locales/uk/rbnf_test.yml +14 -14
  1232. data/spec/formatters/numbers/rbnf/locales/ur/rbnf_test.yml +488 -488
  1233. data/spec/formatters/numbers/rbnf/locales/vi/rbnf_test.yml +14 -14
  1234. data/spec/formatters/numbers/rbnf/locales/zh-Hant/rbnf_test.yml +7 -7
  1235. data/spec/formatters/numbers/rbnf/locales/zh/rbnf_test.yml +7 -7
  1236. data/spec/localized/localized_date_spec.rb +11 -2
  1237. data/spec/localized/localized_datetime_spec.rb +1 -1
  1238. data/spec/localized/localized_string_spec.rb +9 -1
  1239. data/spec/localized/localized_symbol_spec.rb +4 -4
  1240. data/spec/resources/loader_spec.rb +1 -1
  1241. data/spec/segmentation/break_iterator_spec.rb +9 -9
  1242. data/spec/shared/hunspell/base.hyph +4543 -0
  1243. data/spec/shared/hunspell/base.pat +5536 -0
  1244. data/spec/shared/hunspell/base.word +4543 -0
  1245. data/spec/shared/hyphenator_spec.rb +103 -0
  1246. data/spec/shared/likely_subtags_spec.rb +5 -0
  1247. data/spec/shared/locale_spec.rb +34 -2
  1248. data/spec/shared/postal_code_generator_spec.rb +8 -9
  1249. data/spec/shared/postal_codes_spec.rb +9 -8
  1250. data/spec/shared/unit_spec.rb +1 -1
  1251. data/spec/transforms/rule_set_spec.rb +35 -0
  1252. data/spec/transforms/test_data.yml +820 -0
  1253. data/spec/transforms/transform_id_spec.rb +146 -0
  1254. data/spec/transforms/transformer_spec.rb +113 -0
  1255. data/spec/transforms/transliterator_spec.rb +35 -0
  1256. data/spec/utils/script_detector_spec.rb +12 -3
  1257. data/spec/{collation → utils}/trie_spec.rb +2 -2
  1258. metadata +524 -5
@@ -0,0 +1,146 @@
1
+ # encoding: UTF-8
2
+
3
+ # Copyright 2012 Twitter, Inc
4
+ # http://www.apache.org/licenses/LICENSE-2.0
5
+
6
+ require 'spec_helper'
7
+
8
+ include TwitterCldr::Transforms
9
+
10
+ describe TransformId do
11
+ describe '.find' do
12
+ it 'finds a transformer when given two locales' do
13
+ id = described_class.find('cs', 'ja')
14
+ expect(id.source).to eq('cs')
15
+ expect(id.target).to eq('ja')
16
+ expect(id.to_s).to eq('cs-ja')
17
+ end
18
+
19
+ it 'finds a script-based transformer when given two locales' do
20
+ id = described_class.find('ar', 'en')
21
+ expect(id.source).to eq('Arabic')
22
+ expect(id.target).to eq('Latin')
23
+ expect(id.to_s).to eq('Arabic-Latin')
24
+ end
25
+
26
+ it 'finds a transformer when given two scripts' do
27
+ id = described_class.find('Cyrillic', 'Latin')
28
+ expect(id.source).to eq('Cyrillic')
29
+ expect(id.target).to eq('Latin')
30
+ expect(id.to_s).to eq('Cyrillic-Latin')
31
+ end
32
+
33
+ it 'finds a transformer when given one script and one locale' do
34
+ id = described_class.find('Cyrillic', 'en')
35
+ expect(id.source).to eq('Cyrillic')
36
+ expect(id.target).to eq('Latin')
37
+ expect(id.to_s).to eq('Cyrillic-Latin')
38
+
39
+ id = described_class.find('ru', 'Latin')
40
+ expect(id.source).to eq('Cyrillic')
41
+ expect(id.target).to eq('Latin')
42
+ expect(id.to_s).to eq('Cyrillic-Latin')
43
+ end
44
+
45
+ it 'handles abbreviated scripts' do
46
+ id = described_class.find('Cyrl', 'Latn')
47
+ expect(id.source).to eq('Cyrillic')
48
+ expect(id.target).to eq('Latin')
49
+ expect(id.to_s).to eq('Cyrillic-Latin')
50
+ end
51
+
52
+ it 'returns nil when no transformer can be found' do
53
+ expect(described_class.find('foo', 'bar')).to be_nil
54
+ end
55
+ end
56
+
57
+ describe '.parse' do
58
+ it 'normalizes and parses the given id string' do
59
+ id = TransformId.parse('Bengali-Telugu')
60
+ expect(id.source).to eq('Bengali')
61
+ expect(id.target).to eq('Telugu')
62
+ expect(id.variant).to be_nil
63
+ expect(id.to_s).to eq('Bengali-Telugu')
64
+ end
65
+
66
+ it 'works with variants' do
67
+ id = TransformId.parse('Bulgarian-Latin/BGN')
68
+ expect(id.source).to eq('Bulgarian')
69
+ expect(id.target).to eq('Latin')
70
+ expect(id.variant).to eq('BGN')
71
+ expect(id.to_s).to eq('Bulgarian-Latin/BGN')
72
+ end
73
+
74
+ it 'raises an error if no transformer can be found' do
75
+ expect { described_class.parse('foo-bar') }.to(
76
+ raise_error(InvalidTransformIdError)
77
+ )
78
+ end
79
+ end
80
+
81
+ describe '.split' do
82
+ it 'splits the given string into source, target, and variant' do
83
+ expect(described_class.split('foo-bar/baz')).to eq(
84
+ %w(foo bar baz)
85
+ )
86
+ end
87
+ end
88
+
89
+ describe '.join' do
90
+ it 'joins the given source, target, and variant' do
91
+ expect(described_class.join('foo', 'bar', 'baz')).to eq('foo-bar/baz')
92
+ end
93
+ end
94
+
95
+ describe '#has_variant?' do
96
+ it 'returns true if the transform id contains a variant' do
97
+ id = TransformId.new('source', 'target', 'variant')
98
+ expect(id.variant).to eq('variant')
99
+ expect(id).to have_variant
100
+ end
101
+
102
+ it 'returns false if the transform id does not contain a variant' do
103
+ id = TransformId.new('source', 'target')
104
+ expect(id).to_not have_variant
105
+ end
106
+ end
107
+
108
+ describe '#reverse' do
109
+ it 'reverses the transform id' do
110
+ id = TransformId.new('source', 'target').reverse
111
+ expect(id.source).to eq('target')
112
+ expect(id.target).to eq('source')
113
+ end
114
+
115
+ it 'keeps the variant' do
116
+ id = TransformId.new('source', 'target', 'variant').reverse
117
+ expect(id.source).to eq('target')
118
+ expect(id.target).to eq('source')
119
+ expect(id.variant).to eq('variant')
120
+ end
121
+ end
122
+
123
+ describe '#file_name' do
124
+ it 'joins variants with dashes' do
125
+ id = TransformId.new('source', 'target', 'variant')
126
+ expect(id.file_name).to eq('source-target-variant')
127
+ end
128
+
129
+ it 'excludes the variant if none is given' do
130
+ id = TransformId.new('source', 'target')
131
+ expect(id.file_name).to eq('source-target')
132
+ end
133
+ end
134
+
135
+ describe '#to_s' do
136
+ it 'stringifies the source and target' do
137
+ id = TransformId.new('source', 'target')
138
+ expect(id.to_s).to eq('source-target')
139
+ end
140
+
141
+ it 'stringifies the source, target, and variant' do
142
+ id = TransformId.new('source', 'target', 'variant')
143
+ expect(id.to_s).to eq('source-target/variant')
144
+ end
145
+ end
146
+ end
@@ -0,0 +1,113 @@
1
+ # encoding: UTF-8
2
+
3
+ # Copyright 2012 Twitter, Inc
4
+ # http://www.apache.org/licenses/LICENSE-2.0
5
+
6
+ require 'spec_helper'
7
+
8
+ include TwitterCldr::Transforms
9
+
10
+ describe Transformer do
11
+ describe '.exists?' do
12
+ it 'returns true if the transform exists' do
13
+ expect(described_class.exists?('Cyrillic-Latin')).to eq(true)
14
+ end
15
+
16
+ it "returns false if the transform doesn't exist" do
17
+ expect(described_class.exists?('Foo-Bar')).to eq(false)
18
+ end
19
+
20
+ it 'accepts a TransformId' do
21
+ transform_id = TransformId.find('Cyrillic', 'Latin')
22
+ expect(described_class.exists?(transform_id)).to eq(true)
23
+ end
24
+ end
25
+
26
+ describe '.get' do
27
+ it 'retrieves the rule set by string id' do
28
+ rule_set = described_class.get('Cyrillic-Latin')
29
+ expect(rule_set.transform_id.source).to eq('Cyrillic')
30
+ expect(rule_set.transform_id.target).to eq('Latin')
31
+ expect(rule_set).to be_a(RuleSet)
32
+ end
33
+
34
+ it "retrieves the reverse rule set if the forward one doesn't exist" do
35
+ rule_set = described_class.get('Latin-Cyrillic')
36
+ expect(rule_set.transform_id.source).to eq('Cyrillic')
37
+ expect(rule_set.transform_id.target).to eq('Latin')
38
+ expect(rule_set).to be_a(RuleSet)
39
+ end
40
+
41
+ it 'raises an error if no rule set can be found' do
42
+ expect { described_class.get('Foo-Bar') }.to(
43
+ raise_error(InvalidTransformIdError)
44
+ )
45
+ end
46
+ end
47
+
48
+ describe '.each_transform' do
49
+ it 'yields each transform id' do
50
+ transform_ids = described_class.each_transform.to_a
51
+ %w(Gujarati-Bengali el-Lower cs-ja Latin-Hangul ru-zh).each do |id|
52
+ expect(transform_ids).to include(id)
53
+ end
54
+ end
55
+ end
56
+
57
+ context 'with a uni-directional transformer' do
58
+ let(:transform_id) { TransformId.find('Latin', 'Kannada') }
59
+ let(:transformer) { described_class.send(:load, transform_id) }
60
+
61
+ describe '#bidirectional?' do
62
+ it "returns false if the transformer can't operate in both directions" do
63
+ expect(transformer).to_not be_bidirectional
64
+ end
65
+ end
66
+
67
+ describe '#forward_rule_set' do
68
+ it 'returns the forward rule set' do
69
+ rule_set = transformer.forward_rule_set
70
+ expect(rule_set.transform_id.source).to eq('Latin')
71
+ expect(rule_set.transform_id.target).to eq('Kannada')
72
+ expect(rule_set).to be_a(RuleSet)
73
+ end
74
+ end
75
+
76
+ describe '#backward_rule_set' do
77
+ it 'raises an error' do
78
+ expect { transformer.backward_rule_set }.to(
79
+ raise_error(NotInvertibleError)
80
+ )
81
+ end
82
+ end
83
+ end
84
+
85
+ context 'with a bidirectional transformer' do
86
+ let(:transform_id) { TransformId.find('Cyrillic', 'Latin') }
87
+ let(:transformer) { described_class.send(:load, transform_id) }
88
+
89
+ describe '#bidirectional?' do
90
+ it 'returns true if the transformer can operate in both directions' do
91
+ expect(transformer).to be_bidirectional
92
+ end
93
+ end
94
+
95
+ describe '#forward_rule_set' do
96
+ it 'returns the forward rule set' do
97
+ rule_set = transformer.forward_rule_set
98
+ expect(rule_set.transform_id.source).to eq('Cyrillic')
99
+ expect(rule_set.transform_id.target).to eq('Latin')
100
+ expect(rule_set).to be_a(RuleSet)
101
+ end
102
+ end
103
+
104
+ describe '#backward_rule_set' do
105
+ it 'returns the backward rule set' do
106
+ rule_set = transformer.backward_rule_set
107
+ expect(rule_set.transform_id.source).to eq('Cyrillic')
108
+ expect(rule_set.transform_id.target).to eq('Latin')
109
+ expect(rule_set).to be_a(RuleSet)
110
+ end
111
+ end
112
+ end
113
+ end
@@ -0,0 +1,35 @@
1
+ # encoding: UTF-8
2
+
3
+ # Copyright 2012 Twitter, Inc
4
+ # http://www.apache.org/licenses/LICENSE-2.0
5
+
6
+ require 'spec_helper'
7
+
8
+ include TwitterCldr::Transforms
9
+
10
+ describe Transliterator do
11
+ describe '#transliterate' do
12
+ let(:source_locale) { 'ja' }
13
+ let(:target_locale) { 'en' }
14
+ let(:string) { 'くろねこさまボクシサン' }
15
+ let(:transliterator) { Transliterator.new(string, source_locale, target_locale) }
16
+
17
+ it 'identifies and transliterates all the scripts in the string' do
18
+ expect(transliterator.transliterate).to(
19
+ match_normalized('kuronekosamaho゙kushisan')
20
+ )
21
+ end
22
+
23
+ context 'with a specific script' do
24
+ let(:source_locale) { 'ru_Cyrl' }
25
+ let(:target_locale) { 'en' }
26
+ let(:string) { 'くろねこさま Руссиа' }
27
+
28
+ it "doesn't transliterate all scripts if a script is explicitly specified" do
29
+ expect(transliterator.transliterate).to(
30
+ match_normalized('くろねこさま Russia')
31
+ )
32
+ end
33
+ end
34
+ end
35
+ end
@@ -51,8 +51,17 @@ describe ScriptDetector do
51
51
  end
52
52
 
53
53
  describe ScriptDetectionResult do
54
- it 'returns nil if no scripts were detected' do
55
- result = ScriptDetectionResult.new({})
56
- expect(result.best_guess).to be_nil
54
+ describe '#best_guess' do
55
+ it 'returns nil if no scripts were detected' do
56
+ result = ScriptDetectionResult.new({})
57
+ expect(result.best_guess).to be_nil
58
+ end
59
+ end
60
+
61
+ describe '#scripts' do
62
+ it 'returns a list of all the scripts present in the string' do
63
+ result = ScriptDetectionResult.new('Cyrillic' => 1, 'Greek' => 2)
64
+ expect(result.scripts.sort).to eq(%w(Cyrillic Greek))
65
+ end
57
66
  end
58
67
  end
@@ -5,7 +5,7 @@
5
5
 
6
6
  require 'spec_helper'
7
7
 
8
- include TwitterCldr::Collation
8
+ include TwitterCldr::Utils
9
9
 
10
10
  describe Trie do
11
11
 
@@ -383,4 +383,4 @@ describe Trie do
383
383
 
384
384
  end
385
385
 
386
- end
386
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: twitter_cldr
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.6.0
4
+ version: 4.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cameron Dutro
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-10-20 00:00:00.000000000 Z
11
+ date: 2016-11-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: camertron-eprun
@@ -71,7 +71,6 @@ files:
71
71
  - lib/twitter_cldr/collation/collator.rb
72
72
  - lib/twitter_cldr/collation/implicit_collation_elements.rb
73
73
  - lib/twitter_cldr/collation/sort_key_builder.rb
74
- - lib/twitter_cldr/collation/trie.rb
75
74
  - lib/twitter_cldr/collation/trie_builder.rb
76
75
  - lib/twitter_cldr/collation/trie_loader.rb
77
76
  - lib/twitter_cldr/collation/trie_with_fallback.rb
@@ -143,6 +142,7 @@ files:
143
142
  - lib/twitter_cldr/resources/collation_tries_dumper.rb
144
143
  - lib/twitter_cldr/resources/custom_locales_resources_importer.rb
145
144
  - lib/twitter_cldr/resources/download.rb
145
+ - lib/twitter_cldr/resources/hyphenation_importer.rb
146
146
  - lib/twitter_cldr/resources/icu_based_importer.rb
147
147
  - lib/twitter_cldr/resources/language_codes_importer.rb
148
148
  - lib/twitter_cldr/resources/loader.rb
@@ -175,6 +175,7 @@ files:
175
175
  - lib/twitter_cldr/resources/regexp_ast_generator.rb
176
176
  - lib/twitter_cldr/resources/segment_tests_importer.rb
177
177
  - lib/twitter_cldr/resources/tailoring_importer.rb
178
+ - lib/twitter_cldr/resources/transform_test_importer.rb
178
179
  - lib/twitter_cldr/resources/uli.rb
179
180
  - lib/twitter_cldr/resources/uli/segment_exceptions_importer.rb
180
181
  - lib/twitter_cldr/resources/unicode_data_importer.rb
@@ -194,6 +195,7 @@ files:
194
195
  - lib/twitter_cldr/shared/caser.rb
195
196
  - lib/twitter_cldr/shared/code_point.rb
196
197
  - lib/twitter_cldr/shared/currencies.rb
198
+ - lib/twitter_cldr/shared/hyphenator.rb
197
199
  - lib/twitter_cldr/shared/language_codes.rb
198
200
  - lib/twitter_cldr/shared/languages.rb
199
201
  - lib/twitter_cldr/shared/likely_subtags.rb
@@ -229,6 +231,35 @@ files:
229
231
  - lib/twitter_cldr/tokenizers/token.rb
230
232
  - lib/twitter_cldr/tokenizers/tokenizer.rb
231
233
  - lib/twitter_cldr/tokenizers/unicode_regex/unicode_regex_tokenizer.rb
234
+ - lib/twitter_cldr/transforms.rb
235
+ - lib/twitter_cldr/transforms/comment_rule.rb
236
+ - lib/twitter_cldr/transforms/conversion_rule_set.rb
237
+ - lib/twitter_cldr/transforms/conversions.rb
238
+ - lib/twitter_cldr/transforms/conversions/conversion_rule.rb
239
+ - lib/twitter_cldr/transforms/conversions/parser.rb
240
+ - lib/twitter_cldr/transforms/conversions/side.rb
241
+ - lib/twitter_cldr/transforms/cursor.rb
242
+ - lib/twitter_cldr/transforms/filters.rb
243
+ - lib/twitter_cldr/transforms/filters/filter_rule.rb
244
+ - lib/twitter_cldr/transforms/filters/null_filter.rb
245
+ - lib/twitter_cldr/transforms/filters/regex_filter.rb
246
+ - lib/twitter_cldr/transforms/rule.rb
247
+ - lib/twitter_cldr/transforms/rule_match.rb
248
+ - lib/twitter_cldr/transforms/rule_set.rb
249
+ - lib/twitter_cldr/transforms/tokenizer.rb
250
+ - lib/twitter_cldr/transforms/transform_id.rb
251
+ - lib/twitter_cldr/transforms/transformer.rb
252
+ - lib/twitter_cldr/transforms/transforms.rb
253
+ - lib/twitter_cldr/transforms/transforms/break_internal_transform.rb
254
+ - lib/twitter_cldr/transforms/transforms/casing_transform.rb
255
+ - lib/twitter_cldr/transforms/transforms/named_transform.rb
256
+ - lib/twitter_cldr/transforms/transforms/normalization_transform.rb
257
+ - lib/twitter_cldr/transforms/transforms/null_transform.rb
258
+ - lib/twitter_cldr/transforms/transforms/parser.rb
259
+ - lib/twitter_cldr/transforms/transforms/transform_pair.rb
260
+ - lib/twitter_cldr/transforms/transforms/transform_rule.rb
261
+ - lib/twitter_cldr/transforms/transliterator.rb
262
+ - lib/twitter_cldr/transforms/variable_rule.rb
232
263
  - lib/twitter_cldr/utils.rb
233
264
  - lib/twitter_cldr/utils/code_points.rb
234
265
  - lib/twitter_cldr/utils/file_system_trie.rb
@@ -236,6 +267,7 @@ files:
236
267
  - lib/twitter_cldr/utils/regexp_ast.rb
237
268
  - lib/twitter_cldr/utils/regexp_sampler.rb
238
269
  - lib/twitter_cldr/utils/script_detector.rb
270
+ - lib/twitter_cldr/utils/trie.rb
239
271
  - lib/twitter_cldr/utils/yaml.rb
240
272
  - lib/twitter_cldr/version.rb
241
273
  - lib/twitter_cldr/versions.rb
@@ -1245,6 +1277,43 @@ files:
1245
1277
  - resources/locales/zh/units.yml
1246
1278
  - resources/shared/aliases.yml
1247
1279
  - resources/shared/currency_digits_and_rounding.yml
1280
+ - resources/shared/hyphenation/af-ZA.yml
1281
+ - resources/shared/hyphenation/bg-BG.yml
1282
+ - resources/shared/hyphenation/ca.yml
1283
+ - resources/shared/hyphenation/cs-CZ.yml
1284
+ - resources/shared/hyphenation/da-DK.yml
1285
+ - resources/shared/hyphenation/de-AT.yml
1286
+ - resources/shared/hyphenation/de-CH.yml
1287
+ - resources/shared/hyphenation/de-DE.yml
1288
+ - resources/shared/hyphenation/el-GR.yml
1289
+ - resources/shared/hyphenation/en-GB.yml
1290
+ - resources/shared/hyphenation/en-US.yml
1291
+ - resources/shared/hyphenation/es.yml
1292
+ - resources/shared/hyphenation/et-EE.yml
1293
+ - resources/shared/hyphenation/fr.yml
1294
+ - resources/shared/hyphenation/gl.yml
1295
+ - resources/shared/hyphenation/hr-HR.yml
1296
+ - resources/shared/hyphenation/hu-HU.yml
1297
+ - resources/shared/hyphenation/is.yml
1298
+ - resources/shared/hyphenation/it-IT.yml
1299
+ - resources/shared/hyphenation/lt.yml
1300
+ - resources/shared/hyphenation/lv-LV.yml
1301
+ - resources/shared/hyphenation/nb-NO.yml
1302
+ - resources/shared/hyphenation/nl-NL.yml
1303
+ - resources/shared/hyphenation/nn-NO.yml
1304
+ - resources/shared/hyphenation/pl-PL.yml
1305
+ - resources/shared/hyphenation/pt-BR.yml
1306
+ - resources/shared/hyphenation/pt-PT.yml
1307
+ - resources/shared/hyphenation/ro-RO.yml
1308
+ - resources/shared/hyphenation/ru-RU.yml
1309
+ - resources/shared/hyphenation/sk-SK.yml
1310
+ - resources/shared/hyphenation/sl-SI.yml
1311
+ - resources/shared/hyphenation/sr-Latn.yml
1312
+ - resources/shared/hyphenation/sr.yml
1313
+ - resources/shared/hyphenation/sv.yml
1314
+ - resources/shared/hyphenation/te-IN.yml
1315
+ - resources/shared/hyphenation/uk-UA.yml
1316
+ - resources/shared/hyphenation/zu-ZA.yml
1248
1317
  - resources/shared/iso_currency_symbols.yml
1249
1318
  - resources/shared/language_codes_table.dump
1250
1319
  - resources/shared/likely_subtags.yml
@@ -1256,6 +1325,245 @@ files:
1256
1325
  - resources/shared/segments/tests/sentence_break_test.yml
1257
1326
  - resources/shared/segments/tests/word_break_test.yml
1258
1327
  - resources/shared/territories_containment.yml
1328
+ - resources/shared/transforms/Amharic-Latin-BGN.yml
1329
+ - resources/shared/transforms/Amharic-Latin.yml
1330
+ - resources/shared/transforms/Any-Accents.yml
1331
+ - resources/shared/transforms/Any-Publishing.yml
1332
+ - resources/shared/transforms/Arabic-Latin-BGN.yml
1333
+ - resources/shared/transforms/Arabic-Latin.yml
1334
+ - resources/shared/transforms/Armenian-Latin-BGN.yml
1335
+ - resources/shared/transforms/Armenian-Latin.yml
1336
+ - resources/shared/transforms/Azerbaijani-Latin-BGN.yml
1337
+ - resources/shared/transforms/Azerbaijani-Latin.yml
1338
+ - resources/shared/transforms/Belarusian-Latin-BGN.yml
1339
+ - resources/shared/transforms/Belarusian-Latin.yml
1340
+ - resources/shared/transforms/Bengali-Devanagari.yml
1341
+ - resources/shared/transforms/Bengali-Gujarati.yml
1342
+ - resources/shared/transforms/Bengali-Gurmukhi.yml
1343
+ - resources/shared/transforms/Bengali-InterIndic.yml
1344
+ - resources/shared/transforms/Bengali-Kannada.yml
1345
+ - resources/shared/transforms/Bengali-Latin.yml
1346
+ - resources/shared/transforms/Bengali-Malayalam.yml
1347
+ - resources/shared/transforms/Bengali-Oriya.yml
1348
+ - resources/shared/transforms/Bengali-Tamil.yml
1349
+ - resources/shared/transforms/Bengali-Telugu.yml
1350
+ - resources/shared/transforms/Bulgarian-Latin-BGN.yml
1351
+ - resources/shared/transforms/Bulgarian-Latin.yml
1352
+ - resources/shared/transforms/Cyrillic-Latin.yml
1353
+ - resources/shared/transforms/Devanagari-Bengali.yml
1354
+ - resources/shared/transforms/Devanagari-Gujarati.yml
1355
+ - resources/shared/transforms/Devanagari-Gurmukhi.yml
1356
+ - resources/shared/transforms/Devanagari-InterIndic.yml
1357
+ - resources/shared/transforms/Devanagari-Kannada.yml
1358
+ - resources/shared/transforms/Devanagari-Latin.yml
1359
+ - resources/shared/transforms/Devanagari-Malayalam.yml
1360
+ - resources/shared/transforms/Devanagari-Oriya.yml
1361
+ - resources/shared/transforms/Devanagari-Tamil.yml
1362
+ - resources/shared/transforms/Devanagari-Telugu.yml
1363
+ - resources/shared/transforms/Fullwidth-Halfwidth.yml
1364
+ - resources/shared/transforms/Georgian-Latin-BGN.yml
1365
+ - resources/shared/transforms/Georgian-Latin.yml
1366
+ - resources/shared/transforms/Greek-Latin-BGN.yml
1367
+ - resources/shared/transforms/Greek-Latin-UNGEGN.yml
1368
+ - resources/shared/transforms/Greek-Latin.yml
1369
+ - resources/shared/transforms/Gujarati-Bengali.yml
1370
+ - resources/shared/transforms/Gujarati-Devanagari.yml
1371
+ - resources/shared/transforms/Gujarati-Gurmukhi.yml
1372
+ - resources/shared/transforms/Gujarati-InterIndic.yml
1373
+ - resources/shared/transforms/Gujarati-Kannada.yml
1374
+ - resources/shared/transforms/Gujarati-Latin.yml
1375
+ - resources/shared/transforms/Gujarati-Malayalam.yml
1376
+ - resources/shared/transforms/Gujarati-Oriya.yml
1377
+ - resources/shared/transforms/Gujarati-Tamil.yml
1378
+ - resources/shared/transforms/Gujarati-Telugu.yml
1379
+ - resources/shared/transforms/Gurmukhi-Bengali.yml
1380
+ - resources/shared/transforms/Gurmukhi-Devanagari.yml
1381
+ - resources/shared/transforms/Gurmukhi-Gujarati.yml
1382
+ - resources/shared/transforms/Gurmukhi-InterIndic.yml
1383
+ - resources/shared/transforms/Gurmukhi-Kannada.yml
1384
+ - resources/shared/transforms/Gurmukhi-Latin.yml
1385
+ - resources/shared/transforms/Gurmukhi-Malayalam.yml
1386
+ - resources/shared/transforms/Gurmukhi-Oriya.yml
1387
+ - resources/shared/transforms/Gurmukhi-Tamil.yml
1388
+ - resources/shared/transforms/Gurmukhi-Telugu.yml
1389
+ - resources/shared/transforms/Han-Latin-Names.yml
1390
+ - resources/shared/transforms/Han-Latin.yml
1391
+ - resources/shared/transforms/Han-Spacedhan.yml
1392
+ - resources/shared/transforms/Hangul-Latin.yml
1393
+ - resources/shared/transforms/Hebrew-Latin-BGN.yml
1394
+ - resources/shared/transforms/Hebrew-Latin.yml
1395
+ - resources/shared/transforms/Hiragana-Katakana.yml
1396
+ - resources/shared/transforms/Hiragana-Latin.yml
1397
+ - resources/shared/transforms/IPA-XSampa.yml
1398
+ - resources/shared/transforms/InterIndic-Bengali.yml
1399
+ - resources/shared/transforms/InterIndic-Devanagari.yml
1400
+ - resources/shared/transforms/InterIndic-Gujarati.yml
1401
+ - resources/shared/transforms/InterIndic-Gurmukhi.yml
1402
+ - resources/shared/transforms/InterIndic-Kannada.yml
1403
+ - resources/shared/transforms/InterIndic-Latin.yml
1404
+ - resources/shared/transforms/InterIndic-Malayalam.yml
1405
+ - resources/shared/transforms/InterIndic-Oriya.yml
1406
+ - resources/shared/transforms/InterIndic-Tamil.yml
1407
+ - resources/shared/transforms/InterIndic-Telugu.yml
1408
+ - resources/shared/transforms/Jamo-Latin.yml
1409
+ - resources/shared/transforms/JapaneseKana-Latin.yml
1410
+ - resources/shared/transforms/Kannada-Bengali.yml
1411
+ - resources/shared/transforms/Kannada-Devanagari.yml
1412
+ - resources/shared/transforms/Kannada-Gujarati.yml
1413
+ - resources/shared/transforms/Kannada-Gurmukhi.yml
1414
+ - resources/shared/transforms/Kannada-InterIndic.yml
1415
+ - resources/shared/transforms/Kannada-Latin.yml
1416
+ - resources/shared/transforms/Kannada-Malayalam.yml
1417
+ - resources/shared/transforms/Kannada-Oriya.yml
1418
+ - resources/shared/transforms/Kannada-Tamil.yml
1419
+ - resources/shared/transforms/Kannada-Telugu.yml
1420
+ - resources/shared/transforms/Katakana-Latin-BGN.yml
1421
+ - resources/shared/transforms/Katakana-Latin.yml
1422
+ - resources/shared/transforms/Kazakh-Latin-BGN.yml
1423
+ - resources/shared/transforms/Kazakh-Latin.yml
1424
+ - resources/shared/transforms/Kirghiz-Latin-BGN.yml
1425
+ - resources/shared/transforms/Kirghiz-Latin.yml
1426
+ - resources/shared/transforms/Korean-Latin-BGN.yml
1427
+ - resources/shared/transforms/Korean-Latin.yml
1428
+ - resources/shared/transforms/Latin-ASCII.yml
1429
+ - resources/shared/transforms/Latin-Armenian.yml
1430
+ - resources/shared/transforms/Latin-Bengali.yml
1431
+ - resources/shared/transforms/Latin-Bopomofo.yml
1432
+ - resources/shared/transforms/Latin-CanadianAboriginal.yml
1433
+ - resources/shared/transforms/Latin-ConjoiningJamo.yml
1434
+ - resources/shared/transforms/Latin-Devanagari.yml
1435
+ - resources/shared/transforms/Latin-Ethiopic.yml
1436
+ - resources/shared/transforms/Latin-Gujarati.yml
1437
+ - resources/shared/transforms/Latin-Gurmukhi.yml
1438
+ - resources/shared/transforms/Latin-Hangul.yml
1439
+ - resources/shared/transforms/Latin-InterIndic.yml
1440
+ - resources/shared/transforms/Latin-Jamo.yml
1441
+ - resources/shared/transforms/Latin-Kannada.yml
1442
+ - resources/shared/transforms/Latin-Katakana.yml
1443
+ - resources/shared/transforms/Latin-Malayalam.yml
1444
+ - resources/shared/transforms/Latin-NumericPinyin.yml
1445
+ - resources/shared/transforms/Latin-Oriya.yml
1446
+ - resources/shared/transforms/Latin-Tamil.yml
1447
+ - resources/shared/transforms/Latin-Telugu.yml
1448
+ - resources/shared/transforms/Latin-Thaana.yml
1449
+ - resources/shared/transforms/Latin-Thai.yml
1450
+ - resources/shared/transforms/Macedonian-Latin-BGN.yml
1451
+ - resources/shared/transforms/Macedonian-Latin.yml
1452
+ - resources/shared/transforms/Malayalam-Bengali.yml
1453
+ - resources/shared/transforms/Malayalam-Devanagari.yml
1454
+ - resources/shared/transforms/Malayalam-Gujarati.yml
1455
+ - resources/shared/transforms/Malayalam-Gurmukhi.yml
1456
+ - resources/shared/transforms/Malayalam-InterIndic.yml
1457
+ - resources/shared/transforms/Malayalam-Kannada.yml
1458
+ - resources/shared/transforms/Malayalam-Latin.yml
1459
+ - resources/shared/transforms/Malayalam-Oriya.yml
1460
+ - resources/shared/transforms/Malayalam-Tamil.yml
1461
+ - resources/shared/transforms/Malayalam-Telugu.yml
1462
+ - resources/shared/transforms/Maldivian-Latin-BGN.yml
1463
+ - resources/shared/transforms/Maldivian-Latin.yml
1464
+ - resources/shared/transforms/Mongolian-Latin-BGN.yml
1465
+ - resources/shared/transforms/Mongolian-Latin.yml
1466
+ - resources/shared/transforms/Oriya-Bengali.yml
1467
+ - resources/shared/transforms/Oriya-Devanagari.yml
1468
+ - resources/shared/transforms/Oriya-Gujarati.yml
1469
+ - resources/shared/transforms/Oriya-Gurmukhi.yml
1470
+ - resources/shared/transforms/Oriya-InterIndic.yml
1471
+ - resources/shared/transforms/Oriya-Kannada.yml
1472
+ - resources/shared/transforms/Oriya-Latin.yml
1473
+ - resources/shared/transforms/Oriya-Malayalam.yml
1474
+ - resources/shared/transforms/Oriya-Tamil.yml
1475
+ - resources/shared/transforms/Oriya-Telugu.yml
1476
+ - resources/shared/transforms/Pashto-Latin-BGN.yml
1477
+ - resources/shared/transforms/Pashto-Latin.yml
1478
+ - resources/shared/transforms/Persian-Latin-BGN.yml
1479
+ - resources/shared/transforms/Persian-Latin.yml
1480
+ - resources/shared/transforms/Pinyin-NumericPinyin.yml
1481
+ - resources/shared/transforms/Russian-Latin-BGN.yml
1482
+ - resources/shared/transforms/Russian-Latin.yml
1483
+ - resources/shared/transforms/Serbian-Latin-BGN.yml
1484
+ - resources/shared/transforms/Serbian-Latin.yml
1485
+ - resources/shared/transforms/Simplified-Traditional.yml
1486
+ - resources/shared/transforms/Syriac-Latin.yml
1487
+ - resources/shared/transforms/Tamil-Bengali.yml
1488
+ - resources/shared/transforms/Tamil-Devanagari.yml
1489
+ - resources/shared/transforms/Tamil-Gujarati.yml
1490
+ - resources/shared/transforms/Tamil-Gurmukhi.yml
1491
+ - resources/shared/transforms/Tamil-InterIndic.yml
1492
+ - resources/shared/transforms/Tamil-Kannada.yml
1493
+ - resources/shared/transforms/Tamil-Latin.yml
1494
+ - resources/shared/transforms/Tamil-Malayalam.yml
1495
+ - resources/shared/transforms/Tamil-Oriya.yml
1496
+ - resources/shared/transforms/Tamil-Telugu.yml
1497
+ - resources/shared/transforms/Telugu-Bengali.yml
1498
+ - resources/shared/transforms/Telugu-Devanagari.yml
1499
+ - resources/shared/transforms/Telugu-Gujarati.yml
1500
+ - resources/shared/transforms/Telugu-Gurmukhi.yml
1501
+ - resources/shared/transforms/Telugu-InterIndic.yml
1502
+ - resources/shared/transforms/Telugu-Kannada.yml
1503
+ - resources/shared/transforms/Telugu-Latin.yml
1504
+ - resources/shared/transforms/Telugu-Malayalam.yml
1505
+ - resources/shared/transforms/Telugu-Oriya.yml
1506
+ - resources/shared/transforms/Telugu-Tamil.yml
1507
+ - resources/shared/transforms/Thai-Latin.yml
1508
+ - resources/shared/transforms/Thai-ThaiLogical.yml
1509
+ - resources/shared/transforms/Thai-ThaiSemi.yml
1510
+ - resources/shared/transforms/ThaiLogical-Latin.yml
1511
+ - resources/shared/transforms/Turkmen-Latin-BGN.yml
1512
+ - resources/shared/transforms/Turkmen-Latin.yml
1513
+ - resources/shared/transforms/Ukrainian-Latin-BGN.yml
1514
+ - resources/shared/transforms/Ukrainian-Latin.yml
1515
+ - resources/shared/transforms/Uzbek-Latin-BGN.yml
1516
+ - resources/shared/transforms/Uzbek-Latin.yml
1517
+ - resources/shared/transforms/az-Lower.yml
1518
+ - resources/shared/transforms/az-Title.yml
1519
+ - resources/shared/transforms/az-Upper.yml
1520
+ - resources/shared/transforms/ch-ch_FONIPA.yml
1521
+ - resources/shared/transforms/cs-cs_FONIPA.yml
1522
+ - resources/shared/transforms/cs-ja.yml
1523
+ - resources/shared/transforms/cs-ko.yml
1524
+ - resources/shared/transforms/cs_FONIPA-ja.yml
1525
+ - resources/shared/transforms/cs_FONIPA-ko.yml
1526
+ - resources/shared/transforms/dsb-dsb_FONIPA.yml
1527
+ - resources/shared/transforms/el-Lower.yml
1528
+ - resources/shared/transforms/el-Title.yml
1529
+ - resources/shared/transforms/el-Upper.yml
1530
+ - resources/shared/transforms/es-am.yml
1531
+ - resources/shared/transforms/es-es_FONIPA.yml
1532
+ - resources/shared/transforms/es-ja.yml
1533
+ - resources/shared/transforms/es-zh.yml
1534
+ - resources/shared/transforms/es_419-ja.yml
1535
+ - resources/shared/transforms/es_419-zh.yml
1536
+ - resources/shared/transforms/es_FONIPA-am.yml
1537
+ - resources/shared/transforms/es_FONIPA-es_419_FONIPA.yml
1538
+ - resources/shared/transforms/es_FONIPA-ja.yml
1539
+ - resources/shared/transforms/es_FONIPA-zh.yml
1540
+ - resources/shared/transforms/it-am.yml
1541
+ - resources/shared/transforms/it-ja.yml
1542
+ - resources/shared/transforms/ja_Latn-ko.yml
1543
+ - resources/shared/transforms/ja_Latn-ru.yml
1544
+ - resources/shared/transforms/la-la_FONIPA.yml
1545
+ - resources/shared/transforms/lt-Lower.yml
1546
+ - resources/shared/transforms/lt-Title.yml
1547
+ - resources/shared/transforms/lt-Upper.yml
1548
+ - resources/shared/transforms/nl-Title.yml
1549
+ - resources/shared/transforms/pl-ja.yml
1550
+ - resources/shared/transforms/pl-pl_FONIPA.yml
1551
+ - resources/shared/transforms/pl_FONIPA-ja.yml
1552
+ - resources/shared/transforms/ro-ja.yml
1553
+ - resources/shared/transforms/ro-ro_FONIPA.yml
1554
+ - resources/shared/transforms/ro_FONIPA-ja.yml
1555
+ - resources/shared/transforms/ru-ja.yml
1556
+ - resources/shared/transforms/ru-zh.yml
1557
+ - resources/shared/transforms/sk-ja.yml
1558
+ - resources/shared/transforms/sk-sk_FONIPA.yml
1559
+ - resources/shared/transforms/sk_FONIPA-ja.yml
1560
+ - resources/shared/transforms/tlh-tlh_FONIPA.yml
1561
+ - resources/shared/transforms/tr-Lower.yml
1562
+ - resources/shared/transforms/tr-Title.yml
1563
+ - resources/shared/transforms/tr-Upper.yml
1564
+ - resources/shared/transforms/uz_Cyrl-uz_Latn.yml
1565
+ - resources/shared/transforms/yo-yo_BJ.yml
1566
+ - resources/shared/transforms/zh_Latn_PINYIN-ru.yml
1259
1567
  - resources/shared/variables.yml
1260
1568
  - resources/uli/segments/de.yml
1261
1569
  - resources/uli/segments/en.yml
@@ -1544,6 +1852,8 @@ files:
1544
1852
  - resources/unicode_data/properties/Age/6.1/value.dump
1545
1853
  - resources/unicode_data/properties/Age/6.2/value.dump
1546
1854
  - resources/unicode_data/properties/Age/6.3/value.dump
1855
+ - resources/unicode_data/properties/Age/7.0/value.dump
1856
+ - resources/unicode_data/properties/Age/8.0/value.dump
1547
1857
  - resources/unicode_data/properties/Alphabetic/value.dump
1548
1858
  - resources/unicode_data/properties/Bidi_Class/AL/value.dump
1549
1859
  - resources/unicode_data/properties/Bidi_Class/AN/value.dump
@@ -1571,9 +1881,13 @@ files:
1571
1881
  - resources/unicode_data/properties/Bidi_Control/value.dump
1572
1882
  - resources/unicode_data/properties/Bidi_Mirrored/N/value.dump
1573
1883
  - resources/unicode_data/properties/Bidi_Mirrored/Y/value.dump
1884
+ - resources/unicode_data/properties/Bidi_Paired_Bracket_Type/Close/value.dump
1885
+ - resources/unicode_data/properties/Bidi_Paired_Bracket_Type/Open/value.dump
1574
1886
  - resources/unicode_data/properties/Block/Aegean Numbers/value.dump
1887
+ - resources/unicode_data/properties/Block/Ahom/value.dump
1575
1888
  - resources/unicode_data/properties/Block/Alchemical Symbols/value.dump
1576
1889
  - resources/unicode_data/properties/Block/Alphabetic Presentation Forms/value.dump
1890
+ - resources/unicode_data/properties/Block/Anatolian Hieroglyphs/value.dump
1577
1891
  - resources/unicode_data/properties/Block/Ancient Greek Musical Notation/value.dump
1578
1892
  - resources/unicode_data/properties/Block/Ancient Greek Numbers/value.dump
1579
1893
  - resources/unicode_data/properties/Block/Ancient Symbols/value.dump
@@ -1590,6 +1904,7 @@ files:
1590
1904
  - resources/unicode_data/properties/Block/Bamum Supplement/value.dump
1591
1905
  - resources/unicode_data/properties/Block/Bamum/value.dump
1592
1906
  - resources/unicode_data/properties/Block/Basic Latin/value.dump
1907
+ - resources/unicode_data/properties/Block/Bassa Vah/value.dump
1593
1908
  - resources/unicode_data/properties/Block/Batak/value.dump
1594
1909
  - resources/unicode_data/properties/Block/Bengali/value.dump
1595
1910
  - resources/unicode_data/properties/Block/Block Elements/value.dump
@@ -1612,17 +1927,22 @@ files:
1612
1927
  - resources/unicode_data/properties/Block/CJK Unified Ideographs Extension B/value.dump
1613
1928
  - resources/unicode_data/properties/Block/CJK Unified Ideographs Extension C/value.dump
1614
1929
  - resources/unicode_data/properties/Block/CJK Unified Ideographs Extension D/value.dump
1930
+ - resources/unicode_data/properties/Block/CJK Unified Ideographs Extension E/value.dump
1615
1931
  - resources/unicode_data/properties/Block/CJK Unified Ideographs/value.dump
1616
1932
  - resources/unicode_data/properties/Block/Carian/value.dump
1933
+ - resources/unicode_data/properties/Block/Caucasian Albanian/value.dump
1617
1934
  - resources/unicode_data/properties/Block/Chakma/value.dump
1618
1935
  - resources/unicode_data/properties/Block/Cham/value.dump
1936
+ - resources/unicode_data/properties/Block/Cherokee Supplement/value.dump
1619
1937
  - resources/unicode_data/properties/Block/Cherokee/value.dump
1938
+ - resources/unicode_data/properties/Block/Combining Diacritical Marks Extended/value.dump
1620
1939
  - resources/unicode_data/properties/Block/Combining Diacritical Marks Supplement/value.dump
1621
1940
  - resources/unicode_data/properties/Block/Combining Diacritical Marks for Symbols/value.dump
1622
1941
  - resources/unicode_data/properties/Block/Combining Diacritical Marks/value.dump
1623
1942
  - resources/unicode_data/properties/Block/Combining Half Marks/value.dump
1624
1943
  - resources/unicode_data/properties/Block/Common Indic Number Forms/value.dump
1625
1944
  - resources/unicode_data/properties/Block/Control Pictures/value.dump
1945
+ - resources/unicode_data/properties/Block/Coptic Epact Numbers/value.dump
1626
1946
  - resources/unicode_data/properties/Block/Coptic/value.dump
1627
1947
  - resources/unicode_data/properties/Block/Counting Rod Numerals/value.dump
1628
1948
  - resources/unicode_data/properties/Block/Cuneiform Numbers and Punctuation/value.dump
@@ -1638,7 +1958,10 @@ files:
1638
1958
  - resources/unicode_data/properties/Block/Devanagari/value.dump
1639
1959
  - resources/unicode_data/properties/Block/Dingbats/value.dump
1640
1960
  - resources/unicode_data/properties/Block/Domino Tiles/value.dump
1961
+ - resources/unicode_data/properties/Block/Duployan/value.dump
1962
+ - resources/unicode_data/properties/Block/Early Dynastic Cuneiform/value.dump
1641
1963
  - resources/unicode_data/properties/Block/Egyptian Hieroglyphs/value.dump
1964
+ - resources/unicode_data/properties/Block/Elbasan/value.dump
1642
1965
  - resources/unicode_data/properties/Block/Emoticons/value.dump
1643
1966
  - resources/unicode_data/properties/Block/Enclosed Alphanumeric Supplement/value.dump
1644
1967
  - resources/unicode_data/properties/Block/Enclosed Alphanumerics/value.dump
@@ -1649,11 +1972,13 @@ files:
1649
1972
  - resources/unicode_data/properties/Block/Ethiopic Supplement/value.dump
1650
1973
  - resources/unicode_data/properties/Block/Ethiopic/value.dump
1651
1974
  - resources/unicode_data/properties/Block/General Punctuation/value.dump
1975
+ - resources/unicode_data/properties/Block/Geometric Shapes Extended/value.dump
1652
1976
  - resources/unicode_data/properties/Block/Geometric Shapes/value.dump
1653
1977
  - resources/unicode_data/properties/Block/Georgian Supplement/value.dump
1654
1978
  - resources/unicode_data/properties/Block/Georgian/value.dump
1655
1979
  - resources/unicode_data/properties/Block/Glagolitic/value.dump
1656
1980
  - resources/unicode_data/properties/Block/Gothic/value.dump
1981
+ - resources/unicode_data/properties/Block/Grantha/value.dump
1657
1982
  - resources/unicode_data/properties/Block/Greek Extended/value.dump
1658
1983
  - resources/unicode_data/properties/Block/Greek and Coptic/value.dump
1659
1984
  - resources/unicode_data/properties/Block/Gujarati/value.dump
@@ -1665,6 +1990,7 @@ files:
1665
1990
  - resources/unicode_data/properties/Block/Hangul Jamo/value.dump
1666
1991
  - resources/unicode_data/properties/Block/Hangul Syllables/value.dump
1667
1992
  - resources/unicode_data/properties/Block/Hanunoo/value.dump
1993
+ - resources/unicode_data/properties/Block/Hatran/value.dump
1668
1994
  - resources/unicode_data/properties/Block/Hebrew/value.dump
1669
1995
  - resources/unicode_data/properties/Block/High Private Use Surrogates/value.dump
1670
1996
  - resources/unicode_data/properties/Block/High Surrogates/value.dump
@@ -1686,29 +2012,36 @@ files:
1686
2012
  - resources/unicode_data/properties/Block/Kharoshthi/value.dump
1687
2013
  - resources/unicode_data/properties/Block/Khmer Symbols/value.dump
1688
2014
  - resources/unicode_data/properties/Block/Khmer/value.dump
2015
+ - resources/unicode_data/properties/Block/Khojki/value.dump
2016
+ - resources/unicode_data/properties/Block/Khudawadi/value.dump
1689
2017
  - resources/unicode_data/properties/Block/Lao/value.dump
1690
2018
  - resources/unicode_data/properties/Block/Latin Extended Additional/value.dump
1691
2019
  - resources/unicode_data/properties/Block/Latin Extended-A/value.dump
1692
2020
  - resources/unicode_data/properties/Block/Latin Extended-B/value.dump
1693
2021
  - resources/unicode_data/properties/Block/Latin Extended-C/value.dump
1694
2022
  - resources/unicode_data/properties/Block/Latin Extended-D/value.dump
2023
+ - resources/unicode_data/properties/Block/Latin Extended-E/value.dump
1695
2024
  - resources/unicode_data/properties/Block/Latin-1 Supplement/value.dump
1696
2025
  - resources/unicode_data/properties/Block/Lepcha/value.dump
1697
2026
  - resources/unicode_data/properties/Block/Letterlike Symbols/value.dump
1698
2027
  - resources/unicode_data/properties/Block/Limbu/value.dump
2028
+ - resources/unicode_data/properties/Block/Linear A/value.dump
1699
2029
  - resources/unicode_data/properties/Block/Linear B Ideograms/value.dump
1700
2030
  - resources/unicode_data/properties/Block/Linear B Syllabary/value.dump
1701
2031
  - resources/unicode_data/properties/Block/Lisu/value.dump
1702
2032
  - resources/unicode_data/properties/Block/Low Surrogates/value.dump
1703
2033
  - resources/unicode_data/properties/Block/Lycian/value.dump
1704
2034
  - resources/unicode_data/properties/Block/Lydian/value.dump
2035
+ - resources/unicode_data/properties/Block/Mahajani/value.dump
1705
2036
  - resources/unicode_data/properties/Block/Mahjong Tiles/value.dump
1706
2037
  - resources/unicode_data/properties/Block/Malayalam/value.dump
1707
2038
  - resources/unicode_data/properties/Block/Mandaic/value.dump
2039
+ - resources/unicode_data/properties/Block/Manichaean/value.dump
1708
2040
  - resources/unicode_data/properties/Block/Mathematical Alphanumeric Symbols/value.dump
1709
2041
  - resources/unicode_data/properties/Block/Mathematical Operators/value.dump
1710
2042
  - resources/unicode_data/properties/Block/Meetei Mayek Extensions/value.dump
1711
2043
  - resources/unicode_data/properties/Block/Meetei Mayek/value.dump
2044
+ - resources/unicode_data/properties/Block/Mende Kikakui/value.dump
1712
2045
  - resources/unicode_data/properties/Block/Meroitic Cursive/value.dump
1713
2046
  - resources/unicode_data/properties/Block/Meroitic Hieroglyphs/value.dump
1714
2047
  - resources/unicode_data/properties/Block/Miao/value.dump
@@ -1718,23 +2051,35 @@ files:
1718
2051
  - resources/unicode_data/properties/Block/Miscellaneous Symbols and Arrows/value.dump
1719
2052
  - resources/unicode_data/properties/Block/Miscellaneous Symbols/value.dump
1720
2053
  - resources/unicode_data/properties/Block/Miscellaneous Technical/value.dump
2054
+ - resources/unicode_data/properties/Block/Modi/value.dump
1721
2055
  - resources/unicode_data/properties/Block/Modifier Tone Letters/value.dump
1722
2056
  - resources/unicode_data/properties/Block/Mongolian/value.dump
2057
+ - resources/unicode_data/properties/Block/Mro/value.dump
2058
+ - resources/unicode_data/properties/Block/Multani/value.dump
1723
2059
  - resources/unicode_data/properties/Block/Musical Symbols/value.dump
1724
2060
  - resources/unicode_data/properties/Block/Myanmar Extended-A/value.dump
2061
+ - resources/unicode_data/properties/Block/Myanmar Extended-B/value.dump
1725
2062
  - resources/unicode_data/properties/Block/Myanmar/value.dump
1726
2063
  - resources/unicode_data/properties/Block/NKo/value.dump
2064
+ - resources/unicode_data/properties/Block/Nabataean/value.dump
1727
2065
  - resources/unicode_data/properties/Block/New Tai Lue/value.dump
1728
2066
  - resources/unicode_data/properties/Block/Number Forms/value.dump
1729
2067
  - resources/unicode_data/properties/Block/Ogham/value.dump
1730
2068
  - resources/unicode_data/properties/Block/Ol Chiki/value.dump
2069
+ - resources/unicode_data/properties/Block/Old Hungarian/value.dump
1731
2070
  - resources/unicode_data/properties/Block/Old Italic/value.dump
2071
+ - resources/unicode_data/properties/Block/Old North Arabian/value.dump
2072
+ - resources/unicode_data/properties/Block/Old Permic/value.dump
1732
2073
  - resources/unicode_data/properties/Block/Old Persian/value.dump
1733
2074
  - resources/unicode_data/properties/Block/Old South Arabian/value.dump
1734
2075
  - resources/unicode_data/properties/Block/Old Turkic/value.dump
1735
2076
  - resources/unicode_data/properties/Block/Optical Character Recognition/value.dump
1736
2077
  - resources/unicode_data/properties/Block/Oriya/value.dump
2078
+ - resources/unicode_data/properties/Block/Ornamental Dingbats/value.dump
1737
2079
  - resources/unicode_data/properties/Block/Osmanya/value.dump
2080
+ - resources/unicode_data/properties/Block/Pahawh Hmong/value.dump
2081
+ - resources/unicode_data/properties/Block/Palmyrene/value.dump
2082
+ - resources/unicode_data/properties/Block/Pau Cin Hau/value.dump
1738
2083
  - resources/unicode_data/properties/Block/Phags-pa/value.dump
1739
2084
  - resources/unicode_data/properties/Block/Phaistos Disc/value.dump
1740
2085
  - resources/unicode_data/properties/Block/Phoenician/value.dump
@@ -1742,6 +2087,7 @@ files:
1742
2087
  - resources/unicode_data/properties/Block/Phonetic Extensions/value.dump
1743
2088
  - resources/unicode_data/properties/Block/Playing Cards/value.dump
1744
2089
  - resources/unicode_data/properties/Block/Private Use Area/value.dump
2090
+ - resources/unicode_data/properties/Block/Psalter Pahlavi/value.dump
1745
2091
  - resources/unicode_data/properties/Block/Rejang/value.dump
1746
2092
  - resources/unicode_data/properties/Block/Rumi Numeral Symbols/value.dump
1747
2093
  - resources/unicode_data/properties/Block/Runic/value.dump
@@ -1749,6 +2095,9 @@ files:
1749
2095
  - resources/unicode_data/properties/Block/Saurashtra/value.dump
1750
2096
  - resources/unicode_data/properties/Block/Sharada/value.dump
1751
2097
  - resources/unicode_data/properties/Block/Shavian/value.dump
2098
+ - resources/unicode_data/properties/Block/Shorthand Format Controls/value.dump
2099
+ - resources/unicode_data/properties/Block/Siddham/value.dump
2100
+ - resources/unicode_data/properties/Block/Sinhala Archaic Numbers/value.dump
1752
2101
  - resources/unicode_data/properties/Block/Sinhala/value.dump
1753
2102
  - resources/unicode_data/properties/Block/Small Form Variants/value.dump
1754
2103
  - resources/unicode_data/properties/Block/Sora Sompeng/value.dump
@@ -1759,10 +2108,13 @@ files:
1759
2108
  - resources/unicode_data/properties/Block/Superscripts and Subscripts/value.dump
1760
2109
  - resources/unicode_data/properties/Block/Supplemental Arrows-A/value.dump
1761
2110
  - resources/unicode_data/properties/Block/Supplemental Arrows-B/value.dump
2111
+ - resources/unicode_data/properties/Block/Supplemental Arrows-C/value.dump
1762
2112
  - resources/unicode_data/properties/Block/Supplemental Mathematical Operators/value.dump
1763
2113
  - resources/unicode_data/properties/Block/Supplemental Punctuation/value.dump
2114
+ - resources/unicode_data/properties/Block/Supplemental Symbols and Pictographs/value.dump
1764
2115
  - resources/unicode_data/properties/Block/Supplementary Private Use Area-A/value.dump
1765
2116
  - resources/unicode_data/properties/Block/Supplementary Private Use Area-B/value.dump
2117
+ - resources/unicode_data/properties/Block/Sutton SignWriting/value.dump
1766
2118
  - resources/unicode_data/properties/Block/Syloti Nagri/value.dump
1767
2119
  - resources/unicode_data/properties/Block/Syriac/value.dump
1768
2120
  - resources/unicode_data/properties/Block/Tagalog/value.dump
@@ -1779,6 +2131,7 @@ files:
1779
2131
  - resources/unicode_data/properties/Block/Thai/value.dump
1780
2132
  - resources/unicode_data/properties/Block/Tibetan/value.dump
1781
2133
  - resources/unicode_data/properties/Block/Tifinagh/value.dump
2134
+ - resources/unicode_data/properties/Block/Tirhuta/value.dump
1782
2135
  - resources/unicode_data/properties/Block/Transport And Map Symbols/value.dump
1783
2136
  - resources/unicode_data/properties/Block/Ugaritic/value.dump
1784
2137
  - resources/unicode_data/properties/Block/Unified Canadian Aboriginal Syllabics Extended/value.dump
@@ -1788,6 +2141,7 @@ files:
1788
2141
  - resources/unicode_data/properties/Block/Variation Selectors/value.dump
1789
2142
  - resources/unicode_data/properties/Block/Vedic Extensions/value.dump
1790
2143
  - resources/unicode_data/properties/Block/Vertical Forms/value.dump
2144
+ - resources/unicode_data/properties/Block/Warang Citi/value.dump
1791
2145
  - resources/unicode_data/properties/Block/Yi Radicals/value.dump
1792
2146
  - resources/unicode_data/properties/Block/Yi Syllables/value.dump
1793
2147
  - resources/unicode_data/properties/Block/Yijing Hexagram Symbols/value.dump
@@ -1935,17 +2289,32 @@ files:
1935
2289
  - resources/unicode_data/properties/Indic_Positional_Category/Visual_Order_Left/value.dump
1936
2290
  - resources/unicode_data/properties/Indic_Syllabic_Category/Avagraha/value.dump
1937
2291
  - resources/unicode_data/properties/Indic_Syllabic_Category/Bindu/value.dump
2292
+ - resources/unicode_data/properties/Indic_Syllabic_Category/Brahmi_Joining_Number/value.dump
2293
+ - resources/unicode_data/properties/Indic_Syllabic_Category/Cantillation_Mark/value.dump
1938
2294
  - resources/unicode_data/properties/Indic_Syllabic_Category/Consonant/value.dump
1939
2295
  - resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Dead/value.dump
1940
2296
  - resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Final/value.dump
1941
2297
  - resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Head_Letter/value.dump
2298
+ - resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Killer/value.dump
1942
2299
  - resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Medial/value.dump
1943
2300
  - resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Placeholder/value.dump
2301
+ - resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Preceding_Repha/value.dump
2302
+ - resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Prefixed/value.dump
1944
2303
  - resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Repha/value.dump
1945
2304
  - resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Subjoined/value.dump
2305
+ - resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Succeeding_Repha/value.dump
2306
+ - resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_With_Stacker/value.dump
2307
+ - resources/unicode_data/properties/Indic_Syllabic_Category/Gemination_Mark/value.dump
2308
+ - resources/unicode_data/properties/Indic_Syllabic_Category/Invisible_Stacker/value.dump
2309
+ - resources/unicode_data/properties/Indic_Syllabic_Category/Joiner/value.dump
1946
2310
  - resources/unicode_data/properties/Indic_Syllabic_Category/Modifying_Letter/value.dump
2311
+ - resources/unicode_data/properties/Indic_Syllabic_Category/Non_Joiner/value.dump
1947
2312
  - resources/unicode_data/properties/Indic_Syllabic_Category/Nukta/value.dump
2313
+ - resources/unicode_data/properties/Indic_Syllabic_Category/Number/value.dump
2314
+ - resources/unicode_data/properties/Indic_Syllabic_Category/Number_Joiner/value.dump
2315
+ - resources/unicode_data/properties/Indic_Syllabic_Category/Pure_Killer/value.dump
1948
2316
  - resources/unicode_data/properties/Indic_Syllabic_Category/Register_Shifter/value.dump
2317
+ - resources/unicode_data/properties/Indic_Syllabic_Category/Syllable_Modifier/value.dump
1949
2318
  - resources/unicode_data/properties/Indic_Syllabic_Category/Tone_Letter/value.dump
1950
2319
  - resources/unicode_data/properties/Indic_Syllabic_Category/Tone_Mark/value.dump
1951
2320
  - resources/unicode_data/properties/Indic_Syllabic_Category/Virama/value.dump
@@ -2007,6 +2376,97 @@ files:
2007
2376
  - resources/unicode_data/properties/Jamo_Short_Name/YU/value.dump
2008
2377
  - resources/unicode_data/properties/Jamo_Short_Name/value.dump
2009
2378
  - resources/unicode_data/properties/Join_Control/value.dump
2379
+ - resources/unicode_data/properties/Joining_Group/AIN/value.dump
2380
+ - resources/unicode_data/properties/Joining_Group/ALAPH/value.dump
2381
+ - resources/unicode_data/properties/Joining_Group/ALEF/value.dump
2382
+ - resources/unicode_data/properties/Joining_Group/BEH/value.dump
2383
+ - resources/unicode_data/properties/Joining_Group/BETH/value.dump
2384
+ - resources/unicode_data/properties/Joining_Group/BURUSHASKI YEH BARREE/value.dump
2385
+ - resources/unicode_data/properties/Joining_Group/DAL/value.dump
2386
+ - resources/unicode_data/properties/Joining_Group/DALATH RISH/value.dump
2387
+ - resources/unicode_data/properties/Joining_Group/E/value.dump
2388
+ - resources/unicode_data/properties/Joining_Group/FARSI YEH/value.dump
2389
+ - resources/unicode_data/properties/Joining_Group/FE/value.dump
2390
+ - resources/unicode_data/properties/Joining_Group/FEH/value.dump
2391
+ - resources/unicode_data/properties/Joining_Group/FINAL SEMKATH/value.dump
2392
+ - resources/unicode_data/properties/Joining_Group/GAF/value.dump
2393
+ - resources/unicode_data/properties/Joining_Group/GAMAL/value.dump
2394
+ - resources/unicode_data/properties/Joining_Group/HAH/value.dump
2395
+ - resources/unicode_data/properties/Joining_Group/HE/value.dump
2396
+ - resources/unicode_data/properties/Joining_Group/HEH GOAL/value.dump
2397
+ - resources/unicode_data/properties/Joining_Group/HEH/value.dump
2398
+ - resources/unicode_data/properties/Joining_Group/HETH/value.dump
2399
+ - resources/unicode_data/properties/Joining_Group/KAF/value.dump
2400
+ - resources/unicode_data/properties/Joining_Group/KAPH/value.dump
2401
+ - resources/unicode_data/properties/Joining_Group/KHAPH/value.dump
2402
+ - resources/unicode_data/properties/Joining_Group/KNOTTED HEH/value.dump
2403
+ - resources/unicode_data/properties/Joining_Group/LAM/value.dump
2404
+ - resources/unicode_data/properties/Joining_Group/LAMADH/value.dump
2405
+ - resources/unicode_data/properties/Joining_Group/MANICHAEAN ALEPH/value.dump
2406
+ - resources/unicode_data/properties/Joining_Group/MANICHAEAN AYIN/value.dump
2407
+ - resources/unicode_data/properties/Joining_Group/MANICHAEAN BETH/value.dump
2408
+ - resources/unicode_data/properties/Joining_Group/MANICHAEAN DALETH/value.dump
2409
+ - resources/unicode_data/properties/Joining_Group/MANICHAEAN DHAMEDH/value.dump
2410
+ - resources/unicode_data/properties/Joining_Group/MANICHAEAN FIVE/value.dump
2411
+ - resources/unicode_data/properties/Joining_Group/MANICHAEAN GIMEL/value.dump
2412
+ - resources/unicode_data/properties/Joining_Group/MANICHAEAN HETH/value.dump
2413
+ - resources/unicode_data/properties/Joining_Group/MANICHAEAN HUNDRED/value.dump
2414
+ - resources/unicode_data/properties/Joining_Group/MANICHAEAN KAPH/value.dump
2415
+ - resources/unicode_data/properties/Joining_Group/MANICHAEAN LAMEDH/value.dump
2416
+ - resources/unicode_data/properties/Joining_Group/MANICHAEAN MEM/value.dump
2417
+ - resources/unicode_data/properties/Joining_Group/MANICHAEAN NUN/value.dump
2418
+ - resources/unicode_data/properties/Joining_Group/MANICHAEAN ONE/value.dump
2419
+ - resources/unicode_data/properties/Joining_Group/MANICHAEAN PE/value.dump
2420
+ - resources/unicode_data/properties/Joining_Group/MANICHAEAN QOPH/value.dump
2421
+ - resources/unicode_data/properties/Joining_Group/MANICHAEAN RESH/value.dump
2422
+ - resources/unicode_data/properties/Joining_Group/MANICHAEAN SADHE/value.dump
2423
+ - resources/unicode_data/properties/Joining_Group/MANICHAEAN SAMEKH/value.dump
2424
+ - resources/unicode_data/properties/Joining_Group/MANICHAEAN TAW/value.dump
2425
+ - resources/unicode_data/properties/Joining_Group/MANICHAEAN TEN/value.dump
2426
+ - resources/unicode_data/properties/Joining_Group/MANICHAEAN TETH/value.dump
2427
+ - resources/unicode_data/properties/Joining_Group/MANICHAEAN THAMEDH/value.dump
2428
+ - resources/unicode_data/properties/Joining_Group/MANICHAEAN TWENTY/value.dump
2429
+ - resources/unicode_data/properties/Joining_Group/MANICHAEAN WAW/value.dump
2430
+ - resources/unicode_data/properties/Joining_Group/MANICHAEAN YODH/value.dump
2431
+ - resources/unicode_data/properties/Joining_Group/MANICHAEAN ZAYIN/value.dump
2432
+ - resources/unicode_data/properties/Joining_Group/MEEM/value.dump
2433
+ - resources/unicode_data/properties/Joining_Group/MIM/value.dump
2434
+ - resources/unicode_data/properties/Joining_Group/NOON/value.dump
2435
+ - resources/unicode_data/properties/Joining_Group/NUN/value.dump
2436
+ - resources/unicode_data/properties/Joining_Group/NYA/value.dump
2437
+ - resources/unicode_data/properties/Joining_Group/No_Joining_Group/value.dump
2438
+ - resources/unicode_data/properties/Joining_Group/PE/value.dump
2439
+ - resources/unicode_data/properties/Joining_Group/QAF/value.dump
2440
+ - resources/unicode_data/properties/Joining_Group/QAPH/value.dump
2441
+ - resources/unicode_data/properties/Joining_Group/REH/value.dump
2442
+ - resources/unicode_data/properties/Joining_Group/REVERSED PE/value.dump
2443
+ - resources/unicode_data/properties/Joining_Group/ROHINGYA YEH/value.dump
2444
+ - resources/unicode_data/properties/Joining_Group/SAD/value.dump
2445
+ - resources/unicode_data/properties/Joining_Group/SADHE/value.dump
2446
+ - resources/unicode_data/properties/Joining_Group/SEEN/value.dump
2447
+ - resources/unicode_data/properties/Joining_Group/SEMKATH/value.dump
2448
+ - resources/unicode_data/properties/Joining_Group/SHIN/value.dump
2449
+ - resources/unicode_data/properties/Joining_Group/STRAIGHT WAW/value.dump
2450
+ - resources/unicode_data/properties/Joining_Group/SWASH KAF/value.dump
2451
+ - resources/unicode_data/properties/Joining_Group/SYRIAC WAW/value.dump
2452
+ - resources/unicode_data/properties/Joining_Group/TAH/value.dump
2453
+ - resources/unicode_data/properties/Joining_Group/TAW/value.dump
2454
+ - resources/unicode_data/properties/Joining_Group/TEH MARBUTA GOAL/value.dump
2455
+ - resources/unicode_data/properties/Joining_Group/TEH MARBUTA/value.dump
2456
+ - resources/unicode_data/properties/Joining_Group/TETH/value.dump
2457
+ - resources/unicode_data/properties/Joining_Group/WAW/value.dump
2458
+ - resources/unicode_data/properties/Joining_Group/YEH BARREE/value.dump
2459
+ - resources/unicode_data/properties/Joining_Group/YEH WITH TAIL/value.dump
2460
+ - resources/unicode_data/properties/Joining_Group/YEH/value.dump
2461
+ - resources/unicode_data/properties/Joining_Group/YUDH HE/value.dump
2462
+ - resources/unicode_data/properties/Joining_Group/YUDH/value.dump
2463
+ - resources/unicode_data/properties/Joining_Group/ZAIN/value.dump
2464
+ - resources/unicode_data/properties/Joining_Group/ZHAIN/value.dump
2465
+ - resources/unicode_data/properties/Joining_Type/Dual_Joining/value.dump
2466
+ - resources/unicode_data/properties/Joining_Type/Join_Causing/value.dump
2467
+ - resources/unicode_data/properties/Joining_Type/Left_Joining/value.dump
2468
+ - resources/unicode_data/properties/Joining_Type/Non_Joining/value.dump
2469
+ - resources/unicode_data/properties/Joining_Type/Right_Joining/value.dump
2010
2470
  - resources/unicode_data/properties/Line_Break/AI/value.dump
2011
2471
  - resources/unicode_data/properties/Line_Break/AL/value.dump
2012
2472
  - resources/unicode_data/properties/Line_Break/B2/value.dump
@@ -2075,11 +2535,14 @@ files:
2075
2535
  - resources/unicode_data/properties/Quotation_Mark/value.dump
2076
2536
  - resources/unicode_data/properties/Radical/value.dump
2077
2537
  - resources/unicode_data/properties/STerm/value.dump
2538
+ - resources/unicode_data/properties/Script/Ahom/value.dump
2539
+ - resources/unicode_data/properties/Script/Anatolian_Hieroglyphs/value.dump
2078
2540
  - resources/unicode_data/properties/Script/Arabic/value.dump
2079
2541
  - resources/unicode_data/properties/Script/Armenian/value.dump
2080
2542
  - resources/unicode_data/properties/Script/Avestan/value.dump
2081
2543
  - resources/unicode_data/properties/Script/Balinese/value.dump
2082
2544
  - resources/unicode_data/properties/Script/Bamum/value.dump
2545
+ - resources/unicode_data/properties/Script/Bassa_Vah/value.dump
2083
2546
  - resources/unicode_data/properties/Script/Batak/value.dump
2084
2547
  - resources/unicode_data/properties/Script/Bengali/value.dump
2085
2548
  - resources/unicode_data/properties/Script/Bopomofo/value.dump
@@ -2089,6 +2552,7 @@ files:
2089
2552
  - resources/unicode_data/properties/Script/Buhid/value.dump
2090
2553
  - resources/unicode_data/properties/Script/Canadian_Aboriginal/value.dump
2091
2554
  - resources/unicode_data/properties/Script/Carian/value.dump
2555
+ - resources/unicode_data/properties/Script/Caucasian_Albanian/value.dump
2092
2556
  - resources/unicode_data/properties/Script/Chakma/value.dump
2093
2557
  - resources/unicode_data/properties/Script/Cham/value.dump
2094
2558
  - resources/unicode_data/properties/Script/Cherokee/value.dump
@@ -2099,17 +2563,21 @@ files:
2099
2563
  - resources/unicode_data/properties/Script/Cyrillic/value.dump
2100
2564
  - resources/unicode_data/properties/Script/Deseret/value.dump
2101
2565
  - resources/unicode_data/properties/Script/Devanagari/value.dump
2566
+ - resources/unicode_data/properties/Script/Duployan/value.dump
2102
2567
  - resources/unicode_data/properties/Script/Egyptian_Hieroglyphs/value.dump
2568
+ - resources/unicode_data/properties/Script/Elbasan/value.dump
2103
2569
  - resources/unicode_data/properties/Script/Ethiopic/value.dump
2104
2570
  - resources/unicode_data/properties/Script/Georgian/value.dump
2105
2571
  - resources/unicode_data/properties/Script/Glagolitic/value.dump
2106
2572
  - resources/unicode_data/properties/Script/Gothic/value.dump
2573
+ - resources/unicode_data/properties/Script/Grantha/value.dump
2107
2574
  - resources/unicode_data/properties/Script/Greek/value.dump
2108
2575
  - resources/unicode_data/properties/Script/Gujarati/value.dump
2109
2576
  - resources/unicode_data/properties/Script/Gurmukhi/value.dump
2110
2577
  - resources/unicode_data/properties/Script/Han/value.dump
2111
2578
  - resources/unicode_data/properties/Script/Hangul/value.dump
2112
2579
  - resources/unicode_data/properties/Script/Hanunoo/value.dump
2580
+ - resources/unicode_data/properties/Script/Hatran/value.dump
2113
2581
  - resources/unicode_data/properties/Script/Hebrew/value.dump
2114
2582
  - resources/unicode_data/properties/Script/Hiragana/value.dump
2115
2583
  - resources/unicode_data/properties/Script/Imperial_Aramaic/value.dump
@@ -2123,40 +2591,59 @@ files:
2123
2591
  - resources/unicode_data/properties/Script/Kayah_Li/value.dump
2124
2592
  - resources/unicode_data/properties/Script/Kharoshthi/value.dump
2125
2593
  - resources/unicode_data/properties/Script/Khmer/value.dump
2594
+ - resources/unicode_data/properties/Script/Khojki/value.dump
2595
+ - resources/unicode_data/properties/Script/Khudawadi/value.dump
2126
2596
  - resources/unicode_data/properties/Script/Lao/value.dump
2127
2597
  - resources/unicode_data/properties/Script/Latin/value.dump
2128
2598
  - resources/unicode_data/properties/Script/Lepcha/value.dump
2129
2599
  - resources/unicode_data/properties/Script/Limbu/value.dump
2600
+ - resources/unicode_data/properties/Script/Linear_A/value.dump
2130
2601
  - resources/unicode_data/properties/Script/Linear_B/value.dump
2131
2602
  - resources/unicode_data/properties/Script/Lisu/value.dump
2132
2603
  - resources/unicode_data/properties/Script/Lycian/value.dump
2133
2604
  - resources/unicode_data/properties/Script/Lydian/value.dump
2605
+ - resources/unicode_data/properties/Script/Mahajani/value.dump
2134
2606
  - resources/unicode_data/properties/Script/Malayalam/value.dump
2135
2607
  - resources/unicode_data/properties/Script/Mandaic/value.dump
2608
+ - resources/unicode_data/properties/Script/Manichaean/value.dump
2136
2609
  - resources/unicode_data/properties/Script/Meetei_Mayek/value.dump
2610
+ - resources/unicode_data/properties/Script/Mende_Kikakui/value.dump
2137
2611
  - resources/unicode_data/properties/Script/Meroitic_Cursive/value.dump
2138
2612
  - resources/unicode_data/properties/Script/Meroitic_Hieroglyphs/value.dump
2139
2613
  - resources/unicode_data/properties/Script/Miao/value.dump
2614
+ - resources/unicode_data/properties/Script/Modi/value.dump
2140
2615
  - resources/unicode_data/properties/Script/Mongolian/value.dump
2616
+ - resources/unicode_data/properties/Script/Mro/value.dump
2617
+ - resources/unicode_data/properties/Script/Multani/value.dump
2141
2618
  - resources/unicode_data/properties/Script/Myanmar/value.dump
2619
+ - resources/unicode_data/properties/Script/Nabataean/value.dump
2142
2620
  - resources/unicode_data/properties/Script/New_Tai_Lue/value.dump
2143
2621
  - resources/unicode_data/properties/Script/Nko/value.dump
2144
2622
  - resources/unicode_data/properties/Script/Ogham/value.dump
2145
2623
  - resources/unicode_data/properties/Script/Ol_Chiki/value.dump
2624
+ - resources/unicode_data/properties/Script/Old_Hungarian/value.dump
2146
2625
  - resources/unicode_data/properties/Script/Old_Italic/value.dump
2626
+ - resources/unicode_data/properties/Script/Old_North_Arabian/value.dump
2627
+ - resources/unicode_data/properties/Script/Old_Permic/value.dump
2147
2628
  - resources/unicode_data/properties/Script/Old_Persian/value.dump
2148
2629
  - resources/unicode_data/properties/Script/Old_South_Arabian/value.dump
2149
2630
  - resources/unicode_data/properties/Script/Old_Turkic/value.dump
2150
2631
  - resources/unicode_data/properties/Script/Oriya/value.dump
2151
2632
  - resources/unicode_data/properties/Script/Osmanya/value.dump
2633
+ - resources/unicode_data/properties/Script/Pahawh_Hmong/value.dump
2634
+ - resources/unicode_data/properties/Script/Palmyrene/value.dump
2635
+ - resources/unicode_data/properties/Script/Pau_Cin_Hau/value.dump
2152
2636
  - resources/unicode_data/properties/Script/Phags_Pa/value.dump
2153
2637
  - resources/unicode_data/properties/Script/Phoenician/value.dump
2638
+ - resources/unicode_data/properties/Script/Psalter_Pahlavi/value.dump
2154
2639
  - resources/unicode_data/properties/Script/Rejang/value.dump
2155
2640
  - resources/unicode_data/properties/Script/Runic/value.dump
2156
2641
  - resources/unicode_data/properties/Script/Samaritan/value.dump
2157
2642
  - resources/unicode_data/properties/Script/Saurashtra/value.dump
2158
2643
  - resources/unicode_data/properties/Script/Sharada/value.dump
2159
2644
  - resources/unicode_data/properties/Script/Shavian/value.dump
2645
+ - resources/unicode_data/properties/Script/Siddham/value.dump
2646
+ - resources/unicode_data/properties/Script/SignWriting/value.dump
2160
2647
  - resources/unicode_data/properties/Script/Sinhala/value.dump
2161
2648
  - resources/unicode_data/properties/Script/Sora_Sompeng/value.dump
2162
2649
  - resources/unicode_data/properties/Script/Sundanese/value.dump
@@ -2174,8 +2661,10 @@ files:
2174
2661
  - resources/unicode_data/properties/Script/Thai/value.dump
2175
2662
  - resources/unicode_data/properties/Script/Tibetan/value.dump
2176
2663
  - resources/unicode_data/properties/Script/Tifinagh/value.dump
2664
+ - resources/unicode_data/properties/Script/Tirhuta/value.dump
2177
2665
  - resources/unicode_data/properties/Script/Ugaritic/value.dump
2178
2666
  - resources/unicode_data/properties/Script/Vai/value.dump
2667
+ - resources/unicode_data/properties/Script/Warang_Citi/value.dump
2179
2668
  - resources/unicode_data/properties/Script/Yi/value.dump
2180
2669
  - resources/unicode_data/properties/Script_Extensions/Arab/value.dump
2181
2670
  - resources/unicode_data/properties/Script_Extensions/Armn/value.dump
@@ -2184,10 +2673,14 @@ files:
2184
2673
  - resources/unicode_data/properties/Script_Extensions/Bugi/value.dump
2185
2674
  - resources/unicode_data/properties/Script_Extensions/Buhd/value.dump
2186
2675
  - resources/unicode_data/properties/Script_Extensions/Cakm/value.dump
2676
+ - resources/unicode_data/properties/Script_Extensions/Copt/value.dump
2187
2677
  - resources/unicode_data/properties/Script_Extensions/Cprt/value.dump
2188
2678
  - resources/unicode_data/properties/Script_Extensions/Cyrl/value.dump
2189
2679
  - resources/unicode_data/properties/Script_Extensions/Deva/value.dump
2680
+ - resources/unicode_data/properties/Script_Extensions/Dupl/value.dump
2190
2681
  - resources/unicode_data/properties/Script_Extensions/Geor/value.dump
2682
+ - resources/unicode_data/properties/Script_Extensions/Glag/value.dump
2683
+ - resources/unicode_data/properties/Script_Extensions/Gran/value.dump
2191
2684
  - resources/unicode_data/properties/Script_Extensions/Grek/value.dump
2192
2685
  - resources/unicode_data/properties/Script_Extensions/Gujr/value.dump
2193
2686
  - resources/unicode_data/properties/Script_Extensions/Guru/value.dump
@@ -2196,22 +2689,39 @@ files:
2196
2689
  - resources/unicode_data/properties/Script_Extensions/Hano/value.dump
2197
2690
  - resources/unicode_data/properties/Script_Extensions/Hira/value.dump
2198
2691
  - resources/unicode_data/properties/Script_Extensions/Java/value.dump
2692
+ - resources/unicode_data/properties/Script_Extensions/Kali/value.dump
2199
2693
  - resources/unicode_data/properties/Script_Extensions/Kana/value.dump
2694
+ - resources/unicode_data/properties/Script_Extensions/Khoj/value.dump
2695
+ - resources/unicode_data/properties/Script_Extensions/Knda/value.dump
2200
2696
  - resources/unicode_data/properties/Script_Extensions/Kthi/value.dump
2201
2697
  - resources/unicode_data/properties/Script_Extensions/Latn/value.dump
2698
+ - resources/unicode_data/properties/Script_Extensions/Limb/value.dump
2202
2699
  - resources/unicode_data/properties/Script_Extensions/Linb/value.dump
2700
+ - resources/unicode_data/properties/Script_Extensions/Mahj/value.dump
2203
2701
  - resources/unicode_data/properties/Script_Extensions/Mand/value.dump
2702
+ - resources/unicode_data/properties/Script_Extensions/Mani/value.dump
2703
+ - resources/unicode_data/properties/Script_Extensions/Mlym/value.dump
2704
+ - resources/unicode_data/properties/Script_Extensions/Modi/value.dump
2204
2705
  - resources/unicode_data/properties/Script_Extensions/Mong/value.dump
2706
+ - resources/unicode_data/properties/Script_Extensions/Mult/value.dump
2205
2707
  - resources/unicode_data/properties/Script_Extensions/Mymr/value.dump
2206
2708
  - resources/unicode_data/properties/Script_Extensions/Orya/value.dump
2709
+ - resources/unicode_data/properties/Script_Extensions/Perm/value.dump
2207
2710
  - resources/unicode_data/properties/Script_Extensions/Phag/value.dump
2711
+ - resources/unicode_data/properties/Script_Extensions/Phlp/value.dump
2712
+ - resources/unicode_data/properties/Script_Extensions/Shrd/value.dump
2713
+ - resources/unicode_data/properties/Script_Extensions/Sind/value.dump
2714
+ - resources/unicode_data/properties/Script_Extensions/Sinh/value.dump
2208
2715
  - resources/unicode_data/properties/Script_Extensions/Sylo/value.dump
2209
2716
  - resources/unicode_data/properties/Script_Extensions/Syrc/value.dump
2210
2717
  - resources/unicode_data/properties/Script_Extensions/Tagb/value.dump
2211
2718
  - resources/unicode_data/properties/Script_Extensions/Takr/value.dump
2212
2719
  - resources/unicode_data/properties/Script_Extensions/Tale/value.dump
2720
+ - resources/unicode_data/properties/Script_Extensions/Taml/value.dump
2721
+ - resources/unicode_data/properties/Script_Extensions/Telu/value.dump
2213
2722
  - resources/unicode_data/properties/Script_Extensions/Tglg/value.dump
2214
2723
  - resources/unicode_data/properties/Script_Extensions/Thaa/value.dump
2724
+ - resources/unicode_data/properties/Script_Extensions/Tirh/value.dump
2215
2725
  - resources/unicode_data/properties/Script_Extensions/Yiii/value.dump
2216
2726
  - resources/unicode_data/properties/Sentence_Break/ATerm/value.dump
2217
2727
  - resources/unicode_data/properties/Sentence_Break/CR/value.dump
@@ -2298,7 +2808,6 @@ files:
2298
2808
  - spec/collation/trie_builder_spec.rb
2299
2809
  - spec/collation/trie_dumps_spec.rb
2300
2810
  - spec/collation/trie_loader_spec.rb
2301
- - spec/collation/trie_spec.rb
2302
2811
  - spec/collation/trie_with_fallback_spec.rb
2303
2812
  - spec/core_ext_spec.rb
2304
2813
  - spec/data_readers/additional_date_format_selector_spec.rb
@@ -2420,6 +2929,10 @@ files:
2420
2929
  - spec/shared/caser_spec.rb
2421
2930
  - spec/shared/code_point_spec.rb
2422
2931
  - spec/shared/currencies_spec.rb
2932
+ - spec/shared/hunspell/base.hyph
2933
+ - spec/shared/hunspell/base.pat
2934
+ - spec/shared/hunspell/base.word
2935
+ - spec/shared/hyphenator_spec.rb
2423
2936
  - spec/shared/language_codes_spec.rb
2424
2937
  - spec/shared/languages_spec.rb
2425
2938
  - spec/shared/likely_subtags_spec.rb
@@ -2448,6 +2961,11 @@ files:
2448
2961
  - spec/tokenizers/numbers/number_tokenizer_spec.rb
2449
2962
  - spec/tokenizers/token_spec.rb
2450
2963
  - spec/tokenizers/unicode_regex/unicode_regex_tokenizer_spec.rb
2964
+ - spec/transforms/rule_set_spec.rb
2965
+ - spec/transforms/test_data.yml
2966
+ - spec/transforms/transform_id_spec.rb
2967
+ - spec/transforms/transformer_spec.rb
2968
+ - spec/transforms/transliterator_spec.rb
2451
2969
  - spec/twitter_cldr_spec.rb
2452
2970
  - spec/utils/code_points_spec.rb
2453
2971
  - spec/utils/file_system_trie_spec.rb
@@ -2455,6 +2973,7 @@ files:
2455
2973
  - spec/utils/regexp_ast_spec.rb
2456
2974
  - spec/utils/regexp_sampler_spec.rb
2457
2975
  - spec/utils/script_detector_spec.rb
2976
+ - spec/utils/trie_spec.rb
2458
2977
  - spec/utils/yaml/t.gif
2459
2978
  - spec/utils/yaml/t.yaml
2460
2979
  - spec/utils/yaml/yaml_spec.rb
@@ -2479,7 +2998,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
2479
2998
  version: '0'
2480
2999
  requirements: []
2481
3000
  rubyforge_project:
2482
- rubygems_version: 2.6.6
3001
+ rubygems_version: 2.2.3
2483
3002
  signing_key:
2484
3003
  specification_version: 4
2485
3004
  summary: Ruby implementation of the ICU (International Components for Unicode) that