I supposed it is a quite easy question but I never receive any clear answer.
I'am currently handling the internationalization of a struts application. After a long research, i found out that I was missing something int the struts-config.xml : the message-resources.
<struts-config>
...
<message-resources parameter="my.bundle"/>
</struts-config>
I wanted to know if I need to add a per langage ? Something like :
<struts-config>
...
<message-resources parameter="my.bundle"/>
<message-resources parameter="my.bundle_en"/>
<message-resources parameter="my.bundle_it"/>
</struts-config>
or maybe struts will link the default bundle with all its versions ?