Um, I'm not 100% certain this is implemented, actually. Sorry about that. I'll double check this evening.
If you want to raise a ticket anyway, that'll be fine. If it turns out there is a way then at the very least it would still need to be documented... Thx Dan On 29 September 2015 at 15:24, Burbach, Matthias <[email protected]> wrote: > Hi, > I am trying to translate enum values like so, but it has no effect. > > package domainapp.dom.simple; > ... > public class Item implements Comparable<Item> { > ... > > //region > item group (property) > public enum ItemGroup { > KeyUser, > Provider, > Unit > } > private ItemGroup itemGroup; > @javax.jdo.annotations.Column(allowsNull = "false") > public ItemGroup getItemGroup() {return itemGroup;} > public void setItemGroup(final ItemGroup itemGroup) {this.itemGroup = > itemGroup;} > //endregion > ... > > } > > file translations-en.po: > ... > #: domainapp.dom.simple.Item$ItemGroup#KeyUser > msgid "Key User" > msgstr "Key User" > ... > > > I am not sure if this feature exists at all or if am just using it > wrongly, there some hints out there but not very clear to me. > > Regards, > Matthias > >
