[IMP] sale config plugins: improve tooltip text

bzr revid: rco@openerp.com-20120321104759-kj5pn2rv7o1y26pm
This commit is contained in:
Raphael Collet 2012-03-21 11:47:59 +01:00
parent ff05f5dd8f
commit a9e02f7df1
3 changed files with 13 additions and 17 deletions

View File

@ -26,22 +26,18 @@ class plugin_configuration(osv.osv_memory):
_columns = { _columns = {
'module_plugin_thunderbird': fields.boolean('Thunderbird plugin', 'module_plugin_thunderbird': fields.boolean('Thunderbird plugin',
help=""" help="""The plugin allows you archive email and its attachments to the selected
The plugin allows you archive email and its attachments to the selected OpenERP objects. You can select a partner, a task, a project, an analytical
OpenERP objects. You can select a partner, a task, a project, an analytical account, or any other object and attach the selected mail as a .eml file in
account, or any other object and attach the selected mail as a .eml file in the attachment of a selected record. You can create documents for CRM Lead,
the attachment of a selected record. You can create documents for CRM Lead, HR Applicant and Project Issue from the selected emails.
HR Applicant and Project Issue from selected mails. This installs the module plugin_thunderbird."""),
It installs plugin_thunderbird module.
"""),
'module_plugin_outlook': fields.boolean('Outlook plugin', 'module_plugin_outlook': fields.boolean('Outlook plugin',
help=""" help="""The Outlook plugin allows you to select an object that you would like to add
Outlook plug-in allows you to select an object that you would like to add to your email and its attachments from MS Outlook. You can select a partner, a task,
to your email and its attachments from MS Outlook. You can select a partner, a task, a project, an analytical account, or any other object and archive a selected
a project, an analytical account, or any other object and archive selected email into an OpenERP mail message with attachments.
mail into mail.message with attachments. This installs the module plugin_outlook."""),
It installs plugin_outlook module.
"""),
} }
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -56,7 +56,7 @@
<field name="inherit_id" ref="mail.view_sales_config_plugin"/> <field name="inherit_id" ref="mail.view_sales_config_plugin"/>
<field name="arch" type="xml"> <field name="arch" type="xml">
<field name="module_plugin_outlook" position="after"> <field name="module_plugin_outlook" position="after">
<button name="%(action_outlook_installer)d" type="action" string="Configure Outlook" icon="gtk-execute"/> <button name="%(action_outlook_installer)d" type="action" string="Configure" icon="gtk-execute"/>
</field> </field>
</field> </field>
</record> </record>

View File

@ -63,7 +63,7 @@
<field name="inherit_id" ref="mail.view_sales_config_plugin"/> <field name="inherit_id" ref="mail.view_sales_config_plugin"/>
<field name="arch" type="xml"> <field name="arch" type="xml">
<field name="module_plugin_thunderbird" position="after"> <field name="module_plugin_thunderbird" position="after">
<button name="%(action_thunderbird_installer)d" type="action" string="Configure Thunderbird" icon="gtk-execute"/> <button name="%(action_thunderbird_installer)d" type="action" string="Configure" icon="gtk-execute"/>
</field> </field>
</field> </field>
</record> </record>