Merge branch 'languages' into develop

This commit is contained in:
Bart
2021-01-06 19:35:04 +01:00
6 changed files with 76 additions and 4 deletions

View File

@@ -27,7 +27,7 @@ public class LocationLoader implements Loader<List<Location>> {
String selectedLanguage = context.getSharedPreferences("Settings", Context.MODE_PRIVATE).getString("Language", "nl");
String fileName = "locations";
// choose the locations.json based of the selectedLanguage
// choose the locations.json based of the selected language
if (!selectedLanguage.equals("en")) {
fileName += "-" + selectedLanguage;
}