stream_data: Rephrase descriptions of stream permissons.

The previous phrasing used incorrect terminology (E.g. "stream
members", not "stream subscribers", which is really confusing given
that we have a "member" role which is also relevant in this text).
This commit is contained in:
Tim Abbott
2021-09-14 11:16:15 -07:00
parent 7c8e19758a
commit e7c62c4190
2 changed files with 10 additions and 9 deletions

View File

@@ -108,7 +108,7 @@ export const stream_privacy_policy_values = {
name: $t({defaultMessage: "Public"}),
description: $t({
defaultMessage:
"Anyone can join; anyone can view complete message history without joining",
"Organization members can join (guests must be invited by a subscriber); organization members can view complete message history without joining",
}),
},
private_with_public_history: {
@@ -116,7 +116,7 @@ export const stream_privacy_policy_values = {
name: $t({defaultMessage: "Private, shared history"}),
description: $t({
defaultMessage:
"Must be invited by a member; new members can view complete message history; hidden from non-administrator users",
"Must be invited by a subscriber; new subscribers can view complete message history; hidden from non-administrator users",
}),
},
private: {
@@ -124,7 +124,7 @@ export const stream_privacy_policy_values = {
name: $t({defaultMessage: "Private, protected history"}),
description: $t({
defaultMessage:
"Must be invited by a member; new members can only see messages sent after they join; hidden from non-administrator users",
"Must be invited by a subscriber; new subscribers can only see messages sent after they join; hidden from non-administrator users",
}),
},
};
@@ -135,7 +135,7 @@ if (page_params.development_environment) {
name: $t({defaultMessage: "Web public"}),
description: $t({
defaultMessage:
"Anyone can join; anyone on the Internet can view complete message history without creating an account",
"Organization members can join (guests must be invited by a subscriber); anyone on the Internet can view complete message history without creating an account",
}),
};
}