var items = [ "ABC", "123", "XYZ" ];
var opt = {
initialValue: items[0],
items: items
};
this._info.SetProperties([
new SDK.PluginProperty("combo", "gamemodule", opt)
]);
In the editor is showing [???] in combo values, because there is no translation. BUT: I don't want translatie the properties, because the list can differ (on construct restart).
How can i disable translation for a specific plugin oder context? I want to see the values ABC, 123, XYZ in the combo list. No [???] ;)
Thank you,
Patrick