open fun setAlwaysUseMessageFormat(alwaysUseMessageFormat: Boolean): Unit
Set whether to always apply the MessageFormat rules, parsing even messages without arguments.
Default is "false": Messages without arguments are by default returned as-is, without parsing them through MessageFormat. Set this to "true" to enforce MessageFormat for all messages, expecting all message texts to be written with MessageFormat escaping.
For example, MessageFormat expects a single quote to be escaped as "''". If your message texts are all written with such escaping, even when not defining argument placeholders, you need to set this flag to "true". Else, only message texts with actual arguments are supposed to be written with MessageFormat escaping.
See Also
java.text.MessageFormat