moqui-framework
moqui-framework copied to clipboard
ERROR Localization for root title menu
When I localize the menu:

But when I expand menu, I get the following error:

The menu at the root is always the default (English)
Solution: Patch file: ScreenRenderImpl.zip
in: moqui-framework\framework\src\main\groovy\org\moqui\impl\screen\ScreenRenderImpl.groovy
Change: String menuTitle = curSsi.menuTitle ?: curScreen.getDefaultMenuName()
To: String menuTitle = curSsi.menuTitle ? ec.resource.expand(curSsi.menuTitle, "") : curScreen.getDefaultMenuName()

@minhOlbius Instead of creating a patch, please create a PR :slightly_smiling_face: