diff --git a/i18n/mail_move_message.pot b/i18n/mail_move_message.pot index 0a1b5fc..2854cd5 100644 --- a/i18n/mail_move_message.pot +++ b/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 "" \ No newline at end of file diff --git a/mail_move_message_models.py b/mail_move_message_models.py index bfd1e41..0013e9e 100644 --- a/mail_move_message_models.py +++ b/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