1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/ui/ducks/locale/locale.js
2023-02-03 11:56:44 -06:00

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;