Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Chat/Parser/SystemMessage.php')
-rw-r--r--lib/Chat/Parser/SystemMessage.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Chat/Parser/SystemMessage.php b/lib/Chat/Parser/SystemMessage.php
index 48e9fa1f6..02e1f6b26 100644
--- a/lib/Chat/Parser/SystemMessage.php
+++ b/lib/Chat/Parser/SystemMessage.php
@@ -165,12 +165,12 @@ class SystemMessage {
} elseif ($cliIsActor) {
$parsedMessage = $this->l->t('An administrator locked the conversation');
}
- } elseif ($message === 'listable_participants') {
- $parsedMessage = $this->l->t('{actor} made the conversation listable for participants only');
+ } elseif ($message === 'listable_none') {
+ $parsedMessage = $this->l->t('{actor} made the conversation not listable');
if ($currentUserIsActor) {
- $parsedMessage = $this->l->t('You made the conversation listable for participants only');
+ $parsedMessage = $this->l->t('You made the conversation not listable');
} elseif ($cliIsActor) {
- $parsedMessage = $this->l->t('An administrator made the conversation listable for participants only');
+ $parsedMessage = $this->l->t('An administrator made the conversation not listable');
}
} elseif ($message === 'listable_users') {
$parsedMessage = $this->l->t('{actor} made the conversation listable for users only');