summaryrefslogtreecommitdiffstats
path: root/client/lib/i18n.js
blob: 34a789e196e0ee14a475d5979bb973bb315890d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// We save the user language preference in the user profile, and use that to set
// the language reactively. If the user is not connected we use the language
// information provided by the browser, and default to english.

Meteor.startup(() => {
  Tracker.autorun(() => {
    const currentUser = Meteor.user();
    let language;
    if (currentUser && currentUser.profile && currentUser.profile.language) {
      language = currentUser.profile.language;
    } else {
      language = navigator.language || navigator.userLanguage;
    }

    if (language) {
      TAPi18n.setLanguage(language);
      T9n.setLanguage(language);
    }
  });
});