-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closing key tags are no longer needed, single line key/value sets are no longer allowed
- Loading branch information
Showing
19 changed files
with
28 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,23 @@ | ||
[CMD_BLACKLIST_ERR_NOSELF] | ||
You can not blacklist your own account. | ||
[/CMD_BLACKLIST_ERR_NOSELF] | ||
|
||
[CMD_BLACKLIST_ERR_NOBOT] | ||
Bots cannot call commands and thus do not need to be blacklisted. | ||
[/CMD_BLACKLIST_ERR_NOBOT] | ||
|
||
[CMD_BLACKLIST_ERR_OWNERONLY] | ||
Only bot owners may blacklist globally. | ||
[/CMD_BLACKLIST_ERR_OWNERONLY] | ||
|
||
[CMD_BLACKLIST_ERR_ALREADYGLOBAL] | ||
That user is already globally blacklisted. | ||
[/CMD_BLACKLIST_ERR_ALREADYGLOBAL] | ||
|
||
[CMD_BLACKLIST_ERR_BADTARGET] | ||
You may not use this command on that person. | ||
[/CMD_BLACKLIST_ERR_BADTARGET] | ||
|
||
[CMD_BLACKLIST_ERR_ALREADYBLACKLISTED] | ||
That user is already blacklisted in this server. | ||
[/CMD_BLACKLIST_ERR_ALREADYBLACKLISTED] | ||
|
||
[CMD_BLACKLIST_GLOBALSUCCESS] | ||
Added {{ user }} to the global blacklist. | ||
[/CMD_BLACKLIST_GLOBALSUCCESS] | ||
|
||
[CMD_BLACKLIST_SUCCESS] | ||
Added {{ user }} to the blacklist for this server. | ||
[/CMD_BLACKLIST_SUCCESS] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
[CMD_CLEARLIMIT_UNKNOWN_COMMAND] | ||
Failed to find a command with the name `{{ commandName }}` | ||
[/CMD_CLEARLIMIT_UNKNOWN_COMMAND] | ||
|
||
[CMD_CLEARLIMIT_SUCCESS] | ||
Successfully cleared role limits for command: `{{ commandName }}` | ||
[/CMD_CLEARLIMIT_SUCCESS] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,8 @@ | ||
[CMD_DISABLEGROUP_ERR_NOEXIST] | ||
Command group "{{ group }}" does not exist. | ||
[/CMD_DISABLEGROUP_ERR_NOEXIST] | ||
|
||
[CMD_DISABLEGROUP_ERR_DISABLED] | ||
Command group "{{ group }}" is already disabled or is not allowed to be disabled. | ||
[/CMD_DISABLEGROUP_ERR_DISABLED] | ||
|
||
[CMD_DISABLEGROUP_SUCCESS] | ||
**Disabled command group "{{ group }}"** | ||
[/CMD_DISABLEGROUP_SUCCESS] | ||
**Disabled command group "{{ group }}"** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,8 @@ | ||
[CMD_ENABLEGROUP_ERR_NOEXIST] | ||
Command group "{{ group }}" does not exist. | ||
[/CMD_ENABLEGROUP_ERR_NOEXIST] | ||
|
||
[CMD_ENABLEGROUP_ERR_ENABLED] | ||
Command group "{{ group }}" is already enabled. | ||
[/CMD_ENABLEGROUP_ERR_ENABLED] | ||
|
||
[CMD_ENABLEGROUP_SUCCESS] | ||
**Enabled command group "{{ group }}"** | ||
[/CMD_ENABLEGROUP_SUCCESS] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,21 @@ | ||
[CMD_LIMIT_ERR_UNKNOWN_COMMAND] | ||
Failed to find a command with the name `{{ commandName }}` | ||
[/CMD_LIMIT_ERR_UNKNOWN_COMMAND] | ||
|
||
[CMD_LIMIT_ERR_INVALID_GROUP] | ||
Cannot limit base commands. | ||
[/CMD_LIMIT_ERR_INVALID_GROUP] | ||
|
||
[CMD_LIMIT_ERR_ALREADY_LIMITER] | ||
Role `{{ roleName }}` is already a limiter for command: `{{ commandName }}` | ||
[/CMD_LIMIT_ERR_ALREADY_LIMITER] | ||
|
||
[CMD_LIMIT_ERR_INVALID_ROLE] | ||
Failed to find {{! | ||
args.invalidRoles.split(',').length > 1 ? 'roles' : 'role' | ||
!}}: {{ invalidRoles }} | ||
[/CMD_LIMIT_ERR_INVALID_ROLE] | ||
|
||
[CMD_LIMIT_ERR_NO_ROLES] | ||
Failed to add any roles to the command. | ||
[/CMD_LIMIT_ERR_NO_ROLES] | ||
|
||
[CMD_LIMIT_SUCCESS] | ||
Successfully added {{! | ||
args.roles.split(',').length > 1 ? 'roles' : 'role' | ||
!}}: {{ roles }} to the limiter for command: `{{ commandName }}` | ||
[/CMD_LIMIT_SUCCESS] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,9 @@ | ||
[CMD_RELOAD_ERR_UNKNOWN_COMMAND] | ||
Command "{{ commandName }}" could not be found. | ||
[/CMD_RELOAD_ERR_UNKNOWN_COMMAND] | ||
|
||
[CMD_RELOAD_SUCCESS] | ||
{{! | ||
args.commandName ? | ||
`Command "${args.commandName}"` : | ||
'Commands' | ||
!}} reloaded. ({{ time }} ms) | ||
[/CMD_RELOAD_SUCCESS] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,14 @@ | ||
[CMD_WHITELIST_ERR_OWNERONLY] | ||
Only bot owners may remove a user from the global blacklist. | ||
[/CMD_WHITELIST_ERR_OWNERONLY] | ||
|
||
[CMD_WHITELIST_ERR_NOTGLOBAL] | ||
That user is not currently on the global blacklist. | ||
[/CMD_WHITELIST_ERR_NOTGLOBAL] | ||
|
||
[CMD_WHITELIST_ERR_NOTBLACKLISTED] | ||
That user is not currently blacklisted in this server. | ||
[/CMD_WHITELIST_ERR_NOTBLACKLISTED] | ||
|
||
[CMD_WHITELIST_GLOBALSUCCESS] | ||
Removed {{ user }} from the global blacklist. | ||
[/CMD_WHITELIST_GLOBALSUCCESS] | ||
|
||
[CMD_WHITELIST_SUCCESS] | ||
Removed {{ user }} from the blacklist for this server. | ||
[/CMD_WHITELIST_SUCCESS] |
Oops, something went wrong.