Is it possible to set preferred language in a manifest
Is it possible to set the preferred language to English in a manifest e.g. with a <SystemSetting> tag?
Product version: IRIS 2022.1
$ZV: IRIS for UNIX (Ubuntu Server LTS for ARM64 Containers) 2022.1 (Build 152U) Fri Mar 18 2022 01:12:07 EDT
Discussion (1)0
Comments
The method you want to change the language (locale or NLS) is Config.NLS.Locales -- Install()
You can see the available locales at this portal page: [System Administration] > [Configuration] > [National Language Settings] > Locale Definitions
So to put that into a manifest:
<Namespace Name="%SYS" Create="no">
<Log Text="Changing the Locale" Level="0"/>
<Invoke Class="Config.NLS.Locales" Method = "Install" CheckStatus="true">
<Arg Value="danw"/>
<!-- danw is the Danish Locale, Replace with Desired -->
</Invoke>
</Namespace>