Add French language (#1924)

* French translation file creation

* Add French language
This commit is contained in:
Ezmana
2025-06-09 15:55:12 +02:00
committed by GitHub
parent 783fa3286c
commit 5e9a73645b
3 changed files with 244 additions and 0 deletions
+2
View File
@@ -1,5 +1,6 @@
import en from './locales/en.json';
import uk from './locales/uk.json';
import fr from './locales/fr.json';
export default defineI18nConfig(() => ({
legacy: false,
@@ -7,5 +8,6 @@ export default defineI18nConfig(() => ({
messages: {
en,
uk,
fr,
},
}));