Scroll Top

Internationalization in React

Getting your Trinity Audio player ready...

Internationalization in React -WTT Blogs

Technology has made the world smaller and brought us all closer. Anyone on the other side of the globe is reachable and accessible and may be interested in knowing what you do inspite of not knowing your language. This creates the requirement for localized apps which are adaptable to the needs of local languages and formats.

As per “whatis.com”,  Internationalization is the process of planning and implementing products and services so that they can easily be adapted to specific local languages and cultures, a process called localization.

In any application development, the localization enablement has become a key ask. In this blog, we will see how we can achieve internationalization(sometimes referred to as i18n for the 18 letters between the ‘I’ and the ’n’ in the word Internationalization. ) in React applications.

I18next is one of the most popular and established JavaScript frameworks to cater to complete internationalization requirements. React-i18next uses the i18next ecosystem and makes it available to React applications in the right way.

In this blog, we will use these 2 packages and see how we can implement the common internationalization requirements of content translation and localized formatting, for a React application.

Dependencies

Let’s start by building a react app using create-react-app.

We will add some basic content on the app on which we will apply localization and formatting. For this purpose, we will use semantic-ui-react, so let’s install this.

Next, let’s install the react-i18next and i18next, the internationalization related dependencies:

We will be using i18next to detect user language and load translation for which we need to install the below 2 additional dependencies.

With all the dependencies installed, next we move to configuration.

I18next configuration

Create i18n.js for the i18next configuration basic options in the src folder.

The above file should be imported in the index.js along with the semantic.min.css as below

Setting up Translations

With the configuration ready and imported in the application bundle, let’s define the translation files.

We will create a subfolder under a public folder called locales which will contain the language specific folders. In this case, we have created 2 subfolders inside locale, namely en and de to handle English and German.

Inside each language folder, define a translations.json(the default namespace if not provided as part of config) with the below structure of key-value pairs:

Using the key, the value is derived so the key(“title” here) should be the same for all other languages as shown below for german:

You can create multiple key-value pairs and multiple namespaces in the same folder which you can explicitly specify while using the translation.

By default, if no namespace is given, it uses the translation.json.

I have also created another namespace file called messages.json to showcase the capability of having multiple files and namespaces.

Putting i18next to use for translation

Now the i18next is ready and available for the application to use in two main aspects:

  1. The t function which is used to perform the translation
  2. i18n instance which is mainly used to change the language based on user interaction using the i18n.changeLanguage function.

Below listed are the different ways this can be used to translate the language content.

  1. useTranslation Hook
  2. withTranslation HOC
  3. Translation render prop

useTranslation Hook

The useTranslation Hook provided as a part of React Hooks can be used in Functional components.

The first component we define is the HeaderPart component where we will make use of useTranslation hook.

Use the hook as below which returns the t function and i18n instance :

messages are the namespace which is explicitly passed to the hook. It is an optional parameter in the absence of which the default will be taken.

Now i18n.changeLanguage function can be used to set the language.

The t function can be used to get the content defined for the key for the selected locale. t(“title”) will return the translation of the key “title” if defined for the language.

The complete HeaderPart  component code looks as below where a semantic button group is added to provide the language changing capability:

withTranslation HOC

The withTranslation higher order component also provides the t function and i18n instance as a part of props for the component. It can be imported and wrapped around the base component for the i18n specific features to be available as part of props.

You can get a local instance of the variables from the props and use it as in the earlier example.

Translation render prop

This is similar to withTranslation and gives a t function and i18n instance to work with the translation requirements. You can use it as below by providing the namespace ns parameter optionally.

In the next AccordionSample component, we will see the use of both useTranslation and Translation render prop, both provided as part of ‘react-i18next’.

Now the components can be rendered in App.js as below

With the 2 internationalised components and locale changing between en(English) to de(German), the app looks like below by default/selecting English:

The app looks like below on selecting German where the translation key-values are defined in the json file under public/locales/de(translation as provided by Google):

You can find the complete code for this project here.

Conclusion

This blog introduces you to how basic internationalization can be set up and used in React applications using react-i18next and i18next. In the next blog in this series, we will see how we can use interpolation and formatting for locale specific requirements.

References:

Related Posts

Comments (3)

People who are looking for localisation in the react i guess the below url gives more understanding if you miss anything in this blog post.

https://medium.com/@jishnu61/6-easy-steps-to-localize-your-react-application-internationalization-with-i18next-8de9cc3a66a1

I see the sample shared have two accordion views created where each accordion displays one in english and the other in German. What would be the case when i’m going to support 50 languages.

This example has a button group to enable the user to explicitly select a language from the given 2 choices(English or German). Locales(under public folder or within i18n configuration) need to set up for the translations of any number of languages we need, and we can let the language be picked from default language settings of the user which will be detected by the LanguageDetector in ‘i18next-browser-languagedetector’.
You can fork this sandbox for the blog example https://codesandbox.io/s/reacti18nextexample-fslxi and try it.

Comment to Abhilasha Sinha Cancel reply

Privacy Preferences
When you visit our website, it may store information through your browser from specific services, usually in form of cookies. Here you can change your privacy preferences. Please note that blocking some types of cookies may impact your experience on our website and the services we offer.