accounts-frontend/src/components/i18n/actions.js

19 lines
404 B
JavaScript
Raw Normal View History

2016-05-20 01:11:43 +05:30
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;
});
}