Skip to content

Commit

Permalink
Add 'sk' locale (#2929)
Browse files Browse the repository at this point in the history
  • Loading branch information
sieberlukas authored Aug 5, 2024
1 parent 7e66e06 commit 4bc7c19
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions src/js/locales/sk.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
const name = 'sk';

const localization = {
today: 'Dnes',
clear: 'Vymazať výber',
close: 'Zavrieť výberové okno',
selectMonth: 'Vybrať mesiac',
previousMonth: 'Predchádzajúci mesiac',
nextMonth: 'Nasledujúci mesiac',
selectYear: 'Vybrať rok',
previousYear: 'Predchádzajúci rok',
nextYear: 'Nasledujúci rok',
selectDecade: 'Vybrať desaťročie',
previousDecade: 'Predchádzajúce desaťročie',
nextDecade: 'Nasledujúce desaťročie',
previousCentury: 'Predchádzajúce storočia',
nextCentury: 'Nasledujúce storočia',
pickHour: 'Vybrať hodinu',
incrementHour: 'Zvýšiť hodinu',
decrementHour: 'Znížiť hodinu',
pickMinute: 'Vybrať minútu',
incrementMinute: 'Zvýšiť minútu',
decrementMinute: 'Znížiť minútu',
pickSecond: 'Vybrať sekundu',
incrementSecond: 'Zvýšiť sekundu',
decrementSecond: 'Znížiť sekundu',
toggleMeridiem: 'Prepnúť ráno / popoludní',
selectTime: 'Vybrať čas',
selectDate: 'Vybrať dátum',
dayViewHeaderFormat: { month: 'long', year: '2-digit' },
locale: 'sk',
startOfTheWeek: 1,
dateFormats: {
LTS: 'HH:mm:ss',
LT: 'HH:mm',
L: 'dd.MM.yyyy',
LL: 'd. MMMM yyyy',
LLL: 'd. MMMM yyyy HH:mm',
LLLL: 'dddd, d. MMMM yyyy HH:mm',
},
ordinal: (n) => `${n}.`,
format: 'L LT',
};

export { localization, name };

0 comments on commit 4bc7c19

Please sign in to comment.