Skip to content

Commit

Permalink
change found to voted (#6035)
Browse files Browse the repository at this point in the history
  • Loading branch information
escattone committed May 30, 2024
1 parent 7f6ba58 commit a71a1d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kitsune/wiki/jinja2/wiki/includes/document_macros.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ <h1 class="sumo-page-heading">{{ document.title }}</h1>
<span class="tooltip">{{ product_titles }}</span>
</span>
<span class="last-updated">
<img class="pencil" src="{{ webpack_static('sumo/img/pencil.svg') }}" /> <strong>Last updated:</strong> <span class="time">{{ created_date|naturaltime }}</span>
<img class="pencil" src="{{ webpack_static('sumo/img/pencil.svg') }}" /> <strong>{{ _("Last updated") }}:</strong> <span class="time">{{ created_date|naturaltime }}</span>
</span>
{% if helpful_votes %}
<span class="helpful-info">
<img class="thumbsup" src="{{ webpack_static('sumo/img/thumbs-up.svg') }}"/><span class="helpful-count">{{ helpful_votes }}%</span> of users found this helpful
<img class="thumbsup" src="{{ webpack_static('sumo/img/thumbs-up.svg') }}"/>{{ _('<span class="{0}">{1}{2}</span> of users voted this helpful')|fe("helpful-count", helpful_votes, "%") }}
</span>
{% endif %}
</div>
Expand Down

0 comments on commit a71a1d7

Please sign in to comment.