Localisation
How to support localisation in your app
Last updated
How to support localisation in your app
If you are supporting multiple languages, you may also want to specify which language to use in your application. You can do so through the Project using the following snippet:
project.setCurrentLanguage("en")project.setLocale(context = this, Locale.UK)import { getProject } from "@monterosa/sdk-interact-kit";
const project = await getProject();
project.locale = 'en';Read through our localisation guide to learn how to setup multiple languages in Studio
Last updated

