Internationalization (i18n) & Localization: Translating UI Bakery Apps

Here’s how you can add translations and language selectors to your app👇

In this example, we’ll add the possibility to switch to German in the app.

  1. Start by navigating to the Custom code tab and specifying the following code to connect the i18n JS library:
<script src="https://cdnjs.cloudflare.com/ajax/libs/i18next/24.2.1/i18next.min.js"></script>
  1. Create a new action of the JavaScript Code type (we’ll call it changeLanguage) and specify the following code:
window.i18next.changeLanguage({{params.lang}})
  1. Next, create another action (we’ll call it initTranslation) that will initialize all the translations and choose the default language:

a. First step - add a JavaScript action step with the following code:

window.i18next.init({
  resources: {
    en: {
      translation: {
        'english': 'English',
        'german': 'German',
        'welcome': 'Welcome!',
        'total': 'There are {{{{total}}}} users in total'
      },
    },
    de: {
      translation: {
        'english': 'Englisch',
        'german': 'Deutsch',
        'welcome': 'Willkommen!',
        'total': 'Es gibt insgesamt {{{{total}}}} benutzer'
      },
    },
  },
});

b. Second step - add an Execute Action step, select the changeLanguage action, and specify { lang: 'en' } in the Custom action params.

  1. Navigate to the App triggers section in the right side panel and assign the initTranslation action to the On App Load trigger.

The Delay actions and show loader checkbox must be selected - the app will wait until this action is executed.

  1. Add a Select component to the working area and add the languages you need to the Options field, for example:
[
  {
    "value": "en",
    "title": {{window.i18next.t('english')}}
  },
  {
    "value": "de",
    "title": {{window.i18next.t('german')}}
  }
]
  1. Next, navigate to the component’s Triggers section and assign the changeLanguage action to the On Change trigger.

  2. Click to expand the Action Arguments field next to the action here and add the following parameter:

{
  lang: {{value}}
}
  1. Finally, add translations anywhere you need to the text by using the window.i18next.t() function. In our example here, we’ve added translations to the Heading components:
  • {{window.i18next.t('welcome')}}

  • {{window.i18next.t('total', { total: ui.table.value.length })}}

Done! Now when you select a different language in the Select component, your app content will be translated automatically.

1 Like

Hi @Kate,

Awesome integration of i18next! Literally needed this today, delighted you posted it.

But there’s still an issue with localization. Some components display text which is not user controlled, like the item amount in the footer of tables, grid-layouts, etc. or the text of paginators.

image

Will we also be able to use localization for texts like these in the future?

1 Like

Hi @Max

Glad to know you found it useful!

As far as I’m aware, we are thinking about the localization possibilities in the future, however, no ETAs are there yet. Once we have anything planned, I’ll let you know.

1 Like