Skip to content

Commit

Permalink
Fix translation problem in notifications
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Hartmann <[email protected]>
  • Loading branch information
Chartman123 authored Dec 6, 2024
1 parent 2f2ae8c commit f9938d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Activity/Provider.php
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public function getSubjectString(IL10N $l10n, string $subject): string {
return $l10n->t('{user} has shared the form {formTitle} with team {circle}');

case ActivityConstants::SUBJECT_NEWSUBMISSION:
return $l10n->t('{user} answered your form {formTitle}');
return $l10n->t('Your form {formTitle} was answered by {user}');

default:
$this->logger->warning('Some unknown activity has been found: ' . $subject);
Expand Down

0 comments on commit f9938d5

Please sign in to comment.