feat: french translation (#300)

Co-authored-by: Abel Derderian <derderian@abel.fr>
This commit is contained in:
Michel EDIGHOFFER 2022-12-02 21:27:58 +01:00 committed by GitHub
parent c53107f694
commit ecb61a7a30
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 209 additions and 0 deletions

View file

@ -28,6 +28,11 @@ const locales: LocaleObject[] = [
file: 'es-ES.json',
name: 'Español',
},
{
code: 'fr-FR',
file: 'fr-FR.json',
name: 'Français',
},
].sort((a, b) => a.code.localeCompare(b.code))
const datetimeFormats = Object.keys(locales).reduce((acc, key) => {