feat: Adding French language

This commit is contained in:
2026-07-05 03:07:44 +02:00
parent e590a58702
commit 3a6afc28ac
11 changed files with 696 additions and 171 deletions
+4 -1
View File
@@ -3,6 +3,7 @@ import {createRoot} from 'react-dom/client'
import './style.css'
import App from './App'
import { syncPortablePrefs } from './lib/uiPref'
import { I18nProvider } from './lib/i18n'
const container = document.getElementById('root')
@@ -14,7 +15,9 @@ const root = createRoot(container!)
syncPortablePrefs().finally(() => {
root.render(
<React.StrictMode>
<App/>
<I18nProvider>
<App/>
</I18nProvider>
</React.StrictMode>
)
})