I am translating an app in Kotlin using two different files of strings but in arrayListOf there are string like this:
var language = arrayListOf<String>(
"Profile Settings",
"About Us",
"Rate Us",
"Language",
"Push Notification",
"Terms of Service",
"Privacy Policy",
"Help (FAQ)",
"Support"
)
i want to change it to be responsive to the language chosen for example:
var language = arrayListOf<String>(
"@strings/Profile Settings",
)
is it possible to do it from arrayListOf? or there is another way to do it?