Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(i18n): Changed grammar #504

Merged
merged 5 commits into from
Nov 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 3 additions & 3 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
<id>bruteforcesettings</id>
<name>Brute-force settings</name>
<summary>Whitelist IPs</summary>
<description><![CDATA[Brute Force Protection is meant to protect Nextcloud servers from attempts to
<description><![CDATA[Brute-force protection is meant to protect Nextcloud servers from attempts to
guess account passwords in various ways. Besides the obvious "*let's try a big
list of commonly used passwords*" attack, it also makes it harder to use
slightly more sophisticated attacks via the reset password form or trying to
find app password tokens.

If triggered, brute force protection makes requests coming from an IP on a
bruteforce protected controller with the same API slower for a 24 hour period.
If triggered, brute-force protection makes requests coming from an IP on a
brute-force protected controller with the same API slower for a 24 hour period.

With this app, the admin can exempt an IP address or range from this
protection which can be useful for testing purposes or when there are false
Expand Down
4 changes: 2 additions & 2 deletions js/bruteforcesettings-main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/bruteforcesettings-main.js.map

Large diffs are not rendered by default.

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 bruteforce 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
Loading