Language Menu

Last modified: February 23, 2024

1 Introduction

Mendix is designed so that it is easy to present the same information to users who have different language requirements. To support this, all texts that are presented to the end-user can be translated to different languages.

These translatable texts include the following:

2 Working in the Currently Selected Language

You can see the language you are currently working in at the bottom right of the screen.

Language Status

When you have multiple languages set up in your app, you can choose a language to work in by doing one of the following:

  • selecting it from the Language > Current Language menu
  • using the drop-down in the lower-right corner of Studio Pro’s main window
  • using the Ctrl+L or Ctrl+Shift+L keyboard shortcut combinations, which cycle through the configured languages

When working in a language which is not the default, you can identify texts that have not been translated yet. These show the text in the default language between angle brackets. For example, <Name>. You can replace the text with the appropriate translation, and it will be replaced for the currently selected language.

If you edit your app to add new widgets while not in the default language, any new translatable texts for those widgets will be added to the current language. The text in the default language will either be left blank or will have the placeholder text for the widget.

All untranslated texts will be displayed in the default language when you run the application.

English (US) and Dutch translations are added by default even if you do not use these languages in your app. When you add a new element (for example, a button), it will get an English and Dutch translation in the system, but you will not see it until you add those languages. You may want to delete all English and Dutch translations if you do not plan to have your app in these languages. Before deleting English (US), make sure you have another default language set up. For more information on how to delete translations, see the Delete section in Language Operations.

If you plan to export your module/app as an add-on/solution, the best practice is to remove default Dutch translations to avoid confusion for your customers in case they plan to translate their app to Dutch. For more information, see the Exporting Add-on Modules and Solutions section in Configuring Add-on and Solution Modules for Publishing.

3 The Language Menu

The Language menu allows you to manage additional languages and translations for your app. This includes features to help you to translate a text in all places where it appears with a single change instead of having to change each occurrence individually:

Language Menu

3.1 Menu Items Overview

The Language menu items are described in the table below:

Menu Item Description Shortcut Key
Current Language Choose the current language from one of the languages set up in Language Settings…. None
Select Previous Language Choose the previous language in the list of languages chosen in Language Settings…. Ctrl + Shift + L
Select Next Language Choose the next language in the list of languages chosen in Language Settings…. Ctrl + L
Language Settings… Choose which languages are supported by the app and configure date and time settings. None
Batch Replace… Change all occurrences of chosen translatable texts in the current language where they are identical. None
Batch Translate… Add and edit translations from a selected source language to a selected target language None
Language Operations… Manipulate (for example, copy) translations between languages. None

4 Setting the End-User’s Language

The language which is displayed to the end-user is determined by the Language object which is associated with the User object for the current end-user via the association User_Language.

If the associated language is not one of those set in the app, then the end-user will see pages in the default language.

If the end-user is not associated with a language, for example they are an anonymous user, the language used depends on the user’s browser or operating system settings. If the language requested is not present up in the app, then the app’s default language will be used. The requested language will be as follows:

  • for web apps – the first language which matches a language set in the app based on the browser’s preferred order of languages
  • for mobile apps – the operating system language
System Domain Model for User and Language

If you allow end-users to change their display language within the app, the changes will not be applied immediately. This is because the translatable texts for the app are already set to the end-users original language.

There are two options to ensure that the language is changed:

  1. Ask the end-user to do something manually

    • sign out and sign in again
    • use their browser’s refresh command
  2. Force Mendix to reload the page – for example by doing the following:

    1. Add the platform supported widget HTML / JavaScript Snippet to your app.
    2. Create a pop-up page.
    3. Place the HTMLSnippet widget on the pop-up page.
    4. Add the JavaScript content mx.reloadWithState(); to the widget.
    5. Open your new pop-up page from a microflow when you want to switch the user’s language.
    System Domain Model for User and Language

5 Read More