[ADD] general: integrations google translate
closes odoo/documentation#8405
X-original-commit: 880f1cc01d
Signed-off-by: Samuel Lieber (sali) <sali@odoo.com>
Signed-off-by: Timothy Kukulka (tiku) <tiku@odoo.com>
This commit is contained in:
parent
d27481635c
commit
2cd4a12dd4
@ -7,3 +7,4 @@ Integrations
|
|||||||
integrations/mail_plugins
|
integrations/mail_plugins
|
||||||
integrations/unsplash
|
integrations/unsplash
|
||||||
integrations/geolocation
|
integrations/geolocation
|
||||||
|
integrations/google_translate
|
||||||
|
123
content/applications/general/integrations/google_translate.rst
Normal file
123
content/applications/general/integrations/google_translate.rst
Normal file
@ -0,0 +1,123 @@
|
|||||||
|
================
|
||||||
|
Google Translate
|
||||||
|
================
|
||||||
|
|
||||||
|
*Google Translate* can be used to translate user generated text in the Odoo chatter.
|
||||||
|
|
||||||
|
Google API console
|
||||||
|
==================
|
||||||
|
|
||||||
|
A majority of the setup for integrating *Google Translate* into Odoo is done with the *Google API
|
||||||
|
console*. Once the following processes are complete, an *API key* is created to input in Odoo.
|
||||||
|
|
||||||
|
.. seealso::
|
||||||
|
`Google Translate setup on Google <https://cloud.google.com/translate/docs/setup>`_
|
||||||
|
|
||||||
|
Create a new project
|
||||||
|
--------------------
|
||||||
|
|
||||||
|
To get started, go to the `Google API Console <https://console.developers.google.com>`_. Then, log
|
||||||
|
in with a *Google Workspace* account, if there is one. If not, log in with a personal Gmail account
|
||||||
|
(this should match the email address that has billing attached to it).
|
||||||
|
|
||||||
|
Next, click :guilabel:`Create Project` on the far-right of the :guilabel:`OAuth consent screen`.
|
||||||
|
|
||||||
|
.. tip::
|
||||||
|
If the *Google API Console* has existing projects, click the drop-down menu next to the
|
||||||
|
:guilabel:`Google Cloud` icon, and a pop-over window appears. Next, click :guilabel:`New Project`
|
||||||
|
top-right of the pop-over window.
|
||||||
|
|
||||||
|
On the :guilabel:`New Project` screen, rename the :guilabel:`Project name` to `Odoo Translate`, and
|
||||||
|
browse for the :guilabel:`Location`. Set the :guilabel:`Location` as the *Google Workspace
|
||||||
|
organization*. If a personal Gmail account is being used, leave the :guilabel:`Location` as
|
||||||
|
:guilabel:`No Organization`.
|
||||||
|
|
||||||
|
.. image:: google_translate/new-project.png
|
||||||
|
:align: center
|
||||||
|
:alt: Project Name and Location for Google OAuth.
|
||||||
|
|
||||||
|
Click on :guilabel:`Create` to finish this step.
|
||||||
|
|
||||||
|
API library
|
||||||
|
-----------
|
||||||
|
|
||||||
|
Next, the *Cloud Translation API* needs to be installed on this newly-created project. To do that,
|
||||||
|
click :menuselection:`Library` in the left menu. Then, search the term `Cloud Translation API`, and
|
||||||
|
click into the result. This should be a *Google Enterprise API* labeled :guilabel:`Cloud Translation
|
||||||
|
API`.
|
||||||
|
|
||||||
|
Click :guilabel:`Enable` to install the library on this project.
|
||||||
|
|
||||||
|
.. important::
|
||||||
|
Using the *Google Translate* API **requires** a current billing account with `Google
|
||||||
|
<https://https://myaccount.google.com/>`_.
|
||||||
|
|
||||||
|
Once a billing account is setup with *Google* and the library is enabled, click :guilabel:`Manage`
|
||||||
|
to finish configuration on the API.
|
||||||
|
|
||||||
|
Create credentials
|
||||||
|
------------------
|
||||||
|
|
||||||
|
Now that the project is set up, and the *Cloud Translation API* is enabled, credentials **must** be
|
||||||
|
created. This includes the *API key*.
|
||||||
|
|
||||||
|
To begin this process, click :menuselection:`Credentials` in the left sidebar menu.
|
||||||
|
|
||||||
|
Then, click :guilabel:`Create Credentials` in the top menu, and select :guilabel:`API key` from the
|
||||||
|
drop-down menu.
|
||||||
|
|
||||||
|
.. image:: google_translate/api-key.png
|
||||||
|
:align: center
|
||||||
|
:alt: Create an API key in the Google API console.
|
||||||
|
|
||||||
|
Copy the :guilabel:`API key` for use in the next section.
|
||||||
|
|
||||||
|
.. important::
|
||||||
|
For security purposes, the usage of the *API key* can be restricted.
|
||||||
|
|
||||||
|
To do that, go to the *API restrictions* by clicking on :guilabel:`Edit API key` in the pop-over
|
||||||
|
window, or by clicking on the listed API key on the :guilabel:`Credentials` page. From here, key
|
||||||
|
restrictions can be set. This includes setting an application to restrict the use of the API key,
|
||||||
|
and whether this API key can call any API.
|
||||||
|
|
||||||
|
It is recommended that the Odoo *Translate API* be restricted to **only** allow requests from the
|
||||||
|
configured Odoo database and to the *Cloud Translation API*.
|
||||||
|
|
||||||
|
To add the website restriction, click :guilabel:`Websites`, under the :guilabel:`Set an
|
||||||
|
application restriction`. Then, enter the address of the database *Google Translate* is being
|
||||||
|
used in, by clicking on :guilabel:`Add`. Lastly, add the :abbr:`URL (Uniform Resource Locator)`,
|
||||||
|
and click :guilabel:`Done`.
|
||||||
|
|
||||||
|
To restrict use of the key to a selected API, first, select :guilabel:`Restrict key`, under the
|
||||||
|
:guilabel:`API restrictions` section. Then use the drop-down menu to choose the API being
|
||||||
|
configured (*Cloud Translation API*).
|
||||||
|
|
||||||
|
.. tip::
|
||||||
|
- Save the API key: copy the API key and store it somewhere secure.
|
||||||
|
- Do **not** share the API key publicly or expose it in client-side code.
|
||||||
|
|
||||||
|
Odoo configuration
|
||||||
|
==================
|
||||||
|
|
||||||
|
To access the integration in Odoo, navigate to the :menuselection:`Settings app --> Discuss
|
||||||
|
section`. Enter the API key into the field labeled :guilabel:`Message Translation`. Then,
|
||||||
|
:guilabel:`Save` the settings, and *Google Translate* can be used in any chatter throughout the
|
||||||
|
database.
|
||||||
|
|
||||||
|
.. image:: google_translate/odoo-config.png
|
||||||
|
:align: center
|
||||||
|
:alt: Odoo configuration of the API key from the *Google API Console*.
|
||||||
|
|
||||||
|
Translate chatter
|
||||||
|
=================
|
||||||
|
|
||||||
|
To translate a user's text from another language, click the :guilabel:`... (three dot)` icon menu to
|
||||||
|
the right of the chatter. Then, select :guilabel:`Translate`. The content translates to the
|
||||||
|
*language* set on the user's preferences.
|
||||||
|
|
||||||
|
.. image:: google_translate/google-translate.png
|
||||||
|
:align: center
|
||||||
|
:alt: Google Translate present in an Odoo database's chatter.
|
||||||
|
|
||||||
|
.. seealso::
|
||||||
|
:ref:`language/change-user-language`
|
Binary file not shown.
After Width: | Height: | Size: 24 KiB |
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
Binary file not shown.
After Width: | Height: | Size: 7.0 KiB |
Binary file not shown.
After Width: | Height: | Size: 28 KiB |
@ -23,6 +23,8 @@ select a language to install and click on **LOAD.**
|
|||||||
If you check the "Websites to translate" checkbox you will have the option
|
If you check the "Websites to translate" checkbox you will have the option
|
||||||
to change the navigation language on your website.
|
to change the navigation language on your website.
|
||||||
|
|
||||||
|
.. _language/change-user-language:
|
||||||
|
|
||||||
Change your language
|
Change your language
|
||||||
====================
|
====================
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user