changeset c5d556e29687 in trytond:default
details: https://hg.tryton.org/trytond?cmd=changeset;node=c5d556e29687
description:
        Add missing space and dot in translated strings
diffstat:

 trytond/ir/email_.py   |  6 +++---
 trytond/ir/message.xml |  4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diffs (46 lines):

diff -r 0f5d2a9bd5c7 -r c5d556e29687 trytond/ir/email_.py
--- a/trytond/ir/email_.py      Tue Oct 20 13:02:35 2020 +0200
+++ b/trytond/ir/email_.py      Wed Oct 21 21:08:55 2020 +0200
@@ -266,7 +266,7 @@
             'invisible': Bool(Eval('recipients')),
             },
         depends=['recipients'],
-        help="A PYSON expression that generates a list of recipients"
+        help="A PYSON expression that generates a list of recipients "
         'with the record represented by "self".')
     recipients_secondary = fields.Many2One(
         'ir.model.field', "Secondary Recipients",
@@ -284,7 +284,7 @@
             'invisible': Bool(Eval('recipients_secondary')),
             },
         depends=['recipients_secondary'],
-        help="A PYSON expression that generates a list of secondary recipients"
+        help="A PYSON expression that generates a list of secondary recipients 
"
         'with the record represented by "self".')
     recipients_hidden = fields.Many2One(
         'ir.model.field', "Hidden Recipients",
@@ -302,7 +302,7 @@
             'invisible': Bool(Eval('recipients_hidden')),
             },
         depends=['recipients_hidden'],
-        help="A PYSON expression that generates a list of hidden recipients"
+        help="A PYSON expression that generates a list of hidden recipients "
         'with the record represented by "self".')
     subject = fields.Char("Subject", translate=True)
     body = fields.Text("Body", translate=True)
diff -r 0f5d2a9bd5c7 -r c5d556e29687 trytond/ir/message.xml
--- a/trytond/ir/message.xml    Tue Oct 20 13:02:35 2020 +0200
+++ b/trytond/ir/message.xml    Wed Oct 21 21:08:55 2020 +0200
@@ -318,10 +318,10 @@
             <field name="text">You are not allowed to execute wizard 
"%(wizard)s" on "%(model)s".</field>
         </record>
         <record model="ir.message" id="msg_email_template_invalid_subject">
-            <field name="text">Invalid subject in e-mail template 
"%(template)s" with exception "%(exception)s"</field>
+            <field name="text">Invalid subject in e-mail template 
"%(template)s" with exception "%(exception)s".</field>
         </record>
         <record model="ir.message" id="msg_email_template_invalid_body">
-            <field name="text">Invalid body in e-mail template "%(template)s" 
with exception "%(exception)s"</field>
+            <field name="text">Invalid body in e-mail template "%(template)s" 
with exception "%(exception)s".</field>
         </record>
         <record model="ir.message" id="msg_email_template_invalid_field_pyson">
             <field name="text">Invalid PYSON %(field)s in e-mail template 
"%(template)s" with exception "%(exception)s".</field>

Reply via email to