mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 03:29:59 +08:00
77b78a9389
* Unify name of ReactNode type in document * Lowser all string type name * Lowercase all number type name * Lowercase all boolean type name * Unify array type * Lowercase all object type name * Unify mutilple types
1.3 KiB
1.3 KiB
category | type | cols | title |
---|---|---|---|
Components | Other | 1 | LocaleProvider |
LocaleProvider
provides a uniform localization support for built-in text of components.
Usage
LocaleProvider
takes use of context, a feature of React, to accomplish global effectiveness by wrapping the app only once.
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.
Other localization needs
This component aims for localization of the built-in text, if you want to support other documents, we recommend using react-intl, refer to Intl demo 1 and Intl demo 2.
API
Property | Description | Type | Default |
---|---|---|---|
locale | language package setting, you can find the packages in this path: antd/lib/locale-provider/ |
object | - |