Skip to content

Commit 4bc7c19

Browse files
authored
Add 'sk' locale (#2929)
1 parent 7e66e06 commit 4bc7c19

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed

src/js/locales/sk.ts

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
const name = 'sk';
2+
3+
const localization = {
4+
today: 'Dnes',
5+
clear: 'Vymazať výber',
6+
close: 'Zavrieť výberové okno',
7+
selectMonth: 'Vybrať mesiac',
8+
previousMonth: 'Predchádzajúci mesiac',
9+
nextMonth: 'Nasledujúci mesiac',
10+
selectYear: 'Vybrať rok',
11+
previousYear: 'Predchádzajúci rok',
12+
nextYear: 'Nasledujúci rok',
13+
selectDecade: 'Vybrať desaťročie',
14+
previousDecade: 'Predchádzajúce desaťročie',
15+
nextDecade: 'Nasledujúce desaťročie',
16+
previousCentury: 'Predchádzajúce storočia',
17+
nextCentury: 'Nasledujúce storočia',
18+
pickHour: 'Vybrať hodinu',
19+
incrementHour: 'Zvýšiť hodinu',
20+
decrementHour: 'Znížiť hodinu',
21+
pickMinute: 'Vybrať minútu',
22+
incrementMinute: 'Zvýšiť minútu',
23+
decrementMinute: 'Znížiť minútu',
24+
pickSecond: 'Vybrať sekundu',
25+
incrementSecond: 'Zvýšiť sekundu',
26+
decrementSecond: 'Znížiť sekundu',
27+
toggleMeridiem: 'Prepnúť ráno / popoludní',
28+
selectTime: 'Vybrať čas',
29+
selectDate: 'Vybrať dátum',
30+
dayViewHeaderFormat: { month: 'long', year: '2-digit' },
31+
locale: 'sk',
32+
startOfTheWeek: 1,
33+
dateFormats: {
34+
LTS: 'HH:mm:ss',
35+
LT: 'HH:mm',
36+
L: 'dd.MM.yyyy',
37+
LL: 'd. MMMM yyyy',
38+
LLL: 'd. MMMM yyyy HH:mm',
39+
LLLL: 'dddd, d. MMMM yyyy HH:mm',
40+
},
41+
ordinal: (n) => `${n}.`,
42+
format: 'L LT',
43+
};
44+
45+
export { localization, name };

0 commit comments

Comments
 (0)