Skip to content
This repository has been archived by the owner on Aug 26, 2022. It is now read-only.

Commit

Permalink
Fix bug 1265151 - strings in needs_review.html
Browse files Browse the repository at this point in the history
  • Loading branch information
BychekRU committed May 23, 2016
1 parent cd42b8a commit 27fa9ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kuma/wiki/jinja2/wiki/list/needs_review.html
Expand Up @@ -23,13 +23,13 @@ <h1>{{ title }}</h1>
{% if tag|string=='editorial' %}
<p>
{% trans url=wiki_url('MDN/Contribute/Howto/Do_an_editorial_review') + '#core-steps' %}
{{ _('Please review these articles for spelling, grammar, formatting, layout, etc., and then clear the Editorial review flag. <a href="{{ url }}">See more detailed instructions</a>.') }}
{{ _('Please review these articles for spelling, grammar, formatting, layout, etc., and then clear the Editorial review flag. <a href="%(url)s">See more detailed instructions</a>.', url=url) }}
{% endtrans %}
</p>
{% elif tag|string == 'technical' %}
<p>
{% trans url=wiki_url('MDN/Contribute/Howto/Do_a_technical_review') + '#core-steps' %}
{{ _('Please review these articles for technical accuracy and completeness, and then clear the Technical review flag. <a href="{{ url }}">See more detailed instructions</a>.') }}
{{ _('Please review these articles for technical accuracy and completeness, and then clear the Technical review flag. <a href="%(url)s">See more detailed instructions</a>.', url=url) }}
{% endtrans %}
</p>
{% endif %}
Expand Down

0 comments on commit 27fa9ca

Please sign in to comment.