mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
18 lines
468 B
JavaScript
18 lines
468 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
|