Translate() in Expression

I have a Text Area with an Expression Binding that I wish to translate from English to German. The Translate function works fine in a vacuum, but when I try to add the preceding "0=" string I get a Syntax Error. I have even tried to use the print() function, but it is unknown in Ignition? Is there a way to add a String before the Translate function in an Expression binding?

You need to use string concatenation. Either "0=" + TRANSLATE("RUNNING") + "..." or concat("0=", TRANSLATE("RUNNING"), "..."

3 Likes