23 lines
744 B
TypeScript
23 lines
744 B
TypeScript
import i18n from 'i18next';
|
|
import { initReactI18next } from 'react-i18next';
|
|
import LanguageDetector from 'i18next-browser-languagedetector';
|
|
import HttpApi from 'i18next-http-backend';
|
|
|
|
i18n
|
|
.use(HttpApi) // Loads translations from your /public/locales folder
|
|
.use(LanguageDetector) // Detects user language
|
|
.use(initReactI18next) // Passes i18n down to react-i18next
|
|
.init({
|
|
supportedLngs: ['en', 'fa'], // Supported languages
|
|
fallbackLng: 'fa',
|
|
detection: {
|
|
order: ['localStorage', 'cookie'],
|
|
caches: ['localStorage', 'cookie'],
|
|
lookupLocalStorage: 'language', // The key to use in localStorage
|
|
},
|
|
ns: ['common'], // Add new namespaces here
|
|
defaultNS: 'common',
|
|
});
|
|
|
|
export default i18n;
|