forked from Galactic/galactic-bot
970 lines
28 KiB
Plaintext
970 lines
28 KiB
Plaintext
|
||
|
||
// Administration Module
|
||
|
||
|
||
//Settings Command
|
||
[C_SETTINGS_DESCRIPTION]
|
||
Configure your server and user settings.
|
||
|
||
[C_SETTINGS_MISSINGPERMISSIONS]
|
||
You must have `Administrator` or `Manage Server` permissions to change/view server settings.
|
||
|
||
[C_SETTINGS_RESETPROMPT]
|
||
Are you sure you want to reset **all** of your {type} settings to the default values? This cannot be undone. *(__y__es, __n__o)*
|
||
This prompt will time out in __30 seconds__.
|
||
|
||
[C_SETTINGS_RESETINVALID]
|
||
You provided an invalid input, please try again.
|
||
|
||
[C_SETTINGS_RESETABORT]
|
||
Successfully aborted the operation.
|
||
|
||
[C_SETTINGS_RESETSUCCESS]
|
||
All {type} settings were successfully deleted and set to default.
|
||
|
||
[C_SETTINGS_EXPORT]
|
||
Attached the JSON-formatted {type} settings file in the file below.
|
||
You may want to format this file for your viewing pleasure.
|
||
|
||
[C_SETTINGS_SETTINGNOTFOUND]
|
||
That setting does not exist!
|
||
|
||
[C_SETTINGS_FORMATTYPE]
|
||
switch("{type}") {
|
||
case "GUILD":
|
||
"server";
|
||
break;
|
||
case "USER":
|
||
"user";
|
||
break;
|
||
}
|
||
|
||
//Grant Command
|
||
[C_GRANT_DESCRIPTION]
|
||
Grant roles or users permissions to use commands or modules.
|
||
To view all grantable permissions, use the command `{prefix}perms list`.
|
||
|
||
[C_GRANT_MISSINGRESOLVEABLES]
|
||
Unable to find any roles or members, view `{prefix}cmd grant` for more information.
|
||
|
||
[C_GRANT_MISSINGPERMISSIONNODES]
|
||
Unable to find any grantable permissions, view `{prefix}cmd grant` for more information.
|
||
|
||
[C_GRANT_DATABASEERROR]
|
||
There was an issue pushing the permissions to the database. Contact a bot developer.
|
||
|
||
[C_GRANT_SUCCESS]
|
||
Successfully granted targets {targets} the following permissions: {permissions}{channel}.
|
||
|
||
[C_GRANT_SUCCESSCHANNELS]
|
||
in channel{plural} {channels}
|
||
|
||
[C_GRANT_WARNING]
|
||
You granted a command from the **Administration** module. This is potentially dangerous, as whoever you granted the administration commands to could have access to vital parts of the server. Only grant administration commands to people you trust.
|
||
|
||
//Revoke Command
|
||
[C_REVOKE_DESCRIPTION]
|
||
Revoke permissions granted to roles or users.
|
||
NOTE: If a user left the server, you must use the ID to revoke the permissions.
|
||
|
||
[C_REVOKE_MISSINGRESOLVEABLES]
|
||
Unable to find any roles or users, view `{prefix}cmd revoke` for more information.
|
||
|
||
[C_REVOKE_DATABASEERROR]
|
||
There was an issue pushing the permissions to the database. Contact a bot developer.
|
||
|
||
[C_REVOKE_SUCCESS]
|
||
Successfully revoked targets {targets} the following permissions: {permissions}{channel}.
|
||
|
||
[C_REVOKE_SUCCESSCHANNELS]
|
||
in channel{plural} {channels}
|
||
|
||
//Permissions Command
|
||
[C_PERMISSIONS_DESCRIPTION]
|
||
View permissions granted to roles or users.
|
||
|
||
[C_PERMISSIONS_LIST]
|
||
You can **grant**/**revoke** the following permissions: {permissions}.
|
||
|
||
[C_PERMISSIONS_SHOWTITLE]
|
||
switch({user}) {
|
||
case true:
|
||
"User Permissions"
|
||
break;
|
||
case false:
|
||
"Role Permissions"
|
||
break;
|
||
}
|
||
|
||
[C_PERMISSIONS_SHOWDESCRIPTION]
|
||
An overview of all {resolve}'s permissions in the server. If you would like to see an in-depth view of the role or user's permissions, use `{prefix}perms [user|role]`.
|
||
|
||
[C_PERMISSIONS_MAXFIELDS]
|
||
:warning: **You have met the max amount of fields and you will need to use `{prefix}perms --json` to view them.** :warning:
|
||
|
||
[C_PERMISSIONS_NOTFOUND]
|
||
Unable to find any roles or users with those arguments.
|
||
|
||
[C_PERMISSIONS_JSON]
|
||
Attached the JSON-formatted permission file in the file below.
|
||
You may want to format this file for your viewing pleasure.
|
||
|
||
[C_PERMISSIONS_GLOBAL]
|
||
**Global Permissions:** {permissions}
|
||
Global permissions can be used in all channels, but you can add specific channels if needed.
|
||
|
||
[C_PERMISSIONS_GLOBALALT]
|
||
Channel-specific permissions are listed below.
|
||
|
||
[C_PERMISSIONS_NOPERMISSIONS]
|
||
**No permissions found!** Try granting some permissions by using:
|
||
`{prefix}grant <roles..|users..> <permissions..>}`
|
||
|
||
[C_PERMISSIONS_PERMISSIONSNOTFOUND]
|
||
Found {type} **{resolveable}** but {they}had no permissions.
|
||
|
||
[C_PERMISSIONS_NOPERMISSIONS]
|
||
Your server has no granted permissions to any roles or users.
|
||
If you would like to grant permissions, use the command `{prefix}grant` for more information.
|
||
|
||
//Disable Command
|
||
[C_DISABLE_DESCRIPTION]
|
||
Disable commands in your server to prevent usage.
|
||
|
||
[C_DISABLE_LIST]
|
||
The command{plural} currently disabled in your server are: {commands}
|
||
|
||
[C_DISABLE_LISTFAIL]
|
||
There are no disabled commands in your server.
|
||
|
||
[C_DISABLE_MISSINGCOMMANDS]
|
||
You must provide commands to disable.
|
||
|
||
[C_DISABLE_SUCCESS]
|
||
Successfully **disabled** command{plural} {commands} in your server.
|
||
|
||
[C_DISABLE_FAIL]
|
||
Failed to disable command{plural} {commands}. You are unable to disable the **command:enable** and **command:disable** commands.
|
||
|
||
[C_DISABLE_WARNING]
|
||
You disabled a command inside of the **Administration** module. It is dangerous to do so, as it may disable configurability of your server. Note you are unable to disable the `command:enable` and `command:disable` commands.
|
||
|
||
[C_DISABLE_SUCCESSGLOBAL]
|
||
Successfully **disabled** command{plural} {commands} globally. **`[{amount}/{total}]`**
|
||
These changes will be reverted if a shard restarts; edit the file{plural} for sustainability.
|
||
|
||
[C_DISABLE_FAILGLOBAL]
|
||
Failed to globally disable command{plural} {commands}. **`[0/{total}]`**
|
||
|
||
//Enable Command
|
||
[C_ENABLE_DESCRIPTION]
|
||
Enable commands in your server.
|
||
|
||
[C_ENABLE_MISSINGCOMMANDS]
|
||
You must provide commands to enable.
|
||
|
||
[C_ENABLE_SUCCESS]
|
||
Successfully **enabled** command{plural} {commands} in your server.
|
||
|
||
[C_ENABLE_FAIL]
|
||
Failed to enable command{plural} {commands}, they likely were not disabled.
|
||
|
||
[C_ENABLE_SUCCESSGLOBAL]
|
||
Successfully **enabled** command{plural} {commands} globally. **`[{amount}/{total}]`**
|
||
These changes will be reverted if a shard restarts; edit the file{plural} for sustainability.
|
||
|
||
[C_ENABLE_FAILGLOBAL]
|
||
Failed to globally enable command{plural} {commands}. **`[0/{total}]`**
|
||
|
||
|
||
// Moderation Module
|
||
|
||
|
||
//Note Command
|
||
[C_NOTE_DESCRIPTION]
|
||
Note members with a description, will not be logged.
|
||
The only way to view notes is through moderation history.
|
||
|
||
[C_NOTE_MISSINGMEMBERS]
|
||
You must provide members to assign notes to.
|
||
|
||
[C_NOTE_MISSINGMEMBERPERMISSIONS]
|
||
|
||
//Warn Command
|
||
[C_WARN_DESCRIPTION]
|
||
Warn members for a particular reason.
|
||
|
||
[C_WARN_MISSINGMEMBERS]
|
||
You must provide members to warn.
|
||
|
||
[C_WARN_INSUFFICIENTPERMISSIONS]
|
||
you don't have permission to run this command.
|
||
|
||
//Unmute Command
|
||
[C_UNMUTE_DESCRIPTION]
|
||
Unmute members from the server.
|
||
|
||
[C_UNMUTE_MISSINGMEMBERS]
|
||
You must provide members to unmute.
|
||
|
||
[C_UNMUTE_INSUFFICIENTPERMISSIONS]
|
||
I don't have permission to manage roles
|
||
|
||
[C_UNMUTE_CANNOTFINDMUTE]
|
||
they were not previously muted
|
||
|
||
[C_UNMUTE_ROLEDOESNOTEXIST]
|
||
the mute role does not exist anymore
|
||
|
||
[C_UNMUTE_1FAIL]
|
||
I had an issue removing the role
|
||
|
||
[C_UNMUTE_2FAIL]
|
||
I had issues assigning roles to them
|
||
|
||
[C_UNMUTE_3FAIL]
|
||
I had issues granting roles to them
|
||
|
||
//Mute Command
|
||
[C_MUTE_DESCRIPTION]
|
||
Assign members to be muted from the server for a specified amount of time.
|
||
|
||
[C_MUTE_MISSINGMEMBERS]
|
||
You must provide members to mute.
|
||
|
||
[C_MUTE_DURATIONEXCEPTION]
|
||
The duration must be more than `1 minute` and less than `1 month`.
|
||
|
||
[C_MUTE_INSUFFICIENTPERMISSIONS]
|
||
I don't have permission to manage roles
|
||
|
||
[C_MUTE_NOMUTEROLE]
|
||
You don't have a mute role set in your server, use the command `-set mute` for more information.
|
||
|
||
[C_MUTE_INVALIDMUTEROLE]
|
||
It seems like the mute role was deleted, use the command `-set mute` for more information.
|
||
|
||
[C_MUTE_1FAIL]
|
||
I had an issue adding the role
|
||
|
||
[C_MUTE_2FAIL]
|
||
I had issues assigning roles to them
|
||
|
||
[C_MUTE_3FAIL]
|
||
I had issues revoking roles from them
|
||
|
||
//Kick Command
|
||
[C_KICK_DESCRIPTION]
|
||
Kick provided members from the server.
|
||
|
||
[C_KICK_MISSINGMEMBERS]
|
||
You must provide members to kick.
|
||
|
||
[C_KICK_INSUFFICIENTPERMISSIONS]
|
||
I don't have permission to kick members
|
||
|
||
[C_KICK_CANNOTBEKICKED]
|
||
they are unable to be kicked
|
||
|
||
//Softban Command
|
||
[C_SOFTBAN_DESCRIPTION]
|
||
Bans and then unbans the member from the server.
|
||
Primarily used to prune the member's messages in all channels.
|
||
|
||
[C_SOFTBAN_MISSINGMEMBERS]
|
||
You must provide members to softban.
|
||
|
||
[C_SOFTBAN_INSUFFICIENTPERMISSIONS]
|
||
I don't have permission to ban members
|
||
|
||
[C_SOFTBAN_CANNOTBESOFTBANNED]
|
||
they are unable to be softbanned
|
||
|
||
//Ban Command
|
||
[C_BAN_DESCRIPTION]
|
||
Ban provided members or users from the server. Works with users not in the server.
|
||
Optionally assign a time to ban them for.
|
||
|
||
[C_BAN_MISSINGMEMBERS]
|
||
You must provide members to ban.
|
||
|
||
[C_BAN_DURATIONREQUIRED]
|
||
You must provide a duration while using the **tempban** alias.
|
||
|
||
[C_BAN_DURATIONEXCEPTION]
|
||
The duration must be more than `1 minute` and less than `3 months`.
|
||
|
||
[C_BAN_INSUFFICIENTPERMISSIONS]
|
||
I don't have permission to ban members
|
||
|
||
[C_BAN_CANNOTBEBANNED]
|
||
they are unable to be banned
|
||
|
||
[C_BAN_ALREADYBANNED]
|
||
they are already banned
|
||
|
||
//Unban Command
|
||
[C_UNBAN_DESCRIPTION]
|
||
Unban provided users from the server.
|
||
|
||
[C_UNBAN_MISSINGMEMBERS]
|
||
You must provide users to unban.
|
||
|
||
[C_UNBAN_INSUFFICIENTPERMISSIONS]
|
||
I don't have permission to unban members
|
||
|
||
[C_UNBAN_NOTBANNED]
|
||
they are not banned
|
||
|
||
//Prune Command
|
||
[C_PRUNE_DESCRIPTION]
|
||
Mass delete messages from provided channels. The amount provided is the amount of messages it searches, not deletes. Filters messages using a logical OR by default. **You cannot prune messages older than 2 weeks.**
|
||
|
||
[C_PRUNE_CHANNELEXCEPTION]
|
||
You are only able to prune up to `3` channels at a time.
|
||
|
||
[C_PRUNE_INTEGERINVALID]
|
||
You must provide an amount to prune.
|
||
|
||
[C_PRUNE_INTEGEREXCEPTION]
|
||
The amount must be more than `1` and less than `300`.
|
||
|
||
[C_PRUNE_INSUFFICIENTPERMISSIONS]
|
||
I don't have permission to manage messages
|
||
|
||
[C_PRUNE_NOTFETCHED]
|
||
I was unable to fetch any messages
|
||
|
||
[C_PRUNE_NOTDELETABLE]
|
||
I could not delete those messages
|
||
|
||
[C_PRUNE_NOFILTERRESULTS]
|
||
I could not find any messages with those arguments
|
||
|
||
[C_PRUNE_NODELETE]
|
||
I had issues deleting those messages
|
||
|
||
//Vckick Command
|
||
[C_VCKICK_DESCRIPTION]
|
||
Kick provided members from their connected voice-channel.
|
||
|
||
[C_VCKICK_INSUFFICIENTPERMISSIONS]
|
||
I don't have permission to move members
|
||
|
||
[C_VCKICK_NOCHANNEL]
|
||
they are not in a voice-channel
|
||
|
||
//Slowmode Command
|
||
[C_SLOWMODE_DESCRIPTION]
|
||
Set the slowmode in provided channels. Primarily used for setting the slowmode in smaller increments, while Discord will not let you.
|
||
|
||
[C_SLOWMODE_SECONDREQUIRED]
|
||
You must provide a duration to set the slowmode to.
|
||
|
||
[C_SLOWMODE_SECONDEXCEPTION]
|
||
The duration must be `0 seconds` or more, and less than `6 hours`.
|
||
|
||
[C_SLOWMODE_INSUFFICIENTPERMISSIONS]
|
||
I don't have permission to manage channels
|
||
|
||
[C_SLOWMODE_NOCHANGE]
|
||
the slowmode was already set to that
|
||
|
||
//Nickname Command
|
||
[C_NICKNAME_DESCRIPTION]
|
||
Change the nickname of provided members or dehoist them. You will have to put the nickname in quotes in order to allow for spaced nicknames.
|
||
|
||
[C_NICKNAME_MISSINGMEMBERS]
|
||
You must provide members to nickname.
|
||
|
||
[C_NICKNAME_MISSINGNAME]
|
||
You must provide arguments to change their nickname to.
|
||
|
||
[C_NICKNAME_NOCHARACTERS]
|
||
they had no hoisted characters in their nickname
|
||
|
||
[C_NICKNAME_INSUFFICIENTPERMISSIONS]
|
||
I don't have permission to manage nicknames
|
||
|
||
[C_NICKNAME_MISSINGPERMSSIONS]
|
||
they have a higher role than I do
|
||
|
||
//Addrole Command
|
||
[C_ADDROLE_DESCRIPTION]
|
||
Add roles to provided members. The added roles cannot be a higher position than the executor's highest role.
|
||
|
||
[C_ADDROLE_MISSINGMEMBERS]
|
||
You must provide members to add roles to.
|
||
|
||
[C_ADDROLE_MISSINGROLES]
|
||
You must provide roles to add to members.
|
||
|
||
[C_ADDROLE_INSUFFICIENTPERMISSIONS]
|
||
I don't have permission to manage roles
|
||
|
||
[C_ADDROLE_ROLEHIERARCHY]
|
||
the provided role(s) have a higher position than yours
|
||
|
||
[C_ADDROLE_ROLEHIERARCHYBOT]
|
||
the provided role(s) are higher than the bot, I cannot add them
|
||
|
||
//Removerole Command
|
||
[C_REMOVEROLE_DESCRIPTION]
|
||
Remove roles to provided members. The removes roles cannot be a higher position than the executor's highest role.
|
||
|
||
[C_REMOVEROLE_MISSINGMEMBERS]
|
||
You must provide members to remove roles from.
|
||
|
||
[C_REMOVEROLE_MISSINGROLES]
|
||
You must provide roles to remove from members.
|
||
|
||
[C_REMOVEROLE_INSUFFICIENTPERMISSIONS]
|
||
I don't have permission to manage roles
|
||
|
||
[C_REMOVEROLE_ROLEHIERARCHY]
|
||
the provided role(s) have a higher position than yours
|
||
|
||
//History Command
|
||
[C_HISTORY_DESCRIPTION]
|
||
Display moderation history for the server or for certain users.
|
||
|
||
[C_HISTORY_ERROR]
|
||
I had issues finding moderation history in your server.
|
||
|
||
[C_HISTORY_NORESULTS]
|
||
There are no results for that search query.
|
||
|
||
[C_HISTORY_SUCCESSTYPE]
|
||
switch({old}) {
|
||
case true:
|
||
'oldest';
|
||
break;
|
||
case false:
|
||
'newest';
|
||
break;
|
||
}
|
||
|
||
[C_HISTORY_SUCCESS]
|
||
Fetched the {type} moderation cases{targets}.
|
||
|
||
[C_HISTORY_SUCCESSTARGETS]
|
||
for target{plural}: {targets}
|
||
|
||
[C_HISTORY_SUCCESSEXPORT]
|
||
Attached the JSON-formatted moderation file in the file below.
|
||
You may want to format this file for your viewing pleasure.
|
||
|
||
[C_HISTORY_FAILEXPORT]
|
||
Unable to upload JSON file, the file is too large to upload here. **\`[amount/max]\`**
|
||
If you absolutely need this, contact a bot developer in our support server.
|
||
|
||
//Case Command
|
||
[C_CASE_DESCRIPTION]
|
||
View a specific case
|
||
|
||
[C_CASE_INVALID]
|
||
Case ID `{caseID}` is invalid! Make sure it's an integer above 0.
|
||
|
||
[C_CASE_NOTFOUND]
|
||
No case matching ID `{caseID}` was found.
|
||
|
||
[C_CASE_TITLE]
|
||
{emoji_book} Case **#{caseID}**
|
||
|
||
[C_CASE_TITLE_VERBOSE]
|
||
{emoji_book} Case **#{caseID} (verbose)**
|
||
|
||
[C_CASE_CHANGES_TITLE]
|
||
{emoji_note} Changes to case **#{case}**
|
||
|
||
[C_CASE_CHANGES_NONE]
|
||
No changes have been made to the case.
|
||
|
||
[C_CASE_CHANGE_BASE]
|
||
**Timestamp:** {date} | {timeAgo} ago
|
||
**Staff:** {staff}
|
||
|
||
[C_CASE_CHANGES_RESOLVE]
|
||
**Reason:** {reason}
|
||
|
||
[C_CASE_CHANGES_REASON]
|
||
**Old reason:** {reason}
|
||
|
||
[C_CASE_CHANGES_DURATION]
|
||
**Old duration:** {duration}
|
||
|
||
[C_CASE_CHANGE_NOREASON]
|
||
`No reason given`
|
||
|
||
[C_CASE_TEMPLATE]
|
||
**[Jump to message (if available)](https://discord.com/channels/{guild}/{channel}/{message})**
|
||
**Unique ID:** {uniqueID}
|
||
**Type:** {type}
|
||
**Timestamp:** {date} | {relativeTime} ago
|
||
{target}
|
||
**Staff:** {staff}
|
||
**Changes:** {nrChanges}
|
||
|
||
[C_CASE_TEMPLATE_VERBOSE]
|
||
**[Jump to message (if available)](https://discord.com/channels/{guild}/{channel}/{message})**
|
||
**Unique ID:** {uniqueID}
|
||
**Type:** {type}
|
||
**Timestamp:** {date} | {relativeTime} ago
|
||
**UNIX timestamp:** {unix} | {relativeTimeSeconds} seconds ago
|
||
{target}
|
||
**Staff:** {staff} ({staffID})
|
||
**Amount of changes:** {nrChanges}
|
||
**Changes:** {changes}
|
||
|
||
[C_CASE_MODPOINTS]
|
||
**Points:** {points}
|
||
**Expires:** {expires}
|
||
|
||
[C_CASE_REASON]
|
||
**Reason:**
|
||
```{reason}```
|
||
|
||
[C_CASE_SLOWMODE]
|
||
**Slowmode:** {readable}
|
||
|
||
[C_CASE_SLOWMODE_VERBOSE]
|
||
**Slowmode:** {readable} ({seconds}) seconds
|
||
|
||
[C_CASE_TARGET_USER]
|
||
**User:** {target}
|
||
|
||
[C_CASE_TARGET_CHANNEL]
|
||
**Channel:** #{target}
|
||
|
||
[C_CASE_TARGET_USER_VERBOSE]
|
||
**User:** {target} ({targetID})
|
||
|
||
[C_CASE_TARGET_CHANNEL_VERBOSE]
|
||
**Channel:** #{target} ({targetID})
|
||
|
||
[C_CASE_LENGTH]
|
||
**Length:** {time}
|
||
|
||
[C_CASE_LENGTH_VERBOSE]
|
||
**Length:** {time} ({inSeconds} seconds)
|
||
|
||
|
||
// Utility Module
|
||
|
||
|
||
//Ping Command
|
||
|
||
[C_PING_DESCRIPTION]
|
||
Shows the millisecond delay between the bot and the discord server.
|
||
|
||
//Settings Command
|
||
|
||
[C_SETTINGS_DESCRIPTION]
|
||
Configure your guild and user settings.
|
||
|
||
[C_SETTINGS_ADMINISTRATORERROR]
|
||
You must have the `ADMINISTRATOR` permission to run this.
|
||
|
||
[C_SETTINGS_CLIENTPERMISSIONERROR]
|
||
The setting **{setting}** requires __the bot__ to have permissions to use.
|
||
*Missing: {missing}*
|
||
|
||
[C_SETTINGS_MEMBERPERMISSIONERROR]
|
||
The setting **{setting}** requires __you__ to have permissions to use.
|
||
*Missing: {missing}*
|
||
|
||
[C_SETTINGS_RESET]
|
||
Are you sure you want to reset **all** of your {type} settings to the default values? This cannot be undone. *(__y__es, __n__o)*
|
||
This prompt will time out in __30 seconds__.
|
||
|
||
[C_SETTINGS_RESETERROR]
|
||
You provided an invalid input, please try again.
|
||
|
||
[C_SETTINGS_RESETABORT]
|
||
Successfully aborted the operation.
|
||
|
||
[C_SETTINGS_RESETSUCCESS]
|
||
All {type} settings were successfully deleted and set to default.
|
||
|
||
[C_SETTINGS_USERSETTINGSTITLE]
|
||
User Settings
|
||
|
||
[C_SETTINGS_GUILDSETTINGSTITLE]
|
||
Guild Settings
|
||
|
||
[C_SETTINGS_LISTSETTINGS]
|
||
Use `{prefix}setting [setting-name]` to view a description on the setting. Each setting is unique, so make sure to read carefully.
|
||
|
||
[C_SETTINGS_LISTSETTINGSALT]
|
||
Alternatively, you can view user settings by using the command `{prefix}settings -u`
|
||
|
||
[C_SETTINGS_NONEXISTANT]
|
||
That setting does not exist!
|
||
|
||
[C_SETTINGS_JSON]
|
||
Attached the JSON-formatted settings file in the file below.
|
||
You may want to format this file for your viewing pleasure.
|
||
|
||
//Avatar Command
|
||
[C_AVATAR_DESCRIPTION]
|
||
Fetches avatars for various users in different formats and sizes.
|
||
|
||
[C_AVATAR_FORMATERROR]
|
||
Unable to find an avatar with those arguments, try a different size or format.
|
||
|
||
//Lookup Command
|
||
[C_LOOKUP_DESCRIPTION]
|
||
Looks up a discord invite code and returns the information of the invite.
|
||
|
||
[C_LOOKUP_FAILEDMATCH]
|
||
Couldn't find a discord invite code, try again.
|
||
|
||
[C_LOOKUP_NONEXISTANT]
|
||
Unable to find any data about that invite code.
|
||
|
||
|
||
// Information Module
|
||
|
||
|
||
//Help Command
|
||
[C_HELP_DESCRIPTION]
|
||
Shows helpful information for commands, settings, and moderation.
|
||
|
||
[C_HELP]
|
||
**__HELP MENU__**
|
||
For a list of all available commands, use `{prefix}commands [ group ]`.
|
||
|
||
**❯ Arguments**
|
||
The bot splits arguments by space unless specified otherwise. To pass an argument that contains spaces you have to encapsulate it in quotes, some exceptions exist.
|
||
**Ex:**
|
||
`{prefix}grant "rolename that contains spaces" < permission >` - quotes are necessary
|
||
`{prefix}user some user` - quotes not necessary
|
||
**Typically** if the argument is at the end of a command it won't require quotes.
|
||
|
||
**❯ Documentation notation**
|
||
**Optional** arguments are denoted by being encapsulated in brackets `[ ]` - means that the command will run either with default values or show usage prompt.
|
||
**Required** arguments are denoted by less and greater than `< >` - means that the command will not run and return an error.
|
||
**Infinite** arguments (ones you can list several) are denoted by `..` after the argument. Ex `< argument.. >` - means you can pass more than one argument.
|
||
**Alternatives** are denoted by being separated by a `|`.
|
||
**Actual values** that you can use in a command are denoted by being surrounded by single quotes `' '`.
|
||
|
||
**❯ Moderation**
|
||
For help with moderation, see `{prefix}help modhelp`.
|
||
__**Warning:** This is a long embed.__
|
||
|
||
**❯ Command aliases**
|
||
Most commands and settings have some kind of aliases associated with them, some of which change the behaviour of the command or setting.
|
||
For instance the mute setting has a `createmute` (`{prefix}settings createmute <rolename>`) alias, which changes the behaviour to be identical to `{prefix}settings mute create <rolename>`.
|
||
|
||
**❯ Detailed usage of commands**
|
||
`{prefix}help [ command / setting ]`
|
||
|
||
**❯ Links**
|
||
[Support & Info server](https://discord.gg/SvJgtEj)
|
||
[@BotGalactic Twitter](https://twitter.com/BotGalactic)
|
||
[GalacticBot Patreon](https://www.patreon.com/galacticbot)
|
||
|
||
|
||
[C_HELP_TEMPLATE]
|
||
__**{component} HELP**__
|
||
{desc}
|
||
|
||
**Example usage**
|
||
{text}
|
||
|
||
|
||
[C_HELP_HELP]
|
||
Shows information about the bot and component usage.
|
||
To show help for commands `{prefix}help [command]`
|
||
|
||
[C_HELP_404]
|
||
Dude stop, {component} doesn't exist!
|
||
|
||
[C_HELP_TAGS]
|
||
**TAG SEARCH**
|
||
Commands and settings matching tag `{keyword}`.
|
||
For further help on how to use them, see `{prefix}help <component>`.
|
||
|
||
[MODHELP_TITLE]
|
||
**Moderation help menu**
|
||
|
||
[MODHELP_DESC]
|
||
**Galactic Bot** offers extensive moderation tools for servers, small and large, ranging from simple warnings and notes to mutes and tempbans. One of our more recent additions is automod. While not necessarily being a true automod, it'll keep track of moderation escalation for you with some configuration. Automod utilizes configurable modpoints and thresholds, for more information about automod see `{prefix}settings modpoints` and `{prefix}settings automod`.
|
||
|
||
**Galactic's** moderation commands can be viewed by using `{prefix}commands moderation`. The moderation utility follows a specific syntax for moderation, some parts allow for variation, while others require the arguments to be in specific locations in the command.
|
||
**The general syntax is:** `{prefix}<command> @user [time] [reason]`
|
||
|
||
Arguments that don't follow a strict pattern can be put anywhere **in the reason**. Such arguments are flags (and points, though they don't follow the same syntax as flags, more on that in a bit). For now there aren't many flags used by the moderation utility, though more may come in the future. The flags currently in use are `--force` and `--expires:<time>`, which are used to guide the automod.
|
||
|
||
[MODHELP_FIELD_1_NAME]
|
||
**❯ Moderation flags**
|
||
|
||
[MODHELP_FIELD_1_VALUE]
|
||
`--force` is the flag used to bypass automod, i.e. if you think automod will change your infraction due to a threshold being exceeded pass the `--force` flag to override.
|
||
**Ex:** `{prefix}warn @user 2pts obnoxious --force` - this would force the infraction to be a warning even if the points issued would cause the total amount of points to exceed a threshold.
|
||
|
||
`--expire <time>` is the flag used to tell the automod that a custom infraction expiration time should be used instead of the defined modpoints expiration value.
|
||
**Ex:** `{prefix}warn @user 2pts obnoxious --expires 2d` - This tells the system that the infraction will expire in 2 days, instead of whatever was configured in the setting.
|
||
|
||
`--silent` is the flag used to tell the bot not to DM the infraction the user if the bot otherwise was configured to do so.
|
||
**Ex:** `{prefix}ban @user really obnoxious --silent` - with default configuration the bot would DM the user when removed from the server, passing the `--silent` flag will stop the bot from doing so.
|
||
|
||
[MODHELP_FIELD_2_NAME]
|
||
**❯ Points**
|
||
|
||
[MODHELP_FIELD_2_VALUE]
|
||
Points are the point values defined either when running the command or in the modpoints setting. Issuing points is fairly simple, as they get picked up from anywhere in the **reason**, so long they follow the correct format. Points follow this pattern: `integer value points|point|pts|pt|p`. Any point values that exceed 100 will default to 100, and any point values that go below 0 will default to 0.
|
||
**Ex:** `{prefix}warn @user obnoxious 2 points`
|
||
|
||
[MODHELP_FIELD_3_NAME]
|
||
**❯ Infraction history**
|
||
|
||
[MODHELP_FIELD_3_VALUE]
|
||
Infraction history will always be logged to the bot's database regardless of text channel output. As such GalacticBot provides tools to search logs and filter them to some extent with flags, such as `--filter:warn` or `--exclude:mute`.
|
||
|
||
When viewing a user's infraction history, the total amount on **unresolved infractions** is shown, and if modpoints are enabled, their unexpired points as well. This does **not** mean that they are not displayed in their history!
|
||
|
||
[MODHELP_FIELD_4_NAME]
|
||
**❯ NOTE**
|
||
|
||
[MODHELP_FIELD_4_VALUE]
|
||
All flags and points will be parsed **out of the reason**, meaning that when issuing them they will not show up in the reason for the infraction. Points will be displayed in the infraction if the modpoints system is enabled and flags don't need to be displayed anywhere.
|
||
|
||
//Guild command
|
||
[C_GUILD_DESCRIPTION]
|
||
View data about the server.
|
||
|
||
[C_GUILD_TEMPLATE]
|
||
__Server information for **{name}**__
|
||
{description}
|
||
|
||
{emoji_owner} **Owner:** <@{owner}>
|
||
{emoji_booster4} **Boost tier:** {tier}
|
||
{emoji_booster3} **Boosters:** {boosters}
|
||
{emoji_calendar} **Date created:** {createdAt}
|
||
{emoji_region} **Voice region:** {region}
|
||
|
||
[C_GUILD_MEMBERS_NAME]
|
||
__Members__
|
||
|
||
[C_GUILD_MEMBERS]
|
||
{emoji_members} **Count:**
|
||
{memberCount}/{maxMembers}
|
||
{emoji_online} **Online:**
|
||
{approxPresences}/{maxPresences}
|
||
|
||
[C_GUILD_CHANNELS_NAME]
|
||
__Channels__
|
||
|
||
[C_GUILD_CHANNELS]
|
||
**Total:** {totalChannels}/500
|
||
{emoji_category-channel} **Categories:** {cat}
|
||
{emoji_text-channel} **Text:** {tc}
|
||
{emoji_voice-channel} **Voice:** {vc}
|
||
{news}
|
||
{store}
|
||
|
||
[C_GUILD_NEWS]
|
||
{emoji_news-channel} **News:** {news}
|
||
|
||
[C_GUILD_STORE]
|
||
{emoji_store-channel} **Store:** {store}
|
||
|
||
[C_GUILD_OTHER_NAME]
|
||
__Other__
|
||
|
||
[C_GUILD_OTHER]
|
||
{emoji_role} **Roles:**
|
||
{roleCount}/250
|
||
{emoji_sunglasses} **Emojis:**
|
||
{emojiCount}/{emojiTotal}
|
||
{emoji_flushed-awkward} **Gif emojis:**
|
||
{gifEmojiCount}/{emojiTotal}
|
||
|
||
[C_GUILD_FEATURES_NAME]
|
||
__Server features__
|
||
|
||
[C_GUILD_FEATURES]
|
||
{features}
|
||
|
||
[C_GUILD_NODESC]
|
||
No description set for guild, set one with `{prefix}set description <description here>`, alternatively the description of a community enabled server is shown here.
|
||
|
||
//User Command
|
||
[C_USER_DESCRIPTION]
|
||
Search for users or view user information.
|
||
|
||
[C_USER_DATA_NAME]
|
||
__User Data__
|
||
|
||
[C_USER_DATA]
|
||
**User:** <@{id}>{bot}
|
||
**Account created:** {created}
|
||
**Status:** {status}
|
||
**Activity:** {activity}
|
||
**Last global activity:** {globalActivity}
|
||
|
||
[C_USER_BADGES]
|
||
**Badges:** {badges}
|
||
|
||
[C_USER_MEMBER_NAME]
|
||
__Member Data__
|
||
|
||
[C_USER_MEMBER]
|
||
**Nickname:** {nickname}
|
||
**Server join date:** {joined}
|
||
**Last server activity:** {serverActivity}
|
||
|
||
[C_USER_MEMBER_ROLES]
|
||
**Roles:** {roles}
|
||
|
||
[C_USER_SEARCH_TITLE]
|
||
Search result for: `{key}`
|
||
|
||
[C_USER_SEARCH_FOOTER]
|
||
Found {matches} matches, displaying {count}
|
||
|
||
[C_USER_404]
|
||
{emoji_failure} No user found.
|
||
|
||
[C_USER_SEARCH_404]
|
||
{emoji_failure} No results found.
|
||
|
||
[C_USER_HELP]
|
||
To search server members with similar names use `{prefix}user search <arguments..>`
|
||
|
||
[C_USER_ROLES_TITLE]
|
||
__Member Roles__
|
||
|
||
//Commands Command
|
||
|
||
[C_COMMANDS_DESCRIPTION]
|
||
Displays all commands and help.
|
||
|
||
[C_COMMANDS_TITLE]
|
||
Commands
|
||
|
||
[C_COMMANDS_TEMPLATE]
|
||
Displaying commands for module `{mod}`.
|
||
|
||
{text}
|
||
|
||
[C_COMMANDS_FOOTER]
|
||
Commands that are struck through are disabled.
|
||
|
||
[C_COMMANDS]
|
||
To search by specific module, use `{prefix}commands [ module ]`.
|
||
You can also use `{prefix}commands [ command ]` for more information about the command.
|
||
|
||
//Prefix Command
|
||
[C_PREFIX_DESCRIPTION]
|
||
Displays the prefix that the server uses.
|
||
|
||
[C_PREFIX_SHOWPREFIX]
|
||
The guild's current prefix is **`{prefix}`**. You can also execute commands by mentioning me.
|
||
|
||
//privacyPolicy Command
|
||
[C_PRIVACYPOLICY_DESCRIPTION]
|
||
Displays the bot's privacy policy.
|
||
|
||
[C_PRIVACYPOLICY_PRIVACYDESCRIPTION]
|
||
Galactic (stable) and Galactic Canary (testing) bots only collect Discord user ID and message attachments (if applicable) data. We need your Discord user ID for remembering who you are, and your message attachments for logging tools for Discord server moderators. We use message attachments in order to view what users post after they're deleted by Discord, this ensures a safe place for users and a useful tool for moderators. This data is not shared with anyone. If you have questions or concerns about the bot, contact the developers in the Discord server [here]({invite}).
|
||
|
||
[C_PRIVACYPOLICY_DATA]
|
||
• Discord User IDs
|
||
• Message Attachments
|
||
|
||
To request removal of this data, reach out to the Developers [here]({invite}).
|
||
|
||
[C_PRIVACYPOLICY_OPTOUT]
|
||
You can opt-out of attachment storing by using the command `-set attachmentCache false`.
|
||
|
||
|
||
// Miscellaneous Module
|
||
|
||
|
||
//musicTaste Command
|
||
[C_MUSICTASTE_COMMAND]
|
||
See how many people are listening to what you're listening to, or view the most popular songs, albums, and artists in the user base.
|
||
|
||
|
||
// Developer Module
|
||
|
||
|
||
//Evaluate Command
|
||
[C_EVALUATE_DESCRIPTION]
|
||
Evaluates javascript code.
|
||
|
||
[C_RELOAD_DESCRIPTION]
|
||
Reloads components and language files.
|
||
|
||
//Statistics Command
|
||
[C_STATS_TITLE]
|
||
Statistics for {client} ({version})
|
||
|
||
[C_STATS_MAIN]
|
||
__**Main Process**__
|
||
|
||
[C_STATS_SYSTEM_VALUE]
|
||
**Developers:** {devs}
|
||
**Hostname:** {hostname}
|
||
**CPU:** {cpu}
|
||
**Threads:** {cores}
|
||
**Memory:** {memoryUsed}/{memoryTotal}GB
|
||
**OS Type:** {osType}
|
||
**System Uptime:** {uptime}
|
||
|
||
[C_STATS_MAIN_VALUE]
|
||
**Library:** Discord.js
|
||
**Library Version:** {library}
|
||
**Manager Uptime:** {uptime}
|
||
**Managed Shards:** {shards}
|
||
**Manager Memory Consumption:** {memory}MB
|
||
|
||
[C_STATS_CURRENT_SHARD]
|
||
__**Current shard**__ [{shard}]
|
||
|
||
[C_STATS_CURRENT_SHARDS_VALUE]
|
||
**Cached users:** {cachedUsers}
|
||
**Guilds:** {guilds}
|
||
**Channels:** {channels}
|
||
**Uptime:** {uptime}
|
||
**Memory Consumption:** {memory}MB
|
||
|
||
[C_STATS_TOTAL]
|
||
__**All shards**__
|
||
|
||
[C_STATS_TOTAL_VALUE]
|
||
**Cached users:** {users}
|
||
**Guilds:** {guilds}
|
||
**Channels:** {channels}
|
||
**Average Uptime:** {uptime}
|
||
**Total Memory Consumption:** {memory}MB
|
||
|
||
[C_STATS_COMMANDS]
|
||
__**Command usage since start**__
|
||
|
||
[C_STATS_COMMANDS_VALUE]
|
||
**Invokes:** {invokes}
|
||
**Succeeds:** {success}
|
||
**Fails:** {fail}
|
||
|
||
[C_STATS_MONGODB]
|
||
__**MongoDB**__
|
||
|
||
[C_STATS_MONGODB_VALUE]
|
||
**Database:** {db}
|
||
**Collections:** {collections}
|
||
**Entries:** {objects}
|
||
**Average Entry Size:** {avgObjSize}MB
|
||
**Total DB Size:** {totalSize}GB
|
||
|
||
[C_STATS_CACHE]
|
||
__**Cache**__
|
||
|
||
[C_STATS_CACHE_VALUE]
|
||
**Messages:** {cachedMessages}
|
||
**Average caches messages per shard:** {messageAvg}
|
||
**Members:** {cachedMembers}
|
||
**Average cached members per shard:** {memberAvg} |