Localisation

How to support localisation in your app

Localise your application

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:

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

Was this helpful?