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
path: root/tests
diff options
context:
space:
mode:
authorVincent Petry <vincent@nextcloud.com>2020-12-16 13:04:37 +0300
committerJoas Schilling <coding@schilljs.com>2021-01-14 12:42:53 +0300
commit7b3760356daaf8329002a6b585f02aa39d7a62ff (patch)
tree363a49fb0134d6a2fe18592520f126c50267eafd /tests
parentfd6b42e12c16a4f25d74ad243b815234fc5f5986 (diff)
Updated wording and interaction for conversation accessibility
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/php/Chat/Parser/SystemMessageTest.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/php/Chat/Parser/SystemMessageTest.php b/tests/php/Chat/Parser/SystemMessageTest.php
index 772f60b40..36d668283 100644
--- a/tests/php/Chat/Parser/SystemMessageTest.php
+++ b/tests/php/Chat/Parser/SystemMessageTest.php
@@ -332,27 +332,27 @@ class SystemMessageTest extends TestCase {
['actor' => ['id' => 'actor', 'type' => 'user']],
],
['listable_none', [], 'recipient',
- '{actor} made the conversation invisible',
+ '{actor} made the conversation accessible to participants',
['actor' => ['id' => 'actor', 'type' => 'user']],
],
['listable_none', [], 'actor',
- 'You made the conversation invisible',
+ 'You made the conversation accessible to participants',
['actor' => ['id' => 'actor', 'type' => 'user']],
],
['listable_users', [], 'recipient',
- '{actor} made the conversation visible for registered users only',
+ '{actor} made the conversation accessible to registered users only',
['actor' => ['id' => 'actor', 'type' => 'user']],
],
['listable_users', [], 'actor',
- 'You made the conversation visible for registered users only',
+ 'You made the conversation accessible to registered users only',
['actor' => ['id' => 'actor', 'type' => 'user']],
],
['listable_all', [], 'recipient',
- '{actor} made the conversation visible for everyone',
+ '{actor} made the conversation accessible to everyone',
['actor' => ['id' => 'actor', 'type' => 'user']],
],
['listable_all', [], 'actor',
- 'You made the conversation visible for everyone',
+ 'You made the conversation accessible to everyone',
['actor' => ['id' => 'actor', 'type' => 'user']],
],
];