Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(i18n): Changed grammar
Signed-off-by: rakekniven <[email protected]>
  • Loading branch information
rakekniven authored and marcoambrosini committed Nov 23, 2023
commit 7013889bddfbedf6e9de99921d879aa3c60ed47a
2 changes: 1 addition & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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 })
},
Expand Down