# gt-react: General Translation React SDK: Standalone i18n URL: https://generaltranslation.com/en-GB/docs/react/concepts/stand-alone.mdx --- title: Standalone i18n description: How to use gt-react as a standalone i18n library --- {/* AUTO-GENERATED: Do not edit directly. Edit the template in content/docs-templates/ instead. */} ## Overview `gt-react` has feature parity with many other i18n libraries. This means you can use `gt-react` as a standalone i18n library, without using the General Translation platform. To do this, don't provide any environment variables such as `GT_API_KEY` or `GT_PROJECT_ID`. See our [migration guide](/docs/react/guides/migration) for more information on migrating from another i18n library to `gt-react`. ## Trade-offs Using `gt-react` as a standalone i18n library has some trade-offs. ### Manual translation You'll need to translate your app manually. If you use our platform, we automatically translate your app for you. If your project only uses [dictionaries](/docs/react/guides/dictionaries) with the `useTranslations` function, you'll need to translate your dictionaries manually, as you would with any other i18n library. Make sure you load your translated dictionaries with the [`loadDictionary`](/docs/react/api/config/load-dictionary) function. *** ### Manual string translation If your project uses inline translations with the [``](/docs/react/guides/t) component or the [`useGT`](/docs/react/guides/strings) function, you'll also need to translate your strings manually. Since inline translations do not use keys, the CLI tool provides a command: [`gt generate`](/docs/cli/generate) that automatically generates template files for your project. You just need to edit the template files with your translations for each language. Make sure you load your translated strings with the [`loadTranslations`](/docs/react/api/config/load-translations) function. ### No development translations