forked from betsol/time-delta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfur.js
58 lines (58 loc) · 1.03 KB
/
fur.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
module.exports = {
"id": "fur",
"data": {
"long": {
"years": {
"one": "{0} an",
"other": "{0} agns"
},
"months": {
"one": "{0} mês",
"other": "{0} mês"
},
"weeks": {
"one": "{0} setemane",
"other": "{0} setemanis"
},
"days": {
"one": "{0} zornade",
"other": "{0} zornadis"
},
"hours": {
"one": "{0} ore",
"other": "{0} oris"
},
"minutes": {
"one": "{0} minût",
"other": "{0} minûts"
},
"seconds": {
"one": "{0} secont",
"other": "{0} seconts"
}
},
"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"
}
}
}
};