jiti-meet/react/features/base/i18n/languageDetector.native.js

46 lines
1023 B
JavaScript
Raw Normal View History

// @flow
2017-03-01 02:55:12 +00:00
import { NativeModules } from 'react-native';
2017-03-01 02:55:12 +00:00
import LANGUAGES_RESOURCES from '../../../../lang/languages.json';
const LANGUAGES = Object.keys(LANGUAGES_RESOURCES);
2017-03-01 02:55:12 +00:00
/**
* The singleton language detector for React Native which uses the system-wide
* locale.
*/
export default {
/**
* Does not support caching.
*
* @returns {void}
*/
cacheUserLanguage: Function.prototype,
detect() {
const { LocaleDetector } = NativeModules;
const parts = LocaleDetector.locale.replace(/_/, '-').split('-');
const [ lang, regionOrScript, region ] = parts;
let locale;
if (parts.length >= 3) {
locale = `${lang}${region}`;
} else if (parts.length === 2) {
locale = `${lang}${regionOrScript}`;
} else {
locale = lang;
}
if (LANGUAGES.includes(locale)) {
return locale;
}
return lang;
2017-03-01 02:55:12 +00:00
},
init: Function.prototype,
type: 'languageDetector'
};