Currently, the user interface (noui, gui) has a caption for each message. However, the caption has many issues:
- It is always hard-coded to the empty string.
- This is confusing and tedious when reading or maintaining the code.
- It is redundant, because
nouiwill ignore the caption and set the logging prefix (error, warning, info) based on thestyle. - The gui does prefer to set the title based on the caption, but since it the caption is always empty, the fallback will always be used.
Fix all issues by removing it.