[FIX]mail_followers: signature at the end of mail should be "sent by" and not "send by"
authorCedric Snauwaert <csn@openerp.com>
Mon, 29 Apr 2013 09:25:32 +0000 (11:25 +0200)
committerCedric Snauwaert <csn@openerp.com>
Mon, 29 Apr 2013 09:25:32 +0000 (11:25 +0200)
bzr revid: csn@openerp.com-20130429092532-3h31kduga1h0chbb

addons/mail/mail_followers.py

index 450b81d..152b970 100644 (file)
@@ -118,8 +118,8 @@ class mail_notification(osv.Model):
                     Administrator
                 </p>
                 <div>
-                    <small>Send by <a ...>Your Company</a> using <a ...>OpenERP</a>.</small> OR
-                    <small>Send by Administrator using <a ...>OpenERP</a>.</small>
+                    <small>Sent by <a ...>Your Company</a> using <a ...>OpenERP</a>.</small> OR
+                    <small>Sent by Administrator using <a ...>OpenERP</a>.</small>
                 </div>
         """
         footer = ""
@@ -139,7 +139,7 @@ class mail_notification(osv.Model):
             company = user.company_id.website and "<a style='color:inherit' href='%s'>%s</a>" % (user.company_id.website, user.company_id.name) or user.company_id.name
         else:
             company = user.name
-        signature_company = _('<small>Send by %(company)s using %(openerp)s.</small>') % {
+        signature_company = _('<small>Sent by %(company)s using %(openerp)s.</small>') % {
                 'company': company,
                 'openerp': "<a style='color:inherit' href='https://www.openerp.com/'>OpenERP</a>"
             }