I need Internationalize items for the selectOneMenu JSF component. How can it be done for the List which received from database?
<p:selectOneMenu id="action" value="#{mapBean.newAction}" style="width:150px">
<f:selectItem itemLabel="Action" itemValue="Empty"
noSelectionOption="false" />
<f:selectItems value="#{mapBean.actions}" />
</p:selectOneMenu>
For the mapBean.actions I need dinamicaly change values according selected language For now I don't have an idea how implement this.