ant-design/components/modal/locale.tsx
2016-06-22 13:19:48 +08:00

22 lines
438 B
TypeScript

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