Skip to content

Instantly share code, notes, and snippets.

@naishe
Created July 21, 2020 12:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save naishe/7f23c7f387dfa0abd04b8d28dc7c0f71 to your computer and use it in GitHub Desktop.
Save naishe/7f23c7f387dfa0abd04b8d28dc7c0f71 to your computer and use it in GitHub Desktop.
Configuring i18next for React Native
import i18n, {
LanguageDetectorAsyncModule,
Services,
InitOptions,
} from 'i18next';
import {initReactI18next} from 'react-i18next';
import AsyncStorage from '@react-native-community/async-storage';
import * as RNLocalize from 'react-native-localize';
import en from './en';
import hi from './hi';
export const AVAILABLE_LANGUAGES = {
en,
hi,
};
const AVALAILABLE_LANG_CODES = Object.keys(AVAILABLE_LANGUAGES);
const languageDetector: LanguageDetectorAsyncModule = {
type: 'languageDetector',
// If this is set to true, your detect function receives a callback function that you should call with your language,
//useful to retrieve your language stored in AsyncStorage for example
async: true,
init: (
_services: Services,
_detectorOptions: object,
_i18nextOptions: InitOptions,
) => {
/* use services and options */
},
detect: (callback: (lng: string) => void) => {
AsyncStorage.getItem('APP_LANG', (err, lng) => {
//Handle error fetching stored data or no data found
if (err || !lng) {
if (err) {
console.log('Error fetching "APP_LANG" from async store', err);
} else {
console.log(
'No language is set, choosing the best available or English as fallback',
);
}
const bestLng = RNLocalize.findBestAvailableLanguage(
AVALAILABLE_LANG_CODES,
);
callback(bestLng?.languageTag ?? 'en');
return;
}
callback(lng);
});
},
cacheUserLanguage: (lng: string) => {
AsyncStorage.setItem('APP_LANG', lng);
},
};
i18n
.use(languageDetector)
.use(initReactI18next)
.init({
resources: AVAILABLE_LANGUAGES,
react: {
useSuspense: false,
},
interpolation: {
escapeValue: false,
},
defaultNS: 'common',
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment