I want to translate my Turkish strings to lowercase in both English and Turkish locale. I\'m doing this:
String myString=\"YAŞAT BAYRI\"; Locale trlocale= new Lo
I think this is the problem:
Locale trlocale= new Locale("tr-TR");
Try this instead:
Locale trlocale= new Locale("tr", "TR");
That's the constructor to use to specify country and language.