forked from betsol/time-delta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsr_cyrl.js
116 lines (116 loc) · 2.5 KB
/
sr_cyrl.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": "sr_cyrl",
"data": {
"long": {
"years": {
"one": "{0} година",
"few": "{0} године",
"other": "{0} година"
},
"months": {
"one": "{0} месец",
"few": "{0} месеца",
"other": "{0} месеци"
},
"weeks": {
"one": "{0} недеља",
"few": "{0} недеље",
"other": "{0} недеља"
},
"days": {
"one": "{0} дан",
"few": "{0} дана",
"other": "{0} дана"
},
"hours": {
"one": "{0} сат",
"few": "{0} сата",
"other": "{0} сати"
},
"minutes": {
"one": "{0} минут",
"few": "{0} минута",
"other": "{0} минута"
},
"seconds": {
"one": "{0} секунда",
"few": "{0} секунде",
"other": "{0} секунди"
}
},
"narrow": {
"years": {
"one": "{0} г",
"few": "{0} г",
"other": "{0} г"
},
"months": {
"one": "{0} м",
"few": "{0} м",
"other": "{0} м"
},
"weeks": {
"one": "{0} н",
"few": "{0} н",
"other": "{0} н"
},
"days": {
"one": "{0} д",
"few": "{0} д",
"other": "{0} д"
},
"hours": {
"one": "{0} ч",
"few": "{0} ч",
"other": "{0} ч"
},
"minutes": {
"one": "{0} м",
"few": "{0} м",
"other": "{0} м"
},
"seconds": {
"one": "{0} с",
"few": "{0} с",
"other": "{0} с"
}
},
"short": {
"years": {
"one": "{0} год",
"few": "{0} год.",
"other": "{0} год."
},
"months": {
"one": "{0} мес.",
"few": "{0} мес.",
"other": "{0} мес."
},
"weeks": {
"one": "{0} нед.",
"few": "{0} нед.",
"other": "{0} нед."
},
"days": {
"one": "{0} дан",
"few": "{0} дана",
"other": "{0} дана"
},
"hours": {
"one": "{0} сат",
"few": "{0} сата",
"other": "{0} сати"
},
"minutes": {
"one": "{0} мин",
"few": "{0} мин",
"other": "{0} мин"
},
"seconds": {
"one": "{0} сек",
"few": "{0} сек",
"other": "{0} сек"
}
}
}
};