diff --git a/addons/sale/models/sale.py b/addons/sale/models/sale.py
index 8ad8f897d450a3948a48b5358eb91b8b2891da91..0dd4e639a240453acf39c9696cbbcc3cd0382cf1 100644
--- a/addons/sale/models/sale.py
+++ b/addons/sale/models/sale.py
@@ -1172,7 +1172,7 @@ class SaleOrderLine(models.Model):
     ], related='order_id.state', string='Order Status', readonly=True, copy=False, store=True, default='draft')
 
     customer_lead = fields.Float(
-        'Delivery Lead Time', required=True, default=0.0,
+        'Lead Time', required=True, default=0.0,
         help="Number of days between the order confirmation and the shipping of the products to the customer")
 
     display_type = fields.Selection([
diff --git a/addons/stock/models/stock_picking.py b/addons/stock/models/stock_picking.py
index 4f395594244998869db4ba750cdc431d3863bf1a..5cca8fce0a5a2755153d02cc224f2fb41ea1f9c0 100644
--- a/addons/stock/models/stock_picking.py
+++ b/addons/stock/models/stock_picking.py
@@ -337,7 +337,7 @@ class Picking(models.Model):
     use_create_lots = fields.Boolean(related='picking_type_id.use_create_lots')
 
     owner_id = fields.Many2one(
-        'res.partner', 'Assign owner',
+        'res.partner', 'Assign Owner',
         states={'done': [('readonly', True)], 'cancel': [('readonly', True)]},
         help="When validating the transfer, the products will be assigned to this owner.")
     printed = fields.Boolean('Printed')