compose: Rename New conversation button to New private message.

Right now we have buttons for "New conversation" and "New private message"
in different views, but both buttons do the same thing.

The current state is confusing for new users, since there is already a lot
of terminology one needs to learn in order to understand the Zulip
conversation model. It's very plausible a user would think a "conversation"
is something different from a "private message" or a "topic".
This commit is contained in:
Rishi Gupta
2019-06-04 18:27:12 -07:00
committed by Tim Abbott
parent 32435bde3f
commit de2ba4743e
3 changed files with 3 additions and 3 deletions

View File

@@ -114,7 +114,7 @@ function update_conversation_button(btn_text, title) {
exports.update_closed_compose_buttons_for_private = function () {
var text_stream = i18n.t("New stream message");
var title_stream = text_stream + " (c)";
var text_conversation = i18n.t("New conversation");
var text_conversation = i18n.t("New private message");
var title_conversation = text_conversation + " (x)";
update_stream_button(text_stream, title_stream);
update_conversation_button(text_conversation, title_conversation);