06-03-2018 05:39
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post

06-03-2018 05:39
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
Is it possible to make an app in several languages (English, French, ...)?
Answered! Go to the Best Answer.

Accepted Solutions
06-04-2018 02:35 - edited 06-04-2018 02:37
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post

06-04-2018 02:35 - edited 06-04-2018 02:37
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
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.

06-04-2018 02:35 - edited 06-04-2018 02:37
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post

06-04-2018 02:35 - edited 06-04-2018 02:37
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
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.

