From c81a4f959f7f89da7cfcc3596a8984382a7360e3 Mon Sep 17 00:00:00 2001 From: "Turkesh Patel (Open ERP)" Date: Mon, 23 Apr 2012 14:16:26 +0530 Subject: [PATCH] [IMP] improved string. bzr revid: tpa@tinyerp.com-20120423084626-656bm1r6jr2ijmuc --- addons/procurement/procurement.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/procurement/procurement.py b/addons/procurement/procurement.py index 2353f19..15da58d 100644 --- a/addons/procurement/procurement.py +++ b/addons/procurement/procurement.py @@ -506,11 +506,11 @@ class procurement_order(osv.osv): def running_send_note(self, cr, uid, ids, context=None): for obj in self.browse(cr, uid, ids, context=context): self.message_subscribe(cr, uid, [obj.id], [obj.user_id.id], context=context) - self.message_append_note(cr, uid, [obj.id], body=_("Procurement has been run."), context=context) + self.message_append_note(cr, uid, [obj.id], body=_("Procurement has been set to running state."), context=context) def ready_send_note(self, cr, uid, ids, context=None): for obj in self.browse(cr, uid, ids, context=context): - self.message_append_note(cr, uid, [obj.id], body=_("Procurement has been set to redy."), context=context) + self.message_append_note(cr, uid, [obj.id], body=_("Procurement has been set to redy state."), context=context) def cancel_send_note(self, cr, uid, ids, context=None): for obj in self.browse(cr, uid, ids, context=context): -- 1.7.10.4