react-locale-hot-switch icon indicating copy to clipboard operation
react-locale-hot-switch copied to clipboard

Small React web app showing how to change the UI language without reloading the page.

Results 2 react-locale-hot-switch issues
Sort by recently updated
recently updated
newest added

After fetching the new locale data, components using `shouldComponentUpdate` (as those using the `React.addons.PureRenderMixin`) may block the update of the components, since they are not aware of the changed context....

bug

Thanks for this great example. I've issues making it work in my own code. Consider: ``` if (!global.Intl) { require.ensure([ 'intl/Intl', 'intl/locale-data/jsonp/en.js' ], function (require) { require('intl/Intl'); require('intl/locale-data/jsonp/en.js'); }); }...