make-plural 7.0.0 → 7.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/cardinals.d.ts CHANGED
@@ -10,6 +10,7 @@ export const as: (n: number | string) => "one" | "other";
10
10
  export const asa: (n: number | string) => "one" | "other";
11
11
  export const ast: (n: number | string) => "one" | "other";
12
12
  export const az: (n: number | string) => "one" | "other";
13
+ export const bal: (n: number | string) => "one" | "other";
13
14
  export const be: (n: number | string) => "one" | "few" | "many" | "other";
14
15
  export const bem: (n: number | string) => "one" | "other";
15
16
  export const bez: (n: number | string) => "one" | "other";
@@ -39,7 +40,7 @@ export const ee: (n: number | string) => "one" | "other";
39
40
  export const el: (n: number | string) => "one" | "other";
40
41
  export const en: (n: number | string) => "one" | "other";
41
42
  export const eo: (n: number | string) => "one" | "other";
42
- export const es: (n: number | string) => "one" | "other";
43
+ export const es: (n: number | string) => "one" | "many" | "other";
43
44
  export const et: (n: number | string) => "one" | "other";
44
45
  export const eu: (n: number | string) => "one" | "other";
45
46
  export const fa: (n: number | string) => "one" | "other";
@@ -61,6 +62,7 @@ export const ha: (n: number | string) => "one" | "other";
61
62
  export const haw: (n: number | string) => "one" | "other";
62
63
  export const he: (n: number | string) => "one" | "two" | "many" | "other";
63
64
  export const hi: (n: number | string) => "one" | "other";
65
+ export const hnj: (n: number | string) => "other";
64
66
  export const hr: (n: number | string) => "one" | "few" | "other";
65
67
  export const hsb: (n: number | string) => "one" | "two" | "few" | "other";
66
68
  export const hu: (n: number | string) => "one" | "other";
@@ -69,16 +71,13 @@ export const ia: (n: number | string) => "one" | "other";
69
71
  export const id: (n: number | string) => "other";
70
72
  export const ig: (n: number | string) => "other";
71
73
  export const ii: (n: number | string) => "other";
72
- export const _in: (n: number | string) => "other";
73
74
  export const io: (n: number | string) => "one" | "other";
74
75
  export const is: (n: number | string) => "one" | "other";
75
- export const it: (n: number | string) => "one" | "other";
76
+ export const it: (n: number | string) => "one" | "many" | "other";
76
77
  export const iu: (n: number | string) => "one" | "two" | "other";
77
- export const iw: (n: number | string) => "one" | "two" | "many" | "other";
78
78
  export const ja: (n: number | string) => "other";
79
79
  export const jbo: (n: number | string) => "other";
80
80
  export const jgo: (n: number | string) => "one" | "other";
81
- export const ji: (n: number | string) => "one" | "other";
82
81
  export const jmc: (n: number | string) => "one" | "other";
83
82
  export const jv: (n: number | string) => "other";
84
83
  export const jw: (n: number | string) => "other";
@@ -144,12 +143,11 @@ export const pcm: (n: number | string) => "one" | "other";
144
143
  export const pl: (n: number | string) => "one" | "few" | "many" | "other";
145
144
  export const prg: (n: number | string) => "zero" | "one" | "other";
146
145
  export const ps: (n: number | string) => "one" | "other";
147
- export const pt: (n: number | string) => "one" | "other";
148
- export const pt_PT: (n: number | string) => "one" | "other";
146
+ export const pt: (n: number | string) => "one" | "many" | "other";
147
+ export const pt_PT: (n: number | string) => "one" | "many" | "other";
149
148
  export const rm: (n: number | string) => "one" | "other";
150
149
  export const ro: (n: number | string) => "one" | "few" | "other";
151
150
  export const rof: (n: number | string) => "one" | "other";
152
- export const root: (n: number | string) => "other";
153
151
  export const ru: (n: number | string) => "one" | "few" | "many" | "other";
154
152
  export const rwk: (n: number | string) => "one" | "other";
155
153
  export const sah: (n: number | string) => "other";
@@ -194,11 +192,13 @@ export const tk: (n: number | string) => "one" | "other";
194
192
  export const tl: (n: number | string) => "one" | "other";
195
193
  export const tn: (n: number | string) => "one" | "other";
196
194
  export const to: (n: number | string) => "other";
195
+ export const tpi: (n: number | string) => "other";
197
196
  export const tr: (n: number | string) => "one" | "other";
198
197
  export const ts: (n: number | string) => "one" | "other";
199
198
  export const tzm: (n: number | string) => "one" | "other";
200
199
  export const ug: (n: number | string) => "one" | "other";
201
200
  export const uk: (n: number | string) => "one" | "few" | "many" | "other";
201
+ export const und: (n: number | string) => "other";
202
202
  export const ur: (n: number | string) => "one" | "other";
203
203
  export const uz: (n: number | string) => "one" | "other";
204
204
  export const ve: (n: number | string) => "one" | "other";
package/cardinals.js CHANGED
@@ -16,8 +16,6 @@ const f = (n) => n == 1 ? 'one'
16
16
  else if (typeof exports === 'object') module.exports = plurals;
17
17
  else root.plurals = plurals;
