diff --git a/README.md b/README.md
index 20d142d..11518a2 100644
--- a/README.md
+++ b/README.md
@@ -9,6 +9,7 @@ Hadder Discord is a multi-purpose Discord bot with 100% uptime.
[](https://bbn.crowdin.com/hadder)
[](https://github.com/BigBotNetwork/Hadder/issues)
[](https://github.com/BigBotNetwork/Hadder/blob/master/LICENSE)
+[](https://wakatime.com/badge/github/BigBotNetwork/Hadder)
[](https://discordextremelist.xyz/bots/Hadder)
[](https://top.gg/bot/637002314162372639)
@@ -21,3 +22,38 @@ Hax#6775
### Designer
TopComp#1288
+
+## A few commands
+| **Command** | **Description** |
+|----------------|---------------------------------------------------------------|
+| h.help | Shows each command and explains its usage. |
+| h.about | Shows information about Hadder. |
+| h.equals | Checks if two strings are the same. |
+| h.invite | Shows the invitation link to invite Hadder to your server. |
+| h.ping | Shows the ping to the Discord API. |
+| h.avatar | Sends the avatar of the specified member. |
+| h.gif | Looks for a GIF on Giphy. |
+| h.meme | Sends you a random meme. |
+| h.clyde | Sends a message as a webhook named Clyde. |
+| h.feedback | Sends feedback directly to the developers. |
+| h.github | Displays information about a GitHub user profile. |
+| h.screenshare | Shows you the link to share your screen. |
+| h.ban | Bans one or more users from the server. |
+| h.clear | Deletes the specified number of messages. |
+| h.prefix | Sets the Guild-Prefix. |
+| h.invitedetect | Activate or deactivate the Discord invite link detection. |
+| h.kick | Kicks one or more user from the server. |
+| h.nick | Rename a one or more user. |
+| h.regionchange | Changes the server region to locked regions. |
+| h.role | Adds and removes one or more role(s) from one or more user(s) |
+| h.rules | Setup the rules on your Discord server |
+| h.starboard | Sets the starboard channel. |
+| h.editrules | Edits the rules message. |
+| h.join | Joins your voice channel. |
+| h.leave | Leaves your voice channel. |
+| h.play | Plays the specified song. |
+| h.stop | Stops the song. |
+| h.info | Shows information about the playing song. |
+| h.queue | Shows the music queue. |
+| h.skip | Skips the currently playing song. |
+| h.volume | Change the volume of the music. |
diff --git a/example-config.json b/example-config.json
index 437ec97..f787317 100644
--- a/example-config.json
+++ b/example-config.json
@@ -19,7 +19,8 @@
"DiscordExtremeList": "",
"DiscordBotReviews": "",
"DiscordBots": "",
- "BotListSpace": ""
+ "BotListSpace": "",
+ "DiscordBots2": ""
},
"Clyde": ""
}
diff --git a/pom.xml b/pom.xml
index 920716f..79ee1d3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -19,7 +19,7 @@
net.dv8tion
JDA
- 4.1.0_88
+ 4.1.0_90
org.json
diff --git a/src/main/java/com/bbn/hadder/Hadder.java b/src/main/java/com/bbn/hadder/Hadder.java
index 074bf70..85ca64f 100644
--- a/src/main/java/com/bbn/hadder/Hadder.java
+++ b/src/main/java/com/bbn/hadder/Hadder.java
@@ -92,14 +92,14 @@ public class Hadder {
new LanguageCommand(),
new ClydeCommand(),
new PlayCommand(),
- new StarBoardCommand(),
+ new StarboardCommand(),
new QueueCommand(),
new InfoCommand(),
new SkipCommand(),
new EditRulesCommand(),
new VolumeCommand(),
new StopCommand(),
- new BlackListCommand()), config, helpCommand);
+ new BlacklistCommand()), config, helpCommand);
builder.addEventListeners(
new MentionListener(rethink),
diff --git a/src/main/java/com/bbn/hadder/Rethink.java b/src/main/java/com/bbn/hadder/Rethink.java
index 436298a..3bf91a3 100644
--- a/src/main/java/com/bbn/hadder/Rethink.java
+++ b/src/main/java/com/bbn/hadder/Rethink.java
@@ -144,11 +144,11 @@ public class Rethink {
return (String) this.get("user", "id", id, "blacklisted");
}
- public void setNeededstars(String stars, String guild_id) {
+ public void setNeededStars(String stars, String guild_id) {
this.update("server", guild_id, "neededstars", stars);
}
- public String getNeededstars(String guild_id) {
+ public String getNeededStars(String guild_id) {
return (String) this.get("server", "id", guild_id, "neededstars");
}
@@ -164,8 +164,8 @@ public class Rethink {
return !this.get("server", "id", guild_id, "starboard").equals("");
}
- public void insertStarboardMessage(String message_id, String guild_id, String starboardmessageid) {
- this.insert("stars", r.hashMap("id", message_id).with("guild", guild_id).with("starboardmsg", starboardmessageid));
+ public void insertStarboardMessage(String message_id, String guild_id, String starboard_message_id) {
+ this.insert("stars", r.hashMap("id", message_id).with("guild", guild_id).with("starboardmsg", starboard_message_id));
}
public String getStarboardMessage(String message_id) {
diff --git a/src/main/java/com/bbn/hadder/commands/moderation/ClearCommand.java b/src/main/java/com/bbn/hadder/commands/moderation/ClearCommand.java
index 0dbf1da..12d1a58 100644
--- a/src/main/java/com/bbn/hadder/commands/moderation/ClearCommand.java
+++ b/src/main/java/com/bbn/hadder/commands/moderation/ClearCommand.java
@@ -30,9 +30,9 @@ public class ClearCommand implements Command {
}
Message message = event.getTextChannel().sendMessage(event.getMessageEditor().getMessage(
MessageEditor.MessageType.INFO,
- "commands.moderation.lear.all.success.title",
+ "commands.moderation.clear.all.success.title",
"",
- "commands.moderation.lear.all.success.description",
+ "commands.moderation.clear.all.success.description",
String.valueOf(msg.size()))
.build()).complete();
try {
diff --git a/src/main/java/com/bbn/hadder/commands/moderation/StarBoardCommand.java b/src/main/java/com/bbn/hadder/commands/moderation/StarboardCommand.java
similarity index 89%
rename from src/main/java/com/bbn/hadder/commands/moderation/StarBoardCommand.java
rename to src/main/java/com/bbn/hadder/commands/moderation/StarboardCommand.java
index 80d926c..d3c97ff 100644
--- a/src/main/java/com/bbn/hadder/commands/moderation/StarBoardCommand.java
+++ b/src/main/java/com/bbn/hadder/commands/moderation/StarboardCommand.java
@@ -5,7 +5,7 @@ import com.bbn.hadder.commands.CommandEvent;
import com.bbn.hadder.utils.MessageEditor;
import net.dv8tion.jda.api.entities.TextChannel;
-public class StarBoardCommand implements Command {
+public class StarboardCommand implements Command {
@Override
public void executed(String[] args, CommandEvent event) {
@@ -29,7 +29,7 @@ public class StarBoardCommand implements Command {
}
if (args.length==2) {
- event.getRethink().setNeededstars(args[1], event.getGuild().getId());
+ event.getRethink().setNeededStars(args[1], event.getGuild().getId());
}
}
@@ -40,7 +40,7 @@ public class StarBoardCommand implements Command {
@Override
public String description() {
- return "Sets the starboard channel";
+ return "commands.moderation.starboard.help.description";
}
@Override
diff --git a/src/main/java/com/bbn/hadder/commands/music/VolumeCommand.java b/src/main/java/com/bbn/hadder/commands/music/VolumeCommand.java
index b0391b9..d0d058b 100644
--- a/src/main/java/com/bbn/hadder/commands/music/VolumeCommand.java
+++ b/src/main/java/com/bbn/hadder/commands/music/VolumeCommand.java
@@ -16,7 +16,7 @@ public class VolumeCommand implements Command {
if (event.getAudioManager().hasPlayer(event.getGuild()) && event.getAudioManager().getPlayer(event.getGuild()).getPlayingTrack() != null) {
try {
int volume = Integer.parseInt(args[0]);
- if (volume < 200 && volume > 0 || event.getConfig().getOwners().contains(event.getAuthor().getId())) {
+ if (volume < 201 && volume > 0 || event.getConfig().getOwners().contains(event.getAuthor().getIdLong())) {
event.getAudioManager().getPlayer(event.getGuild()).setVolume(volume);
event.getTextChannel().sendMessage(event.getMessageEditor().getMessage(MessageEditor.MessageType.INFO,
"commands.music.volume.success.title", "",
@@ -46,7 +46,7 @@ public class VolumeCommand implements Command {
@Override
public String description() {
- return "Change the volume of the music.";
+ return "commands.music.volume.help.description";
}
@Override
diff --git a/src/main/java/com/bbn/hadder/commands/owner/BlackListCommand.java b/src/main/java/com/bbn/hadder/commands/owner/BlacklistCommand.java
similarity index 88%
rename from src/main/java/com/bbn/hadder/commands/owner/BlackListCommand.java
rename to src/main/java/com/bbn/hadder/commands/owner/BlacklistCommand.java
index bb9040a..5aa61f1 100644
--- a/src/main/java/com/bbn/hadder/commands/owner/BlackListCommand.java
+++ b/src/main/java/com/bbn/hadder/commands/owner/BlacklistCommand.java
@@ -1,15 +1,14 @@
+package com.bbn.hadder.commands.owner;
+
/*
* @author Hax / Hax6775 / Schlauer_Hax
*/
-package com.bbn.hadder.commands.owner;
-
import com.bbn.hadder.commands.Command;
import com.bbn.hadder.commands.CommandEvent;
import com.bbn.hadder.core.Perm;
import com.bbn.hadder.core.Perms;
import com.bbn.hadder.utils.MessageEditor;
-import net.dv8tion.jda.api.EmbedBuilder;
import net.dv8tion.jda.api.entities.Member;
import net.dv8tion.jda.api.entities.User;
@@ -19,7 +18,7 @@ import java.util.LinkedHashSet;
import java.util.List;
@Perms(Perm.BOT_OWNER)
-public class BlackListCommand implements Command {
+public class BlacklistCommand implements Command {
@Override
public void executed(String[] args, CommandEvent event) {
@@ -32,7 +31,7 @@ public class BlackListCommand implements Command {
Member member = event.getMessage().getMentionedMembers().get(0);
String blacklisted = event.getRethink().getBlackListed(member.getId());
List commands = new ArrayList<>();
- if (!blacklisted.equals("none")) commands.addAll(Arrays.asList(blacklisted.split(",")));
+ if (!"none".equals(blacklisted)) commands.addAll(Arrays.asList(blacklisted.split(",")));
commands.addAll(Arrays.asList(args[1].split(",")));
LinkedHashSet hashSet = new LinkedHashSet<>(commands);
@@ -46,12 +45,13 @@ public class BlackListCommand implements Command {
.build()).queue();
}
break;
+
case "remove":
if (args.length == 3) {
Member member = event.getMessage().getMentionedMembers().get(0);
String blacklisted = event.getRethink().getBlackListed(member.getId());
List commands = new ArrayList<>();
- if (!blacklisted.equals("none")) commands.addAll(Arrays.asList(blacklisted.split(",")));
+ if (!"none".equals(blacklisted)) commands.addAll(Arrays.asList(blacklisted.split(",")));
commands.removeAll(Arrays.asList(args[1].split(",")));
LinkedHashSet hashSet = new LinkedHashSet<>(commands);
@@ -65,13 +65,14 @@ public class BlackListCommand implements Command {
.build()).queue();
}
break;
+
case "list":
StringBuilder stringBuilder = new StringBuilder();
for (User user : event.getJDA().getUsers()) {
if (!user.getId().equals(event.getJDA().getSelfUser().getId())) {
String blacklisted = event.getRethink().getBlackListed(user.getId());
- if (!blacklisted.equals("none")) {
- stringBuilder.append(user.getAsTag() + " (" + user.getId() + ") - " + blacklisted + "\n");
+ if (!"none".equals(blacklisted)) {
+ stringBuilder.append(user.getAsTag()).append(" (").append(user.getId()).append(") - ").append(blacklisted).append("\n");
}
}
}
@@ -81,6 +82,10 @@ public class BlackListCommand implements Command {
.setDescription((stringBuilder.length()!=0) ? ("``" + stringBuilder.toString() + "``") : "No blacklisted Users")
.build()).queue();
break;
+
+ default:
+ event.getHelpCommand().sendHelp(this, event);
+ break;
}
}
}
@@ -92,16 +97,16 @@ public class BlackListCommand implements Command {
@Override
public String description() {
- return null;
+ return "commands.owner.blacklist.help.description";
}
@Override
public String usage() {
- return "add|remove|list Commands @Skidder#6775";
+ return "add|remove|list command @User";
}
@Override
public String example() {
- return null;
+ return "add solo @Skidder";
}
}
diff --git a/src/main/java/com/bbn/hadder/core/CommandHandler.java b/src/main/java/com/bbn/hadder/core/CommandHandler.java
index 0a575df..775ad94 100644
--- a/src/main/java/com/bbn/hadder/core/CommandHandler.java
+++ b/src/main/java/com/bbn/hadder/core/CommandHandler.java
@@ -50,7 +50,7 @@ public class CommandHandler {
boolean run = true;
String blacklisted = rethink.getBlackListed(event.getAuthor().getId());
- if (!blacklisted.equals("none")) {
+ if (!"none".equals(blacklisted)) {
for (String blacklistedlabel : blacklisted.split(",")) {
if (Arrays.asList(cmd.labels()).contains(blacklistedlabel)) {
run = false;
diff --git a/src/main/java/com/bbn/hadder/core/Config.java b/src/main/java/com/bbn/hadder/core/Config.java
index fce590e..942c382 100644
--- a/src/main/java/com/bbn/hadder/core/Config.java
+++ b/src/main/java/com/bbn/hadder/core/Config.java
@@ -115,10 +115,6 @@ public class Config {
return config.getJSONObject("Tokens").getString("DiscordBotList");
}
- public String getDiscordBestBotsToken() {
- return config.getJSONObject("Tokens").getString("DiscordBestBots");
- }
-
public String getDiscordBoatsToken() {
return config.getJSONObject("Tokens").getString("DiscordBoats");
}
@@ -143,6 +139,14 @@ public class Config {
return config.getJSONObject("Tokens").getString("BotListSpace");
}
+ public String getDiscordBots2Token() {
+ return config.getJSONObject("Tokens").getString("DiscordBots2");
+ }
+
+ public String getCloudListToken() {
+ return config.getJSONObject("Tokens").getString("CloudList");
+ }
+
public String getClydeName() {
return config.getString("Clyde");
}
diff --git a/src/main/java/com/bbn/hadder/listener/StarboardListener.java b/src/main/java/com/bbn/hadder/listener/StarboardListener.java
index 8bdf694..38c5c52 100644
--- a/src/main/java/com/bbn/hadder/listener/StarboardListener.java
+++ b/src/main/java/com/bbn/hadder/listener/StarboardListener.java
@@ -43,7 +43,7 @@ public class StarboardListener extends ListenerAdapter {
}
}
- if (Integer.parseInt(rethink.getNeededstars(event.getGuild().getId())) <= stars) {
+ if (Integer.parseInt(rethink.getNeededStars(event.getGuild().getId())) <= stars) {
event.getGuild().getTextChannelById(rethink.getStarboardChannel(event.getGuild().getId()))
.sendMessage(new MessageBuilder()
.setContent("⭐ 1" + " " + event.getTextChannel().getAsMention())
@@ -77,7 +77,7 @@ public class StarboardListener extends ListenerAdapter {
.retrieveMessageById(rethink.getStarboardMessage(event.getMessageId())).queue(
msg2 -> {
- if (Integer.parseInt(rethink.getNeededstars(event.getGuild().getId())) <= finalStars) {
+ if (Integer.parseInt(rethink.getNeededStars(event.getGuild().getId())) <= finalStars) {
msg2.editMessage(new MessageBuilder()
.setContent("⭐ " + finalStars + " " + event.getTextChannel().getAsMention())
.setEmbed(
diff --git a/src/main/java/com/bbn/hadder/listener/VoiceLeaveListener.java b/src/main/java/com/bbn/hadder/listener/VoiceLeaveListener.java
index 643a17a..8db4d9f 100644
--- a/src/main/java/com/bbn/hadder/listener/VoiceLeaveListener.java
+++ b/src/main/java/com/bbn/hadder/listener/VoiceLeaveListener.java
@@ -18,7 +18,7 @@ public class VoiceLeaveListener extends ListenerAdapter {
@Override
public void onGuildVoiceLeave(GuildVoiceLeaveEvent event) {
- if (new AudioManager().hasPlayer(event.getGuild()) && event.getChannelLeft().getMembers().equals(event.getGuild().getSelfMember())) {
+ if (audioManager.hasPlayer(event.getGuild()) && event.getChannelLeft().getMembers().equals(event.getGuild().getSelfMember())) {
audioManager.players.remove(event.getGuild().getId());
audioManager.getPlayer(event.getGuild()).destroy();
audioManager.getTrackManager(event.getGuild()).purgeQueue();
diff --git a/src/main/java/com/bbn/hadder/utils/BotList.java b/src/main/java/com/bbn/hadder/utils/BotList.java
index 6516d13..580a457 100644
--- a/src/main/java/com/bbn/hadder/utils/BotList.java
+++ b/src/main/java/com/bbn/hadder/utils/BotList.java
@@ -21,13 +21,14 @@ public class BotList {
private static String MythicalBotList = "https://mythicalbots.xyz/api/bot/637002314162372639";
private static String BotsForDiscord = "https://botsfordiscord.com/api/bot/637002314162372639";
private static String DiscordBotList = "https://discordbotlist.com/api/bots/637002314162372639/stats";
- private static String DiscordBestBots = "https://discordsbestbots.xyz/api/bots/637002314162372639/stats";
private static String DiscordBoats = "https://discord.boats/api/bot/637002314162372639";
private static String YetAnotherBotList = "https://yabl.xyz/api/bot/637002314162372639/stats";
private static String DiscordExtremeList = "https://api.discordextremelist.xyz/v1/bot/637002314162372639";
private static String DiscordBotReviews = "https://discordbotreviews.xyz/api/bot/637002314162372639/stats";
private static String DiscordBots = "https://top.gg/api/bots/637002314162372639/stats";
private static String BotListSpace = "https://api.botlist.space/v1/bots/637002314162372639";
+ private static String DiscordBots2 = "https://discord.bots.gg/api/v1/bots/637002314162372639/stats";
+ private static String CloudList = "https://www.cloudlist.xyz/api/stats/637002314162372639";
private Config config;
@@ -41,8 +42,10 @@ public class BotList {
json.put("server_count", Hadder.shardManager.getGuilds().size());
json.put("guildCount", Hadder.shardManager.getGuilds().size());
json.put("guilds", Hadder.shardManager.getGuilds().size());
+ json.put("count", Hadder.shardManager.getGuilds().size());
json.put("users", Hadder.shardManager.getUsers().size());
json.put("shard_count", Hadder.shardManager.getShards().size());
+ json.put("shardCount", Hadder.shardManager.getShards().size());
RequestBody body = RequestBody.create(MediaType.parse("application/json"), json.toString());
@@ -91,21 +94,6 @@ public class BotList {
e.printStackTrace();
}
- // Discord Best Bots
-
- Request discordbestbots = new Request.Builder()
- .url(DiscordBestBots)
- .post(body)
- .addHeader("Authorization", config.getDiscordBestBotsToken())
- .build();
-
- try {
- new OkHttpClient().newCall(discordbestbots).execute().close();
- System.out.println("Successfully posted count to Discord Best Bots!");
- } catch (IOException e) {
- e.printStackTrace();
- }
-
// Discord Boats
Request discordboats = new Request.Builder()
@@ -195,6 +183,36 @@ public class BotList {
} catch (IOException e) {
e.printStackTrace();
}
+
+ // Discord Bots 2
+
+ Request discordbots2 = new Request.Builder()
+ .url(DiscordBots2)
+ .post(body)
+ .addHeader("Authorization", config.getDiscordBots2Token())
+ .build();
+
+ try {
+ new OkHttpClient().newCall(discordbots2).execute().close();
+ System.out.println("Successfully posted count to discord.bots.gg!");
+ } catch (IOException e) {
+ e.printStackTrace();
+ }
+
+ // CloudList
+
+ Request cloudlist = new Request.Builder()
+ .url(CloudList)
+ .post(body)
+ .addHeader("Authorization", config.getCloudListToken())
+ .build();
+
+ try {
+ new OkHttpClient().newCall(cloudlist).execute().close();
+ System.out.println("Successfully posted count to the CloudList!");
+ } catch (IOException e) {
+ e.printStackTrace();
+ }
}
}
}
diff --git a/src/main/java/com/bbn/hadder/utils/MessageEditor.java b/src/main/java/com/bbn/hadder/utils/MessageEditor.java
index 1d39039..4e923ee 100644
--- a/src/main/java/com/bbn/hadder/utils/MessageEditor.java
+++ b/src/main/java/com/bbn/hadder/utils/MessageEditor.java
@@ -36,8 +36,8 @@ public class MessageEditor {
String description, String description_extra, String description_extra_two) {
String language = (this.user!=null) ? rethink.getLanguage(this.user.getId()) : null;
EmbedBuilder eb = this.getDefaultSettings(type);
- if (!title.equals("")) eb.setTitle(this.handle(language, title, title_extra, title_extra_two));
- if (!description.equals("")) eb.setDescription(this.handle(language, description, description_extra, description_extra_two));
+ if (!"".equals(title)) eb.setTitle(this.handle(language, title, title_extra, title_extra_two));
+ if (!"".equals(description)) eb.setDescription(this.handle(language, description, description_extra, description_extra_two));
return eb;
}
diff --git a/src/main/resources/Translations/Translations_de.properties b/src/main/resources/Translations/Translations_de.properties
index 2483972..6e6e7af 100644
--- a/src/main/resources/Translations/Translations_de.properties
+++ b/src/main/resources/Translations/Translations_de.properties
@@ -4,20 +4,6 @@
Hadder = Hadder
-user = <@Benutzer>
-searchterm =
-username =
-number = /all
-prefix =
-userprefix =
-vc-name/id =
-user+nickname = <@Benutzer>
-region =
-guildid =
-content =
-song =
-user/id= [@Benutzer]/[ID]
-
error = Fehler
none = Nicht angegeben
success\! = Erfolgreich\!
@@ -44,7 +30,9 @@ commands.general.equals.string.first = Erster String\:
commands.general.equals.string.second = Zweiter String\:
commands.general.equals.string.result = Ergebnis\:
commands.general.equals.help.description = Checks if two strings are the same.
-commands.general.help.field.usage = Benutzung\:
+commands.general.help.description = **Description\:**
+commands.general.help.usage = **Benutzung\:**
+commands.general.help.example = **Example\:**
commands.general.help.error.description = Ich brauche die Links Einbetten Berechtigung, um das Hilfe-Menü zu senden\!
commands.general.help.help.description = Zeigt jeden Befehl an und erklärt seine Verwendung.
commands.general.help.help.label = [Name des Commands]
@@ -68,8 +56,10 @@ commands.misc.github.success.repositories = Öffentliche Repositories
commands.misc.github.success.gists = Öffentliche Gists
commands.misc.github.success.followers = Abonnenten
commands.misc.github.success.following = Folgt
+commands.misc.github.api.error.title = API error
commands.misc.github.api.error.description = Die GitHub API könnte im Moment nicht verfügbar sein\!
-commands.misc.github.user.error.description = Dieser Benutzer existiert nicht\!
+commands.misc.github.user.error.title = User doesn't exist
+commands.misc.github.user.error.description = I can not find a user named like this\!
commands.misc.github.connect.title = Verbinde dein GH Konto
commands.misc.github.connect.description = [Bitte verbinde dein GitHub-Konto hier]%extra%
commands.misc.github.help.description = Zeigt Informationen über ein GitHub Benutzerprofil an.
@@ -93,6 +83,7 @@ commands.moderation.ban.massban.success.description = I successfully banned %ext
commands.moderation.ban.help.description = Bans one or more users from the server.
commands.moderation.lear.all.success.title = Erfolgreich gelöscht
commands.moderation.lear.all.success.description = Ich habe erfolgreich %extra% Nachrichten gelöscht.
+commands.moderation.clear.number.error.title = Invalid number
commands.moderation.clear.number.error.description = Sie müssen eine Zahl zwischen 1 und 99 wählen\!
commands.moderation.clear.success.title = Erfolgreich gelöscht
commands.moderation.clear.success.description.singular = Nachricht erfolgreich gelöscht.
@@ -131,9 +122,9 @@ commands.moderation.regionchange.success.title = Region erfolgreich gesetzt
commands.moderation.regionchange.success.description = Ich habe die neue Serverregion erfolgreich zu %extra% geändert.
commands.moderation.regionchange.help.description = Changes the server region to locked regions.
commands.moderation.role.add.success.title = Rolle(n) Erfolgreich hinzugefügt
-commands.moderation.role.add.success.description = I successfully added %extra% roles to %extra_two% members.
-commands.moderation.role.remove.success.title = %extra% Successfully removed role(s) %extra%
-commands.moderation.role.remove.success.description = I successfully removed %extra% roles from %extra_two% members.
+commands.moderation.role.add.success.description = Ich habe %extra% Rollen zu %extra_two% Mitgliedern hinzugefügt.
+commands.moderation.role.remove.success.title = Rolle(n) erfolgreich entfernt
+commands.moderation.role.remove.success.description = Ich habe %extra% Rollen von %extra_two% Mitgliedern entfernt.
commands.moderation.role.help.description = Adds and removes one or more role(s) from one or more user(s)
commands.moderation.rules.setup.title = Set up rules
commands.moderation.rules.setup.description = Welcome to the Hadder rules setup. Please mention the channel in which I should send the rules. Your message should look like\: \#rules or \#verify.
@@ -217,6 +208,11 @@ commands.music.queue.help.description = Shows the music queue
commands.music.skip.success.title = Successfully skipped
commands.music.skip.success.description = I successfully skipped to the next song
commands.music.skip.help.description = Skips the currently playing song
+commands.music.volume.success.title = Successfully set
+commands.music.volume.success.description = I successfully set the new volume to %extra%
+commands.music.volume.error.int.title = Invalid number
+commands.music.volume.error.int.description = The volume have to be between 1 and 200
+commands.music.volume.help.description = Change the volume of the music.
commands.nsfw.gif.error.title = GIF wird nicht angezeigt? Klicke hier
commands.nsfw.img.error.title = Bild wird nicht angezeigt? Klicke hier
@@ -241,7 +237,6 @@ commands.owner.eval.success.input = Eingabe
commands.owner.eval.success.output = Ausgabe
commands.owner.eval.success.timing = Timing
commands.owner.eval.help.description = Führt den angegebenen Code aus
-commands.owner.eval.help.usage =
commands.owner.guildleave.success.title = Erfolgreich verlassen
commands.owner.guildleave.success.description = Ich habe %extra% erfolgreich verlassen.
commands.owner.guildleave.error.title = Verlassen nicht möglich
@@ -256,7 +251,6 @@ commands.owner.test.help.description = Just a little Test Command
commands.settings.language.success.title = Language set
commands.settings.language.success.description = `%extra%` is your new language now.
commands.settings.language.help.description = Führt den angegebenen Code aus.
-commands.settings.language.help.usage =
commands.settings.prefix.success.title = %extra% Successfully set %extra%
commands.settings.prefix.success.description = I successfully set the new prefix for you to `%extra%`.
commands.settings.prefix.help.description = Sets a new prefix.
diff --git a/src/main/resources/Translations/Translations_en.properties b/src/main/resources/Translations/Translations_en.properties
index 133e2e9..d4f0582 100644
--- a/src/main/resources/Translations/Translations_en.properties
+++ b/src/main/resources/Translations/Translations_en.properties
@@ -30,9 +30,9 @@ commands.general.equals.string.first = First string\:
commands.general.equals.string.second = Second string\:
commands.general.equals.string.result = Result\:
commands.general.equals.help.description = Checks if two strings are the same.
-commands.general.help.description = **Description:**
+commands.general.help.description = **Description\:**
commands.general.help.usage = **Usage\:**
-commands.general.help.example = **Example:**
+commands.general.help.example = **Example\:**
commands.general.help.error.description = I need the Embed Links Permission to send the Help Menu\!
commands.general.help.help.description = Shows each command and explains its usage.
commands.general.help.help.label = [CommandName]
@@ -45,8 +45,8 @@ commands.misc.feedback.title.request.title = Feedback Topic
commands.misc.feedback.title.request.description = Please send me the feedback topic.
commands.misc.feedback.description.request.title = Feedback Description
commands.misc.feedback.description.request.description = Please send me the feedback description now.
-commands.misc.feedback.help.description = Sends feedback directly to the developers.
commands.misc.feedback.success.title = Feedback successfully sent\!
+commands.misc.feedback.help.description = Sends feedback directly to the developers.
commands.misc.github.link.title = Link your GitHub Account
commands.misc.github.success.title = Information about %extra%
commands.misc.github.success.bio = User bio
@@ -81,8 +81,8 @@ commands.moderation.ban.myself.error.description = I can not ban myself\!
commands.moderation.ban.yourself.error.description = You can not ban yourself\!
commands.moderation.ban.massban.success.description = I successfully banned %extra% members\!
commands.moderation.ban.help.description = Bans one or more users from the server.
-commands.moderation.lear.all.success.title = Successfully deleted
-commands.moderation.lear.all.success.description = I successfully deleted %extra% messages.
+commands.moderation.clear.all.success.title = Successfully deleted
+commands.moderation.clear.all.success.description = I successfully deleted %extra% messages.
commands.moderation.clear.number.error.title = Invalid number
commands.moderation.clear.number.error.description = You have to choose a number between 1 and 99\!
commands.moderation.clear.success.title = Successfully cleared
@@ -153,6 +153,7 @@ commands.moderation.rules.error.message.title = Can't write messages
commands.moderation.rules.error.message.description = I can not write messages in the specified channel
commands.moderation.rules.help.description = Setup the rules on your Discord server
commands.moderation.starboard.success.title = Successfully set the Channel\!
+commands.moderation.starboard.help.description = Sets the starboard channel.
commands.moderation.editrules.channel.title = Rules channel
commands.moderation.editrules.channel.description = Please send me the channel with the rules as mention
commands.moderation.editrules.channel.found.error.title = Channel not found
@@ -175,12 +176,12 @@ commands.music.join.error.connecting.trying.title = Already trying to connect
commands.music.join.error.connecting.trying.description = Hadder is already trying to connect. Please wait a moment
commands.music.join.error.channel.title = No Voice Channel
commands.music.join.error.channel.description = You aren't in a Voice Channel.
-commands.music.join.help.description = Joins your voice channel
+commands.music.join.help.description = Joins your voice channel.
commands.music.leave.success.title = Successfully disconnected
commands.music.leave.success.description = I successfully disconnected from the Voice Channel
commands.music.leave.error.tile = Not connected
commands.music.leave.error.description = I'm currently in no Voice Channel on this Guild
-commands.music.leave.help.description = Leaves a voice channel
+commands.music.leave.help.description = Leaves your voice channel.
commands.music.play.load.title = %extra% Now loading %extra%
commands.music.play.load.description = Trying to load the song...
commands.music.play.success.loading.title = %extra% Now playing %extra%
@@ -192,26 +193,27 @@ commands.music.play.error.load.title = %extra% Load failed %extra%
commands.music.play.error.load.description = Unfortunately I can not load the given song
commands.music.play.error.match.title = %extra% No matches %extra%
commands.music.play.error.match.description = I can not find a song named this on YouTube
-commands.music.play.help.description = Plays a song
+commands.music.play.help.description = Plays the specified song.
commands.music.stop.success.title = Successfully stopped
commands.music.stop.success.description = I successfully stopped the song.
+commands.music.stop.help.description = Stops the song.
commands.music.info.success.title = Track info
commands.music.info.error.title = No playing track
commands.music.info.error.description = I am not playing anything at the moment
-commands.music.info.help.description = Shows information about the playing song
-commands.music.stop.help.description = Stops the song
+commands.music.info.help.description = Shows information about the playing song.
commands.music.queue.error.title = No queue
commands.music.queue.error.description = There are no queued songs at the moment
commands.music.queue.success.title = Queue
commands.music.queue.success.description = This is the queue\: \n %extra%
-commands.music.queue.help.description = Shows the music queue
+commands.music.queue.help.description = Shows the music queue.
commands.music.skip.success.title = Successfully skipped
commands.music.skip.success.description = I successfully skipped to the next song
-commands.music.skip.help.description = Skips the currently playing song
+commands.music.skip.help.description = Skips the currently playing song.
commands.music.volume.success.title = Successfully set
commands.music.volume.success.description = I successfully set the new volume to %extra%
commands.music.volume.error.int.title = Invalid number
commands.music.volume.error.int.description = The volume have to be between 1 and 200
+commands.music.volume.help.description = Change the volume of the music.
commands.nsfw.gif.error.title = GIF not showing? Click here
commands.nsfw.img.error.title = Image not showing? Click here
@@ -246,6 +248,7 @@ commands.owner.shutdown.success.title = Shutdown
commands.owner.shutdown.help.description = Shuts the Bot down
commands.owner.test.success = TEST my friends
commands.owner.test.help.description = Just a little Test Command
+commands.owner.blacklist.help.description = Blacklist a user for specific commands
commands.settings.language.success.title = Language set
commands.settings.language.success.description = `%extra%` is your new language now.
diff --git a/src/main/resources/Translations/Translations_es.properties b/src/main/resources/Translations/Translations_es.properties
index d8cfb15..f142696 100644
--- a/src/main/resources/Translations/Translations_es.properties
+++ b/src/main/resources/Translations/Translations_es.properties
@@ -4,20 +4,6 @@
Hadder = Hadder
-user = <@User>
-searchterm =
-username =
-number = /all
-prefix =
-userprefix =
-vc-name/id =
-user+nickname = <@user>
-region =
-guildid =
-content =
-song =
-user/id= [@User]/[ID]
-
error = Error
none = None
success\! = Success\!
@@ -44,7 +30,9 @@ commands.general.equals.string.first = First string\:
commands.general.equals.string.second = Second string\:
commands.general.equals.string.result = Result\:
commands.general.equals.help.description = Checks if two strings are the same.
-commands.general.help.field.usage = Usage\:
+commands.general.help.description = **Description\:**
+commands.general.help.usage = **Usage\:**
+commands.general.help.example = **Example\:**
commands.general.help.error.description = I need the Embed Links Permission to send the Help Menu\!
commands.general.help.help.description = Shows each command and explains its usage.
commands.general.help.help.label = [CommandName]
@@ -68,8 +56,10 @@ commands.misc.github.success.repositories = Public repositories
commands.misc.github.success.gists = Public gists
commands.misc.github.success.followers = Followers
commands.misc.github.success.following = Following
+commands.misc.github.api.error.title = API error
commands.misc.github.api.error.description = The GitHub API might be down at the moment\!
-commands.misc.github.user.error.description = This user does not exist\!
+commands.misc.github.user.error.title = User doesn't exist
+commands.misc.github.user.error.description = I can not find a user named like this\!
commands.misc.github.connect.title = Connect your GH account
commands.misc.github.connect.description = [Please connect your GitHub account here]%extra%
commands.misc.github.help.description = Displays information about a GitHub user profile.
@@ -93,6 +83,7 @@ commands.moderation.ban.massban.success.description = I successfully banned %ext
commands.moderation.ban.help.description = Bans one or more users from the server.
commands.moderation.lear.all.success.title = Successfully deleted
commands.moderation.lear.all.success.description = I successfully deleted %extra% messages.
+commands.moderation.clear.number.error.title = Invalid number
commands.moderation.clear.number.error.description = You have to choose a number between 1 and 99\!
commands.moderation.clear.success.title = Successfully cleared
commands.moderation.clear.success.description.singular = Successfully deleted one message.
@@ -217,6 +208,11 @@ commands.music.queue.help.description = Shows the music queue
commands.music.skip.success.title = Successfully skipped
commands.music.skip.success.description = I successfully skipped to the next song
commands.music.skip.help.description = Skips the currently playing song
+commands.music.volume.success.title = Successfully set
+commands.music.volume.success.description = I successfully set the new volume to %extra%
+commands.music.volume.error.int.title = Invalid number
+commands.music.volume.error.int.description = The volume have to be between 1 and 200
+commands.music.volume.help.description = Change the volume of the music.
commands.nsfw.gif.error.title = GIF not showing? Click here
commands.nsfw.img.error.title = Image not showing? Click here
@@ -241,7 +237,6 @@ commands.owner.eval.success.input = Input
commands.owner.eval.success.output = Output
commands.owner.eval.success.timing = Timing
commands.owner.eval.help.description = Execute the given code
-commands.owner.eval.help.usage =
commands.owner.guildleave.success.title = Successfully left
commands.owner.guildleave.success.description = I successfully left %extra%.
commands.owner.guildleave.error.title = Can not leave
@@ -256,7 +251,6 @@ commands.owner.test.help.description = Just a little Test Command
commands.settings.language.success.title = Language set
commands.settings.language.success.description = `%extra%` is your new language now.
commands.settings.language.help.description = Sets the new primary language for a user.
-commands.settings.language.help.usage =
commands.settings.prefix.success.title = %extra% Successfully set %extra%
commands.settings.prefix.success.description = I successfully set the new prefix for you to `%extra%`.
commands.settings.prefix.help.description = Sets a new prefix.
diff --git a/src/main/resources/Translations/Translations_fr.properties b/src/main/resources/Translations/Translations_fr.properties
index d8cfb15..f142696 100644
--- a/src/main/resources/Translations/Translations_fr.properties
+++ b/src/main/resources/Translations/Translations_fr.properties
@@ -4,20 +4,6 @@
Hadder = Hadder
-user = <@User>
-searchterm =
-username =
-number = /all
-prefix =
-userprefix =
-vc-name/id =
-user+nickname = <@user>
-region =
-guildid =
-content =
-song =
-user/id= [@User]/[ID]
-
error = Error
none = None
success\! = Success\!
@@ -44,7 +30,9 @@ commands.general.equals.string.first = First string\:
commands.general.equals.string.second = Second string\:
commands.general.equals.string.result = Result\:
commands.general.equals.help.description = Checks if two strings are the same.
-commands.general.help.field.usage = Usage\:
+commands.general.help.description = **Description\:**
+commands.general.help.usage = **Usage\:**
+commands.general.help.example = **Example\:**
commands.general.help.error.description = I need the Embed Links Permission to send the Help Menu\!
commands.general.help.help.description = Shows each command and explains its usage.
commands.general.help.help.label = [CommandName]
@@ -68,8 +56,10 @@ commands.misc.github.success.repositories = Public repositories
commands.misc.github.success.gists = Public gists
commands.misc.github.success.followers = Followers
commands.misc.github.success.following = Following
+commands.misc.github.api.error.title = API error
commands.misc.github.api.error.description = The GitHub API might be down at the moment\!
-commands.misc.github.user.error.description = This user does not exist\!
+commands.misc.github.user.error.title = User doesn't exist
+commands.misc.github.user.error.description = I can not find a user named like this\!
commands.misc.github.connect.title = Connect your GH account
commands.misc.github.connect.description = [Please connect your GitHub account here]%extra%
commands.misc.github.help.description = Displays information about a GitHub user profile.
@@ -93,6 +83,7 @@ commands.moderation.ban.massban.success.description = I successfully banned %ext
commands.moderation.ban.help.description = Bans one or more users from the server.
commands.moderation.lear.all.success.title = Successfully deleted
commands.moderation.lear.all.success.description = I successfully deleted %extra% messages.
+commands.moderation.clear.number.error.title = Invalid number
commands.moderation.clear.number.error.description = You have to choose a number between 1 and 99\!
commands.moderation.clear.success.title = Successfully cleared
commands.moderation.clear.success.description.singular = Successfully deleted one message.
@@ -217,6 +208,11 @@ commands.music.queue.help.description = Shows the music queue
commands.music.skip.success.title = Successfully skipped
commands.music.skip.success.description = I successfully skipped to the next song
commands.music.skip.help.description = Skips the currently playing song
+commands.music.volume.success.title = Successfully set
+commands.music.volume.success.description = I successfully set the new volume to %extra%
+commands.music.volume.error.int.title = Invalid number
+commands.music.volume.error.int.description = The volume have to be between 1 and 200
+commands.music.volume.help.description = Change the volume of the music.
commands.nsfw.gif.error.title = GIF not showing? Click here
commands.nsfw.img.error.title = Image not showing? Click here
@@ -241,7 +237,6 @@ commands.owner.eval.success.input = Input
commands.owner.eval.success.output = Output
commands.owner.eval.success.timing = Timing
commands.owner.eval.help.description = Execute the given code
-commands.owner.eval.help.usage =
commands.owner.guildleave.success.title = Successfully left
commands.owner.guildleave.success.description = I successfully left %extra%.
commands.owner.guildleave.error.title = Can not leave
@@ -256,7 +251,6 @@ commands.owner.test.help.description = Just a little Test Command
commands.settings.language.success.title = Language set
commands.settings.language.success.description = `%extra%` is your new language now.
commands.settings.language.help.description = Sets the new primary language for a user.
-commands.settings.language.help.usage =
commands.settings.prefix.success.title = %extra% Successfully set %extra%
commands.settings.prefix.success.description = I successfully set the new prefix for you to `%extra%`.
commands.settings.prefix.help.description = Sets a new prefix.
diff --git a/src/main/resources/Translations/Translations_ru.properties b/src/main/resources/Translations/Translations_ru.properties
index d8cfb15..f142696 100644
--- a/src/main/resources/Translations/Translations_ru.properties
+++ b/src/main/resources/Translations/Translations_ru.properties
@@ -4,20 +4,6 @@
Hadder = Hadder
-user = <@User>
-searchterm =
-username =
-number = /all
-prefix =
-userprefix =
-vc-name/id =
-user+nickname = <@user>
-region =
-guildid =
-content =
-song =
-user/id= [@User]/[ID]
-
error = Error
none = None
success\! = Success\!
@@ -44,7 +30,9 @@ commands.general.equals.string.first = First string\:
commands.general.equals.string.second = Second string\:
commands.general.equals.string.result = Result\:
commands.general.equals.help.description = Checks if two strings are the same.
-commands.general.help.field.usage = Usage\:
+commands.general.help.description = **Description\:**
+commands.general.help.usage = **Usage\:**
+commands.general.help.example = **Example\:**
commands.general.help.error.description = I need the Embed Links Permission to send the Help Menu\!
commands.general.help.help.description = Shows each command and explains its usage.
commands.general.help.help.label = [CommandName]
@@ -68,8 +56,10 @@ commands.misc.github.success.repositories = Public repositories
commands.misc.github.success.gists = Public gists
commands.misc.github.success.followers = Followers
commands.misc.github.success.following = Following
+commands.misc.github.api.error.title = API error
commands.misc.github.api.error.description = The GitHub API might be down at the moment\!
-commands.misc.github.user.error.description = This user does not exist\!
+commands.misc.github.user.error.title = User doesn't exist
+commands.misc.github.user.error.description = I can not find a user named like this\!
commands.misc.github.connect.title = Connect your GH account
commands.misc.github.connect.description = [Please connect your GitHub account here]%extra%
commands.misc.github.help.description = Displays information about a GitHub user profile.
@@ -93,6 +83,7 @@ commands.moderation.ban.massban.success.description = I successfully banned %ext
commands.moderation.ban.help.description = Bans one or more users from the server.
commands.moderation.lear.all.success.title = Successfully deleted
commands.moderation.lear.all.success.description = I successfully deleted %extra% messages.
+commands.moderation.clear.number.error.title = Invalid number
commands.moderation.clear.number.error.description = You have to choose a number between 1 and 99\!
commands.moderation.clear.success.title = Successfully cleared
commands.moderation.clear.success.description.singular = Successfully deleted one message.
@@ -217,6 +208,11 @@ commands.music.queue.help.description = Shows the music queue
commands.music.skip.success.title = Successfully skipped
commands.music.skip.success.description = I successfully skipped to the next song
commands.music.skip.help.description = Skips the currently playing song
+commands.music.volume.success.title = Successfully set
+commands.music.volume.success.description = I successfully set the new volume to %extra%
+commands.music.volume.error.int.title = Invalid number
+commands.music.volume.error.int.description = The volume have to be between 1 and 200
+commands.music.volume.help.description = Change the volume of the music.
commands.nsfw.gif.error.title = GIF not showing? Click here
commands.nsfw.img.error.title = Image not showing? Click here
@@ -241,7 +237,6 @@ commands.owner.eval.success.input = Input
commands.owner.eval.success.output = Output
commands.owner.eval.success.timing = Timing
commands.owner.eval.help.description = Execute the given code
-commands.owner.eval.help.usage =
commands.owner.guildleave.success.title = Successfully left
commands.owner.guildleave.success.description = I successfully left %extra%.
commands.owner.guildleave.error.title = Can not leave
@@ -256,7 +251,6 @@ commands.owner.test.help.description = Just a little Test Command
commands.settings.language.success.title = Language set
commands.settings.language.success.description = `%extra%` is your new language now.
commands.settings.language.help.description = Sets the new primary language for a user.
-commands.settings.language.help.usage =
commands.settings.prefix.success.title = %extra% Successfully set %extra%
commands.settings.prefix.success.description = I successfully set the new prefix for you to `%extra%`.
commands.settings.prefix.help.description = Sets a new prefix.
diff --git a/src/main/resources/Translations/Translations_tr.properties b/src/main/resources/Translations/Translations_tr.properties
index d8cfb15..f142696 100644
--- a/src/main/resources/Translations/Translations_tr.properties
+++ b/src/main/resources/Translations/Translations_tr.properties
@@ -4,20 +4,6 @@
Hadder = Hadder
-user = <@User>
-searchterm =
-username =
-number = /all
-prefix =
-userprefix =
-vc-name/id =
-user+nickname = <@user>
-region =
-guildid =
-content =
-song =
-user/id= [@User]/[ID]
-
error = Error
none = None
success\! = Success\!
@@ -44,7 +30,9 @@ commands.general.equals.string.first = First string\:
commands.general.equals.string.second = Second string\:
commands.general.equals.string.result = Result\:
commands.general.equals.help.description = Checks if two strings are the same.
-commands.general.help.field.usage = Usage\:
+commands.general.help.description = **Description\:**
+commands.general.help.usage = **Usage\:**
+commands.general.help.example = **Example\:**
commands.general.help.error.description = I need the Embed Links Permission to send the Help Menu\!
commands.general.help.help.description = Shows each command and explains its usage.
commands.general.help.help.label = [CommandName]
@@ -68,8 +56,10 @@ commands.misc.github.success.repositories = Public repositories
commands.misc.github.success.gists = Public gists
commands.misc.github.success.followers = Followers
commands.misc.github.success.following = Following
+commands.misc.github.api.error.title = API error
commands.misc.github.api.error.description = The GitHub API might be down at the moment\!
-commands.misc.github.user.error.description = This user does not exist\!
+commands.misc.github.user.error.title = User doesn't exist
+commands.misc.github.user.error.description = I can not find a user named like this\!
commands.misc.github.connect.title = Connect your GH account
commands.misc.github.connect.description = [Please connect your GitHub account here]%extra%
commands.misc.github.help.description = Displays information about a GitHub user profile.
@@ -93,6 +83,7 @@ commands.moderation.ban.massban.success.description = I successfully banned %ext
commands.moderation.ban.help.description = Bans one or more users from the server.
commands.moderation.lear.all.success.title = Successfully deleted
commands.moderation.lear.all.success.description = I successfully deleted %extra% messages.
+commands.moderation.clear.number.error.title = Invalid number
commands.moderation.clear.number.error.description = You have to choose a number between 1 and 99\!
commands.moderation.clear.success.title = Successfully cleared
commands.moderation.clear.success.description.singular = Successfully deleted one message.
@@ -217,6 +208,11 @@ commands.music.queue.help.description = Shows the music queue
commands.music.skip.success.title = Successfully skipped
commands.music.skip.success.description = I successfully skipped to the next song
commands.music.skip.help.description = Skips the currently playing song
+commands.music.volume.success.title = Successfully set
+commands.music.volume.success.description = I successfully set the new volume to %extra%
+commands.music.volume.error.int.title = Invalid number
+commands.music.volume.error.int.description = The volume have to be between 1 and 200
+commands.music.volume.help.description = Change the volume of the music.
commands.nsfw.gif.error.title = GIF not showing? Click here
commands.nsfw.img.error.title = Image not showing? Click here
@@ -241,7 +237,6 @@ commands.owner.eval.success.input = Input
commands.owner.eval.success.output = Output
commands.owner.eval.success.timing = Timing
commands.owner.eval.help.description = Execute the given code
-commands.owner.eval.help.usage =
commands.owner.guildleave.success.title = Successfully left
commands.owner.guildleave.success.description = I successfully left %extra%.
commands.owner.guildleave.error.title = Can not leave
@@ -256,7 +251,6 @@ commands.owner.test.help.description = Just a little Test Command
commands.settings.language.success.title = Language set
commands.settings.language.success.description = `%extra%` is your new language now.
commands.settings.language.help.description = Sets the new primary language for a user.
-commands.settings.language.help.usage =
commands.settings.prefix.success.title = %extra% Successfully set %extra%
commands.settings.prefix.success.description = I successfully set the new prefix for you to `%extra%`.
commands.settings.prefix.help.description = Sets a new prefix.
diff --git a/src/main/resources/Translations/Translations_zh.properties b/src/main/resources/Translations/Translations_zh.properties
index d8cfb15..f142696 100644
--- a/src/main/resources/Translations/Translations_zh.properties
+++ b/src/main/resources/Translations/Translations_zh.properties
@@ -4,20 +4,6 @@
Hadder = Hadder
-user = <@User>
-searchterm =
-username =
-number = /all
-prefix =
-userprefix =
-vc-name/id =
-user+nickname = <@user>
-region =
-guildid =
-content =
-song =
-user/id= [@User]/[ID]
-
error = Error
none = None
success\! = Success\!
@@ -44,7 +30,9 @@ commands.general.equals.string.first = First string\:
commands.general.equals.string.second = Second string\:
commands.general.equals.string.result = Result\:
commands.general.equals.help.description = Checks if two strings are the same.
-commands.general.help.field.usage = Usage\:
+commands.general.help.description = **Description\:**
+commands.general.help.usage = **Usage\:**
+commands.general.help.example = **Example\:**
commands.general.help.error.description = I need the Embed Links Permission to send the Help Menu\!
commands.general.help.help.description = Shows each command and explains its usage.
commands.general.help.help.label = [CommandName]
@@ -68,8 +56,10 @@ commands.misc.github.success.repositories = Public repositories
commands.misc.github.success.gists = Public gists
commands.misc.github.success.followers = Followers
commands.misc.github.success.following = Following
+commands.misc.github.api.error.title = API error
commands.misc.github.api.error.description = The GitHub API might be down at the moment\!
-commands.misc.github.user.error.description = This user does not exist\!
+commands.misc.github.user.error.title = User doesn't exist
+commands.misc.github.user.error.description = I can not find a user named like this\!
commands.misc.github.connect.title = Connect your GH account
commands.misc.github.connect.description = [Please connect your GitHub account here]%extra%
commands.misc.github.help.description = Displays information about a GitHub user profile.
@@ -93,6 +83,7 @@ commands.moderation.ban.massban.success.description = I successfully banned %ext
commands.moderation.ban.help.description = Bans one or more users from the server.
commands.moderation.lear.all.success.title = Successfully deleted
commands.moderation.lear.all.success.description = I successfully deleted %extra% messages.
+commands.moderation.clear.number.error.title = Invalid number
commands.moderation.clear.number.error.description = You have to choose a number between 1 and 99\!
commands.moderation.clear.success.title = Successfully cleared
commands.moderation.clear.success.description.singular = Successfully deleted one message.
@@ -217,6 +208,11 @@ commands.music.queue.help.description = Shows the music queue
commands.music.skip.success.title = Successfully skipped
commands.music.skip.success.description = I successfully skipped to the next song
commands.music.skip.help.description = Skips the currently playing song
+commands.music.volume.success.title = Successfully set
+commands.music.volume.success.description = I successfully set the new volume to %extra%
+commands.music.volume.error.int.title = Invalid number
+commands.music.volume.error.int.description = The volume have to be between 1 and 200
+commands.music.volume.help.description = Change the volume of the music.
commands.nsfw.gif.error.title = GIF not showing? Click here
commands.nsfw.img.error.title = Image not showing? Click here
@@ -241,7 +237,6 @@ commands.owner.eval.success.input = Input
commands.owner.eval.success.output = Output
commands.owner.eval.success.timing = Timing
commands.owner.eval.help.description = Execute the given code
-commands.owner.eval.help.usage =
commands.owner.guildleave.success.title = Successfully left
commands.owner.guildleave.success.description = I successfully left %extra%.
commands.owner.guildleave.error.title = Can not leave
@@ -256,7 +251,6 @@ commands.owner.test.help.description = Just a little Test Command
commands.settings.language.success.title = Language set
commands.settings.language.success.description = `%extra%` is your new language now.
commands.settings.language.help.description = Sets the new primary language for a user.
-commands.settings.language.help.usage =
commands.settings.prefix.success.title = %extra% Successfully set %extra%
commands.settings.prefix.success.description = I successfully set the new prefix for you to `%extra%`.
commands.settings.prefix.help.description = Sets a new prefix.