mirror of
https://github.com/wahyd4/ant-design.git
synced 2026-08-24 04:06:29 +10:00
11 lines
396 B
TypeScript
11 lines
396 B
TypeScript
import assign from 'object-assign';
|
|
|
|
export default function getLocale(props, context, componentName, getDefaultLocale) {
|
|
const locale = context && context.antLocale && context.antLocale[componentName] ?
|
|
context.antLocale[componentName] : getDefaultLocale();
|
|
|
|
const result = assign({}, locale, props.locale);
|
|
result.lang = assign({}, locale.lang, props.locale.lang);
|
|
return result;
|
|
}
|