Prezados,
Estou tomando uma surra para utilizar a internacionalização no struts.
Dentro do web.xml configurei:<taglib>
<taglib-uri>html</taglib-uri>
<taglib-location>/WEB-INF/struts-html.tld</taglib-location>
</taglib>
<message-resources null="false" parameter="ApplicationResources"/>
Dentro do WEB-INF tenho 2 arquivos:
:arrow: ApplicationResources.properties
:arrow: ApplicationResources_pt_BR.properties
bt.salvar=Salvar
<%@ taglib uri="bean" prefix="bean" %>
<html>
<head>
<title>Teste</title>
</head>
<body bgcolor="#FFFFFF">
<bean:message key="bt.salvar" />
</body>
</html>
E quanto executo o .jsp vejo a seguinte mensagem na tela:
???pt_BR.bt.salvar???
Alguem sabe onde eu possa estar errando?