forked from betsol/time-delta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathro_ro.js
116 lines (116 loc) · 2.34 KB
/
ro_ro.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": "ro_ro",
"data": {
"long": {
"years": {
"one": "{0} an",
"few": "{0} ani",
"other": "{0} de ani"
},
"months": {
"one": "{0} lună",
"few": "{0} luni",
"other": "{0} de luni"
},
"weeks": {
"one": "{0} săptămână",
"few": "{0} săptămâni",
"other": "{0} de săptămâni"
},
"days": {
"one": "{0} zi",
"few": "{0} zile",
"other": "{0} de zile"
},
"hours": {
"one": "{0} oră",
"few": "{0} ore",
"other": "{0} de ore"
},
"minutes": {
"one": "{0} minut",
"few": "{0} minute",
"other": "{0} de minute"
},
"seconds": {
"one": "{0} secundă",
"few": "{0} secunde",
"other": "{0} de secunde"
}
},
"narrow": {
"years": {
"one": "{0} a",
"few": "{0} a",
"other": "{0} a"
},
"months": {
"one": "{0} l",
"few": "{0} l",
"other": "{0} l"
},
"weeks": {
"one": "{0} săpt.",
"few": "{0} săpt.",
"other": "{0} săpt."
},
"days": {
"one": "{0} z",
"few": "{0} z",
"other": "{0} z"
},
"hours": {
"one": "{0} h",
"few": "{0} h",
"other": "{0} h"
},
"minutes": {
"one": "{0} m",
"few": "{0} m",
"other": "{0} m"
},
"seconds": {
"one": "{0} s",
"few": "{0} s",
"other": "{0} s"
}
},
"short": {
"years": {
"one": "{0} an",
"few": "{0} ani",
"other": "{0} ani"
},
"months": {
"one": "{0} lună",
"few": "{0} luni",
"other": "{0} luni"
},
"weeks": {
"one": "{0} săpt.",
"few": "{0} săpt.",
"other": "{0} săpt."
},
"days": {
"one": "{0} zi",
"few": "{0} zile",
"other": "{0} zile"
},
"hours": {
"one": "{0} oră",
"few": "{0} ore",
"other": "{0} ore"
},
"minutes": {
"one": "{0} min.",
"few": "{0} min.",
"other": "{0} min."
},
"seconds": {
"one": "{0} s",
"few": "{0} s",
"other": "{0} s"
}
}
}
};