Description
Could you please add this to net.sf.click.util.Format?
public String message(String pattern, Object arguments)
{ return MessageFormat.format(pattern, arguments); }public String message(String pattern, Object[] arguments) { return MessageFormat.format(pattern, arguments); }
Usually I extends Format as MyFormat and add this.
I use this for ${format.message($pattern, $args)} in Velocity.