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

        issue8670
        review252211037
diffstat:

 company.py |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (24 lines):

diff -r 058957997e00 -r e0ad85ba6ab5 company.py
--- a/company.py        Sat Sep 28 23:59:10 2019 +0200
+++ b/company.py        Mon Sep 30 09:40:22 2019 +0200
@@ -17,9 +17,9 @@
     __name__ = 'company.employee'
     cost_price = fields.Function(fields.Numeric('Cost Price',
             digits=price_digits,
-            help="Hourly cost price for this Employee"), 'get_cost_price')
+            help="Hourly cost price for this Employee."), 'get_cost_price')
     cost_prices = fields.One2Many('company.employee_cost_price', 'employee',
-            'Cost Prices', help="List of hourly cost price over time")
+            'Cost Prices', help="List of hourly cost price over time.")
     _cost_prices_cache = Cache('company_employee.cost_prices')
 
     def get_cost_price(self, name):
@@ -73,7 +73,7 @@
     __name__ = 'company.employee_cost_price'
     date = fields.Date('Date', required=True, select=True)
     cost_price = fields.Numeric('Cost Price',
-        digits=price_digits, required=True, help="Hourly cost price")
+        digits=price_digits, required=True, help="Hourly cost price.")
     employee = fields.Many2One('company.employee', 'Employee')
 
     @classmethod

Reply via email to