UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

12 lines 392 B
import defaultLocale from '../locale/en_US'; let runtimeLocale = Object.assign({}, defaultLocale.Modal); export function changeConfirmLocale(newLocale) { if (newLocale) { runtimeLocale = Object.assign(Object.assign({}, runtimeLocale), newLocale); } else { runtimeLocale = Object.assign({}, defaultLocale.Modal); } } export function getConfirmLocale() { return runtimeLocale; }