Android Studio – Translating a variable in Android
Im having trouble doing a translation in my project: So I have this enum class: enum class Theme( val theme: ThemeL, val name: String, @DrawableRes val image: Int? = null, ){ THEME_1( theme = ThemeL.Theme1, humanName = "theme1 description", image…