compose: Change video call url text to "Join video call.".

Earlier it was "Click here to join video call".
This commit is contained in:
N-Shar-ma
2023-04-12 18:41:42 +05:30
committed by Tim Abbott
parent 67f82eb7b6
commit 3a64c8c0db
3 changed files with 7 additions and 9 deletions

View File

@@ -380,7 +380,7 @@ export function update_email(user_id, new_email) {
}
function insert_video_call_url(url, target_textarea) {
const link_text = $t({defaultMessage: "Click to join video call"});
const link_text = $t({defaultMessage: "Join video call."});
compose_ui.insert_syntax_and_focus(`[${link_text}](${url})`, target_textarea, "block", 1);
}