30 lines
1.1 KiB
Python
30 lines
1.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
|
{
|
|
'name': 'Automated Translations through Gengo API',
|
|
'author' : 'Odoo S.A',
|
|
'category': 'Tools',
|
|
'description': """
|
|
Automated Translations through Gengo API
|
|
========================================
|
|
|
|
This module will install passive scheduler job for automated translations
|
|
using the Gengo API. To activate it, you must
|
|
1) Configure your Gengo authentication parameters under `Settings > Companies > Gengo Parameters`
|
|
2) Launch the wizard under `Settings > Application Terms > Gengo: Manual Request of Translation` and follow the wizard.
|
|
|
|
This wizard will activate the CRON job and the Scheduler and will start the automatic translation via Gengo Services for all the terms where you requested it.
|
|
""",
|
|
'depends': ['base_setup'],
|
|
'data': [
|
|
'data/ir_cron_data.xml',
|
|
'views/ir_translation_views.xml',
|
|
'views/res_config_settings_views.xml',
|
|
'wizard/base_gengo_translations_view.xml',
|
|
],
|
|
'demo': ['data/res_company_demo.xml'],
|
|
'test': [],
|
|
'installable': True,
|
|
'auto_install': False,
|
|
}
|