From 6d284c2f04c85d93af9e5835c117b65a158ec1c6 Mon Sep 17 00:00:00 2001 From: Przemyslaw Wegrzyn Date: Wed, 24 Apr 2024 19:00:44 +0200 Subject: [PATCH] Fix chech month names --- src/components/datepicker/locale/index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/datepicker/locale/index.ts b/src/components/datepicker/locale/index.ts index 9b1e007..b2cc998 100644 --- a/src/components/datepicker/locale/index.ts +++ b/src/components/datepicker/locale/index.ts @@ -736,10 +736,10 @@ const zh_TW = (): ILocale => { const cs = (): ILocale => { const langName = 'Czech'; - const monthFullName = ['Leden', 'Únor', 'Březen', 'Duben', 'Smět', 'Červen', + const monthFullName = ['Leden', 'Únor', 'Březen', 'Duben', 'Květen', 'Červen', 'Červenec', 'Srpen', 'Září', 'Říjen', 'Listopad', 'Prosinec']; - const shortName = ['Led', 'Úno', 'Bře', 'Dub', 'Smě', 'Čen', - 'Čec', 'Srp', 'Zář', 'Říj', 'Lis', 'Pro']; + const shortName = ['Led', 'Úno', 'Bře', 'Dub', 'Kvě', 'Čvn', + 'Čvc', 'Srp', 'Zář', 'Říj', 'Lis', 'Pro']; const days = ['Ne', 'Po', 'Út', 'St', 'Čt', 'Pá', 'So']; const daysNames = ['Neděle', 'Pondělí', 'Úterý', 'Středa', 'Čtvrtek', 'Pátek', 'Sobota']; const rtl = false;