diff --git a/apps/settings/lib/SetupChecks/ForwardedForHeaders.php b/apps/settings/lib/SetupChecks/ForwardedForHeaders.php index 3572feabb1f90..daf84e265af53 100644 --- a/apps/settings/lib/SetupChecks/ForwardedForHeaders.php +++ b/apps/settings/lib/SetupChecks/ForwardedForHeaders.php @@ -47,7 +47,7 @@ public function getCategory(): string { } public function getName(): string { - return $this->l10n->t('Forwared for headers'); + return $this->l10n->t('Forwarded for headers'); } public function run(): SetupResult { @@ -56,7 +56,7 @@ public function run(): SetupResult { $detectedRemoteAddress = $this->request->getRemoteAddress(); if (!\is_array($trustedProxies)) { - return SetupResult::error($this->l10n->t('Your trusted_proxies setting is not correctly set, it should be an array.')); + return SetupResult::error($this->l10n->t('Your "trusted_proxies" setting is not correctly set, it should be an array.')); } if (($remoteAddress === '') && ($detectedRemoteAddress === '')) {