Descripción
WP Multilang is a multilingual plugin for WordPress.
Translations of post types, taxonomies, meta fields, options, text fields in miltimedia files, menus, titles and text fields in widgets.
Home | Help & Tech Support | Documentation | Premium Features
Nuevas características del plugin WP Multilang
- Compatible con editores de sitio completo y con temas basados en bloques
- Compatible con widgets de bloque
- Permite tener diferentes imágenes destacadas para cada idioma.
- Auto Translation ( available in premium version ) – View Tutorial
- Support URL Slug Translation ( available in premium version ) – View Tutorial
Features of the plugin WP Multilang
- 100% gratis.
- Translation at PHP.
- Compatible con REST.
- Support configuration for translate multidimensional arrays in options, meta fields, post content.
- Compatibilidad con multisitio.
- Support WordPress in sub-folder.
- Elementos de menú, entradas, términos, widgets y comentarios separados por idioma.
- Many filters for dynamic applying translation settings.
- No se duplican entradas, términos, menús o widgets.
- No sub-domain for each language version.
- Ninguna tabla adicional en la base de datos.
- Possibility set many languages with one localization. For example, for localization in the region.
- Posibilidad de establecer una configuración regional personalizada para html (Si está instalada la configuración regional en_US, puedes establecer otras como: en, en-UK, en-AU etc. sin la instalación de otra localización)
- Posibilidad para añadir nuevos idiomas para cualquier usuario con la capacidad
manage_options
. - Existe el perfil «Traductor» para editar entradas, términos. No puede publicar o borrar.
- No hay límites por idiomas o por posibilidades.
Plugins compatibles con WP Multilang
- Elementor ( disponible en versión premium ) – Ver Tutorial
- Divi Builder ( available in premium version ) – View Tutorial
- ACF, ACF Pro
- WooCommerce
- WooCommerce Customizer
- Gutenberg
- Yoast Seo
- Contact Form 7 (added mail tag [_language] for send user language in mail)
- WPBakery Visual Composer
- Page Builder by SiteOrigin
- NextGEN Gallery
- All in One SEO Pack
- MailChimp for WordPress
- Newsletter
- Maps Builder
- Max Mega Menu
- MasterSlider
- WP-PageNavi
- BuddyPress
- Meta Slider
- TablePress
- Download Monitor (Redefine plantillas para enlaces en tu tema y traduce los textos de los enlaces)
- Better Search
- Rank Math SEO (gracias a @pratikmts)
Gestiona los ajustes de traducción via json.
Add in the root of your theme or plugin file wpm-config.json
.
Sample configurations can be viewed in config files in folder ‘configs’ in root the plugin.
Configuration is updated after switching theme, enable or update any plugins.
The plugin has filters for dynamic application configuration for translate.
For turn off translation, set null
into the desired configuration.
For example, you must turn off translation for a post type post
.
There are two ways:
-
In json.
Create in root of a theme or a plugin filewpm-config.json
with:
{
«post_types»: {
«post»: null
}
} -
A través del filtro.
Añadir en functions.php
add_filter( ‘wpm_post_post_config’, ‘__return_null’ );
Para activar la traducción, pasa un array vacío en php array()
o un objeto vacío en json {}
.
Supports translation multidimensional array of options, meta fields and post_content.
Supports the removal of established localizations.
Supports translation via GET parameter. Add in the GET parameter lang
code desired language.
Supports clean database of translations when removing the plugin. Translations are only removed from the built-in tables.
Supports import term translations from qTranslate(by Soft79).
Supports automatically redirect to the user’s browser language, if he visits for the first time.
Ideal para desarrolladores.
Para mostrar el conmutador de idioma en cualquier lugar añadir al código de tu plantilla if ( function_exists ( 'wpm_language_switcher' ) ) wpm_language_switcher ();
La función acepta dos parámetros:
$type – ‘list’, ‘dropdown’, ‘select’. Por defecto – ‘list’.
$show – ‘flag’, ‘name’, ‘both’. Por defecto – ‘both’.
O usando el shortcode wpm_lang_switcher
. Acepta dos parámetros no necesarios ‘tipo’ y ‘mostrar’.
Características disponibles para traducción:
wpm_translate_url( $url, $language = » ); – traduce url
wpm_translate_string( $string, $language = » ); – traduce una cadena multilenguaje
wpm_translate_value( $value, $language = » ); – traduce array multidimensional con cadenas multilingües
Update translation occurs at PHP. Therefore plugin has high adaptability, compatibility and easily integrates with other plugins. This is what distinguishes it among similar.
Available translation html tags by JS for strings what do not have WP filters before output.
Añade tus etiquetas en la configuración:
"admin_html_tags": {
"admin_screen_id": {
"attribute": [
"selector"
]
}
}
Donde:
admin_screen_id – id de la pantalla admin.
attribute – atributo que necesita ser traducido. Disponible ‘text’ – para traducir el nodo texto, ‘value’ – para traducir los valores del formulario. U otro atributo de etiqueta como ‘title’, ‘alt’.
selector – selector css de la etiqueta necesaria para la búsqueda. Cada selector es un nuevo item de array.
Si necesitas añadir una traducción para un array multidimensional de elementos repetidos puedes usar la etiqueta ‘wpm_each’ para establecer la configuración para cada elemento del array.
Por ejemplo, añade configuración por cada elemento ‘title’ en un el campo array del custom post:
"post_fields": {
"custom_field": {
"wpm_each": {
"title": {}
}
}
}
For set translation uses the syntax:
[:en]Donec vitae orci sed dolor[:de]Cras risus ipsum faucibus ut[:]
Añadido shortcode para traducir texto en cualquier lugar:
[wpm_translate][:en]Donec vitae orci sed dolor[:de]Cras risus ipsum faucibus ut[:][wpm_translate]
If You translate text in established language, add lang parameter:
[wpm_translate lang=»de»][:en]Donec vitae orci sed dolor[:de]Cras risus ipsum faucibus ut[:][wpm_translate]
Compatible con traducción de sintaxis de qTranslate, qTranslate-X, WPGlobus etc.
Compatible with REST-API.
Support transfer the required translation through option lang
in the GET request to REST.
Has the ability to keep recording the target language through the transmission parameter lang
in the request.
Migración de qTranslate-X
- Antes de instalar/desinstalar, haz una copia de seguridad de la base de datos.
- Desactiva qTranslate-X.
- Instala y activa WP Multilang.
- Crea en el directorio raíz de tu tema un fichero ‘wpm-config.json’.
- Add all needed post types, taxonomies, options, fields to ‘wpm-config.json’. Setting from qTranslate-X not importing.
- Importar nombres de términos de qTranslate.
- Comprueba que todo está bien.
- Si todo está bien, elimina qTranslate-X. Si no, haz capturas de pantalla de los errores, restaura la base de datos desde la copia de seguridad y añade el problema en el soporte con las capturas de pantalla y la descripción de los errores.
Advertencia
No es compatible con diferentes slug para cada idioma (todavía).
No es compatible con:
– WP Maintenance
Problemas conocidos
La función ‘get_page_by_title’ no funciona, porque en el campo de título están los títulos almacenados para todos los idiomas. Usa la función ‘wpm_get_page_by_title( $title )’ como solución.
NOTA: Debido a que los plugins tienen diferentes formas de almacenar datos, WP Multilang no es compatible con todos los plugins listos para usar (en su mayoría constructores de páginas). Esto puede provocar que los textos no se puedan traducir o las traducciones no se guarden. La mayoría de estos problemas se pueden resolver usando las opciones de integración (wpm-config.json o filtros) de WP Multilang.
Por favor, prueba WP Multilang en un entorno de pruebas antes de activarlo en un sitio existente en producción y ¡haz siempre una copia de seguridad antes de activarlo!
Home | Help & Tech Support | Documentation | Premium
Support
We try our best to provide support on WordPress.org forums. However, We have a special community support where you can ask us questions and get help about your WP Multilang related questions. Delivering a good user experience means a lot to us and so we try our best to reply each and every question that gets asked.
Informes de fallos
Los informes de fallos para WP Multilang son bienvenidos en nuestro repositorio en GitHub. Ten en cuenta que GitHub no es un foro de soporte, y que las incidencias que no estén debidamente calificadas como fallos se cerrarán.
Capturas
Bloques
Este plugin proporciona 1 bloque.
- Language Switcher Example block scaffolded with Create Block tool.
Instalación
- Sube los archivos del plugin al directorio
>/wp-content/plugins/wp-multilang
, o instala el plugin directamente en la pantalla de plugins de WordPress. - Activa el plugin a través de la pantalla «Plugins» en WordPress.
- Configura los idiomas en la Página de Ajustes de WP Multilang.
FAQ
-
I add new translation, but it rewrite another translation on different language.
-
If you have opened several browser tabs for editing this post in different languages, translation will be saved for the language that you opened last.
Reseñas
Colaboradores y desarrolladores
«WP Multilang – Plugin de traducción y multi-idioma.» es un software de código abierto. Las siguientes personas han colaborado con este plugin.
Colaboradores«WP Multilang – Plugin de traducción y multi-idioma.» está traducido en 8 idiomas. Gracias a los traductores por sus contribuciones.
Traduce «WP Multilang – Plugin de traducción y multi-idioma.» a tu idioma.
¿Interesado en el desarrollo?
Revisa el código , echa un vistazo al repositorio SVN o suscríbete al registro de desarrollo por RSS.
Registro de cambios
2.4.12
- feature URL Slug Translation #25
- fixed PHP waring #102
- fixed Yoast meta description translation issue #113
2.4.11
- fixed Product attributers are not getting translated in frontend #94
- enhancement Code improvement #96
- fixed Warning: Undefined array key #102
- feature Automatic translation #77
2.4.10
- feature Added compatibility with Divi #72
- fixed issue with canonical and href URL as per the language. #85
- fixed issue with Language switcher block in site editor #86
- fixed Compatibility with WordPress 6.6 and updated readme.txt
2.4.9
- feature WordPress full site editing support #46
- fixed Conflicts with the Newsletter plugin #61
- enhancement Changed premium tab to Premium Features in readme.txt #80
- feature Added Language Switcher Gutenberg Block #82
2.4.8
- fixed admin_html_tags leaving empty fields #41
- feature Gutenberg view post should redirect to current language post #55
- fixed Conflicts with the Newsletter plugin #61
- feature Woocommerce product attributes translation issue #70
- fixed Issue with CF7 form #73
- fixed Language switch button interface Guternberg block button #74
2.4.7
- fixed Call to undefined function #65
- feature Admin settings page UI/UX changes #67
- feature Added Newsletter Form #68
2.4.6
- enhancement Updated website links like contact page and other info in plugin and wp.org #45
- feature Adedd feedback popup on deactivation #54
- feature Added compatibility with Elementor (Premium)
2.4.5
- feature Different product or post images for each language #20
- fixed Widget block translate issue #29
- fixed Fatal Error with latest Yoast SEO plugin update #30
- fixed Translation of special mail tags for Contact Form 7 #31
- fixed Translation of the «title» attribute in the shortcode of Contact Form 7 #32
- fixed wpseo_og:locale:alternate to be set properly #33
- fixed Translate escaping text #34
- fixed Rank Math custom fields getting duplicated on the translated posts #35
- fixed Issue with language switcher regex for gutenberg #36
2.4.4
- fixed issue with ACF PRO #12
- fixed An error occurred when deleting a post #13
- fixed E_ERROR in class-wpm-install.php #16
- fixed Issue with Gutenberg reusable blocks and create pattern #17
- fixed No translation for Title, Meta etc. if using AIOSEO plugin #18
- fixed No Translation of URL, and social meta tags using YOAST plugin in #23
- fixed Issue with the Rank Math Seo meta field #24
2.4.3
- fixed Conflict with Yoast SEO #6
- enhancement ( ! ) Deprecated: Hook wpseo_opengraph is deprecated since version WPSEO 14.0 with no alternative available #7
- enhancement ( ! ) Deprecated: setcookie(): Passing null to parameter #5 ($domain) of type string is deprecated #8
- fixed Issue with the ACF Pro plugin #10
2.4.2
- fixed Compatibility with WordPress 6.4 and updated readme.txt #1
- fixed Code Improvement #2
- added support tab and form
2.4.1
- removed support old version of ACF lower 5.0
2.4.0
- added support for Rank Math SEO (thanks for @pratikmts)
- optimized speed
- deleted support for old translate syntax
- other fixes and improvements
El registro de cambios completo está disponible en GitHub.