[IMP]add help on subtype name

bzr revid: sgo@tinyerp.com-20120910054903-22sveyi971arsl39
This commit is contained in:
Sanjay Gohel (Open ERP) 2012-09-10 11:19:03 +05:30
parent 33b3c0e6a0
commit 5cf330f39a
1 changed files with 2 additions and 2 deletions

View File

@ -27,8 +27,8 @@ class mail_message_subtype(osv.osv):
_name = 'mail.message.subtype'
_description = 'mail_message_subtype'
_columns = {
'name': fields.char(' Message Subtype ', size = 128,
required = True, help = 'Subtype Of Message'),
'name': fields.char('Message Subtype ', size = 128,
required = True, help = 'Message subtype, gives a more precise type on the message, especially for system notifications. For example, it can be a notification related to a new record (New), or to a stage change in a process (Stage change). Message subtypes allow to precisely tune the notifications the user want to receive on its wall.'),
'model_ids': fields.many2many('ir.model',
'mail_message_subtyp_message_rel',
'message_subtype_id', 'model_id', 'Model',