Grégory Joseph ha scritto:
You can simply use the jstl fmt tags.
http://java.sun.com/products/jsp/jstl/1.1/docs/tlddocs/fmt/message.html
-g
Thanks Grégory,
it works..
here a piece of code:
*****************
<p>Test I18N with JSTL fmt </p>
<fmt:setBundle
basename="com.mycompany.magnolia.modules.navigation.messages"
var="navBundle" />
<p><fmt:message bundle="${navBundle}" key="dialog.test" /></p>
*****************
and the output
*****************
<p>Test I18N with JSTL fmt </p>
<p>sample text in message_en.properties</p>
*****************
Great!
Matteo
----------------------------------------------------------------
for list details see
http://documentation.magnolia.info/
----------------------------------------------------------------