Provide translations for your Enum in the page's message catalog.
For example in Page_de,properties:
A.ONE=Eins
A.TWO=Zwei
On Sun, Apr 5, 2009 at 7:21 PM, manuel aldana wrote:
> I got a java enumeration and would like to reuse the nice localization
> facilities from tapestry 5.
>
> let's say I
Use the Messages service.
Uli
Am 05.04.2009 19:21 schrieb manuel aldana:
I got a java enumeration and would like to reuse the nice localization
facilities from tapestry 5.
let's say I have an enum:
enum A{
ONE,TWO;
}
If it displays on a page I would like to have it displayed by the
langua
I got a java enumeration and would like to reuse the nice localization
facilities from tapestry 5.
let's say I have an enum:
enum A{
ONE,TWO;
}
If it displays on a page I would like to have it displayed by the
language (e.g. 'one' for en or 'zwei' for german).
For displaying it on the page