Ok, that's bearable. But another wish is more important: For multilingual support I have to change the names of the flows dynamically. Otherwise the menu-items stay in default language. But I discovered that this is still not possible at the moment. Is there any workaround?
Ah I think it is the wrong designation. I mean UI-tabs. The settings page contains a dropdown to select the language.
Depending on this selection I like to switch the text of the menu items.
Not very dynamic - but what you can do is set up environment variables outside of Node-RED (at the operating system level) eg TAB1="Recipes" etc then set the Tab to be ${TAB1} - when restarted then it will pick up those names.
Ok, that might be possible.
It would be fine, when something like "this.name = "Recipes"" inside a function node would be possible. I hope, it will be implemented in the next version
Well, it is possible with ui_control.
Connect e.g. a Inject Node with the following content:
msg.ui_control
{ "place":"This is the dynamic Placeholder" }