Add missing languages in settings (#1275)

This commit is contained in:
paronos 2018-02-26 08:47:36 +01:00 committed by Bram van de Kerkhof
parent f35c15f7d2
commit e3ab90042d

View File

@ -29,8 +29,8 @@ class SettingsGeneralController : SettingsController() {
listPreference {
key = Keys.lang
titleRes = R.string.pref_language
entryValues = arrayOf("", "ar", "bg", "de", "en", "es", "fr", "id", "it", "lv", "ms",
"nl", "pl", "pt", "pt-BR", "ru", "vi")
entryValues = arrayOf("", "ar", "bg", "bn", "de", "en", "es", "fr", "hi", "hu", "id",
"it", "ja", "ko", "lv", "ms", "nl", "pl", "pt", "pt-BR", "ro", "ru", "vi")
entries = entryValues.map { value ->
val locale = LocaleHelper.getLocaleFromString(value.toString())
locale?.getDisplayName(locale)?.capitalize() ?:
@ -223,4 +223,4 @@ class SettingsGeneralController : SettingsController() {
}
}
}