Managing Locale Settings
This guide has been reviewed and reformatted for Ruk-Com Cloud PaaS. Screens may vary slightly by platform version.
Click or tap a screenshot to view it at its original size.
Objective
This guide explains how to use Managing Locale Settings on Ruk-Com Cloud PaaS, with ordered procedures and practical verification points.
Before you begin
- Sign in with an account permitted to manage the relevant environment.
- Confirm the target environment, region and resources before saving changes.
- Create a backup or rollback plan before changing a production system.
A locale is a set of language and culture rules that determine the settings you want to see in your interfaces and applications. It also covers aspects such as language for messages. Various character sets Dictionary and other conventions Below we provide an overview of how to view and change the language settings in your container.
1. When you start managing templates, the English language setting will be provided. You can see the settings.localecurrent file on the container by using the following command. (Can be run throughWeb SSH):
locale -a

2. In order to add supported languages you can use the widget.localedef:
sudo localedef -i {language}_{country} -f {codeset} {language}_{country}.{codeset}

where:
- {language}_{country}- Specify language and country code
Tips:Check the list of available locales for the new version by typing the commandls /usr/share/i18n/locales
- {codeset}- Set the character encoding specifier (e.g. UTF-8)
3. Verify adding a new locale by checking all supported entries:
locale -a

As you can see New languages are added and your application can use them.