-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathgd.js
137 lines (137 loc) · 2.92 KB
/
gd.js
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
module.exports = {
"id": "gd",
"data": {
"long": {
"years": {
"one": "{0} bhliadhna",
"two": "{0} bhliadhna",
"few": "{0} bliadhnaichean",
"other": "{0} bliadhna"
},
"months": {
"one": "{0} mhìos",
"two": "{0} mhìos",
"few": "{0} mìosan",
"other": "{0} mìos"
},
"weeks": {
"one": "{0} seachdain",
"two": "{0} sheachdain",
"few": "{0} seachdainean",
"other": "{0} seachdain"
},
"days": {
"one": "{0} latha",
"two": "{0} latha",
"few": "{0} làithean",
"other": "{0} latha"
},
"hours": {
"one": "{0} uair a thìde",
"two": "{0} uair a thìde",
"few": "{0} uairean a thìde",
"other": "{0} uair a thìde"
},
"minutes": {
"one": "{0} mhionaid",
"two": "{0} mhionaid",
"few": "{0} mionaidean",
"other": "{0} mionaid"
},
"seconds": {
"one": "{0} diog",
"two": "{0} dhiog",
"few": "{0} diogan",
"other": "{0} diog"
}
},
"narrow": {
"years": {
"one": "{0}bl",
"two": "{0}bl",
"few": "{0}bl",
"other": "{0}bl"
},
"months": {
"one": "{0}m",
"two": "{0}m",
"few": "{0}m",
"other": "{0}m"
},
"weeks": {
"one": "{0}s",
"two": "{0}s",
"few": "{0}s",
"other": "{0}s"
},
"days": {
"one": "{0}là",
"two": "{0}là",
"few": "{0}là",
"other": "{0}là"
},
"hours": {
"one": "{0}u",
"two": "{0}u",
"few": "{0}u",
"other": "{0}u"
},
"minutes": {
"one": "{0}m",
"two": "{0}m",
"few": "{0}m",
"other": "{0}m"
},
"seconds": {
"one": "{0}d",
"two": "{0}d",
"few": "{0}d",
"other": "{0}d"
}
},
"short": {
"years": {
"one": "{0} bhlia",
"two": "{0} bhlia",
"few": "{0} blia",
"other": "{0} blia"
},
"months": {
"one": "{0} mhìos",
"two": "{0} mhìos",
"few": "{0} mìos",
"other": "{0} mìos"
},
"weeks": {
"one": "{0} shn",
"two": "{0} shn",
"few": "{0} sn",
"other": "{0} sn"
},
"days": {
"one": "{0} là",
"two": "{0} là",
"few": "{0} là",
"other": "{0} là"
},
"hours": {
"one": "{0} uair",
"two": "{0} uair",
"few": "{0} uair",
"other": "{0} uair"
},
"minutes": {
"one": "{0} mhion",
"two": "{0} mhion",
"few": "{0} mion",
"other": "{0} mion"
},
"seconds": {
"one": "{0} diog",
"two": "{0} dhiog",
"few": "{0} diog",
"other": "{0} diog"
}
}
}
};