I have Java enum type and I would like to get from myEnum.name()
the associated i18n value.
I tested that :
<h:outputLabel value="#{rb.#{login.myEnum}}" />
(rb
is my i18n variable defined in JSF faces-config.xml)
but it doesn't work.
I want EL expression that will be converted into #{rb.KEY1}
and after key1
or clé1
or schlüssel1
etc if the locale selected is English, French or German.
How can I do it?