Update OsmandApplication.java

This commit is contained in:
vshcherb 2015-11-09 17:00:13 +01:00
parent eb45bb84dd
commit c6a301713f

View file

@ -720,7 +720,7 @@ public class OsmandApplication extends Application {
Field f = R.string.class.getField("lang_"+l);
if (f != null) {
Integer in = (Integer) f.get(null);
return app.getString(in);
return getString(in);
}
} catch (Exception e) {
System.err.println(e.getMessage());