Update translations (from Crowdin)

This commit is contained in:
Alexander Bakker 2020-08-05 12:00:08 +02:00
parent 718d575a59
commit e5d162be9b
19 changed files with 618 additions and 191 deletions

View file

@ -128,7 +128,12 @@ public class Preferences {
}
}
return new Locale(lang);
String[] parts = lang.split("_");
if (parts.length == 1) {
return new Locale(parts[0]);
}
return new Locale(parts[0], parts[1]);
}
public boolean isBackupsEnabled() {