I was wondering if there is any way to access what is the currently set locale with React-Intl?
Let's say I create this:
render() { return ( <IntlProvider locale="en"> <App> </IntlProvider> ); }
In App, I would like to do something like this, in order to access the locale that I passed to the IntlProvider
this.props.locale
Is there any way to do something like that?
Thanks.
Internationalization or i18n is the design and development of a product, application, or document content that enables easy localization for target audiences that vary in culture, region, or language. Thus, React i18n is concerned with localizing React applications for different locales.
import { useIntl } from 'react-intl'; const MyComponent: FC = () => { const intl = useIntl() return <div>{`Current locale: ${intl.locale}`}</div> } export default MyComponent
You can get the current locale in any component of your App by simply accessing it from React Intl's "injection API":
import {injectIntl, intlShape} from 'react-intl'; const propTypes = { intl: intlShape.isRequired, }; const MyComponent = ({intl}) => ( <div>{`Current locale: ${intl.locale}`}</div> ); MyComponent.propTypes = propTypes export default injectIntl(MyComponent);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With