forked from betsol/time-delta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmgo.js
50 lines (50 loc) · 839 Bytes
/
mgo.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
module.exports = {
"id": "mgo",
"data": {
"long": {
"months": {
"one": "{0} m",
"other": "{0} m"
},
"days": {
"one": "{0} d",
"other": "{0} d"
},
"hours": {
"one": "{0} h",
"other": "{0} h"
},
"minutes": {
"one": "{0} min",
"other": "{0} min"
},
"seconds": {
"one": "{0} s",
"other": "{0} s"
}
},
"short": {
"years": {
"other": "{0} y"
},
"months": {
"other": "{0} m"
},
"weeks": {
"other": "{0} w"
},
"days": {
"other": "{0} d"
},
"hours": {
"other": "{0} h"
},
"minutes": {
"other": "{0} min"
},
"seconds": {
"other": "{0} s"
}
}
}
};