22 lines
No EOL
772 B
Kotlin
22 lines
No EOL
772 B
Kotlin
package ani.dantotsu.others
|
|
|
|
import android.app.Activity
|
|
import android.content.res.Configuration
|
|
import android.content.res.Resources
|
|
import java.util.Locale
|
|
|
|
|
|
class LangSet {
|
|
companion object {
|
|
fun setLocale(activity: Activity) {
|
|
val useCursedLang = activity.getSharedPreferences("Dantotsu", Activity.MODE_PRIVATE)
|
|
.getBoolean("use_cursed_lang", false)
|
|
val locale = if (useCursedLang) Locale("en", "DW") else Locale("en", "US")
|
|
Locale.setDefault(locale)
|
|
val resources: Resources = activity.resources
|
|
val config: Configuration = resources.configuration
|
|
config.setLocale(locale)
|
|
resources.updateConfiguration(config, resources.displayMetrics)
|
|
}
|
|
}
|
|
} |