forked from betsol/time-delta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfi.js
95 lines (95 loc) · 1.75 KB
/
fi.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
module.exports = {
"id": "fi",
"data": {
"long": {
"years": {
"one": "{0} vuosi",
"other": "{0} vuotta"
},
"months": {
"one": "{0} kuukausi",
"other": "{0} kuukautta"
},
"weeks": {
"one": "{0} viikko",
"other": "{0} viikkoa"
},
"days": {
"one": "{0} päivä",
"other": "{0} päivää"
},
"hours": {
"one": "{0} tunti",
"other": "{0} tuntia"
},
"minutes": {
"one": "{0} minuutti",
"other": "{0} minuuttia"
},
"seconds": {
"one": "{0} sekunti",
"other": "{0} sekuntia"
}
},
"narrow": {
"years": {
"one": "{0}v",
"other": "{0}v"
},
"months": {
"one": "{0}kk",
"other": "{0}kk"
},
"weeks": {
"one": "{0}vk",
"other": "{0}vk"
},
"days": {
"one": "{0}pv",
"other": "{0}pv"
},
"hours": {
"one": "{0}t",
"other": "{0}t"
},
"minutes": {
"one": "{0}min",
"other": "{0}min"
},
"seconds": {
"one": "{0}s",
"other": "{0}s"
}
},
"short": {
"years": {
"one": "{0} v",
"other": "{0} v"
},
"months": {
"one": "{0} kk",
"other": "{0} kk"
},
"weeks": {
"one": "{0} vk",
"other": "{0} vk"
},
"days": {
"one": "{0} pv",
"other": "{0} pv"
},
"hours": {
"one": "{0} t",
"other": "{0} t"
},
"minutes": {
"one": "{0} min",
"other": "{0} min"
},
"seconds": {
"one": "{0} s",
"other": "{0} s"
}
}
}
};