mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 21:13:36 +00:00
`{{#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>
11 lines
362 B
Handlebars
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>
|