Removed hardcoded locale

This commit is contained in:
Georgy Litvinov 2021-04-09 14:54:30 +02:00
parent 085735e509
commit 5a561d987b

View file

@ -14,7 +14,7 @@ public class Localizer {
private ResourceBundle translations; private ResourceBundle translations;
private boolean isOld = false; private boolean isOld = false;
public Localizer() { public Localizer() {
currentLocale = Locale.forLanguageTag("RU");//Locale.getDefault(); currentLocale = Locale.getDefault();
translations = ResourceBundle.getBundle(resourceBundle, currentLocale); translations = ResourceBundle.getBundle(resourceBundle, currentLocale);
this.isOld = isOldJava(); this.isOld = isOldJava();
} }