ui: moved counter for PRs to last position as in style.

This commit is contained in:
Marcin Kuzminski 2019-06-27 11:32:41 +02:00
parent 5dbe4abdf3
commit b94325bf80

View file

@ -298,9 +298,9 @@
<a class="menulink" href="${h.route_path('pullrequest_show_all', repo_name=c.repo_name)}" title="${h.tooltip(_('Show Pull Requests for %s') % c.repo_name)}">
<div class="menulabel">
%if c.repository_pull_requests == 1:
${c.repository_pull_requests} ${_('Pull Request')}
${_('Pull Request')} ${c.repository_pull_requests}
%else:
${c.repository_pull_requests} ${_('Pull Requests')}
${_('Pull Requests')} ${c.repository_pull_requests}
%endif
</div>
</a>