18
18
  }(this, {
19
- _in: e,
20
-
21
19
  af: a,
22
20
 
23
21
  ak: b,
@@ -54,6 +52,8 @@ ast: d,
54
52
 
55
53
  az: a,
56
54
 
55
+ bal: a,
56
+
57
57
  be: (n) => {
58
58
  const s = String(n).split('.'), t0 = Number(s[0]) == n, n10 = t0 && s[0].slice(-1), n100 = t0 && s[0].slice(-2);
59
59
  return n10 == 1 && n100 != 11 ? 'one'
@@ -153,7 +153,12 @@ en: d,
153
153
 
154
154
  eo: a,
155
155
 
156
- es: a,
156
+ es: (n) => {
157
+ const s = String(n).split('.'), i = s[0], v0 = !s[1], i1000000 = i.slice(-6);
158
+ return n == 1 ? 'one'
159
+ : i != 0 && i1000000 == 0 && v0 ? 'many'
160
+ : 'other';
161
+ },
157
162
 
158
163
  et: d,
159
164
 
@@ -231,6 +236,8 @@ he: (n) => {
231
236
 
232
237
  hi: c,
233
238
 
239
+ hnj: e,
240
+
234
241
  hr: (n) => {
235
242
  const s = String(n).split('.'), i = s[0], f = s[1] || '', v0 = !s[1], i10 = i.slice(-1), i100 = i.slice(-2), f10 = f.slice(-1), f100 = f.slice(-2);
236
243
  return v0 && i10 == 1 && i100 != 11 || f10 == 1 && f100 != 11 ? 'one'
@@ -265,26 +272,21 @@ is: (n) => {
265
272
  return t0 && i10 == 1 && i100 != 11 || !t0 ? 'one' : 'other';
266
273
  },
267
274
 
268
- it: d,
269
-
270
- iu: f,
271
-
272
- iw: (n) => {
273
- const s = String(n).split('.'), i = s[0], v0 = !s[1], t0 = Number(s[0]) == n, n10 = t0 && s[0].slice(-1);
275
+ it: (n) => {
276
+ const s = String(n).split('.'), i = s[0], v0 = !s[1], i1000000 = i.slice(-6);
274
277
  return n == 1 && v0 ? 'one'
275
- : i == 2 && v0 ? 'two'
276
- : v0 && (n < 0 || n > 10) && t0 && n10 == 0 ? 'many'
278
+ : i != 0 && i1000000 == 0 && v0 ? 'many'
277
279
  : 'other';
278
280
  },
279
281
 
282
+ iu: f,
283
+
280
284
  ja: e,
281
285
 
282
286
  jbo: e,
283
287
 
284
288
  jgo: a,
285
289
 
286
- ji: d,
287
-
288
290
  jmc: a,
289
291
 
290
292
  jv: e,
@@ -467,11 +469,18 @@ prg: (n) => {
467
469
  ps: a,
468
470
 
469
471
  pt: (n) => {
470
- const s = String(n).split('.'), i = s[0];
471
- return (i == 0 || i == 1) ? 'one' : 'other';
472
+ const s = String(n).split('.'), i = s[0], v0 = !s[1], i1000000 = i.slice(-6);
473
+ return (i == 0 || i == 1) ? 'one'
474
+ : i != 0 && i1000000 == 0 && v0 ? 'many'
475
+ : 'other';
472
476
  },
473
477
 
474
- pt_PT: d,
478
+ pt_PT: (n) => {
479
+ const s = String(n).split('.'), i = s[0], v0 = !s[1], i1000000 = i.slice(-6);
480
+ return n == 1 && v0 ? 'one'
481
+ : i != 0 && i1000000 == 0 && v0 ? 'many'
482
+ : 'other';
483
+ },
475
484
 
476
485
  rm: a,
477
486
 
@@ -484,8 +493,6 @@ ro: (n) => {
484
493
 
485
494
  rof: a,
486
495
 
487
- root: e,
488
-
489
496
  ru: (n) => {
490
497
  const s = String(n).split('.'), i = s[0], v0 = !s[1], i10 = i.slice(-1), i100 = i.slice(-2);
491
498
  return v0 && i10 == 1 && i100 != 11 ? 'one'
@@ -613,6 +620,8 @@ tn: a,
613
620
 
614
621
  to: e,
615
622
 
623
+ tpi: e,
624
+
616
625
  tr: a,
617
626
 
618
627
  ts: a,
@@ -632,6 +641,8 @@ uk: (n) => {
632
641
  : 'other';
633
642
  },
634
643
 
644
+ und: e,
645
+
635
646
  ur: d,
636
647
 
637
648
  uz: a,
package/cardinals.mjs CHANGED
@@ -10,7 +10,6 @@ const f = (n) => n == 1 ? 'one'
10
10
  : n == 2 ? 'two'
11
11
  : 'other';
12
12
 
13
- export const _in = e;
14
13
  export const af = a;
15
14
  export const ak = b;
16
15
  export const am = c;
@@ -37,6 +36,7 @@ export const as = c;
37
36
  export const asa = a;
38
37
  export const ast = d;
39
38
  export const az = a;
39
+ export const bal = a;
40
40
  export const be = (n) => {
41
41
  const s = String(n).split('.'), t0 = Number(s[0]) == n, n10 = t0 && s[0].slice(-1), n100 = t0 && s[0].slice(-2);
42
42
  return n10 == 1 && n100 != 11 ? 'one'
@@ -107,7 +107,12 @@ export const ee = a;
107
107
  export const el = a;
108
108
  export const en = d;
109
109
  export const eo = a;
110
- export const es = a;
110
+ export const es = (n) => {
111
+ const s = String(n).split('.'), i = s[0], v0 = !s[1], i1000000 = i.slice(-6);
112
+ return n == 1 ? 'one'
113
+ : i != 0 && i1000000 == 0 && v0 ? 'many'
114
+ : 'other';
115
+ };
111
116
  export const et = d;
112
117
  export const eu = a;
113
118
  export const fa = c;
@@ -163,6 +168,7 @@ export const he = (n) => {
163
168
  : 'other';
164
169
  };
165
170
  export const hi = c;
171
+ export const hnj = e;
166
172
  export const hr = (n) => {
167
173
  const s = String(n).split('.'), i = s[0], f = s[1] || '', v0 = !s[1], i10 = i.slice(-1), i100 = i.slice(-2), f10 = f.slice(-1), f100 = f.slice(-2);
168
174
  return v0 && i10 == 1 && i100 != 11 || f10 == 1 && f100 != 11 ? 'one'
@@ -187,19 +193,16 @@ export const is = (n) => {
187
193
  const s = String(n).split('.'), i = s[0], t0 = Number(s[0]) == n, i10 = i.slice(-1), i100 = i.slice(-2);
188
194
  return t0 && i10 == 1 && i100 != 11 || !t0 ? 'one' : 'other';
189
195
  };
190
- export const it = d;
191
- export const iu = f;
192
- export const iw = (n) => {
193
- const s = String(n).split('.'), i = s[0], v0 = !s[1], t0 = Number(s[0]) == n, n10 = t0 && s[0].slice(-1);
196
+ export const it = (n) => {
197
+ const s = String(n).split('.'), i = s[0], v0 = !s[1], i1000000 = i.slice(-6);
194
198
  return n == 1 && v0 ? 'one'
195
- : i == 2 && v0 ? 'two'
196
- : v0 && (n < 0 || n > 10) && t0 && n10 == 0 ? 'many'
199
+ : i != 0 && i1000000 == 0 && v0 ? 'many'
197
200
  : 'other';
198
201
  };
202
+ export const iu = f;
199
203
  export const ja = e;
200
204
  export const jbo = e;
201
205
  export const jgo = a;
202
- export const ji = d;
203
206
  export const jmc = a;
204
207
  export const jv = e;
205
208
  export const jw = e;
@@ -317,10 +320,17 @@ export const prg = (n) => {
317
320
  };
318
321
  export const ps = a;
319
322
  export const pt = (n) => {
320
- const s = String(n).split('.'), i = s[0];
321
- return (i == 0 || i == 1) ? 'one' : 'other';
323
+ const s = String(n).split('.'), i = s[0], v0 = !s[1], i1000000 = i.slice(-6);
324
+ return (i == 0 || i == 1) ? 'one'
325
+ : i != 0 && i1000000 == 0 && v0 ? 'many'
326
+ : 'other';
327
+ };
328
+ export const pt_PT = (n) => {
329
+ const s = String(n).split('.'), i = s[0], v0 = !s[1], i1000000 = i.slice(-6);
330
+ return n == 1 && v0 ? 'one'
331
+ : i != 0 && i1000000 == 0 && v0 ? 'many'
332
+ : 'other';
322
333
  };
323
- export const pt_PT = d;
324
334
  export const rm = a;
325
335
  export const ro = (n) => {
326
336
  const s = String(n).split('.'), v0 = !s[1], t0 = Number(s[0]) == n, n100 = t0 && s[0].slice(-2);
@@ -329,7 +339,6 @@ export const ro = (n) => {
329
339
  : 'other';
330
340
  };
331
341
  export const rof = a;
332
- export const root = e;
333
342
  export const ru = (n) => {
334
343
  const s = String(n).split('.'), i = s[0], v0 = !s[1], i10 = i.slice(-1), i100 = i.slice(-2);
335
344
  return v0 && i10 == 1 && i100 != 11 ? 'one'
@@ -413,6 +422,7 @@ export const tl = (n) => {
413
422
  };
414
423
  export const tn = a;
415
424
  export const to = e;
425
+ export const tpi = e;
416
426
  export const tr = a;
417
427
  export const ts = a;
418
428
  export const tzm = (n) => {
@@ -427,6 +437,7 @@ export const uk = (n) => {
427
437
  : v0 && i10 == 0 || v0 && (i10 >= 5 && i10 <= 9) || v0 && (i100 >= 11 && i100 <= 14) ? 'many'
428
438
  : 'other';
429
439
  };
440
+ export const und = e;
430
441
  export const ur = d;
431
442
  export const uz = a;
432
443
  export const ve = a;
package/examples.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- export const _in: {"cardinal":{"other":["0","15","100","1000","10000","100000","1000000","0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"other":["0","15","100","1000","10000","100000","1000000"]}};
2
1
  export const af: {"cardinal":{"one":["1","1.0","1.00","1.000","1.0000"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","0.9","1.1","1.6","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"other":["0","15","100","1000","10000","100000","1000000"]}};
3
2
  export const ak: {"cardinal":{"one":["0","1","0.0","1.0","0.00","1.00","0.000","1.000","0.0000","1.0000"],"other":["2","17","100","1000","10000","100000","1000000","0.1","0.9","1.1","1.7","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{}};
4
3
  export const am: {"cardinal":{"one":["0","1","0.0","1.0","0.00","0.04"],"other":["2","17","100","1000","10000","100000","1000000","1.1","2.6","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"other":["0","15","100","1000","10000","100000","1000000"]}};
@@ -9,6 +8,7 @@ export const as: {"cardinal":{"one":["0","1","0.0","1.0","0.00","0.04"],"other":
9
8
  export const asa: {"cardinal":{"one":["1","1.0","1.00","1.000","1.0000"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","0.9","1.1","1.6","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{}};
10
9
  export const ast: {"cardinal":{"one":["1"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{}};
11
10
  export const az: {"cardinal":{"one":["1","1.0","1.00","1.000","1.0000"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","0.9","1.1","1.6","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"one":["1","2","5","7","8","11","12","15","17","18","20","22","25","101","1001"],"few":["3","4","13","14","23","24","33","34","43","44","53","54","63","64","73","74","100","1003"],"many":["0","6","16","26","36","40","46","56","106","1006"],"other":["9","10","19","29","30","39","49","59","69","79","109","1000","10000","100000","1000000"]}};
11
+ export const bal: {"cardinal":{"one":["1","1.0","1.00","1.000","1.0000"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","0.9","1.1","1.6","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"one":["1"],"other":["0","2","16","100","1000","10000","100000","1000000"]}};
12
12
  export const be: {"cardinal":{"one":["1","21","31","41","51","61","71","81","101","1001","1.0","21.0","31.0","41.0","51.0","61.0","71.0","81.0","101.0","1001.0"],"few":["2","4","22","24","32","34","42","44","52","54","62","102","1002","2.0","3.0","4.0","22.0","23.0","24.0","32.0","33.0","102.0","1002.0"],"many":["0","5","19","100","1000","10000","100000","1000000","0.0","5.0","6.0","7.0","8.0","9.0","10.0","11.0","100.0","1000.0","10000.0","100000.0","1000000.0"],"other":["0.1","0.9","1.1","1.7","10.1","100.1","1000.1"]},"ordinal":{"few":["2","3","22","23","32","33","42","43","52","53","62","63","72","73","82","83","102","1002"],"other":["0","1","4","17","100","1000","10000","100000","1000000"]}};
13
13
  export const bem: {"cardinal":{"one":["1","1.0","1.00","1.000","1.0000"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","0.9","1.1","1.6","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{}};
14
14
  export const bez: {"cardinal":{"one":["1","1.0","1.00","1.000","1.0000"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","0.9","1.1","1.6","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{}};
@@ -38,7 +38,7 @@ export const ee: {"cardinal":{"one":["1","1.0","1.00","1.000","1.0000"],"other":
38
38
  export const el: {"cardinal":{"one":["1","1.0","1.00","1.000","1.0000"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","0.9","1.1","1.6","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"other":["0","15","100","1000","10000","100000","1000000"]}};
39
39
  export const en: {"cardinal":{"one":["1"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"one":["1","21","31","41","51","61","71","81","101","1001"],"two":["2","22","32","42","52","62","72","82","102","1002"],"few":["3","23","33","43","53","63","73","83","103","1003"],"other":["0","4","18","100","1000","10000","100000","1000000"]}};
40
40
  export const eo: {"cardinal":{"one":["1","1.0","1.00","1.000","1.0000"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","0.9","1.1","1.6","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{}};
41
- export const es: {"cardinal":{"one":["1","1.0","1.00","1.000","1.0000"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","0.9","1.1","1.6","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"other":["0","15","100","1000","10000","100000","1000000"]}};
41
+ export const es: {"cardinal":{"one":["1","1.0","1.00","1.000","1.0000"],"many":["1000000"],"other":["0","2","16","100","1000","10000","100000","0.0","0.9","1.1","1.6","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"other":["0","15","100","1000","10000","100000","1000000"]}};
42
42
  export const et: {"cardinal":{"one":["1"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"other":["0","15","100","1000","10000","100000","1000000"]}};
43
43
  export const eu: {"cardinal":{"one":["1","1.0","1.00","1.000","1.0000"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","0.9","1.1","1.6","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"other":["0","15","100","1000","10000","100000","1000000"]}};
44
44
  export const fa: {"cardinal":{"one":["0","1","0.0","1.0","0.00","0.04"],"other":["2","17","100","1000","10000","100000","1000000","1.1","2.6","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"other":["0","15","100","1000","10000","100000","1000000"]}};
@@ -60,6 +60,7 @@ export const ha: {"cardinal":{"one":["1","1.0","1.00","1.000","1.0000"],"other":
60
60
  export const haw: {"cardinal":{"one":["1","1.0","1.00","1.000","1.0000"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","0.9","1.1","1.6","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{}};
61
61
  export const he: {"cardinal":{"one":["1"],"two":["2"],"many":["20","30","40","50","60","70","80","90","100","1000","10000","100000","1000000"],"other":["0","3","17","101","1001","0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"other":["0","15","100","1000","10000","100000","1000000"]}};
62
62
  export const hi: {"cardinal":{"one":["0","1","0.0","1.0","0.00","0.04"],"other":["2","17","100","1000","10000","100000","1000000","1.1","2.6","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"one":["1"],"two":["2","3"],"few":["4"],"many":["6"],"other":["0","5","7","20","100","1000","10000","100000","1000000"]}};
63
+ export const hnj: {"cardinal":{"other":["0","15","100","1000","10000","100000","1000000","0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{}};
63
64
  export const hr: {"cardinal":{"one":["1","21","31","41","51","61","71","81","101","1001","0.1","1.1","2.1","3.1","4.1","5.1","6.1","7.1","10.1","100.1","1000.1"],"few":["2","4","22","24","32","34","42","44","52","54","62","102","1002","0.2","0.4","1.2","1.4","2.2","2.4","3.2","3.4","4.2","4.4","5.2","10.2","100.2","1000.2"],"other":["0","5","19","100","1000","10000","100000","1000000","0.0","0.5","1.0","1.5","2.0","2.5","2.7","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"other":["0","15","100","1000","10000","100000","1000000"]}};
64
65
  export const hsb: {"cardinal":{"one":["1","101","201","301","401","501","601","701","1001","0.1","1.1","2.1","3.1","4.1","5.1","6.1","7.1","10.1","100.1","1000.1"],"two":["2","102","202","302","402","502","602","702","1002","0.2","1.2","2.2","3.2","4.2","5.2","6.2","7.2","10.2","100.2","1000.2"],"few":["3","4","103","104","203","204","303","304","403","404","503","504","603","604","703","704","1003","0.3","0.4","1.3","1.4","2.3","2.4","3.3","3.4","4.3","4.4","5.3","5.4","6.3","6.4","7.3","7.4","10.3","100.3","1000.3"],"other":["0","5","19","100","1000","10000","100000","1000000","0.0","0.5","1.0","1.5","2.0","2.5","2.7","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"other":["0","15","100","1000","10000","100000","1000000"]}};
65
66
  export const hu: {"cardinal":{"one":["1","1.0","1.00","1.000","1.0000"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","0.9","1.1","1.6","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"one":["1","5"],"other":["0","2","4","6","17","100","1000","10000","100000","1000000"]}};
@@ -70,13 +71,11 @@ export const ig: {"cardinal":{"other":["0","15","100","1000","10000","100000","1
70
71
  export const ii: {"cardinal":{"other":["0","15","100","1000","10000","100000","1000000","0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{}};
71
72
  export const io: {"cardinal":{"one":["1"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{}};
72
73
  export const is: {"cardinal":{"one":["1","21","31","41","51","61","71","81","101","1001","0.1","1.0","1.6","10.1","100.1","1000.1"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"other":["0","15","100","1000","10000","100000","1000000"]}};
73
- export const it: {"cardinal":{"one":["1"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"many":["8","11","80","800"],"other":["0","7","9","10","12","17","100","1000","10000","100000","1000000"]}};
74
+ export const it: {"cardinal":{"one":["1"],"many":["1000000"],"other":["0","2","16","100","1000","10000","100000","0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"many":["8","11","80","800"],"other":["0","7","9","10","12","17","100","1000","10000","100000","1000000"]}};
74
75
  export const iu: {"cardinal":{"one":["1","1.0","1.00","1.000","1.0000"],"two":["2","2.0","2.00","2.000","2.0000"],"other":["0","3","17","100","1000","10000","100000","1000000","0.0","0.9","1.1","1.6","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{}};
75
- export const iw: {"cardinal":{"one":["1"],"two":["2"],"many":["20","30","40","50","60","70","80","90","100","1000","10000","100000","1000000"],"other":["0","3","17","101","1001","0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"other":["0","15","100","1000","10000","100000","1000000"]}};
76
76
  export const ja: {"cardinal":{"other":["0","15","100","1000","10000","100000","1000000","0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"other":["0","15","100","1000","10000","100000","1000000"]}};
77
77
  export const jbo: {"cardinal":{"other":["0","15","100","1000","10000","100000","1000000","0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{}};
78
78
  export const jgo: {"cardinal":{"one":["1","1.0","1.00","1.000","1.0000"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","0.9","1.1","1.6","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{}};
79
- export const ji: {"cardinal":{"one":["1"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{}};
80
79
  export const jmc: {"cardinal":{"one":["1","1.0","1.00","1.000","1.0000"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","0.9","1.1","1.6","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{}};
81
80
  export const jv: {"cardinal":{"other":["0","15","100","1000","10000","100000","1000000","0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{}};
82
81
  export const jw: {"cardinal":{"other":["0","15","100","1000","10000","100000","1000000","0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{}};
@@ -142,12 +141,11 @@ export const pcm: {"cardinal":{"one":["0","1","0.0","1.0","0.00","0.04"],"other"
142
141
  export const pl: {"cardinal":{"one":["1"],"few":["2","4","22","24","32","34","42","44","52","54","62","102","1002"],"many":["0","5","19","100","1000","10000","100000","1000000"],"other":["0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"other":["0","15","100","1000","10000","100000","1000000"]}};
143
142
  export const prg: {"cardinal":{"zero":["0","10","20","30","40","50","60","100","1000","10000","100000","1000000","0.0","10.0","11.0","12.0","13.0","14.0","15.0","16.0","100.0","1000.0","10000.0","100000.0","1000000.0"],"one":["1","21","31","41","51","61","71","81","101","1001","0.1","1.0","1.1","2.1","3.1","4.1","5.1","6.1","7.1","10.1","100.1","1000.1"],"other":["2","9","22","29","102","1002","0.2","0.9","1.2","1.9","10.2","100.2","1000.2"]},"ordinal":{"other":["0","15","100","1000","10000","100000","1000000"]}};
144
143
  export const ps: {"cardinal":{"one":["1","1.0","1.00","1.000","1.0000"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","0.9","1.1","1.6","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"other":["0","15","100","1000","10000","100000","1000000"]}};
145
- export const pt: {"cardinal":{"one":["0","1","0.0","1.0","1.5"],"other":["2","17","100","1000","10000","100000","1000000","2.0","3.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"other":["0","15","100","1000","10000","100000","1000000"]}};
146
- export const pt_PT: {"cardinal":{"one":["1"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{}};
144
+ export const pt: {"cardinal":{"one":["0","1","0.0","1.0","1.5"],"many":["1000000"],"other":["2","17","100","1000","10000","100000","2.0","3.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"other":["0","15","100","1000","10000","100000","1000000"]}};
145
+ export const pt_PT: {"cardinal":{"one":["1"],"many":["1000000"],"other":["0","2","16","100","1000","10000","100000","0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{}};
147
146
  export const rm: {"cardinal":{"one":["1","1.0","1.00","1.000","1.0000"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","0.9","1.1","1.6","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{}};
148
147
  export const ro: {"cardinal":{"one":["1"],"few":["0","2","16","102","1002","0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"],"other":["20","35","100","1000","10000","100000","1000000"]},"ordinal":{"one":["1"],"other":["0","2","16","100","1000","10000","100000","1000000"]}};
149
148
  export const rof: {"cardinal":{"one":["1","1.0","1.00","1.000","1.0000"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","0.9","1.1","1.6","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{}};
150
- export const root: {"cardinal":{"other":["0","15","100","1000","10000","100000","1000000","0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"other":["0","15","100","1000","10000","100000","1000000"]}};
151
149
  export const ru: {"cardinal":{"one":["1","21","31","41","51","61","71","81","101","1001"],"few":["2","4","22","24","32","34","42","44","52","54","62","102","1002"],"many":["0","5","19","100","1000","10000","100000","1000000"],"other":["0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"other":["0","15","100","1000","10000","100000","1000000"]}};
152
150
  export const rwk: {"cardinal":{"one":["1","1.0","1.00","1.000","1.0000"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","0.9","1.1","1.6","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{}};
153
151
  export const sah: {"cardinal":{"other":["0","15","100","1000","10000","100000","1000000","0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{}};
@@ -192,11 +190,13 @@ export const tk: {"cardinal":{"one":["1","1.0","1.00","1.000","1.0000"],"other":
192
190
  export const tl: {"cardinal":{"one":["0","3","5","7","8","10","13","15","17","18","20","21","100","1000","10000","100000","1000000","0.0","0.3","0.5","0.7","0.8","1.0","1.3","1.5","1.7","1.8","2.0","2.1","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"],"other":["4","6","9","14","16","19","24","26","104","1004","0.4","0.6","0.9","1.4","1.6","1.9","2.4","2.6","10.4","100.4","1000.4"]},"ordinal":{"one":["1"],"other":["0","2","16","100","1000","10000","100000","1000000"]}};
193
191
  export const tn: {"cardinal":{"one":["1","1.0","1.00","1.000","1.0000"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","0.9","1.1","1.6","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{}};
194
192
  export const to: {"cardinal":{"other":["0","15","100","1000","10000","100000","1000000","0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{}};
193
+ export const tpi: {"cardinal":{"other":["0","15","100","1000","10000","100000","1000000","0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"other":["0","15","100","1000","10000","100000","1000000"]}};
195
194
  export const tr: {"cardinal":{"one":["1","1.0","1.00","1.000","1.0000"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","0.9","1.1","1.6","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"other":["0","15","100","1000","10000","100000","1000000"]}};
196
195
  export const ts: {"cardinal":{"one":["1","1.0","1.00","1.000","1.0000"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","0.9","1.1","1.6","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{}};
197
196
  export const tzm: {"cardinal":{"one":["0","1","11","24","0.0","1.0","11.0","12.0","13.0","14.0","15.0","16.0","17.0","18.0","19.0","20.0","21.0","22.0","23.0","24.0"],"other":["2","10","100","106","1000","10000","100000","1000000","0.1","0.9","1.1","1.7","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{}};
198
197
  export const ug: {"cardinal":{"one":["1","1.0","1.00","1.000","1.0000"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","0.9","1.1","1.6","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{}};
199
198
  export const uk: {"cardinal":{"one":["1","21","31","41","51","61","71","81","101","1001"],"few":["2","4","22","24","32","34","42","44","52","54","62","102","1002"],"many":["0","5","19","100","1000","10000","100000","1000000"],"other":["0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"few":["3","23","33","43","53","63","73","83","103","1003"],"other":["0","2","4","16","100","1000","10000","100000","1000000"]}};
199
+ export const und: {"cardinal":{"other":["0","15","100","1000","10000","100000","1000000","0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"other":["0","15","100","1000","10000","100000","1000000"]}};
200
200
  export const ur: {"cardinal":{"one":["1"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"other":["0","15","100","1000","10000","100000","1000000"]}};
201
201
  export const uz: {"cardinal":{"one":["1","1.0","1.00","1.000","1.0000"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","0.9","1.1","1.6","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"other":["0","15","100","1000","10000","100000","1000000"]}};
202
202
  export const ve: {"cardinal":{"one":["1","1.0","1.00","1.000","1.0000"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","0.9","1.1","1.6","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{}};
package/examples.js CHANGED
@@ -12,7 +12,6 @@ const g = {"cardinal":{"one":["1","1.0","1.00","1.000","1.0000"],"two":["2","2.0
12
12
  else if (typeof exports === 'object') module.exports = pluralCategories;
13
13
  else root.pluralCategories = pluralCategories;
14
14
  }(this, {
15
- _in: f,
16
15
  af: a,
17
16
  ak: b,
18
17
  am: {"cardinal":{"one":["0","1","0.0","1.0","0.00","0.04"],"other":["2","17","100","1000","10000","100000","1000000","1.1","2.6","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"other":["0","15","100","1000","10000","100000","1000000"]}},
@@ -23,6 +22,7 @@ as: {"cardinal":{"one":["0","1","0.0","1.0","0.00","0.04"],"other":["2","17","10
23
22
  asa: c,
24
23
  ast: {"cardinal":{"one":["1"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{}},
25
24
  az: {"cardinal":{"one":["1","1.0","1.00","1.000","1.0000"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","0.9","1.1","1.6","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"one":["1","2","5","7","8","11","12","15","17","18","20","22","25","101","1001"],"few":["3","4","13","14","23","24","33","34","43","44","53","54","63","64","73","74","100","1003"],"many":["0","6","16","26","36","40","46","56","106","1006"],"other":["9","10","19","29","30","39","49","59","69","79","109","1000","10000","100000","1000000"]}},
25
+ bal: {"cardinal":{"one":["1","1.0","1.00","1.000","1.0000"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","0.9","1.1","1.6","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"one":["1"],"other":["0","2","16","100","1000","10000","100000","1000000"]}},
26
26
  be: {"cardinal":{"one":["1","21","31","41","51","61","71","81","101","1001","1.0","21.0","31.0","41.0","51.0","61.0","71.0","81.0","101.0","1001.0"],"few":["2","4","22","24","32","34","42","44","52","54","62","102","1002","2.0","3.0","4.0","22.0","23.0","24.0","32.0","33.0","102.0","1002.0"],"many":["0","5","19","100","1000","10000","100000","1000000","0.0","5.0","6.0","7.0","8.0","9.0","10.0","11.0","100.0","1000.0","10000.0","100000.0","1000000.0"],"other":["0.1","0.9","1.1","1.7","10.1","100.1","1000.1"]},"ordinal":{"few":["2","3","22","23","32","33","42","43","52","53","62","63","72","73","82","83","102","1002"],"other":["0","1","4","17","100","1000","10000","100000","1000000"]}},
27
27
  bem: c,
28
28
  bez: c,
@@ -52,7 +52,7 @@ ee: c,
52
52
  el: a,
53
53
  en: {"cardinal":{"one":["1"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"one":["1","21","31","41","51","61","71","81","101","1001"],"two":["2","22","32","42","52","62","72","82","102","1002"],"few":["3","23","33","43","53","63","73","83","103","1003"],"other":["0","4","18","100","1000","10000","100000","1000000"]}},
54
54
  eo: c,
55
- es: a,
55
+ es: {"cardinal":{"one":["1","1.0","1.00","1.000","1.0000"],"many":["1000000"],"other":["0","2","16","100","1000","10000","100000","0.0","0.9","1.1","1.6","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"other":["0","15","100","1000","10000","100000","1000000"]}},
56
56
  et: e,
57
57
  eu: a,
58
58
  fa: {"cardinal":{"one":["0","1","0.0","1.0","0.00","0.04"],"other":["2","17","100","1000","10000","100000","1000000","1.1","2.6","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"other":["0","15","100","1000","10000","100000","1000000"]}},
@@ -74,6 +74,7 @@ ha: c,
74
74
  haw: c,
75
75
  he: {"cardinal":{"one":["1"],"two":["2"],"many":["20","30","40","50","60","70","80","90","100","1000","10000","100000","1000000"],"other":["0","3","17","101","1001","0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"other":["0","15","100","1000","10000","100000","1000000"]}},
76
76
  hi: {"cardinal":{"one":["0","1","0.0","1.0","0.00","0.04"],"other":["2","17","100","1000","10000","100000","1000000","1.1","2.6","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"one":["1"],"two":["2","3"],"few":["4"],"many":["6"],"other":["0","5","7","20","100","1000","10000","100000","1000000"]}},
77
+ hnj: d,
77
78
  hr: {"cardinal":{"one":["1","21","31","41","51","61","71","81","101","1001","0.1","1.1","2.1","3.1","4.1","5.1","6.1","7.1","10.1","100.1","1000.1"],"few":["2","4","22","24","32","34","42","44","52","54","62","102","1002","0.2","0.4","1.2","1.4","2.2","2.4","3.2","3.4","4.2","4.4","5.2","10.2","100.2","1000.2"],"other":["0","5","19","100","1000","10000","100000","1000000","0.0","0.5","1.0","1.5","2.0","2.5","2.7","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"other":["0","15","100","1000","10000","100000","1000000"]}},
78
79
  hsb: {"cardinal":{"one":["1","101","201","301","401","501","601","701","1001","0.1","1.1","2.1","3.1","4.1","5.1","6.1","7.1","10.1","100.1","1000.1"],"two":["2","102","202","302","402","502","602","702","1002","0.2","1.2","2.2","3.2","4.2","5.2","6.2","7.2","10.2","100.2","1000.2"],"few":["3","4","103","104","203","204","303","304","403","404","503","504","603","604","703","704","1003","0.3","0.4","1.3","1.4","2.3","2.4","3.3","3.4","4.3","4.4","5.3","5.4","6.3","6.4","7.3","7.4","10.3","100.3","1000.3"],"other":["0","5","19","100","1000","10000","100000","1000000","0.0","0.5","1.0","1.5","2.0","2.5","2.7","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"other":["0","15","100","1000","10000","100000","1000000"]}},
79
80
  hu: {"cardinal":{"one":["1","1.0","1.00","1.000","1.0000"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","0.9","1.1","1.6","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"one":["1","5"],"other":["0","2","4","6","17","100","1000","10000","100000","1000000"]}},
@@ -84,13 +85,11 @@ ig: d,
84
85
  ii: d,
85
86
  io: {"cardinal":{"one":["1"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{}},
86
87
  is: {"cardinal":{"one":["1","21","31","41","51","61","71","81","101","1001","0.1","1.0","1.6","10.1","100.1","1000.1"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","2.0","3.0","4.0","5.0","6.0","7.0","8.0","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"other":["0","15","100","1000","10000","100000","1000000"]}},
87
- it: {"cardinal":{"one":["1"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"many":["8","11","80","800"],"other":["0","7","9","10","12","17","100","1000","10000","100000","1000000"]}},
88
+ it: {"cardinal":{"one":["1"],"many":["1000000"],"other":["0","2","16","100","1000","10000","100000","0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"many":["8","11","80","800"],"other":["0","7","9","10","12","17","100","1000","10000","100000","1000000"]}},
88
89
  iu: g,
89
- iw: {"cardinal":{"one":["1"],"two":["2"],"many":["20","30","40","50","60","70","80","90","100","1000","10000","100000","1000000"],"other":["0","3","17","101","1001","0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"other":["0","15","100","1000","10000","100000","1000000"]}},
90
90
  ja: f,
91
91
  jbo: d,
92
92
  jgo: c,
93
- ji: {"cardinal":{"one":["1"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{}},
94
93
  jmc: c,
95
94
  jv: d,
96
95
  jw: d,
@@ -156,12 +155,11 @@ pcm: {"cardinal":{"one":["0","1","0.0","1.0","0.00","0.04"],"other":["2","17","1
156
155
  pl: {"cardinal":{"one":["1"],"few":["2","4","22","24","32","34","42","44","52","54","62","102","1002"],"many":["0","5","19","100","1000","10000","100000","1000000"],"other":["0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"other":["0","15","100","1000","10000","100000","1000000"]}},
157
156
  prg: {"cardinal":{"zero":["0","10","20","30","40","50","60","100","1000","10000","100000","1000000","0.0","10.0","11.0","12.0","13.0","14.0","15.0","16.0","100.0","1000.0","10000.0","100000.0","1000000.0"],"one":["1","21","31","41","51","61","71","81","101","1001","0.1","1.0","1.1","2.1","3.1","4.1","5.1","6.1","7.1","10.1","100.1","1000.1"],"other":["2","9","22","29","102","1002","0.2","0.9","1.2","1.9","10.2","100.2","1000.2"]},"ordinal":{"other":["0","15","100","1000","10000","100000","1000000"]}},
158
157
  ps: a,
159
- pt: {"cardinal":{"one":["0","1","0.0","1.0","1.5"],"other":["2","17","100","1000","10000","100000","1000000","2.0","3.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"other":["0","15","100","1000","10000","100000","1000000"]}},
160
- pt_PT: {"cardinal":{"one":["1"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{}},
158
+ pt: {"cardinal":{"one":["0","1","0.0","1.0","1.5"],"many":["1000000"],"other":["2","17","100","1000","10000","100000","2.0","3.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"other":["0","15","100","1000","10000","100000","1000000"]}},
159
+ pt_PT: {"cardinal":{"one":["1"],"many":["1000000"],"other":["0","2","16","100","1000","10000","100000","0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{}},
161
160
  rm: c,
162
161
  ro: {"cardinal":{"one":["1"],"few":["0","2","16","102","1002","0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"],"other":["20","35","100","1000","10000","100000","1000000"]},"ordinal":{"one":["1"],"other":["0","2","16","100","1000","10000","100000","1000000"]}},
163
162
  rof: c,
164
- root: f,
165
163
  ru: {"cardinal":{"one":["1","21","31","41","51","61","71","81","101","1001"],"few":["2","4","22","24","32","34","42","44","52","54","62","102","1002"],"many":["0","5","19","100","1000","10000","100000","1000000"],"other":["0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"other":["0","15","100","1000","10000","100000","1000000"]}},
166
164
  rwk: c,
167
165
  sah: d,
@@ -206,11 +204,13 @@ tk: {"cardinal":{"one":["1","1.0","1.00","1.000","1.0000"],"other":["0","2","16"
206
204
  tl: {"cardinal":{"one":["0","3","5","7","8","10","13","15","17","18","20","21","100","1000","10000","100000","1000000","0.0","0.3","0.5","0.7","0.8","1.0","1.3","1.5","1.7","1.8","2.0","2.1","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"],"other":["4","6","9","14","16","19","24","26","104","1004","0.4","0.6","0.9","1.4","1.6","1.9","2.4","2.6","10.4","100.4","1000.4"]},"ordinal":{"one":["1"],"other":["0","2","16","100","1000","10000","100000","1000000"]}},
207
205
  tn: c,
208
206
  to: d,
207
+ tpi: f,
209
208
  tr: a,
210
209
  ts: c,
211
210
  tzm: {"cardinal":{"one":["0","1","11","24","0.0","1.0","11.0","12.0","13.0","14.0","15.0","16.0","17.0","18.0","19.0","20.0","21.0","22.0","23.0","24.0"],"other":["2","10","100","106","1000","10000","100000","1000000","0.1","0.9","1.1","1.7","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{}},
212
211
  ug: c,
213
212
  uk: {"cardinal":{"one":["1","21","31","41","51","61","71","81","101","1001"],"few":["2","4","22","24","32","34","42","44","52","54","62","102","1002"],"many":["0","5","19","100","1000","10000","100000","1000000"],"other":["0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"few":["3","23","33","43","53","63","73","83","103","1003"],"other":["0","2","4","16","100","1000","10000","100000","1000000"]}},
213
+ und: f,
214
214
  ur: e,
215
215
  uz: a,
216
216
  ve: c,