Expo
Managed & bare
React Native CLI
Full support
react-i18next
Integration
react-native-localize
Detection
npm install @intlpullhq/react-native react-i18next i18next
import { IntlPull } from '@intlpullhq/react-native';
import i18n from 'i18next';
IntlPull.init({
projectId: 'your-project-id',
i18n: i18n,
});import { useTranslation } from 'react-i18next';
function Welcome() {
const { t } = useTranslation();
return (
<Text>{t('welcome.title')}</Text>
);
}Update translations without app store releases. Works on iOS and Android.
First-class Expo integration. Works with Expo Go and bare workflow.
Works with react-i18next, the most popular i18n library for React Native.
Automatic locale detection from device settings with react-native-localize.
Update translations instantly without waiting for app store review. Your users get new translations as soon as you publish them.