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
---
2017-10-10 10:04:03 +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
## LocaleProvider
2017-10-06 16:08:03 +08:00
antd provides a React Component [LocaleProvider ](/components/locale-provider ) for configuring antd locale text globally.
2017-03-12 15:20:25 +08:00
```jsx
2017-05-10 01:24:59 +08:00
import { LocaleProvider } from 'antd';
2017-10-10 10:04:03 +08:00
import frFR from 'antd/lib/locale-provider/fr_FR';
2017-03-12 15:20:25 +08:00
return (
2017-10-10 10:04:03 +08:00
< LocaleProvider locale = {frFR} >
2017-03-12 15:20:25 +08:00
< App / >
< / LocaleProvider >
);
```
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:
2017-06-15 17:34:38 +08:00
|Language|Filename|
|---|---|
2017-10-14 14:30:54 +08:00
|Arabic|ar_EG|
2017-06-15 17:34:38 +08:00
|Bulgarian|bg_BG|
|Catalan|ca_ES|
|Czech|cs_CZ|
2017-11-29 20:27:52 +08:00
|German|de_DE|
|Greek|el_GR|
2017-06-15 17:34:38 +08:00
|English (Global)|en_GB|
|English|en_US|
2017-11-29 20:27:52 +08:00
|Spanish|es_ES|
2017-06-15 17:34:38 +08:00
|Estonian|et_EE|
2017-11-29 20:27:52 +08:00
|Persian|fa_IR|
2017-06-15 17:34:38 +08:00
|Finnish|fi_FI|
|French (Belgium)|fr_BE|
|French (France)|fr_FR|
|Italian|it_IT|
2017-11-29 20:27:52 +08:00
|Icelandic|is_IS|
2017-06-15 17:34:38 +08:00
|Japanese|ja_JP|
|Korean|ko_KR|
2017-08-09 20:36:01 +08:00
|Norwegian|nb_NO|
2017-11-29 20:27:52 +08:00
|Dutch (Belgium)|nl_BE|
|Dutch|nl_NL|
2017-06-15 17:34:38 +08:00
|Polish|pl_PL|
|Portuguese (Brazil)|pt_BR|
2017-09-22 10:02:01 +08:00
|Portuguese|pt_PT|
2017-06-15 17:34:38 +08:00
|Slovak|sk_SK|
2017-11-29 20:27:52 +08:00
|Serbian|sr_RS|
2017-06-15 17:34:38 +08:00
|Swedish|sv_SE|
2017-10-10 10:04:03 +08:00
|Thai|th_TH|
2017-06-15 17:34:38 +08:00
|Turkish|tr_TR|
2017-11-29 20:27:52 +08:00
|Russian|ru_RU|
|Ukrainian|uk_UA|
2017-06-15 17:34:38 +08:00
|Vietnamese|vi_VN|
2017-11-29 20:27:52 +08:00
|Chinese (Simplified)|zh_CN|
|Chinese (Traditional)|zh_TW|
2017-03-12 15:20:25 +08:00
2017-10-06 16:08:03 +08:00
See usage and ways to contribute a new locale package at [LocaleProvider ](/components/locale-provider ).
2017-03-12 15:20:25 +08:00
## i18n sample
2017-03-13 11:13:12 +08:00
We also provide you a complete sample of internationalization usage, which is using [react-intl ](https://github.com/yahoo/react-intl ) and LocaleProvider: [ant-design/intl-example ](https://github.com/ant-design/intl-example ).