We have an application in which we have support for three languages (Dutch, English and German).
The language can be set in the properties of the site.
In the frontend this all seems te working fine, however in tollium we are running into some issues.
Inside
MACRO NEW() function of the WebDesign we have the following code which sets the language:
```
this->languagecode := this->sitesettings.languagecode ?? this->languagecode;
SetTIDLanguage(this->languagecode);
```
This piece of code looks at the languagecode property that we can set in the properties of the site.
The problem that we are running into is that in, for example the formeditor, the editor show some parts in the language of the tolliumuser, and other parts are set in English. The language of the shown text is inconsistend in various components in tollium.
In the image below the language of the app is set to Dutch, but the language of the tollium user is set to English.
Is there any other way that i can go about this?
