Files
zulip/web/templates/all_messages_sidebar_actions.hbs
Anders Kaseorg 83b6866018 templates: Replace unnecessary {{#tr}} blocks with {{t}} helper.
`{{#tr}}` supports HTML and allows translators to accidentally
introduce HTML, so it’s safer to use the `{{t}}` helper unless HTML is
needed.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
2023-03-16 11:26:45 -07:00

11 lines
362 B
Handlebars

{{! Contents of the "all messages sidebar" popup }}
<ul class="nav nav-list">
<li>
{{! tabindex="0" Makes anchor tag focusable. Needed for keyboard support. }}
<a tabindex="0" id="mark_all_messages_as_read">
<i class="fa fa-book" aria-hidden="true"></i>
{{t "Mark all messages as read" }}
</a>
</li>
</ul>