Dear Struts 2 and JSP experts,
I can't figure out how to display on the same page a resource bundle key several time but with different locales.
Resource Bundles:
global_fr.properties
#Global messages
global.label = Texte en Français
global.properties
#Global messages
global.label = Text in English
Expected result:
<table>
<tr>
<td>Texte en Français</td>
<td>${param.label.fr}</td>
</tr>
<tr>
<td>Text in English</td>
<td>${param.label.en}</td>
</tr>
</table>
What is the best way to handle this use case with Struts 2 or JSTL ?
Thanks for your help,
Bertrand