forked from betsol/time-delta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpl.js
128 lines (128 loc) · 2.73 KB
/
pl.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
117
118
119
120
121
122
123
124
125
126
127
128
module.exports = {
"id": "pl",
"data": {
"long": {
"years": {
"one": "{0} rok",
"few": "{0} lata",
"many": "{0} lat",
"other": "{0} roku"
},
"months": {
"one": "{0} miesiąc",
"few": "{0} miesiące",
"many": "{0} miesięcy",
"other": "{0} miesiąca"
},
"weeks": {
"one": "{0} tydzień",
"few": "{0} tygodnie",
"many": "{0} tygodni",
"other": "{0} tygodnia"
},
"days": {
"one": "{0} doba",
"few": "{0} doby",
"many": "{0} dób",
"other": "{0} doby"
},
"hours": {
"one": "{0} godzina",
"few": "{0} godziny",
"many": "{0} godzin",
"other": "{0} godziny"
},
"minutes": {
"one": "{0} minuta",
"few": "{0} minuty",
"many": "{0} minut",
"other": "{0} minuty"
},
"seconds": {
"one": "{0} sekunda",
"few": "{0} sekundy",
"many": "{0} sekund",
"other": "{0} sekundy"
}
},
"narrow": {
"years": {
"one": "{0} r.",
"few": "{0} l.",
"many": "{0} l.",
"other": "{0} r."
},
"months": {
"one": "{0} m-c",
"few": "{0} m-ce",
"many": "{0} m-cy",
"other": "{0} m-ca"
},
"weeks": {
"one": "{0} tydz.",
"few": "{0} tyg.",
"many": "{0} tyg.",
"other": "{0} tyg."
},
"days": {
"one": "{0} d.",
"few": "{0} d.",
"many": "{0} d.",
"other": "{0} d."
},
"hours": {
"one": "{0} g.",
"few": "{0} g.",
"many": "{0} g.",
"other": "{0} g."
},
"seconds": {
"one": "{0} s",
"few": "{0} s",
"many": "{0} s",
"other": "{0} s"
}
},
"short": {
"years": {
"one": "{0} rok",
"few": "{0} lata",
"many": "{0} lat",
"other": "{0} roku"
},
"months": {
"one": "{0} mies.",
"few": "{0} mies.",
"many": "{0} mies.",
"other": "{0} mies."
},
"weeks": {
"one": "{0} tydz.",
"few": "{0} tyg.",
"many": "{0} tyg.",
"other": "{0} tyg."
},
"days": {
"one": "{0} doba",
"few": "{0} doby",
"many": "{0} dób",
"other": "{0} doby"
},
"hours": {
"one": "{0} godz.",
"few": "{0} godz.",
"many": "{0} godz.",
"other": "{0} godz."
},
"minutes": {
"other": "{0} min"
},
"seconds": {
"one": "{0} sek.",
"few": "{0} sek.",
"many": "{0} sek.",
"other": "{0} sek."
}
}
}
};