Browse Source

[ADD] mail_move_message: added a help message for the field Move Followers

pull/1/head
Veronika 8 years ago
parent
commit
bf86e649ed
  1. 3
      i18n/mail_move_message.pot
  2. 6
      mail_move_message_models.py

3
i18n/mail_move_message.pot

@ -169,6 +169,5 @@ msgstr ""
#. module: mail_move_message
#: help:mail_move_message.wizard,move_followers:0
msgid "Add followers of current record to a new record. You must use this option, if new record has restricted access. \n You can change default value for this option at Settings/System Parameters
Add a line note"
msgid "Add followers of current record to a new record.\nYou must use this option, if new record has restricted access.\nYou can change default value for this option at Settings/System Parameters"
msgstr ""

6
mail_move_message_models.py

@ -76,7 +76,11 @@ class wizard(models.TransientModel):
# FIXME message_to_read should be True even if current message or any his childs are unread
message_to_read = fields.Boolean(related='message_id.to_read')
uid = fields.Integer()
move_followers = fields.Boolean('Move Followers')
move_followers = fields.Boolean(
'Move Followers',
help="Add followers of current record to a new record.\n"
"You must use this option, if new record has restricted access.\n"
"You can change default value for this option at Settings/System Parameters")
@api.depends('message_id')
@api.one

Loading…
Cancel
Save