mirror of
https://github.com/zulip/zulip.git
synced 2025-11-15 11:22:04 +00:00
@@ -460,19 +460,19 @@ export class BuddyList extends BuddyListConf {
|
|||||||
let header_text;
|
let header_text;
|
||||||
if (current_sub) {
|
if (current_sub) {
|
||||||
if (all_participant_ids.size) {
|
if (all_participant_ids.size) {
|
||||||
header_text = $t({defaultMessage: "Others in this channel"});
|
header_text = $t({defaultMessage: "OTHERS IN THIS CHANNEL"});
|
||||||
} else {
|
} else {
|
||||||
header_text = $t({defaultMessage: "In this channel"});
|
header_text = $t({defaultMessage: "IN THIS CHANNEL"});
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
header_text = $t({defaultMessage: "In this conversation"});
|
header_text = $t({defaultMessage: "IN THIS CONVERSATION"});
|
||||||
}
|
}
|
||||||
|
|
||||||
$("#buddy-list-participants-container .buddy-list-subsection-header").append(
|
$("#buddy-list-participants-container .buddy-list-subsection-header").append(
|
||||||
$(
|
$(
|
||||||
render_section_header({
|
render_section_header({
|
||||||
id: "buddy-list-participants-section-heading",
|
id: "buddy-list-participants-section-heading",
|
||||||
header_text: $t({defaultMessage: "In this conversation"}),
|
header_text: $t({defaultMessage: "IN THIS CONVERSATION"}),
|
||||||
user_count: get_formatted_sub_count(all_participant_ids.size),
|
user_count: get_formatted_sub_count(all_participant_ids.size),
|
||||||
is_collapsed: this.participants_is_collapsed,
|
is_collapsed: this.participants_is_collapsed,
|
||||||
}),
|
}),
|
||||||
@@ -496,7 +496,7 @@ export class BuddyList extends BuddyListConf {
|
|||||||
$(
|
$(
|
||||||
render_section_header({
|
render_section_header({
|
||||||
id: "buddy-list-other-users-section-heading",
|
id: "buddy-list-other-users-section-heading",
|
||||||
header_text: $t({defaultMessage: "Others"}),
|
header_text: $t({defaultMessage: "OTHERS"}),
|
||||||
user_count: get_formatted_sub_count(other_users_count),
|
user_count: get_formatted_sub_count(other_users_count),
|
||||||
is_collapsed: this.other_users_is_collapsed,
|
is_collapsed: this.other_users_is_collapsed,
|
||||||
}),
|
}),
|
||||||
|
|||||||
Reference in New Issue
Block a user