[FIX] Set cron job to the false by default and module decrpation to use it.

bzr revid: jam@tinyerp.com-20120831105540-hnt2zbx8fz8i6i01
This commit is contained in:
Jigar Amin - OpenERP 2012-08-31 16:25:40 +05:30
parent ea60ca1e27
commit 422e3f1fbc
2 changed files with 9 additions and 2 deletions

View File

@ -24,6 +24,13 @@
'category': 'Tools',
'description': """
Automated Translations through Gengo API
----------------------------------------
The module will install passive Scheduler job for Automated Translations
using Gnego API. To active translation Configure your gengo authentication
parameters under `Settings > Companies > Gengo Parameters1 and Launch the
Gengo Language Sync Wizard under `Settings > Application Terms >
Gengo: Manual Request of Translation` and follow the wizard. This wizard will
active the Scheduler and will start active translation via Gengo Services,
""",
'author': 'OpenERP SA',
'website': 'http://www.openerp.com',

View File

@ -4,7 +4,7 @@
<!--Scheduler sync Receive Request-->
<record id="gengo_sync_receive_request_scheduler" model="ir.cron">
<field name="name" >Gengo Sync Translation (Response)</field>
<field eval="True" name="active"/>
<field eval="False" name="active"/>
<field name="interval_number">20</field>
<field name="interval_type">minutes</field>
<field name="numbercall">-1</field>
@ -16,7 +16,7 @@
<!--Scheduler Sync Send Request-->
<record id="gengo_sync_send_request_scheduler" model="ir.cron">
<field name="name" >Gengo Sync Translation (Request)</field>
<field eval="True" name="active"/>
<field eval="False" name="active"/>
<field name="interval_number">20</field>
<field name="interval_type">minutes</field>
<field name="numbercall">-1</field>