feat: add finnish locale (#1379)

Co-authored-by: Martin Vermeer
This commit is contained in:
Daniel Roe 2023-01-22 07:19:16 +00:00 committed by GitHub
parent 331f517d75
commit 31d9308043
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 533 additions and 1 deletions

View file

@ -97,6 +97,11 @@ const locales: LocaleObjectData[] = [
file: 'id-ID.json',
name: 'Indonesia',
},
{
code: 'fi-FI',
file: 'fi-FI.json',
name: 'Suomea',
},
].sort((a, b) => a.code.localeCompare(b.code))
const datetimeFormats = Object.values(locales).reduce((acc, data) => {