Multi language feature

Is there translation file so that we can use it for multi language ?

If we want to make a multi lingual app, how do we achieve this ?

There is no easy way. We have no built in i18n support. At the moment you will have to use conditional data everywhere you use text.

1 Like

Can you provide a sample app on how to do it ?

If we have 300 texts and 5 languages that need to be translated, how is the performance of the app ?

have a global data called language.
then have all the texts as conditional data, condition on that “language” global data.
have a way setting that global data (i don’t know how you want to do that though)
Performance will be just fine.

1 Like