Skip to content

Commit

Permalink
Czech localization (#2861)
Browse files Browse the repository at this point in the history
  • Loading branch information
KamilPesek authored Nov 6, 2023
1 parent 041b929 commit 99bbb60
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions src/js/locales/cs.ts
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};

0 comments on commit 99bbb60

Please sign in to comment.