-
-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7e66e06
commit 4bc7c19
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }; |