Multi Language
Implementing a multilingual website involves creating content in multiple languages and making sure that the appropriate language is displayed to the user based on their language preference.
How to use
Here we use i18n. The installation method is as follows below.
Step 1: Install Required Packages
The first step is to install the necessary packages. Run the following command in your terminal:
This command installs next-i18next
, which is a wrapper around i18next
, a popular internationalization library. i18next-browser-languagedetector
is an add-on package that automatically detects the user's language preference.
Step 2: Create a Configuration File
Next, create a configuration file for next-i18next
. In the root directory of your project, create a new file called next-i18next.config.js
.
In this example, we're defining three locales: English, Spanish, and French. The default locale is set to English.
Step 3: Create Language Files
Next, create a folder called public/locales
in the root directory of your project. Inside this folder, create a subfolder for each locale you defined in the previous step.
Inside each locale folder, create a JSON file for each page or component that needs to be translated. For example, if you have a Home
page and Contact
page, you would create the following files:
Here's an example of what the home.json
file might look like:
Step 4: Set Up the next-i18next
Wrapper
next-i18next
WrapperIn your _app.tsx
file, import the next-i18next
wrapper and wrap your AppComponent
with it.
Step 5: Use i18next
for Translation
i18next
for TranslationIn any component or page that needs to be translated, import the useTranslation
hook from next-i18next
and use it to translate your text.
In this example, we're using the t
function returned by useTranslation
to translate.
Step 6: Set the Language
Finally, you need to set the language of your app. You can do this by adding a language switcher component to your layout or by automatically detecting the user's preferred language.
Option 1: Language Switcher Component
If you want to let the user switch the language, you can create a component that uses the useTranslation
hook to change the language when a user clicks a button or link.
Then, you can add this component to your layout:
Option 2: Automatic Language Detection
If you want to automatically detect the user's preferred language, you can use the i18next-browser-languagedetector
package that we installed earlier.
This configuration tells i18next
to first look for a language cookie, and if there isn't one, to use the language reported by the user's browser.
Last updated