## Internacionalización El idioma predeterminado de Element Plus es el inglés. Si se desea utilizar otro idioma, será necesario realizar alguna configuración de i18n. En su fichero de entrada, si está importando Element Plus por completo: ```typescript import { createApp } from 'vue' import ElementPlus from 'element-plus' import locale from 'element-plus/lib/locale/lang/es' import 'dayjs/locale/es' createApp(App).use(ElementPlus, { locale }) ``` O si está importando Element Plus a petición via **es modules**: ```typescript import { createApp } from 'vue' import { ElButton, locale } from 'element-plus' import lang from 'element-plus/lib/locale/lang/es' import 'dayjs/locale/es' locale(lang) createApp(App).component(ElButton.name, ElButton) ``` O si está importando Element Plus a petición via [babel-plugin-component](#/es/component/quickstart#on-demand): ```typescript import { createApp } from 'vue' import { ElButton, ElSelect } from 'element-plus' import lang from 'element-plus/lib/locale/lang/es' import 'dayjs/locale/es' import locale from 'element-plus/lib/locale' // configure language locale.use(lang) // import components createApp(App).component(ElButton.name, ElButton) createApp(App).component(ElSelect.name, ElSelect) ``` ### Set Day.js locale Element Plus use date time locale (month name, first day of the week ...) from [Day.js](https://day.js.org/) directlly. And will set the global Day.js locale automaticatlly after the locale file is loaded. ```typescript import locale from 'element-plus/lib/locale/lang/es' import 'dayjs/locale/es' // will auto set Day.js locale to 'es' app.use(ElementPlus, { locale }) ``` However, you can use another Day.js locale if needed. ```typescript import 'dayjs/locale/fr' dayjs.locale('fr') ``` El paquete de idioma inglés se importa por defecto, incluso si se esta usando otro idioma. Pero con `NormalModuleReplacementPlugin` proporcionado por el webpack puede reemplazar la localización predeterminada: webpack.config.js ```typescript { plugins: [ new webpack.NormalModuleReplacementPlugin( /element-plus[\/\\]lib[\/\\]locale[\/\\]lang[\/\\]en/, 'element-plus/lib/locale/lang/es', ), ] } ``` ### Compatible con `vue-i18n@9.x` Need translation If you need to check out [VueI18n documentation](https://vue-i18n-next.intlify.dev/guide/#html), please click this link to check it out. ```typescript import { createApp } from 'vue' import { createI18n } from 'vue-i18n' import ElementPlus from 'element-plus' import enLocale from 'element-plus/lib/locale/lang/en' import zhLocale from 'element-plus/lib/locale/lang/zh-cn' import App from './App.vue' const messages = { [enLocale.name]: { // el property is critical, set this in order for ElementPlus translate strings correctly. el: enLocale.el, // Define your own dictionary with your own namespace, but DO NOT use the namespace `el`, // Because that makes the ElementPlus internal translation invalid. message: { hello: 'hello world', }, }, [zhLocale.name]: { el: zhLocale.el, // Define your own dictionary with your own namespace, but DO NOT use the namespace `el`, // Because that makes the ElementPlus internal translation invalid. message: { hello: '你好,世界', }, }, testLocale: { el: {}, // No message translations, it will fallback to en lang, the definition of fallbackLocale is below 👇 }, } const i18n = createI18n({ locale: zhLocale.name, fallbackLocale: enLocale.name, messages, }) const app = createApp(App) app.use(ElementPlus, { i18n: i18n.global.t, }) // Remember to use this plugin. app.use(i18n) ``` ### Compatible con otros plugins i18n Es posible que Element Plus no sea compatible con otros plugins i18n que no sean vue-i18n, pero puede personalizar la forma en que Element Plus procesa i18n. Need translation :::tip Once you set this method, the internal translation function will be invalid, only the customized translation method will be used, be sure that your custom translation method can translate format like `el.scope.subName`, other wise the internal translation string will be raw string. ::: ```typescript import Vue from 'vue' import ElementPlus from 'element-plus' import enLocale from 'element-plus/lib/locale/lang/en' import zhLocale from 'element-plus/lib/locale/lang/zh-cn' // The is the signature of i18n method. type i18n = (...args: any[]) => string Vue.use(Element, { i18n: function(path, options) { // ... }, // others. }) ``` ### Personalización de i18n en componentes bajo petición Need translation If you need to know how to lazy loading translation strings, please check this out[Lazy loading](https://vue-i18n-next.intlify.dev/guide/advanced/lazy.html) ```typescript import { createApp } from 'vue' import { createI18n } from 'vue-i18n' import ElementPlus from 'element-plus' import enLocale from 'element-plus/lib/locale/lang/en' import zhLocale from 'element-plus/lib/locale/lang/zh-cn' import ElementLocale from 'element-plus/lib/locale' import App from './App.vue' const messages = { [enLocale.name]: { // el property is critical, set this in order for ElementPlus translate strings correctly. el: enLocale.el, // Define your own dictionary with your own namespace, but DO NOT use the namespace `el`, // Because that makes the ElementPlus internal translation invalid. message: { hello: 'hello world', }, }, [zhLocale.name]: { el: zhLocale.el, // Define your own dictionary with your own namespace, but DO NOT use the namespace `el`, // Because that makes the ElementPlus internal translation invalid. message: { hello: '你好,世界', }, }, testLocale: { el: {}, // No message translations, it will fallback to en lang, the definition of fallbackLocale is below 👇 }, } const i18n = createI18n({ locale: zhLocale.name, fallbackLocale: enLocale.name, messages, }) ElementLocale.i18n(i18n.global.t) const app = createApp(App) app.use(i18n) ``` ### Importar via CDN ```html ``` Compatible con `vue-i18n` ```html ``` Actualmente Element Plus está disponible en los siguientes idiomas: Si su idioma de destino no está incluido, puede contribuir: simplemente añada [aqui](https://github.com/element-plus/element-plus/tree/dev/packages/locale/lang) otra configuración de idioma y cree un pull request.