Compare commits
No commits in common. "fc3bea7f761a0821951f23d3b2114c265a13ef4a" and "e67e01640ae3183937f887d40f17fd3fb0a23884" have entirely different histories.
fc3bea7f76
...
e67e01640a
@ -8,16 +8,6 @@ const vite_url = import.meta.env.VITE_URL;
|
||||
const options = {
|
||||
order: [ 'querystring', 'cookie', 'localStorage', 'sessionStorage', 'navigator', 'htmlTag'],
|
||||
caches: [],
|
||||
convertDetectedLanguage: (lng) => {
|
||||
const supportedLngs = ['en', 'fr'];
|
||||
const languagePart = lng.split('-')[0];
|
||||
|
||||
if (supportedLngs.includes(languagePart)) {
|
||||
return languagePart; // Manually return 'en' from 'en-US'
|
||||
}
|
||||
|
||||
return lng;
|
||||
},
|
||||
}
|
||||
|
||||
i18n
|
||||
@ -32,12 +22,8 @@ i18n
|
||||
// init i18next
|
||||
// for all options read: https://www.i18next.com/overview/configuration-options
|
||||
.init({
|
||||
fallbackLng: {
|
||||
'fr-FR': ['fr'],
|
||||
default: ['en']
|
||||
},
|
||||
supportedLngs: ['fr', 'en'],
|
||||
nonExplicitSupportedLngs: true,
|
||||
fallbackLng: 'fr',
|
||||
debug: vite_url.startsWith('http://localhost'),
|
||||
interpolation: {
|
||||
escapeValue: false, // not needed for react as it escapes by default
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user