forked from betsol/time-delta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhy.js
95 lines (95 loc) · 1.82 KB
/
hy.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
module.exports = {
"id": "hy",
"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} վայրկյան"
}
},
"narrow": {
"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": {
"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} վրկ"
}
}
}
};