mirror of
https://github.com/zulip/zulip.git
synced 2025-10-27 01:53:59 +00:00
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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user