diff --git a/static/js/compose.js b/static/js/compose.js index 0463eecd9c..12a9e72764 100644 --- a/static/js/compose.js +++ b/static/js/compose.js @@ -115,7 +115,7 @@ 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 title_conversation = text_conversation + " (c)"; + var title_conversation = text_conversation + " (x)"; update_stream_button(text_stream, title_stream); update_conversation_button(text_conversation, title_conversation); }; @@ -124,7 +124,7 @@ exports.update_closed_compose_buttons_for_stream = function () { var text_stream = i18n.t("New topic"); var title_stream = text_stream + " (c)"; var text_conversation = i18n.t("New private message"); - var title_conversation = text_conversation + " (c)"; + var title_conversation = text_conversation + " (x)"; update_stream_button(text_stream, title_stream); update_conversation_button(text_conversation, title_conversation); };