You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
951 B
25 lines
951 B
const extension = require('extensionizer')
|
|
const promisify = require('pify')
|
|
const allLocales = require('../../_locales/index.json')
|
|
|
|
const existingLocaleCodes = allLocales.map(locale => locale.code.toLowerCase().replace('_', '-'))
|
|
|
|
/**
|
|
* Returns a preferred language code, based on settings within the user's browser. If we have no translations for the
|
|
* users preferred locales, 'en' is returned.
|
|
*
|
|
* @returns {Promise<string>} Promises a locale code, either one from the user's preferred list that we have a translation for, or 'en'
|
|
*
|
|
*/
|
|
async function getFirstPreferredLangCode () {
|
|
const userPreferredLocaleCodes = await promisify(
|
|
extension.i18n.getAcceptLanguages,
|
|
{ errorFirst: false }
|
|
)()
|
|
const firstPreferredLangCode = userPreferredLocaleCodes
|
|
.map(code => code.toLowerCase())
|
|
.find(code => existingLocaleCodes.includes(code))
|
|
return firstPreferredLangCode || 'en'
|
|
}
|
|
|
|
module.exports = getFirstPreferredLangCode
|
|
|