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
2019-07-24 10:34:55 +08:00
## ConfigProvider
2017-03-12 15:20:25 +08:00
2019-07-24 10:34:55 +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
2019-07-24 10:34:55 +08:00
import { ConfigProvider } from 'antd';
import frFR from 'antd/es/locale/fr_FR';
2017-03-12 15:20:25 +08:00
return (
2019-07-24 10:34:55 +08:00
< ConfigProvider locale = {frFR} >
2017-03-12 15:20:25 +08:00
< App / >
2019-07-24 10:34:55 +08:00
< / ConfigProvider >
2017-03-12 15:20:25 +08:00
);
```
2019-07-24 10:34:55 +08:00
You can see complete config at: [ConfigProvider ](/components/config-provider ).
2018-12-07 18:16:23 +08:00
2017-10-10 10:04:03 +08:00
Note: `fr_FR` is the filename, follow below.
2017-06-15 17:34:38 +08:00
2017-03-12 15:20:25 +08:00
Supported languages:
2019-05-07 14:57:32 +08:00
| Language | Filename |
| --------------------- | -------- |
| Arabic | ar_EG |
2019-09-02 00:21:51 +08:00
| 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 |
2019-11-09 23:17:33 +08:00
| 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 |
2019-07-26 00:31:05 +08:00
| Tamil | ta_IN |
2019-05-07 14:57:32 +08:00
| Thai | th_TH |
| Turkish | tr_TR |
2019-08-08 17:24:31 +08:00
| 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
2019-07-24 10:34:55 +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
2019-07-24 10:34:55 +08:00
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 ).