forked from betsol/time-delta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathka.js
95 lines (95 loc) · 1.97 KB
/
ka.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": "ka",
"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} წმ"
}
}
}
};