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
@@ -1,1291 +1,1642 @@
1
1
  ---
2
2
  SpelloutRules:
3
- spellout-ordinal-verbose:
4
- -1141: minus one thousand one hundred and forty-first
5
- -1142: minus one thousand one hundred and forty-second
6
- -1143: minus one thousand one hundred and forty-third
7
- -100: minus one hundredth
8
- -75: minus seventy-fifth
9
- -50: minus fiftieth
10
- -24: minus twenty-fourth
11
- 0: zeroth
12
- 1: first
13
- 2: second
14
- 3: third
15
- 4: fourth
16
- 5: fifth
17
- 6: sixth
18
- 7: seventh
19
- 8: eighth
20
- 9: ninth
21
- 10: tenth
22
- 11: eleventh
23
- 12: twelfth
24
- 13: thirteenth
25
- 14: fourteenth
26
- 15: fifteenth
27
- 16: sixteenth
28
- 17: seventeenth
29
- 18: eighteenth
30
- 19: nineteenth
31
- 20: twentieth
32
- 21: twenty-first
33
- 22: twenty-second
34
- 23: twenty-third
35
- 24: twenty-fourth
36
- 25: twenty-fifth
37
- 26: twenty-sixth
38
- 27: twenty-seventh
39
- 28: twenty-eighth
40
- 29: twenty-ninth
41
- 30: thirtieth
42
- 31: thirty-first
43
- 32: thirty-second
44
- 33: thirty-third
45
- 34: thirty-fourth
46
- 35: thirty-fifth
47
- 36: thirty-sixth
48
- 37: thirty-seventh
49
- 38: thirty-eighth
50
- 39: thirty-ninth
51
- 40: fortieth
52
- 41: forty-first
53
- 42: forty-second
54
- 43: forty-third
55
- 44: forty-fourth
56
- 45: forty-fifth
57
- 46: forty-sixth
58
- 47: forty-seventh
59
- 48: forty-eighth
60
- 49: forty-ninth
61
- 50: fiftieth
62
- 51: fifty-first
63
- 52: fifty-second
64
- 53: fifty-third
65
- 54: fifty-fourth
66
- 55: fifty-fifth
67
- 56: fifty-sixth
68
- 57: fifty-seventh
69
- 58: fifty-eighth
70
- 59: fifty-ninth
71
- 60: sixtieth
72
- 61: sixty-first
73
- 62: sixty-second
74
- 63: sixty-third
75
- 64: sixty-fourth
76
- 65: sixty-fifth
77
- 66: sixty-sixth
78
- 67: sixty-seventh
79
- 68: sixty-eighth
80
- 69: sixty-ninth
81
- 70: seventieth
82
- 71: seventy-first
83
- 72: seventy-second
84
- 73: seventy-third
85
- 74: seventy-fourth
86
- 75: seventy-fifth
87
- 76: seventy-sixth
88
- 77: seventy-seventh
89
- 78: seventy-eighth
90
- 79: seventy-ninth
91
- 80: eightieth
92
- 81: eighty-first
93
- 82: eighty-second
94
- 83: eighty-third
95
- 84: eighty-fourth
96
- 85: eighty-fifth
97
- 86: eighty-sixth
98
- 87: eighty-seventh
99
- 88: eighty-eighth
100
- 89: eighty-ninth
101
- 90: ninetieth
102
- 91: ninety-first
103
- 92: ninety-second
104
- 93: ninety-third
105
- 94: ninety-fourth
106
- 95: ninety-fifth
107
- 96: ninety-sixth
108
- 97: ninety-seventh
109
- 98: ninety-eighth
110
- 99: ninety-ninth
111
- 100: one hundredth
112
- 321: three hundred and twenty-first
113
- 322: three hundred and twenty-second
114
- 323: three hundred and twenty-third
115
- 1141: one thousand one hundred and forty-first
116
- 1142: one thousand one hundred and forty-second
117
- 1143: one thousand one hundred and forty-third
118
- 10311: ten thousand three hundred and eleventh
119
- 138400: one hundred and thirty-eight thousand, four hundredth
120
- spellout-ordinal:
121
- -1141: minus one thousand one hundred forty-first
122
- -1142: minus one thousand one hundred forty-second
123
- -1143: minus one thousand one hundred forty-third
124
- -100: minus one hundredth
125
- -75: minus seventy-fifth
126
- -50: minus fiftieth
127
- -24: minus twenty-fourth
128
- 0: zeroth
129
- 1: first
130
- 2: second
131
- 3: third
132
- 4: fourth
133
- 5: fifth
134
- 6: sixth
135
- 7: seventh
136
- 8: eighth
137
- 9: ninth
138
- 10: tenth
139
- 11: eleventh
140
- 12: twelfth
141
- 13: thirteenth
142
- 14: fourteenth
143
- 15: fifteenth
144
- 16: sixteenth
145
- 17: seventeenth
146
- 18: eighteenth
147
- 19: nineteenth
148
- 20: twentieth
149
- 21: twenty-first
150
- 22: twenty-second
151
- 23: twenty-third
152
- 24: twenty-fourth
153
- 25: twenty-fifth
154
- 26: twenty-sixth
155
- 27: twenty-seventh
156
- 28: twenty-eighth
157
- 29: twenty-ninth
158
- 30: thirtieth
159
- 31: thirty-first
160
- 32: thirty-second
161
- 33: thirty-third
162
- 34: thirty-fourth
163
- 35: thirty-fifth
164
- 36: thirty-sixth
165
- 37: thirty-seventh
166
- 38: thirty-eighth
167
- 39: thirty-ninth
168
- 40: fortieth
169
- 41: forty-first
170
- 42: forty-second
171
- 43: forty-third
172
- 44: forty-fourth
173
- 45: forty-fifth
174
- 46: forty-sixth
175
- 47: forty-seventh
176
- 48: forty-eighth
177
- 49: forty-ninth
178
- 50: fiftieth
179
- 51: fifty-first
180
- 52: fifty-second
181
- 53: fifty-third
182
- 54: fifty-fourth
183
- 55: fifty-fifth
184
- 56: fifty-sixth
185
- 57: fifty-seventh
186
- 58: fifty-eighth
187
- 59: fifty-ninth
188
- 60: sixtieth
189
- 61: sixty-first
190
- 62: sixty-second
191
- 63: sixty-third
192
- 64: sixty-fourth
193
- 65: sixty-fifth
194
- 66: sixty-sixth
195
- 67: sixty-seventh
196
- 68: sixty-eighth
197
- 69: sixty-ninth
198
- 70: seventieth
199
- 71: seventy-first
200
- 72: seventy-second
201
- 73: seventy-third
202
- 74: seventy-fourth
203
- 75: seventy-fifth
204
- 76: seventy-sixth
205
- 77: seventy-seventh
206
- 78: seventy-eighth
207
- 79: seventy-ninth
208
- 80: eightieth
209
- 81: eighty-first
210
- 82: eighty-second
211
- 83: eighty-third
212
- 84: eighty-fourth
213
- 85: eighty-fifth
214
- 86: eighty-sixth
215
- 87: eighty-seventh
216
- 88: eighty-eighth
217
- 89: eighty-ninth
218
- 90: ninetieth
219
- 91: ninety-first
220
- 92: ninety-second
221
- 93: ninety-third
222
- 94: ninety-fourth
223
- 95: ninety-fifth
224
- 96: ninety-sixth
225
- 97: ninety-seventh
226
- 98: ninety-eighth
227
- 99: ninety-ninth
228
- 100: one hundredth
229
- 321: three hundred twenty-first
230
- 322: three hundred twenty-second
231
- 323: three hundred twenty-third
232
- 1141: one thousand one hundred forty-first
233
- 1142: one thousand one hundred forty-second
234
- 1143: one thousand one hundred forty-third
235
- 10311: ten thousand three hundred eleventh
236
- 138400: one hundred thirty-eight thousand four hundredth
237
- spellout-cardinal-verbose:
238
- -1141: minus one thousand one hundred and forty-one
239
- -1142: minus one thousand one hundred and forty-two
240
- -1143: minus one thousand one hundred and forty-three
241
- -100: minus one hundred
242
- -75: minus seventy-five
243
- -50: minus fifty
244
- -24: minus twenty-four
245
- 0: zero
246
- 1: one
247
- 2: two
248
- 3: three
249
- 4: four
250
- 5: five
251
- 6: six
252
- 7: seven
253
- 8: eight
254
- 9: nine
255
- 10: ten
256
- 11: eleven
257
- 12: twelve
258
- 13: thirteen
259
- 14: fourteen
260
- 15: fifteen
261
- 16: sixteen
262
- 17: seventeen
263
- 18: eighteen
264
- 19: nineteen
265
- 20: twenty
266
- 21: twenty-one
267
- 22: twenty-two
268
- 23: twenty-three
269
- 24: twenty-four
270
- 25: twenty-five
271
- 26: twenty-six
272
- 27: twenty-seven
273
- 28: twenty-eight
274
- 29: twenty-nine
275
- 30: thirty
276
- 31: thirty-one
277
- 32: thirty-two
278
- 33: thirty-three
279
- 34: thirty-four
280
- 35: thirty-five
281
- 36: thirty-six
282
- 37: thirty-seven
283
- 38: thirty-eight
284
- 39: thirty-nine
285
- 40: forty
286
- 41: forty-one
287
- 42: forty-two
288
- 43: forty-three
289
- 44: forty-four
290
- 45: forty-five
291
- 46: forty-six
292
- 47: forty-seven
293
- 48: forty-eight
294
- 49: forty-nine
295
- 50: fifty
296
- 51: fifty-one
297
- 52: fifty-two
298
- 53: fifty-three
299
- 54: fifty-four
300
- 55: fifty-five
301
- 56: fifty-six
302
- 57: fifty-seven
303
- 58: fifty-eight
304
- 59: fifty-nine
305
- 60: sixty
306
- 61: sixty-one
307
- 62: sixty-two
308
- 63: sixty-three
309
- 64: sixty-four
310
- 65: sixty-five
311
- 66: sixty-six
312
- 67: sixty-seven
313
- 68: sixty-eight
314
- 69: sixty-nine
315
- 70: seventy
316
- 71: seventy-one
317
- 72: seventy-two
318
- 73: seventy-three
319
- 74: seventy-four
320
- 75: seventy-five
321
- 76: seventy-six
322
- 77: seventy-seven
323
- 78: seventy-eight
324
- 79: seventy-nine
325
- 80: eighty
326
- 81: eighty-one
327
- 82: eighty-two
328
- 83: eighty-three
329
- 84: eighty-four
330
- 85: eighty-five
331
- 86: eighty-six
332
- 87: eighty-seven
333
- 88: eighty-eight
334
- 89: eighty-nine
335
- 90: ninety
336
- 91: ninety-one
337
- 92: ninety-two
338
- 93: ninety-three
339
- 94: ninety-four
340
- 95: ninety-five
341
- 96: ninety-six
342
- 97: ninety-seven
343
- 98: ninety-eight
344
- 99: ninety-nine
345
- 100: one hundred
346
- 321: three hundred and twenty-one
347
- 322: three hundred and twenty-two
348
- 323: three hundred and twenty-three
349
- 1141: one thousand one hundred and forty-one
350
- 1142: one thousand one hundred and forty-two
351
- 1143: one thousand one hundred and forty-three
352
- 10311: ten thousand three hundred and eleven
353
- 138400: one hundred and thirty-eight thousand, four hundred
354
- spellout-cardinal:
355
- -1141: minus one thousand one hundred forty-one
356
- -1142: minus one thousand one hundred forty-two
357
- -1143: minus one thousand one hundred forty-three
358
- -100: minus one hundred
359
- -75: minus seventy-five
360
- -50: minus fifty
361
- -24: minus twenty-four
362
- 0: zero
363
- 1: one
364
- 2: two
365
- 3: three
366
- 4: four
367
- 5: five
368
- 6: six
369
- 7: seven
370
- 8: eight
371
- 9: nine
372
- 10: ten
373
- 11: eleven
374
- 12: twelve
375
- 13: thirteen
376
- 14: fourteen
377
- 15: fifteen
378
- 16: sixteen
379
- 17: seventeen
380
- 18: eighteen
381
- 19: nineteen
382
- 20: twenty
383
- 21: twenty-one
384
- 22: twenty-two
385
- 23: twenty-three
386
- 24: twenty-four
387
- 25: twenty-five
388
- 26: twenty-six
389
- 27: twenty-seven
390
- 28: twenty-eight
391
- 29: twenty-nine
392
- 30: thirty
393
- 31: thirty-one
394
- 32: thirty-two
395
- 33: thirty-three
396
- 34: thirty-four
397
- 35: thirty-five
398
- 36: thirty-six
399
- 37: thirty-seven
400
- 38: thirty-eight
401
- 39: thirty-nine
402
- 40: forty
403
- 41: forty-one
404
- 42: forty-two
405
- 43: forty-three
406
- 44: forty-four
407
- 45: forty-five
408
- 46: forty-six
409
- 47: forty-seven
410
- 48: forty-eight
411
- 49: forty-nine
412
- 50: fifty
413
- 51: fifty-one
414
- 52: fifty-two
415
- 53: fifty-three
416
- 54: fifty-four
417
- 55: fifty-five
418
- 56: fifty-six
419
- 57: fifty-seven
420
- 58: fifty-eight
421
- 59: fifty-nine
422
- 60: sixty
423
- 61: sixty-one
424
- 62: sixty-two
425
- 63: sixty-three
426
- 64: sixty-four
427
- 65: sixty-five
428
- 66: sixty-six
429
- 67: sixty-seven
430
- 68: sixty-eight
431
- 69: sixty-nine
432
- 70: seventy
433
- 71: seventy-one
434
- 72: seventy-two
435
- 73: seventy-three
436
- 74: seventy-four
437
- 75: seventy-five
438
- 76: seventy-six
439
- 77: seventy-seven
440
- 78: seventy-eight
441
- 79: seventy-nine
442
- 80: eighty
443
- 81: eighty-one
444
- 82: eighty-two
445
- 83: eighty-three
446
- 84: eighty-four
447
- 85: eighty-five
448
- 86: eighty-six
449
- 87: eighty-seven
450
- 88: eighty-eight
451
- 89: eighty-nine
452
- 90: ninety
453
- 91: ninety-one
454
- 92: ninety-two
455
- 93: ninety-three
456
- 94: ninety-four
457
- 95: ninety-five
458
- 96: ninety-six
459
- 97: ninety-seven
460
- 98: ninety-eight
461
- 99: ninety-nine
462
- 100: one hundred
463
- 321: three hundred twenty-one
464
- 322: three hundred twenty-two
465
- 323: three hundred twenty-three
466
- 1141: one thousand one hundred forty-one
467
- 1142: one thousand one hundred forty-two
468
- 1143: one thousand one hundred forty-three
469
- 10311: ten thousand three hundred eleven
470
- 138400: one hundred thirty-eight thousand four hundred
471
- spellout-numbering-verbose:
472
- -1141: minus one thousand one hundred and forty-one
473
- -1142: minus one thousand one hundred and forty-two
474
- -1143: minus one thousand one hundred and forty-three
475
- -100: minus one hundred
476
- -75: minus seventy-five
477
- -50: minus fifty
478
- -24: minus twenty-four
479
- 0: zero
480
- 1: one
481
- 2: two
482
- 3: three
483
- 4: four
484
- 5: five
485
- 6: six
486
- 7: seven
487
- 8: eight
488
- 9: nine
489
- 10: ten
490
- 11: eleven
491
- 12: twelve
492
- 13: thirteen
493
- 14: fourteen
494
- 15: fifteen
495
- 16: sixteen
496
- 17: seventeen
497
- 18: eighteen
498
- 19: nineteen
499
- 20: twenty
500
- 21: twenty-one
501
- 22: twenty-two
502
- 23: twenty-three
503
- 24: twenty-four
504
- 25: twenty-five
505
- 26: twenty-six
506
- 27: twenty-seven
507
- 28: twenty-eight
508
- 29: twenty-nine
509
- 30: thirty
510
- 31: thirty-one
511
- 32: thirty-two
512
- 33: thirty-three
513
- 34: thirty-four
514
- 35: thirty-five
515
- 36: thirty-six
516
- 37: thirty-seven
517
- 38: thirty-eight
518
- 39: thirty-nine
519
- 40: forty
520
- 41: forty-one
521
- 42: forty-two
522
- 43: forty-three
523
- 44: forty-four
524
- 45: forty-five
525
- 46: forty-six
526
- 47: forty-seven
527
- 48: forty-eight
528
- 49: forty-nine
529
- 50: fifty
530
- 51: fifty-one
531
- 52: fifty-two
532
- 53: fifty-three
533
- 54: fifty-four
534
- 55: fifty-five
535
- 56: fifty-six
536
- 57: fifty-seven
537
- 58: fifty-eight
538
- 59: fifty-nine
539
- 60: sixty
540
- 61: sixty-one
541
- 62: sixty-two
542
- 63: sixty-three
543
- 64: sixty-four
544
- 65: sixty-five
545
- 66: sixty-six
546
- 67: sixty-seven
547
- 68: sixty-eight
548
- 69: sixty-nine
549
- 70: seventy
550
- 71: seventy-one
551
- 72: seventy-two
552
- 73: seventy-three
553
- 74: seventy-four
554
- 75: seventy-five
555
- 76: seventy-six
556
- 77: seventy-seven
557
- 78: seventy-eight
558
- 79: seventy-nine
559
- 80: eighty
560
- 81: eighty-one
561
- 82: eighty-two
562
- 83: eighty-three
563
- 84: eighty-four
564
- 85: eighty-five
565
- 86: eighty-six
566
- 87: eighty-seven
567
- 88: eighty-eight
568
- 89: eighty-nine
569
- 90: ninety
570
- 91: ninety-one
571
- 92: ninety-two
572
- 93: ninety-three
573
- 94: ninety-four
574
- 95: ninety-five
575
- 96: ninety-six
576
- 97: ninety-seven
577
- 98: ninety-eight
578
- 99: ninety-nine
579
- 100: one hundred
580
- 321: three hundred and twenty-one
581
- 322: three hundred and twenty-two
582
- 323: three hundred and twenty-three
583
- 1141: one thousand one hundred and forty-one
584
- 1142: one thousand one hundred and forty-two
585
- 1143: one thousand one hundred and forty-three
586
- 10311: ten thousand three hundred and eleven
587
- 138400: one hundred and thirty-eight thousand, four hundred
3
+ spellout-ordinal-feminine:
4
+ -1141: menos milésima centésima cuadragésima primera
5
+ -1142: menos milésima centésima cuadragésima segunda
6
+ -1143: menos milésima centésima cuadragésima tercera
7
+ -100: menos centésima
8
+ -75: menos septuagésima quinta
9
+ -50: menos quincuagésima
10
+ -24: menos vigésima cuarta
11
+ 0: cero
12
+ 1: primera
13
+ 2: segunda
14
+ 3: tercera
15
+ 4: cuarta
16
+ 5: quinta
17
+ 6: sexta
18
+ 7: séptima
19
+ 8: octava
20
+ 9: novena
21
+ 10: décima
22
+ 11: decimoprimera
23
+ 12: decimosegunda
24
+ 13: decimotercera
25
+ 14: decimocuarta
26
+ 15: decimoquinta
27
+ 16: decimosexta
28
+ 17: decimoséptima
29
+ 18: decimoctava
30
+ 19: decimonovena
31
+ 20: vigésima
32
+ 21: vigésima primera
33
+ 22: vigésima segunda
34
+ 23: vigésima tercera
35
+ 24: vigésima cuarta
36
+ 25: vigésima quinta
37
+ 26: vigésima sexta
38
+ 27: vigésima séptima
39
+ 28: vigésima octava
40
+ 29: vigésima novena
41
+ 30: trigésima
42
+ 31: trigésima primera
43
+ 32: trigésima segunda
44
+ 33: trigésima tercera
45
+ 34: trigésima cuarta
46
+ 35: trigésima quinta
47
+ 36: trigésima sexta
48
+ 37: trigésima séptima
49
+ 38: trigésima octava
50
+ 39: trigésima novena
51
+ 40: cuadragésima
52
+ 41: cuadragésima primera
53
+ 42: cuadragésima segunda
54
+ 43: cuadragésima tercera
55
+ 44: cuadragésima cuarta
56
+ 45: cuadragésima quinta
57
+ 46: cuadragésima sexta
58
+ 47: cuadragésima séptima
59
+ 48: cuadragésima octava
60
+ 49: cuadragésima novena
61
+ 50: quincuagésima
62
+ 51: quincuagésima primera
63
+ 52: quincuagésima segunda
64
+ 53: quincuagésima tercera
65
+ 54: quincuagésima cuarta
66
+ 55: quincuagésima quinta
67
+ 56: quincuagésima sexta
68
+ 57: quincuagésima séptima
69
+ 58: quincuagésima octava
70
+ 59: quincuagésima novena
71
+ 60: sexagésima
72
+ 61: sexagésima primera
73
+ 62: sexagésima segunda
74
+ 63: sexagésima tercera
75
+ 64: sexagésima cuarta
76
+ 65: sexagésima quinta
77
+ 66: sexagésima sexta
78
+ 67: sexagésima séptima
79
+ 68: sexagésima octava
80
+ 69: sexagésima novena
81
+ 70: septuagésima
82
+ 71: septuagésima primera
83
+ 72: septuagésima segunda
84
+ 73: septuagésima tercera
85
+ 74: septuagésima cuarta
86
+ 75: septuagésima quinta
87
+ 76: septuagésima sexta
88
+ 77: septuagésima séptima
89
+ 78: septuagésima octava
90
+ 79: septuagésima novena
91
+ 80: octogésima
92
+ 81: octogésima primera
93
+ 82: octogésima segunda
94
+ 83: octogésima tercera
95
+ 84: octogésima cuarta
96
+ 85: octogésima quinta
97
+ 86: octogésima sexta
98
+ 87: octogésima séptima
99
+ 88: octogésima octava
100
+ 89: octogésima novena
101
+ 90: nonagésima
102
+ 91: nonagésima primera
103
+ 92: nonagésima segunda
104
+ 93: nonagésima tercera
105
+ 94: nonagésima cuarta
106
+ 95: nonagésima quinta
107
+ 96: nonagésima sexta
108
+ 97: nonagésima séptima
109
+ 98: nonagésima octava
110
+ 99: nonagésima novena
111
+ 100: centésima
112
+ 321: tricentésima vigésima primera
113
+ 322: tricentésima vigésima segunda
114
+ 323: tricentésima vigésima tercera
115
+ 1141: milésima centésima cuadragésima primera
116
+ 1142: milésima centésima cuadragésima segunda
117
+ 1143: milésima centésima cuadragésima tercera
118
+ 10311: diez milésima tricentésima decimoprimera
119
+ 138400: ciento treinta y ocho milésima cuadringentésima
120
+ spellout-ordinal-feminine-plural:
121
+ -1141: menos milésima centésima cuadragésima primeras
122
+ -1142: menos milésima centésima cuadragésima segundas
123
+ -1143: menos milésima centésima cuadragésima terceras
124
+ -100: menos centésimas
125
+ -75: menos septuagésima quintas
126
+ -50: menos quincuagésimas
127
+ -24: menos vigésima cuartas
128
+ 0: cero
129
+ 1: primeras
130
+ 2: segundas
131
+ 3: terceras
132
+ 4: cuartas
133
+ 5: quintas
134
+ 6: sextas
135
+ 7: séptimas
136
+ 8: octavas
137
+ 9: novenas
138
+ 10: décimas
139
+ 11: decimoprimeras
140
+ 12: decimosegundas
141
+ 13: decimoterceras
142
+ 14: decimocuartas
143
+ 15: decimoquintas
144
+ 16: decimosextas
145
+ 17: decimoséptimas
146
+ 18: decimoctavas
147
+ 19: decimonovenas
148
+ 20: vigésimas
149
+ 21: vigésima primeras
150
+ 22: vigésima segundas
151
+ 23: vigésima terceras
152
+ 24: vigésima cuartas
153
+ 25: vigésima quintas
154
+ 26: vigésima sextas
155
+ 27: vigésima séptimas
156
+ 28: vigésima octavas
157
+ 29: vigésima novenas
158
+ 30: trigésimas
159
+ 31: trigésima primeras
160
+ 32: trigésima segundas
161
+ 33: trigésima terceras
162
+ 34: trigésima cuartas
163
+ 35: trigésima quintas
164
+ 36: trigésima sextas
165
+ 37: trigésima séptimas
166
+ 38: trigésima octavas
167
+ 39: trigésima novenas
168
+ 40: cuadragésimas
169
+ 41: cuadragésima primeras
170
+ 42: cuadragésima segundas
171
+ 43: cuadragésima terceras
172
+ 44: cuadragésima cuartas
173
+ 45: cuadragésima quintas
174
+ 46: cuadragésima sextas
175
+ 47: cuadragésima séptimas
176
+ 48: cuadragésima octavas
177
+ 49: cuadragésima novenas
178
+ 50: quincuagésimas
179
+ 51: quincuagésima primeras
180
+ 52: quincuagésima segundas
181
+ 53: quincuagésima terceras
182
+ 54: quincuagésima cuartas
183
+ 55: quincuagésima quintas
184
+ 56: quincuagésima sextas
185
+ 57: quincuagésima séptimas
186
+ 58: quincuagésima octavas
187
+ 59: quincuagésima novenas
188
+ 60: sexagésimas
189
+ 61: sexagésima primeras
190
+ 62: sexagésima segundas
191
+ 63: sexagésima terceras
192
+ 64: sexagésima cuartas
193
+ 65: sexagésima quintas
194
+ 66: sexagésima sextas
195
+ 67: sexagésima séptimas
196
+ 68: sexagésima octavas
197
+ 69: sexagésima novenas
198
+ 70: septuagésimas
199
+ 71: septuagésima primeras
200
+ 72: septuagésima segundas
201
+ 73: septuagésima terceras
202
+ 74: septuagésima cuartas
203
+ 75: septuagésima quintas
204
+ 76: septuagésima sextas
205
+ 77: septuagésima séptimas
206
+ 78: septuagésima octavas
207
+ 79: septuagésima novenas
208
+ 80: octogésimas
209
+ 81: octogésima primeras
210
+ 82: octogésima segundas
211
+ 83: octogésima terceras
212
+ 84: octogésima cuartas
213
+ 85: octogésima quintas
214
+ 86: octogésima sextas
215
+ 87: octogésima séptimas
216
+ 88: octogésima octavas
217
+ 89: octogésima novenas
218
+ 90: nonagésimas
219
+ 91: nonagésima primeras
220
+ 92: nonagésima segundas
221
+ 93: nonagésima terceras
222
+ 94: nonagésima cuartas
223
+ 95: nonagésima quintas
224
+ 96: nonagésima sextas
225
+ 97: nonagésima séptimas
226
+ 98: nonagésima octavas
227
+ 99: nonagésima novenas
228
+ 100: centésimas
229
+ 321: tricentésima vigésima primeras
230
+ 322: tricentésima vigésima segundas
231
+ 323: tricentésima vigésima terceras
232
+ 1141: milésima centésima cuadragésima primeras
233
+ 1142: milésima centésima cuadragésima segundas
234
+ 1143: milésima centésima cuadragésima terceras
235
+ 10311: diez milésima tricentésima decimoprimeras
236
+ 138400: ciento treinta y ocho milésima cuadringentésimas
237
+ spellout-ordinal-masculine:
238
+ -1141: menos milésimo centésimo cuadragésimo primero
239
+ -1142: menos milésimo centésimo cuadragésimo segundo
240
+ -1143: menos milésimo centésimo cuadragésimo tercero
241
+ -100: menos centésimo
242
+ -75: menos septuagésimo quinto
243
+ -50: menos quincuagésimo
244
+ -24: menos vigésimo cuarto
245
+ 0: cero
246
+ 1: primero
247
+ 2: segundo
248
+ 3: tercero
249
+ 4: cuarto
250
+ 5: quinto
251
+ 6: sexto
252
+ 7: séptimo
253
+ 8: octavo
254
+ 9: noveno
255
+ 10: décimo
256
+ 11: decimoprimero
257
+ 12: decimosegundo
258
+ 13: decimotercero
259
+ 14: decimocuarto
260
+ 15: decimoquinto
261
+ 16: decimosexto
262
+ 17: decimoséptimo
263
+ 18: decimoctavo
264
+ 19: decimonoveno
265
+ 20: vigésimo
266
+ 21: vigésimo primero
267
+ 22: vigésimo segundo
268
+ 23: vigésimo tercero
269
+ 24: vigésimo cuarto
270
+ 25: vigésimo quinto
271
+ 26: vigésimo sexto
272
+ 27: vigésimo séptimo
273
+ 28: vigésimo octavo
274
+ 29: vigésimo noveno
275
+ 30: trigésimo
276
+ 31: trigésimo primero
277
+ 32: trigésimo segundo
278
+ 33: trigésimo tercero
279
+ 34: trigésimo cuarto
280
+ 35: trigésimo quinto
281
+ 36: trigésimo sexto
282
+ 37: trigésimo séptimo
283
+ 38: trigésimo octavo
284
+ 39: trigésimo noveno
285
+ 40: cuadragésimo
286
+ 41: cuadragésimo primero
287
+ 42: cuadragésimo segundo
288
+ 43: cuadragésimo tercero
289
+ 44: cuadragésimo cuarto
290
+ 45: cuadragésimo quinto
291
+ 46: cuadragésimo sexto
292
+ 47: cuadragésimo séptimo
293
+ 48: cuadragésimo octavo
294
+ 49: cuadragésimo noveno
295
+ 50: quincuagésimo
296
+ 51: quincuagésimo primero
297
+ 52: quincuagésimo segundo
298
+ 53: quincuagésimo tercero
299
+ 54: quincuagésimo cuarto
300
+ 55: quincuagésimo quinto
301
+ 56: quincuagésimo sexto
302
+ 57: quincuagésimo séptimo
303
+ 58: quincuagésimo octavo
304
+ 59: quincuagésimo noveno
305
+ 60: sexagésimo
306
+ 61: sexagésimo primero
307
+ 62: sexagésimo segundo
308
+ 63: sexagésimo tercero
309
+ 64: sexagésimo cuarto
310
+ 65: sexagésimo quinto
311
+ 66: sexagésimo sexto
312
+ 67: sexagésimo séptimo
313
+ 68: sexagésimo octavo
314
+ 69: sexagésimo noveno
315
+ 70: septuagésimo
316
+ 71: septuagésimo primero
317
+ 72: septuagésimo segundo
318
+ 73: septuagésimo tercero
319
+ 74: septuagésimo cuarto
320
+ 75: septuagésimo quinto
321
+ 76: septuagésimo sexto
322
+ 77: septuagésimo séptimo
323
+ 78: septuagésimo octavo
324
+ 79: septuagésimo noveno
325
+ 80: octogésimo
326
+ 81: octogésimo primero
327
+ 82: octogésimo segundo
328
+ 83: octogésimo tercero
329
+ 84: octogésimo cuarto
330
+ 85: octogésimo quinto
331
+ 86: octogésimo sexto
332
+ 87: octogésimo séptimo
333
+ 88: octogésimo octavo
334
+ 89: octogésimo noveno
335
+ 90: nonagésimo
336
+ 91: nonagésimo primero
337
+ 92: nonagésimo segundo
338
+ 93: nonagésimo tercero
339
+ 94: nonagésimo cuarto
340
+ 95: nonagésimo quinto
341
+ 96: nonagésimo sexto
342
+ 97: nonagésimo séptimo
343
+ 98: nonagésimo octavo
344
+ 99: nonagésimo noveno
345
+ 100: centésimo
346
+ 321: tricentésimo vigésimo primero
347
+ 322: tricentésimo vigésimo segundo
348
+ 323: tricentésimo vigésimo tercero
349
+ 1141: milésimo centésimo cuadragésimo primero
350
+ 1142: milésimo centésimo cuadragésimo segundo
351
+ 1143: milésimo centésimo cuadragésimo tercero
352
+ 10311: diez milésimo tricentésimo decimoprimero
353
+ 138400: ciento treinta y ocho milésimo cuadringentésimo
354
+ spellout-ordinal-masculine-plural:
355
+ -1141: menos milésimo centésimo cuadragésimo primeros
356
+ -1142: menos milésimo centésimo cuadragésimo segundos
357
+ -1143: menos milésimo centésimo cuadragésimo terceros
358
+ -100: menos centésimos
359
+ -75: menos septuagésimo quintos
360
+ -50: menos quincuagésimos
361
+ -24: menos vigésimo cuartos
362
+ 0: cero
363
+ 1: primeros
364
+ 2: segundos
365
+ 3: terceros
366
+ 4: cuartos
367
+ 5: quintos
368
+ 6: sextos
369
+ 7: séptimos
370
+ 8: octavos
371
+ 9: novenos
372
+ 10: décimos
373
+ 11: decimoprimeros
374
+ 12: decimosegundos
375
+ 13: decimoterceros
376
+ 14: decimocuartos
377
+ 15: decimoquintos
378
+ 16: decimosextos
379
+ 17: decimoséptimos
380
+ 18: decimoctavos
381
+ 19: decimonovenos
382
+ 20: vigésimos
383
+ 21: vigésimo primeros
384
+ 22: vigésimo segundos
385
+ 23: vigésimo terceros
386
+ 24: vigésimo cuartos
387
+ 25: vigésimo quintos
388
+ 26: vigésimo sextos
389
+ 27: vigésimo séptimos
390
+ 28: vigésimo octavos
391
+ 29: vigésimo novenos
392
+ 30: trigésimos
393
+ 31: trigésimo primeros
394
+ 32: trigésimo segundos
395
+ 33: trigésimo terceros
396
+ 34: trigésimo cuartos
397
+ 35: trigésimo quintos
398
+ 36: trigésimo sextos
399
+ 37: trigésimo séptimos
400
+ 38: trigésimo octavos
401
+ 39: trigésimo novenos
402
+ 40: cuadragésimos
403
+ 41: cuadragésimo primeros
404
+ 42: cuadragésimo segundos
405
+ 43: cuadragésimo terceros
406
+ 44: cuadragésimo cuartos
407
+ 45: cuadragésimo quintos
408
+ 46: cuadragésimo sextos
409
+ 47: cuadragésimo séptimos
410
+ 48: cuadragésimo octavos
411
+ 49: cuadragésimo novenos
412
+ 50: quincuagésimos
413
+ 51: quincuagésimo primeros
414
+ 52: quincuagésimo segundos
415
+ 53: quincuagésimo terceros
416
+ 54: quincuagésimo cuartos
417
+ 55: quincuagésimo quintos
418
+ 56: quincuagésimo sextos
419
+ 57: quincuagésimo séptimos
420
+ 58: quincuagésimo octavos
421
+ 59: quincuagésimo novenos
422
+ 60: sexagésimos
423
+ 61: sexagésimo primeros
424
+ 62: sexagésimo segundos
425
+ 63: sexagésimo terceros
426
+ 64: sexagésimo cuartos
427
+ 65: sexagésimo quintos
428
+ 66: sexagésimo sextos
429
+ 67: sexagésimo séptimos
430
+ 68: sexagésimo octavos
431
+ 69: sexagésimo novenos
432
+ 70: septuagésimos
433
+ 71: septuagésimo primeros
434
+ 72: septuagésimo segundos
435
+ 73: septuagésimo terceros
436
+ 74: septuagésimo cuartos
437
+ 75: septuagésimo quintos
438
+ 76: septuagésimo sextos
439
+ 77: septuagésimo séptimos
440
+ 78: septuagésimo octavos
441
+ 79: septuagésimo novenos
442
+ 80: octogésimos
443
+ 81: octogésimo primeros
444
+ 82: octogésimo segundos
445
+ 83: octogésimo terceros
446
+ 84: octogésimo cuartos
447
+ 85: octogésimo quintos
448
+ 86: octogésimo sextos
449
+ 87: octogésimo séptimos
450
+ 88: octogésimo octavos
451
+ 89: octogésimo novenos
452
+ 90: nonagésimos
453
+ 91: nonagésimo primeros
454
+ 92: nonagésimo segundos
455
+ 93: nonagésimo terceros
456
+ 94: nonagésimo cuartos
457
+ 95: nonagésimo quintos
458
+ 96: nonagésimo sextos
459
+ 97: nonagésimo séptimos
460
+ 98: nonagésimo octavos
461
+ 99: nonagésimo novenos
462
+ 100: centésimos
463
+ 321: tricentésimo vigésimo primeros
464
+ 322: tricentésimo vigésimo segundos
465
+ 323: tricentésimo vigésimo terceros
466
+ 1141: milésimo centésimo cuadragésimo primeros
467
+ 1142: milésimo centésimo cuadragésimo segundos
468
+ 1143: milésimo centésimo cuadragésimo terceros
469
+ 10311: diez milésimo tricentésimo decimoprimeros
470
+ 138400: ciento treinta y ocho milésimo cuadringentésimos
471
+ spellout-ordinal-masculine-adjective:
472
+ -1141: menos milésimo centésimo cuadragésimo primer
473
+ -1142: menos milésimo centésimo cuadragésimo segundo
474
+ -1143: menos milésimo centésimo cuadragésimo tercer
475
+ -100: menos centésimo
476
+ -75: menos septuagésimo quinto
477
+ -50: menos quincuagésimo
478
+ -24: menos vigésimo cuarto
479
+ 0: cero
480
+ 1: primer
481
+ 2: segundo
482
+ 3: tercer
483
+ 4: cuarto
484
+ 5: quinto
485
+ 6: sexto
486
+ 7: séptimo
487
+ 8: octavo
488
+ 9: noveno
489
+ 10: décimo
490
+ 11: undécimo
491
+ 12: duodécimo
492
+ 13: decimotercer
493
+ 14: decimocuarto
494
+ 15: decimoquinto
495
+ 16: decimosexto
496
+ 17: decimoséptimo
497
+ 18: decimoctavo
498
+ 19: decimonoveno
499
+ 20: vigésimo
500
+ 21: vigésimo primer
501
+ 22: vigésimo segundo
502
+ 23: vigésimo tercer
503
+ 24: vigésimo cuarto
504
+ 25: vigésimo quinto
505
+ 26: vigésimo sexto
506
+ 27: vigésimo séptimo
507
+ 28: vigésimo octavo
508
+ 29: vigésimo noveno
509
+ 30: trigésimo
510
+ 31: trigésimo primer
511
+ 32: trigésimo segundo
512
+ 33: trigésimo tercer
513
+ 34: trigésimo cuarto
514
+ 35: trigésimo quinto
515
+ 36: trigésimo sexto
516
+ 37: trigésimo séptimo
517
+ 38: trigésimo octavo
518
+ 39: trigésimo noveno
519
+ 40: cuadragésimo
520
+ 41: cuadragésimo primer
521
+ 42: cuadragésimo segundo
522
+ 43: cuadragésimo tercer
523
+ 44: cuadragésimo cuarto
524
+ 45: cuadragésimo quinto
525
+ 46: cuadragésimo sexto
526
+ 47: cuadragésimo séptimo
527
+ 48: cuadragésimo octavo
528
+ 49: cuadragésimo noveno
529
+ 50: quincuagésimo
530
+ 51: quincuagésimo primer
531
+ 52: quincuagésimo segundo
532
+ 53: quincuagésimo tercer
533
+ 54: quincuagésimo cuarto
534
+ 55: quincuagésimo quinto
535
+ 56: quincuagésimo sexto
536
+ 57: quincuagésimo séptimo
537
+ 58: quincuagésimo octavo
538
+ 59: quincuagésimo noveno
539
+ 60: sexagésimo
540
+ 61: sexagésimo primer
541
+ 62: sexagésimo segundo
542
+ 63: sexagésimo tercer
543
+ 64: sexagésimo cuarto
544
+ 65: sexagésimo quinto
545
+ 66: sexagésimo sexto
546
+ 67: sexagésimo séptimo
547
+ 68: sexagésimo octavo
548
+ 69: sexagésimo noveno
549
+ 70: septuagésimo
550
+ 71: septuagésimo primer
551
+ 72: septuagésimo segundo
552
+ 73: septuagésimo tercer
553
+ 74: septuagésimo cuarto
554
+ 75: septuagésimo quinto
555
+ 76: septuagésimo sexto
556
+ 77: septuagésimo séptimo
557
+ 78: septuagésimo octavo
558
+ 79: septuagésimo noveno
559
+ 80: octogésimo
560
+ 81: octogésimo primer
561
+ 82: octogésimo segundo
562
+ 83: octogésimo tercer
563
+ 84: octogésimo cuarto
564
+ 85: octogésimo quinto
565
+ 86: octogésimo sexto
566
+ 87: octogésimo séptimo
567
+ 88: octogésimo octavo
568
+ 89: octogésimo noveno
569
+ 90: nonagésimo
570
+ 91: nonagésimo primer
571
+ 92: nonagésimo segundo
572
+ 93: nonagésimo tercer
573
+ 94: nonagésimo cuarto
574
+ 95: nonagésimo quinto
575
+ 96: nonagésimo sexto
576
+ 97: nonagésimo séptimo
577
+ 98: nonagésimo octavo
578
+ 99: nonagésimo noveno
579
+ 100: centésimo
580
+ 321: tricentésimo vigésimo primer
581
+ 322: tricentésimo vigésimo segundo
582
+ 323: tricentésimo vigésimo tercer
583
+ 1141: milésimo centésimo cuadragésimo primer
584
+ 1142: milésimo centésimo cuadragésimo segundo
585
+ 1143: milésimo centésimo cuadragésimo tercer
586
+ 10311: diez milésimo tricentésimo undécimo
587
+ 138400: ciento treinta y ocho milésimo cuadringentésimo
588
+ spellout-cardinal-feminine:
589
+ -1141: menos mil ciento cuarenta y una
590
+ -1142: menos mil ciento cuarenta y dos
591
+ -1143: menos mil ciento cuarenta y tres
592
+ -100: menos cien
593
+ -75: menos setenta y cinco
594
+ -50: menos cincuenta
595
+ -24: menos veinticuatro
596
+ 0: cero
597
+ 1: una
598
+ 2: dos
599
+ 3: tres
600
+ 4: cuatro
601
+ 5: cinco
602
+ 6: seis
603
+ 7: siete
604
+ 8: ocho
605
+ 9: nueve
606
+ 10: diez
607
+ 11: once
608
+ 12: doce
609
+ 13: trece
610
+ 14: catorce
611
+ 15: quince
612
+ 16: dieciséis
613
+ 17: diecisiete
614
+ 18: dieciocho
615
+ 19: diecinueve
616
+ 20: veinte
617
+ 21: veintiuna
618
+ 22: veintidós
619
+ 23: veintitrés
620
+ 24: veinticuatro
621
+ 25: veinticinco
622
+ 26: veintiséis
623
+ 27: veintisiete
624
+ 28: veintiocho
625
+ 29: veintinueve
626
+ 30: treinta
627
+ 31: treinta y una
628
+ 32: treinta y dos
629
+ 33: treinta y tres
630
+ 34: treinta y cuatro
631
+ 35: treinta y cinco
632
+ 36: treinta y seis
633
+ 37: treinta y siete
634
+ 38: treinta y ocho
635
+ 39: treinta y nueve
636
+ 40: cuarenta
637
+ 41: cuarenta y una
638
+ 42: cuarenta y dos
639
+ 43: cuarenta y tres
640
+ 44: cuarenta y cuatro
641
+ 45: cuarenta y cinco
642
+ 46: cuarenta y seis
643
+ 47: cuarenta y siete
644
+ 48: cuarenta y ocho
645
+ 49: cuarenta y nueve
646
+ 50: cincuenta
647
+ 51: cincuenta y una
648
+ 52: cincuenta y dos
649
+ 53: cincuenta y tres
650
+ 54: cincuenta y cuatro
651
+ 55: cincuenta y cinco
652
+ 56: cincuenta y seis
653
+ 57: cincuenta y siete
654
+ 58: cincuenta y ocho
655
+ 59: cincuenta y nueve
656
+ 60: sesenta
657
+ 61: sesenta y una
658
+ 62: sesenta y dos
659
+ 63: sesenta y tres
660
+ 64: sesenta y cuatro
661
+ 65: sesenta y cinco
662
+ 66: sesenta y seis
663
+ 67: sesenta y siete
664
+ 68: sesenta y ocho
665
+ 69: sesenta y nueve
666
+ 70: setenta
667
+ 71: setenta y una
668
+ 72: setenta y dos
669
+ 73: setenta y tres
670
+ 74: setenta y cuatro
671
+ 75: setenta y cinco
672
+ 76: setenta y seis
673
+ 77: setenta y siete
674
+ 78: setenta y ocho
675
+ 79: setenta y nueve
676
+ 80: ochenta
677
+ 81: ochenta y una
678
+ 82: ochenta y dos
679
+ 83: ochenta y tres
680
+ 84: ochenta y cuatro
681
+ 85: ochenta y cinco
682
+ 86: ochenta y seis
683
+ 87: ochenta y siete
684
+ 88: ochenta y ocho
685
+ 89: ochenta y nueve
686
+ 90: noventa
687
+ 91: noventa y una
688
+ 92: noventa y dos
689
+ 93: noventa y tres
690
+ 94: noventa y cuatro
691
+ 95: noventa y cinco
692
+ 96: noventa y seis
693
+ 97: noventa y siete
694
+ 98: noventa y ocho
695
+ 99: noventa y nueve
696
+ 100: cien
697
+ 321: tres­cientas veintiuna
698
+ 322: tres­cientas veintidós
699
+ 323: tres­cientas veintitrés
700
+ 1141: mil ciento cuarenta y una
701
+ 1142: mil ciento cuarenta y dos
702
+ 1143: mil ciento cuarenta y tres
703
+ 10311: diez mil tres­cientas once
704
+ 138400: ciento treinta y ocho mil cuatro­cientas
705
+ spellout-cardinal-masculine:
706
+ -1141: menos mil ciento cuarenta y un
707
+ -1142: menos mil ciento cuarenta y dos
708
+ -1143: menos mil ciento cuarenta y tres
709
+ -100: menos cien
710
+ -75: menos setenta y cinco
711
+ -50: menos cincuenta
712
+ -24: menos veinticuatro
713
+ 0: cero
714
+ 1: un
715
+ 2: dos
716
+ 3: tres
717
+ 4: cuatro
718
+ 5: cinco
719
+ 6: seis
720
+ 7: siete
721
+ 8: ocho
722
+ 9: nueve
723
+ 10: diez
724
+ 11: once
725
+ 12: doce
726
+ 13: trece
727
+ 14: catorce
728
+ 15: quince
729
+ 16: dieciséis
730
+ 17: diecisiete
731
+ 18: dieciocho
732
+ 19: diecinueve
733
+ 20: veinte
734
+ 21: veintiún
735
+ 22: veintidós
736
+ 23: veintitrés
737
+ 24: veinticuatro
738
+ 25: veinticinco
739
+ 26: veintiséis
740
+ 27: veintisiete
741
+ 28: veintiocho
742
+ 29: veintinueve
743
+ 30: treinta
744
+ 31: treinta y un
745
+ 32: treinta y dos
746
+ 33: treinta y tres
747
+ 34: treinta y cuatro
748
+ 35: treinta y cinco
749
+ 36: treinta y seis
750
+ 37: treinta y siete
751
+ 38: treinta y ocho
752
+ 39: treinta y nueve
753
+ 40: cuarenta
754
+ 41: cuarenta y un
755
+ 42: cuarenta y dos
756
+ 43: cuarenta y tres
757
+ 44: cuarenta y cuatro
758
+ 45: cuarenta y cinco
759
+ 46: cuarenta y seis
760
+ 47: cuarenta y siete
761
+ 48: cuarenta y ocho
762
+ 49: cuarenta y nueve
763
+ 50: cincuenta
764
+ 51: cincuenta y un
765
+ 52: cincuenta y dos
766
+ 53: cincuenta y tres
767
+ 54: cincuenta y cuatro
768
+ 55: cincuenta y cinco
769
+ 56: cincuenta y seis
770
+ 57: cincuenta y siete
771
+ 58: cincuenta y ocho
772
+ 59: cincuenta y nueve
773
+ 60: sesenta
774
+ 61: sesenta y un
775
+ 62: sesenta y dos
776
+ 63: sesenta y tres
777
+ 64: sesenta y cuatro
778
+ 65: sesenta y cinco
779
+ 66: sesenta y seis
780
+ 67: sesenta y siete
781
+ 68: sesenta y ocho
782
+ 69: sesenta y nueve
783
+ 70: setenta
784
+ 71: setenta y un
785
+ 72: setenta y dos
786
+ 73: setenta y tres
787
+ 74: setenta y cuatro
788
+ 75: setenta y cinco
789
+ 76: setenta y seis
790
+ 77: setenta y siete
791
+ 78: setenta y ocho
792
+ 79: setenta y nueve
793
+ 80: ochenta
794
+ 81: ochenta y un
795
+ 82: ochenta y dos
796
+ 83: ochenta y tres
797
+ 84: ochenta y cuatro
798
+ 85: ochenta y cinco
799
+ 86: ochenta y seis
800
+ 87: ochenta y siete
801
+ 88: ochenta y ocho
802
+ 89: ochenta y nueve
803
+ 90: noventa
804
+ 91: noventa y un
805
+ 92: noventa y dos
806
+ 93: noventa y tres
807
+ 94: noventa y cuatro
808
+ 95: noventa y cinco
809
+ 96: noventa y seis
810
+ 97: noventa y siete
811
+ 98: noventa y ocho
812
+ 99: noventa y nueve
813
+ 100: cien
814
+ 321: trescientos veintiún
815
+ 322: trescientos veintidós
816
+ 323: trescientos veintitrés
817
+ 1141: mil ciento cuarenta y un
818
+ 1142: mil ciento cuarenta y dos
819
+ 1143: mil ciento cuarenta y tres
820
+ 10311: diez mil trescientos once
821
+ 138400: ciento treinta y ocho mil cuatrocientos
588
822
  spellout-numbering:
