-
-
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
041b929
commit 99bbb60
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 = 'cs'; | ||
|
||
const localization = { | ||
today: 'Dnes', | ||
clear: 'Vymazat výběr', | ||
close: 'Zavřít výběrové okno', | ||
selectMonth: 'Vybrat měsíc', | ||
previousMonth: 'Předchozí měsíc', | ||
nextMonth: 'Následující měsíc', | ||
selectYear: 'Vybrat rok', | ||
previousYear: 'Předchozí rok', | ||
nextYear: 'Následující rok', | ||
selectDecade: 'Vybrat desetiletí', | ||
previousDecade: 'Předchozí desetiletí', | ||
nextDecade: 'Následující desetiletí', | ||
previousCentury: 'Předchozí století', | ||
nextCentury: 'Následující století', | ||
pickHour: 'Vybrat hodinu', | ||
incrementHour: 'Zvýšit hodinu', | ||
decrementHour: 'Snížit hodinu', | ||
pickMinute: 'Vybrat minutu', | ||
incrementMinute: 'Zvýšit minutu', | ||
decrementMinute: 'Snížit minutu', | ||
pickSecond: 'Vybrat sekundu', | ||
incrementSecond: 'Zvýšit sekundu', | ||
decrementSecond: 'Snížit sekundu', | ||
toggleMeridiem: 'Přepnout ráno / odpoledne', | ||
selectTime: 'Vybrat čas', | ||
selectDate: 'Vybrat datum', | ||
dayViewHeaderFormat: {month: 'long', year: '2-digit'}, | ||
locale: 'de', | ||
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}; |