{"id":406560,"date":"2024-07-09T09:29:02","date_gmt":"2024-07-09T09:29:02","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=406560"},"modified":"2025-02-14T10:17:51","modified_gmt":"2025-02-14T10:17:51","slug":"odoo-translation-using-command-line-interface-cli","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/odoo-translation-using-command-line-interface-cli\/","title":{"rendered":"Odoo Translation Using Command Line Interface (CLI)"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Introduction<\/h2>\n\n\n\n<p>Odoo, a powerful <a href=\"https:\/\/aureuserp.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">open source ERP platform<\/a> and business application suite, provides a robust translation system to adapt the platform to different languages and locales. <\/p>\n\n\n\n<p>In this technical blog, we&#8217;ll explore how to manage translations efficiently using the <a href=\"https:\/\/webkul.com\/blog\/beginner-guide-odoo-clicommand-line-interface\/\">Command Line Interface in Odoo<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites of Using Command Line Interface (CLI)<\/h2>\n\n\n\n<p>Before we dive in, ensure you have the following in place:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Odoo installed on your system<\/li>\n\n\n\n<li>Access to the Odoo server through the CLI<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Odoo Command Line Interface (CLI)<\/h2>\n\n\n\n<p>To start Odoo using the CLI, navigate to the directory where .\/odoo-bin is present in the directory:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"166\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/07\/cli-1200x166.webp\" alt=\"Command Line Interface (CLI)\" class=\"wp-image-452041\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/07\/cli-1200x166.webp 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/07\/cli-300x41.webp 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/07\/cli-250x35.webp 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/07\/cli-768x106.webp 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/07\/cli-1536x212.webp 1536w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/07\/cli.webp 1577w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Odoo Translation via Command Line Interface (CLI)<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Activating Language in Odoo via CLI<\/h3>\n\n\n\n<p>Activating a language using CLI is a streamlined process. It allows you to customize the language preferences for users, enhancing their experience with Odoo. <\/p>\n\n\n\n<p>This approach is particularly handy for administrators seeking to tailor the platform to their users&#8217; linguistic needs.<\/p>\n\n\n\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">.\/odoo-bin -c \/etc\/odoo-server.conf -d your_database_name --load-language en_IN<\/pre>\n<\/div><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Exporting &#8216;<code>.po'<\/code> Files in Odoo with CLI<\/h3>\n\n\n\n<p>Exporting Portable Objects (<code>po<\/code>) files through the CLI is a straightforward process.<\/p>\n\n\n\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">.\/odoo-bin -c \/etc\/odoo-server.conf -d your_database_name --load-language eu_ES --i18n-export=\/opt\/en.po --modules=your_module --logfile=\/ --stop-after-init\n<\/pre>\n<\/div><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Translating Strings<\/h3>\n\n\n\n<p>Open the <code>.po<\/code> file in a text editor. Here, you can add the translations for each string by filling in the <code>msgstr<\/code> field.<\/p>\n\n\n\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">msgid \"Your Original String\"\nmsgstr \"Your Translated String\"<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Importing &#8216;<code>.po<\/code>&#8216; Files in Odoo using CLI<\/h3>\n\n\n\n<p>Before importing, ensure you have a valid <code>.po<\/code> file containing the translations you want to add. If you&#8217;re working with external translators, they typically provide this file. Use the following command to import the <code>.po<\/code> file:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">.\/odoo-bin -c \/etc\/odoo.conf -d your_database_name -l en_Us --i18n-import=\/opt\/en.po --modules=your_module --logfile=\/  --stop-after-init<\/pre>\n<\/div><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Overwriting Existing Terms with Odoo CLI<\/h3>\n\n\n\n<p>Updating translations becomes crucial when improvements are made or inaccuracies are detected. Odoo&#8217;s CLI streamlines this process, offering an efficient way to overwrite existing terms.<\/p>\n\n\n\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">.\/odoo-bin -c \/etc\/odoo.conf -d your_database_name -l en_Us --i18n-overwrite=\/opt\/en.po --modules=your_module --logfile=\/  --stop-after-init<\/pre>\n<\/div><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Key Advantages of Employing the Command Line Interface (CLI) for Translations<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Streamlines translation management for large-scale projects.<\/li>\n\n\n\n<li>Allows for automation and batch processing, significantly speeding up the process.<\/li>\n\n\n\n<li>Aligns seamlessly with existing workflows of developers accustomed to command-line environments.<\/li>\n\n\n\n<li>Provides detailed feedback and error messages for easier identification and resolution of translation-related issues.<\/li>\n\n\n\n<li>Integrates seamlessly with advanced translation editors and scripts, providing flexibility for translators.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Wrapping Up: Elevating Translations with Odoo CLI<\/h2>\n\n\n\n<p>Incorporating Odoo&#8217;s Command Line Interface (CLI) into your translation workflow opens a realm of efficiency and precision. <\/p>\n\n\n\n<p>This advanced method, complementing the web interface, equips developers and administrators with a versatile toolkit for globalizing applications.<\/p>\n\n\n\n<p>The CLI streamlines the translation process, particularly for large-scale projects, by enabling automation, batch processing, and seamless integration with development workflows. <\/p>\n\n\n\n<p>It empowers teams to handle extensive translation files efficiently and offers advanced customization and scripting capabilities.<\/p>\n\n\n\n<p>For a comprehensive understanding of Odoo translation procedures, encompassing advanced techniques and best practices, we recommend referring to the official Odoo developer documentation on translation: <a href=\"https:\/\/www.odoo.com\/documentation\/16.0\/developer\/reference\/cli.html\">Odoo Translation Documentation<\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>NEED HELP?<\/strong><\/h2>\n\n\n\n<p>Hope you find the guide helpful! Please feel free to share your feedback in the comments below.<\/p>\n\n\n\n<p>If you still have any issues\/queries regarding the same, please raise a ticket at the&nbsp;<a href=\"https:\/\/webkul.uvdesk.com\/en\/customer\/create-ticket\/\" target=\"_blank\" rel=\"noreferrer noopener\">UV Desk<\/a>.<\/p>\n\n\n\n<p>For any doubt, contact us at our&nbsp;<a href=\"mailto:support@webkul.com\" target=\"_blank\" rel=\"noreferrer noopener\">support mail<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction Odoo, a powerful open source ERP platform and business application suite, provides a robust translation system to adapt the platform to different languages and locales. In this technical blog, we&#8217;ll explore how to manage translations efficiently using the Command Line Interface in Odoo. Prerequisites of Using Command Line Interface (CLI) Before we dive in, <a href=\"https:\/\/webkul.com\/blog\/odoo-translation-using-command-line-interface-cli\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":602,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2007],"tags":[],"class_list":["post-406560","post","type-post","status-publish","format-standard","hentry","category-odoo"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Odoo Translation Using Command Line Interface (CLI)<\/title>\n<meta name=\"description\" content=\"Activating a language using CLI is a streamlined process. It allows you to customize the language preferences for users.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/odoo-translation-using-command-line-interface-cli\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Odoo Translation Using Command Line Interface (CLI)\" \/>\n<meta property=\"og:description\" content=\"Activating a language using CLI is a streamlined process. It allows you to customize the language preferences for users.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/odoo-translation-using-command-line-interface-cli\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-07-09T09:29:02+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-02-14T10:17:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/07\/cli-1200x166.webp\" \/>\n<meta name=\"author\" content=\"Akshat Jindal\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Akshat Jindal\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/odoo-translation-using-command-line-interface-cli\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/odoo-translation-using-command-line-interface-cli\/\"},\"author\":{\"name\":\"Akshat Jindal\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/22aa2b4b9ed2adced1652d5c1d1d69dc\"},\"headline\":\"Odoo Translation Using Command Line Interface (CLI)\",\"datePublished\":\"2024-07-09T09:29:02+00:00\",\"dateModified\":\"2025-02-14T10:17:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/odoo-translation-using-command-line-interface-cli\/\"},\"wordCount\":491,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/odoo-translation-using-command-line-interface-cli\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/07\/cli-1200x166.webp\",\"articleSection\":[\"Odoo\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/odoo-translation-using-command-line-interface-cli\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/odoo-translation-using-command-line-interface-cli\/\",\"url\":\"https:\/\/webkul.com\/blog\/odoo-translation-using-command-line-interface-cli\/\",\"name\":\"Odoo Translation Using Command Line Interface (CLI)\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/odoo-translation-using-command-line-interface-cli\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/odoo-translation-using-command-line-interface-cli\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/07\/cli-1200x166.webp\",\"datePublished\":\"2024-07-09T09:29:02+00:00\",\"dateModified\":\"2025-02-14T10:17:51+00:00\",\"description\":\"Activating a language using CLI is a streamlined process. It allows you to customize the language preferences for users.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/odoo-translation-using-command-line-interface-cli\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/odoo-translation-using-command-line-interface-cli\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/odoo-translation-using-command-line-interface-cli\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/07\/cli.webp\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/07\/cli.webp\",\"width\":1577,\"height\":218},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/odoo-translation-using-command-line-interface-cli\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Odoo Translation Using Command Line Interface (CLI)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/22aa2b4b9ed2adced1652d5c1d1d69dc\",\"name\":\"Akshat Jindal\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/04f956bf3cba34e3155a81b6ee5af8caa7d17da2405215280345b74c4860c459?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/04f956bf3cba34e3155a81b6ee5af8caa7d17da2405215280345b74c4860c459?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Akshat Jindal\"},\"description\":\"Akshat is a skilled Business Analyst with expertise in the Odoo platform. He excels in streamlining business processes, delivering actionable insights, and ensuring seamless system integration. His analytical approach and strategic mindset empower businesses to achieve operational excellence and drive growth.\",\"url\":\"https:\/\/webkul.com\/blog\/author\/akshatjindal-int786\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Odoo Translation Using Command Line Interface (CLI)","description":"Activating a language using CLI is a streamlined process. It allows you to customize the language preferences for users.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/webkul.com\/blog\/odoo-translation-using-command-line-interface-cli\/","og_locale":"en_US","og_type":"article","og_title":"Odoo Translation Using Command Line Interface (CLI)","og_description":"Activating a language using CLI is a streamlined process. It allows you to customize the language preferences for users.","og_url":"https:\/\/webkul.com\/blog\/odoo-translation-using-command-line-interface-cli\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2024-07-09T09:29:02+00:00","article_modified_time":"2025-02-14T10:17:51+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/07\/cli-1200x166.webp","type":"","width":"","height":""}],"author":"Akshat Jindal","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Akshat Jindal","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/odoo-translation-using-command-line-interface-cli\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/odoo-translation-using-command-line-interface-cli\/"},"author":{"name":"Akshat Jindal","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/22aa2b4b9ed2adced1652d5c1d1d69dc"},"headline":"Odoo Translation Using Command Line Interface (CLI)","datePublished":"2024-07-09T09:29:02+00:00","dateModified":"2025-02-14T10:17:51+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/odoo-translation-using-command-line-interface-cli\/"},"wordCount":491,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/odoo-translation-using-command-line-interface-cli\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/07\/cli-1200x166.webp","articleSection":["Odoo"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/odoo-translation-using-command-line-interface-cli\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/odoo-translation-using-command-line-interface-cli\/","url":"https:\/\/webkul.com\/blog\/odoo-translation-using-command-line-interface-cli\/","name":"Odoo Translation Using Command Line Interface (CLI)","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/odoo-translation-using-command-line-interface-cli\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/odoo-translation-using-command-line-interface-cli\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/07\/cli-1200x166.webp","datePublished":"2024-07-09T09:29:02+00:00","dateModified":"2025-02-14T10:17:51+00:00","description":"Activating a language using CLI is a streamlined process. It allows you to customize the language preferences for users.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/odoo-translation-using-command-line-interface-cli\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/odoo-translation-using-command-line-interface-cli\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/odoo-translation-using-command-line-interface-cli\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/07\/cli.webp","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/07\/cli.webp","width":1577,"height":218},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/odoo-translation-using-command-line-interface-cli\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Odoo Translation Using Command Line Interface (CLI)"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/22aa2b4b9ed2adced1652d5c1d1d69dc","name":"Akshat Jindal","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/04f956bf3cba34e3155a81b6ee5af8caa7d17da2405215280345b74c4860c459?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/04f956bf3cba34e3155a81b6ee5af8caa7d17da2405215280345b74c4860c459?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Akshat Jindal"},"description":"Akshat is a skilled Business Analyst with expertise in the Odoo platform. He excels in streamlining business processes, delivering actionable insights, and ensuring seamless system integration. His analytical approach and strategic mindset empower businesses to achieve operational excellence and drive growth.","url":"https:\/\/webkul.com\/blog\/author\/akshatjindal-int786\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/406560","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/602"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=406560"}],"version-history":[{"count":10,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/406560\/revisions"}],"predecessor-version":[{"id":483231,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/406560\/revisions\/483231"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=406560"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=406560"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=406560"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}