{"id":246445,"date":"2025-10-14T08:13:30","date_gmt":"2025-10-14T08:13:30","guid":{"rendered":"https:\/\/wordpress.org\/plugins\/linguator-multilingual-ai-translation\/"},"modified":"2026-04-03T08:50:24","modified_gmt":"2026-04-03T08:50:24","slug":"linguator-multilingual-ai-translation","status":"publish","type":"plugin","link":"https:\/\/fr-ca.wordpress.org\/plugins\/linguator-multilingual-ai-translation\/","author":16095395,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_crdt_document":"","version":"1.1.1","stable_tag":"1.1.1","tested":"6.9.4","requires":"6.2","requires_php":"7.2","requires_plugins":null,"header_name":"Multilingual AI Translator","header_author":"Cool Plugins","header_description":"A powerful multilingual plugin for WordPress that enables content synchronization, and seamless language management.","assets_banners_color":"cdd2c2","last_updated":"2026-04-03 08:50:24","external_support_url":"","external_repository_url":"","donate_link":"","header_plugin_uri":"https:\/\/linguator.com\/","header_author_uri":"https:\/\/coolplugins.net\/?utm_source=lmat_plugin&utm_medium=inside&utm_campaign=author_page&utm_content=plugins_list","rating":4,"author_block_rating":4.75,"active_installs":40,"downloads":1481,"num_ratings":1,"support_threads":1,"support_threads_resolved":0,"author_block_count":1,"sections":["description","installation","faq","changelog"],"tags":{"0.0.5":{"tag":"0.0.5","author":"coolplugins","date":"2025-10-15 07:19:35"},"0.0.6":{"tag":"0.0.6","author":"coolplugins","date":"2025-10-23 11:25:03"},"0.0.7":{"tag":"0.0.7","author":"coolplugins","date":"2025-11-13 06:36:51"},"0.0.8":{"tag":"0.0.8","author":"coolplugins","date":"2025-11-20 11:42:19"},"1.0.0":{"tag":"1.0.0","author":"coolplugins","date":"2025-12-01 11:47:57"},"1.0.1":{"tag":"1.0.1","author":"coolplugins","date":"2025-12-09 05:35:25"},"1.0.2":{"tag":"1.0.2","author":"coolplugins","date":"2025-12-18 12:18:10"},"1.0.3":{"tag":"1.0.3","author":"coolplugins","date":"2026-01-03 05:34:31"},"1.0.4":{"tag":"1.0.4","author":"coolplugins","date":"2026-03-09 06:34:53"},"1.1.0":{"tag":"1.1.0","author":"coolplugins","date":"2026-03-23 04:22:36"},"1.1.1":{"tag":"1.1.1","author":"coolplugins","date":"2026-04-03 08:50:24"}},"upgrade_notice":{"":"<p>Initial release on WP.org repo.<\/p>"},"ratings":{"1":0,"2":0,"3":0,"4":1,"5":0},"assets_icons":{"icon-128x128.png":{"filename":"icon-128x128.png","revision":3435912,"resolution":"128x128","location":"assets","locale":""},"icon-256x256.png":{"filename":"icon-256x256.png","revision":3435912,"resolution":"256x256","location":"assets","locale":""}},"assets_banners":{"banner-1544x500.png":{"filename":"banner-1544x500.png","revision":3435900,"resolution":"1544x500","location":"assets","locale":""},"banner-772x250.png":{"filename":"banner-772x250.png","revision":3435900,"resolution":"772x250","location":"assets","locale":""}},"assets_blueprints":{"blueprint.json":{"filename":"blueprint.json","revision":3498047,"resolution":false,"location":"assets","locale":"","contents":"{\"landingPage\":\"\\\/wp-admin\\\/admin.php?page=lmat_settings\",\"preferredVersions\":{\"php\":\"8.2\",\"wp\":\"latest\"},\"phpExtensionBundles\":[\"kitchen-sink\"],\"features\":{\"networking\":true},\"login\":true,\"steps\":[{\"step\":\"login\",\"username\":\"admin\",\"password\":\"password\"},{\"step\":\"installPlugin\",\"pluginData\":{\"resource\":\"wordpress.org\\\/plugins\",\"slug\":\"linguator-multilingual-ai-translation\"},\"options\":{\"activate\":true}},{\"step\":\"writeFile\",\"path\":\"\\\/wordpress\\\/wp-content\\\/mu-plugins\\\/lmat-seeder.php\",\"data\":\"<?php\\nif (!defined('ABSPATH')) exit;\\nadd_action('init', function () {\\n    if (!taxonomy_exists('lmat_language')) return;\\n    $plugin_file = WP_PLUGIN_DIR . '\\\/linguator-multilingual-ai-translation\\\/linguator-multilingual-ai-translation.php';\\n    if (!file_exists($plugin_file)) {\\n        $possible_paths = glob(WP_PLUGIN_DIR . '\\\/linguator*\\\/linguator*.php');\\n        if (!empty($possible_paths)) $plugin_file = $possible_paths[0];\\n    }\\n    $plugin_dir = dirname($plugin_file);\\n    $plugin_url = plugins_url('', $plugin_file);\\n    $flag_base_url = trailingslashit($plugin_url) . 'assets\\\/flags\\\/';\\n    $languages = [\\n        ['code' => 'en', 'locale' => 'en_US', 'name' => 'English', 'flag_code' => 'us'],\\n        ['code' => 'es', 'locale' => 'es_ES', 'name' => 'Espa\\u00f1ol', 'flag_code' => 'es'],\\n        ['code' => 'fr', 'locale' => 'fr_FR', 'name' => 'Fran\\u00e7ais', 'flag_code' => 'fr'],\\n        ['code' => 'nl', 'locale' => 'nl_BE', 'name' => 'Nederlands', 'flag_code' => 'be'],\\n        ['code' => 'pt', 'locale' => 'pt_BR', 'name' => 'Portugu\\u00eas', 'flag_code' => 'br'],\\n        ['code' => 'ru', 'locale' => 'ru_RU', 'name' => '\\u0420\\u0443\\u0441\\u0441\\u043a\\u0438\\u0439', 'flag_code' => 'ru'],\\n    ];\\n    foreach ($languages as $lang) {\\n        $slug = sanitize_title($lang['code']);\\n        $term = term_exists($slug, 'lmat_language');\\n        $description = ['locale' => $lang['locale'], 'rtl' => false, 'flag_code' => $lang['flag_code']];\\n        if (!$term) {\\n            $insert = wp_insert_term($lang['name'], 'lmat_language', ['slug' => $slug, 'description' => serialize($description)]);\\n            if (is_wp_error($insert)) continue;\\n            $term_id = (int)$insert['term_id'];\\n        } else {\\n            $term_id = (int)(is_array($term) ? $term['term_id'] : $term);\\n            wp_update_term($term_id, 'lmat_language', ['description' => serialize($description)]);\\n        }\\n    }\\n    $opt = get_option('linguator', []);\\n    if (!is_array($opt)) $opt = [];\\n    $opt['default_lang'] = 'en';\\n    update_option('linguator', $opt);\\n}, 99);\\nfunction lmat_assign_english_to_pages() {\\n    if (!taxonomy_exists('lmat_language')) return;\\n    $english = get_term_by('slug', 'en', 'lmat_language');\\n    if (!$english || is_wp_error($english)) return;\\n    $pages = get_posts(['post_type' => 'page', 'post_status' => 'any', 'posts_per_page' => -1, 'fields' => 'ids']);\\n    foreach ($pages as $pid) {\\n        $has_lang = wp_get_object_terms($pid, 'lmat_language', ['fields' => 'ids']);\\n        if (empty($has_lang)) wp_set_object_terms($pid, (int)$english->term_id, 'lmat_language', false);\\n    }\\n}\\nadd_action('init', 'lmat_assign_english_to_pages', 99);\\nadd_action('save_post_page', function ($post_id) {\\n    if (wp_is_post_revision($post_id) || (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE)) return;\\n    if (!taxonomy_exists('lmat_language')) return;\\n    $english = get_term_by('slug', 'en', 'lmat_language');\\n    if ($english && !is_wp_error($english)) {\\n        $has_lang = wp_get_object_terms($post_id, 'lmat_language', ['fields' => 'ids']);\\n        if (empty($has_lang)) wp_set_object_terms($post_id, (int)$english->term_id, 'lmat_language', false);\\n    }\\n}, 10);\\n\"},{\"step\":\"importWxr\",\"file\":{\"resource\":\"url\",\"url\":\"https:\\\/\\\/raw.githubusercontent.com\\\/CoolPluginsTeam\\\/wp-playground-repo\\\/main\\\/translation\\\/automatic-translate-pages.xml\"}},{\"step\":\"writeFile\",\"path\":\"\\\/wordpress\\\/wp-content\\\/mu-plugins\\\/lmat-force-hide-cpf-panel.php\",\"data\":\"<?php\\nif (!defined('ABSPATH')) exit;\\n\\nupdate_option('cpfm_opt_in_choice_lmat', 'yes');\\nupdate_option('lmat_setup_complete', 'yes');\\ndelete_option('lmat_needs_setup');\\n\\nadd_action('enqueue_block_editor_assets', function () {\\n    $hideCss = '.components-modal__screen-overlay { display: none !important; }';\\n    wp_register_style('lmat-hide-cpf', false);\\n    wp_enqueue_style('lmat-hide-cpf');\\n    wp_add_inline_style('lmat-hide-cpf', $hideCss);\\n});\\n\\nadd_action('wp_footer', 'lmat_add_clarity_script');\\nadd_action('admin_head', 'lmat_add_clarity_script');\\n\\nfunction lmat_add_clarity_script() {\\n    ?>\\n    <script>\\n    (function(c,l,a,r,i,t,y){\\n        c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};\\n        t=l.createElement(r);t.async=1;t.src=\\\"https:\\\/\\\/www.clarity.ms\\\/tag\\\/\\\"+i;\\n        y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);\\n    })(window, document, \\\"clarity\\\", \\\"script\\\", \\\"tmucl388d2\\\");\\n    <\\\/script>\\n    <?php\\n}\\n\"}]}"}},"all_blocks":{"linguator\/language-switcher":{"name":"linguator\/language-switcher","title":"Language switcher"}},"tagged_versions":["0.0.5","0.0.6","0.0.7","0.0.8","1.0.0","1.0.1","1.0.2","1.0.3","1.0.4","1.1.0","1.1.1"],"block_files":[],"assets_screenshots":{"screenshot-1.gif":{"filename":"screenshot-1.gif","revision":3378654,"resolution":"1","location":"assets","locale":""},"screenshot-2.gif":{"filename":"screenshot-2.gif","revision":3378654,"resolution":"2","location":"assets","locale":""},"screenshot-3.gif":{"filename":"screenshot-3.gif","revision":3378654,"resolution":"3","location":"assets","locale":""},"screenshot-4.gif":{"filename":"screenshot-4.gif","revision":3378654,"resolution":"4","location":"assets","locale":""},"screenshot-5.gif":{"filename":"screenshot-5.gif","revision":3378654,"resolution":"5","location":"assets","locale":""}},"screenshots":{"1":"Multilingual AI Translator Language Switcher Preview.","2":"Bulk Pages\/Post Translation Preview.","3":"Gutenberg Page Translation Preview.","4":"Elementor Page Translation Preview.","5":"Menu and language configuration."},"jetpack_post_was_ever_published":false},"plugin_section":[],"plugin_tags":[220668,1385,99,2333],"plugin_category":[48],"plugin_contributors":[155753,125070,126246],"plugin_business_model":[],"class_list":["post-246445","plugin","type-plugin","status-publish","hentry","plugin_tags-ai-translation","plugin_tags-language","plugin_tags-multilingual","plugin_tags-translation","plugin_category-language-tools","plugin_contributors-coolplugins","plugin_contributors-narinder-singh","plugin_contributors-satindersingh","plugin_committers-coolplugins","plugin_support_reps-vishali009"],"banners":{"banner":"https:\/\/ps.w.org\/linguator-multilingual-ai-translation\/assets\/banner-772x250.png?rev=3435900","banner_2x":"https:\/\/ps.w.org\/linguator-multilingual-ai-translation\/assets\/banner-1544x500.png?rev=3435900","banner_rtl":false,"banner_2x_rtl":false},"icons":{"svg":false,"icon":"https:\/\/ps.w.org\/linguator-multilingual-ai-translation\/assets\/icon-128x128.png?rev=3435912","icon_2x":"https:\/\/ps.w.org\/linguator-multilingual-ai-translation\/assets\/icon-256x256.png?rev=3435912","generated":false},"screenshots":[{"src":"https:\/\/ps.w.org\/linguator-multilingual-ai-translation\/assets\/screenshot-1.gif?rev=3378654","caption":"Multilingual AI Translator Language Switcher Preview."},{"src":"https:\/\/ps.w.org\/linguator-multilingual-ai-translation\/assets\/screenshot-2.gif?rev=3378654","caption":"Bulk Pages\/Post Translation Preview."},{"src":"https:\/\/ps.w.org\/linguator-multilingual-ai-translation\/assets\/screenshot-3.gif?rev=3378654","caption":"Gutenberg Page Translation Preview."},{"src":"https:\/\/ps.w.org\/linguator-multilingual-ai-translation\/assets\/screenshot-4.gif?rev=3378654","caption":"Elementor Page Translation Preview."},{"src":"https:\/\/ps.w.org\/linguator-multilingual-ai-translation\/assets\/screenshot-5.gif?rev=3378654","caption":"Menu and language configuration."}],"raw_content":"<!--section=description-->\n<p>This plugin is deprecated and is no longer actively maintained.\nAll its functionality has been moved to <a href=\"https:\/\/wordpress.org\/plugins\/translate-words\/\">Linguator AI \u2013 Auto Translate &amp; Create Multilingual Sites<\/a><\/p>\n\n<p><strong>Multilingual AI Translator<\/strong>  is a powerful multilingual plugin that helps you create and manage multilingual content on your WordPress website. Easily translate your <strong>posts, pages, menus,<\/strong> and <strong>categories<\/strong> into different languages using AI and connect with visitors worldwide.<\/p>\n\n<p><strong>Create a Multilingual WordPress Website 10X Faster \u2013 Powered by AI, Built for Global Reach.<\/strong><\/p>\n\n<p><a href=\"https:\/\/wordpress.org\/plugins\/linguator-multilingual-ai-translation\/?preview=1\">Check Live Demo<\/a> | <a href=\"https:\/\/linguator.com\/?utm_source=lmat_plugin&amp;utm_medium=readme&amp;utm_campaign=view_plugin&amp;utm_content=learn_more\">Learn more<\/a><\/p>\n\n<h3>Why Use Multilingual AI Translator?<\/h3>\n\n<p>Multilingual AI Translator makes it simple to create and manage multilingual websites directly inside WordPress \u2014 no coding or external service needed. It\u2019s the easiest way to go global using the power of AI, right from your dashboard.<\/p>\n\n<p>With Multilingual AI Translator, you can:<\/p>\n\n<ul>\n<li><strong>Simple and Familiar Interface<\/strong> \u2013 Built with WordPress standards in mind, Multilingual AI Translator feels natural and easy to use, even for beginners.<\/li>\n<li><strong>AI Power Without Extra Cost<\/strong> \u2013 Leverage AI translation features for free \u2014 no need to pay for costly external AI credits.<\/li>\n<li><strong>Reliable Customer Support<\/strong> \u2013 Your satisfaction matters most to us. Our support team responds to every query within 24 hours to help you quickly resolve any issue<\/li>\n<li><strong>No Monthly Fees or SaaS Dependency<\/strong> \u2013 Multilingual AI Translator runs fully inside WordPress \u2014 once installed, it\u2019s yours! No external API or subscription required.<\/li>\n<li><strong>Fully Compatible with Elementor &amp; Gutenberg<\/strong> \u2013 Translate visually designed pages effortlessly without breaking layouts.<\/li>\n<li><strong>Save Time with AI-Powered Translation<\/strong> \u2013 Instantly translate your posts, pages, and menus using advanced AI translation technology.<\/li>\n<li><strong>Reach a Global Audience<\/strong> \u2013 Translate your content into multiple languages and expand your website\u2019s reach worldwide.<\/li>\n<li><strong>Build Trust with Localized Content<\/strong> \u2013 Speak to visitors in their own language to increase engagement and conversions.<\/li>\n<li><strong>SEO-Optimized for Multilingual Sites<\/strong> \u2013 Generate search-friendly URLs for every language to improve visibility in Google.<\/li>\n<li><strong>Lightweight &amp; Optimized for Speed<\/strong> \u2013 Multilingual AI Translator is built with performance in mind and doesn\u2019t slow down your pages or website loading time.<\/li>\n<\/ul>\n\n<h3>Key Features<\/h3>\n\n<ul>\n<li><strong>AI-Powered Automatic Translation:<\/strong>   Save hours of manual work!. Multilingual AI Translator uses powerful AI translation engines to automatically translate your posts and pages into multiple languages \u2014 giving you high-quality, natural translations in one click.<\/li>\n<li><p><strong>SEO-Friendly Multilingual URLs:<\/strong> Each language gets its own unique, SEO-friendly URL structure \u2014 helping your site rank better in Google for multiple languages and attract global visitors.<\/p><\/li>\n<li><p><strong>Manual + Automatic Translation Control:<\/strong> Translate your content automatically using AI, or fine-tune it manually for complete accuracy \u2014 Multilingual AI Translator gives you both options for full flexibility.<\/p><\/li>\n<li><p><strong>Add &amp; Manage Languages:<\/strong> Without any limit on the number of languages, translate your WordPress website content into multiple languages.<\/p><\/li>\n<li><p><strong>Elementor Page Translation:<\/strong> Translate entire Elementor pages, including all sections, widgets, and content, without losing styles or design.<\/p><\/li>\n<li><p><strong>Gutenberg Block Compatibility:<\/strong> Automatically translate content within Gutenberg blocks, including core blocks and popular third-party blocks like Spectra, Kadence, Stackable, Otter, and Essential.<\/p><\/li>\n<li><p><strong>Bulk Translation:<\/strong> Instantly translate multiple posts, pages, or products at once with a single click, saving time and effort.<\/p><\/li>\n<li><p><strong>Inline Translation:<\/strong> Translate specific widgets or blocks of content directly within the editor, without translating the entire page, using advanced AI-powered translation tools.<\/p><\/li>\n<li><p><strong>Custom Post Type Translation:<\/strong> If your site uses custom post types <strong>(like \"Events\", \"Portfolios\", \"Testimonials\", etc.)<\/strong>, using Multilingual AI Translator, you can translate all of them.<\/p><\/li>\n<li><p><strong>Media Translation Management:<\/strong> Translate image titles, captions, alt text, and descriptions to match each language.<\/p><\/li>\n<li><p><strong>Menu Translation:<\/strong> Create separate navigation menus per language and let visitors switch between them.<\/p><\/li>\n<li><p><strong>Taxonomy Translation:<\/strong> Multilingual AI Translator plugin supports the translation of default WordPress taxonomies (like categories and tags) or custom ones, ensuring content stays organized in every language.<\/p><\/li>\n<li><p><strong>Language Switcher:<\/strong> Add a language switcher to your site with multiple display options, including Classic, Block-based, and Elementor widget styles, to easily switch languages.<\/p><\/li>\n<li><p><strong>RTL Language Support:<\/strong> Multilingual AI Translator offers full support for right-to-left (RTL) languages like Arabic and Hebrew. It automatically adjusts text direction, alignment, and layout to ensure your multilingual site displays correctly in every supported language.<\/p><\/li>\n<li><p><strong>Browser Language Detection:<\/strong> Automatically display your site in the visitor's preferred language based on their browser settings.<\/p><\/li>\n<li><p><strong>Supports Popular Page Builders:<\/strong> Multilingual AI Translator works smoothly with page builders like Elementor and Gutenberg \u2014 making it easy to translate visually designed pages without breaking layouts.<\/p>\n\n<p><strong>Trusted by 80,000+ users worldwide<\/strong>, Multilingual AI Translator is built by experts in AI translation \u2014 the same team behind <a href=\"https:\/\/wordpress.org\/plugins\/automatic-translator-addon-for-loco-translate\"><strong>LocoAI \u2013 Auto Translate for Loco Translate<\/strong><\/a>.\nWith <a href=\"https:\/\/wordpress.org\/plugins\/automatic-translator-addon-for-loco-translate\/#reviews\"><strong>580+ five-star reviews<\/strong><\/a>, our plugins are proven to deliver quality and user satisfaction.<\/p><\/li>\n<\/ul>\n\n<h4>Service Provider<\/h4>\n\n<p>This plugin offers AI translation services via Chrome's built-in AI APIs. Learn more about Chrome AI using the links below.<\/p>\n\n<ul>\n<li><a href=\"https:\/\/developer.chrome.com\/docs\/ai\/built-in-apis\">Chrome Built-in AI APIs Documentation<\/a><\/li>\n<li><a href=\"https:\/\/developer.chrome.com\/docs\/ai\/summarizer-api\">Chrome Summarizer API Documentation<\/a><\/li>\n<li><a href=\"https:\/\/developer.chrome.com\/docs\/extensions\/ai\/prompt-api\">Chrome Prompt API Documentation for Extensions<\/a><\/li>\n<\/ul>\n\n<p><a href=\"https:\/\/github.com\/CoolPluginsTeam\/linguator-multilingual-ai-translation\">Multilingual AI Translator on GitHub.<\/a><\/p>\n\n<h3>Credits<\/h3>\n\n<p>This plugin is a derivative work and a fork of the free version of  <a href=\"https:\/\/wordpress.org\/plugins\/polylang\/\">Polylang<\/a> by WP SYNTEX.<\/p>\n\n<p>While the core of this plugin is a fork of the free version, it incorporates the Abstract_Screen class structure originally found in the WP_Syntex\\Polylang_Pro\\Editors\\Screens namespace of Polylang Pro. This architecture has been refactored into the Linguator\\Modules\\Editors\\Screens namespace to ensure a unique environment, maintain compatibility, and prevent naming collisions with the original plugin.<\/p>\n\n<p>This plugin is distributed under the terms of the GNU General Public License, version 3 (GPLv3). We are grateful to the original authors, Fr\u00e9d\u00e9ric Demarle and the WP SYNTEX team, for their foundational work in the WordPress multilingual space.<\/p>\n\n<p><strong>Use of 3rd Party Services:<\/strong> This plugin connects to the Cool Plugins API to display information about related plugins inside the dashboard. It offers optional usage tracking and feedback submission on deactivation only after explicit user consent. Additionally, it connects to Google Translate (Google LLC) via <a href=\"translate.googleapis.com\">translate.googleapis.com<\/a> and <a href=\"translate.google.com\">translate.google.com<\/a> to translate post, page, and taxonomy content. This plugin also uses the <a href=\"https:\/\/datatables.net\/\">DataTables<\/a> library in the admin interface to display\/manage tabular data. DataTables is licensed under the <a href=\"https:\/\/datatables.net\/license\/mit\">MIT License<\/a>. Please review our <a href=\"https:\/\/my.coolplugins.net\/terms\/usage-tracking\/\">Data Usage Policy<\/a>, <a href=\"https:\/\/my.coolplugins.net\/terms\/\">TOS<\/a>, and <a href=\"https:\/\/my.coolplugins.net\/terms\/privacy-policy\/\">Privacy Policy<\/a>, <a href=\"https:\/\/policies.google.com\/terms\">Google Terms<\/a> of Service and <a href=\"https:\/\/policies.google.com\/privacy\">Google Privacy Policy<\/a>.<\/p>\n\n<!--section=installation-->\n<ol>\n<li>Log in to your WordPress dashboard.<\/li>\n<li>Navigate to the Plugins section.<\/li>\n<li>Search for \"Multilingual AI Translator\".<\/li>\n<li>Click Install and then Activate the plugin.<\/li>\n<\/ol>\n\n<p>That's it! Multilingual AI Translator \u2013 Multilingual AI Translation is now installed and activated. You can start translating your website automatically using the power of AI.<\/p>\n\n<p><strong>Language Configuration<\/strong><\/p>\n\n<p>When you first activate Multilingual AI Translator, a simple Setup Wizard will guide you through configuring your multilingual website.\nFollow these steps to complete the setup:<\/p>\n\n<ol>\n<li>Choose the main language for your website. This will be the fallback language shown when a visitor's preferred language isn't available.<\/li>\n<li>Select additional languages you want to support from the list of available languages.<\/li>\n<li>Decide how different language versions will appear in your URLs (e.g., subdirectories like \/fr\/ or query parameters like ?lang=fr).<\/li>\n<li>Turn on this option to automatically translate media details such as title, alt text, caption, and description for each selected language.<\/li>\n<li>Choose your preferred translation source \u2014 Google Translate or Chrome's built-in AI translator \u2014 to handle your translations.<\/li>\n<li>Choose how and where the language switcher will appear on your website so visitors can easily switch between languages.<\/li>\n<\/ol>\n\n<p>That's it! The setup configuration has been successfully completed. You can now start translating your website content and make it fully multilingual.<\/p>\n\n<!--section=faq-->\n<dl>\n<dt id=\"which%20languages%20are%20supported%3F\"><h3>Which languages are supported?<\/h3><\/dt>\n<dd><p>Multilingual AI Translator supports all languages that WordPress supports, including RTL languages.<\/p><\/dd>\n<dt id=\"is%20it%20compatible%20with%20all%20wordpress%20themes%3F\"><h3>Is it compatible with all WordPress themes?<\/h3><\/dt>\n<dd><p>Yes, Multilingual AI Translator is designed to work with any properly coded WordPress theme.<\/p><\/dd>\n<dt id=\"does%20it%20work%20with%20elementor%20and%20gutenberg%3F\"><h3>Does it work with Elementor and Gutenberg?<\/h3><\/dt>\n<dd><p>Yes, the Multilingual AI Translator plugin fully supports the translation of page editors like Gutenberg and Elementor. You can translate your content directly within these editors.<\/p><\/dd>\n<dt id=\"can%20i%20create%20different%20menus%20for%20each%20language%3F\"><h3>Can I create different menus for each language?<\/h3><\/dt>\n<dd><p>Yes. You can create and manage separate navigation menus for each language and let visitors switch between them.<\/p><\/dd>\n<dt id=\"where%20can%20i%20place%20the%20language%20switcher%20on%20my%20site%3F\"><h3>Where can I place the Language Switcher on my site?<\/h3><\/dt>\n<dd><p>You can place it in menus, sidebars, headers, footers, or any widget-ready area. If you use Elementor, you can add it directly to your page or template using the Elementor widget.<\/p><\/dd>\n<dt id=\"can%20i%20translate%20media%2C%20such%20as%20images%20and%20videos%3F\"><h3>Can I translate media, such as images and videos?<\/h3><\/dt>\n<dd><p>Yes. Multilingual AI Translator allows you to translate media metadata, including image titles, alt text, captions, and descriptions, ensuring your content is fully localized.<\/p><\/dd>\n<dt id=\"can%20it%20detect%20the%20visitor%27s%20browser%20language%3F\"><h3>Can it detect the visitor's browser language?<\/h3><\/dt>\n<dd><p>Yes. Multilingual AI Translator includes an option to automatically detect the visitor's browser language and display the site in that language.<\/p><\/dd>\n<dt id=\"how%20many%20languages%20can%20i%20add%20with%20multilingual%20ai%20translator%3F\"><h3>How many languages can I add with Multilingual AI Translator?<\/h3><\/dt>\n<dd><p>There is no limit. You can add as many languages as you want to your website using Multilingual AI Translator.<\/p><\/dd>\n<dt id=\"how%20can%20i%20report%20security%20bugs%3F\"><h3>How can I report security bugs?<\/h3><\/dt>\n<dd><p>You can report security bugs through the Patchstack Vulnerability Disclosure Program. The Patchstack team help validate, triage, and handle any security vulnerabilities. <a href=\"https:\/\/patchstack.com\/database\/wordpress\/plugin\/linguator-multilingual-ai-translation\/vdp\">Report a security vulnerability<\/a>.<\/p><\/dd>\n<dt id=\"why%20use%20multilingual%20ai%20translator%3F\"><h3>Why Use Multilingual AI Translator?<\/h3><\/dt>\n<dd><ul>\n<li><strong>Simple and Familiar Interface<\/strong> \u2013 Built with WordPress standards in mind, Multilingual AI Translator feels natural and easy to use, even for beginners.<\/li>\n<li><strong>AI Power Without Extra Cost<\/strong> \u2013 Leverage AI translation features for free \u2014 no need to pay for costly external AI credits.<\/li>\n<li><strong>No Monthly Fees or SaaS Dependency<\/strong> \u2013 Multilingual AI Translator runs fully inside WordPress \u2014 once installed, it\u2019s yours! No external API or subscription required.<\/li>\n<li><strong>Fully Compatible with Elementor &amp; Gutenberg<\/strong> \u2013 Translate visually designed pages effortlessly without breaking layouts.<\/li>\n<li><strong>Save Time with AI-Powered Translation<\/strong> \u2013 Instantly translate your posts, pages, and menus using advanced AI translation technology.<\/li>\n<li><strong>Reach a Global Audience<\/strong> \u2013 Translate your content into multiple languages and expand your website\u2019s reach worldwide.<\/li>\n<li><strong>Build Trust with Localized Content<\/strong> \u2013 Speak to visitors in their own language to increase engagement and conversions.<\/li>\n<li><strong>SEO-Optimized for Multilingual Sites<\/strong> \u2013 Generate search-friendly URLs for every language to improve visibility in Google.<\/li>\n<li><strong>Lightweight &amp; Optimized for Speed<\/strong> \u2013 Multilingual AI Translator is built with performance in mind and doesn\u2019t slow down your pages or website loading time.<\/li>\n<\/ul><\/dd>\n<dt id=\"is%20multilingual%20ai%20translator%20still%20in%20beta%3F\"><h3>Is Multilingual AI Translator still in beta?<\/h3><\/dt>\n<dd><p>No, Multilingual AI Translator is not in beta stage. The core features are ready to use, and we\u2019re still improving stability, performance, and adding more integrations based on user feedback.<\/p><\/dd>\n\n<\/dl>\n\n<!--section=changelog-->\n<h4>Version 1.1.1 | 03\/04\/2026<\/h4>\n\n<ul>\n<li><strong>Improved:<\/strong> General code improvements and optimizations.<\/li>\n<li><strong>Improved:<\/strong> Minor text improvements.<\/li>\n<\/ul>\n\n<h4>Version 1.1.0 | 21\/03\/2026<\/h4>\n\n<ul>\n<li><strong>Added:<\/strong> Compatibility with WPBakery Page Builder.<\/li>\n<li><strong>Fixed:<\/strong> PHP error when updating Gutenberg page translation meta fields.<\/li>\n<li><strong>Improved:<\/strong> Minor text improvements.<\/li>\n<\/ul>\n\n<h4>Version 1.0.4 | 09\/01\/2026<\/h4>\n\n<ul>\n<li><strong>Improved:<\/strong> Minor Text improvements.<\/li>\n<\/ul>\n\n<h4>Version 1.0.3 | 03\/01\/2026<\/h4>\n\n<ul>\n<li><strong>Added:<\/strong> Compatibility with the Translate Words plugin.<\/li>\n<li><strong>Improved:<\/strong> General code improvements and optimizations.<\/li>\n<\/ul>\n\n<h4>Version 1.0.2 | 18\/12\/2025<\/h4>\n\n<ul>\n<li><strong>Added:<\/strong> Introduces \"Sync Menu\" feature.<\/li>\n<li><strong>Fixed:<\/strong> Minor issues.<\/li>\n<\/ul>\n\n<h4>Version 1.0.1 | 08\/12\/2025<\/h4>\n\n<ul>\n<li><strong>Added:<\/strong> Introduces \"lmat_sanatize_id()\" function.<\/li>\n<li><strong>Improved:<\/strong> Rewrite get_terms() more efficiently.<\/li>\n<li><strong>Improved:<\/strong> Cache management with better performance.<\/li>\n<li><strong>Improved:<\/strong> Simplifies the usage of these two methods language::add() &amp; language::update().<\/li>\n<li><strong>Tested:<\/strong> Tested Upto WordPress Version 6.9.<\/li>\n<\/ul>\n\n<h4>Version 1.0.0 (Beta) | 01\/12\/2025<\/h4>\n\n<ul>\n<li><strong>Added:<\/strong> Glossary management feature added<\/li>\n<li><strong>Added:<\/strong> Glossary support in single page &amp; bulk translation.<\/li>\n<li><strong>Added:<\/strong> Polylang &amp; WPML to Multilingual AI Translator migration support.<\/li>\n<li><strong>Improved:<\/strong> Bulk translation In Progress text styling issue.<\/li>\n<\/ul>\n\n<h4>Version 0.0.8 (Beta) | 20\/11\/2025<\/h4>\n\n<ul>\n<li><strong>Added:<\/strong> Rank math seo plugin integration and support added.<\/li>\n<li><strong>Fixed:<\/strong> Fixed JS error in gutenberg page translation meta fields update.<\/li>\n<li><strong>Fixed:<\/strong> PHP error Undefined terms key in array.<\/li>\n<li><strong>Fixed:<\/strong> home_url format issue after URL setting update.<\/li>\n<li><strong>Improved:<\/strong> Improve plugin activation &amp; deactivation.<\/li>\n<li><strong>Improved:<\/strong> User capabilites &amp; permisition checks improvement.<\/li>\n<li><strong>Improved:<\/strong> Optimize plugin code performance.<\/li>\n<\/ul>\n\n<h4>Version 0.0.7 (Beta) | 13\/11\/2025<\/h4>\n\n<ul>\n<li><strong>Added:<\/strong> Rank math seo table block translation support &amp; core table block header &amp; footer translation support.<\/li>\n<li><strong>Fixed:<\/strong> content formatting issue in bulk translation.<\/li>\n<li><strong>Fixed:<\/strong> String modal open If language not supported.<\/li>\n<li><strong>Fixed:<\/strong> Fixed translated URL php error with sprintf function.<\/li>\n<li><strong>Fixed:<\/strong> wysiwyg content line break formatting issue.<\/li>\n<li><strong>Fixed:<\/strong> Deserialization of untrusted data.<\/li>\n<li><strong>Fixed:<\/strong> Prevent deleting the media if attachments exist in other language.<\/li>\n<li><strong>Fixed:<\/strong> Wrong local message not displaying in manage language page.<\/li>\n<li><strong>Improved:<\/strong> Removed default language from bulk translation.<\/li>\n<li><strong>Improved:<\/strong> Settings page save changes button visibility check.<\/li>\n<li><strong>Improved:<\/strong> Setup page UI.<\/li>\n<\/ul>\n\n<h4>Version 0.0.6 (Beta) | 23\/10\/2025<\/h4>\n\n<ul>\n<li><strong>Fixed:<\/strong> Missing JavaScript file issue.<\/li>\n<\/ul>\n\n<h4>Version 0.0.5 (Beta) | 15\/10\/2025<\/h4>\n\n<ul>\n<li><strong>Fixed:<\/strong> Core Table block header and footer translation issue.<\/li>\n<li><strong>Improved:<\/strong> Single page and bulk translation formatting for content and design.<\/li>\n<\/ul>\n\n<h4>Version 0.0.4 (Beta) | 14\/10\/2025<\/h4>\n\n<ul>\n<li><strong>Added:<\/strong> <strong>AI-Powered Translation System<\/strong> with multiple translation providers (Google Translate and Chrome Local AI).<\/li>\n<li><strong>Added:<\/strong> Real-time translation support for <strong>Gutenberg<\/strong>, <strong>Elementor<\/strong>, and <strong>Classic Editor<\/strong>.<\/li>\n<li><strong>Added:<\/strong> <strong>Bulk Translation<\/strong> feature for mass translating posts, pages, and taxonomies with progress tracking.<\/li>\n<li><strong>Added:<\/strong> <strong>Inline Translation System<\/strong> for block-by-block translation with live preview.<\/li>\n<li><strong>Added:<\/strong> <strong>Page Translation Module<\/strong> to create new translations from existing content, including SEO metadata.<\/li>\n<li><strong>Added:<\/strong> <strong>Language Management<\/strong> with unlimited languages,  RTL support, and browser language detection.<\/li>\n<li><strong>Added:<\/strong> <strong>Content Synchronization<\/strong> for post metadata, terms, and taxonomy relationships.<\/li>\n<li><strong>Added:<\/strong> <strong>Language Switcher Options<\/strong> for widget, Gutenberg block, Elementor, and navigation menu integration.<\/li>\n<li><strong>Added:<\/strong> <strong>Custom Field Translation Management Panel<\/strong> for advanced field-level translations.<\/li>\n<li><strong>Added:<\/strong> <strong>Menu Filter<\/strong> for advanced multilingual menu management.<\/li>\n<li><strong>Added:<\/strong> <strong>Performance Optimization<\/strong> with enhanced caching and translation speed.<\/li>\n<li><strong>Improved:<\/strong> Default status (draft\/publish) handling for translated posts and pages.<\/li>\n<li><strong>Improved:<\/strong> Overall settings panel design and usability.<\/li>\n<li><strong>Improved:<\/strong> Codebase performance and admin UI styling.<\/li>\n<\/ul>\n\n<h4>Version 0.0.3  (Beta) | 05\/09\/2025<\/h4>\n\n<ul>\n<li>Fixed escaping and sanitization issues.<\/li>\n<li>Minor bug fixes.<\/li>\n<\/ul>\n\n<h4>Version 0.0.2   (Beta) | 02\/08\/2025<\/h4>\n\n<ul>\n<li>Fixed issue with translated strings.<\/li>\n<li>Fixed Minor issues.<\/li>\n<\/ul>\n\n<h4>Version 0.0.1   (Beta) | 07\/06\/2025<\/h4>\n\n<ul>\n<li>Initial release with core multilingual features for WP approval<\/li>\n<\/ul>","raw_excerpt":"Translate your WordPress site into multiple languages with AI. Fast, simple, SEO-friendly multilingual setup.","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/fr-ca.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin\/246445","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fr-ca.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin"}],"about":[{"href":"https:\/\/fr-ca.wordpress.org\/plugins\/wp-json\/wp\/v2\/types\/plugin"}],"replies":[{"embeddable":true,"href":"https:\/\/fr-ca.wordpress.org\/plugins\/wp-json\/wp\/v2\/comments?post=246445"}],"author":[{"embeddable":true,"href":"https:\/\/fr-ca.wordpress.org\/plugins\/wp-json\/wporg\/v1\/users\/coolplugins"}],"wp:attachment":[{"href":"https:\/\/fr-ca.wordpress.org\/plugins\/wp-json\/wp\/v2\/media?parent=246445"}],"wp:term":[{"taxonomy":"plugin_section","embeddable":true,"href":"https:\/\/fr-ca.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_section?post=246445"},{"taxonomy":"plugin_tags","embeddable":true,"href":"https:\/\/fr-ca.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_tags?post=246445"},{"taxonomy":"plugin_category","embeddable":true,"href":"https:\/\/fr-ca.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_category?post=246445"},{"taxonomy":"plugin_contributors","embeddable":true,"href":"https:\/\/fr-ca.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_contributors?post=246445"},{"taxonomy":"plugin_business_model","embeddable":true,"href":"https:\/\/fr-ca.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_business_model?post=246445"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}