Migrating to gt-next
Migrating from another i18n library to gt-next
Overview
This guide will walk you through internationalizing your existing Next.js app using gt-next
as a stand-alone i18n library.
This guide can also be used to help you migrate from another i18n library to gt-next
.
All translations are stored in your project's repository and are managed by you. Furthermore, you bring your own translations. This means you won't have to add API keys.
If you would like to automatically generate translations for your JSON files, please refer to the CLI tool.
How it works
Translations can live in JSON files called "dictionaries" (en.json
, fr.json
, etc.).
The keys are used as references, and the values are the translated content:
Translations are then referenced in your app with the useDict()
hook and getDict()
function:
Note: Because these translations are managed by you, you will need to update them manually as your app evolves. That means each time you add or change content, you will need to update your translation files.
Consider using the CLI tool
if you are interested in automating this process.
Setup
1. Enable translations
Use the withGTConfig()
plugin to set up your Next.js app i18n behavior.
2. Add the dictionary loader file
This loadDictionary()
is responsible for loading your translations.
All translations are stored in nested JSON files called dictionaries.
Here, we specify that our translation files are stored in the /public/dictionaries/
directory.
3. Wrap your app in a <GTProvider>
Wrap your app in a <GTProvider>
to enable translation context.
This allows you to access translations in client-side components.
4. Create your translation files
Your translation files should be stored in the ./public/dictionaries
directory.
Each file should be named after the locale it represents, e.g. en.json
, fr.json
, etc.
Then add the corresponding French dictionary translation files:
5. Use your translations!
You can now access your translations with useDict()
and getDict()
.
Tip: For more information on dictionary syntax, such as inserting variables, see the dictionary reference.
Compatibility
This guide helps you migrate from another i18n library to gt-next
. The dictionary format is generally compatible with other libraries.
Our dictionaries support variables, dates, and number interpolation. See the dictionary options for more information.
However, if your project is using complex syntax such as plurals or branches, you will need to convert those to the gt-next
syntax.
See the Branching Components page for more information on the gt-next
syntax.
Notes
- Use
gt-next
to manually manage translations in your project. - Translations are stored in JSON files called "dictionaries" (
en.json
,fr.json
, etc.). - Use
useDict()
andgetDict()
to access your translations.
Next steps
- For more information on dictionary syntax, see the dictionary reference.
- Consider using
the translate command
if you are interested in automating the translation process.