mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-26 12:29:06 +01:00
ac01c5c89a
* Specify type before parameter name Various JSDoc `@param` entries were specified as `name {type}` rather than `{type} name`. A couple of `@return` entries have been given types as well. * Use JSDoc optional syntax rather than Closure syntax * Use @returns rather than @return * Use consistent built-in type capitalization Primitive types are lower-case, and Object is upper-case. * Separate param/return description with a dash
50 lines
1.6 KiB
JavaScript
50 lines
1.6 KiB
JavaScript
import extension from 'extensionizer'
|
|
import promisify from 'pify'
|
|
import allLocales from '../../_locales/index.json'
|
|
|
|
const getPreferredLocales = extension.i18n ? promisify(
|
|
extension.i18n.getAcceptLanguages,
|
|
{ errorFirst: false }
|
|
) : async () => []
|
|
|
|
// mapping some browsers return hyphen instead underscore in locale codes (e.g. zh_TW -> zh-tw)
|
|
const existingLocaleCodes = {}
|
|
allLocales.forEach(locale => {
|
|
if (locale && locale.code) {
|
|
existingLocaleCodes[locale.code.toLowerCase().replace('_', '-')] = locale.code
|
|
}
|
|
})
|
|
|
|
/**
|
|
* 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 () {
|
|
let userPreferredLocaleCodes
|
|
|
|
try {
|
|
userPreferredLocaleCodes = await getPreferredLocales()
|
|
} catch (e) {
|
|
// Brave currently throws when calling getAcceptLanguages, so this handles that.
|
|
userPreferredLocaleCodes = []
|
|
}
|
|
|
|
// safeguard for Brave Browser until they implement chrome.i18n.getAcceptLanguages
|
|
// https://github.com/MetaMask/metamask-extension/issues/4270
|
|
if (!userPreferredLocaleCodes) {
|
|
userPreferredLocaleCodes = []
|
|
}
|
|
|
|
const firstPreferredLangCode = userPreferredLocaleCodes
|
|
.map(code => code.toLowerCase().replace('_', '-'))
|
|
.find(code => existingLocaleCodes.hasOwnProperty(code))
|
|
|
|
return existingLocaleCodes[firstPreferredLangCode] || 'en'
|
|
}
|
|
|
|
export default getFirstPreferredLangCode
|
|
|