From ff270a57805cc5c65bf245fbb8e8c42f3de49982 Mon Sep 17 00:00:00 2001 From: "Rifakat (OpenERP)" <> Date: Mon, 5 Nov 2012 18:19:00 +0530 Subject: [PATCH] [FIX]stock : translation for string INV is there in Dutch language but it does not displayed for Journal entries posted through inventory bzr revid: mma@tinyerp.com-20121105124900-6arlp9og3d9jef9e --- addons/stock/stock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/stock/stock.py b/addons/stock/stock.py index 9fb0c9b68aa..2dfa843bf2c 100644 --- a/addons/stock/stock.py +++ b/addons/stock/stock.py @@ -2875,7 +2875,7 @@ class stock_inventory(osv.osv): if change: location_id = line.product_id.product_tmpl_id.property_stock_inventory.id value = { - 'name': 'INV:' + str(line.inventory_id.id) + ':' + line.inventory_id.name, + 'name': _('INV: %s') % str(line.inventory_id.id) + ':' + line.inventory_id.name, 'product_id': line.product_id.id, 'product_uom': line.product_uom.id, 'prodlot_id': lot_id,