loading...empty;done;/locale-settings/:-uriManaging Locale Settings | iNET.elastic Dev Docs

Managing Locale Settings

A locale is a set of language and cultural rules, which define preferences that you want to see in your interface and applications. It covers aspects such as language for messages, different character sets, lexicographic conventions, and so on. Below, we’ll overview how to view and change the locale settings on your containers.

1. By default, all the platform-managed templates are provided with English language preferences. You can view the current locale settings on the container using the following command (e.g. can be run via Web SSH):

1
locale -a

container default locale settings

2. To add a new language support, the localedef tool can be used:

1
sudo localedef -i {language}_{country} -f {codeset} {language}_{country}.{codeset}

localedef to add new locale

here:

  • {language}_{country} - provides language and country code

    Tip: Check the list of the locales available for generation by executing the ls /usr/share/i18n/locales command.

  • {codeset} - sets the character encoding identifier (e.g. UTF-8)

3. Verify the new locale addition by checking the list of all supported ones:

1
locale -a

list locale settings

As you can see, the new language was added and can be used by your applications.

What’s next?