Skip to content

Commit b86ba28

Browse files
authored
Create pl.ts
1 parent 00512be commit b86ba28

File tree

1 file changed

+100
-0
lines changed

1 file changed

+100
-0
lines changed

core/src/locale/pl.ts

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
import type { Localization } from './types'
2+
3+
const locale: Localization = {
4+
'*': {
5+
prefix: 'Każdy',
6+
suffix: '',
7+
text: 'Nieznany',
8+
'*': {
9+
empty: { text: 'każdy {{field.id}}' },
10+
value: { text: '{{value.text}}' },
11+
range: { text: '{{start.text}}-{{end.text}}' },
12+
everyX: { text: 'co {{every.value}}' },
13+
},
14+
month: {
15+
'*': { prefix: 'w' },
16+
value: { text: '{{value.alt}}' },
17+
range: { text: '{{start.alt}}-{{end.alt}}' },
18+
},
19+
day: {
20+
'*': { prefix: 'w' },
21+
noSpecific: {
22+
text: 'bez określonego dnia',
23+
},
24+
},
25+
dayOfWeek: {
26+
'*': { prefix: 'w' },
27+
empty: { text: 'każdy dzień tygodnia' },
28+
value: { text: '{{value.alt}}' },
29+
range: { text: '{{start.alt}}-{{end.alt}}' },
30+
noSpecific: {
31+
text: 'bez określonego dnia tygodnia',
32+
},
33+
},
34+
hour: {
35+
'*': { prefix: 'o' },
36+
},
37+
minute: {
38+
'*': { prefix: ':' },
39+
},
40+
second: {
41+
'*': { prefix: ':' },
42+
},
43+
},
44+
minute: {
45+
text: 'Minuta',
46+
},
47+
hour: {
48+
text: 'Godzina',
49+
minute: {
50+
'*': {
51+
prefix: 'o',
52+
suffix: 'minut(a)',
53+
},
54+
empty: { text: 'każda' },
55+
},
56+
},
57+
day: {
58+
text: 'Dzień',
59+
},
60+
week: {
61+
text: 'Tydzień',
62+
},
63+
month: {
64+
text: 'Miesiąc',
65+
dayOfWeek: {
66+
'*': { prefix: 'i' },
67+
},
68+
},
69+
year: {
70+
text: 'Rok',
71+
dayOfWeek: {
72+
'*': { prefix: 'i' },
73+
},
74+
},
75+
76+
//quartz format
77+
'q-second': {
78+
text: 'Sekunda',
79+
},
80+
'q-minute': {
81+
text: 'Minuta',
82+
second: {
83+
'*': {
84+
prefix: 'o',
85+
suffix: 'sekund(a)',
86+
},
87+
empty: { text: 'każda' },
88+
},
89+
},
90+
'q-hour': {
91+
text: 'Godzina',
92+
minute: {
93+
'*': {
94+
prefix: 'o',
95+
},
96+
},
97+
},
98+
}
99+
100+
export default locale

0 commit comments

Comments
 (0)