Unable to translate if the 'sys_ui_message' if the key has '\n' it from VA Designer.Issue This article talks about translation not working if the 'sys_ui_message' if the key has '\n' it.ReleaseRomeCauseThis is a known behavior of the product and it's working as expected.ResolutionThe gs.getMessage call sends the text correctly.To get a new line to work in scriptable form, you need to add another escape character in the script. For example : Suppose if the sys_ui_message has the key with 'hello \n world' the script portion to get a hit on this key needs to be 'gs.getMessage('hello \\n world');This will hit that desired 'sys_ui_message' and this is not designer behavior but the platform.The same behavior is expected when running in background scripts on the platform. gs.getInfo(gs.getMessage('hello \\n world'))