ant-design/docs/react/i18n.en-US.md

83 lines
2.7 KiB
Markdown
Raw Normal View History

2017-03-12 15:20:25 +08:00
---
2017-03-13 11:13:12 +08:00
order: 8
2017-03-12 15:20:25 +08:00
title: Internationalization
---
2019-05-07 14:57:32 +08:00
The default language of `antd@2.x` is English as of yet. If you want to use other languages, you can follow the instructions below.
2017-03-12 15:20:25 +08:00
## ConfigProvider
2017-03-12 15:20:25 +08:00
antd provides a React Component [ConfigProvider](/components/config-provider) for configuring antd locale text globally.
2017-03-12 15:20:25 +08:00
```jsx
import { ConfigProvider } from 'antd';
import frFR from 'antd/es/locale/fr_FR';
2017-03-12 15:20:25 +08:00
return (
<ConfigProvider locale={frFR}>
2017-03-12 15:20:25 +08:00
<App />
</ConfigProvider>
2017-03-12 15:20:25 +08:00
);
```
You can see complete config at: [ConfigProvider](/components/config-provider).
2018-12-07 18:16:23 +08:00
Note: `fr_FR` is the filename, follow below.
2017-03-12 15:20:25 +08:00
Supported languages:
2019-05-07 14:57:32 +08:00
| Language | Filename |
| --------------------- | -------- |
| Arabic | ar_EG |
| Armenian | hy_AM |
2019-05-07 14:57:32 +08:00
| Bulgarian | bg_BG |
| Catalan | ca_ES |
| Czech | cs_CZ |
| German | de_DE |
| Greek | el_GR |
| English (Global) | en_GB |
| English | en_US |
| Spanish | es_ES |
| Estonian | et_EE |
| Persian | fa_IR |
| Finnish | fi_FI |
| French (Belgium) | fr_BE |
| French (France) | fr_FR |
| Hebrew | he_IL |
| Croatian | hr_HR |
| Hindi | hi_IN |
| Hungarian | hu_HU |
| Indonesian | id_ID |
| Italian | it_IT |
| Icelandic | is_IS |
| Japanese | ja_JP |
| Kannada | kn_IN |
| Korean | ko_KR |
| Macedonian | mk_MK |
2019-05-07 14:57:32 +08:00
| Norwegian | nb_NO |
| Nepal | ne_NP |
| Dutch (Belgium) | nl_BE |
| Dutch | nl_NL |
| Polish | pl_PL |
| Portuguese (Brazil) | pt_BR |
| Portuguese | pt_PT |
| Slovak | sk_SK |
| Serbian | sr_RS |
| Slovenian | sl_SI |
| Swedish | sv_SE |
| Tamil | ta_IN |
2019-05-07 14:57:32 +08:00
| Thai | th_TH |
| Turkish | tr_TR |
| Romanian | ro_RO |
2019-05-07 14:57:32 +08:00
| Russian | ru_RU |
| Ukrainian | uk_UA |
| Vietnamese | vi_VN |
| Chinese (Simplified) | zh_CN |
| Chinese (Traditional) | zh_TW |
2017-03-12 15:20:25 +08:00
See usage and ways to contribute a new locale package at [ConfigProvider](/components/config-provider).
2017-03-12 15:20:25 +08:00
## i18n sample
We also provide you a complete sample of internationalization usage, which is using [react-intl](https://github.com/yahoo/react-intl) and ConfigProvider: [ant-design/intl-example](https://github.com/ant-design/intl-example).