feat: Czech locale (#439)

This commit is contained in:
Mikoláš Štrajt 2022-12-14 22:19:38 +01:00 committed by GitHub
parent 25b0ad2f19
commit 0f438b80cd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 264 additions and 0 deletions

View file

@ -33,6 +33,11 @@ const locales: LocaleObject[] = [
file: 'fr-FR.json',
name: 'Français',
},
{
code: 'cs-CZ',
file: 'cs-CZ.json',
name: 'Česky',
},
].sort((a, b) => a.code.localeCompare(b.code))
const datetimeFormats = Object.keys(locales).reduce((acc, key) => {