589
- -1141: minus one thousand one hundred forty-one
590
- -1142: minus one thousand one hundred forty-two
591
- -1143: minus one thousand one hundred forty-three
592
- -100: minus one hundred
593
- -75: minus seventy-five
594
- -50: minus fifty
595
- -24: minus twenty-four
596
- 0: zero
597
- 1: one
598
- 2: two
599
- 3: three
600
- 4: four
601
- 5: five
602
- 6: six
603
- 7: seven
604
- 8: eight
605
- 9: nine
606
- 10: ten
607
- 11: eleven
608
- 12: twelve
609
- 13: thirteen
610
- 14: fourteen
611
- 15: fifteen
612
- 16: sixteen
613
- 17: seventeen
614
- 18: eighteen
615
- 19: nineteen
616
- 20: twenty
617
- 21: twenty-one
618
- 22: twenty-two
619
- 23: twenty-three
620
- 24: twenty-four
621
- 25: twenty-five
622
- 26: twenty-six
623
- 27: twenty-seven
624
- 28: twenty-eight
625
- 29: twenty-nine
626
- 30: thirty
627
- 31: thirty-one
628
- 32: thirty-two
629
- 33: thirty-three
630
- 34: thirty-four
631
- 35: thirty-five
632
- 36: thirty-six
633
- 37: thirty-seven
634
- 38: thirty-eight
635
- 39: thirty-nine
636
- 40: forty
637
- 41: forty-one
638
- 42: forty-two
639
- 43: forty-three
640
- 44: forty-four
641
- 45: forty-five
642
- 46: forty-six
643
- 47: forty-seven
644
- 48: forty-eight
645
- 49: forty-nine
646
- 50: fifty
647
- 51: fifty-one
648
- 52: fifty-two
649
- 53: fifty-three
650
- 54: fifty-four
651
- 55: fifty-five
652
- 56: fifty-six
653
- 57: fifty-seven
654
- 58: fifty-eight
655
- 59: fifty-nine
656
- 60: sixty
657
- 61: sixty-one
658
- 62: sixty-two
659
- 63: sixty-three
660
- 64: sixty-four
661
- 65: sixty-five
662
- 66: sixty-six
663
- 67: sixty-seven
664
- 68: sixty-eight
665
- 69: sixty-nine
666
- 70: seventy
667
- 71: seventy-one
668
- 72: seventy-two
669
- 73: seventy-three
670
- 74: seventy-four
671
- 75: seventy-five
672
- 76: seventy-six
673
- 77: seventy-seven
674
- 78: seventy-eight
675
- 79: seventy-nine
676
- 80: eighty
677
- 81: eighty-one
678
- 82: eighty-two
679
- 83: eighty-three
680
- 84: eighty-four
681
- 85: eighty-five
682
- 86: eighty-six
683
- 87: eighty-seven
684
- 88: eighty-eight
685
- 89: eighty-nine
686
- 90: ninety
687
- 91: ninety-one
688
- 92: ninety-two
689
- 93: ninety-three
690
- 94: ninety-four
691
- 95: ninety-five
692
- 96: ninety-six
693
- 97: ninety-seven
694
- 98: ninety-eight
695
- 99: ninety-nine
696
- 100: one hundred
697
- 321: three hundred twenty-one
698
- 322: three hundred twenty-two
699
- 323: three hundred twenty-three
700
- 1141: one thousand one hundred forty-one
701
- 1142: one thousand one hundred forty-two
702
- 1143: one thousand one hundred forty-three
703
- 10311: ten thousand three hundred eleven
704
- 138400: one hundred thirty-eight thousand four hundred
823
+ -1141: menos mil ciento cuarenta y uno
824
+ -1142: menos mil ciento cuarenta y dos
825
+ -1143: menos mil ciento cuarenta y tres
826
+ -100: menos cien
827
+ -75: menos setenta y cinco
828
+ -50: menos cincuenta
829
+ -24: menos veinticuatro
830
+ 0: cero
831
+ 1: uno
832
+ 2: dos
833
+ 3: tres
834
+ 4: cuatro
835
+ 5: cinco
836
+ 6: seis
837
+ 7: siete
838
+ 8: ocho
839
+ 9: nueve
840
+ 10: diez
841
+ 11: once
842
+ 12: doce
843
+ 13: trece
844
+ 14: catorce
845
+ 15: quince
846
+ 16: dieciséis
847
+ 17: diecisiete
848
+ 18: dieciocho
849
+ 19: diecinueve
850
+ 20: veinte
851
+ 21: veintiuno
852
+ 22: veintidós
853
+ 23: veintitrés
854
+ 24: veinticuatro
855
+ 25: veinticinco
856
+ 26: veintiséis
857
+ 27: veintisiete
858
+ 28: veintiocho
859
+ 29: veintinueve
860
+ 30: treinta
861
+ 31: treinta y uno
862
+ 32: treinta y dos
863
+ 33: treinta y tres
864
+ 34: treinta y cuatro
865
+ 35: treinta y cinco
866
+ 36: treinta y seis
867
+ 37: treinta y siete
868
+ 38: treinta y ocho
869
+ 39: treinta y nueve
870
+ 40: cuarenta
871
+ 41: cuarenta y uno
872
+ 42: cuarenta y dos
873
+ 43: cuarenta y tres
874
+ 44: cuarenta y cuatro
875
+ 45: cuarenta y cinco
876
+ 46: cuarenta y seis
877
+ 47: cuarenta y siete
878
+ 48: cuarenta y ocho
879
+ 49: cuarenta y nueve
880
+ 50: cincuenta
881
+ 51: cincuenta y uno
882
+ 52: cincuenta y dos
883
+ 53: cincuenta y tres
884
+ 54: cincuenta y cuatro
885
+ 55: cincuenta y cinco
886
+ 56: cincuenta y seis
887
+ 57: cincuenta y siete
888
+ 58: cincuenta y ocho
889
+ 59: cincuenta y nueve
890
+ 60: sesenta
891
+ 61: sesenta y uno
892
+ 62: sesenta y dos
893
+ 63: sesenta y tres
894
+ 64: sesenta y cuatro
895
+ 65: sesenta y cinco
896
+ 66: sesenta y seis
897
+ 67: sesenta y siete
898
+ 68: sesenta y ocho
899
+ 69: sesenta y nueve
900
+ 70: setenta
901
+ 71: setenta y uno
902
+ 72: setenta y dos
903
+ 73: setenta y tres
904
+ 74: setenta y cuatro
905
+ 75: setenta y cinco
906
+ 76: setenta y seis
907
+ 77: setenta y siete
908
+ 78: setenta y ocho
909
+ 79: setenta y nueve
910
+ 80: ochenta
911
+ 81: ochenta y uno
912
+ 82: ochenta y dos
913
+ 83: ochenta y tres
914
+ 84: ochenta y cuatro
915
+ 85: ochenta y cinco
916
+ 86: ochenta y seis
917
+ 87: ochenta y siete
918
+ 88: ochenta y ocho
919
+ 89: ochenta y nueve
920
+ 90: noventa
921
+ 91: noventa y uno
922
+ 92: noventa y dos
923
+ 93: noventa y tres
924
+ 94: noventa y cuatro
925
+ 95: noventa y cinco
926
+ 96: noventa y seis
927
+ 97: noventa y siete
928
+ 98: noventa y ocho
929
+ 99: noventa y nueve
930
+ 100: cien
931
+ 321: trescientos veintiuno
932
+ 322: trescientos veintidós
933
+ 323: trescientos veintitrés
934
+ 1141: mil ciento cuarenta y uno
935
+ 1142: mil ciento cuarenta y dos
936
+ 1143: mil ciento cuarenta y tres
937
+ 10311: diez mil trescientos once
938
+ 138400: ciento treinta y ocho mil cuatrocientos
705
939
  spellout-numbering-year:
