You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

1.3 KiB

category subtitle cols type title
Components 国际化 1 Other LocaleProvider

为组件内建文案提供统一的国际化支持。

使用

LocaleProvider 使用 React 的 context 特性,只需在应用外围包裹一次即可全局生效。

import enUS from 'antd/lib/locale-provider/en_US';

...

return <LocaleProvider locale={enUS}><App /></LocaleProvider>;

Add a language

We supply an English locale package. Other language users can create a locale package based on en_US and send us a pull request.

其他国际化需求

本模块仅用于组件的内建文案,若有业务文案的国际化需求,建议使用 react-intl,可参考示例:Intl demo 1Intl demo 2

API

参数 说明 类型 默认值
locale 语言包配置,语言包可到 antd/lib/locale-provider/ 目录下寻找 Object -