From 27bfca61c197def086b14835a265eec6ff7bb3a8 Mon Sep 17 00:00:00 2001 From: Vector73 Date: Thu, 26 Jun 2025 16:09:36 +0000 Subject: [PATCH] settings: Update move messages settings label. Updates organzation-level move messages permission setting labels to make it clear that the settings apply to all channels. --- help/moderating-open-organizations.md | 2 +- help/restrict-moving-messages.md | 10 ++++------ help/setting-up-zulip-for-a-class.md | 2 +- web/src/settings_config.ts | 4 ++-- 4 files changed, 8 insertions(+), 10 deletions(-) diff --git a/help/moderating-open-organizations.md b/help/moderating-open-organizations.md index 1d1905aa45..3ed732a3b5 100644 --- a/help/moderating-open-organizations.md +++ b/help/moderating-open-organizations.md @@ -32,7 +32,7 @@ problematic behavior. announcements](/help/configure-automated-notices#new-channel-announcements). * Restrict who can [add custom emoji](/help/custom-emoji#change-who-can-add-custom-emoji). * Restrict who can [move messages to another - channel](/help/restrict-moving-messages#configure-who-can-move-messages-to-another-channel-from-anywhere), + channel](/help/restrict-moving-messages#configure-who-can-move-messages-out-of-any-channel), and set a [time limit](/help/restrict-moving-messages#set-a-time-limit-for-editing-topics) for editing topics. diff --git a/help/restrict-moving-messages.md b/help/restrict-moving-messages.md index d6996459bd..8137b079b0 100644 --- a/help/restrict-moving-messages.md +++ b/help/restrict-moving-messages.md @@ -22,7 +22,7 @@ administrators and moderators. Permissions for moving messages between channels can be configured separately. -## Configure who can edit topics everywhere +## Configure who can edit topics in any channel {!admin-only.md!} @@ -30,8 +30,7 @@ Permissions for moving messages between channels can be configured separately. {settings_tab|organization-permissions} -1. Under **Moving messages**, configure **Who can move messages to another - topic**. +1. Under **Moving messages**, configure **Who can edit topics in any channel**. {!save-changes.md!} @@ -71,14 +70,13 @@ Permissions for moving messages between channels can be configured separately. {end_tabs} -## Configure who can move messages to another channel from anywhere +## Configure who can move messages out of any channel {start_tabs} {settings_tab|organization-permissions} -1. Under **Moving messages**, configure **Who can move messages to another - channel**. +1. Under **Moving messages**, configure **Who can move messages out of any channel**. {!save-changes.md!} diff --git a/help/setting-up-zulip-for-a-class.md b/help/setting-up-zulip-for-a-class.md index 29c60be890..3c1886cceb 100644 --- a/help/setting-up-zulip-for-a-class.md +++ b/help/setting-up-zulip-for-a-class.md @@ -173,7 +173,7 @@ how to assign roles and permissions for a class. (Recommended: Admins and moderators) [user-group-permissions]: /help/manage-user-groups#configure-who-can-create-user-groups -[move-between-channels]: /help/restrict-moving-messages#configure-who-can-move-messages-to-another-channel-from-anywhere +[move-between-channels]: /help/restrict-moving-messages#configure-who-can-move-messages-out-of-any-channel #### Recommended roles and permissions for a department diff --git a/web/src/settings_config.ts b/web/src/settings_config.ts index 1a3e9c092e..0ced2c93c9 100644 --- a/web/src/settings_config.ts +++ b/web/src/settings_config.ts @@ -715,10 +715,10 @@ export const all_group_setting_labels = { can_manage_billing_group: $t({defaultMessage: "Who can manage plans and billing"}), can_create_groups: $t({defaultMessage: "Who can create user groups"}), can_move_messages_between_topics_group: $t({ - defaultMessage: "Who can move messages to another topic", + defaultMessage: "Who can edit topics in any channel", }), can_move_messages_between_channels_group: $t({ - defaultMessage: "Who can move messages to another channel", + defaultMessage: "Who can move messages out of any channel", }), can_resolve_topics_group: $t({defaultMessage: "Who can resolve topics"}), can_delete_any_message_group: $t({defaultMessage: "Who can delete any message"}),