make-plural 7.1.0 → 7.3.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 +4 -3
- package/cardinals.js +21 -9
- package/cardinals.mjs +20 -9
- package/examples.d.ts +8 -7
- package/examples.js +40 -39
- package/examples.json +218 -0
- package/examples.mjs +40 -39
- package/ordinals.d.ts +2 -0
- package/ordinals.js +4 -0
- package/ordinals.mjs +2 -0
- package/package.json +2 -1
- package/pluralCategories.d.ts +4 -3
- package/pluralCategories.js +19 -19
- package/pluralCategories.mjs +19 -19
- package/plurals.d.ts +4 -3
- package/plurals.js +20 -10
- package/plurals.mjs +19 -10
- package/ranges.d.ts +1 -1
- package/ranges.js +1 -7
- package/ranges.mjs +1 -7
package/cardinals.d.ts
CHANGED
|
@@ -22,7 +22,7 @@ export const bo: (n: number | string) => "other";
|
|
|
22
22
|
export const br: (n: number | string) => "one" | "two" | "few" | "many" | "other";
|
|
23
23
|
export const brx: (n: number | string) => "one" | "other";
|
|
24
24
|
export const bs: (n: number | string) => "one" | "few" | "other";
|
|
25
|
-
export const ca: (n: number | string) => "one" | "other";
|
|
25
|
+
export const ca: (n: number | string) => "one" | "many" | "other";
|
|
26
26
|
export const ce: (n: number | string) => "one" | "other";
|
|
27
27
|
export const ceb: (n: number | string) => "one" | "other";
|
|
28
28
|
export const cgg: (n: number | string) => "one" | "other";
|
|
@@ -60,7 +60,7 @@ export const guw: (n: number | string) => "one" | "other";
|
|
|
60
60
|
export const gv: (n: number | string) => "one" | "two" | "few" | "many" | "other";
|
|
61
61
|
export const ha: (n: number | string) => "one" | "other";
|
|
62
62
|
export const haw: (n: number | string) => "one" | "other";
|
|
63
|
-
export const he: (n: number | string) => "one" | "two" | "
|
|
63
|
+
export const he: (n: number | string) => "one" | "two" | "other";
|
|
64
64
|
export const hi: (n: number | string) => "one" | "other";
|
|
65
65
|
export const hnj: (n: number | string) => "other";
|
|
66
66
|
export const hr: (n: number | string) => "one" | "few" | "other";
|
|
@@ -117,7 +117,7 @@ export const mn: (n: number | string) => "one" | "other";
|
|
|
117
117
|
export const mo: (n: number | string) => "one" | "few" | "other";
|
|
118
118
|
export const mr: (n: number | string) => "one" | "other";
|
|
119
119
|
export const ms: (n: number | string) => "other";
|
|
120
|
-
export const mt: (n: number | string) => "one" | "few" | "many" | "other";
|
|
120
|
+
export const mt: (n: number | string) => "one" | "two" | "few" | "many" | "other";
|
|
121
121
|
export const my: (n: number | string) => "other";
|
|
122
122
|
export const nah: (n: number | string) => "one" | "other";
|
|
123
123
|
export const naq: (n: number | string) => "one" | "two" | "other";
|
|
@@ -202,6 +202,7 @@ 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";
|
|
205
|
+
export const vec: (n: number | string) => "one" | "many" | "other";
|
|
205
206
|
export const vi: (n: number | string) => "other";
|
|
206
207
|
export const vo: (n: number | string) => "one" | "other";
|
|
207
208
|
export const vun: (n: number | string) => "one" | "other";
|
package/cardinals.js
CHANGED
|
@@ -94,7 +94,12 @@ bs: (n) => {
|
|
|
94
94
|
: 'other';
|
|
95
95
|
},
|
|
96
96
|
|
|
97
|
-
ca:
|
|
97
|
+
ca: (n) => {
|
|
98
|
+
const s = String(n).split('.'), i = s[0], v0 = !s[1], i1000000 = i.slice(-6);
|
|
99
|
+
return n == 1 && v0 ? 'one'
|
|
100
|
+
: i != 0 && i1000000 == 0 && v0 ? 'many'
|
|
101
|
+
: 'other';
|
|
102
|
+
},
|
|
98
103
|
|
|
99
104
|
ce: a,
|
|
100
105
|
|
|
@@ -227,10 +232,9 @@ ha: a,
|
|
|
227
232
|
haw: a,
|
|
228
233
|
|
|
229
234
|
he: (n) => {
|
|
230
|
-
const s = String(n).split('.'), i = s[0], v0 = !s[1]
|
|
231
|
-
return
|
|
235
|
+
const s = String(n).split('.'), i = s[0], v0 = !s[1];
|
|
236
|
+
return i == 1 && v0 || i == 0 && !v0 ? 'one'
|
|
232
237
|
: i == 2 && v0 ? 'two'
|
|
233
|
-
: v0 && (n < 0 || n > 10) && t0 && n10 == 0 ? 'many'
|
|
234
238
|
: 'other';
|
|
235
239
|
},
|
|
236
240
|
|
|
@@ -268,8 +272,8 @@ ii: e,
|
|
|
268
272
|
io: d,
|
|
269
273
|
|
|
270
274
|
is: (n) => {
|
|
271
|
-
const s = String(n).split('.'), i = s[0], t0 = Number(s[0]) == n, i10 = i.slice(-1), i100 = i.slice(-2);
|
|
272
|
-
return t0 && i10 == 1 && i100 != 11 ||
|
|
275
|
+
const s = String(n).split('.'), i = s[0], t = (s[1] || '').replace(/0+$/, ''), t0 = Number(s[0]) == n, i10 = i.slice(-1), i100 = i.slice(-2);
|
|
276
|
+
return t0 && i10 == 1 && i100 != 11 || t % 10 == 1 && t % 100 != 11 ? 'one' : 'other';
|
|
273
277
|
},
|
|
274
278
|
|
|
275
279
|
it: (n) => {
|
|
@@ -391,7 +395,7 @@ mn: a,
|
|
|
391
395
|
mo: (n) => {
|
|
392
396
|
const s = String(n).split('.'), v0 = !s[1], t0 = Number(s[0]) == n, n100 = t0 && s[0].slice(-2);
|
|
393
397
|
return n == 1 && v0 ? 'one'
|
|
394
|
-
: !v0 || n == 0 || (n100 >=
|
|
398
|
+
: !v0 || n == 0 || n != 1 && (n100 >= 1 && n100 <= 19) ? 'few'
|
|
395
399
|
: 'other';
|
|
396
400
|
},
|
|
397
401
|
|
|
@@ -402,7 +406,8 @@ ms: e,
|
|
|
402
406
|
mt: (n) => {
|
|
403
407
|
const s = String(n).split('.'), t0 = Number(s[0]) == n, n100 = t0 && s[0].slice(-2);
|
|
404
408
|
return n == 1 ? 'one'
|
|
405
|
-
: n ==
|
|
409
|
+
: n == 2 ? 'two'
|
|
410
|
+
: n == 0 || (n100 >= 3 && n100 <= 10) ? 'few'
|
|
406
411
|
: (n100 >= 11 && n100 <= 19) ? 'many'
|
|
407
412
|
: 'other';
|
|
408
413
|
},
|
|
@@ -487,7 +492,7 @@ rm: a,
|
|
|
487
492
|
ro: (n) => {
|
|
488
493
|
const s = String(n).split('.'), v0 = !s[1], t0 = Number(s[0]) == n, n100 = t0 && s[0].slice(-2);
|
|
489
494
|
return n == 1 && v0 ? 'one'
|
|
490
|
-
: !v0 || n == 0 || (n100 >=
|
|
495
|
+
: !v0 || n == 0 || n != 1 && (n100 >= 1 && n100 <= 19) ? 'few'
|
|
491
496
|
: 'other';
|
|
492
497
|
},
|
|
493
498
|
|
|
@@ -649,6 +654,13 @@ uz: a,
|
|
|
649
654
|
|
|
650
655
|
ve: a,
|
|
651
656
|
|
|
657
|
+
vec: (n) => {
|
|
658
|
+
const s = String(n).split('.'), i = s[0], v0 = !s[1], i1000000 = i.slice(-6);
|
|
659
|
+
return n == 1 && v0 ? 'one'
|
|
660
|
+
: i != 0 && i1000000 == 0 && v0 ? 'many'
|
|
661
|
+
: 'other';
|
|
662
|
+
},
|
|
663
|
+
|
|
652
664
|
vi: e,
|
|
653
665
|
|
|
654
666
|
vo: a,
|
package/cardinals.mjs
CHANGED
|
@@ -66,7 +66,12 @@ export const bs = (n) => {
|
|
|
66
66
|
: v0 && (i10 >= 2 && i10 <= 4) && (i100 < 12 || i100 > 14) || (f10 >= 2 && f10 <= 4) && (f100 < 12 || f100 > 14) ? 'few'
|
|
67
67
|
: 'other';
|
|
68
68
|
};
|
|
69
|
-
export const ca =
|
|
69
|
+
export const ca = (n) => {
|
|
70
|
+
const s = String(n).split('.'), i = s[0], v0 = !s[1], i1000000 = i.slice(-6);
|
|
71
|
+
return n == 1 && v0 ? 'one'
|
|
72
|
+
: i != 0 && i1000000 == 0 && v0 ? 'many'
|
|
73
|
+
: 'other';
|
|
74
|
+
};
|
|
70
75
|
export const ce = a;
|
|
71
76
|
export const ceb = (n) => {
|
|
72
77
|
const s = String(n).split('.'), i = s[0], f = s[1] || '', v0 = !s[1], i10 = i.slice(-1), f10 = f.slice(-1);
|
|
@@ -161,10 +166,9 @@ export const gv = (n) => {
|
|
|
161
166
|
export const ha = a;
|
|
162
167
|
export const haw = a;
|
|
163
168
|
export const he = (n) => {
|
|
164
|
-
const s = String(n).split('.'), i = s[0], v0 = !s[1]
|
|
165
|
-
return
|
|
169
|
+
const s = String(n).split('.'), i = s[0], v0 = !s[1];
|
|
170
|
+
return i == 1 && v0 || i == 0 && !v0 ? 'one'
|
|
166
171
|
: i == 2 && v0 ? 'two'
|
|
167
|
-
: v0 && (n < 0 || n > 10) && t0 && n10 == 0 ? 'many'
|
|
168
172
|
: 'other';
|
|
169
173
|
};
|
|
170
174
|
export const hi = c;
|
|
@@ -190,8 +194,8 @@ export const ig = e;
|
|
|
190
194
|
export const ii = e;
|
|
191
195
|
export const io = d;
|
|
192
196
|
export const is = (n) => {
|
|
193
|
-
const s = String(n).split('.'), i = s[0], t0 = Number(s[0]) == n, i10 = i.slice(-1), i100 = i.slice(-2);
|
|
194
|
-
return t0 && i10 == 1 && i100 != 11 ||
|
|
197
|
+
const s = String(n).split('.'), i = s[0], t = (s[1] || '').replace(/0+$/, ''), t0 = Number(s[0]) == n, i10 = i.slice(-1), i100 = i.slice(-2);
|
|
198
|
+
return t0 && i10 == 1 && i100 != 11 || t % 10 == 1 && t % 100 != 11 ? 'one' : 'other';
|
|
195
199
|
};
|
|
196
200
|
export const it = (n) => {
|
|
197
201
|
const s = String(n).split('.'), i = s[0], v0 = !s[1], i1000000 = i.slice(-6);
|
|
@@ -271,7 +275,7 @@ export const mn = a;
|
|
|
271
275
|
export const mo = (n) => {
|
|
272
276
|
const s = String(n).split('.'), v0 = !s[1], t0 = Number(s[0]) == n, n100 = t0 && s[0].slice(-2);
|
|
273
277
|
return n == 1 && v0 ? 'one'
|
|
274
|
-
: !v0 || n == 0 || (n100 >=
|
|
278
|
+
: !v0 || n == 0 || n != 1 && (n100 >= 1 && n100 <= 19) ? 'few'
|
|
275
279
|
: 'other';
|
|
276
280
|
};
|
|
277
281
|
export const mr = a;
|
|
@@ -279,7 +283,8 @@ export const ms = e;
|
|
|
279
283
|
export const mt = (n) => {
|
|
280
284
|
const s = String(n).split('.'), t0 = Number(s[0]) == n, n100 = t0 && s[0].slice(-2);
|
|
281
285
|
return n == 1 ? 'one'
|
|
282
|
-
: n ==
|
|
286
|
+
: n == 2 ? 'two'
|
|
287
|
+
: n == 0 || (n100 >= 3 && n100 <= 10) ? 'few'
|
|
283
288
|
: (n100 >= 11 && n100 <= 19) ? 'many'
|
|
284
289
|
: 'other';
|
|
285
290
|
};
|
|
@@ -335,7 +340,7 @@ export const rm = a;
|
|
|
335
340
|
export const ro = (n) => {
|
|
336
341
|
const s = String(n).split('.'), v0 = !s[1], t0 = Number(s[0]) == n, n100 = t0 && s[0].slice(-2);
|
|
337
342
|
return n == 1 && v0 ? 'one'
|
|
338
|
-
: !v0 || n == 0 || (n100 >=
|
|
343
|
+
: !v0 || n == 0 || n != 1 && (n100 >= 1 && n100 <= 19) ? 'few'
|
|
339
344
|
: 'other';
|
|
340
345
|
};
|
|
341
346
|
export const rof = a;
|
|
@@ -441,6 +446,12 @@ export const und = e;
|
|
|
441
446
|
export const ur = d;
|
|
442
447
|
export const uz = a;
|
|
443
448
|
export const ve = a;
|
|
449
|
+
export const vec = (n) => {
|
|
450
|
+
const s = String(n).split('.'), i = s[0], v0 = !s[1], i1000000 = i.slice(-6);
|
|
451
|
+
return n == 1 && v0 ? 'one'
|
|
452
|
+
: i != 0 && i1000000 == 0 && v0 ? 'many'
|
|
453
|
+
: 'other';
|
|
454
|
+
};
|
|
444
455
|
export const vi = e;
|
|
445
456
|
export const vo = a;
|
|
446
457
|
export const vun = a;
|
package/examples.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ export const ar: {"cardinal":{"zero":["0","0.0","0.00","0.000","0.0000"],"one":[
|
|
|
6
6
|
export const ars: {"cardinal":{"zero":["0","0.0","0.00","0.000","0.0000"],"one":["1","1.0","1.00","1.000","1.0000"],"two":["2","2.0","2.00","2.000","2.0000"],"few":["3","10","103","110","1003","3.0","4.0","5.0","6.0","7.0","8.0","9.0","10.0","103.0","1003.0"],"many":["11","26","111","1011","11.0","12.0","13.0","14.0","15.0","16.0","17.0","18.0","111.0","1011.0"],"other":["100","102","200","202","300","302","400","402","500","502","600","1000","10000","100000","1000000","0.1","0.9","1.1","1.7","10.1","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{}};
|
|
7
7
|
export const as: {"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","5","7","10"],"two":["2","3"],"few":["4"],"many":["6"],"other":["0","11","25","100","1000","10000","100000","1000000"]}};
|
|
8
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":{}};
|
|
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":{}};
|
|
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":{"other":["0","15","100","1000","10000","100000","1000000"]}};
|
|
10
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
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"]}};
|
|
@@ -20,7 +20,7 @@ export const bo: {"cardinal":{"other":["0","15","100","1000","10000","100000","1
|
|
|
20
20
|
export const br: {"cardinal":{"one":["1","21","31","41","51","61","81","101","1001","1.0","21.0","31.0","41.0","51.0","61.0","81.0","101.0","1001.0"],"two":["2","22","32","42","52","62","82","102","1002","2.0","22.0","32.0","42.0","52.0","62.0","82.0","102.0","1002.0"],"few":["3","4","9","23","24","29","33","34","39","43","44","49","103","1003","3.0","4.0","9.0","23.0","24.0","29.0","33.0","34.0","103.0","1003.0"],"many":["1000000","1000000.0","1000000.00","1000000.000","1000000.0000"],"other":["0","5","8","10","20","100","1000","10000","100000","0.0","0.9","1.1","1.6","10.0","100.0","1000.0","10000.0","100000.0"]},"ordinal":{}};
|
|
21
21
|
export const brx: {"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":{}};
|
|
22
22
|
export const bs: {"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"]}};
|
|
23
|
-
export const ca: {"cardinal":{"one":["1"],"other":["0","2","16","100","1000","10000","100000","
|
|
23
|
+
export const ca: {"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":{"one":["1","3"],"two":["2"],"few":["4"],"other":["0","5","19","100","1000","10000","100000","1000000"]}};
|
|
24
24
|
export const ce: {"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"]}};
|
|
25
25
|
export const ceb: {"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":{}};
|
|
26
26
|
export const cgg: {"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":{}};
|
|
@@ -58,7 +58,7 @@ export const guw: {"cardinal":{"one":["0","1","0.0","1.0","0.00","1.00","0.000",
|
|
|
58
58
|
export const gv: {"cardinal":{"one":["1","11","21","31","41","51","61","71","101","1001"],"two":["2","12","22","32","42","52","62","72","102","1002"],"few":["0","20","40","60","80","100","120","140","1000","10000","100000","1000000"],"many":["0.0","1.0","1.5","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"],"other":["3","10","13","19","23","103","1003"]},"ordinal":{}};
|
|
59
59
|
export const ha: {"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":{}};
|
|
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
|
-
export const he: {"cardinal":{"one":["1"
|
|
61
|
+
export const he: {"cardinal":{"one":["1","0.0","0.9","0.00","0.05"],"two":["2"],"other":["0","3","17","100","1000","10000","100000","1000000","1.0","2.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
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":{}};
|
|
64
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"]}};
|
|
@@ -70,7 +70,7 @@ export const id: {"cardinal":{"other":["0","15","100","1000","10000","100000","1
|
|
|
70
70
|
export const ig: {"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
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":{}};
|
|
72
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":{}};
|
|
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","
|
|
73
|
+
export const is: {"cardinal":{"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":["0","2","16","100","1000","10000","100000","1000000","0.0","0.2","0.9","1.2","1.8","10.0","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{"other":["0","15","100","1000","10000","100000","1000000"]}};
|
|
74
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"]}};
|
|
75
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":{}};
|
|
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"]}};
|
|
@@ -112,10 +112,10 @@ export const mgo: {"cardinal":{"one":["1","1.0","1.00","1.000","1.0000"],"other"
|
|
|
112
112
|
export const mk: {"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"],"other":["0","2","16","100","1000","10000","100000","1000000","0.0","0.2","1.0","1.2","1.7","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"],"many":["7","8","27","28","37","38","47","48","57","58","67","68","77","78","87","88","107","1007"],"other":["0","3","6","9","19","100","1000","10000","100000","1000000"]}};
|
|
113
113
|
export const ml: {"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"]}};
|
|
114
114
|
export const mn: {"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"]}};
|
|
115
|
-
export const mo: {"cardinal":{"one":["1"],"few":["0","2","16","
|
|
115
|
+
export const mo: {"cardinal":{"one":["1"],"few":["0","2","16","101","1001","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"]}};
|
|
116
116
|
export const mr: {"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"],"two":["2","3"],"few":["4"],"other":["0","5","19","100","1000","10000","100000","1000000"]}};
|
|
117
117
|
export const ms: {"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":{"one":["1"],"other":["0","2","16","100","1000","10000","100000","1000000"]}};
|
|
118
|
-
export const mt: {"cardinal":{"one":["1","1.0","1.00","1.000","1.0000"],"
|
|
118
|
+
export const mt: {"cardinal":{"one":["1","1.0","1.00","1.000","1.0000"],"two":["2","2.0","2.00","2.000","2.0000"],"few":["0","3","10","103","109","1003","0.0","3.0","4.0","5.0","6.0","7.0","8.0","9.0","10.0","103.0","1003.0"],"many":["11","19","111","117","1011","11.0","12.0","13.0","14.0","15.0","16.0","17.0","18.0","111.0","1011.0"],"other":["20","35","100","1000","10000","100000","1000000","0.1","0.9","1.1","1.7","10.1","100.0","1000.0","10000.0","100000.0","1000000.0"]},"ordinal":{}};
|
|
119
119
|
export const my: {"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"]}};
|
|
120
120
|
export const nah: {"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":{}};
|
|
121
121
|
export const naq: {"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":{}};
|
|
@@ -144,7 +144,7 @@ export const ps: {"cardinal":{"one":["1","1.0","1.00","1.000","1.0000"],"other":
|
|
|
144
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
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":{}};
|
|
146
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":{}};
|
|
147
|
-
export const ro: {"cardinal":{"one":["1"],"few":["0","2","16","
|
|
147
|
+
export const ro: {"cardinal":{"one":["1"],"few":["0","2","16","101","1001","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"]}};
|
|
148
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":{}};
|
|
149
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"]}};
|
|
150
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":{}};
|
|
@@ -200,6 +200,7 @@ export const und: {"cardinal":{"other":["0","15","100","1000","10000","100000","
|
|
|
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":{}};
|
|
203
|
+
export const vec: {"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"]}};
|
|
203
204
|
export const vi: {"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":{"one":["1"],"other":["0","2","16","100","1000","10000","100000","1000000"]}};
|
|
204
205
|
export const vo: {"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":{}};
|
|
205
206
|
export const vun: {"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":{}};
|