forked from betsol/time-delta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwae_ch.js
58 lines (58 loc) · 1.03 KB
/
wae_ch.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": "wae_ch",
"data": {
"long": {
"years": {
"one": "{0} jár",
"other": "{0} jár"
},
"months": {
"one": "{0} mánet",
"other": "{0} mánet"
},
"weeks": {
"one": "{0} wuča",
"other": "{0} wučä"
},
"days": {
"one": "{0} täg",
"other": "{0} täg"
},
"hours": {
"one": "{0} stund",
"other": "{0} stunde"
},
"minutes": {
"one": "{0} minüta",
"other": "{0} minüte"
},
"seconds": {
"one": "{0} sekund",
"other": "{0} sekunde"
}
},
"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"
}
}
}
};