Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add 'sk' locale #2929

Merged
merged 1 commit into from
Aug 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 };