DEV Community

Discussion on: React Native Internationalization with i18next

Collapse
 
canrau profile image
Can Rau

Thanks for the great write-up πŸ™Œ

If anyone ever runs into

i18next::pluralResolver: Your environment seems not to be Intl API compatible, use an Intl.PluralRules polyfill. Will fallback to the compatibilityJSON v3 format handling
Enter fullscreen mode Exit fullscreen mode

At least on Android (haven't tested iOS yet) I installed

npm install intl-pluralrules
Enter fullscreen mode Exit fullscreen mode

and imported it in the first line of i18n.config.ts as

import "intl-pluralrules"
Enter fullscreen mode Exit fullscreen mode