I am migrating the code from Struts1 to Struts2 where I have the following scenario:
<html:radio property="case" value="A" onclick="radioClickA();"/>
<bean:message key="label.A"/>
<html:radio property="case" value="B" onclick="radioClickB();"/>
<bean:message key="label.B"/>
<html:radio property="case" value="C" onclick="radioClickC();"/>
<bean:message key="label.C"/>
Since in Struts2 we have to add all the above three radio buttons in one list, how can I add the localized label for each radio button ?