mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 11:40:04 +08:00
1.3 KiB
1.3 KiB
category | chinese | cols | type | english |
---|---|---|---|---|
Components | 国际化 | 1 | 其它 | 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 1 和 Intl demo 2。
API
参数 | 说明 | 类型 | 默认值 |
---|---|---|---|
locale | 语言包配置,语言包可到 antd/lib/locale-provider/ 目录下寻找 |
Object | - |