mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +01:00
21 lines
595 B
JavaScript
21 lines
595 B
JavaScript
import * as actionConstants from '../../store/actionConstants';
|
|
|
|
export default function reduceLocaleMessages(state = {}, { type, payload }) {
|
|
switch (type) {
|
|
case actionConstants.SET_CURRENT_LOCALE:
|
|
return {
|
|
...state,
|
|
current: payload.messages,
|
|
currentLocale: payload.locale,
|
|
};
|
|
default:
|
|
return state;
|
|
}
|
|
}
|
|
|
|
export const getCurrentLocale = (state) => state.localeMessages.currentLocale;
|
|
|
|
export const getCurrentLocaleMessages = (state) => state.localeMessages.current;
|
|
|
|
export const getEnLocaleMessages = (state) => state.localeMessages.en;
|