mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-03 04:00:48 +05:30
19 lines
404 B
JavaScript
19 lines
404 B
JavaScript
|
import i18n from 'services/i18n';
|
||
|
|
||
|
export const SET_LOCALE = 'SET_LOCALE';
|
||
|
export function setLocale(locale) {
|
||
|
return (dispatch) => i18n.require(
|
||
|
i18n.detectLanguage(locale)
|
||
|
).then(({locale, messages}) => {
|
||
|
dispatch({
|
||
|
type: SET_LOCALE,
|
||
|
payload: {
|
||
|
locale,
|
||
|
messages
|
||
|
}
|
||
|
});
|
||
|
|
||
|
return locale;
|
||
|
});
|
||
|
}
|