Hi, I'm using locale.getDisplayLanguage(otherLocale) to get display several languages names in one locale. If i'm using the following:
Locale loc = new Locale("he","IL");
Locale loc2 = new Locale("fr","FR");
System.out.println(loc2.getDisplayLanguage(loc));
It doesn't print the french language name in Hebrew. Other locales that doesnt work are Arabic, finnish and some more. do you have any idea? is java missing some locales translations?
Thanks, Tal.