Following is the Struts code for the <s:select>
tag in my JSP file.
<s:select name="choice" list="{'Add to My List','Remove from My List','Activate','Deactivate','Print'}" theme="xhtml" cssClass="text" required="false"/>
I need to localize the list elements to French as shown below.
<s:select name="choice" list="{'Ajouter à Ma liste','Enlever de ma liste','Activer','Désactiver','Imprimer'}" theme="xhtml" cssClass="text" required="false"/>
How can I achieve this using the Internationalization and localization properties files. Regards