Change the Language in Factoryinsight
This page describes how to change the language in Factoryinsight, in order to
display the returned text in a different language.
less than a minute
You can change the language in Factoryinsight if you want to localize the returned text, like stop codes, to a different language.
Before you begin
You need to have a UMH cluster. If you do not already have a cluster, you can create one by using the Management Console.
Access the database shell
From the Pod section in UMHLens / OpenLens, click on united-manufacturing-hub-timescaledb-0 to open the details page.
Click the Pod Shell button to open a shell in the container.
Enter the postgres shell:
psql
Connect to the database:
\c factoryinsight
Change the language
Execute the following command to change the language:
INSERT INTO configurationtable (customer, languagecode) VALUES ('factoryinsight', <code>) ON CONFLICT(customer) DO UPDATE SET languagecode=<code>;
where <code>
is the language code. For example, to change the language to
German, use 0
.
Supported languages
Factoryinsight supports the following languages:
Language | Code |
---|---|
German | 0 |
English | 1 |
Turkish | 2 |
What’s next
Last modified April 17, 2023: build: version 0.9.13 (6cb0a01)