Internationalisation of segmented control

I am attempting to internationalise an iOS app.
I can use me.text = constant (with different text according to language) for other fields, but am a bit unsure about how to use this approach with a segmented control.

yeah dont do this stuff manually at runtime
where possible use a localized string (dynamic constant) and in the property in the inspector that currently holds the text you should put # followed by the constant name
Xojo will make it so you dont have to do anything more than that

BRILLIANT!
Thanks - that fixed the issue I had and is much simpler.
I couldn’t find that in hte Xojo docs, although I assume it is there somewhere.