## -*- coding: utf-8 -*- <%inherit file="base.mako"/> <%def name="subject()" filter="n,trim"> ${_('[mention]') if mention else ''} ${_('%(user)s commented on a commit of %(repo_name)s') % { 'user': h.person(user), 'repo_name': repo_name } } <%def name="body_plaintext()" filter="n,trim"> ${self.subject()} * ${_('Comment link')}: ${commit_comment_url} * ${_('Commit')}: ${h.show_id(commit)} %if comment_file: * ${_('File: %(comment_file)s on line %(comment_line)s') % {'comment_file': comment_file, 'comment_line': comment_line}} %endif --- ${comment_body|n} %if status_change: ${_('Commit status was changed to')}: *${status_change}* %endif ${self.plaintext_footer()} %if status_change: %endif

% if comment_file: ${_('%(user)s commented on %(comment_file)s on line %(comment_line)s in the %(repo)s repository') % {'user': h.person(user), 'comment_file': comment_file, 'comment_line': comment_line, 'repo': commit_target_repo} |n}

% else: ${_('%(user)s commented on a commit in the %(repo)s repository') % {'user': h.person(user), 'repo': commit_target_repo} |n} % endif
${_('Commit')}${h.show_id(commit)}
${_('Description')}${h.urlify_commit_message(commit.message, repo_name)}
${_('Status')}${_('The commit status was changed to')} ${status_change}.
${_('Comment')}${h.render(comment_body, renderer=renderer_type, mentions=True)}