UNPKG

decap-cms-core

Version:

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

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