706
- -1141: minus eleven forty-one
707
- -1142: minus eleven forty-two
708
- -1143: minus eleven forty-three
709
- -100: minus one hundred
710
- -75: minus seventy-five
711
- -50: minus fifty
712
- -24: minus twenty-four
713
- 0: zero
714
- 1: one
715
- 2: two
716
- 3: three
717
- 4: four
718
- 5: five
719
- 6: six
720
- 7: seven
721
- 8: eight
722
- 9: nine
723
- 10: ten
724
- 11: eleven
725
- 12: twelve
726
- 13: thirteen
727
- 14: fourteen
728
- 15: fifteen
729
- 16: sixteen
730
- 17: seventeen
731
- 18: eighteen
732
- 19: nineteen
733
- 20: twenty
734
- 21: twenty-one
735
- 22: twenty-two
736
- 23: twenty-three
737
- 24: twenty-four
738
- 25: twenty-five
739
- 26: twenty-six
740
- 27: twenty-seven
741
- 28: twenty-eight
742
- 29: twenty-nine
743
- 30: thirty
744
- 31: thirty-one
745
- 32: thirty-two
746
- 33: thirty-three
747
- 34: thirty-four
748
- 35: thirty-five
749
- 36: thirty-six
750
- 37: thirty-seven
751
- 38: thirty-eight
752
- 39: thirty-nine
753
- 40: forty
754
- 41: forty-one
755
- 42: forty-two
756
- 43: forty-three
757
- 44: forty-four
758
- 45: forty-five
759
- 46: forty-six
760
- 47: forty-seven
761
- 48: forty-eight
762
- 49: forty-nine
763
- 50: fifty
764
- 51: fifty-one
765
- 52: fifty-two
766
- 53: fifty-three
767
- 54: fifty-four
768
- 55: fifty-five
769
- 56: fifty-six
770
- 57: fifty-seven
771
- 58: fifty-eight
772
- 59: fifty-nine
773
- 60: sixty
774
- 61: sixty-one
775
- 62: sixty-two
776
- 63: sixty-three
777
- 64: sixty-four
778
- 65: sixty-five
779
- 66: sixty-six
780
- 67: sixty-seven
781
- 68: sixty-eight
782
- 69: sixty-nine
783
- 70: seventy
784
- 71: seventy-one
785
- 72: seventy-two
786
- 73: seventy-three
787
- 74: seventy-four
788
- 75: seventy-five
789
- 76: seventy-six
790
- 77: seventy-seven
791
- 78: seventy-eight
792
- 79: seventy-nine
793
- 80: eighty
794
- 81: eighty-one
795
- 82: eighty-two
796
- 83: eighty-three
797
- 84: eighty-four
798
- 85: eighty-five
799
- 86: eighty-six
800
- 87: eighty-seven
801
- 88: eighty-eight
802
- 89: eighty-nine
803
- 90: ninety
804
- 91: ninety-one
805
- 92: ninety-two
806
- 93: ninety-three
807
- 94: ninety-four
808
- 95: ninety-five
809
- 96: ninety-six
810
- 97: ninety-seven
811
- 98: ninety-eight
812
- 99: ninety-nine
813
- 100: one hundred
814
- 321: three hundred twenty-one
815
- 322: three hundred twenty-two
816
- 323: three hundred twenty-three
817
- 1141: eleven forty-one
818
- 1142: eleven forty-two
819
- 1143: eleven forty-three
820
- 10311: ten thousand three hundred eleven
821
- 138400: one hundred thirty-eight thousand four hundred
940
+ -1141: menos mil ciento cuarenta y uno
941
+ -1142: menos mil ciento cuarenta y dos
942
+ -1143: menos mil ciento cuarenta y tres
943
+ -100: menos cien
944
+ -75: menos setenta y cinco
945
+ -50: menos cincuenta
946
+ -24: menos veinticuatro
947
+ 0: cero
948
+ 1: uno
949
+ 2: dos
950
+ 3: tres
951
+ 4: cuatro
952
+ 5: cinco
953
+ 6: seis
954
+ 7: siete
955
+ 8: ocho
956
+ 9: nueve
957
+ 10: diez
958
+ 11: once
959
+ 12: doce
960
+ 13: trece
961
+ 14: catorce
962
+ 15: quince
963
+ 16: dieciséis
964
+ 17: diecisiete
965
+ 18: dieciocho
966
+ 19: diecinueve
967
+ 20: veinte
968
+ 21: veintiuno
969
+ 22: veintidós
970
+ 23: veintitrés
971
+ 24: veinticuatro
972
+ 25: veinticinco
973
+ 26: veintiséis
974
+ 27: veintisiete
975
+ 28: veintiocho
976
+ 29: veintinueve
977
+ 30: treinta
978
+ 31: treinta y uno
979
+ 32: treinta y dos
980
+ 33: treinta y tres
981
+ 34: treinta y cuatro
982
+ 35: treinta y cinco
983
+ 36: treinta y seis
984
+ 37: treinta y siete
985
+ 38: treinta y ocho
986
+ 39: treinta y nueve
987
+ 40: cuarenta
988
+ 41: cuarenta y uno
989
+ 42: cuarenta y dos
990
+ 43: cuarenta y tres
991
+ 44: cuarenta y cuatro
992
+ 45: cuarenta y cinco
993
+ 46: cuarenta y seis
994
+ 47: cuarenta y siete
995
+ 48: cuarenta y ocho
996
+ 49: cuarenta y nueve
997
+ 50: cincuenta
998
+ 51: cincuenta y uno
999
+ 52: cincuenta y dos
1000
+ 53: cincuenta y tres
1001
+ 54: cincuenta y cuatro
1002
+ 55: cincuenta y cinco
1003
+ 56: cincuenta y seis
1004
+ 57: cincuenta y siete
1005
+ 58: cincuenta y ocho
1006
+ 59: cincuenta y nueve
1007
+ 60: sesenta
1008
+ 61: sesenta y uno
1009
+ 62: sesenta y dos
1010
+ 63: sesenta y tres
1011
+ 64: sesenta y cuatro
1012
+ 65: sesenta y cinco
1013
+ 66: sesenta y seis
1014
+ 67: sesenta y siete
1015
+ 68: sesenta y ocho
1016
+ 69: sesenta y nueve
1017
+ 70: setenta
1018
+ 71: setenta y uno
1019
+ 72: setenta y dos
1020
+ 73: setenta y tres
1021
+ 74: setenta y cuatro
1022
+ 75: setenta y cinco
1023
+ 76: setenta y seis
1024
+ 77: setenta y siete
1025
+ 78: setenta y ocho
1026
+ 79: setenta y nueve
1027
+ 80: ochenta
1028
+ 81: ochenta y uno
1029
+ 82: ochenta y dos
1030
+ 83: ochenta y tres
1031
+ 84: ochenta y cuatro
1032
+ 85: ochenta y cinco
1033
+ 86: ochenta y seis
1034
+ 87: ochenta y siete
1035
+ 88: ochenta y ocho
1036
+ 89: ochenta y nueve
1037
+ 90: noventa
1038
+ 91: noventa y uno
1039
+ 92: noventa y dos
1040
+ 93: noventa y tres
1041
+ 94: noventa y cuatro
1042
+ 95: noventa y cinco
1043
+ 96: noventa y seis
1044
+ 97: noventa y siete
1045
+ 98: noventa y ocho
1046
+ 99: noventa y nueve
1047
+ 100: cien
1048
+ 321: trescientos veintiuno
1049
+ 322: trescientos veintidós
1050
+ 323: trescientos veintitrés
1051
+ 1141: mil ciento cuarenta y uno
1052
+ 1142: mil ciento cuarenta y dos
1053
+ 1143: mil ciento cuarenta y tres
1054
+ 10311: diez mil trescientos once
1055
+ 138400: ciento treinta y ocho mil cuatrocientos
822
1056
  OrdinalRules:
