1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
| const a = (start, end) => "other";
| const b = (start, end) => (start === "other" && end === "one") ? "one" : "other";
| const c = (start, end) => end || "other";
|
| export const af = a;
| export const ak = b;
| export const am = c;
| export const an = a;
| export const ar = (start, end) => (
| end === "few" ? "few"
| : end === "many" ? "many"
| : (start === "zero" && end === "one") ? "zero"
| : (start === "zero" && end === "two") ? "zero"
| : "other"
| );
| export const as = c;
| export const az = c;
| export const be = c;
| export const bg = a;
| export const bn = c;
| export const bs = c;
| export const ca = a;
| export const cs = c;
| export const cy = c;
| export const da = c;
| export const de = c;
| export const el = c;
| export const en = a;
| export const es = a;
| export const et = a;
| export const eu = a;
| export const fa = b;
| export const fi = a;
| export const fil = c;
| export const fr = c;
| export const ga = c;
| export const gl = c;
| export const gsw = c;
| export const gu = c;
| export const he = a;
| export const hi = c;
| export const hr = c;
| export const hu = c;
| export const hy = c;
| export const ia = a;
| export const id = a;
| export const io = a;
| export const is = c;
| export const it = c;
| export const ja = a;
| export const ka = (start, end) => start || "other";
| export const kk = c;
| export const km = a;
| export const kn = c;
| export const ko = a;
| export const ky = c;
| export const lij = c;
| export const lo = a;
| export const lt = c;
| export const lv = (start, end) => end === "one" ? "one" : "other";
| export const mk = a;
| export const ml = c;
| export const mn = c;
| export const mr = c;
| export const ms = a;
| export const my = a;
| export const nb = a;
| export const ne = c;
| export const nl = c;
| export const no = a;
| export const or = b;
| export const pa = c;
| export const pcm = a;
| export const pl = c;
| export const ps = c;
| export const pt = c;
| export const ro = (start, end) => end === "few" ? "few" : end === "one" ? "few" : "other";
| export const ru = c;
| export const sc = c;
| export const scn = c;
| export const sd = b;
| export const si = (start, end) => (start === "one" && end === "one") ? "one" : "other";
| export const sk = c;
| export const sl = (start, end) => (
| end === "few" ? "few"
| : end === "one" ? "few"
| : end === "two" ? "two"
| : "other"
| );
| export const sq = c;
| export const sr = c;
| export const sv = a;
| export const sw = c;
| export const ta = c;
| export const te = c;
| export const th = a;
| export const tk = c;
| export const tr = c;
| export const ug = c;
| export const uk = c;
| export const ur = a;
| export const uz = c;
| export const vi = a;
| export const yue = a;
| export const zh = a;
| export const zu = c;
|
|