Hello,
Imagine we are in farsi local and in a controller ,we want to load a message from english local.How we can do it?
As far as i know we can load messagees from bundle with this code :
@In
private Map<String, String> messages;
String s = messages.get("delete");
but the problem is that "s" loads from the local where Seam is,if we are in english locale ,it loads from messages_en and if we are in farsi ,it loads from messages_en.
But in code i want to load a message from farsi and englsih simultaneously.How can i do it?
Khosro.