From 135248c07c6c7328d24bc577ef686b9a789c9d77 Mon Sep 17 00:00:00 2001 From: rakekniven <2069590+rakekniven@users.noreply.github.com> Date: Wed, 22 Nov 2023 14:31:45 +0100 Subject: [PATCH] fix(i18n): Changed grammar Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com> --- core/js/setupchecks.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/js/setupchecks.js b/core/js/setupchecks.js index f44b6e1aafb49..3a836cd78c6d0 100644 --- a/core/js/setupchecks.js +++ b/core/js/setupchecks.js @@ -217,7 +217,7 @@ } if (data.isBruteforceThrottled) { messages.push({ - msg: t('core', 'Your remote address was identified as "{remoteAddress}" and is brute force throttled at the moment slowing down the performance of various requests. If the remote address is not your address this can be an indication that a proxy is not configured correctly. Further information can be found in the {linkstart}documentation ↗{linkend}.', { remoteAddress: data.bruteforceRemoteAddress }) + msg: t('core', 'Your remote address was identified as "{remoteAddress}" and is brute-force throttled at the moment slowing down the performance of various requests. If the remote address is not your address this can be an indication that a proxy is not configured correctly. Further information can be found in the {linkstart}documentation ↗{linkend}.', { remoteAddress: data.bruteforceRemoteAddress }) .replace('{linkstart}', '') .replace('{linkend}', ''), type: OC.SetupChecks.MESSAGE_TYPE_ERROR