Fix Locale.ROOT case.

This commit is contained in:
Christian P. MOMON 2013-09-17 13:35:30 +02:00
parent 4061a55e2d
commit eb6d24d913

View file

@ -161,7 +161,7 @@ public class TranslatorPresenter implements Presenter
//
String language;
if (locale == null)
if ((locale == null) || (locale.getLanguage().length() == 0))
{
language = null;
}