Fix a typo.
This commit is contained in:
parent
fbaa8b7732
commit
2da7e1fb5a
|
@ -48,7 +48,7 @@
|
|||
{% if statistic.mergeRequests.opened > 0 %}
|
||||
<li>
|
||||
<strong>{{ statistic.mergeRequests.opened }}</strong>
|
||||
{{ pluralize('issue', 'issues', statistic.mergeRequests.opened) }}
|
||||
{{ pluralize('merge request', 'merge requests', statistic.mergeRequests.opened) }}
|
||||
{{ pluralize('was', 'were', statistic.mergeRequests.opened) }} opened.
|
||||
</li>
|
||||
{% endif %}
|
||||
|
@ -56,7 +56,7 @@
|
|||
{% if statistic.mergeRequests.closed > 0 %}
|
||||
<li>
|
||||
<strong>{{ statistic.mergeRequests.closed }}</strong>
|
||||
{{ pluralize('issue', 'issues', statistic.mergeRequests.closed) }}
|
||||
{{ pluralize('merge request', 'merge requests', statistic.mergeRequests.closed) }}
|
||||
{{ pluralize('was', 'were', statistic.mergeRequests.closed) }} closed/merged.
|
||||
</li>
|
||||
{% endif %}
|
||||
|
|
Reference in New Issue