mirror of
https://github.com/wahyd4/ant-design.git
synced 2026-08-09 04:46:52 +10:00
1.2 KiB
1.2 KiB
order, title
| order | title |
|---|---|
| 8 | Internationalization |
The default language of antd@2.x is still Chinese yet.
If you want to use English or other languages, you can follow instruction below.
LocaleProvider
antd provide a React Compnent LocaleProvider for configuring antd locale text globally.
import { LocaleProvider } from 'antd';
import enUS from 'antd/lib/locale-provider/en_US';
return (
<LocaleProvider locale={enUS}>
<App />
</LocaleProvider>
);
Supported languages:
- English - en_US
- French (Belgium) - fr_BE
- Russian - ru_RU
- Spanish - es_ES
- German - de_DE
- Czech - cs_CZ
- Portuguese (Brazil) - pt_BR
- Korean - ko_KR
- Swedish - sv_SE
- Dutch - nl_NL
- Catalan - ca_ES
- Japanese - ja_JP
- Turkish - tr_TR
- Slovak - sk_SK
- Estonian - et_EE
- Chinese (Traditional) - zh_TW
See usage and contributing way of a new locale package at LocaleProvider.
i18n sample
We also provide you a complete sample of internationalization usage, which is using react-intl and LocaleProvider: ant-design/intl-example.