Cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Multi language app

ANSWERED

Is it possible to make an app in several languages (English, French, ...)?

Best Answer
0 Votes
1 BEST ANSWER

Accepted Solutions

FitBit supports a number of locales which are described on this page. You can get the language selected by the user like this:

 

import { locale } from "user-settings"; 

let lang = locale.language; 

 You can make multiple files with message properties per language. One way to do this is explained in this stackoverflow answer.

View best answer in original post

Best Answer
0 Votes
1 REPLY 1

FitBit supports a number of locales which are described on this page. You can get the language selected by the user like this:

 

import { locale } from "user-settings"; 

let lang = locale.language; 

 You can make multiple files with message properties per language. One way to do this is explained in this stackoverflow answer.

Best Answer
0 Votes