galactic-bot/structure/language/languages/en_us/en_us_general.lang

269 lines
5.5 KiB
Plaintext
Raw Normal View History

[GENERAL_COMPONENTS]
switch({component}) {
case "command":
"command";
break;
case "setting":
"setting";
break;
case "inhibitor":
2020-05-24 05:50:35 +02:00
"inhibitor";
break;
2020-05-06 18:28:40 +02:00
}
2020-08-06 00:12:44 +02:00
[NO_RESULT]
**The search returned no results.**
[GENERAL_EXAMPLES]
Example Usage
[GENERAL_ALIASES]
Aliases
[GENERAL_ARGUMENTS]
Arguments
[GENERAL_CURRENT]
Current Settings
[GENERAL_SETTINGRESET]
2020-05-24 00:09:24 +02:00
Successfully reset the setting **{setting}** to the default value.
[GENERAL_ADDED]
added
[GENERAL_REMOVED]
removed
2020-07-11 22:41:03 +02:00
[PREMIUM_REQUIRED]
Sorry! This is a tier {required} premium feature.
2020-05-24 00:09:24 +02:00
Current server tier: `{tier}`
2020-05-24 23:37:39 +02:00
[MISSING_ARGS]
Missing arguments.
2020-07-11 22:41:03 +02:00
[INVALID_ARGS]
Invalid arguments.
[SETTING_STATUS]
switch({bool}) {
case true:
`{emoji_enabled} Enabled`
break;
case false:
`{emoji_disabled} Disabled`
break;
}
2020-08-31 18:47:20 +02:00
[SETTING_ENABLEDISABLE]
switch({bool}) {
case true:
"enabled"
break;
case false:
"disabled"
break;
}
2020-05-24 23:37:39 +02:00
[ON_OFF_TOGGLE]
switch({toggle}) {
case true:
'on';
break;
case false:
'off';
break;
}
[SET_RESET]
switch("{set}") {
2020-05-24 23:37:39 +02:00
case 'reset':
'reset';
break;
case 'set':
'set';
2020-05-24 23:37:39 +02:00
break;
}
2020-07-08 09:59:51 +02:00
[TAGS]
**Usable tags:**
{mention} - mentions the user
{tag} - username#discriminator
{user} - username
{guildsize} - member count of the server
{guildname} - name of the server
{accage} - age of the account
{id} - ID of the account
2020-05-24 23:37:39 +02:00
//Errors
[ERR_CHANNEL_RESOLVE]
Failed to resolve `{resolveable}` to a channel.
[ERR_ROLE_RESOLVE]
Failed to resolve `{resolveable}` to a role.
2020-08-17 22:25:05 +02:00
[ERR_CHRESOLVE]
Failed to resolve any channels.
[ERR_ROLERESOLVE]
Failed to resolve any roles.
2020-05-24 23:37:39 +02:00
[ERR_MEMBER_RESOLVE]
Failed to resolve `{resolveable}` to a member.
[ERR_USER_RESOLVE]
Failed to resolve `{resolveable}` to a user.
2020-09-01 22:04:25 +02:00
[ERR_BOOLEAN_RESOLVE]
Unable to resolve `{resolveable}` to a boolean.
2020-05-24 23:37:39 +02:00
[ERR_INVALID_METHOD]
Method `{method}` is invalid!
2020-06-09 17:57:58 +02:00
[ERR_INVALID_SUBMETHOD]
Submethod `{submethod}` is invalid!
2020-06-19 20:27:59 +02:00
[ERR_CHANNEL_TYPE]
Cannot use a channel of type {type}.
[ERR_CHANNEL_PERMS]
Missing `{perms}` permission(s) in {emoji_text-channel}**{channel}**.
2020-09-01 17:46:01 +02:00
[ERR_INVALID_TIMESTRING]
Invalid timestring provided. Must be `INT unit [INT unit..]`.
[S_AUTOMOD_LENGTH_SUCCESS]
Successfully set the action duration.
//Command Handler
2020-08-09 01:22:58 +02:00
[COMMANDHANDLER_COMMAND_MISSINGPERMISSIONS]
Missing the **Embed Links** permission, grant this permission to use the command.
[COMMANDHANDLER_TYPES]
switch("{type}") {
case "STRING":
"string";
break;
case "INTEGER":
"integer";
break;
case "FLOAT":
"float";
break;
case "BOOLEAN":
"boolean";
break;
case "USER":
"user";
break;
case "MEMBER":
"member";
break;
case "CHANNEL":
"channel";
break;
case "ROLE":
"role";
break;
}
[COMMANDHANDLER_TYPE_ERROR]
Failed to parse a **{type}** value for the argument **{arg}**, try again.
[COMMANDHANDLER_NUMBERMAX_ERROR]
The **{type}** value for the argument **{arg}** must be __less than__ `{max}`. *({min}-{max})*
[COMMANDHANDLER_NUMBERMIN_ERROR]
The **{type}** value for the argument **{arg}** must be __more than__ `{min}`. *({min}-{max})*
[COMMANDHANDLER_OPTIONS_ERROR]
The value for the argument **{arg}** must be one of the following: {options}.
[COMMANDHANDLER_COMMAND_ERROR]
The command **{command}** had issues running. **`[{id}:{date}]`**
2020-06-19 20:27:59 +02:00
Please provide a screenshot of this error in the {emoji_text-channel}*support* channel here: <{invite}>
// Inhibitors
[I_CLIENTPERMISSIONS_ERROR]
The command **{command}** requires the bot to have permissions to use.
*Missing: {missing}.*
[I_DISABLED_ERROR]
2020-07-28 05:00:24 +02:00
The command **{command}** is disabled {modifier}.
[I_DISABLED_ERRORMODIFIER]
switch("{globally}") {
case true:
'globally';
break;
case false:
'in this server';
break;
}
[I_GUILDONLY_ERROR]
The command **{command}** can only be run in servers.
[I_PERMISSIONS_ERROR]
The command **{command}** requires you to have permissions to use.
*Missing: {missing}.*
[I_RESTRICTED_ERROR]
The command **{command}** can only be run by developers.
[I_THROTTLE_ERROR]
The command **{command}** is currently throttled.
*You can use this command again in `{remaining}` seconds.*
2020-06-19 23:01:17 +02:00
[I_CHANNELIGNORE_ERROR]
This channel is ignored by the bot, this should not be sending.
//Moderation Manager
[MODERATIONMANAGER_INFRACTION_MAXTARGETS]
You can only specify up to `{maxTargets}` unique {type}s, try again.
[MODERATIONMANAGER_INFRACTION_MAXTARGETSALT]
You can increase the amount of targets by upgrading to premium.
2020-07-16 09:54:39 +02:00
[INFRACTION_ERROR]
an error occured
2020-07-16 09:54:39 +02:00
[INFRACTION_PROTECTIONERROR]
they have hierarchy over you
2020-07-16 09:54:39 +02:00
[INFRACTION_AUTOMODESCALATION]
This action was automatically escalated by auto-moderation.
2020-07-16 09:54:39 +02:00
[INFRACTION_ESCALATIONREASON]
2020-07-20 00:42:21 +02:00
auto-moderation escalated this infraction.
2020-07-16 09:54:39 +02:00
[INFRACTION_SUCCESS]
Successfully {infraction} {targetType} {target}{text}
[INFRACTION_FAIL]
Failed to {infraction} {targetType} {target} because {reason}.
[INFRACTION_DESCRIPTION]
2020-06-04 19:59:09 +02:00
**{type}**
**Moderator:** {moderator}
**Reason:** {reason}
2020-06-04 19:59:09 +02:00
[INFRACTION_DESCRIPTIONPOINTS]
**Points:** {points} | **Total Points**: {total}
[INFRACTION_DESCRIPTIONDURATION]
**Duration:** {duration}
2020-07-16 09:54:39 +02:00
[INFRACTION_DESCRIPTIONJUMPTO]
**[Jump To {name}]({link})**
//Prune Command
[INFRACTION_DESCRIPTIONAMOUNT]
**Amount:** {amount}
2020-07-16 09:54:39 +02:00
//Addrole/Removerole Commands
[INFRACTION_DESCRIPTIONROLES]
**Role{plural}:** {roles}