> try <message-resources > parameter="com/myapp/struts/MessageResources"/>
This is right. The name of a resource bundle, should not include the locale suffix. Actually, a resource bundle, contains several resource files which have the same base name and different suffix for each locale. For more information, see: http://download.oracle.com/javase/6/docs/api/java/util/ResourceBundle.html > and make sure your locale is "es_ES" and not just "es" (not sure if it > matters, but just to be on the save side) It matters. When user locale is [es_ES], the resource locale can be used should be (in the priority order): (1)es_ES or (2)es or (3)NONE When user locale is [es], the resource locale can be used should be (in the priority order): (1)es or (2)NONE Which means, resource locale [es_ES] can not be used for user locale [es] --------------------------------------------------------------------- To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h...@struts.apache.org