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:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2021-01-18 12:15:38 +0300
committerGitHub <noreply@github.com>2021-01-18 12:15:38 +0300
commitede363b85e5b93d9b4dcbaffaf64e26f75913986 (patch)
treedcf3a8698a14fb5536641cfccd7db90f6451a141 /tests
parent2c6f9eb73e596634b9c9eea0af81c59b80f2fb18 (diff)
parentbd27c5adf15e055cecbd8efb8a650b3c13d6b4c0 (diff)
Merge pull request #4771 from nextcloud/enh/noid/listable-wording
Updated wording for conversation visibility
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..b857a0000 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} limited the conversation to the current participants',
['actor' => ['id' => 'actor', 'type' => 'user']],
],
['listable_none', [], 'actor',
- 'You made the conversation invisible',
+ 'You limited the conversation to the current participants',
['actor' => ['id' => 'actor', 'type' => 'user']],
],
['listable_users', [], 'recipient',
- '{actor} made the conversation visible for registered users only',
+ '{actor} opened the conversation to registered users',
['actor' => ['id' => 'actor', 'type' => 'user']],
],
['listable_users', [], 'actor',
- 'You made the conversation visible for registered users only',
+ 'You opened the conversation to registered users',
['actor' => ['id' => 'actor', 'type' => 'user']],
],
['listable_all', [], 'recipient',
- '{actor} made the conversation visible for everyone',
+ '{actor} opened the conversation to registered and guest app users',
['actor' => ['id' => 'actor', 'type' => 'user']],
],
['listable_all', [], 'actor',
- 'You made the conversation visible for everyone',
+ 'You opened the conversation to registered and guest app users',
['actor' => ['id' => 'actor', 'type' => 'user']],
],
];