forked from betsol/time-delta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrx_in.js
58 lines (58 loc) · 1.12 KB
/
brx_in.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": "brx_in",
"data": {
"long": {
"years": {
"one": "{0} साल",
"other": "{0} साल"
},
"months": {
"one": "{0} महीना",
"other": "{0} महीने"
},
"weeks": {
"one": "{0} सप्ताह",
"other": "{0} सप्ताह"
},
"days": {
"one": "{0} सान",
"other": "{0} सान"
},
"hours": {
"one": "{0} रिंगा",
"other": "{0} घंटे"
},
"minutes": {
"one": "{0} मिन.",
"other": "{0} मिन."
},
"seconds": {
"one": "{0} सेकं.",
"other": "{0} सेकं."
}
},
"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"
}
}
}
};