I want to display the label name depending on the Locale (like English or French).
I have two properties file:
messages.properties:
customer.name=Name
messages_fr.properties:
customer.name=Nom
I have an array list in a Java class. In this list I want to store the values depending on the locale:
arraylist.add(new ListItem("CustomerName", "<s:text name="customer.name"/>"));
When I retrieve the value on jsp like this:
<s:param name="prefix" value="'CustomerName'" />
I have not implement this yet.
Am I going the right direction? Any suggestions? Thanks!