[FIX] typo: the label 'Stage' should remain singular, not plural

bzr revid: abo@openerp.com-20120601145134-pd660jzsl5bv409x
This commit is contained in:
Antonin Bourguignon 2012-06-01 16:51:34 +02:00
parent f606ccda45
commit 03dcaabc64
1 changed files with 1 additions and 1 deletions

View File

@ -241,7 +241,7 @@ class project_issue(base_stage, osv.osv):
'categ_id': fields.many2one('crm.case.categ', 'Category', domain="[('object_id.model', '=', 'crm.project.bug')]"),
'priority': fields.selection(crm.AVAILABLE_PRIORITIES, 'Priority', select=True),
'version_id': fields.many2one('project.issue.version', 'Version'),
'stage_id': fields.many2one ('project.task.type', 'Stages',
'stage_id': fields.many2one ('project.task.type', 'Stage',
domain="['|', ('project_ids', '=', project_id), ('case_default', '=', True)]"),
'project_id':fields.many2one('project.project', 'Project'),
'duration': fields.float('Duration'),