From 4ed18726484b01f924c3e2e3ae42f01956bb8cfe Mon Sep 17 00:00:00 2001 From: rakekniven <2069590+rakekniven@users.noreply.github.com> Date: Wed, 22 Nov 2023 14:33:47 +0100 Subject: [PATCH] fix(i18n): Changed grammar Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com> --- src/App.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.vue b/src/App.vue index 3c14736c..efd64be9 100644 --- a/src/App.vue +++ b/src/App.vue @@ -105,7 +105,7 @@ export default { return t('bruteforcesettings', 'Your remote address was identified as "{remoteAddress}" and is throttled at the moment by {delay}ms.', { remoteAddress: this.remoteAddress, delay: this.delay }) } if (this.isBypassListed) { - return t('bruteforcesettings', 'Your remote address was identified as "{remoteAddress}" and is bypassing brute force protection.', { remoteAddress: this.remoteAddress }) + return t('bruteforcesettings', 'Your remote address was identified as "{remoteAddress}" and is bypassing brute-force protection.', { remoteAddress: this.remoteAddress }) } return t('bruteforcesettings', 'Your remote address was identified as "{remoteAddress}" and is not actively throttled at the moment.', { remoteAddress: this.remoteAddress }) },