In my jsp I want to internationalize this
bundle.default['label.days'] by passing arg0 to it as the # of days
in my messages.properties i have
label.days= {0} days
Unfortunately I can not find any example in all of the samples for 1.02
release that use bundle arguments from a jsp ...
I can do this programatically on the server side in my Action using
something like
new ActionMessage('label.days", days) but I should not be required to
do that
Struts Messages has
<bean:message key="label.welcome" arg0="John" arg1="Dilinger"/>
Shouldn't beehives Expression Language extension support arg0...argN
attributes
The BundleNode Abstract Class only Contains
getString(Key)
it Should also Contain
GetString(Key,Object[])
Does anyone know how to use the expression Language to pass in arguments
to Messages?
Michael