We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3610781 commit ce08492Copy full SHA for ce08492
app/src/main/java/com/m2049r/xmrwallet/util/LocaleHelper.java
@@ -35,7 +35,8 @@ public static ArrayList<Locale> getAvailableLocales(Context context) {
35
String[] availableLocales = context.getString(R.string.available_locales).split(",");
36
37
for (String localeName : availableLocales) {
38
- locales.add(Locale.forLanguageTag(localeName));
+ if (!localeName.startsWith("night") && !localeName.matches("v[0-9]+"))
39
+ locales.add(Locale.forLanguageTag(localeName));
40
}
41
42
return locales;
0 commit comments