Hi,
Is there any way to detect which language the watch is in?
Thanks,
Paul
<!-- resources/strings.xml -->
<resources>
<strings>
<string id="Language">eng</string>
</strings>
</resources>
<!-- resources-rus/strings.xml -->
<resources>
<strings>
<string id="Language">ru</string>
</strings>
</resources>
<!-- resources-fre/strings.xml -->
<resources>
<strings>
<string id="Language">fr</string>
</strings>
</resources>
function get_language() {
return Ui.loadResource(Rez.Strings.Language);
}