forked from betsol/time-delta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathse_fi.js
116 lines (116 loc) · 2.29 KB
/
se_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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
module.exports = {
"id": "se_fi",
"data": {
"long": {
"years": {
"one": "{0} jahki",
"two": "{0} jahkki",
"other": "{0} jahkki"
},
"months": {
"one": "{0} mánotbadji",
"two": "{0} mánotbaji",
"other": "{0} mánotbadji"
},
"weeks": {
"one": "{0} váhku",
"two": "{0} váhkku",
"other": "{0} váhkku"
},
"days": {
"one": "{0} jándor",
"two": "{0} jándora",
"other": "{0} jándora"
},
"hours": {
"one": "{0} diibmu",
"two": "{0} diimmur",
"other": "{0} diibmur"
},
"minutes": {
"one": "{0} minuhta",
"two": "{0} minuhtta",
"other": "{0} minuhtta"
},
"seconds": {
"one": "{0} sekunda",
"two": "{0} sekundda",
"other": "{0} sekundda"
}
},
"narrow": {
"years": {
"one": "{0}j",
"two": "{0}j",
"other": "{0}j"
},
"months": {
"one": "{0}m",
"two": "{0}m",
"other": "{0}m"
},
"weeks": {
"one": "{0}v",
"two": "{0}v",
"other": "{0}v"
},
"days": {
"one": "{0}d",
"two": "{0}d",
"other": "{0}d"
},
"hours": {
"one": "{0}h",
"two": "{0}h",
"other": "{0}h"
},
"minutes": {
"one": "{0}m",
"two": "{0}m",
"other": "{0}m"
},
"seconds": {
"one": "{0}s",
"two": "{0}s",
"other": "{0}s"
}
},
"short": {
"years": {
"one": "{0} jah",
"two": "{0} jah",
"other": "{0} jah"
},
"months": {
"one": "{0} mán",
"two": "{0} mán",
"other": "{0} mán"
},
"weeks": {
"one": "{0} v",
"two": "{0} v",
"other": "{0} v"
},
"days": {
"one": "{0} d",
"two": "{0} d",
"other": "{0} d"
},
"hours": {
"one": "{0} h",
"two": "{0} h",
"other": "{0} h"
},
"minutes": {
"one": "{0} min",
"two": "{0} min",
"other": "{0} min"
},
"seconds": {
"one": "{0} s",
"two": "{0} s",
"other": "{0} s"
}
}
}
};