diff --git a/addons/thunderbird/__openerp__.py b/addons/thunderbird/__openerp__.py index ed16b4909a9..03c974013fa 100644 --- a/addons/thunderbird/__openerp__.py +++ b/addons/thunderbird/__openerp__.py @@ -29,11 +29,11 @@ "description": """ This module is required for the thuderbird plug-in to work properly. - - This allows you to select an object that you’d like to add - to your email and its attachments. You can select a partner, a task, - a project, an analytical account, or any other object and attach selected - mail as .eml file in attachment of selected record. + 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 + account,or any other object and attach selected mail as .eml file in + attachment of selected record. You can create Documents for crm Lead, + HR Applicant and project issue from selected mails. """, "init_xml" : [], diff --git a/addons/thunderbird/partner/partner.py b/addons/thunderbird/partner/partner.py index 5c77c622c79..1eb898e527e 100644 --- a/addons/thunderbird/partner/partner.py +++ b/addons/thunderbird/partner/partner.py @@ -131,11 +131,11 @@ email_server_tools() class thunderbird_partner(osv.osv_memory): _name = "thunderbird.partner" - _description="Thunderbid mails" + _description="Thunderbid Plugin Tools" def create_contact(self,cr,user,vals): dictcreate = dict(vals) - # Set False value if 'undefined'. Thunerbird set 'undefined' if user did not set any value. + # Set False value if 'undefined' for record. Id User does not spicify the values, Thunerbird set 'undefined' by default for new contact. for key in dictcreate: if dictcreate[key] == 'undefined': dictcreate[key] = False diff --git a/addons/thunderbird/plugin/openerp_plugin.xpi b/addons/thunderbird/plugin/openerp_plugin.xpi index 40c39e10389..a6b6a0dd0b8 100644 Binary files a/addons/thunderbird/plugin/openerp_plugin.xpi and b/addons/thunderbird/plugin/openerp_plugin.xpi differ