ant-design/components/modal/locale.tsx
2016-08-02 16:10:26 +08:00

22 lines
447 B
TypeScript

import assign from 'object-assign';
const defaultLocale = {
okText: '确定',
cancelText: '取消',
justOkText: '知道了',
};
let runtimeLocale = assign({}, defaultLocale);
export function changeConfirmLocale(newLocale?: Object) {
if (newLocale) {
runtimeLocale = assign({}, runtimeLocale, newLocale);
} else {
runtimeLocale = assign({}, defaultLocale);
}
}
export function getConfirmLocale() {
return runtimeLocale;
}