You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 18, 2023. It is now read-only.
Note: if you do this in an initializer and use FastBoot, you probably want to use an instance-initializer:
// app/instance-initializers/i18n.jsexportdefault{name: 'i18n',initialize: function({ container }){container.lookup('service:i18n').setLocale(calculateLocale());}}functioncalculateLocale(){// whatever you do to pick a locale for the user:returnnavigator.language||navigator.userLanguage||'en-UK';}