summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorMarco <marcoambrosini@icloud.com>2023-03-15 15:02:00 +0100
committerJoas Schilling <coding@schilljs.com>2023-03-31 14:07:33 +0200
commit35977033a54c2e2d6eadbeb54faf92b730c27dcc (patch)
tree808d7954a9c80fd490a79942fe28841c7bc4789d /lib
parent0a5d44575fda92476b927c9515b87ebfa5f79e38 (diff)
Use picture instead of avatar in user facing strings
Signed-off-by: Marco <marcoambrosini@icloud.com>
Diffstat (limited to 'lib')
-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 c37a51cc5..49c8f1e98 100644
--- a/lib/Chat/Parser/SystemMessage.php
+++ b/lib/Chat/Parser/SystemMessage.php
@@ -516,14 +516,14 @@ class SystemMessage {
$parsedMessage = $this->l->t('You cleared the history of the conversation');
}
} elseif ($message === 'avatar_set') {
- $parsedMessage = $this->l->t('{actor} set the conversation avatar');
+ $parsedMessage = $this->l->t('{actor} set the conversation picture');
if ($currentUserIsActor) {
- $parsedMessage = $this->l->t('You set the conversation avatar');
+ $parsedMessage = $this->l->t('You set the conversation picture');
}
} elseif ($message === 'avatar_removed') {
- $parsedMessage = $this->l->t('{actor} removed the conversation avatar');
+ $parsedMessage = $this->l->t('{actor} removed the conversation picture');
if ($currentUserIsActor) {
- $parsedMessage = $this->l->t('You removed the conversation avatar');
+ $parsedMessage = $this->l->t('You removed the conversation picture');
}
} elseif ($message === 'poll_closed') {
$parsedParameters['poll'] = $parameters['poll'];