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

27 lines
490 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
/**
* 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;
return LocaleDetector.locale.replace(/[_-]/, '');
2017-03-01 02:55:12 +00:00
},
init: Function.prototype,
type: 'languageDetector'
};