Is it possible to disable the arg {0} output when it is not available? Example:
messageSource.getMessage("my.message.property", new Object[]{12}, "fallback", LocaleContextHolder.getLocale());
this displays:
Child 12 Years old
now sometimes I don't have the age of the children, so my args would be:
messageSource.getMessage("my.message.property", null, "fallback", LocaleContextHolder.getLocale());
the display is now:
Child {0} Years old
Is it possible to disable the {0} on the output?