compose: Move hotkey out of translation tags in title.

The hotkey will be the same anywhere, and this saves an extra couple
strings that translators shouldn't need to have to translate.
This commit is contained in:
Tim Abbott
2017-03-23 14:03:07 -07:00
parent e16b082b70
commit 36b9c5792a

View File

@@ -13,14 +13,16 @@
</span>
<span class="new_message_button">
<button type="button" class="button white small rounded compose_stream_button"
id="left_bar_compose_stream_button_big" title="{{ _('New topic (c)') }}">
id="left_bar_compose_stream_button_big"
title="{{ _('New topic') }} (c)">
<span class="compose_stream_button_label">{{ _('New topic') }}</span>
</button>
</span>
{% if not embedded %}
<span class="new_message_button">
<button type="button" class="button white small rounded compose_private_button"
id="left_bar_compose_private_button_big" title="{{ _('New private message (C)') }}">
id="left_bar_compose_private_button_big"
title="{{ _('New private message') }} (C)">
<span class="compose_private_button_label">{{ _('New private message') }}</span>
</button>
</span>