[FIX] crm : Typos fixed in wizards

bzr revid: ach@tinyerp.com-20110419101605-zveh2v8hm3uygdgt
This commit is contained in:
Anup (OpenERP) 2011-04-19 15:46:05 +05:30
parent 2c3c064a22
commit 53c757663c
2 changed files with 2 additions and 2 deletions

View File

@ -105,7 +105,7 @@ class crm_lead2opportunity_partner(osv.osv_memory):
for lead in lead_obj.browse(cr, uid, context.get('active_ids', []), context=context):
if lead.state in ['done', 'cancel']:
raise osv.except_osv(_("Warning !"), _("Closed/Cancelled Leads Could not convert into Opportunity"))
raise osv.except_osv(_("Warning !"), _("Closed/Cancelled Leads can not be converted into Opportunity"))
return False
def _convert(self, cr, uid, ids, lead, partner_id, stage_ids, context=None):

View File

@ -55,7 +55,7 @@ class crm_phonecall2opportunity(osv.osv_memory):
case = phonecall_obj.browse(cr, uid, record_id, context=context)
if case.state in ['done', 'cancel']:
raise osv.except_osv(_("Warning"), _("Closed/Cancelled Phone \
Call Could not convert into Opportunity"))
Call can not be converted into Opportunity"))
def action_apply(self, cr, uid, ids, context=None):