changeset 727e48ca3532 in modules/purchase:default
details: https://hg.tryton.org/modules/purchase?cmd=changeset;node=727e48ca3532
description:
        Add missing end dot on translatable strings

        issue8670
        review252211037
diffstat:

 product.py |  2 +-
 stock.py   |  2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diffs (21 lines):

diff -r 76162e269cec -r 727e48ca3532 product.py
--- a/product.py        Sun Sep 29 18:30:25 2019 +0200
+++ b/product.py        Mon Sep 30 09:39:27 2019 +0200
@@ -354,7 +354,7 @@
         "Quantity",
         required=True,
         domain=[('quantity', '>=', 0)],
-        help='Minimal quantity')
+        help='Minimal quantity.')
     unit_price = fields.Numeric('Unit Price', required=True,
         digits=price_digits)
 
diff -r 76162e269cec -r 727e48ca3532 stock.py
--- a/stock.py  Sun Sep 29 18:30:25 2019 +0200
+++ b/stock.py  Mon Sep 30 09:39:27 2019 +0200
@@ -254,4 +254,4 @@
             ('parent', 'child_of', [Eval('id', -1)]),
             ],
         depends=['type', 'active', 'id'],
-        help='If empty the Storage location is used')
+        help='If empty the Storage location is used.')

Reply via email to