823
1057
  digits-ordinal:
824
- -1141: −1,141th
825
- -1142: −1,142th
826
- -1143: −1,143th
827
- -100: −100th
828
- -75: −75th
829
- -50: −50th
830
- -24: −24th
831
- 0: 0th
832
- 1: 1st
833
- 2: 2nd
834
- 3: 3nd
835
- 4: 4rd
836
- 5: 5th
837
- 6: 6th
838
- 7: 7th
839
- 8: 8th
840
- 9: 9th
841
- 10: 10th
842
- 11: 11th
843
- 12: 12th
844
- 13: 13th
845
- 14: 14th
846
- 15: 15th
847
- 16: 16th
848
- 17: 17th
849
- 18: 18th
850
- 19: 19th
851
- 20: 20th
852
- 21: 21th
853
- 22: 22th
854
- 23: 23th
855
- 24: 24th
856
- 25: 25th
857
- 26: 26th
858
- 27: 27th
859
- 28: 28th
860
- 29: 29th
861
- 30: 30th
862
- 31: 31th
863
- 32: 32th
864
- 33: 33th
865
- 34: 34th
866
- 35: 35th
867
- 36: 36th
868
- 37: 37th
869
- 38: 38th
870
- 39: 39th
871
- 40: 40th
872
- 41: 41th
873
- 42: 42th
874
- 43: 43th
875
- 44: 44th
876
- 45: 45th
877
- 46: 46th
878
- 47: 47th
879
- 48: 48th
880
- 49: 49th
881
- 50: 50th
882
- 51: 51th
883
- 52: 52th
884
- 53: 53th
885
- 54: 54th
886
- 55: 55th
887
- 56: 56th
888
- 57: 57th
889
- 58: 58th
890
- 59: 59th
891
- 60: 60th
892
- 61: 61th
893
- 62: 62th
894
- 63: 63th
895
- 64: 64th
896
- 65: 65th
897
- 66: 66th
898
- 67: 67th
899
- 68: 68th
900
- 69: 69th
901
- 70: 70th
902
- 71: 71th
903
- 72: 72th
904
- 73: 73th
905
- 74: 74th
906
- 75: 75th
907
- 76: 76th
908
- 77: 77th
909
- 78: 78th
910
- 79: 79th
911
- 80: 80th
912
- 81: 81th
913
- 82: 82th
914
- 83: 83th
915
- 84: 84th
916
- 85: 85th
917
- 86: 86th
918
- 87: 87th
919
- 88: 88th
920
- 89: 89th
921
- 90: 90th
922
- 91: 91th
923
- 92: 92th
924
- 93: 93th
925
- 94: 94th
926
- 95: 95th
927
- 96: 96th
928
- 97: 97th
929
- 98: 98th
930
- 99: 99th
931
- 100: 100th
932
- 321: 321th
933
- 322: 322th
934
- 323: 323th
935
- 1141: 1,141th
936
- 1142: 1,142th
937
- 1143: 1,143th
938
- 10311: 10,311th
939
- 138400: 138,400th
1058
+ -1141: "−1,141.º"
1059
+ -1142: "−1,142.º"
1060
+ -1143: "−1,143.º"
1061
+ -100: "100.º"
1062
+ -75: "75.º"
1063
+ -50: "50.º"
1064
+ -24: "24.º"
1065
+ 0: 0.º
1066
+ 1: 1.º
1067
+ 2: 2.º
1068
+ 3: 3.º
1069
+ 4: 4.º
1070
+ 5: 5.º
1071
+ 6: 6.º
1072
+ 7: 7.º
1073
+ 8: 8.º
1074
+ 9: 9.º
1075
+ 10: 10.º
1076
+ 11: 11.º
1077
+ 12: 12.º
1078
+ 13: 13.º
1079
+ 14: 14.º
1080
+ 15: 15.º
1081
+ 16: 16.º
1082
+ 17: 17.º
1083
+ 18: 18.º
1084
+ 19: 19.º
1085
+ 20: 20.º
1086
+ 21: 21.º
1087
+ 22: 22.º
1088
+ 23: 23.º
1089
+ 24: 24.º
1090
+ 25: 25.º
1091
+ 26: 26.º
1092
+ 27: 27.º
1093
+ 28: 28.º
1094
+ 29: 29.º
1095
+ 30: 30.º
1096
+ 31: 31.º
1097
+ 32: 32.º
1098
+ 33: 33.º
1099
+ 34: 34.º
1100
+ 35: 35.º
1101
+ 36: 36.º
1102
+ 37: 37.º
1103
+ 38: 38.º
1104
+ 39: 39.º
1105
+ 40: 40.º
1106
+ 41: 41.º
1107
+ 42: 42.º
1108
+ 43: 43.º
1109
+ 44: 44.º
1110
+ 45: 45.º
1111
+ 46: 46.º
1112
+ 47: 47.º
1113
+ 48: 48.º
1114
+ 49: 49.º
1115
+ 50: 50.º
1116
+ 51: 51.º
1117
+ 52: 52.º
1118
+ 53: 53.º
1119
+ 54: 54.º
1120
+ 55: 55.º
1121
+ 56: 56.º
1122
+ 57: 57.º
1123
+ 58: 58.º
1124
+ 59: 59.º
1125
+ 60: 60.º
1126
+ 61: 61.º
1127
+ 62: 62.º
1128
+ 63: 63.º
1129
+ 64: 64.º
1130
+ 65: 65.º
1131
+ 66: 66.º
1132
+ 67: 67.º
1133
+ 68: 68.º
1134
+ 69: 69.º
1135
+ 70: 70.º
1136
+ 71: 71.º
1137
+ 72: 72.º
1138
+ 73: 73.º
1139
+ 74: 74.º
1140
+ 75: 75.º
1141
+ 76: 76.º
1142
+ 77: 77.º
1143
+ 78: 78.º
1144
+ 79: 79.º
1145
+ 80: 80.º
1146
+ 81: 81.º
1147
+ 82: 82.º
1148
+ 83: 83.º
1149
+ 84: 84.º
1150
+ 85: 85.º
1151
+ 86: 86.º
1152
+ 87: 87.º
1153
+ 88: 88.º
1154
+ 89: 89.º
1155
+ 90: 90.º
1156
+ 91: 91.º
1157
+ 92: 92.º
1158
+ 93: 93.º
1159
+ 94: 94.º
1160
+ 95: 95.º
1161
+ 96: 96.º
1162
+ 97: 97.º
1163
+ 98: 98.º
1164
+ 99: 99.º
1165
+ 100: 100.º
1166
+ 321: 321.º
1167
+ 322: 322.º
1168
+ 323: 323.º
1169
+ 1141: 1,141.º
1170
+ 1142: 1,142.º
1171
+ 1143: 1,143.º
1172
+ 10311: 10,311.º
1173
+ 138400: 138,400.º
1174
+ digits-ordinal-feminine:
1175
+ -1141: "−1,141.ª"
1176
+ -1142: "−1,142.ª"
1177
+ -1143: "−1,143.ª"
1178
+ -100: "−100.ª"
1179
+ -75: "−75.ª"
1180
+ -50: "−50.ª"
1181
+ -24: "−24.ª"
1182
+ 0: 0.ª
1183
+ 1: 1.ª
1184
+ 2: 2.ª
1185
+ 3: 3.ª
1186
+ 4: 4.ª
1187
+ 5: 5.ª
1188
+ 6: 6.ª
1189
+ 7: 7.ª
1190
+ 8: 8.ª
1191
+ 9: 9.ª
1192
+ 10: 10.ª
1193
+ 11: 11.ª
1194
+ 12: 12.ª
1195
+ 13: 13.ª
1196
+ 14: 14.ª
1197
+ 15: 15.ª
1198
+ 16: 16.ª
1199
+ 17: 17.ª
1200
+ 18: 18.ª
1201
+ 19: 19.ª
1202
+ 20: 20.ª
1203
+ 21: 21.ª
1204
+ 22: 22.ª
1205
+ 23: 23.ª
1206
+ 24: 24.ª
1207
+ 25: 25.ª
1208
+ 26: 26.ª
1209
+ 27: 27.ª
1210
+ 28: 28.ª
1211
+ 29: 29.ª
1212
+ 30: 30.ª
1213
+ 31: 31.ª
1214
+ 32: 32.ª
1215
+ 33: 33.ª
1216
+ 34: 34.ª
1217
+ 35: 35.ª
1218
+ 36: 36.ª
1219
+ 37: 37.ª
1220
+ 38: 38.ª
1221
+ 39: 39.ª
1222
+ 40: 40.ª
1223
+ 41: 41.ª
1224
+ 42: 42.ª
1225
+ 43: 43.ª
1226
+ 44: 44.ª
1227
+ 45: 45.ª
1228
+ 46: 46.ª
1229
+ 47: 47.ª
1230
+ 48: 48.ª
1231
+ 49: 49.ª
1232
+ 50: 50.ª
1233
+ 51: 51.ª
1234
+ 52: 52.ª
1235
+ 53: 53.ª
1236
+ 54: 54.ª
1237
+ 55: 55.ª
1238
+ 56: 56.ª
1239
+ 57: 57.ª
1240
+ 58: 58.ª
1241
+ 59: 59.ª
1242
+ 60: 60.ª
1243
+ 61: 61.ª
1244
+ 62: 62.ª
1245
+ 63: 63.ª
1246
+ 64: 64.ª
1247
+ 65: 65.ª
1248
+ 66: 66.ª
1249
+ 67: 67.ª
1250
+ 68: 68.ª
1251
+ 69: 69.ª
1252
+ 70: 70.ª
1253
+ 71: 71.ª
1254
+ 72: 72.ª
1255
+ 73: 73.ª
1256
+ 74: 74.ª
1257
+ 75: 75.ª
1258
+ 76: 76.ª
1259
+ 77: 77.ª
1260
+ 78: 78.ª
1261
+ 79: 79.ª
1262
+ 80: 80.ª
1263
+ 81: 81.ª
1264
+ 82: 82.ª
1265
+ 83: 83.ª
1266
+ 84: 84.ª
1267
+ 85: 85.ª
1268
+ 86: 86.ª
1269
+ 87: 87.ª
1270
+ 88: 88.ª
1271
+ 89: 89.ª
1272
+ 90: 90.ª
1273
+ 91: 91.ª
1274
+ 92: 92.ª
1275
+ 93: 93.ª
1276
+ 94: 94.ª
1277
+ 95: 95.ª
1278
+ 96: 96.ª
1279
+ 97: 97.ª
1280
+ 98: 98.ª
1281
+ 99: 99.ª
1282
+ 100: 100.ª
1283
+ 321: 321.ª
1284
+ 322: 322.ª
1285
+ 323: 323.ª
1286
+ 1141: 1,141.ª
1287
+ 1142: 1,142.ª
1288
+ 1143: 1,143.ª
1289
+ 10311: 10,311.ª
1290
+ 138400: 138,400.ª
1291
+ digits-ordinal-masculine:
1292
+ -1141: "−1,141.º"
1293
+ -1142: "−1,142.º"
1294
+ -1143: "−1,143.º"
1295
+ -100: "−100.º"
1296
+ -75: "−75.º"
1297
+ -50: "−50.º"
1298
+ -24: "−24.º"
1299
+ 0: 0.º
1300
+ 1: 1.º
1301
+ 2: 2.º
1302
+ 3: 3.º
1303
+ 4: 4.º
1304
+ 5: 5.º
1305
+ 6: 6.º
1306
+ 7: 7.º
1307
+ 8: 8.º
1308
+ 9: 9.º
1309
+ 10: 10.º
1310
+ 11: 11.º
1311
+ 12: 12.º
1312
+ 13: 13.º
1313
+ 14: 14.º
1314
+ 15: 15.º
1315
+ 16: 16.º
1316
+ 17: 17.º
1317
+ 18: 18.º
1318
+ 19: 19.º
1319
+ 20: 20.º
1320
+ 21: 21.º
1321
+ 22: 22.º
1322
+ 23: 23.º
1323
+ 24: 24.º
1324
+ 25: 25.º
1325
+ 26: 26.º
1326
+ 27: 27.º
1327
+ 28: 28.º
1328
+ 29: 29.º
1329
+ 30: 30.º
1330
+ 31: 31.º
1331
+ 32: 32.º
1332
+ 33: 33.º
1333
+ 34: 34.º
1334
+ 35: 35.º
1335
+ 36: 36.º
1336
+ 37: 37.º
1337
+ 38: 38.º
1338
+ 39: 39.º
1339
+ 40: 40.º
1340
+ 41: 41.º
1341
+ 42: 42.º
1342
+ 43: 43.º
1343
+ 44: 44.º
1344
+ 45: 45.º
1345
+ 46: 46.º
1346
+ 47: 47.º
1347
+ 48: 48.º
1348
+ 49: 49.º
1349
+ 50: 50.º
1350
+ 51: 51.º
1351
+ 52: 52.º
1352
+ 53: 53.º
1353
+ 54: 54.º
1354
+ 55: 55.º
1355
+ 56: 56.º
1356
+ 57: 57.º
1357
+ 58: 58.º
1358
+ 59: 59.º
1359
+ 60: 60.º
1360
+ 61: 61.º
1361
+ 62: 62.º
1362
+ 63: 63.º
1363
+ 64: 64.º
1364
+ 65: 65.º
1365
+ 66: 66.º
1366
+ 67: 67.º
1367
+ 68: 68.º
1368
+ 69: 69.º
1369
+ 70: 70.º
1370
+ 71: 71.º
1371
+ 72: 72.º
1372
+ 73: 73.º
1373
+ 74: 74.º
1374
+ 75: 75.º
1375
+ 76: 76.º
1376
+ 77: 77.º
1377
+ 78: 78.º
1378
+ 79: 79.º
1379
+ 80: 80.º
1380
+ 81: 81.º
1381
+ 82: 82.º
1382
+ 83: 83.º
1383
+ 84: 84.º
1384
+ 85: 85.º
1385
+ 86: 86.º
1386
+ 87: 87.º
1387
+ 88: 88.º
1388
+ 89: 89.º
1389
+ 90: 90.º
1390
+ 91: 91.º
1391
+ 92: 92.º
1392
+ 93: 93.º
1393
+ 94: 94.º
1394
+ 95: 95.º
1395
+ 96: 96.º
1396
+ 97: 97.º
1397
+ 98: 98.º
1398
+ 99: 99.º
1399
+ 100: 100.º
1400
+ 321: 321.º
1401
+ 322: 322.º
1402
+ 323: 323.º
1403
+ 1141: 1,141.º
1404
+ 1142: 1,142.º
1405
+ 1143: 1,143.º
1406
+ 10311: 10,311.º
1407
+ 138400: 138,400.º
1408
+ digits-ordinal-masculine-adjective:
1409
+ -1141: "−1,141.ᵉʳ"
1410
+ -1142: "−1,142.º"
1411
+ -1143: "−1,143.ᵉʳ"
1412
+ -100: "−100.º"
1413
+ -75: "−75.º"
1414
+ -50: "−50.º"
1415
+ -24: "−24.º"
1416
+ 0: 0.º
1417
+ 1: 1.ᵉʳ
1418
+ 2: 2.º
1419
+ 3: 3.ᵉʳ
1420
+ 4: 4.º
1421
+ 5: 5.º
1422
+ 6: 6.º
1423
+ 7: 7.º
1424
+ 8: 8.º
1425
+ 9: 9.º
1426
+ 10: 10.º
1427
+ 11: 11.º
1428
+ 12: 12.º
1429
+ 13: 13.º
1430
+ 14: 14.º
1431
+ 15: 15.º
1432
+ 16: 16.º
1433
+ 17: 17.º
1434
+ 18: 18.º
1435
+ 19: 19.º
1436
+ 20: 20.º
1437
+ 21: 21.ᵉʳ
1438
+ 22: 22.º
1439
+ 23: 23.ᵉʳ
1440
+ 24: 24.º
1441
+ 25: 25.º
1442
+ 26: 26.º
1443
+ 27: 27.º
1444
+ 28: 28.º
1445
+ 29: 29.º
1446
+ 30: 30.º
1447
+ 31: 31.ᵉʳ
1448
+ 32: 32.º
1449
+ 33: 33.ᵉʳ
1450
+ 34: 34.º
1451
+ 35: 35.º
1452
+ 36: 36.º
1453
+ 37: 37.º
1454
+ 38: 38.º
1455
+ 39: 39.º
1456
+ 40: 40.º
1457
+ 41: 41.ᵉʳ
1458
+ 42: 42.º
1459
+ 43: 43.ᵉʳ
1460
+ 44: 44.º
1461
+ 45: 45.º
1462
+ 46: 46.º
1463
+ 47: 47.º
1464
+ 48: 48.º
1465
+ 49: 49.º
1466
+ 50: 50.º
1467
+ 51: 51.ᵉʳ
1468
+ 52: 52.º
1469
+ 53: 53.ᵉʳ
1470
+ 54: 54.º
1471
+ 55: 55.º
1472
+ 56: 56.º
1473
+ 57: 57.º
1474
+ 58: 58.º
1475
+ 59: 59.º
1476
+ 60: 60.º
1477
+ 61: 61.ᵉʳ
1478
+ 62: 62.º
1479
+ 63: 63.ᵉʳ
1480
+ 64: 64.º
1481
+ 65: 65.º
1482
+ 66: 66.º
1483
+ 67: 67.º
1484
+ 68: 68.º
1485
+ 69: 69.º
1486
+ 70: 70.º
1487
+ 71: 71.ᵉʳ
1488
+ 72: 72.º
1489
+ 73: 73.ᵉʳ
1490
+ 74: 74.º
1491
+ 75: 75.º
1492
+ 76: 76.º
1493
+ 77: 77.º
1494
+ 78: 78.º
1495
+ 79: 79.º
1496
+ 80: 80.º
1497
+ 81: 81.ᵉʳ
1498
+ 82: 82.º
1499
+ 83: 83.ᵉʳ
1500
+ 84: 84.º
1501
+ 85: 85.º
1502
+ 86: 86.º
1503
+ 87: 87.º
1504
+ 88: 88.º
1505
+ 89: 89.º
1506
+ 90: 90.º
1507
+ 91: 91.ᵉʳ
1508
+ 92: 92.º
1509
+ 93: 93.ᵉʳ
1510
+ 94: 94.º
1511
+ 95: 95.º
1512
+ 96: 96.º
1513
+ 97: 97.º
1514
+ 98: 98.º
1515
+ 99: 99.º
1516
+ 100: 100.º
1517
+ 321: 321.ᵉʳ
1518
+ 322: 322.º
1519
+ 323: 323.ᵉʳ
1520
+ 1141: 1,141.ᵉʳ
1521
+ 1142: 1,142.º
1522
+ 1143: 1,143.ᵉʳ
1523
+ 10311: 10,311.º
1524
+ 138400: 138,400.º
940
1525
  DurationRules:
