Start translating your app into every language in under 5 minutes.
<TranslationProvider />
component enables the automatic translation of your app’s text inside of other components. Import it into your codebase by adding import { TranslationProvider } from "@lexiconjs/react"
at the top of your entry file and then wrap your app with it.PUBLISHABLE_KEY
with the key you found in your dashboard.<TranslatedText />
component. It will detect the user’s locale via their device settings and generate a translation in real time. Afterward, it stores the translation in a local cache to ensure everything stays as fast as possible.<Text />
component from whatever component library you’re using into a custom component so that you don’t need to include <TranslatedText />
everywhere.See the TranslatedText documentation for more details.