l10n: Extract a space from the translation

Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
This commit is contained in:
Valdnet 2021-05-15 11:30:08 +02:00 committed by Thomas Citharel
parent a1e039a2d6
commit 85cc0e87d4
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ class EmailController extends Controller {
}
return new JSONResponse([
'message' => $this->l10n->t('Successfully sent email to ' . $recipient),
'message' => $this->l10n->t('Successfully sent email to %1$s', [$recipient]),
]);
}