Book Image

Odoo Development Cookbook

By : Holger Brunn, Alexandre Fayolle, Daniel Reis
Book Image

Odoo Development Cookbook

By: Holger Brunn, Alexandre Fayolle, Daniel Reis

Overview of this book

Odoo is a full-featured open source ERP with a focus on extensibility. The flexibility and sustainability of open source is also a key selling point of Odoo. It is built on a powerful framework for rapid application development, both for back-end applications and front-end websites. The book starts by covering Odoo installation and administration, and provides a gentle introduction to application development. It then dives deep into several of the areas that an experienced developer will need to use. You’ll learn implement business logic, adapt the UI, and extend existing features.
Table of Contents (23 chapters)
Odoo Development Cookbook
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Import translation files


The usual practice to load translations is by placing the PO files inside the module's i18n subdirectory. Whenever the addon module is installed or upgraded, the translation files are loaded and the new translated strings are added.

But there may be cases where we want to directly import a translation file. In this recipe, we will see how to load a translation file, either from the web client or from the command line.

Getting ready

We need to have the Developer Mode activated. If it's not, activate it in the Odoo About dialog. We are also expected to have a translation file to be imported; myfile.po, for example.

How to do it...

To import the translation terms, follow these steps:

  1. In the web client user interface, from the Settings top menu select the Translations | Import/Export | Import Translation menu option.

  2. On the Import Translations dialog, fill out the language name and the language code, and select the file to import. Finally, click on the Import button to perform...