diff --git a/addons/mail/models/mail_channel.py b/addons/mail/models/mail_channel.py index edb0eb0e53e23..b0695f74bf8a3 100644 --- a/addons/mail/models/mail_channel.py +++ b/addons/mail/models/mail_channel.py @@ -890,10 +890,10 @@ def _execute_command_help(self, **kwargs): channel_partners = self.env['mail.channel.partner'].search([('partner_id', '!=', partner.id), ('channel_id', '=', self.id)]) msg = _("You are in a private conversation with @%s.") % (channel_partners[0].partner_id.name if channel_partners else _('Anonymous')) msg += _("""

- You can mention someone by typing @username, this will grab its attention.
- You can mention a channel by typing #channel.
- You can execute a command by typing /command.
- You can insert canned responses in your message by typing :shortcut.
""") + Type @username to mention someone, and grab his attention.
+ Type #channel.to mention a channel.
+ Type /command to execute a command.
+ Type :shortcut to insert canned responses in your message.
""") self._send_transient_message(partner, msg)