diff options
author | Mario <mario@mariovavti.com> | 2025-05-03 15:58:04 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2025-05-03 15:58:04 +0000 |
commit | 22bda936a52cf880e6fda1af1ef2d34a5af1bfbc (patch) | |
tree | 069af9d39c14818c76927dff3109f4c0a4b8cb5f /Zotlabs | |
parent | 95a2de4da2ca70d64aefac93dca0f46f7182c177 (diff) | |
download | volse-hubzilla-22bda936a52cf880e6fda1af1ef2d34a5af1bfbc.tar.gz volse-hubzilla-22bda936a52cf880e6fda1af1ef2d34a5af1bfbc.tar.bz2 volse-hubzilla-22bda936a52cf880e6fda1af1ef2d34a5af1bfbc.zip |
more streamline wording
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Lib/Enotify.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Lib/Enotify.php b/Zotlabs/Lib/Enotify.php index 99687b835..acb4c6c85 100644 --- a/Zotlabs/Lib/Enotify.php +++ b/Zotlabs/Lib/Enotify.php @@ -146,7 +146,7 @@ class Enotify { $itemlink = $params['link']; - $action = (($moderated) ? t('requested to comment on') : t('commented on')); + $action = (($moderated) ? t('requested to post in') : t('posted in')); if(array_key_exists('item',$params)) { @@ -849,7 +849,7 @@ class Enotify { else { $itemem_text = (($item['item_thread_top']) ? (($item['obj_type'] === 'Question') ? t('started a poll') : t('started a conversation')) - : (($item['obj_type'] === 'Answer') ? sprintf( t('answered %s\'s poll'), '[bdi]' . $item['owner']['xchan_name'] . '[/bdi]') : sprintf( t('posted in %s\'s conversation'), '[bdi]' . $item['owner']['xchan_name'] . '[/bdi]')) + : (($item['obj_type'] === 'Answer') ? sprintf( t('voted on %s\'s poll'), '[bdi]' . $item['owner']['xchan_name'] . '[/bdi]') : sprintf( t('posted in %s\'s conversation'), '[bdi]' . $item['owner']['xchan_name'] . '[/bdi]')) ); if(in_array($item['obj_type'], ['Document', 'Video', 'Audio', 'Image'])) { |