Add Locale management.
This commit is contained in:
parent
6d78ebb0e6
commit
4061a55e2d
1 changed files with 25 additions and 0 deletions
|
@ -269,6 +269,31 @@ public class TranslatorPresenter implements Presenter
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String toString(final Locale locale) throws Exception
|
||||||
|
{
|
||||||
|
String result;
|
||||||
|
|
||||||
|
//
|
||||||
|
String language;
|
||||||
|
if (locale == null)
|
||||||
|
{
|
||||||
|
language = null;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
language = locale.getLanguage();
|
||||||
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
result = toString(language);
|
||||||
|
|
||||||
|
//
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue