I want to look different image or text in different watch languages, is there a way?
ex) (eng)Steps → (kr)걸음수
I think the only way currently possible is to create multiple text elements with opacity = 0 and use this tag expression
Steps
100*!([LANG_LOC]=="ko_KR")
… this is for all languages except Korean
걸음수
100*([LANG_LOC]=="ko_KR")
… this is for Korean language
3 Likes
Thank you . It helped me a lot
In case of Text component,
([LANG_LOC]=="ko_KR"?"걸음수":"Steps")
could be an efficient way.
3 Likes