[FIX] product_email_template: typos

bzr revid: odo@openerp.com-20140403142836-9na8qo7y7gqr0nmi
This commit is contained in:
Olivier Dony 2014-04-03 16:28:36 +02:00
parent f120d6ffb7
commit b89d6d99c8
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ Add email templates to products to be send on invoice confirmation
==================================================================
With this module, link your products to a template to send complete information and tools to your customer.
For instance when invoicing a training, the training agenda and materials will automatically be send to your customers.'
For instance when invoicing a training, the training agenda and materials will automatically be sent to your customers.'
""",
'website': 'http://www.openerp.com',
'demo': [

View File

@ -13,7 +13,7 @@ class product_template(osv.Model):
_columns = {
'email_template_id': fields.many2one(
'email.template', 'Product Email Template',
help='When validating an invoice, an email will be send to the customer'
help='When validating an invoice, an email will be sent to the customer'
'based on this template. The customer will receive an email for each'
'product linked to an email template.'),
}