mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
18 lines
472 B
JavaScript
18 lines
472 B
JavaScript
import * as actionConstants from '../../store/actionConstants';
|
|
|
|
export default function reduceLocaleMessages(state = {}, { type, value }) {
|
|
switch (type) {
|
|
case actionConstants.SET_CURRENT_LOCALE:
|
|
return {
|
|
...state,
|
|
current: value.messages,
|
|
};
|
|
default:
|
|
return state;
|
|
}
|
|
}
|
|
|
|
export const getCurrentLocaleMessages = (state) => state.localeMessages.current;
|
|
|
|
export const getEnLocaleMessages = (state) => state.localeMessages.en;
|