mirror of https://github.com/zulip/zulip.git
Revert "Rename the compose buttons based on feedback"
"Send to stream" is confusing. Also, "Send to stream" is asymmetric with the strangely verbless "Private message". This reverts commit bb81f78948de20e78726c0cfbdeb91d7d21f32bf. (imported from commit 1639e197d7acb2cc1d4ffd8dc67d3f3ca6712d0b)
This commit is contained in:
parent
037aebd487
commit
a8cd5539ff
|
@ -161,13 +161,13 @@ var people_list = [
|
|||
<button type="button" class="visible-phone btn btn-small phone_new_message_button"
|
||||
id="left_bar_compose_stream_button_little"
|
||||
onclick="compose.start('stream');"
|
||||
title="Send to stream">
|
||||
title="New stream message">
|
||||
<i class="icon-bullhorn"></i>
|
||||
</button>
|
||||
<button type="button" class="visible-phone btn btn-small phone_new_message_button"
|
||||
id="left_bar_compose_private_button_little"
|
||||
onclick="compose.start('private');"
|
||||
title="Private message">
|
||||
title="New private message">
|
||||
<i class="icon-user"></i>
|
||||
</button>
|
||||
</div>
|
||||
|
@ -176,14 +176,14 @@ var people_list = [
|
|||
<button type="button" class="btn btn-large btn-block"
|
||||
id="left_bar_compose_stream_button_big"
|
||||
onclick="compose.start('stream');">
|
||||
<i class="icon-bullhorn"></i> Send to stream
|
||||
<i class="icon-bullhorn"></i> New stream message
|
||||
</button>
|
||||
</div>
|
||||
<div class="hidden-phone new_message_button">
|
||||
<button type="button" class="btn btn-large btn-block"
|
||||
id="left_bar_compose_private_button_big"
|
||||
onclick="compose.start('private');">
|
||||
<i class="icon-user"></i> Private message
|
||||
<i class="icon-user"></i> New private message
|
||||
</button>
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Reference in New Issue