Closed JuliaPetrishina closed 6 years ago
You can set default locale by passing locale prop to IntlProvider
<IntlProvider locale='ru'>
</IntlProvider >
Or you can dispatch an action
import { IntlActions } from 'react-redux-multilingual'
const store =createStore(....)
store.dispatch(IntlActions.setLocale('ru'))
@rmdort The second one helped. Thanks a lot!
ok great. I have added this to the Readme.
I can't set locale='ru' by default. Could you help me with this?