1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-15 21:08:57 +00:00
trezor-wallet/src/utils/l10n.js

12 lines
427 B
JavaScript
Raw Normal View History

import { LANGUAGE } from 'config/app';
export const getInitialLocale = (defaultLocale = 'en') => {
const browserLocale = navigator.language.split('-')[0];
if (LANGUAGE.some(e => e.code === browserLocale)) {
// Array of supported languages contains the locale we're looking for
return browserLocale;
}
// if browser lang is not supported return en as default locale
return defaultLocale;
2019-03-04 12:33:02 +00:00
};