mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-09 02:45:05 +01:00
use better kotlin syntactic sugar
This commit is contained in:
parent
f61f0305a9
commit
47c78fb62f
@ -18,8 +18,7 @@ object LocaleHelper {
|
||||
return when (lang) {
|
||||
SourcePresenter.LAST_USED_KEY -> context.getString(R.string.last_used_source)
|
||||
SourcePresenter.PINNED_KEY -> context.getString(R.string.pinned_sources)
|
||||
"" -> context.getString(R.string.other_source)
|
||||
"other" -> context.getString(R.string.other_source)
|
||||
"","other" -> context.getString(R.string.other_source)
|
||||
"all" -> context.getString(R.string.all_lang)
|
||||
else -> getDisplayName(lang)
|
||||
}
|
||||
@ -34,7 +33,6 @@ object LocaleHelper {
|
||||
if (lang == null) {
|
||||
return ""
|
||||
}
|
||||
|
||||
val locale = if (lang.isEmpty()) {
|
||||
LocaleListCompat.getAdjustedDefault()[0]
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user