Skip to content

Commit

Permalink
Merge pull request #504 from nextcloud/rakekniven-patch-1
Browse files Browse the repository at this point in the history
fix(i18n): Changed grammar
  • Loading branch information
marcoambrosini authored Nov 23, 2023
2 parents c0565ba + 2cd5caf commit 60a9b20
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
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

0 comments on commit 60a9b20

Please sign in to comment.