Struts2 w/freemarker and internationalization

2012-02-29 Thread Tom Hjellming
I'm trying to internationalize a simple Struts2-based webapp that uses Freemarker as the view technology. The usage of freemarker templating pulling values from the Action object is working fine. But when I try to leverage Struts2's TextProvider capability via getText(), it doesn't work. My

Re: Struts2 w/freemarker and internationalization

2012-02-29 Thread Tom Hjellming
Thanks Josep - that works. I thought the ${} notation was equivalent to the <@s> form - but I guess not. thanks, Tom On 2/29/12 12:16 PM, Josep GarcĂ­a wrote: Try with: <@s.text name="welcome.message"/> Cheers, Josep 2012/2/29 Tom Hjellming I'm trying t