## -*- coding: utf-8 -*- <%inherit file="base.mako"/> <%def name="subject()" filter="n,trim"> ${_('[mention]') if mention else ''} ${_('%(user)s commented on pull request #%(pr_id)s: "%(pr_title)s"') % { 'user': h.person(user), 'pr_title': pull_request.title, 'pr_id': pull_request.pull_request_id } |n} <%def name="body_plaintext()" filter="n,trim"> ${self.subject()} * ${_('Comment link')}: ${pr_comment_url} * ${_('Source repository')}: ${pr_source_repo_url} %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 and not closing_pr: ${_('Pull request status was changed to')}: *${status_change}* %elif status_change and closing_pr: ${_('Pull request was closed with status')}: *${status_change}* %endif % if comment_file:

${_('%(user)s commented on a file on pull request #%(pr_id)s: "%(pr_title)s".') % { 'user': h.person(user), 'pr_title': pull_request.title, 'pr_id': pull_request.pull_request_id } |n}

% else:

${_('%(user)s commented on a pull request #%(pr_id)s "%(pr_title)s".') % { 'user': h.person(user), 'pr_title': pull_request.title, 'pr_id': pull_request.pull_request_id } |n}

% endif

${h.render(comment_body, renderer=renderer_type, mentions=True)}


%if status_change and not closing_pr:

${_('Pull request status was changed to')}: ${status_change}

%elif status_change and closing_pr:

${_('Pull request was closed with status')}: ${status_change}

%endif