forked from betsol/time-delta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchr.js
95 lines (95 loc) · 1.99 KB
/
chr.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": "chr",
"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} ᎠᏎᏢ"
}
}
}
};