UNPKG

decap-cms-core

Version:

Decap CMS core application, see decap-cms package for the main distribution.

9 lines (6 loc) 198 B
import merge from 'lodash/merge'; import { getLocale } from './registry'; export function getPhrases(locale) { const phrases = merge({}, getLocale('en'), getLocale(locale)); return phrases; }