Text has long been customizable in Xcode when creating software for Apple's platforms. Now, String catalogs make it even easier to localize your app to multiple languages. Ever since macOS shipped in ...
fun main() { val count = beerLeft() val talk = getString(R.strings.beer_message) val msg = "$count $talk" } fun beerLeft(): Int { return 42 } In strings.xml <string ...