forked from betsol/time-delta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathde_at.js
91 lines (91 loc) · 1.7 KB
/
de_at.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
module.exports = {
"id": "de_at",
"data": {
"long": {
"years": {
"one": "{0} Jahr",
"other": "{0} Jahre"
},
"months": {
"one": "{0} Monat",
"other": "{0} Monate"
},
"weeks": {
"one": "{0} Woche",
"other": "{0} Wochen"
},
"days": {
"one": "{0} Tag",
"other": "{0} Tage"
},
"hours": {
"one": "{0} Stunde",
"other": "{0} Stunden"
},
"minutes": {
"one": "{0} Minute",
"other": "{0} Minuten"
},
"seconds": {
"one": "{0} Sekunde",
"other": "{0} Sekunden"
}
},
"narrow": {
"years": {
"one": "{0} J",
"other": "{0} J"
},
"months": {
"one": "{0} M",
"other": "{0} M"
},
"weeks": {
"one": "{0} W",
"other": "{0} W"
},
"days": {
"one": "{0} T",
"other": "{0} T"
},
"hours": {
"one": "{0} Std.",
"other": "{0} Std."
},
"minutes": {
"one": "{0} Min.",
"other": "{0} Min."
}
},
"short": {
"years": {
"one": "{0} J",
"other": "{0} J"
},
"months": {
"one": "{0} Mon.",
"other": "{0} Mon."
},
"weeks": {
"one": "{0} Wo.",
"other": "{0} Wo."
},
"days": {
"one": "{0} Tg.",
"other": "{0} Tg."
},
"hours": {
"one": "{0} Std.",
"other": "{0} Std."
},
"minutes": {
"one": "{0} Min.",
"other": "{0} Min."
},
"seconds": {
"one": "{0} Sek.",
"other": "{0} Sek."
}
}
}
};