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 AnswerFitBit 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