ant-design-vue/components/modal/locale.ts
2020-10-19 23:09:59 +08:00

29 lines
491 B
TypeScript

import defaultLocale from '../locale/default';
export interface ModalLocale {
okText: string;
cancelText: string;
justOkText: string;
}
let runtimeLocale = {
...defaultLocale.Modal,
};
export function changeConfirmLocale(newLocale?: ModalLocale) {
if (newLocale) {
runtimeLocale = {
...runtimeLocale,
...newLocale,
};
} else {
runtimeLocale = {
...defaultLocale.Modal,
};
}
}
export function getConfirmLocale() {
return runtimeLocale;
}