--- title: Internationalization lang: en-US --- # Internationalization Element Plus components are using English **by default**, if you wish you use other languages, you can get you answer by keep reading. ## Global configuration Element Plus provides global configurations ```typescript import ElementPlus from 'element-plus' import zhCn from 'element-plus/dist/locale/zh-cn.mjs' app.use(ElementPlus, { locale: zhCn, }) ``` ## ConfigProvider Element Plus also provides a Vue component [ConfigProvider](/en-US/component/config-provider) for globally configuring locale and other settings. ```html ``` ## Date and time localization We use [Day.js](https://day.js.org/docs/en/i18n/i18n) library to manage date and time in components like `DatePicker`. It is important to set a proper locale in Day.js to make the internationalization fully works. You have to import Day.js's locale config separately. ``` import 'dayjs/locale/zh-cn' ``` ## CDN Usage If you are using Element Plus via CDN, then you need to do this, let's again take unpkg as an example ```html ``` Full documentation refer to: [ConfigProvider](/en-US/component/config-provider) [Supported Language List](https://github.com/element-plus/element-plus/tree/dev/packages/locale/lang) If you need any other languages, [PR](https://github.com/element-plus/element-plus/pulls) is always welcomed, you only need to add a language file at [here](https://github.com/element-plus/element-plus/tree/dev/packages/locale/lang).