941
1526
  duration:
942
- -1141: -20:-01
943
- -1142: -20:-02
944
- -1143: -20:-03
945
- -100: -2:-40
946
- -75: -2:-15
947
- -50: -50 sec.
948
- -24: -24 sec.
949
- 0: 0 sec.
950
- 1: 1 sec.
951
- 2: 2 sec.
952
- 3: 3 sec.
953
- 4: 4 sec.
954
- 5: 5 sec.
955
- 6: 6 sec.
956
- 7: 7 sec.
957
- 8: 8 sec.
958
- 9: 9 sec.
959
- 10: 10 sec.
960
- 11: 11 sec.
961
- 12: 12 sec.
962
- 13: 13 sec.
963
- 14: 14 sec.
964
- 15: 15 sec.
965
- 16: 16 sec.
966
- 17: 17 sec.
967
- 18: 18 sec.
968
- 19: 19 sec.
969
- 20: 20 sec.
970
- 21: 21 sec.
971
- 22: 22 sec.
972
- 23: 23 sec.
973
- 24: 24 sec.
974
- 25: 25 sec.
975
- 26: 26 sec.
976
- 27: 27 sec.
977
- 28: 28 sec.
978
- 29: 29 sec.
979
- 30: 30 sec.
980
- 31: 31 sec.
981
- 32: 32 sec.
982
- 33: 33 sec.
983
- 34: 34 sec.
984
- 35: 35 sec.
985
- 36: 36 sec.
986
- 37: 37 sec.
987
- 38: 38 sec.
988
- 39: 39 sec.
989
- 40: 40 sec.
990
- 41: 41 sec.
991
- 42: 42 sec.
992
- 43: 43 sec.
993
- 44: 44 sec.
994
- 45: 45 sec.
995
- 46: 46 sec.
996
- 47: 47 sec.
997
- 48: 48 sec.
998
- 49: 49 sec.
999
- 50: 50 sec.
1000
- 51: 51 sec.
1001
- 52: 52 sec.
1002
- 53: 53 sec.
1003
- 54: 54 sec.
1004
- 55: 55 sec.
1005
- 56: 56 sec.
1006
- 57: 57 sec.
1007
- 58: 58 sec.
1008
- 59: 59 sec.
1009
- 60: '1:00'
1010
- 61: '1:01'
1011
- 62: '1:02'
1012
- 63: '1:03'
1013
- 64: '1:04'
1014
- 65: '1:05'
1015
- 66: '1:06'
1016
- 67: '1:07'
1017
- 68: '1:08'
1018
- 69: '1:09'
1019
- 70: '1:10'
1020
- 71: '1:11'
1021
- 72: '1:12'
1022
- 73: '1:13'
1023
- 74: '1:14'
1024
- 75: '1:15'
1025
- 76: '1:16'
1026
- 77: '1:17'
1027
- 78: '1:18'
1028
- 79: '1:19'
1029
- 80: '1:20'
1030
- 81: '1:21'
1031
- 82: '1:22'
1032
- 83: '1:23'
1033
- 84: '1:24'
1034
- 85: '1:25'
1035
- 86: '1:26'
1036
- 87: '1:27'
1037
- 88: '1:28'
1038
- 89: '1:29'
1039
- 90: '1:30'
1040
- 91: '1:31'
1041
- 92: '1:32'
1042
- 93: '1:33'
1043
- 94: '1:34'
1044
- 95: '1:35'
1045
- 96: '1:36'
1046
- 97: '1:37'
1047
- 98: '1:38'
1048
- 99: '1:39'
1049
- 100: '1:40'
1050
- 321: '5:21'
1051
- 322: '5:22'
1052
- 323: '5:23'
1053
- 1141: '19:01'
1054
- 1142: '19:02'
1055
- 1143: '19:03'
1056
- 10311: '2:51:51'
1057
- 138400: '38:26:40'
1058
- in-numerals:
1059
- -1141: -20:-01
1060
- -1142: -20:-02
1061
- -1143: -20:-03
1062
- -100: -2:-40
1063
- -75: -2:-15
1064
- -50: -50 sec.
1065
- -24: -24 sec.
1066
- 0: 0 sec.
1067
- 1: 1 sec.
1068
- 2: 2 sec.
1069
- 3: 3 sec.
1070
- 4: 4 sec.
1071
- 5: 5 sec.
1072
- 6: 6 sec.
1073
- 7: 7 sec.
1074
- 8: 8 sec.
1075
- 9: 9 sec.
1076
- 10: 10 sec.
1077
- 11: 11 sec.
1078
- 12: 12 sec.
1079
- 13: 13 sec.
1080
- 14: 14 sec.
1081
- 15: 15 sec.
1082
- 16: 16 sec.
1083
- 17: 17 sec.
1084
- 18: 18 sec.
1085
- 19: 19 sec.
1086
- 20: 20 sec.
1087
- 21: 21 sec.
1088
- 22: 22 sec.
1089
- 23: 23 sec.
1090
- 24: 24 sec.
1091
- 25: 25 sec.
1092
- 26: 26 sec.
1093
- 27: 27 sec.
1094
- 28: 28 sec.
1095
- 29: 29 sec.
1096
- 30: 30 sec.
1097
- 31: 31 sec.
1098
- 32: 32 sec.
1099
- 33: 33 sec.
1100
- 34: 34 sec.
1101
- 35: 35 sec.
1102
- 36: 36 sec.
1103
- 37: 37 sec.
1104
- 38: 38 sec.
1105
- 39: 39 sec.
1106
- 40: 40 sec.
1107
- 41: 41 sec.
1108
- 42: 42 sec.
1109
- 43: 43 sec.
1110
- 44: 44 sec.
1111
- 45: 45 sec.
1112
- 46: 46 sec.
1113
- 47: 47 sec.
1114
- 48: 48 sec.
1115
- 49: 49 sec.
1116
- 50: 50 sec.
1117
- 51: 51 sec.
1118
- 52: 52 sec.
1119
- 53: 53 sec.
1120
- 54: 54 sec.
1121
- 55: 55 sec.
1122
- 56: 56 sec.
1123
- 57: 57 sec.
1124
- 58: 58 sec.
1125
- 59: 59 sec.
1126
- 60: '1:00'
1127
- 61: '1:01'
1128
- 62: '1:02'
1129
- 63: '1:03'
1130
- 64: '1:04'
1131
- 65: '1:05'
1132
- 66: '1:06'
1133
- 67: '1:07'
1134
- 68: '1:08'
1135
- 69: '1:09'
1136
- 70: '1:10'
1137
- 71: '1:11'
1138
- 72: '1:12'
1139
- 73: '1:13'
1140
- 74: '1:14'
1141
- 75: '1:15'
1142
- 76: '1:16'
1143
- 77: '1:17'
1144
- 78: '1:18'
1145
- 79: '1:19'
1146
- 80: '1:20'
1147
- 81: '1:21'
1148
- 82: '1:22'
1149
- 83: '1:23'
1150
- 84: '1:24'
1151
- 85: '1:25'
1152
- 86: '1:26'
1153
- 87: '1:27'
1154
- 88: '1:28'
1155
- 89: '1:29'
1156
- 90: '1:30'
1157
- 91: '1:31'
1158
- 92: '1:32'
1159
- 93: '1:33'
1160
- 94: '1:34'
1161
- 95: '1:35'
1162
- 96: '1:36'
1163
- 97: '1:37'
1164
- 98: '1:38'
1165
- 99: '1:39'
1166
- 100: '1:40'
1167
- 321: '5:21'
1168
- 322: '5:22'
1169
- 323: '5:23'
1170
- 1141: '19:01'
1171
- 1142: '19:02'
1172
- 1143: '19:03'
1173
- 10311: '2:51:51'
1174
- 138400: '38:26:40'
1175
- with-words:
1176
- -1141: -20 minutes, 1 second
1177
- -1142: -20 minutes, -2 seconds
1178
- -1143: -20 minutes, -3 seconds
1179
- -100: -2 minutes, -40 seconds
1180
- -75: -2 minutes, -15 seconds
1181
- -50: -50 seconds
1182
- -24: -24 seconds
1183
- 0: 0 seconds
1184
- 1: 1 second
1185
- 2: 2 seconds
1186
- 3: 3 seconds
1187
- 4: 4 seconds
1188
- 5: 5 seconds
1189
- 6: 6 seconds
1190
- 7: 7 seconds
1191
- 8: 8 seconds
1192
- 9: 9 seconds
1193
- 10: 10 seconds
1194
- 11: 11 seconds
1195
- 12: 12 seconds
1196
- 13: 13 seconds
1197
- 14: 14 seconds
1198
- 15: 15 seconds
1199
- 16: 16 seconds
1200
- 17: 17 seconds
1201
- 18: 18 seconds
1202
- 19: 19 seconds
1203
- 20: 20 seconds
1204
- 21: 21 seconds
1205
- 22: 22 seconds
1206
- 23: 23 seconds
1207
- 24: 24 seconds
1208
- 25: 25 seconds
1209
- 26: 26 seconds
1210
- 27: 27 seconds
1211
- 28: 28 seconds
1212
- 29: 29 seconds
1213
- 30: 30 seconds
1214
- 31: 31 seconds
1215
- 32: 32 seconds
1216
- 33: 33 seconds
1217
- 34: 34 seconds
1218
- 35: 35 seconds
1219
- 36: 36 seconds
1220
- 37: 37 seconds
1221
- 38: 38 seconds
1222
- 39: 39 seconds
1223
- 40: 40 seconds
1224
- 41: 41 seconds
1225
- 42: 42 seconds
1226
- 43: 43 seconds
1227
- 44: 44 seconds
1228
- 45: 45 seconds
1229
- 46: 46 seconds
1230
- 47: 47 seconds
1231
- 48: 48 seconds
1232
- 49: 49 seconds
1233
- 50: 50 seconds
1234
- 51: 51 seconds
1235
- 52: 52 seconds
1236
- 53: 53 seconds
1237
- 54: 54 seconds
1238
- 55: 55 seconds
1239
- 56: 56 seconds
1240
- 57: 57 seconds
1241
- 58: 58 seconds
1242
- 59: 59 seconds
1243
- 60: 1 minute
1244
- 61: 1 minute, 1 second
1245
- 62: 1 minute, 2 seconds
1246
- 63: 1 minute, 3 seconds
1247
- 64: 1 minute, 4 seconds
1248
- 65: 1 minute, 5 seconds
1249
- 66: 1 minute, 6 seconds
1250
- 67: 1 minute, 7 seconds
1251
- 68: 1 minute, 8 seconds
1252
- 69: 1 minute, 9 seconds
1253
- 70: 1 minute, 10 seconds
1254
- 71: 1 minute, 11 seconds
1255
- 72: 1 minute, 12 seconds
1256
- 73: 1 minute, 13 seconds
1257
- 74: 1 minute, 14 seconds
1258
- 75: 1 minute, 15 seconds
1259
- 76: 1 minute, 16 seconds
1260
- 77: 1 minute, 17 seconds
1261
- 78: 1 minute, 18 seconds
1262
- 79: 1 minute, 19 seconds
1263
- 80: 1 minute, 20 seconds
1264
- 81: 1 minute, 21 seconds
1265
- 82: 1 minute, 22 seconds
1266
- 83: 1 minute, 23 seconds
1267
- 84: 1 minute, 24 seconds
1268
- 85: 1 minute, 25 seconds
1269
- 86: 1 minute, 26 seconds
1270
- 87: 1 minute, 27 seconds
1271
- 88: 1 minute, 28 seconds
1272
- 89: 1 minute, 29 seconds
1273
- 90: 1 minute, 30 seconds
1274
- 91: 1 minute, 31 seconds
1275
- 92: 1 minute, 32 seconds
1276
- 93: 1 minute, 33 seconds
1277
- 94: 1 minute, 34 seconds
1278
- 95: 1 minute, 35 seconds
1279
- 96: 1 minute, 36 seconds
1280
- 97: 1 minute, 37 seconds
1281
- 98: 1 minute, 38 seconds
1282
- 99: 1 minute, 39 seconds
1283
- 100: 1 minute, 40 seconds
1284
- 321: 5 minutes, 21 seconds
1285
- 322: 5 minutes, 22 seconds
1286
- 323: 5 minutes, 23 seconds
1287
- 1141: 19 minutes, 1 second
1288
- 1142: 19 minutes, 2 seconds
1289
- 1143: 19 minutes, 3 seconds
1290
- 10311: 2 hours, 51 minutes, 51 seconds
1291
- 138400: 38 hours, 26 minutes, 40 seconds
1527
+ -1141: "-1,141"
1528
+ -1142: "-1,142"
1529
+ -1143: "-1,143"
1530
+ -100: "-100"
1531
+ -75: "-75"
1532
+ -50: "-50"
1533
+ -24: "-24"
1534
+ 0: '0'
1535
+ 1: '1'
1536
+ 2: '2'
1537
+ 3: '3'
1538
+ 4: '4'
1539
+ 5: '5'
1540
+ 6: '6'
1541
+ 7: '7'
1542
+ 8: '8'
1543
+ 9: '9'
1544
+ 10: '10'
1545
+ 11: '11'
1546
+ 12: '12'
1547
+ 13: '13'
1548
+ 14: '14'
1549
+ 15: '15'
1550
+ 16: '16'
1551
+ 17: '17'
1552
+ 18: '18'
1553
+ 19: '19'
1554
+ 20: '20'
1555
+ 21: '21'
1556
+ 22: '22'
1557
+ 23: '23'
1558
+ 24: '24'
1559
+ 25: '25'
1560
+ 26: '26'
1561
+ 27: '27'
1562
+ 28: '28'
1563
+ 29: '29'
1564
+ 30: '30'
1565
+ 31: '31'
1566
+ 32: '32'
1567
+ 33: '33'
1568
+ 34: '34'
1569
+ 35: '35'
1570
+ 36: '36'
1571
+ 37: '37'
1572
+ 38: '38'
1573
+ 39: '39'
1574
+ 40: '40'
1575
+ 41: '41'
1576
+ 42: '42'
1577
+ 43: '43'
1578
+ 44: '44'
1579
+ 45: '45'
1580
+ 46: '46'
1581
+ 47: '47'
1582
+ 48: '48'
1583
+ 49: '49'
1584
+ 50: '50'
1585
+ 51: '51'
1586
+ 52: '52'
1587
+ 53: '53'
1588
+ 54: '54'
1589
+ 55: '55'
1590
+ 56: '56'
1591
+ 57: '57'
1592
+ 58: '58'
1593
+ 59: '59'
1594
+ 60: '60'
1595
+ 61: '61'
1596
+ 62: '62'
1597
+ 63: '63'
1598
+ 64: '64'
1599
+ 65: '65'
1600
+ 66: '66'
1601
+ 67: '67'
1602
+ 68: '68'
1603
+ 69: '69'
1604
+ 70: '70'
1605
+ 71: '71'
1606
+ 72: '72'
1607
+ 73: '73'
1608
+ 74: '74'
1609
+ 75: '75'
1610
+ 76: '76'
1611
+ 77: '77'
1612
+ 78: '78'
1613
+ 79: '79'
1614
+ 80: '80'
1615
+ 81: '81'
1616
+ 82: '82'
1617
+ 83: '83'
1618
+ 84: '84'
1619
+ 85: '85'
1620
+ 86: '86'
1621
+ 87: '87'
1622
+ 88: '88'
1623
+ 89: '89'
1624
+ 90: '90'
1625
+ 91: '91'
1626
+ 92: '92'
1627
+ 93: '93'
1628
+ 94: '94'
1629
+ 95: '95'
1630
+ 96: '96'
1631
+ 97: '97'
1632
+ 98: '98'
1633
+ 99: '99'
1634
+ 100: '100'
1635
+ 321: '321'
1636
+ 322: '322'
1637
+ 323: '323'
1638
+ 1141: '1,141'
1639
+ 1142: '1,142'
1640
+ 1143: '1,143'
1641
+ 10311: '10,311'
1642
+ 138400: '138,400'