jojojojojo

This commit is contained in:
Schlauer-Hax 2020-07-30 22:01:01 +02:00
parent 49a6c6e7e2
commit 07e8c66ba0
61 changed files with 2522 additions and 2577 deletions

View file

@ -1,10 +1,8 @@
{ {
"Owners": [ "Owners": [
], ],
"Database": { "Database": {
"IP":"", "IP": "",
"Port": 6775, "Port": 6775,
"DBName": "", "DBName": "",
"Username": "", "Username": "",

View file

@ -1,6 +1,7 @@
<?xml version="1.0" encoding="UTF-8" ?> <?xml version="1.0" encoding="UTF-8" ?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>Hadder</groupId> <groupId>Hadder</groupId>
@ -34,7 +35,8 @@
<url>https://bigbotnetwork.com/</url> <url>https://bigbotnetwork.com/</url>
<timezone>Europe/Berlin</timezone> <timezone>Europe/Berlin</timezone>
<properties> <properties>
<picUrl>https://cdn.discordapp.com/avatars/261083609148948488/f2c9efc629ef65fffa634f0d63cd467e.webp</picUrl> <picUrl>https://cdn.discordapp.com/avatars/261083609148948488/f2c9efc629ef65fffa634f0d63cd467e.webp
</picUrl>
</properties> </properties>
</developer> </developer>
<developer> <developer>
@ -44,7 +46,8 @@
<url>https://bigbotnetwork.com/</url> <url>https://bigbotnetwork.com/</url>
<timezone>Europe/Berlin</timezone> <timezone>Europe/Berlin</timezone>
<properties> <properties>
<picUrl>https://cdn.discordapp.com/avatars/401817301919465482/a_f81bd03e3862de579dec59241714d86d.gif</picUrl> <picUrl>https://cdn.discordapp.com/avatars/401817301919465482/a_f81bd03e3862de579dec59241714d86d.gif
</picUrl>
</properties> </properties>
</developer> </developer>
</developers> </developers>

View file

@ -17,15 +17,20 @@
package com.bbn.hadder; package com.bbn.hadder;
import com.bbn.hadder.audio.AudioManager; import com.bbn.hadder.audio.AudioManager;
import com.bbn.hadder.commands.fun.AvatarCommand;
import com.bbn.hadder.commands.fun.ClydeCommand;
import com.bbn.hadder.commands.fun.GifCommand;
import com.bbn.hadder.commands.fun.MemeCommand;
import com.bbn.hadder.commands.general.*; import com.bbn.hadder.commands.general.*;
import com.bbn.hadder.commands.misc.*; import com.bbn.hadder.commands.misc.*;
import com.bbn.hadder.commands.moderation.*; import com.bbn.hadder.commands.moderation.*;
import com.bbn.hadder.commands.music.*;
import com.bbn.hadder.commands.nsfw.*; import com.bbn.hadder.commands.nsfw.*;
import com.bbn.hadder.commands.owner.*; import com.bbn.hadder.commands.owner.*;
import com.bbn.hadder.commands.fun.*; import com.bbn.hadder.commands.settings.LanguageCommand;
import com.bbn.hadder.commands.settings.*; import com.bbn.hadder.commands.settings.UserPrefixCommand;
import com.bbn.hadder.commands.music.*; import com.bbn.hadder.core.CommandHandler;
import com.bbn.hadder.core.*; import com.bbn.hadder.core.Config;
import com.bbn.hadder.db.Rethink; import com.bbn.hadder.db.Rethink;
import com.bbn.hadder.listener.*; import com.bbn.hadder.listener.*;
import net.dv8tion.jda.api.OnlineStatus; import net.dv8tion.jda.api.OnlineStatus;

View file

@ -18,7 +18,10 @@ package com.bbn.hadder.audio;
import com.bbn.hadder.commands.CommandEvent; import com.bbn.hadder.commands.CommandEvent;
import com.bbn.hadder.utils.MessageEditor; import com.bbn.hadder.utils.MessageEditor;
import com.sedmelluq.discord.lavaplayer.player.*; import com.sedmelluq.discord.lavaplayer.player.AudioLoadResultHandler;
import com.sedmelluq.discord.lavaplayer.player.AudioPlayer;
import com.sedmelluq.discord.lavaplayer.player.AudioPlayerManager;
import com.sedmelluq.discord.lavaplayer.player.DefaultAudioPlayerManager;
import com.sedmelluq.discord.lavaplayer.source.AudioSourceManagers; import com.sedmelluq.discord.lavaplayer.source.AudioSourceManagers;
import com.sedmelluq.discord.lavaplayer.tools.FriendlyException; import com.sedmelluq.discord.lavaplayer.tools.FriendlyException;
import com.sedmelluq.discord.lavaplayer.track.AudioPlaylist; import com.sedmelluq.discord.lavaplayer.track.AudioPlaylist;

View file

@ -24,7 +24,9 @@ import net.dv8tion.jda.api.entities.Guild;
import net.dv8tion.jda.api.entities.Member; import net.dv8tion.jda.api.entities.Member;
import net.dv8tion.jda.api.entities.VoiceChannel; import net.dv8tion.jda.api.entities.VoiceChannel;
import java.util.*; import java.util.LinkedHashSet;
import java.util.Queue;
import java.util.Set;
import java.util.concurrent.LinkedBlockingQueue; import java.util.concurrent.LinkedBlockingQueue;
public class TrackManager extends AudioEventAdapter { public class TrackManager extends AudioEventAdapter {
@ -91,13 +93,11 @@ public class TrackManager extends AudioEventAdapter {
queue.remove(entry); queue.remove(entry);
} }
public boolean isLoop() public boolean isLoop() {
{
return loop; return loop;
} }
public void setLoop(boolean repeating) public void setLoop(boolean repeating) {
{
this.loop = repeating; this.loop = repeating;
} }
} }

View file

@ -16,13 +16,13 @@
package com.bbn.hadder.commands; package com.bbn.hadder.commands;
import com.bbn.hadder.db.Rethink;
import com.bbn.hadder.db.RethinkServer;
import com.bbn.hadder.db.RethinkUser;
import com.bbn.hadder.audio.AudioManager; import com.bbn.hadder.audio.AudioManager;
import com.bbn.hadder.commands.general.HelpCommand; import com.bbn.hadder.commands.general.HelpCommand;
import com.bbn.hadder.core.CommandHandler; import com.bbn.hadder.core.CommandHandler;
import com.bbn.hadder.core.Config; import com.bbn.hadder.core.Config;
import com.bbn.hadder.db.Rethink;
import com.bbn.hadder.db.RethinkServer;
import com.bbn.hadder.db.RethinkUser;
import com.bbn.hadder.utils.EventWaiter; import com.bbn.hadder.utils.EventWaiter;
import com.bbn.hadder.utils.MessageEditor; import com.bbn.hadder.utils.MessageEditor;
import net.dv8tion.jda.api.JDA; import net.dv8tion.jda.api.JDA;

View file

@ -66,7 +66,8 @@ public class ClydeCommand implements Command {
} }
webhook.delete().queue(); webhook.delete().queue();
e.getMessage().delete().queue(); e.getMessage().delete().queue();
} else e.getTextChannel().sendMessage(e.getMessageEditor().getMessage(MessageEditor.MessageType.NO_SELF_PERMISSION).build()).queue(); } else
e.getTextChannel().sendMessage(e.getMessageEditor().getMessage(MessageEditor.MessageType.NO_SELF_PERMISSION).build()).queue();
} else e.getHelpCommand().sendHelp(this, e); } else e.getHelpCommand().sendHelp(this, e);
} }

View file

@ -41,10 +41,10 @@ public class EqualsCommand implements Command {
String secondString = msge2.getMessage().getContentRaw(); String secondString = msge2.getMessage().getContentRaw();
e.getChannel().sendMessage( e.getChannel().sendMessage(
e.getMessageEditor().getMessage(MessageEditor.MessageType.INFO) e.getMessageEditor().getMessage(MessageEditor.MessageType.INFO)
.setTitle((firstString.equals(secondString)) ? e.getMessageEditor().getTerm( "commands.general.equals.string.equals.true") : e.getMessageEditor().getTerm( "commands.general.equals.string.equals.false")) .setTitle((firstString.equals(secondString)) ? e.getMessageEditor().getTerm("commands.general.equals.string.equals.true") : e.getMessageEditor().getTerm("commands.general.equals.string.equals.false"))
.addField(e.getMessageEditor().getTerm( "commands.general.equals.string.first"), firstString, false) .addField(e.getMessageEditor().getTerm("commands.general.equals.string.first"), firstString, false)
.addField(e.getMessageEditor().getTerm( "commands.general.equals.string.second"), secondString, false) .addField(e.getMessageEditor().getTerm("commands.general.equals.string.second"), secondString, false)
.addField(e.getMessageEditor().getTerm( "commands.general.equals.string.result"), String.valueOf(firstString.equals(secondString)), false) .addField(e.getMessageEditor().getTerm("commands.general.equals.string.result"), String.valueOf(firstString.equals(secondString)), false)
.build()).queue(); .build()).queue();
}, e.getJDA(), e.getAuthor()); }, e.getJDA(), e.getAuthor());
}, e.getJDA(), e.getAuthor()); }, e.getJDA(), e.getAuthor());

View file

@ -54,10 +54,12 @@ public class GitHubCommand implements Command {
String website = "None"; String website = "None";
try { try {
bio = json.getString("bio"); bio = json.getString("bio");
} catch (JSONException ignored) {} } catch (JSONException ignored) {
}
try { try {
location = json.getString("location"); location = json.getString("location");
} catch (JSONException ignored) {} } catch (JSONException ignored) {
}
if (!json.getString("blog").equals("")) website = json.getString("blog"); if (!json.getString("blog").equals("")) website = json.getString("blog");

View file

@ -15,6 +15,7 @@
*/ */
package com.bbn.hadder.commands.misc; package com.bbn.hadder.commands.misc;
import com.bbn.hadder.commands.Command; import com.bbn.hadder.commands.Command;
import com.bbn.hadder.commands.CommandEvent; import com.bbn.hadder.commands.CommandEvent;
import com.bbn.hadder.core.Perm; import com.bbn.hadder.core.Perm;

View file

@ -21,7 +21,6 @@ import com.bbn.hadder.commands.CommandEvent;
import com.bbn.hadder.utils.EventWaiter; import com.bbn.hadder.utils.EventWaiter;
import com.bbn.hadder.utils.MessageEditor; import com.bbn.hadder.utils.MessageEditor;
import com.bbn.hadder.utils.MessageEditor.MessageType; import com.bbn.hadder.utils.MessageEditor.MessageType;
import net.dv8tion.jda.api.EmbedBuilder; import net.dv8tion.jda.api.EmbedBuilder;
import net.dv8tion.jda.api.entities.VoiceChannel; import net.dv8tion.jda.api.entities.VoiceChannel;
@ -31,8 +30,8 @@ public class ScreenShareCommand implements Command {
@Override @Override
public void executed(String[] args, CommandEvent e) { public void executed(String[] args, CommandEvent e) {
if (args.length>0) { if (args.length > 0) {
if (args[0].matches("[0-9]*") && args.length==1 && args[0].length() == 18) { if (args[0].matches("[0-9]*") && args.length == 1 && args[0].length() == 18) {
if (e.getGuild().getVoiceChannelById(args[0]) != null) { if (e.getGuild().getVoiceChannelById(args[0]) != null) {
e.getChannel().sendMessage(e.getMessageEditor().getMessage( e.getChannel().sendMessage(e.getMessageEditor().getMessage(
MessageEditor.MessageType.INFO, MessageEditor.MessageType.INFO,
@ -66,7 +65,7 @@ public class ScreenShareCommand implements Command {
e.getHelpCommand().sendHelp(this, e); e.getHelpCommand().sendHelp(this, e);
} }
}, e.getJDA(), e.getAuthor()); }, e.getJDA(), e.getAuthor());
} else if (vcs.size()==0) { } else if (vcs.size() == 0) {
e.getChannel().sendMessage(e.getMessageEditor().getMessage(MessageEditor.MessageType.ERROR, "commands.misc.screenshare.channel.existing.error", "commands.misc.screenshare.channel.existing.description").build()).queue(); e.getChannel().sendMessage(e.getMessageEditor().getMessage(MessageEditor.MessageType.ERROR, "commands.misc.screenshare.channel.existing.error", "commands.misc.screenshare.channel.existing.description").build()).queue();
e.getHelpCommand().sendHelp(this, e); e.getHelpCommand().sendHelp(this, e);
} else { } else {

View file

@ -48,7 +48,8 @@ public class ServerStatsCommand implements Command {
.setImage(e.getGuild().getBannerUrl()); .setImage(e.getGuild().getBannerUrl());
if (e.getGuild().getDescription() != null) eb.addField("Description", e.getGuild().getDescription(), true); if (e.getGuild().getDescription() != null) eb.addField("Description", e.getGuild().getDescription(), true);
if (e.getGuild().getVanityCode() != null) eb.addField("Vanity Code", "[" + e.getGuild().getVanityCode() + "](https://discord.gg/" + e.getGuild().getVanityCode() + ")", true); if (e.getGuild().getVanityCode() != null)
eb.addField("Vanity Code", "[" + e.getGuild().getVanityCode() + "](https://discord.gg/" + e.getGuild().getVanityCode() + ")", true);
e.getTextChannel().sendMessage(eb.build()).queue(); e.getTextChannel().sendMessage(eb.build()).queue();
} }

View file

@ -108,7 +108,7 @@ public class RegionChangeCommand implements Command {
.build()).queue(); .build()).queue();
} }
public void setRegion (Region region, String region_name, CommandEvent e) { public void setRegion(Region region, String region_name, CommandEvent e) {
e.getGuild().getManager().setRegion(region).reason("Region changed by " + e.getAuthor().getAsTag()).queue(); e.getGuild().getManager().setRegion(region).reason("Region changed by " + e.getAuthor().getAsTag()).queue();
e.getTextChannel().sendMessage( e.getTextChannel().sendMessage(
e.getMessageEditor().getMessage( e.getMessageEditor().getMessage(

View file

@ -31,7 +31,8 @@ public class RoleAssignmentCommand implements Command {
//TODO: THIS LOL //TODO: THIS LOL
if (e.getGuild().getSelfMember().hasPermission(Permission.MANAGE_ROLES)) { if (e.getGuild().getSelfMember().hasPermission(Permission.MANAGE_ROLES)) {
} else e.getTextChannel().sendMessage(e.getMessageEditor().getMessage(MessageEditor.MessageType.NO_SELF_PERMISSION).build()).queue(); } else
e.getTextChannel().sendMessage(e.getMessageEditor().getMessage(MessageEditor.MessageType.NO_SELF_PERMISSION).build()).queue();
} }
@Override @Override

View file

@ -25,18 +25,18 @@ public class StarboardCommand implements Command {
@Override @Override
public void executed(String[] args, CommandEvent e) { public void executed(String[] args, CommandEvent e) {
if (e.getMessage().getMentionedChannels().size()==1) { if (e.getMessage().getMentionedChannels().size() == 1) {
e.getRethinkServer().setStarboard(e.getMessage().getMentionedChannels().get(0).getId()); e.getRethinkServer().setStarboard(e.getMessage().getMentionedChannels().get(0).getId());
e.getChannel().sendMessage( e.getChannel().sendMessage(
e.getMessageEditor().getMessage( e.getMessageEditor().getMessage(
MessageEditor.MessageType.INFO, MessageEditor.MessageType.INFO,
"commands.moderation.starboard.success.title","") "commands.moderation.starboard.success.title", "")
.build()) .build())
.queue(); .queue();
} else { } else {
if (args.length>0) { if (args.length > 0) {
TextChannel channel = e.getGuild().getTextChannelById(args[0]); TextChannel channel = e.getGuild().getTextChannelById(args[0]);
if (channel!=null) { if (channel != null) {
e.getRethinkServer().setStarboard(channel.getId()); e.getRethinkServer().setStarboard(channel.getId());
} }
} else e.getHelpCommand().sendHelp(this, e); } else e.getHelpCommand().sendHelp(this, e);

View file

@ -22,8 +22,8 @@ import com.bbn.hadder.utils.MessageEditor;
import com.sedmelluq.discord.lavaplayer.filter.equalizer.EqualizerFactory; import com.sedmelluq.discord.lavaplayer.filter.equalizer.EqualizerFactory;
public class BassCommand implements Command { public class BassCommand implements Command {
private static final float[] BASS_BOOST = { 0.2f, 0.15f, 0.1f, 0.05f, 0.0f, -0.05f, -0.1f, -0.1f, -0.1f, -0.1f, -0.1f, private static final float[] BASS_BOOST = {0.2f, 0.15f, 0.1f, 0.05f, 0.0f, -0.05f, -0.1f, -0.1f, -0.1f, -0.1f, -0.1f,
-0.1f, -0.1f, -0.1f, -0.1f }; -0.1f, -0.1f, -0.1f, -0.1f};
@Override @Override
public void executed(String[] args, CommandEvent e) { public void executed(String[] args, CommandEvent e) {

View file

@ -29,7 +29,7 @@ public class JoinCommand implements Command {
public void executed(String[] args, CommandEvent e) { public void executed(String[] args, CommandEvent e) {
if (e.getMember().getVoiceState().inVoiceChannel()) { if (e.getMember().getVoiceState().inVoiceChannel()) {
AudioManager audioManager = e.getGuild().getAudioManager(); AudioManager audioManager = e.getGuild().getAudioManager();
if(!audioManager.isAttemptingToConnect()) { if (!audioManager.isAttemptingToConnect()) {
VoiceChannel vc = e.getMember().getVoiceState().getChannel(); VoiceChannel vc = e.getMember().getVoiceState().getChannel();
if (e.getGuild().getSelfMember().getVoiceState().inVoiceChannel()) { if (e.getGuild().getSelfMember().getVoiceState().inVoiceChannel()) {
if (!e.getGuild().getSelfMember().getVoiceState().getChannel().getId().equals(vc.getId())) { if (!e.getGuild().getSelfMember().getVoiceState().getChannel().getId().equals(vc.getId())) {

View file

@ -38,10 +38,10 @@ public class QueueCommand implements Command {
long queuelength = 0; long queuelength = 0;
for (AudioInfo g : queue) { for (AudioInfo g : queue) {
queuelength = queuelength + g.getTrack().getInfo().length; queuelength = queuelength + g.getTrack().getInfo().length;
builder.append("("+e.getAudioManager().getTimestamp(g.getTrack().getInfo().length)+") **").append(g.getTrack().getInfo().author).append("**: `").append(g.getTrack().getInfo().title).append("` \n"); builder.append("(" + e.getAudioManager().getTimestamp(g.getTrack().getInfo().length) + ") **").append(g.getTrack().getInfo().author).append("**: `").append(g.getTrack().getInfo().title).append("` \n");
} }
e.getTextChannel().sendMessage(e.getMessageEditor().getMessage(MessageEditor.MessageType.INFO, e.getTextChannel().sendMessage(e.getMessageEditor().getMessage(MessageEditor.MessageType.INFO,
"commands.music.queue.success.title", "("+String.valueOf(e.getAudioManager().getTimestamp(queuelength))+")", "commands.music.queue.success.title", "(" + String.valueOf(e.getAudioManager().getTimestamp(queuelength)) + ")",
"commands.music.queue.success.description", builder.toString()) "commands.music.queue.success.description", builder.toString())
.build()).queue(); .build()).queue();
} }

View file

@ -51,7 +51,7 @@ public class RecordCommand implements Command {
audioManager.openAudioConnection(event.getMember().getVoiceState().getChannel()); audioManager.openAudioConnection(event.getMember().getVoiceState().getChannel());
} else { } else {
for (Map.Entry<String, Queue<byte[]>> key : queue.entrySet()) { for (Map.Entry<String, Queue<byte[]>> key : queue.entrySet()) {
File file = new File("./"+event.getJDA().getUserById(key.getKey())+".wav"); File file = new File("./" + event.getJDA().getUserById(key.getKey()) + ".wav");
} }

View file

@ -18,8 +18,8 @@ package com.bbn.hadder.commands.nsfw;
import com.bbn.hadder.commands.Command; import com.bbn.hadder.commands.Command;
import com.bbn.hadder.commands.CommandEvent; import com.bbn.hadder.commands.CommandEvent;
import com.bbn.hadder.utils.MessageEditor;
import com.bbn.hadder.utils.Http; import com.bbn.hadder.utils.Http;
import com.bbn.hadder.utils.MessageEditor;
public class AnalCommand implements Command { public class AnalCommand implements Command {

View file

@ -18,8 +18,8 @@ package com.bbn.hadder.commands.nsfw;
import com.bbn.hadder.commands.Command; import com.bbn.hadder.commands.Command;
import com.bbn.hadder.commands.CommandEvent; import com.bbn.hadder.commands.CommandEvent;
import com.bbn.hadder.utils.MessageEditor;
import com.bbn.hadder.utils.Http; import com.bbn.hadder.utils.Http;
import com.bbn.hadder.utils.MessageEditor;
public class BDSMCommand implements Command { public class BDSMCommand implements Command {
@ -42,7 +42,7 @@ public class BDSMCommand implements Command {
@Override @Override
public String[] labels() { public String[] labels() {
return new String[] { "bdsm" }; return new String[]{"bdsm"};
} }
@Override @Override

View file

@ -18,8 +18,8 @@ package com.bbn.hadder.commands.nsfw;
import com.bbn.hadder.commands.Command; import com.bbn.hadder.commands.Command;
import com.bbn.hadder.commands.CommandEvent; import com.bbn.hadder.commands.CommandEvent;
import com.bbn.hadder.utils.MessageEditor;
import com.bbn.hadder.utils.Http; import com.bbn.hadder.utils.Http;
import com.bbn.hadder.utils.MessageEditor;
public class BlowjobCommand implements Command { public class BlowjobCommand implements Command {

View file

@ -18,8 +18,8 @@ package com.bbn.hadder.commands.nsfw;
import com.bbn.hadder.commands.Command; import com.bbn.hadder.commands.Command;
import com.bbn.hadder.commands.CommandEvent; import com.bbn.hadder.commands.CommandEvent;
import com.bbn.hadder.utils.MessageEditor;
import com.bbn.hadder.utils.Http; import com.bbn.hadder.utils.Http;
import com.bbn.hadder.utils.MessageEditor;
public class BoobsCommand implements Command { public class BoobsCommand implements Command {

View file

@ -18,8 +18,8 @@ package com.bbn.hadder.commands.nsfw;
import com.bbn.hadder.commands.Command; import com.bbn.hadder.commands.Command;
import com.bbn.hadder.commands.CommandEvent; import com.bbn.hadder.commands.CommandEvent;
import com.bbn.hadder.utils.MessageEditor;
import com.bbn.hadder.utils.Http; import com.bbn.hadder.utils.Http;
import com.bbn.hadder.utils.MessageEditor;
public class CumCommand implements Command { public class CumCommand implements Command {

View file

@ -18,8 +18,8 @@ package com.bbn.hadder.commands.nsfw;
import com.bbn.hadder.commands.Command; import com.bbn.hadder.commands.Command;
import com.bbn.hadder.commands.CommandEvent; import com.bbn.hadder.commands.CommandEvent;
import com.bbn.hadder.utils.MessageEditor;
import com.bbn.hadder.utils.Http; import com.bbn.hadder.utils.Http;
import com.bbn.hadder.utils.MessageEditor;
public class EroticCommand implements Command { public class EroticCommand implements Command {

View file

@ -18,8 +18,8 @@ package com.bbn.hadder.commands.nsfw;
import com.bbn.hadder.commands.Command; import com.bbn.hadder.commands.Command;
import com.bbn.hadder.commands.CommandEvent; import com.bbn.hadder.commands.CommandEvent;
import com.bbn.hadder.utils.MessageEditor;
import com.bbn.hadder.utils.Http; import com.bbn.hadder.utils.Http;
import com.bbn.hadder.utils.MessageEditor;
public class FeetCommand implements Command { public class FeetCommand implements Command {

View file

@ -18,8 +18,8 @@ package com.bbn.hadder.commands.nsfw;
import com.bbn.hadder.commands.Command; import com.bbn.hadder.commands.Command;
import com.bbn.hadder.commands.CommandEvent; import com.bbn.hadder.commands.CommandEvent;
import com.bbn.hadder.utils.MessageEditor;
import com.bbn.hadder.utils.Http; import com.bbn.hadder.utils.Http;
import com.bbn.hadder.utils.MessageEditor;
public class FingeringCommand implements Command { public class FingeringCommand implements Command {

View file

@ -18,8 +18,8 @@ package com.bbn.hadder.commands.nsfw;
import com.bbn.hadder.commands.Command; import com.bbn.hadder.commands.Command;
import com.bbn.hadder.commands.CommandEvent; import com.bbn.hadder.commands.CommandEvent;
import com.bbn.hadder.utils.MessageEditor;
import com.bbn.hadder.utils.Http; import com.bbn.hadder.utils.Http;
import com.bbn.hadder.utils.MessageEditor;
public class LickingCommand implements Command { public class LickingCommand implements Command {

View file

@ -18,8 +18,8 @@ package com.bbn.hadder.commands.nsfw;
import com.bbn.hadder.commands.Command; import com.bbn.hadder.commands.Command;
import com.bbn.hadder.commands.CommandEvent; import com.bbn.hadder.commands.CommandEvent;
import com.bbn.hadder.utils.MessageEditor;
import com.bbn.hadder.utils.Http; import com.bbn.hadder.utils.Http;
import com.bbn.hadder.utils.MessageEditor;
public class PornCommand implements Command { public class PornCommand implements Command {

View file

@ -18,8 +18,8 @@ package com.bbn.hadder.commands.nsfw;
import com.bbn.hadder.commands.Command; import com.bbn.hadder.commands.Command;
import com.bbn.hadder.commands.CommandEvent; import com.bbn.hadder.commands.CommandEvent;
import com.bbn.hadder.utils.MessageEditor;
import com.bbn.hadder.utils.Http; import com.bbn.hadder.utils.Http;
import com.bbn.hadder.utils.MessageEditor;
public class PussyCommand implements Command { public class PussyCommand implements Command {

View file

@ -18,8 +18,8 @@ package com.bbn.hadder.commands.nsfw;
import com.bbn.hadder.commands.Command; import com.bbn.hadder.commands.Command;
import com.bbn.hadder.commands.CommandEvent; import com.bbn.hadder.commands.CommandEvent;
import com.bbn.hadder.utils.MessageEditor;
import com.bbn.hadder.utils.Http; import com.bbn.hadder.utils.Http;
import com.bbn.hadder.utils.MessageEditor;
public class RandomPornCommand implements Command { public class RandomPornCommand implements Command {
@ -44,7 +44,7 @@ public class RandomPornCommand implements Command {
@Override @Override
public String[] labels() { public String[] labels() {
return new String[] { "randomporn", "pornrandom" }; return new String[]{"randomporn", "pornrandom"};
} }
@Override @Override

View file

@ -18,8 +18,8 @@ package com.bbn.hadder.commands.nsfw;
import com.bbn.hadder.commands.Command; import com.bbn.hadder.commands.Command;
import com.bbn.hadder.commands.CommandEvent; import com.bbn.hadder.commands.CommandEvent;
import com.bbn.hadder.utils.MessageEditor;
import com.bbn.hadder.utils.Http; import com.bbn.hadder.utils.Http;
import com.bbn.hadder.utils.MessageEditor;
public class SoloCommand implements Command { public class SoloCommand implements Command {

View file

@ -18,8 +18,8 @@ package com.bbn.hadder.commands.nsfw;
import com.bbn.hadder.commands.Command; import com.bbn.hadder.commands.Command;
import com.bbn.hadder.commands.CommandEvent; import com.bbn.hadder.commands.CommandEvent;
import com.bbn.hadder.utils.MessageEditor;
import com.bbn.hadder.utils.Http; import com.bbn.hadder.utils.Http;
import com.bbn.hadder.utils.MessageEditor;
public class SpankCommand implements Command { public class SpankCommand implements Command {
@ -42,7 +42,7 @@ public class SpankCommand implements Command {
@Override @Override
public String[] labels() { public String[] labels() {
return new String[] { "spank", "beat", "hit" }; return new String[]{"spank", "beat", "hit"};
} }
@Override @Override

View file

@ -18,8 +18,8 @@ package com.bbn.hadder.commands.nsfw;
import com.bbn.hadder.commands.Command; import com.bbn.hadder.commands.Command;
import com.bbn.hadder.commands.CommandEvent; import com.bbn.hadder.commands.CommandEvent;
import com.bbn.hadder.utils.MessageEditor;
import com.bbn.hadder.utils.Http; import com.bbn.hadder.utils.Http;
import com.bbn.hadder.utils.MessageEditor;
public class TransCommand implements Command { public class TransCommand implements Command {
@ -43,7 +43,7 @@ public class TransCommand implements Command {
@Override @Override
public String[] labels() { public String[] labels() {
return new String[] { "trans" }; return new String[]{"trans"};
} }
@Override @Override

View file

@ -16,11 +16,11 @@
package com.bbn.hadder.commands.owner; package com.bbn.hadder.commands.owner;
import com.bbn.hadder.db.RethinkUser;
import com.bbn.hadder.commands.Command; import com.bbn.hadder.commands.Command;
import com.bbn.hadder.commands.CommandEvent; import com.bbn.hadder.commands.CommandEvent;
import com.bbn.hadder.core.Perm; import com.bbn.hadder.core.Perm;
import com.bbn.hadder.core.Perms; import com.bbn.hadder.core.Perms;
import com.bbn.hadder.db.RethinkUser;
import com.bbn.hadder.utils.MessageEditor; import com.bbn.hadder.utils.MessageEditor;
import net.dv8tion.jda.api.entities.User; import net.dv8tion.jda.api.entities.User;
@ -50,12 +50,12 @@ public class BlacklistCommand implements Command {
LinkedHashSet<String> hashSet = new LinkedHashSet<>(commands); LinkedHashSet<String> hashSet = new LinkedHashSet<>(commands);
ArrayList<String> commandsWithoutDuplicates = new ArrayList<>(hashSet); ArrayList<String> commandsWithoutDuplicates = new ArrayList<>(hashSet);
String newblacklisted = ((commandsWithoutDuplicates.size()!=0) ? String.join(",", commandsWithoutDuplicates) : "none"); String newblacklisted = ((commandsWithoutDuplicates.size() != 0) ? String.join(",", commandsWithoutDuplicates) : "none");
u.setBlacklisted(newblacklisted); u.setBlacklisted(newblacklisted);
e.getTextChannel().sendMessage( e.getTextChannel().sendMessage(
e.getMessageEditor().getMessage(MessageEditor.MessageType.INFO, e.getMessageEditor().getMessage(MessageEditor.MessageType.INFO,
"commands.owner.blacklist.success."+args[0].toLowerCase()+".title", "", "commands.owner.blacklist.success." + args[0].toLowerCase() + ".title", "",
"commands.owner.blacklist.success."+args[0].toLowerCase()+".description", newblacklisted) "commands.owner.blacklist.success." + args[0].toLowerCase() + ".description", newblacklisted)
.build()).queue(); .build()).queue();
u.push(); u.push();
} else e.getHelpCommand().sendHelp(this, e); } else e.getHelpCommand().sendHelp(this, e);
@ -75,7 +75,7 @@ public class BlacklistCommand implements Command {
e.getTextChannel().sendMessage( e.getTextChannel().sendMessage(
e.getMessageEditor().getMessage(MessageEditor.MessageType.INFO) e.getMessageEditor().getMessage(MessageEditor.MessageType.INFO)
.setTitle("Blacklisted Users") .setTitle("Blacklisted Users")
.setDescription((stringBuilder.length()!=0) ? ("``" + stringBuilder.toString() + "``") : "No blacklisted Users") .setDescription((stringBuilder.length() != 0) ? ("``" + stringBuilder.toString() + "``") : "No blacklisted Users")
.build()).queue(); .build()).queue();
break; break;

View file

@ -70,7 +70,7 @@ public class LanguageCommand implements Command {
@Override @Override
public String[] labels() { public String[] labels() {
return new String[] { "language" }; return new String[]{"language"};
} }
@Override @Override

View file

@ -37,7 +37,7 @@ public class UserPrefixCommand implements Command {
@Override @Override
public String[] labels() { public String[] labels() {
return new String[] { "userprefix" }; return new String[]{"userprefix"};
} }
@Override @Override

View file

@ -16,13 +16,13 @@
package com.bbn.hadder.core; package com.bbn.hadder.core;
import com.bbn.hadder.db.Rethink;
import com.bbn.hadder.db.RethinkServer;
import com.bbn.hadder.db.RethinkUser;
import com.bbn.hadder.audio.AudioManager; import com.bbn.hadder.audio.AudioManager;
import com.bbn.hadder.commands.Command; import com.bbn.hadder.commands.Command;
import com.bbn.hadder.commands.CommandEvent; import com.bbn.hadder.commands.CommandEvent;
import com.bbn.hadder.commands.general.HelpCommand; import com.bbn.hadder.commands.general.HelpCommand;
import com.bbn.hadder.db.Rethink;
import com.bbn.hadder.db.RethinkServer;
import com.bbn.hadder.db.RethinkUser;
import com.bbn.hadder.utils.EventWaiter; import com.bbn.hadder.utils.EventWaiter;
import com.bbn.hadder.utils.MessageEditor; import com.bbn.hadder.utils.MessageEditor;
import net.dv8tion.jda.api.events.message.MessageReceivedEvent; import net.dv8tion.jda.api.events.message.MessageReceivedEvent;

View file

@ -16,11 +16,11 @@
package com.bbn.hadder.listener; package com.bbn.hadder.listener;
import com.bbn.hadder.audio.AudioManager;
import com.bbn.hadder.core.CommandHandler;
import com.bbn.hadder.db.Rethink; import com.bbn.hadder.db.Rethink;
import com.bbn.hadder.db.RethinkServer; import com.bbn.hadder.db.RethinkServer;
import com.bbn.hadder.db.RethinkUser; import com.bbn.hadder.db.RethinkUser;
import com.bbn.hadder.audio.AudioManager;
import com.bbn.hadder.core.CommandHandler;
import net.dv8tion.jda.api.EmbedBuilder; import net.dv8tion.jda.api.EmbedBuilder;
import net.dv8tion.jda.api.Permission; import net.dv8tion.jda.api.Permission;
import net.dv8tion.jda.api.entities.ChannelType; import net.dv8tion.jda.api.entities.ChannelType;

View file

@ -16,8 +16,8 @@
package com.bbn.hadder.listener; package com.bbn.hadder.listener;
import com.bbn.hadder.db.Rethink;
import com.bbn.hadder.core.Config; import com.bbn.hadder.core.Config;
import com.bbn.hadder.db.Rethink;
import com.bbn.hadder.utils.BotList; import com.bbn.hadder.utils.BotList;
import com.bbn.hadder.utils.MessageEditor; import com.bbn.hadder.utils.MessageEditor;
import net.dv8tion.jda.api.entities.Member; import net.dv8tion.jda.api.entities.Member;

View file

@ -71,7 +71,7 @@ public class MentionListener extends ListenerAdapter {
); );
builder.addField("Developer", devs.toString(), false); builder.addField("Developer", devs.toString(), false);
builder.addField("Join our Dev Server!", "[Click here!](https://discord.gg/58My2dM)", true); builder.addField("Join our Dev Server!", "[Click here!](https://discord.gg/58My2dM)", true);
builder.addField("Github", "[Click here!](https://github.com/BigBotNetwork/Hadder)",false); builder.addField("Github", "[Click here!](https://github.com/BigBotNetwork/Hadder)", false);
builder.addField("Twitch", "[Click here!](https://www.twitch.tv/bigbotnetwork)", false); builder.addField("Twitch", "[Click here!](https://www.twitch.tv/bigbotnetwork)", false);
e.getChannel().sendMessage(builder.build()).queue(); e.getChannel().sendMessage(builder.build()).queue();
} else if (e.getMessage().getContentRaw().equalsIgnoreCase("@someone")) { } else if (e.getMessage().getContentRaw().equalsIgnoreCase("@someone")) {

View file

@ -5,11 +5,9 @@
package com.bbn.hadder.listener; package com.bbn.hadder.listener;
import com.bbn.hadder.core.Config; import com.bbn.hadder.core.Config;
import com.bbn.hadder.core.Perms;
import net.dv8tion.jda.api.entities.Emote; import net.dv8tion.jda.api.entities.Emote;
import net.dv8tion.jda.api.events.message.MessageReceivedEvent; import net.dv8tion.jda.api.events.message.MessageReceivedEvent;
import net.dv8tion.jda.api.hooks.ListenerAdapter; import net.dv8tion.jda.api.hooks.ListenerAdapter;
import org.json.JSONObject;
import javax.annotation.Nonnull; import javax.annotation.Nonnull;
@ -28,7 +26,7 @@ public class OwnerMessageListener extends ListenerAdapter {
if (!emotename.contains(" ")) { if (!emotename.contains(" ")) {
Emote[] emotes = event.getJDA().getEmotesByName(emotename, true).toArray(new Emote[0]); Emote[] emotes = event.getJDA().getEmotesByName(emotename, true).toArray(new Emote[0]);
StringBuilder sb = new StringBuilder(); StringBuilder sb = new StringBuilder();
if (emotes.length!=0) { if (emotes.length != 0) {
for (Emote emote : emotes) { for (Emote emote : emotes) {
sb.append(emote.getAsMention()).append(" "); sb.append(emote.getAsMention()).append(" ");
} }

View file

@ -16,8 +16,8 @@
package com.bbn.hadder.listener; package com.bbn.hadder.listener;
import com.bbn.hadder.db.Rethink;
import com.bbn.hadder.core.Config; import com.bbn.hadder.core.Config;
import com.bbn.hadder.db.Rethink;
import com.bbn.hadder.utils.BotList; import com.bbn.hadder.utils.BotList;
import net.dv8tion.jda.api.entities.Guild; import net.dv8tion.jda.api.entities.Guild;
import net.dv8tion.jda.api.entities.User; import net.dv8tion.jda.api.entities.User;

View file

@ -60,7 +60,8 @@ public class RulesListener extends ListenerAdapter {
RethinkServer rethinkServer = new RethinkServer(rethink.getObjectByID("server", e.getGuild().getId()), rethink); RethinkServer rethinkServer = new RethinkServer(rethink.getObjectByID("server", e.getGuild().getId()), rethink);
if (e.getMember().getRoles().contains(e.getGuild().getRoleById(rethinkServer.getRoleID()))) { if (e.getMember().getRoles().contains(e.getGuild().getRoleById(rethinkServer.getRoleID()))) {
e.getGuild().removeRoleFromMember(e.getMember(), e.getGuild().getRoleById(rethinkServer.getRoleID())).reason("Accepted rules").queue(); e.getGuild().removeRoleFromMember(e.getMember(), e.getGuild().getRoleById(rethinkServer.getRoleID())).reason("Accepted rules").queue();
} else e.getGuild().addRoleToMember(e.getMember(), e.getGuild().getRoleById(rethinkServer.getRoleID())).reason("Accepted rules").queue(); } else
e.getGuild().addRoleToMember(e.getMember(), e.getGuild().getRoleById(rethinkServer.getRoleID())).reason("Accepted rules").queue();
} }
@Override @Override

View file

@ -31,7 +31,7 @@ public class EventWaiter {
Object listener = new ListenerAdapter() { Object listener = new ListenerAdapter() {
@Override @Override
public void onGuildMessageReceived(@Nonnull GuildMessageReceivedEvent event) { public void onGuildMessageReceived(@Nonnull GuildMessageReceivedEvent event) {
if (user==null) { if (user == null) {
onEvent.accept(event); onEvent.accept(event);
event.getJDA().getShardManager().removeEventListener(this); event.getJDA().getShardManager().removeEventListener(this);
} else if (event.getAuthor().getId().equals(user.getId())) { } else if (event.getAuthor().getId().equals(user.getId())) {
@ -47,7 +47,7 @@ public class EventWaiter {
Object listener = new ListenerAdapter() { Object listener = new ListenerAdapter() {
@Override @Override
public void onGuildMessageReactionAdd(@Nonnull GuildMessageReactionAddEvent event) { public void onGuildMessageReactionAdd(@Nonnull GuildMessageReactionAddEvent event) {
if (user==null) { if (user == null) {
onEvent.accept(event); onEvent.accept(event);
event.getJDA().getShardManager().removeEventListener(this); event.getJDA().getShardManager().removeEventListener(this);
} else if (event.getUser().getId().equals(user.getId())) { } else if (event.getUser().getId().equals(user.getId())) {

View file

@ -50,10 +50,11 @@ public class MessageEditor {
public EmbedBuilder getMessage(MessageType type, String title, String title_extra, String title_extra_two, public EmbedBuilder getMessage(MessageType type, String title, String title_extra, String title_extra_two,
String description, String description_extra, String description_extra_two) { String description, String description_extra, String description_extra_two) {
String language = (this.user!=null) ? rethinkUser.getLanguage() : null; String language = (this.user != null) ? rethinkUser.getLanguage() : null;
EmbedBuilder eb = this.getDefaultSettings(type); EmbedBuilder eb = this.getDefaultSettings(type);
if (!"".equals(title)) eb.setTitle(this.handle(language, title, title_extra, title_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)); if (!"".equals(description))
eb.setDescription(this.handle(language, description, description_extra, description_extra_two));
return eb; return eb;
} }
@ -133,6 +134,7 @@ public class MessageEditor {
ResourceBundle resourceBundle = ResourceBundle.getBundle("Translations/Translations", locale); ResourceBundle resourceBundle = ResourceBundle.getBundle("Translations/Translations", locale);
if (resourceBundle.containsKey(string)) if (resourceBundle.containsKey(string))
return resourceBundle.getString(string).replaceAll("%extra%", extra).replaceAll("%extra_two%", extra_two); return resourceBundle.getString(string).replaceAll("%extra%", extra).replaceAll("%extra_two%", extra_two);
else return "This key doesn't exist. Please report this to the Bot Developers. Key: `" + string + "` Language_code: `" + language_code + "`"; else
return "This key doesn't exist. Please report this to the Bot Developers. Key: `" + string + "` Language_code: `" + language_code + "`";
} }
} }

View file

@ -13,326 +13,316 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
# #
Hadder=Hadder
Hadder = Hadder error=Fehler
none=Nicht angegeben
error = Fehler success\!=Erfolgreich\!
none = Nicht angegeben commands.fun.avatar.success.title=Avatar von %extra%
success\! = Erfolgreich\! commands.fun.avatar.error.title=Benutzer nicht gefunden
commands.fun.avatar.error.description=Ich kann keinen Benutzer mit dieser ID finden\!
commands.fun.avatar.success.title = Avatar von %extra% commands.fun.avatar.help.description=Sends the avatar of the specified Member.
commands.fun.avatar.error.title = Benutzer nicht gefunden commands.fun.gif.error.description=Bitte versuche es mit einem anderen Begriff erneut.
commands.fun.avatar.error.description = Ich kann keinen Benutzer mit dieser ID finden\! commands.fun.gif.help.description=Sucht nach einem GIF auf Giphy.
commands.fun.avatar.help.description = Sends the avatar of the specified Member. commands.fun.meme.success.title=Dein zufälliges Meme\:
commands.fun.gif.error.description = Bitte versuche es mit einem anderen Begriff erneut. commands.fun.meme.api.error=Die Anfrage an die Meme-API konnte nicht verarbeitet werden. Bitte versuche es später erneut.
commands.fun.gif.help.description = Sucht nach einem GIF auf Giphy. commands.fun.meme.help.description=Sendet dir einen zufälligen Meme.
commands.fun.meme.success.title = Dein zufälliges Meme\: commands.fun.clyde.help.description=Sendet eine Nachricht als Webhook namens Clyde.
commands.fun.meme.api.error = Die Anfrage an die Meme-API konnte nicht verarbeitet werden. Bitte versuche es später erneut. commands.general.about.success.title=Hadder - Info
commands.fun.meme.help.description = Sendet dir einen zufälligen Meme. commands.general.about.success.description=Hadder ist ein Open-Source Discord Bot.
commands.fun.clyde.help.description = Sendet eine Nachricht als Webhook namens Clyde. commands.general.about.success.field.one.title=Unterstütze die Entwickler
commands.general.about.success.field.one.description=Hadder ist für alle völlig kostenlos. Wir würden es begrüßen, wenn du etwas Geld an uns spendest. Klicken [hier]%extra%, um zu spenden.
commands.general.about.success.title = Hadder - Info commands.general.about.help.description=Zeigt Informationen über Hadder.
commands.general.about.success.description = Hadder ist ein Open-Source Discord Bot. commands.general.equals.string.first.request=Bitte sende mir den ersten String.
commands.general.about.success.field.one.title = Unterstütze die Entwickler commands.general.equals.string.second.request=Bitte sende mir den zweiten String.
commands.general.about.success.field.one.description = Hadder ist für alle völlig kostenlos. Wir würden es begrüßen, wenn du etwas Geld an uns spendest. Klicken [hier]%extra%, um zu spenden. commands.general.equals.string.equals.true=Ja\! Der erste String entspricht dem zweiten String\!
commands.general.about.help.description = Zeigt Informationen über Hadder. commands.general.equals.string.equals.false=Ja, aber eigentlich nein. Das ist nicht dasselbe.
commands.general.equals.string.first.request = Bitte sende mir den ersten String. commands.general.equals.string.first=Erster String\:
commands.general.equals.string.second.request = Bitte sende mir den zweiten String. commands.general.equals.string.second=Zweiter String\:
commands.general.equals.string.equals.true = Ja\! Der erste String entspricht dem zweiten String\! commands.general.equals.string.result=Ergebnis\:
commands.general.equals.string.equals.false = Ja, aber eigentlich nein. Das ist nicht dasselbe. commands.general.equals.help.description=Checks if two strings are equal.
commands.general.equals.string.first = Erster String\: commands.general.help.description=**Beschreibung\:**
commands.general.equals.string.second = Zweiter String\: commands.general.help.usage=**Benutzung\:**
commands.general.equals.string.result = Ergebnis\: commands.general.help.example=**Beispiel\:**
commands.general.equals.help.description = Checks if two strings are equal. commands.general.help.error.description=Ich brauche die Links Einbetten Berechtigung, um das Hilfe-Menü zu senden\!
commands.general.help.description = **Beschreibung\:** commands.general.help.help.description=Zeigt jeden Befehl an und erklärt seine Verwendung.
commands.general.help.usage = **Benutzung\:** commands.general.help.help.label=[Name des Commands]
commands.general.help.example = **Beispiel\:** commands.general.invite.success.title=Lade mich ein\!
commands.general.help.error.description = Ich brauche die Links Einbetten Berechtigung, um das Hilfe-Menü zu senden\! commands.general.invite.success.description=[Lade mich hier ein\!]%extra%
commands.general.help.help.description = Zeigt jeden Befehl an und erklärt seine Verwendung. commands.general.invite.help.description=Zeigt den Einladungslink an, um Hadder auf deinen Server einzuladen.
commands.general.help.help.label = [Name des Commands] commands.general.ping.help.description=Zeigt den Ping zur Discord API.
commands.general.invite.success.title = Lade mich ein\! commands.misc.feedback.title.request.title=Feedback-Thema
commands.general.invite.success.description = [Lade mich hier ein\!]%extra% commands.misc.feedback.title.request.description=Bitte senden Sie mir das Thema des Feedbacks.
commands.general.invite.help.description = Zeigt den Einladungslink an, um Hadder auf deinen Server einzuladen. commands.misc.feedback.description.request.title=Feedback Beschreibung
commands.general.ping.help.description = Zeigt den Ping zur Discord API. commands.misc.feedback.description.request.description=Bitte senden Sie mir jetzt die Feedback Beschreibung.
commands.misc.feedback.success.title=Feedback erfolgreich gesendet\!
commands.misc.feedback.title.request.title = Feedback-Thema commands.misc.feedback.help.description=Sendet Feedback direkt an die Entwickler.
commands.misc.feedback.title.request.description = Bitte senden Sie mir das Thema des Feedbacks. commands.misc.github.link.title=Verbinde dein GitHub Konto
commands.misc.feedback.description.request.title = Feedback Beschreibung commands.misc.github.success.title=Informationen über %extra%
commands.misc.feedback.description.request.description = Bitte senden Sie mir jetzt die Feedback Beschreibung. commands.misc.github.success.bio=Biographie
commands.misc.feedback.success.title = Feedback erfolgreich gesendet\! commands.misc.github.success.location=Standort
commands.misc.feedback.help.description = Sendet Feedback direkt an die Entwickler. commands.misc.github.success.website=Webseite
commands.misc.github.link.title = Verbinde dein GitHub Konto commands.misc.github.success.repositories=Öffentliche Repositories
commands.misc.github.success.title = Informationen über %extra% commands.misc.github.success.gists=Öffentliche Gists
commands.misc.github.success.bio = Biographie commands.misc.github.success.followers=Abonnenten
commands.misc.github.success.location = Standort commands.misc.github.success.following=Folgt
commands.misc.github.success.website = Webseite commands.misc.github.api.error.title=API-Fehler
commands.misc.github.success.repositories = Öffentliche Repositories commands.misc.github.api.error.description=Die GitHub API könnte im Moment nicht verfügbar sein\!
commands.misc.github.success.gists = Öffentliche Gists commands.misc.github.user.error.title=Benutzer existiert nicht
commands.misc.github.success.followers = Abonnenten commands.misc.github.user.error.description=Ich kann keinen Benutzer finden der so heißt\!
commands.misc.github.success.following = Folgt commands.misc.github.connect.title=Verbinde dein GH Konto
commands.misc.github.api.error.title = API-Fehler commands.misc.github.connect.description=[Bitte verbinde dein GitHub-Konto hier]%extra%
commands.misc.github.api.error.description = Die GitHub API könnte im Moment nicht verfügbar sein\! commands.misc.github.help.description=Zeigt Informationen über ein GitHub Benutzerprofil an.
commands.misc.github.user.error.title = Benutzer existiert nicht commands.misc.screenshare.success.title=Hier ist deine URL, um deinen Bildschirm zu teilen
commands.misc.github.user.error.description = Ich kann keinen Benutzer finden der so heißt\! commands.misc.screenshare.id.error.title=Warte. Das ist illegal.
commands.misc.github.connect.title = Verbinde dein GH Konto commands.misc.screenshare.id.error.description=Diese ID ist ungültig. \nVielleicht hast du eine falsche ID eingegeben. \n\nHinweis\: Stelle sicher, dass der Sprachkanal auf diesem Server ist.
commands.misc.github.connect.description = [Bitte verbinde dein GitHub-Konto hier]%extra% commands.misc.screenshare.channel.error.title=Bitte wähle einen Sprachkanal
commands.misc.github.help.description = Zeigt Informationen über ein GitHub Benutzerprofil an. commands.misc.screenshare.channel.error.description=Es gibt mehr als einen Sprachkanal mit diesem Namen
commands.misc.screenshare.success.title = Hier ist deine URL, um deinen Bildschirm zu teilen commands.misc.screenshare.number.error.title=Du hast eine falsche Nummer angegeben\!
commands.misc.screenshare.id.error.title = Warte. Das ist illegal. commands.misc.screenshare.number.error.description=Dies ist keine Zahl.
commands.misc.screenshare.id.error.description = Diese ID ist ungültig. \nVielleicht hast du eine falsche ID eingegeben. \n\nHinweis\: Stelle sicher, dass der Sprachkanal auf diesem Server ist. commands.misc.screenshare.channel.existing.error=Warte ma'
commands.misc.screenshare.channel.error.title = Bitte wähle einen Sprachkanal commands.misc.screenshare.channel.existing.description=Es existiert kein Sprachkanal mit diesem Namen. \n\nHinweis\: Stelle sicher, dass der Sprachkanal auf diesem Server ist.
commands.misc.screenshare.channel.error.description = Es gibt mehr als einen Sprachkanal mit diesem Namen commands.misc.screenshare.help.description=Zeigt dir den Link zum Teilen deines Bildschirms.
commands.misc.screenshare.number.error.title = Du hast eine falsche Nummer angegeben\! commands.misc.serverstats.title=Serverstatistiken
commands.misc.screenshare.number.error.description = Dies ist keine Zahl. commands.misc.serverstats.description=Diese Nachricht enthält einige Informationen über `&extra&`
commands.misc.screenshare.channel.existing.error = Warte ma' commands.misc.serverstats.help.description=Zeigt Informationen über einen Server.
commands.misc.screenshare.channel.existing.description = Es existiert kein Sprachkanal mit diesem Namen. \n\nHinweis\: Stelle sicher, dass der Sprachkanal auf diesem Server ist. commands.misc.profile.error.title=Nicht gefunden
commands.misc.screenshare.help.description = Zeigt dir den Link zum Teilen deines Bildschirms. commands.misc.profile.error.description=Ich kann den angegebenen Benutzer nicht finden.
commands.misc.serverstats.title = Serverstatistiken commands.misc.profile.help.description=Zeigt einige Informationen über den angegebenen Benutzer.
commands.misc.serverstats.description = Diese Nachricht enthält einige Informationen über `&extra&` commands.misc.code.success.title=Informationen zum Einladungscode
commands.misc.serverstats.help.description = Zeigt Informationen über einen Server. commands.misc.code.success.description=Diese Nachricht enthält einige Informationen über den angegebenen Einladungscode.
commands.misc.profile.error.title = Nicht gefunden commands.misc.code.error.title=Code nicht gefunden
commands.misc.profile.error.description = Ich kann den angegebenen Benutzer nicht finden. commands.misc.code.error.description=Ich kann den angegebenen Einladungscode nicht finden.
commands.misc.profile.help.description = Zeigt einige Informationen über den angegebenen Benutzer. commands.misc.code.help.description=Zeigt Informationen über einen Einladungs-Code.
commands.misc.code.success.title = Informationen zum Einladungscode commands.misc.moveall.success.title=Erfolgreich verschoben
commands.misc.code.success.description = Diese Nachricht enthält einige Informationen über den angegebenen Einladungscode. commands.misc.moveall.success.description=Ich habe erfolgreich %extra% Mitglieder verschoben. Viel Spaß\!
commands.misc.code.error.title = Code nicht gefunden commands.misc.moveall.error.equals.title=Nicht zweimal
commands.misc.code.error.description = Ich kann den angegebenen Einladungscode nicht finden. commands.misc.moveall.error.equals.description=Der erste Sprachkanal gleicht dem zweiten. Du musst zwei verschiedene Sprachkanäle angeben.
commands.misc.code.help.description = Zeigt Informationen über einen Einladungs-Code. commands.misc.moveall.error.source.int.title=Ungültige ID
commands.misc.moveall.success.title = Erfolgreich verschoben commands.misc.moveall.error.source.int.description=You haven't specified an ID as the source channel.
commands.misc.moveall.success.description = Ich habe erfolgreich %extra% Mitglieder verschoben. Viel Spaß\! commands.misc.moveall.error.target.int.title=Ungültige ID
commands.misc.moveall.error.equals.title = Nicht zweimal commands.misc.moveall.error.target.int.description=You haven't specified an ID as the target channel.
commands.misc.moveall.error.equals.description = Der erste Sprachkanal gleicht dem zweiten. Du musst zwei verschiedene Sprachkanäle angeben. commands.misc.moveall.help.description=Verschiebt alle Benutzer des Ursprungskanals in den Zielkanal.
commands.misc.moveall.error.source.int.title = Ungültige ID commands.misc.corona.help.description=Zeigt die neuesten Statistiken von COVID-19
commands.misc.moveall.error.source.int.description = You haven't specified an ID as the source channel. commands.moderation.ban.success.title=Erfolgreich gebannt
commands.misc.moveall.error.target.int.title = Ungültige ID commands.moderation.ban.success.description=Ich habe %extra% erfolgreich gebannt
commands.misc.moveall.error.target.int.description = You haven't specified an ID as the target channel. commands.moderation.ban.error.title=Nicht möglich
commands.misc.moveall.help.description = Verschiebt alle Benutzer des Ursprungskanals in den Zielkanal. commands.moderation.ban.myself.error.description=Ich kann mich nicht selbst bannen\!
commands.misc.corona.help.description = Zeigt die neuesten Statistiken von COVID-19 commands.moderation.ban.yourself.error.description=Du kannst dich nicht selbst bannen\!
commands.moderation.ban.massban.success.description=Ich habe erfolgreich %extra% Mitglieder gebannt\!
commands.moderation.ban.success.title = Erfolgreich gebannt commands.moderation.ban.help.description=Bannt einen oder mehrere Benutzer vom Server.
commands.moderation.ban.success.description = Ich habe %extra% erfolgreich gebannt commands.moderation.clear.all.success.title=Erfolgreich gelöscht
commands.moderation.ban.error.title = Nicht möglich commands.moderation.clear.all.success.description=Ich habe erfolgreich %extra% Nachrichten gelöscht.
commands.moderation.ban.myself.error.description = Ich kann mich nicht selbst bannen\! commands.moderation.clear.number.error.title=Ungültige Nummer
commands.moderation.ban.yourself.error.description = Du kannst dich nicht selbst bannen\! commands.moderation.clear.number.error.description=Sie müssen eine Zahl zwischen 1 und 99 wählen\!
commands.moderation.ban.massban.success.description = Ich habe erfolgreich %extra% Mitglieder gebannt\! commands.moderation.clear.success.title=Erfolgreich gelöscht
commands.moderation.ban.help.description = Bannt einen oder mehrere Benutzer vom Server. commands.moderation.clear.success.description.singular=Nachricht erfolgreich gelöscht.
commands.moderation.clear.all.success.title = Erfolgreich gelöscht commands.moderation.clear.success.description.plural=Ich habe erfolgreich %extra% Nachrichten gelöscht.
commands.moderation.clear.all.success.description = Ich habe erfolgreich %extra% Nachrichten gelöscht. commands.moderation.clear.message.error.title=Keine Nachrichten\!
commands.moderation.clear.number.error.title = Ungültige Nummer commands.moderation.clear.message.error.description=Es gibt keine Nachrichten in diesem Kanal.
commands.moderation.clear.number.error.description = Sie müssen eine Zahl zwischen 1 und 99 wählen\! commands.moderation.clear.help.description=Löscht die angegebene Anzahl von Nachrichten.
commands.moderation.clear.success.title = Erfolgreich gelöscht commands.moderation.prefix.success.title=Erfolgreich festgelegt
commands.moderation.clear.success.description.singular = Nachricht erfolgreich gelöscht. commands.moderation.prefix.success.description=Ich habe erfolgreich den neuen Prefix für den Server auf `%extra% ` gesetzt.
commands.moderation.clear.success.description.plural = Ich habe erfolgreich %extra% Nachrichten gelöscht. commands.moderation.prefix.error.description=Der Prefix darf nicht **"** enthalten
commands.moderation.clear.message.error.title = Keine Nachrichten\! commands.moderation.prefix.help.description=Legt den Guild-Prefix fest.
commands.moderation.clear.message.error.description = Es gibt keine Nachrichten in diesem Kanal. commands.moderation.invitedetect.activate.success.title=Erfolgreich aktiviert
commands.moderation.clear.help.description = Löscht die angegebene Anzahl von Nachrichten. commands.moderation.invitedetect.activate.success.description=Ich habe erfolgreich die Erkennung für Einladungslinks auf diesem Server aktiviert.
commands.moderation.prefix.success.title = Erfolgreich festgelegt commands.moderation.invitedetect.activate.error.title=Bereits aktiviert
commands.moderation.prefix.success.description = Ich habe erfolgreich den neuen Prefix für den Server auf `%extra% ` gesetzt. commands.moderation.invitedetect.activate.error.description=Die Erkennung von Einladungs-Links ist auf diesem Server bereits aktiviert.
commands.moderation.prefix.error.description = Der Prefix darf nicht **"** enthalten commands.moderation.invitedetect.deactivate.success.title=Erfolgreich deaktiviert
commands.moderation.prefix.help.description = Legt den Guild-Prefix fest. commands.moderation.invitedetect.deactivate.success.description=Ich habe erfolgreich die Erkennung für Einladungslinks auf diesem Server deaktiviert.
commands.moderation.invitedetect.activate.success.title = Erfolgreich aktiviert commands.moderation.invitedetect.deactivate.error.title=Bereits deaktiviert
commands.moderation.invitedetect.activate.success.description = Ich habe erfolgreich die Erkennung für Einladungslinks auf diesem Server aktiviert. commands.moderation.invitedetect.deactivate.error.description=Die Erkennung von Einladungs-Links ist auf diesem Server bereits deaktiviert.
commands.moderation.invitedetect.activate.error.title = Bereits aktiviert commands.moderation.invitedetect.help.description=Aktiviert oder deaktiviert die Discord Einladungserkennung.
commands.moderation.invitedetect.activate.error.description = Die Erkennung von Einladungs-Links ist auf diesem Server bereits aktiviert. commands.moderation.kick.success.title=%extra% Erfolgreich gekickt %extra%
commands.moderation.invitedetect.deactivate.success.title = Erfolgreich deaktiviert commands.moderation.kick.success.description=Ich habe %extra% erfolgreich gekickt.
commands.moderation.invitedetect.deactivate.success.description = Ich habe erfolgreich die Erkennung für Einladungslinks auf diesem Server deaktiviert. commands.moderation.kick.error.title=Nicht möglich
commands.moderation.invitedetect.deactivate.error.title = Bereits deaktiviert commands.moderation.kick.myself.error.description=Ich kann mich nicht selbst kicken\!
commands.moderation.invitedetect.deactivate.error.description = Die Erkennung von Einladungs-Links ist auf diesem Server bereits deaktiviert. commands.moderation.kick.yourself.error.description=Du kannst dich nicht selbst kicken.
commands.moderation.invitedetect.help.description = Aktiviert oder deaktiviert die Discord Einladungserkennung. commands.moderation.kick.mass.success.description=Ich habe %extra% Mitglieder erfolgreich gekickt\!
commands.moderation.kick.success.title = %extra% Erfolgreich gekickt %extra% commands.moderation.kick.help.description=Wirft einen oder mehrere Benutzer vom Server.
commands.moderation.kick.success.description = Ich habe %extra% erfolgreich gekickt. commands.moderation.kick.masskick.success.description=Ich habe %extra% Mitglieder erfolgreich gekickt.
commands.moderation.kick.error.title = Nicht möglich commands.moderation.nick.success.title=Erfolgreich umbenannt
commands.moderation.kick.myself.error.description = Ich kann mich nicht selbst kicken\! commands.moderation.nick.success.description=Ich habe %extra% erfolgreich umbenannt.
commands.moderation.kick.yourself.error.description = Du kannst dich nicht selbst kicken. commands.moderation.nick.myself.success.description=Ich habe meinen Spitznamen erfolgreich geändert.
commands.moderation.kick.mass.success.description = Ich habe %extra% Mitglieder erfolgreich gekickt\! commands.moderation.nick.massnick.success.description=Ich habe erfolgreich %extra% Mitglieder umbenannt.
commands.moderation.kick.help.description = Wirft einen oder mehrere Benutzer vom Server. commands.moderation.nick.help.description=Benennt einen oder mehrere Benutzer um.
commands.moderation.kick.masskick.success.description = Ich habe %extra% Mitglieder erfolgreich gekickt. commands.moderation.regionchange.regions.title=Alle Regionen
commands.moderation.nick.success.title = Erfolgreich umbenannt commands.moderation.regionchange.success.title=Region erfolgreich gesetzt
commands.moderation.nick.success.description = Ich habe %extra% erfolgreich umbenannt. commands.moderation.regionchange.success.description=Ich habe die neue Serverregion erfolgreich zu %extra% geändert.
commands.moderation.nick.myself.success.description = Ich habe meinen Spitznamen erfolgreich geändert. commands.moderation.regionchange.help.description=Ändert die Server Region zu gesperrten Regionen.
commands.moderation.nick.massnick.success.description = Ich habe erfolgreich %extra% Mitglieder umbenannt. commands.moderation.role.add.success.title=Rolle(n) erfolgreich hinzugefügt
commands.moderation.nick.help.description = Benennt einen oder mehrere Benutzer um. commands.moderation.role.add.success.description=Ich habe %extra% Rollen zu %extra_two% Mitgliedern hinzugefügt.
commands.moderation.regionchange.regions.title = Alle Regionen commands.moderation.role.remove.success.title=Rolle(n) erfolgreich entfernt
commands.moderation.regionchange.success.title = Region erfolgreich gesetzt commands.moderation.role.remove.success.description=Ich habe %extra% Rollen von %extra_two% Mitgliedern entfernt.
commands.moderation.regionchange.success.description = Ich habe die neue Serverregion erfolgreich zu %extra% geändert. commands.moderation.role.help.description=Fügt und entfernt eine oder mehrere Rolle(n) von einem oder mehreren Benutzer(n) hinzu
commands.moderation.regionchange.help.description = Ändert die Server Region zu gesperrten Regionen. commands.moderation.rules.setup.title=Regeln einrichten
commands.moderation.role.add.success.title = Rolle(n) erfolgreich hinzugefügt commands.moderation.rules.setup.description=Willkommen zum Setup der Regeln. Bitte erwähne den Kanal, in dem ich die Regeln senden soll. Deine Nachricht sollte wie folgt aussehen\: \#rules oder \#verify.
commands.moderation.role.add.success.description = Ich habe %extra% Rollen zu %extra_two% Mitgliedern hinzugefügt. commands.moderation.rules.channel.error.title=Kanal konnte nicht gefunden werden
commands.moderation.role.remove.success.title = Rolle(n) erfolgreich entfernt commands.moderation.rules.channel.error.description=Ich kann den angegebenen Kanal nicht finden. Bitte starte das Setup erneut.
commands.moderation.role.remove.success.description = Ich habe %extra% Rollen von %extra_two% Mitgliedern entfernt. commands.moderation.rules.rules.title=Regelnachricht
commands.moderation.role.help.description = Fügt und entfernt eine oder mehrere Rolle(n) von einem oder mehreren Benutzer(n) hinzu commands.moderation.rules.rules.description=Der Kanal wurde erfolgreich auf %extra% gesetzt. Bitte senden Sie mir jetzt die Regeln.
commands.moderation.rules.setup.title = Regeln einrichten commands.moderation.rules.role.title=Rolle zum Hinzufügen
commands.moderation.rules.setup.description = Willkommen zum Setup der Regeln. Bitte erwähne den Kanal, in dem ich die Regeln senden soll. Deine Nachricht sollte wie folgt aussehen\: \#rules oder \#verify. commands.moderation.rules.role.description=Die Regeln wurden erfolgreich festgelegt. Bitte sende mir den Namen der Rolle, die der Benutzer erhalten soll nachdem er die Regeln akzeptiert hat.
commands.moderation.rules.channel.error.title = Kanal konnte nicht gefunden werden commands.moderation.rules.role.error.title=Rolle existiert nicht
commands.moderation.rules.channel.error.description = Ich kann den angegebenen Kanal nicht finden. Bitte starte das Setup erneut. commands.moderation.rules.role.error.description=Die angegebene Rolle existiert auf diesem Server nicht.
commands.moderation.rules.rules.title = Regelnachricht commands.moderation.rules.role.permission.error.title=Keine Berechtigung
commands.moderation.rules.rules.description = Der Kanal wurde erfolgreich auf %extra% gesetzt. Bitte senden Sie mir jetzt die Regeln. commands.moderation.rules.role.permission.error.description=Du kannst diese Rolle nicht auswählen, weil du keinen Zugriff auf sie hast.
commands.moderation.rules.role.title = Rolle zum Hinzufügen commands.moderation.rules.guild.error.title=Falsche Guild
commands.moderation.rules.role.description = Die Regeln wurden erfolgreich festgelegt. Bitte sende mir den Namen der Rolle, die der Benutzer erhalten soll nachdem er die Regeln akzeptiert hat. commands.moderation.rules.guild.error.description=Der erwähnte Kanal muss auf diesem Server sein\!
commands.moderation.rules.role.error.title = Rolle existiert nicht commands.moderation.rules.emote.accept.title=Benutzerdefiniertes Zustimmungsemote
commands.moderation.rules.role.error.description = Die angegebene Rolle existiert auf diesem Server nicht. commands.moderation.rules.emote.accept.description=The role has been successfully set to %extra%. Now send me the emote on which your user should react to to get verified.
commands.moderation.rules.role.permission.error.title = Keine Berechtigung commands.moderation.rules.emote.decline.title=Benutzerdefiniertes Ablehnungsemote
commands.moderation.rules.role.permission.error.description = Du kannst diese Rolle nicht auswählen, weil du keinen Zugriff auf sie hast. commands.moderation.rules.emote.decline.description=The first emote has been successfully set to %extra%. Please send me now the decline emote.
commands.moderation.rules.guild.error.title = Falsche Guild commands.moderation.rules.emote.error.access.description=Ich kann auf die benutzerdefinierten Emote(s) nicht zugreifen.
commands.moderation.rules.guild.error.description = Der erwähnte Kanal muss auf diesem Server sein\! commands.moderation.rules.emote.error.equal.title=Emotes sind gleich
commands.moderation.rules.emote.accept.title = Benutzerdefiniertes Zustimmungsemote commands.moderation.rules.emote.error.equal.description=Die zwei angegebenen Emotes sind gleich.
commands.moderation.rules.emote.accept.description = The role has been successfully set to %extra%. Now send me the emote on which your user should react to to get verified. commands.moderation.rules.emoji.decline.description=Das erste Emote wurde erfolgreich festgelegt. Bitte sende mir jetzt das Ablehnungsemote.
commands.moderation.rules.emote.decline.title = Benutzerdefiniertes Ablehnungsemote commands.moderation.rules.emoji.error.description=Das angegebene Emote kann nicht verwendet werden.
commands.moderation.rules.emote.decline.description = The first emote has been successfully set to %extra%. Please send me now the decline emote. commands.moderation.rules.success.title=Regeln erfolgreich festgelegt
commands.moderation.rules.emote.error.access.description = Ich kann auf die benutzerdefinierten Emote(s) nicht zugreifen. commands.moderation.rules.success.description=Ich habe die Regeln erfolgreich in %extra% gesendet.
commands.moderation.rules.emote.error.equal.title = Emotes sind gleich commands.moderation.rules.error.message.title=Keine Berechtigung
commands.moderation.rules.emote.error.equal.description = Die zwei angegebenen Emotes sind gleich. commands.moderation.rules.error.message.description=Ich kann keine Nachrichten in dem angegebenen Kanal schreiben
commands.moderation.rules.emoji.decline.description = Das erste Emote wurde erfolgreich festgelegt. Bitte sende mir jetzt das Ablehnungsemote. commands.moderation.rules.error.permission.title=Keine Berechtigung
commands.moderation.rules.emoji.error.description = Das angegebene Emote kann nicht verwendet werden. commands.moderation.rules.error.permission.description=Um diesen Befehl auszuführen, benötige ich die `Rollen verwalten` Berechtigung.
commands.moderation.rules.success.title = Regeln erfolgreich festgelegt commands.moderation.rules.error.interact.title=Kein Zugriff
commands.moderation.rules.success.description = Ich habe die Regeln erfolgreich in %extra% gesendet. commands.moderation.rules.error.interact.description=Ich kann auf die angegebene Rolle nicht zugreifen. Stelle sicher, dass meine Rolle höher als die angegebene Rolle ist.
commands.moderation.rules.error.message.title = Keine Berechtigung commands.moderation.rules.help.description=Richte Regeln auf deinem Discord Server ein
commands.moderation.rules.error.message.description = Ich kann keine Nachrichten in dem angegebenen Kanal schreiben commands.moderation.starboard.success.title=Kanal erfolgreich festgelegt\!
commands.moderation.rules.error.permission.title = Keine Berechtigung commands.moderation.starboard.help.description=Legt den Kanal für das Starboard fest.
commands.moderation.rules.error.permission.description = Um diesen Befehl auszuführen, benötige ich die `Rollen verwalten` Berechtigung. commands.moderation.editrules.channel.title=Kanal der Regeln
commands.moderation.rules.error.interact.title = Kein Zugriff commands.moderation.editrules.channel.description=Please send me the channel with the rules as mention
commands.moderation.rules.error.interact.description = Ich kann auf die angegebene Rolle nicht zugreifen. Stelle sicher, dass meine Rolle höher als die angegebene Rolle ist. commands.moderation.editrules.channel.found.error.title=Kanal konnte nicht gefunden werden
commands.moderation.rules.help.description = Richte Regeln auf deinem Discord Server ein commands.moderation.editrules.channel.found.error.description=I can't find the specified channel. Please start the edit process again.
commands.moderation.starboard.success.title = Kanal erfolgreich festgelegt\! commands.moderation.editrules.channel.message.error.title=Keine Regelnachricht
commands.moderation.starboard.help.description = Legt den Kanal für das Starboard fest. commands.moderation.editrules.channel.message.error.description=Ich kann die Regelnachricht im angegebenen Kanal nicht finden.
commands.moderation.editrules.channel.title = Kanal der Regeln commands.moderation.editrules.message.title=Neue Nachricht
commands.moderation.editrules.channel.description = Please send me the channel with the rules as mention commands.moderation.editrules.message.description=Please send me the new rules message now.
commands.moderation.editrules.channel.found.error.title = Kanal konnte nicht gefunden werden commands.moderation.editrules.error.title=Keine Regeln
commands.moderation.editrules.channel.found.error.description = I can't find the specified channel. Please start the edit process again. commands.moderation.editrules.error.description=There is nor rules message in this server. Please setup the rules first with %extra%rules
commands.moderation.editrules.channel.message.error.title = Keine Regelnachricht commands.moderation.editrules.success.title=Erfolgreich geändert
commands.moderation.editrules.channel.message.error.description = Ich kann die Regelnachricht im angegebenen Kanal nicht finden. commands.moderation.editrules.success.description=Ich habe erfolgreich die Regeln geändert
commands.moderation.editrules.message.title = Neue Nachricht commands.moderation.editrules.help.description=Bearbeitet die Regelnachricht.
commands.moderation.editrules.message.description = Please send me the new rules message now. commands.music.bass.error.connected.title=Kein Kanal
commands.moderation.editrules.error.title = Keine Regeln commands.music.bass.error.connected.description=Du musst im selben Sprachkanal wie der Bot sein, um den Bass zu ändern.
commands.moderation.editrules.error.description = There is nor rules message in this server. Please setup the rules first with %extra%rules commands.music.bass.help.description=Ändere den Bass für den Song, welcher gerade abgespielt wird.
commands.moderation.editrules.success.title = Erfolgreich geändert commands.music.join.success.title=Erfolgreich verbunden
commands.moderation.editrules.success.description = Ich habe erfolgreich die Regeln geändert commands.music.join.success.description=Ich habe mich erfolgreich mit %extra% verbunden.
commands.moderation.editrules.help.description = Bearbeitet die Regelnachricht. commands.music.join.error.connecting.already.title=Bereits verbunden
commands.music.join.error.connecting.already.description=Ich bin bereits mit deinem Sprachkanal verbunden
commands.music.bass.error.connected.title = Kein Kanal commands.music.join.error.connecting.trying.title=Verbindung wird bereits hergestellt
commands.music.bass.error.connected.description = Du musst im selben Sprachkanal wie der Bot sein, um den Bass zu ändern. commands.music.join.error.connecting.trying.description=Hadder versucht bereits, sich zu verbinden. Bitte warte einen Moment
commands.music.bass.help.description = Ändere den Bass für den Song, welcher gerade abgespielt wird. commands.music.join.error.channel.title=Kein Sprachkanal
commands.music.join.success.title = Erfolgreich verbunden commands.music.join.error.channel.description=Du befindest dich nicht in einem Sprachkanal.
commands.music.join.success.description = Ich habe mich erfolgreich mit %extra% verbunden. commands.music.join.error.permission.title=Keine Berechtigung
commands.music.join.error.connecting.already.title = Bereits verbunden commands.music.join.error.permission.description=Ich bin nicht Berechtigt deinem Sprachkanal beizutreten.
commands.music.join.error.connecting.already.description = Ich bin bereits mit deinem Sprachkanal verbunden commands.music.join.help.description=Tritt deinem Sprachkanal bei.
commands.music.join.error.connecting.trying.title = Verbindung wird bereits hergestellt commands.music.leave.success.title=Verbindung erfolgreich getrennt
commands.music.join.error.connecting.trying.description = Hadder versucht bereits, sich zu verbinden. Bitte warte einen Moment commands.music.leave.success.description=Ich habe die Verbindung zum Sprachkanal erfolgreich getrennt
commands.music.join.error.channel.title = Kein Sprachkanal commands.music.leave.error.channel.title=Kein Kanal
commands.music.join.error.channel.description = Du befindest dich nicht in einem Sprachkanal. commands.music.leave.error.channel.description=Du musst im selben Sprachkanal wie der Bot sein.
commands.music.join.error.permission.title = Keine Berechtigung commands.music.leave.error.connected.tile=Nicht verbunden
commands.music.join.error.permission.description = Ich bin nicht Berechtigt deinem Sprachkanal beizutreten. commands.music.leave.error.connected.description=Ich bin derzeit in keinem Sprachkanal auf diesem Server
commands.music.join.help.description = Tritt deinem Sprachkanal bei. commands.music.leave.help.description=Verlässt einen Sprachkanal.
commands.music.leave.success.title = Verbindung erfolgreich getrennt commands.music.play.load.title=%extra% Now loading %extra%
commands.music.leave.success.description = Ich habe die Verbindung zum Sprachkanal erfolgreich getrennt commands.music.play.load.description=Versuche das Lied zu laden...
commands.music.leave.error.channel.title = Kein Kanal commands.music.play.success.loading.title=%extra% Jetzt läuft %extra%
commands.music.leave.error.channel.description = Du musst im selben Sprachkanal wie der Bot sein. commands.music.play.success.queueing.title=%extra% Added to queue %extra%
commands.music.leave.error.connected.tile = Nicht verbunden commands.music.play.success.title=Titel
commands.music.leave.error.connected.description = Ich bin derzeit in keinem Sprachkanal auf diesem Server commands.music.play.success.author=Autor
commands.music.leave.help.description = Verlässt einen Sprachkanal. commands.music.play.success.length=Länge
commands.music.play.load.title = %extra% Now loading %extra% commands.music.play.success.tracks=Lieder
commands.music.play.load.description = Versuche das Lied zu laden... commands.music.play.error.load.title=%extra% Laden fehlgeschlagen %extra%
commands.music.play.success.loading.title = %extra% Jetzt läuft %extra% commands.music.play.error.load.description=Leider kann ich das angegebene Lied nicht laden
commands.music.play.success.queueing.title = %extra% Added to queue %extra% commands.music.play.error.match.title=%extra% Keine Treffer %extra%
commands.music.play.success.title = Titel commands.music.play.error.match.description=Ich kann keinen Song mit diesem Namen auf YouTube finden
commands.music.play.success.author = Autor commands.music.play.success.unpause.title=Erfolgreich fortgesetzt
commands.music.play.success.length = Länge commands.music.play.success.unpause.description=Ich habe erfolgreich den Song fortgesetzt.
commands.music.play.success.tracks = Lieder commands.music.play.error.connected.title=Kein Kanal
commands.music.play.error.load.title = %extra% Laden fehlgeschlagen %extra% commands.music.play.error.connected.description=Du musst im selben Sprachkanal wie der Bot sein, um den Song fortzusetzen.
commands.music.play.error.load.description = Leider kann ich das angegebene Lied nicht laden commands.music.play.help.description=Spielt den angegebenen Song ab.
commands.music.play.error.match.title = %extra% Keine Treffer %extra% commands.music.stop.success.title=Erfolgreich gestoppt
commands.music.play.error.match.description = Ich kann keinen Song mit diesem Namen auf YouTube finden commands.music.stop.success.description=Ich habe den Song erfolgreich gestoppt.
commands.music.play.success.unpause.title = Erfolgreich fortgesetzt commands.music.stop.error.connected.title=Kein Kanal
commands.music.play.success.unpause.description = Ich habe erfolgreich den Song fortgesetzt. commands.music.stop.error.connected.description=Du musst im selben Sprachkanal wie der Bot sein, um ein Lied anzuhalten.
commands.music.play.error.connected.title = Kein Kanal commands.music.stop.help.description=Stoppt den Song.
commands.music.play.error.connected.description = Du musst im selben Sprachkanal wie der Bot sein, um den Song fortzusetzen. commands.music.info.success.title=Informationen zum Lied
commands.music.play.help.description = Spielt den angegebenen Song ab. commands.music.info.error.title=Es wird kein Lied abgespielt
commands.music.stop.success.title = Erfolgreich gestoppt commands.music.info.error.description=Ich spiele im Moment nichts
commands.music.stop.success.description = Ich habe den Song erfolgreich gestoppt. commands.music.info.help.description=Zeigt Informationen über das abgespielte Lied.
commands.music.stop.error.connected.title = Kein Kanal commands.music.queue.error.title=Keine Warteschlange
commands.music.stop.error.connected.description = Du musst im selben Sprachkanal wie der Bot sein, um ein Lied anzuhalten. commands.music.queue.error.description=Momentan sind keine Lieder in der Warteschlange
commands.music.stop.help.description = Stoppt den Song. commands.music.queue.success.title=Warteschlange %extra%
commands.music.info.success.title = Informationen zum Lied commands.music.queue.success.description=Dies ist die Warteschlange\: \n %extra%
commands.music.info.error.title = Es wird kein Lied abgespielt commands.music.queue.help.description=Zeigt die Musik Warteschlange.
commands.music.info.error.description = Ich spiele im Moment nichts commands.music.skip.success.title=Erfolgreich übersprungen
commands.music.info.help.description = Zeigt Informationen über das abgespielte Lied. commands.music.skip.success.description=Ich habe erfolgreich zum nächsten Song übersprungen
commands.music.queue.error.title = Keine Warteschlange commands.music.skip.error.connected.title=Kein Kanal
commands.music.queue.error.description = Momentan sind keine Lieder in der Warteschlange commands.music.skip.error.connected.description=Du musst im selben Sprachkanal wie der Bot sein, um ein Lied zu überspringen.
commands.music.queue.success.title = Warteschlange %extra% commands.music.skip.help.description=Überspringt den gerade abgespielten Song.
commands.music.queue.success.description = Dies ist die Warteschlange\: \n %extra% commands.music.volume.success.title=Erfolgreich festgelegt
commands.music.queue.help.description = Zeigt die Musik Warteschlange. commands.music.volume.success.description=Die Lautstärke wurde erfolgreich auf %extra% gesetzt
commands.music.skip.success.title = Erfolgreich übersprungen commands.music.volume.error.int.title=Ungültige Nummer
commands.music.skip.success.description = Ich habe erfolgreich zum nächsten Song übersprungen commands.music.volume.error.int.description=Die Lautstärke muss zwischen 1 und 200 liegen
commands.music.skip.error.connected.title = Kein Kanal commands.music.volume.error.connected.title=Kein Kanal
commands.music.skip.error.connected.description = Du musst im selben Sprachkanal wie der Bot sein, um ein Lied zu überspringen. commands.music.volume.error.connected.description=Du musst im selben Sprachkanal wie der Bot sein, um die Lautstärke zu ändern.
commands.music.skip.help.description = Überspringt den gerade abgespielten Song. commands.music.volume.help.description=Ändere die Lautstärke der Musik.
commands.music.volume.success.title = Erfolgreich festgelegt commands.music.pause.success.title=Erfolgreich pausiert
commands.music.volume.success.description = Die Lautstärke wurde erfolgreich auf %extra% gesetzt commands.music.pause.success.description=Ich habe den gespielten Song erfolgreich pausiert.
commands.music.volume.error.int.title = Ungültige Nummer commands.music.pause.error.paused.title=Bereits pausiert
commands.music.volume.error.int.description = Die Lautstärke muss zwischen 1 und 200 liegen commands.music.pause.error.paused.description=The song is already paused. You can continue playing it with %extra%play
commands.music.volume.error.connected.title = Kein Kanal commands.music.pause.error.connected.title=Kein Kanal
commands.music.volume.error.connected.description = Du musst im selben Sprachkanal wie der Bot sein, um die Lautstärke zu ändern. commands.music.pause.error.connected.description=Du musst im selben Sprachkanal wie der Bot sein, um den Song zu pausieren.
commands.music.volume.help.description = Ändere die Lautstärke der Musik. commands.music.pause.help.description=Pausiere das abgespielte Lied.
commands.music.pause.success.title = Erfolgreich pausiert commands.music.loop.success.loop.title=Erfolgreich aktiviert
commands.music.pause.success.description = Ich habe den gespielten Song erfolgreich pausiert. commands.music.loop.success.loop.description=Ich wiederhole nun den gerade gespielten Song.
commands.music.pause.error.paused.title = Bereits pausiert commands.music.loop.success.unloop.title=Erfolgreich deaktiviert
commands.music.pause.error.paused.description = The song is already paused. You can continue playing it with %extra%play commands.music.loop.success.unloop.description=Ich werde den gerade gespielten Song nicht mehr wiederholen.
commands.music.pause.error.connected.title = Kein Kanal commands.music.loop.error.connected.title=Kein Kanal
commands.music.pause.error.connected.description = Du musst im selben Sprachkanal wie der Bot sein, um den Song zu pausieren. commands.music.loop.error.connected.description=You have to be in the same voice channel as the bot to set the repeat status.
commands.music.pause.help.description = Pausiere das abgespielte Lied. commands.music.loop.help.description=Wiederholt ein Lied/Warteschlange.
commands.music.loop.success.loop.title = Erfolgreich aktiviert commands.music.echo.success.title=Erfolgreich aktiviert
commands.music.loop.success.loop.description = Ich wiederhole nun den gerade gespielten Song. commands.music.echo.success.description=I will now repeat everything I can hear in your voice channel
commands.music.loop.success.unloop.title = Erfolgreich deaktiviert commands.music.echo.help.description=Sends your voice through Hadder.
commands.music.loop.success.unloop.description = Ich werde den gerade gespielten Song nicht mehr wiederholen. commands.nsfw.gif.error.title=GIF wird nicht angezeigt? Klicke hier
commands.music.loop.error.connected.title = Kein Kanal commands.nsfw.img.error.title=Bild wird nicht angezeigt? Klicke hier
commands.music.loop.error.connected.description = You have to be in the same voice channel as the bot to set the repeat status. commands.nsfw.anal.help.description=Zeigt einen zufälligen Anal GIF.
commands.music.loop.help.description = Wiederholt ein Lied/Warteschlange. commands.nsfw.bdsm.help.description=Zeigt ein zufälliges BDSM Bild
commands.music.echo.success.title = Erfolgreich aktiviert commands.nsfw.blowjob.help.description=Zeigt ein zufälliges Blowjob Bild
commands.music.echo.success.description = I will now repeat everything I can hear in your voice channel commands.nsfw.boobs.help.description=Zeigt einen zufälligen Boob GIF.
commands.music.echo.help.description = Sends your voice through Hadder. commands.nsfw.cum.help.description=Zeigt einen zufälligen Cum GIF.
commands.nsfw.erotic.help.description=Zeigt ein zufälliges Erotik Bild
commands.nsfw.gif.error.title = GIF wird nicht angezeigt? Klicke hier commands.nsfw.feet.help.description=Zeigt einen zufälligen Feet GIF.
commands.nsfw.img.error.title = Bild wird nicht angezeigt? Klicke hier commands.nsfw.fingering.help.description=Zeigt einen zufälligen Finger GIF.
commands.nsfw.anal.help.description = Zeigt einen zufälligen Anal GIF. commands.nsfw.linking.help.description=Zeigt ein zufälliges Leck GIF.
commands.nsfw.bdsm.help.description = Zeigt ein zufälliges BDSM Bild commands.nsfw.porn.help.description=Zeigt einen zufälligen Porn GIF.
commands.nsfw.blowjob.help.description = Zeigt ein zufälliges Blowjob Bild commands.nsfw.pussy.help.description=Zeigt einen zufälligen Pussy GIF.
commands.nsfw.boobs.help.description = Zeigt einen zufälligen Boob GIF. commands.nsfw.randomporn.help.description=Zeigt ein völlig zufälliges Porno GIF.
commands.nsfw.cum.help.description = Zeigt einen zufälligen Cum GIF. commands.nsfw.solo.help.description=Zeigt einen zufälligen Solo GIF.
commands.nsfw.erotic.help.description = Zeigt ein zufälliges Erotik Bild commands.nsfw.spank.help.description=Zeigt ein zufälliges spank GIF.
commands.nsfw.feet.help.description = Zeigt einen zufälligen Feet GIF. commands.nsfw.trans.help.description=Zeigt ein zufälliges Trans Bild
commands.nsfw.fingering.help.description = Zeigt einen zufälligen Finger GIF. commands.owner.eval.success.title=Eval-Befehl
commands.nsfw.linking.help.description = Zeigt ein zufälliges Leck GIF. commands.owner.eval.success.input=Eingabe
commands.nsfw.porn.help.description = Zeigt einen zufälligen Porn GIF. commands.owner.eval.success.output=Ausgabe
commands.nsfw.pussy.help.description = Zeigt einen zufälligen Pussy GIF. commands.owner.eval.success.timing=Timing
commands.nsfw.randomporn.help.description = Zeigt ein völlig zufälliges Porno GIF. commands.owner.eval.help.description=Führt den angegebenen Code aus
commands.nsfw.solo.help.description = Zeigt einen zufälligen Solo GIF. commands.owner.guildleave.success.title=Erfolgreich verlassen
commands.nsfw.spank.help.description = Zeigt ein zufälliges spank GIF. commands.owner.guildleave.success.description=Ich habe %extra% erfolgreich verlassen.
commands.nsfw.trans.help.description = Zeigt ein zufälliges Trans Bild commands.owner.guildleave.error.title=Verlassen nicht möglich
commands.owner.guildleave.error.description=I can not leave from this server. Maybe this isn't a ID?
commands.owner.eval.success.title = Eval-Befehl commands.owner.guildleave.help.description=Quit from a server
commands.owner.eval.success.input = Eingabe commands.owner.reboot.help.description=Startet den Bot neu.
commands.owner.eval.success.output = Ausgabe commands.owner.shutdown.success.title=Fährt herrunter
commands.owner.eval.success.timing = Timing commands.owner.shutdown.help.description=Schalte den Bot ab.
commands.owner.eval.help.description = Führt den angegebenen Code aus commands.owner.test.success=TEST meine Freunde
commands.owner.guildleave.success.title = Erfolgreich verlassen commands.owner.test.help.description=Nur ein kleiner Testbefehl
commands.owner.guildleave.success.description = Ich habe %extra% erfolgreich verlassen. commands.owner.blacklist.success.add.title=Successfully blacklisted the specified commands
commands.owner.guildleave.error.title = Verlassen nicht möglich commands.owner.blacklist.success.add.description=I successfully added the following commands from the blacklist\:\n %extra%
commands.owner.guildleave.error.description = I can not leave from this server. Maybe this isn't a ID? commands.owner.blacklist.success.remove.title=Successfully removed the commands from the blacklist
commands.owner.guildleave.help.description = Quit from a server commands.owner.blacklist.success.remove.description=I successfully removed the following commands from the blacklist\:\n %extra%
commands.owner.reboot.help.description = Startet den Bot neu. commands.owner.blacklist.help.description=Blacklist a user for specific commands
commands.owner.shutdown.success.title = Fährt herrunter commands.settings.language.success.title=Sprache festgelegt
commands.owner.shutdown.help.description = Schalte den Bot ab. commands.settings.language.success.description=`%extra%` ist jetzt deine neue Sprache.
commands.owner.test.success = TEST meine Freunde commands.settings.language.help.description=Führt den angegebenen Code aus.
commands.owner.test.help.description = Nur ein kleiner Testbefehl commands.settings.prefix.success.title=Prefix erfolgreich gesetzt
commands.owner.blacklist.success.add.title = Successfully blacklisted the specified commands commands.settings.prefix.success.description=Ich habe erfolgreich den neuen Prefix für dich auf `%extra% `gesetzt.
commands.owner.blacklist.success.add.description = I successfully added the following commands from the blacklist\:\n %extra% commands.settings.prefix.help.description=Legt einen neuen Prefix fest.
commands.owner.blacklist.success.remove.title = Successfully removed the commands from the blacklist
commands.owner.blacklist.success.remove.description = I successfully removed the following commands from the blacklist\:\n %extra%
commands.owner.blacklist.help.description = Blacklist a user for specific commands
commands.settings.language.success.title = Sprache festgelegt
commands.settings.language.success.description = `%extra%` ist jetzt deine neue Sprache.
commands.settings.language.help.description = Führt den angegebenen Code aus.
commands.settings.prefix.success.title = Prefix erfolgreich gesetzt
commands.settings.prefix.success.description = Ich habe erfolgreich den neuen Prefix für dich auf `%extra% `gesetzt.
commands.settings.prefix.help.description = Legt einen neuen Prefix fest.

View file

@ -13,321 +13,311 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
# #
Hadder=Hadder
Hadder = Hadder error=Error
none=None
error = Error success\!=Success\!
none = None commands.fun.avatar.success.title=Avatar of %extra%
success\! = Success\! commands.fun.avatar.error.title=User not found
commands.fun.avatar.error.description=I can not find a user with this id\!
commands.fun.avatar.success.title = Avatar of %extra% commands.fun.avatar.help.description=Sends the avatar of the specified Member.
commands.fun.avatar.error.title = User not found commands.fun.gif.error.description=Please try again with another term.
commands.fun.avatar.error.description = I can not find a user with this id\! commands.fun.gif.help.description=Looks for a GIF on Giphy.
commands.fun.avatar.help.description = Sends the avatar of the specified Member. commands.fun.meme.success.title=Your random meme\:
commands.fun.gif.error.description = Please try again with another term. commands.fun.meme.api.error=The request to the meme API could not be processed. Please try again later.
commands.fun.gif.help.description = Looks for a GIF on Giphy. commands.fun.meme.help.description=Sends you a random meme.
commands.fun.meme.success.title = Your random meme\: commands.fun.clyde.help.description=Sends a message as a webhook named Clyde.
commands.fun.meme.api.error = The request to the meme API could not be processed. Please try again later. commands.general.about.success.title=Hadder - About
commands.fun.meme.help.description = Sends you a random meme. commands.general.about.success.description=Hadder is an open source Discord bot.
commands.fun.clyde.help.description = Sends a message as a webhook named Clyde. commands.general.about.success.field.one.title=Support the developers
commands.general.about.success.field.one.description=Hadder is completely free for everyone. We would appreciate it if you donated some money to us. Click [here]%extra% to donate.
commands.general.about.success.title = Hadder - About commands.general.about.help.description=Shows information about Hadder.
commands.general.about.success.description = Hadder is an open source Discord bot. commands.general.equals.string.first.request=Please send me the first String.
commands.general.about.success.field.one.title = Support the developers commands.general.equals.string.second.request=Please send me the second String.
commands.general.about.success.field.one.description = Hadder is completely free for everyone. We would appreciate it if you donated some money to us. Click [here]%extra% to donate. commands.general.equals.string.equals.true=Yes\! The first string equals the second string\!
commands.general.about.help.description = Shows information about Hadder. commands.general.equals.string.equals.false=Well yes but actually No. This isn't the same.
commands.general.equals.string.first.request = Please send me the first String. commands.general.equals.string.first=First string\:
commands.general.equals.string.second.request = Please send me the second String. commands.general.equals.string.second=Second string\:
commands.general.equals.string.equals.true = Yes\! The first string equals the second string\! commands.general.equals.string.result=Result\:
commands.general.equals.string.equals.false = Well yes but actually No. This isn't the same. commands.general.equals.help.description=Checks if two strings are equal.
commands.general.equals.string.first = First string\: commands.general.help.description=**Description\:**
commands.general.equals.string.second = Second string\: commands.general.help.usage=**Usage\:**
commands.general.equals.string.result = Result\: commands.general.help.example=**Example\:**
commands.general.equals.help.description = Checks if two strings are equal. commands.general.help.error.description=I need the Embed Links Permission to send the Help Menu\!
commands.general.help.description = **Description\:** commands.general.help.help.description=Shows each command and explains its usage.
commands.general.help.usage = **Usage\:** commands.general.help.help.label=[CommandName]
commands.general.help.example = **Example\:** commands.general.invite.success.title=Invite me\!
commands.general.help.error.description = I need the Embed Links Permission to send the Help Menu\! commands.general.invite.success.description=[Invite me here\!]%extra%
commands.general.help.help.description = Shows each command and explains its usage. commands.general.invite.help.description=Shows the invitation link to invite Hadder to your server.
commands.general.help.help.label = [CommandName] commands.general.ping.help.description=Shows the ping to the Discord API.
commands.general.invite.success.title = Invite me\! commands.misc.feedback.title.request.title=Feedback Topic
commands.general.invite.success.description = [Invite me here\!]%extra% commands.misc.feedback.title.request.description=Please send me the feedback topic.
commands.general.invite.help.description = Shows the invitation link to invite Hadder to your server. commands.misc.feedback.description.request.title=Feedback Description
commands.general.ping.help.description = Shows the ping to the Discord API. commands.misc.feedback.description.request.description=Please send me the feedback description now.
commands.misc.feedback.success.title=Feedback successfully sent\!
commands.misc.feedback.title.request.title = Feedback Topic commands.misc.feedback.help.description=Sends feedback directly to the developers.
commands.misc.feedback.title.request.description = Please send me the feedback topic. commands.misc.github.link.title=Link your GitHub Account
commands.misc.feedback.description.request.title = Feedback Description commands.misc.github.success.title=Information about %extra%
commands.misc.feedback.description.request.description = Please send me the feedback description now. commands.misc.github.success.bio=User bio
commands.misc.feedback.success.title = Feedback successfully sent\! commands.misc.github.success.location=Location
commands.misc.feedback.help.description = Sends feedback directly to the developers. commands.misc.github.success.website=Website
commands.misc.github.link.title = Link your GitHub Account commands.misc.github.success.repositories=Public repositories
commands.misc.github.success.title = Information about %extra% commands.misc.github.success.gists=Public gists
commands.misc.github.success.bio = User bio commands.misc.github.success.followers=Followers
commands.misc.github.success.location = Location commands.misc.github.success.following=Following
commands.misc.github.success.website = Website commands.misc.github.api.error.title=API error
commands.misc.github.success.repositories = Public repositories commands.misc.github.api.error.description=The GitHub API might be down at the moment\!
commands.misc.github.success.gists = Public gists commands.misc.github.user.error.title=User doesn't exist
commands.misc.github.success.followers = Followers commands.misc.github.user.error.description=I can not find a user named like this\!
commands.misc.github.success.following = Following commands.misc.github.connect.title=Connect your GH account
commands.misc.github.api.error.title = API error commands.misc.github.connect.description=[Please connect your GitHub account here]%extra%
commands.misc.github.api.error.description = The GitHub API might be down at the moment\! commands.misc.github.help.description=Displays information about a GitHub user profile.
commands.misc.github.user.error.title = User doesn't exist commands.misc.screenshare.success.title=Here's your URL to share your Screen
commands.misc.github.user.error.description = I can not find a user named like this\! commands.misc.screenshare.id.error.title=Wait. That's illegal.
commands.misc.github.connect.title = Connect your GH account commands.misc.screenshare.id.error.description=This ID is invalid. \nMaybe you entered a wrong ID. \n\nNote\: Make sure the Voice Channel is in this Guild.
commands.misc.github.connect.description = [Please connect your GitHub account here]%extra% commands.misc.screenshare.channel.error.title=Please choose a Voice Channel
commands.misc.github.help.description = Displays information about a GitHub user profile. commands.misc.screenshare.channel.error.description=There is more than one channel with this name
commands.misc.screenshare.success.title = Here's your URL to share your Screen commands.misc.screenshare.number.error.title=You specified a wrong number\!
commands.misc.screenshare.id.error.title = Wait. That's illegal. commands.misc.screenshare.number.error.description=This isn't a Number.
commands.misc.screenshare.id.error.description = This ID is invalid. \nMaybe you entered a wrong ID. \n\nNote\: Make sure the Voice Channel is in this Guild. commands.misc.screenshare.channel.existing.error=Hol' up
commands.misc.screenshare.channel.error.title = Please choose a Voice Channel commands.misc.screenshare.channel.existing.description=There is no Voice Channel named like this. \n\nNote\: Make sure the Voice Channel is in this Guild.
commands.misc.screenshare.channel.error.description = There is more than one channel with this name commands.misc.screenshare.help.description=Shows you the link to share your screen.
commands.misc.screenshare.number.error.title = You specified a wrong number\! commands.misc.serverstats.title=Serverstats
commands.misc.screenshare.number.error.description = This isn't a Number. commands.misc.serverstats.description=This message contains some information about `%extra%`
commands.misc.screenshare.channel.existing.error = Hol' up commands.misc.serverstats.help.description=Shows information about a server.
commands.misc.screenshare.channel.existing.description = There is no Voice Channel named like this. \n\nNote\: Make sure the Voice Channel is in this Guild. commands.misc.profile.error.title=Not found
commands.misc.screenshare.help.description = Shows you the link to share your screen. commands.misc.profile.error.description=I can't find the specified user.
commands.misc.serverstats.title = Serverstats commands.misc.profile.help.description=Shows some information about the specified user.
commands.misc.serverstats.description = This message contains some information about `%extra%` commands.misc.code.success.title=Invite code information
commands.misc.serverstats.help.description = Shows information about a server. commands.misc.code.success.description=This message contains some information about the specified invite code.
commands.misc.profile.error.title = Not found commands.misc.code.error.title=Code not found
commands.misc.profile.error.description = I can't find the specified user. commands.misc.code.error.description=I can't find the specified invite code.
commands.misc.profile.help.description = Shows some information about the specified user. commands.misc.code.help.description=Shows information about a invite code.
commands.misc.code.success.title = Invite code information commands.misc.moveall.success.title=Successfully moved
commands.misc.code.success.description = This message contains some information about the specified invite code. commands.misc.moveall.success.description=I successfully moved %extra% members. Have fun\!
commands.misc.code.error.title = Code not found commands.misc.moveall.error.equals.title=Not twice
commands.misc.code.error.description = I can't find the specified invite code. commands.misc.moveall.error.equals.description=The first voice channel equals the second. You have to specify two different voice channels.
commands.misc.code.help.description = Shows information about a invite code. commands.misc.moveall.error.source.int.title=Invalid ID
commands.misc.moveall.success.title = Successfully moved commands.misc.moveall.error.source.int.description=You haven't specified an ID as the source channel.
commands.misc.moveall.success.description = I successfully moved %extra% members. Have fun\! commands.misc.moveall.error.target.int.title=Invalid ID
commands.misc.moveall.error.equals.title = Not twice commands.misc.moveall.error.target.int.description=You haven't specified an ID as the target channel.
commands.misc.moveall.error.equals.description = The first voice channel equals the second. You have to specify two different voice channels. commands.misc.moveall.help.description=Moves all users in the source channel to the target channel.
commands.misc.moveall.error.source.int.title = Invalid ID commands.misc.corona.help.description=Shows the newest stats of COVID-19
commands.misc.moveall.error.source.int.description = You haven't specified an ID as the source channel. commands.moderation.ban.success.title=Successfully banned
commands.misc.moveall.error.target.int.title = Invalid ID commands.moderation.ban.success.description=I successfully baned %extra%
commands.misc.moveall.error.target.int.description = You haven't specified an ID as the target channel. commands.moderation.ban.error.title=Not possible
commands.misc.moveall.help.description = Moves all users in the source channel to the target channel. commands.moderation.ban.myself.error.description=I can not ban myself\!
commands.misc.corona.help.description = Shows the newest stats of COVID-19 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.success.title = Successfully banned commands.moderation.ban.help.description=Bans one or more users from the server.
commands.moderation.ban.success.description = I successfully baned %extra% commands.moderation.clear.all.success.title=Successfully deleted
commands.moderation.ban.error.title = Not possible commands.moderation.clear.all.success.description=I successfully deleted %extra% messages.
commands.moderation.ban.myself.error.description = I can not ban myself\! commands.moderation.clear.number.error.title=Invalid number
commands.moderation.ban.yourself.error.description = You can not ban yourself\! commands.moderation.clear.number.error.description=You have to choose a number between 1 and 99\!
commands.moderation.ban.massban.success.description = I successfully banned %extra% members\! commands.moderation.clear.success.title=Successfully cleared
commands.moderation.ban.help.description = Bans one or more users from the server. commands.moderation.clear.success.description.singular=Successfully deleted one message.
commands.moderation.clear.all.success.title = Successfully deleted commands.moderation.clear.success.description.plural=Successfully deleted %extra% messages.
commands.moderation.clear.all.success.description = I successfully deleted %extra% messages. commands.moderation.clear.message.error.title=No messages\!
commands.moderation.clear.number.error.title = Invalid number commands.moderation.clear.message.error.description=There are no messages in this channel.
commands.moderation.clear.number.error.description = You have to choose a number between 1 and 99\! commands.moderation.clear.help.description=Deletes the specified number of messages.
commands.moderation.clear.success.title = Successfully cleared commands.moderation.prefix.success.title=%extra% Successfully set %extra%
commands.moderation.clear.success.description.singular = Successfully deleted one message. commands.moderation.prefix.success.description=I successfully set the new prefix for the server to `%extra%`.
commands.moderation.clear.success.description.plural = Successfully deleted %extra% messages. commands.moderation.prefix.error.description=The prefix must not contain **"**
commands.moderation.clear.message.error.title = No messages\! commands.moderation.prefix.help.description=Sets the Guild-Prefix.
commands.moderation.clear.message.error.description = There are no messages in this channel. commands.moderation.invitedetect.activate.success.title=Successfully activated
commands.moderation.clear.help.description = Deletes the specified number of messages. commands.moderation.invitedetect.activate.success.description=I successfully activated the invite link detection for this server.
commands.moderation.prefix.success.title = %extra% Successfully set %extra% commands.moderation.invitedetect.activate.error.title=Already activated
commands.moderation.prefix.success.description = I successfully set the new prefix for the server to `%extra%`. commands.moderation.invitedetect.activate.error.description=The invite link detection is already activated on this server.
commands.moderation.prefix.error.description = The prefix must not contain **"** commands.moderation.invitedetect.deactivate.success.title=Successfully deactivated
commands.moderation.prefix.help.description = Sets the Guild-Prefix. commands.moderation.invitedetect.deactivate.success.description=I successfully deactivated the invite link detection for this server.
commands.moderation.invitedetect.activate.success.title = Successfully activated commands.moderation.invitedetect.deactivate.error.title=Already deactivated
commands.moderation.invitedetect.activate.success.description = I successfully activated the invite link detection for this server. commands.moderation.invitedetect.deactivate.error.description=The invite link detection is already deactivated on this server.
commands.moderation.invitedetect.activate.error.title = Already activated commands.moderation.invitedetect.help.description=Activate or deactivate the Discord invite link detection.
commands.moderation.invitedetect.activate.error.description = The invite link detection is already activated on this server. commands.moderation.kick.success.title=%extra% Successfully kicked %extra%
commands.moderation.invitedetect.deactivate.success.title = Successfully deactivated commands.moderation.kick.success.description=I successfully kicked %extra%.
commands.moderation.invitedetect.deactivate.success.description = I successfully deactivated the invite link detection for this server. commands.moderation.kick.error.title=Not possible
commands.moderation.invitedetect.deactivate.error.title = Already deactivated commands.moderation.kick.myself.error.description=I can not kick myself\!
commands.moderation.invitedetect.deactivate.error.description = The invite link detection is already deactivated on this server. commands.moderation.kick.yourself.error.description=You can't kick yourself.
commands.moderation.invitedetect.help.description = Activate or deactivate the Discord invite link detection. commands.moderation.kick.mass.success.description=I successfully kicked %extra% Members\!
commands.moderation.kick.success.title = %extra% Successfully kicked %extra% commands.moderation.kick.help.description=Kicks one or more user from the server.
commands.moderation.kick.success.description = I successfully kicked %extra%. commands.moderation.kick.masskick.success.description=I successfully kicked %extra% members.
commands.moderation.kick.error.title = Not possible commands.moderation.nick.success.title=%extra% Successfully nicked %extra%
commands.moderation.kick.myself.error.description = I can not kick myself\! commands.moderation.nick.success.description=I successfully nicked %extra%.
commands.moderation.kick.yourself.error.description = You can't kick yourself. commands.moderation.nick.myself.success.description=I successfully changed my nickname.
commands.moderation.kick.mass.success.description = I successfully kicked %extra% Members\! commands.moderation.nick.massnick.success.description=I successfully nicked %extra% Members.
commands.moderation.kick.help.description = Kicks one or more user from the server. commands.moderation.nick.help.description=Rename a one or more user.
commands.moderation.kick.masskick.success.description = I successfully kicked %extra% members. commands.moderation.regionchange.regions.title=All regions
commands.moderation.nick.success.title = %extra% Successfully nicked %extra% commands.moderation.regionchange.success.title=Successfully set region
commands.moderation.nick.success.description = I successfully nicked %extra%. commands.moderation.regionchange.success.description=I successfully set the new server region to %extra%.
commands.moderation.nick.myself.success.description = I successfully changed my nickname. commands.moderation.regionchange.help.description=Changes the server region to locked regions.
commands.moderation.nick.massnick.success.description = I successfully nicked %extra% Members. commands.moderation.role.add.success.title=Successfully added role(s)
commands.moderation.nick.help.description = Rename a one or more user. commands.moderation.role.add.success.description=I successfully added %extra% roles to %extra_two% members.
commands.moderation.regionchange.regions.title = All regions commands.moderation.role.remove.success.title=Successfully removed role(s)
commands.moderation.regionchange.success.title = Successfully set region commands.moderation.role.remove.success.description=I successfully removed %extra% roles from %extra_two% members.
commands.moderation.regionchange.success.description = I successfully set the new server region to %extra%. commands.moderation.role.help.description=Adds and removes one or more role(s) from one or more user(s)
commands.moderation.regionchange.help.description = Changes the server region to locked regions. commands.moderation.rules.setup.title=Set up rules
commands.moderation.role.add.success.title = Successfully added role(s) 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.
commands.moderation.role.add.success.description = I successfully added %extra% roles to %extra_two% members. commands.moderation.rules.channel.error.title=Channel not found
commands.moderation.role.remove.success.title = Successfully removed role(s) commands.moderation.rules.channel.error.description=I can't find the specified channel. Please start the setup again.
commands.moderation.role.remove.success.description = I successfully removed %extra% roles from %extra_two% members. commands.moderation.rules.rules.title=Rules message
commands.moderation.role.help.description = Adds and removes one or more role(s) from one or more user(s) commands.moderation.rules.rules.description=The channel was successfully set to %extra%. Please send me the rules now.
commands.moderation.rules.setup.title = Set up rules commands.moderation.rules.role.title=Role to assign/remove
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. commands.moderation.rules.role.description=The rules were successfully set. Please send me the name of the role which the user receives/loses after he accepted the rules.
commands.moderation.rules.channel.error.title = Channel not found commands.moderation.rules.role.error.title=Role does not exist
commands.moderation.rules.channel.error.description = I can't find the specified channel. Please start the setup again. commands.moderation.rules.role.error.description=The specified role does not exist on this server.
commands.moderation.rules.rules.title = Rules message commands.moderation.rules.role.permission.error.title=No permission
commands.moderation.rules.rules.description = The channel was successfully set to %extra%. Please send me the rules now. commands.moderation.rules.role.permission.error.description=You cannot select this role because you cannot interact with it.
commands.moderation.rules.role.title = Role to assign/remove commands.moderation.rules.guild.error.title=Wrong Guild
commands.moderation.rules.role.description = The rules were successfully set. Please send me the name of the role which the user receives/loses after he accepted the rules. commands.moderation.rules.guild.error.description=The mentioned channel must be on this server\!
commands.moderation.rules.role.error.title = Role does not exist commands.moderation.rules.emote.accept.title=Custom Accept Emote
commands.moderation.rules.role.error.description = The specified role does not exist on this server. commands.moderation.rules.emote.accept.description=The role has been successfully set to %extra%. Now send me the emote on which your user should react to to get verified.
commands.moderation.rules.role.permission.error.title = No permission commands.moderation.rules.emote.decline.title=Custom Decline Emote
commands.moderation.rules.role.permission.error.description = You cannot select this role because you cannot interact with it. commands.moderation.rules.emote.decline.description=The first emote has been successfully set to %extra%. Please send me now the decline emote.
commands.moderation.rules.guild.error.title = Wrong Guild commands.moderation.rules.emote.error.access.description=I can not access the custom emote(s).
commands.moderation.rules.guild.error.description = The mentioned channel must be on this server\! commands.moderation.rules.emote.error.equal.title=Emotes are equal
commands.moderation.rules.emote.accept.title = Custom Accept Emote commands.moderation.rules.emote.error.equal.description=The 1st and 2nd emote equals each other.
commands.moderation.rules.emote.accept.description = The role has been successfully set to %extra%. Now send me the emote on which your user should react to to get verified. commands.moderation.rules.emoji.decline.description=The first emote has been successfully set. Please send me now the decline emote.
commands.moderation.rules.emote.decline.title = Custom Decline Emote commands.moderation.rules.emoji.error.description=The given emote can't be used.
commands.moderation.rules.emote.decline.description = The first emote has been successfully set to %extra%. Please send me now the decline emote. commands.moderation.rules.success.title=Successfully set the rules
commands.moderation.rules.emote.error.access.description = I can not access the custom emote(s). commands.moderation.rules.success.description=I successfully send the rules in %extra%.
commands.moderation.rules.emote.error.equal.title = Emotes are equal commands.moderation.rules.error.message.title=Can't write messages
commands.moderation.rules.emote.error.equal.description = The 1st and 2nd emote equals each other. commands.moderation.rules.error.message.description=I can not write messages in the specified channel
commands.moderation.rules.emoji.decline.description = The first emote has been successfully set. Please send me now the decline emote. commands.moderation.rules.error.permission.title=No permission
commands.moderation.rules.emoji.error.description = The given emote can't be used. commands.moderation.rules.error.permission.description=To execute this command, I need the `MANAGE_ROLES` permission.
commands.moderation.rules.success.title = Successfully set the rules commands.moderation.rules.error.interact.title=Can't interact
commands.moderation.rules.success.description = I successfully send the rules in %extra%. commands.moderation.rules.error.interact.description=I can not interact with the specified role. Make sure my role is higher than the specified role.
commands.moderation.rules.error.message.title = Can't write messages commands.moderation.rules.help.description=Setup the rules on your Discord server
commands.moderation.rules.error.message.description = I can not write messages in the specified channel commands.moderation.starboard.success.title=Successfully set the Channel\!
commands.moderation.rules.error.permission.title = No permission commands.moderation.starboard.help.description=Sets the starboard channel.
commands.moderation.rules.error.permission.description = To execute this command, I need the `MANAGE_ROLES` permission. commands.moderation.editrules.channel.title=Rules channel
commands.moderation.rules.error.interact.title = Can't interact commands.moderation.editrules.channel.description=Please send me the channel with the rules as mention
commands.moderation.rules.error.interact.description = I can not interact with the specified role. Make sure my role is higher than the specified role. commands.moderation.editrules.channel.found.error.title=Channel not found
commands.moderation.rules.help.description = Setup the rules on your Discord server commands.moderation.editrules.channel.found.error.description=I can't find the specified channel. Please start the edit process again.
commands.moderation.starboard.success.title = Successfully set the Channel\! commands.moderation.editrules.channel.message.error.title=No rules message
commands.moderation.starboard.help.description = Sets the starboard channel. commands.moderation.editrules.channel.message.error.description=I can not find the rules message in the specified channel.
commands.moderation.editrules.channel.title = Rules channel commands.moderation.editrules.message.title=New message
commands.moderation.editrules.channel.description = Please send me the channel with the rules as mention commands.moderation.editrules.message.description=Please send me the new rules message now.
commands.moderation.editrules.channel.found.error.title = Channel not found commands.moderation.editrules.error.title=No rules
commands.moderation.editrules.channel.found.error.description = I can't find the specified channel. Please start the edit process again. commands.moderation.editrules.error.description=There is nor rules message in this server. Please setup the rules first with %extra%rules
commands.moderation.editrules.channel.message.error.title = No rules message commands.moderation.editrules.success.title=Successfully changed
commands.moderation.editrules.channel.message.error.description = I can not find the rules message in the specified channel. commands.moderation.editrules.success.description=I successfully changed the rules
commands.moderation.editrules.message.title = New message commands.moderation.editrules.help.description=Edits the rules message.
commands.moderation.editrules.message.description = Please send me the new rules message now. commands.music.bass.error.connected.title=No channel
commands.moderation.editrules.error.title = No rules commands.music.bass.error.connected.description=You have to be in the same voice channel as the bot to change the bass level.
commands.moderation.editrules.error.description = There is nor rules message in this server. Please setup the rules first with %extra%rules commands.music.bass.help.description=Change the bass for the song which is played at the moment.
commands.moderation.editrules.success.title = Successfully changed commands.music.join.success.title=Successfully connected
commands.moderation.editrules.success.description = I successfully changed the rules commands.music.join.success.description=I successfully connected to %extra%.
commands.moderation.editrules.help.description = Edits the rules message. commands.music.join.error.connecting.already.title=Already connected
commands.music.join.error.connecting.already.description=I am already connected to your voice channel
commands.music.bass.error.connected.title = No channel commands.music.join.error.connecting.trying.title=Already trying to connect
commands.music.bass.error.connected.description = You have to be in the same voice channel as the bot to change the bass level. commands.music.join.error.connecting.trying.description=Hadder is already trying to connect. Please wait a moment
commands.music.bass.help.description = Change the bass for the song which is played at the moment. commands.music.join.error.channel.title=No Voice Channel
commands.music.join.success.title = Successfully connected commands.music.join.error.channel.description=You aren't in a Voice Channel.
commands.music.join.success.description = I successfully connected to %extra%. commands.music.join.error.permission.title=No permission
commands.music.join.error.connecting.already.title = Already connected commands.music.join.error.permission.description=I am not allowed to join your voice channel.
commands.music.join.error.connecting.already.description = I am already connected to your voice channel commands.music.join.help.description=Joins your voice channel.
commands.music.join.error.connecting.trying.title = Already trying to connect commands.music.play.load.title=%extra% Now loading %extra%
commands.music.join.error.connecting.trying.description = Hadder is already trying to connect. Please wait a moment commands.music.play.load.description=Trying to load the song...
commands.music.join.error.channel.title = No Voice Channel commands.music.play.success.loading.title=%extra% Now playing %extra%
commands.music.join.error.channel.description = You aren't in a Voice Channel. commands.music.play.success.queueing.title=%extra% Added to queue %extra%
commands.music.join.error.permission.title = No permission commands.music.play.success.title=Title
commands.music.join.error.permission.description = I am not allowed to join your voice channel. commands.music.play.success.author=Author
commands.music.join.help.description = Joins your voice channel. commands.music.play.success.length=Length
commands.music.play.load.title = %extra% Now loading %extra% commands.music.play.success.tracks=Tracks
commands.music.play.load.description = Trying to load the song... commands.music.play.error.load.title=%extra% Load failed %extra%
commands.music.play.success.loading.title = %extra% Now playing %extra% commands.music.play.error.load.description=Unfortunately I can not load the given song
commands.music.play.success.queueing.title = %extra% Added to queue %extra% commands.music.play.error.match.title=%extra% No matches %extra%
commands.music.play.success.title = Title commands.music.play.error.match.description=I can not find a song named this on YouTube
commands.music.play.success.author = Author commands.music.play.success.unpause.title=Successfully continued
commands.music.play.success.length = Length commands.music.play.success.unpause.description=I successfully continued playing the song.
commands.music.play.success.tracks = Tracks commands.music.play.error.connected.title=No channel
commands.music.play.error.load.title = %extra% Load failed %extra% commands.music.play.error.connected.description=You have to be in the same voice channel as the bot to continue the song.
commands.music.play.error.load.description = Unfortunately I can not load the given song commands.music.play.help.description=Plays the specified song.
commands.music.play.error.match.title = %extra% No matches %extra% commands.music.stop.success.title=Successfully stopped
commands.music.play.error.match.description = I can not find a song named this on YouTube commands.music.stop.success.description=I successfully stopped the song.
commands.music.play.success.unpause.title = Successfully continued commands.music.stop.error.connected.title=No channel
commands.music.play.success.unpause.description = I successfully continued playing the song. commands.music.stop.error.connected.description=You have to be in the same voice channel as the bot to stop the song.
commands.music.play.error.connected.title = No channel commands.music.stop.help.description=Stops the song.
commands.music.play.error.connected.description = You have to be in the same voice channel as the bot to continue the song. commands.music.info.success.title=Track info
commands.music.play.help.description = Plays the specified song. commands.music.info.error.title=No playing track
commands.music.stop.success.title = Successfully stopped commands.music.info.error.description=I am not playing anything at the moment
commands.music.stop.success.description = I successfully stopped the song. commands.music.info.help.description=Shows information about the playing song.
commands.music.stop.error.connected.title = No channel commands.music.queue.error.title=No queue
commands.music.stop.error.connected.description = You have to be in the same voice channel as the bot to stop the song. commands.music.queue.error.description=There are no queued songs at the moment
commands.music.stop.help.description = Stops the song. commands.music.queue.success.title=Queue %extra%
commands.music.info.success.title = Track info commands.music.queue.success.description=This is the queue\: \n %extra%
commands.music.info.error.title = No playing track commands.music.queue.help.description=Shows the music queue.
commands.music.info.error.description = I am not playing anything at the moment commands.music.skip.success.title=Successfully skipped
commands.music.info.help.description = Shows information about the playing song. commands.music.skip.success.description=I successfully skipped to the next song
commands.music.queue.error.title = No queue commands.music.skip.error.connected.title=No channel
commands.music.queue.error.description = There are no queued songs at the moment commands.music.skip.error.connected.description=You have to be in the same voice channel as the bot to skip the song.
commands.music.queue.success.title = Queue %extra% commands.music.skip.help.description=Skips the currently playing song.
commands.music.queue.success.description = This is the queue\: \n %extra% commands.music.volume.success.title=Successfully set
commands.music.queue.help.description = Shows the music queue. commands.music.volume.success.description=I successfully set the new volume to %extra%
commands.music.skip.success.title = Successfully skipped commands.music.volume.error.int.title=Invalid number
commands.music.skip.success.description = I successfully skipped to the next song commands.music.volume.error.int.description=The volume have to be between 1 and 200
commands.music.skip.error.connected.title = No channel commands.music.volume.error.connected.title=No channel
commands.music.skip.error.connected.description = You have to be in the same voice channel as the bot to skip the song. commands.music.volume.error.connected.description=You have to be in the same voice channel as the bot to change the volume.
commands.music.skip.help.description = Skips the currently playing song. commands.music.volume.help.description=Change the volume of the music.
commands.music.volume.success.title = Successfully set commands.music.pause.success.title=Successfully paused
commands.music.volume.success.description = I successfully set the new volume to %extra% commands.music.pause.success.description=I successfully paused the played song.
commands.music.volume.error.int.title = Invalid number commands.music.pause.error.paused.title=Already paused
commands.music.volume.error.int.description = The volume have to be between 1 and 200 commands.music.pause.error.paused.description=The song is already paused. You can continue playing it with %extra%play
commands.music.volume.error.connected.title = No channel commands.music.pause.error.connected.title=No channel
commands.music.volume.error.connected.description = You have to be in the same voice channel as the bot to change the volume. commands.music.pause.error.connected.description=You have to be in the same voice channel as the bot to pause the song.
commands.music.volume.help.description = Change the volume of the music. commands.music.pause.help.description=Pause the playing song.
commands.music.pause.success.title = Successfully paused commands.music.loop.success.loop.title=Successfully activated
commands.music.pause.success.description = I successfully paused the played song. commands.music.loop.success.loop.description=I will now repeat the currently played song.
commands.music.pause.error.paused.title = Already paused commands.music.loop.success.unloop.title=Successfully deactivated
commands.music.pause.error.paused.description = The song is already paused. You can continue playing it with %extra%play commands.music.loop.success.unloop.description=I will no longer repeat the currently played song.
commands.music.pause.error.connected.title = No channel commands.music.loop.error.connected.title=No channel
commands.music.pause.error.connected.description = You have to be in the same voice channel as the bot to pause the song. commands.music.loop.error.connected.description=You have to be in the same voice channel as the bot to set the repeat status.
commands.music.pause.help.description = Pause the playing song. commands.music.loop.help.description=Repeats a song/queue.
commands.music.loop.success.loop.title = Successfully activated commands.music.echo.success.title=Successfully activated
commands.music.loop.success.loop.description = I will now repeat the currently played song. commands.music.echo.success.description=I will now repeat everything I can hear in your voice channel
commands.music.loop.success.unloop.title = Successfully deactivated commands.music.echo.help.description=Sends your voice through Hadder.
commands.music.loop.success.unloop.description = I will no longer repeat the currently played song. commands.nsfw.gif.error.title=GIF not showing? Click here
commands.music.loop.error.connected.title = No channel commands.nsfw.img.error.title=Image not showing? Click here
commands.music.loop.error.connected.description = You have to be in the same voice channel as the bot to set the repeat status. commands.nsfw.anal.help.description=Shows a random anal gif.
commands.music.loop.help.description = Repeats a song/queue. commands.nsfw.bdsm.help.description=Shows a random BDSM picture
commands.music.echo.success.title = Successfully activated commands.nsfw.blowjob.help.description=Shows a random Blowjob picture
commands.music.echo.success.description = I will now repeat everything I can hear in your voice channel commands.nsfw.boobs.help.description=Shows a random boob gif.
commands.music.echo.help.description = Sends your voice through Hadder. commands.nsfw.cum.help.description=Shows a random cum gif.
commands.nsfw.erotic.help.description=Shows a random erotic picture
commands.nsfw.gif.error.title = GIF not showing? Click here commands.nsfw.feet.help.description=Shows a random feet gif.
commands.nsfw.img.error.title = Image not showing? Click here commands.nsfw.fingering.help.description=Shows a random fingering gif.
commands.nsfw.anal.help.description = Shows a random anal gif. commands.nsfw.linking.help.description=Shows a random licking gif.
commands.nsfw.bdsm.help.description = Shows a random BDSM picture commands.nsfw.porn.help.description=Shows a random porn gif.
commands.nsfw.blowjob.help.description = Shows a random Blowjob picture commands.nsfw.pussy.help.description=Shows a random pussy gif.
commands.nsfw.boobs.help.description = Shows a random boob gif. commands.nsfw.randomporn.help.description=Shows a completely random porn gif.
commands.nsfw.cum.help.description = Shows a random cum gif. commands.nsfw.solo.help.description=Shows a random solo gif.
commands.nsfw.erotic.help.description = Shows a random erotic picture commands.nsfw.spank.help.description=Shows a random spank gif.
commands.nsfw.feet.help.description = Shows a random feet gif. commands.nsfw.trans.help.description=Shows a random trans picture
commands.nsfw.fingering.help.description = Shows a random fingering gif. commands.owner.eval.success.title=Eval Command
commands.nsfw.linking.help.description = Shows a random licking gif. commands.owner.eval.success.input=Input
commands.nsfw.porn.help.description = Shows a random porn gif. commands.owner.eval.success.output=Output
commands.nsfw.pussy.help.description = Shows a random pussy gif. commands.owner.eval.success.timing=Timing
commands.nsfw.randomporn.help.description = Shows a completely random porn gif. commands.owner.eval.help.description=Execute the given code
commands.nsfw.solo.help.description = Shows a random solo gif. commands.owner.guildleave.success.title=Successfully left
commands.nsfw.spank.help.description = Shows a random spank gif. commands.owner.guildleave.success.description=I successfully left %extra%.
commands.nsfw.trans.help.description = Shows a random trans picture commands.owner.guildleave.error.title=Can not leave
commands.owner.guildleave.error.description=I can not leave from this server. Maybe this isn't a ID?
commands.owner.eval.success.title = Eval Command commands.owner.guildleave.help.description=Quit from a server
commands.owner.eval.success.input = Input commands.owner.reboot.help.description=Restart the bot
commands.owner.eval.success.output = Output commands.owner.shutdown.success.title=Shutdown
commands.owner.eval.success.timing = Timing commands.owner.shutdown.help.description=Shuts the Bot down
commands.owner.eval.help.description = Execute the given code commands.owner.test.success=TEST my friends
commands.owner.guildleave.success.title = Successfully left commands.owner.test.help.description=Just a little Test Command
commands.owner.guildleave.success.description = I successfully left %extra%. commands.owner.blacklist.success.add.title=Successfully blacklisted the specified commands
commands.owner.guildleave.error.title = Can not leave commands.owner.blacklist.success.add.description=I successfully added the following commands from the blacklist\:\n %extra%
commands.owner.guildleave.error.description = I can not leave from this server. Maybe this isn't a ID? commands.owner.blacklist.success.remove.title=Successfully removed the commands from the blacklist
commands.owner.guildleave.help.description = Quit from a server commands.owner.blacklist.success.remove.description=I successfully removed the following commands from the blacklist\:\n %extra%
commands.owner.reboot.help.description = Restart the bot commands.owner.blacklist.help.description=Blacklist a user for specific commands
commands.owner.shutdown.success.title = Shutdown commands.settings.language.success.title=Language set
commands.owner.shutdown.help.description = Shuts the Bot down commands.settings.language.success.description=`%extra%` is your new language now.
commands.owner.test.success = TEST my friends commands.settings.language.error.title=Language not found
commands.owner.test.help.description = Just a little Test Command commands.settings.language.error.description=Please choose one of the following language codes: %extra%
commands.owner.blacklist.success.add.title = Successfully blacklisted the specified commands commands.settings.language.help.description=Sets the new primary language for a user.
commands.owner.blacklist.success.add.description = I successfully added the following commands from the blacklist\:\n %extra% commands.settings.prefix.success.title=Successfully set prefix
commands.owner.blacklist.success.remove.title = Successfully removed the commands from the blacklist commands.settings.prefix.success.description=I successfully set the new prefix for you to `%extra%`.
commands.owner.blacklist.success.remove.description = I successfully removed the following commands from the blacklist\:\n %extra% commands.settings.prefix.help.description=Sets a new prefix.
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.
commands.settings.language.error.title = Language not found
commands.settings.language.error.description = Please choose one of the following language codes: %extra%
commands.settings.language.help.description = Sets the new primary language for a user.
commands.settings.prefix.success.title = Successfully set prefix
commands.settings.prefix.success.description = I successfully set the new prefix for you to `%extra%`.
commands.settings.prefix.help.description = Sets a new prefix.

View file

@ -13,326 +13,316 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
# #
Hadder=Hadder
Hadder = Hadder error=Error
none=None
error = Error success\!=Success\!
none = None commands.fun.avatar.success.title=Avatar of %extra%
success\! = Success\! commands.fun.avatar.error.title=User not found
commands.fun.avatar.error.description=I can not find a user with this id\!
commands.fun.avatar.success.title = Avatar of %extra% commands.fun.avatar.help.description=Sends the avatar of the specified Member.
commands.fun.avatar.error.title = User not found commands.fun.gif.error.description=Please try again with another term.
commands.fun.avatar.error.description = I can not find a user with this id\! commands.fun.gif.help.description=Looks for a GIF on Giphy.
commands.fun.avatar.help.description = Sends the avatar of the specified Member. commands.fun.meme.success.title=Your random meme\:
commands.fun.gif.error.description = Please try again with another term. commands.fun.meme.api.error=The request to the meme API could not be processed. Please try again later.
commands.fun.gif.help.description = Looks for a GIF on Giphy. commands.fun.meme.help.description=Sends you a random meme.
commands.fun.meme.success.title = Your random meme\: commands.fun.clyde.help.description=Sends a message as a webhook named Clyde.
commands.fun.meme.api.error = The request to the meme API could not be processed. Please try again later. commands.general.about.success.title=Hadder - About
commands.fun.meme.help.description = Sends you a random meme. commands.general.about.success.description=Hadder is an open source Discord bot.
commands.fun.clyde.help.description = Sends a message as a webhook named Clyde. commands.general.about.success.field.one.title=Support the developers
commands.general.about.success.field.one.description=Hadder is completely free for everyone. We would appreciate it if you donated some money to us. Click [here]%extra% to donate.
commands.general.about.success.title = Hadder - About commands.general.about.help.description=Shows information about Hadder.
commands.general.about.success.description = Hadder is an open source Discord bot. commands.general.equals.string.first.request=Please send me the first String.
commands.general.about.success.field.one.title = Support the developers commands.general.equals.string.second.request=Please send me the second String.
commands.general.about.success.field.one.description = Hadder is completely free for everyone. We would appreciate it if you donated some money to us. Click [here]%extra% to donate. commands.general.equals.string.equals.true=Yes\! The first string equals the second string\!
commands.general.about.help.description = Shows information about Hadder. commands.general.equals.string.equals.false=Well yes but actually No. This isn't the same.
commands.general.equals.string.first.request = Please send me the first String. commands.general.equals.string.first=First string\:
commands.general.equals.string.second.request = Please send me the second String. commands.general.equals.string.second=Second string\:
commands.general.equals.string.equals.true = Yes\! The first string equals the second string\! commands.general.equals.string.result=Result\:
commands.general.equals.string.equals.false = Well yes but actually No. This isn't the same. commands.general.equals.help.description=Checks if two strings are equal.
commands.general.equals.string.first = First string\: commands.general.help.description=**Description\:**
commands.general.equals.string.second = Second string\: commands.general.help.usage=**Usage\:**
commands.general.equals.string.result = Result\: commands.general.help.example=**Example\:**
commands.general.equals.help.description = Checks if two strings are equal. commands.general.help.error.description=I need the Embed Links Permission to send the Help Menu\!
commands.general.help.description = **Description\:** commands.general.help.help.description=Shows each command and explains its usage.
commands.general.help.usage = **Usage\:** commands.general.help.help.label=[CommandName]
commands.general.help.example = **Example\:** commands.general.invite.success.title=Invite me\!
commands.general.help.error.description = I need the Embed Links Permission to send the Help Menu\! commands.general.invite.success.description=[Invite me here\!]%extra%
commands.general.help.help.description = Shows each command and explains its usage. commands.general.invite.help.description=Shows the invitation link to invite Hadder to your server.
commands.general.help.help.label = [CommandName] commands.general.ping.help.description=Shows the ping to the Discord API.
commands.general.invite.success.title = Invite me\! commands.misc.feedback.title.request.title=Feedback Topic
commands.general.invite.success.description = [Invite me here\!]%extra% commands.misc.feedback.title.request.description=Please send me the feedback topic.
commands.general.invite.help.description = Shows the invitation link to invite Hadder to your server. commands.misc.feedback.description.request.title=Feedback Description
commands.general.ping.help.description = Shows the ping to the Discord API. commands.misc.feedback.description.request.description=Please send me the feedback description now.
commands.misc.feedback.success.title=Feedback successfully sent\!
commands.misc.feedback.title.request.title = Feedback Topic commands.misc.feedback.help.description=Sends feedback directly to the developers.
commands.misc.feedback.title.request.description = Please send me the feedback topic. commands.misc.github.link.title=Link your GitHub Account
commands.misc.feedback.description.request.title = Feedback Description commands.misc.github.success.title=Information about %extra%
commands.misc.feedback.description.request.description = Please send me the feedback description now. commands.misc.github.success.bio=User bio
commands.misc.feedback.success.title = Feedback successfully sent\! commands.misc.github.success.location=Location
commands.misc.feedback.help.description = Sends feedback directly to the developers. commands.misc.github.success.website=Website
commands.misc.github.link.title = Link your GitHub Account commands.misc.github.success.repositories=Public repositories
commands.misc.github.success.title = Information about %extra% commands.misc.github.success.gists=Public gists
commands.misc.github.success.bio = User bio commands.misc.github.success.followers=Followers
commands.misc.github.success.location = Location commands.misc.github.success.following=Following
commands.misc.github.success.website = Website commands.misc.github.api.error.title=API error
commands.misc.github.success.repositories = Public repositories commands.misc.github.api.error.description=The GitHub API might be down at the moment\!
commands.misc.github.success.gists = Public gists commands.misc.github.user.error.title=User doesn't exist
commands.misc.github.success.followers = Followers commands.misc.github.user.error.description=I can not find a user named like this\!
commands.misc.github.success.following = Following commands.misc.github.connect.title=Connect your GH account
commands.misc.github.api.error.title = API error commands.misc.github.connect.description=[Please connect your GitHub account here]%extra%
commands.misc.github.api.error.description = The GitHub API might be down at the moment\! commands.misc.github.help.description=Displays information about a GitHub user profile.
commands.misc.github.user.error.title = User doesn't exist commands.misc.screenshare.success.title=Here's your URL to share your Screen
commands.misc.github.user.error.description = I can not find a user named like this\! commands.misc.screenshare.id.error.title=Wait. That's illegal.
commands.misc.github.connect.title = Connect your GH account commands.misc.screenshare.id.error.description=This ID is invalid. \nMaybe you entered a wrong ID. \n\nNote\: Make sure the Voice Channel is in this Guild.
commands.misc.github.connect.description = [Please connect your GitHub account here]%extra% commands.misc.screenshare.channel.error.title=Please choose a Voice Channel
commands.misc.github.help.description = Displays information about a GitHub user profile. commands.misc.screenshare.channel.error.description=There is more than one channel with this name
commands.misc.screenshare.success.title = Here's your URL to share your Screen commands.misc.screenshare.number.error.title=You specified a wrong number\!
commands.misc.screenshare.id.error.title = Wait. That's illegal. commands.misc.screenshare.number.error.description=This isn't a Number.
commands.misc.screenshare.id.error.description = This ID is invalid. \nMaybe you entered a wrong ID. \n\nNote\: Make sure the Voice Channel is in this Guild. commands.misc.screenshare.channel.existing.error=Hol' up
commands.misc.screenshare.channel.error.title = Please choose a Voice Channel commands.misc.screenshare.channel.existing.description=There is no Voice Channel named like this. \n\nNote\: Make sure the Voice Channel is in this Guild.
commands.misc.screenshare.channel.error.description = There is more than one channel with this name commands.misc.screenshare.help.description=Shows you the link to share your screen.
commands.misc.screenshare.number.error.title = You specified a wrong number\! commands.misc.serverstats.title=Serverstats
commands.misc.screenshare.number.error.description = This isn't a Number. commands.misc.serverstats.description=This message contains some information about `%extra%`
commands.misc.screenshare.channel.existing.error = Hol' up commands.misc.serverstats.help.description=Shows information about a server.
commands.misc.screenshare.channel.existing.description = There is no Voice Channel named like this. \n\nNote\: Make sure the Voice Channel is in this Guild. commands.misc.profile.error.title=Not found
commands.misc.screenshare.help.description = Shows you the link to share your screen. commands.misc.profile.error.description=I can't find the specified user.
commands.misc.serverstats.title = Serverstats commands.misc.profile.help.description=Shows some information about the specified user.
commands.misc.serverstats.description = This message contains some information about `%extra%` commands.misc.code.success.title=Invite code information
commands.misc.serverstats.help.description = Shows information about a server. commands.misc.code.success.description=This message contains some information about the specified invite code.
commands.misc.profile.error.title = Not found commands.misc.code.error.title=Code not found
commands.misc.profile.error.description = I can't find the specified user. commands.misc.code.error.description=I can't find the specified invite code.
commands.misc.profile.help.description = Shows some information about the specified user. commands.misc.code.help.description=Shows information about a invite code.
commands.misc.code.success.title = Invite code information commands.misc.moveall.success.title=Successfully moved
commands.misc.code.success.description = This message contains some information about the specified invite code. commands.misc.moveall.success.description=I successfully moved %extra% members. Have fun\!
commands.misc.code.error.title = Code not found commands.misc.moveall.error.equals.title=Not twice
commands.misc.code.error.description = I can't find the specified invite code. commands.misc.moveall.error.equals.description=The first voice channel equals the second. You have to specify two different voice channels.
commands.misc.code.help.description = Shows information about a invite code. commands.misc.moveall.error.source.int.title=Invalid ID
commands.misc.moveall.success.title = Successfully moved commands.misc.moveall.error.source.int.description=You haven't specified an ID as the source channel.
commands.misc.moveall.success.description = I successfully moved %extra% members. Have fun\! commands.misc.moveall.error.target.int.title=Invalid ID
commands.misc.moveall.error.equals.title = Not twice commands.misc.moveall.error.target.int.description=You haven't specified an ID as the target channel.
commands.misc.moveall.error.equals.description = The first voice channel equals the second. You have to specify two different voice channels. commands.misc.moveall.help.description=Moves all users in the source channel to the target channel.
commands.misc.moveall.error.source.int.title = Invalid ID commands.misc.corona.help.description=Shows the newest stats of COVID-19
commands.misc.moveall.error.source.int.description = You haven't specified an ID as the source channel. commands.moderation.ban.success.title=Successfully banned
commands.misc.moveall.error.target.int.title = Invalid ID commands.moderation.ban.success.description=I successfully baned %extra%
commands.misc.moveall.error.target.int.description = You haven't specified an ID as the target channel. commands.moderation.ban.error.title=Not possible
commands.misc.moveall.help.description = Moves all users in the source channel to the target channel. commands.moderation.ban.myself.error.description=I can not ban myself\!
commands.misc.corona.help.description = Shows the newest stats of COVID-19 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.success.title = Successfully banned commands.moderation.ban.help.description=Bans one or more users from the server.
commands.moderation.ban.success.description = I successfully baned %extra% commands.moderation.clear.all.success.title=Successfully deleted
commands.moderation.ban.error.title = Not possible commands.moderation.clear.all.success.description=I successfully deleted %extra% messages.
commands.moderation.ban.myself.error.description = I can not ban myself\! commands.moderation.clear.number.error.title=Invalid number
commands.moderation.ban.yourself.error.description = You can not ban yourself\! commands.moderation.clear.number.error.description=You have to choose a number between 1 and 99\!
commands.moderation.ban.massban.success.description = I successfully banned %extra% members\! commands.moderation.clear.success.title=Successfully cleared
commands.moderation.ban.help.description = Bans one or more users from the server. commands.moderation.clear.success.description.singular=Successfully deleted one message.
commands.moderation.clear.all.success.title = Successfully deleted commands.moderation.clear.success.description.plural=Successfully deleted %extra% messages.
commands.moderation.clear.all.success.description = I successfully deleted %extra% messages. commands.moderation.clear.message.error.title=No messages\!
commands.moderation.clear.number.error.title = Invalid number commands.moderation.clear.message.error.description=There are no messages in this channel.
commands.moderation.clear.number.error.description = You have to choose a number between 1 and 99\! commands.moderation.clear.help.description=Deletes the specified number of messages.
commands.moderation.clear.success.title = Successfully cleared commands.moderation.prefix.success.title=%extra% Successfully set %extra%
commands.moderation.clear.success.description.singular = Successfully deleted one message. commands.moderation.prefix.success.description=I successfully set the new prefix for the server to `%extra%`.
commands.moderation.clear.success.description.plural = Successfully deleted %extra% messages. commands.moderation.prefix.error.description=The prefix must not contain **"**
commands.moderation.clear.message.error.title = No messages\! commands.moderation.prefix.help.description=Sets the Guild-Prefix.
commands.moderation.clear.message.error.description = There are no messages in this channel. commands.moderation.invitedetect.activate.success.title=Successfully activated
commands.moderation.clear.help.description = Deletes the specified number of messages. commands.moderation.invitedetect.activate.success.description=I successfully activated the invite link detection for this server.
commands.moderation.prefix.success.title = %extra% Successfully set %extra% commands.moderation.invitedetect.activate.error.title=Already activated
commands.moderation.prefix.success.description = I successfully set the new prefix for the server to `%extra%`. commands.moderation.invitedetect.activate.error.description=The invite link detection is already activated on this server.
commands.moderation.prefix.error.description = The prefix must not contain **"** commands.moderation.invitedetect.deactivate.success.title=Successfully deactivated
commands.moderation.prefix.help.description = Sets the Guild-Prefix. commands.moderation.invitedetect.deactivate.success.description=I successfully deactivated the invite link detection for this server.
commands.moderation.invitedetect.activate.success.title = Successfully activated commands.moderation.invitedetect.deactivate.error.title=Already deactivated
commands.moderation.invitedetect.activate.success.description = I successfully activated the invite link detection for this server. commands.moderation.invitedetect.deactivate.error.description=The invite link detection is already deactivated on this server.
commands.moderation.invitedetect.activate.error.title = Already activated commands.moderation.invitedetect.help.description=Activate or deactivate the Discord invite link detection.
commands.moderation.invitedetect.activate.error.description = The invite link detection is already activated on this server. commands.moderation.kick.success.title=%extra% Successfully kicked %extra%
commands.moderation.invitedetect.deactivate.success.title = Successfully deactivated commands.moderation.kick.success.description=I successfully kicked %extra%.
commands.moderation.invitedetect.deactivate.success.description = I successfully deactivated the invite link detection for this server. commands.moderation.kick.error.title=Not possible
commands.moderation.invitedetect.deactivate.error.title = Already deactivated commands.moderation.kick.myself.error.description=I can not kick myself\!
commands.moderation.invitedetect.deactivate.error.description = The invite link detection is already deactivated on this server. commands.moderation.kick.yourself.error.description=You can't kick yourself.
commands.moderation.invitedetect.help.description = Activate or deactivate the Discord invite link detection. commands.moderation.kick.mass.success.description=I successfully kicked %extra% Members\!
commands.moderation.kick.success.title = %extra% Successfully kicked %extra% commands.moderation.kick.help.description=Kicks one or more user from the server.
commands.moderation.kick.success.description = I successfully kicked %extra%. commands.moderation.kick.masskick.success.description=I successfully kicked %extra% members.
commands.moderation.kick.error.title = Not possible commands.moderation.nick.success.title=%extra% Successfully nicked %extra%
commands.moderation.kick.myself.error.description = I can not kick myself\! commands.moderation.nick.success.description=I successfully nicked %extra%.
commands.moderation.kick.yourself.error.description = You can't kick yourself. commands.moderation.nick.myself.success.description=I successfully changed my nickname.
commands.moderation.kick.mass.success.description = I successfully kicked %extra% Members\! commands.moderation.nick.massnick.success.description=I successfully nicked %extra% Members.
commands.moderation.kick.help.description = Kicks one or more user from the server. commands.moderation.nick.help.description=Rename a one or more user.
commands.moderation.kick.masskick.success.description = I successfully kicked %extra% members. commands.moderation.regionchange.regions.title=All regions
commands.moderation.nick.success.title = %extra% Successfully nicked %extra% commands.moderation.regionchange.success.title=Successfully set region
commands.moderation.nick.success.description = I successfully nicked %extra%. commands.moderation.regionchange.success.description=I successfully set the new server region to %extra%.
commands.moderation.nick.myself.success.description = I successfully changed my nickname. commands.moderation.regionchange.help.description=Changes the server region to locked regions.
commands.moderation.nick.massnick.success.description = I successfully nicked %extra% Members. commands.moderation.role.add.success.title=Successfully added role(s)
commands.moderation.nick.help.description = Rename a one or more user. commands.moderation.role.add.success.description=I successfully added %extra% roles to %extra_two% members.
commands.moderation.regionchange.regions.title = All regions commands.moderation.role.remove.success.title=Successfully removed role(s)
commands.moderation.regionchange.success.title = Successfully set region commands.moderation.role.remove.success.description=I successfully removed %extra% roles from %extra_two% members.
commands.moderation.regionchange.success.description = I successfully set the new server region to %extra%. commands.moderation.role.help.description=Adds and removes one or more role(s) from one or more user(s)
commands.moderation.regionchange.help.description = Changes the server region to locked regions. commands.moderation.rules.setup.title=Set up rules
commands.moderation.role.add.success.title = Successfully added role(s) 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.
commands.moderation.role.add.success.description = I successfully added %extra% roles to %extra_two% members. commands.moderation.rules.channel.error.title=Channel not found
commands.moderation.role.remove.success.title = Successfully removed role(s) commands.moderation.rules.channel.error.description=I can't find the specified channel. Please start the setup again.
commands.moderation.role.remove.success.description = I successfully removed %extra% roles from %extra_two% members. commands.moderation.rules.rules.title=Rules message
commands.moderation.role.help.description = Adds and removes one or more role(s) from one or more user(s) commands.moderation.rules.rules.description=The channel was successfully set to %extra%. Please send me the rules now.
commands.moderation.rules.setup.title = Set up rules commands.moderation.rules.role.title=Role to assign/remove
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. commands.moderation.rules.role.description=The rules were successfully set. Please send me the name of the role which the user receives/loses after he accepted the rules.
commands.moderation.rules.channel.error.title = Channel not found commands.moderation.rules.role.error.title=Role does not exist
commands.moderation.rules.channel.error.description = I can't find the specified channel. Please start the setup again. commands.moderation.rules.role.error.description=The specified role does not exist on this server.
commands.moderation.rules.rules.title = Rules message commands.moderation.rules.role.permission.error.title=No permission
commands.moderation.rules.rules.description = The channel was successfully set to %extra%. Please send me the rules now. commands.moderation.rules.role.permission.error.description=You cannot select this role because you cannot interact with it.
commands.moderation.rules.role.title = Role to assign/remove commands.moderation.rules.guild.error.title=Wrong Guild
commands.moderation.rules.role.description = The rules were successfully set. Please send me the name of the role which the user receives/loses after he accepted the rules. commands.moderation.rules.guild.error.description=The mentioned channel must be on this server\!
commands.moderation.rules.role.error.title = Role does not exist commands.moderation.rules.emote.accept.title=Custom Accept Emote
commands.moderation.rules.role.error.description = The specified role does not exist on this server. commands.moderation.rules.emote.accept.description=The role has been successfully set to %extra%. Now send me the emote on which your user should react to to get verified.
commands.moderation.rules.role.permission.error.title = No permission commands.moderation.rules.emote.decline.title=Custom Decline Emote
commands.moderation.rules.role.permission.error.description = You cannot select this role because you cannot interact with it. commands.moderation.rules.emote.decline.description=The first emote has been successfully set to %extra%. Please send me now the decline emote.
commands.moderation.rules.guild.error.title = Wrong Guild commands.moderation.rules.emote.error.access.description=I can not access the custom emote(s).
commands.moderation.rules.guild.error.description = The mentioned channel must be on this server\! commands.moderation.rules.emote.error.equal.title=Emotes are equal
commands.moderation.rules.emote.accept.title = Custom Accept Emote commands.moderation.rules.emote.error.equal.description=The 1st and 2nd emote equals each other.
commands.moderation.rules.emote.accept.description = The role has been successfully set to %extra%. Now send me the emote on which your user should react to to get verified. commands.moderation.rules.emoji.decline.description=The first emote has been successfully set. Please send me now the decline emote.
commands.moderation.rules.emote.decline.title = Custom Decline Emote commands.moderation.rules.emoji.error.description=The given emote can't be used.
commands.moderation.rules.emote.decline.description = The first emote has been successfully set to %extra%. Please send me now the decline emote. commands.moderation.rules.success.title=Successfully set the rules
commands.moderation.rules.emote.error.access.description = I can not access the custom emote(s). commands.moderation.rules.success.description=I successfully send the rules in %extra%.
commands.moderation.rules.emote.error.equal.title = Emotes are equal commands.moderation.rules.error.message.title=Can't write messages
commands.moderation.rules.emote.error.equal.description = The 1st and 2nd emote equals each other. commands.moderation.rules.error.message.description=I can not write messages in the specified channel
commands.moderation.rules.emoji.decline.description = The first emote has been successfully set. Please send me now the decline emote. commands.moderation.rules.error.permission.title=No permission
commands.moderation.rules.emoji.error.description = The given emote can't be used. commands.moderation.rules.error.permission.description=To execute this command, I need the `MANAGE_ROLES` permission.
commands.moderation.rules.success.title = Successfully set the rules commands.moderation.rules.error.interact.title=Can't interact
commands.moderation.rules.success.description = I successfully send the rules in %extra%. commands.moderation.rules.error.interact.description=I can not interact with the specified role. Make sure my role is higher than the specified role.
commands.moderation.rules.error.message.title = Can't write messages commands.moderation.rules.help.description=Setup the rules on your Discord server
commands.moderation.rules.error.message.description = I can not write messages in the specified channel commands.moderation.starboard.success.title=Successfully set the Channel\!
commands.moderation.rules.error.permission.title = No permission commands.moderation.starboard.help.description=Sets the starboard channel.
commands.moderation.rules.error.permission.description = To execute this command, I need the `MANAGE_ROLES` permission. commands.moderation.editrules.channel.title=Rules channel
commands.moderation.rules.error.interact.title = Can't interact commands.moderation.editrules.channel.description=Please send me the channel with the rules as mention
commands.moderation.rules.error.interact.description = I can not interact with the specified role. Make sure my role is higher than the specified role. commands.moderation.editrules.channel.found.error.title=Channel not found
commands.moderation.rules.help.description = Setup the rules on your Discord server commands.moderation.editrules.channel.found.error.description=I can't find the specified channel. Please start the edit process again.
commands.moderation.starboard.success.title = Successfully set the Channel\! commands.moderation.editrules.channel.message.error.title=No rules message
commands.moderation.starboard.help.description = Sets the starboard channel. commands.moderation.editrules.channel.message.error.description=I can not find the rules message in the specified channel.
commands.moderation.editrules.channel.title = Rules channel commands.moderation.editrules.message.title=New message
commands.moderation.editrules.channel.description = Please send me the channel with the rules as mention commands.moderation.editrules.message.description=Please send me the new rules message now.
commands.moderation.editrules.channel.found.error.title = Channel not found commands.moderation.editrules.error.title=No rules
commands.moderation.editrules.channel.found.error.description = I can't find the specified channel. Please start the edit process again. commands.moderation.editrules.error.description=There is nor rules message in this server. Please setup the rules first with %extra%rules
commands.moderation.editrules.channel.message.error.title = No rules message commands.moderation.editrules.success.title=Successfully changed
commands.moderation.editrules.channel.message.error.description = I can not find the rules message in the specified channel. commands.moderation.editrules.success.description=I successfully changed the rules
commands.moderation.editrules.message.title = New message commands.moderation.editrules.help.description=Edits the rules message.
commands.moderation.editrules.message.description = Please send me the new rules message now. commands.music.bass.error.connected.title=No channel
commands.moderation.editrules.error.title = No rules commands.music.bass.error.connected.description=You have to be in the same voice channel as the bot to change the bass level.
commands.moderation.editrules.error.description = There is nor rules message in this server. Please setup the rules first with %extra%rules commands.music.bass.help.description=Change the bass for the song which is played at the moment.
commands.moderation.editrules.success.title = Successfully changed commands.music.join.success.title=Successfully connected
commands.moderation.editrules.success.description = I successfully changed the rules commands.music.join.success.description=I successfully connected to %extra%.
commands.moderation.editrules.help.description = Edits the rules message. commands.music.join.error.connecting.already.title=Already connected
commands.music.join.error.connecting.already.description=I am already connected to your voice channel
commands.music.bass.error.connected.title = No channel commands.music.join.error.connecting.trying.title=Already trying to connect
commands.music.bass.error.connected.description = You have to be in the same voice channel as the bot to change the bass level. commands.music.join.error.connecting.trying.description=Hadder is already trying to connect. Please wait a moment
commands.music.bass.help.description = Change the bass for the song which is played at the moment. commands.music.join.error.channel.title=No Voice Channel
commands.music.join.success.title = Successfully connected commands.music.join.error.channel.description=You aren't in a Voice Channel.
commands.music.join.success.description = I successfully connected to %extra%. commands.music.join.error.permission.title=No permission
commands.music.join.error.connecting.already.title = Already connected commands.music.join.error.permission.description=I am not allowed to join your voice channel.
commands.music.join.error.connecting.already.description = I am already connected to your voice channel commands.music.join.help.description=Joins your voice channel.
commands.music.join.error.connecting.trying.title = Already trying to connect commands.music.leave.success.title=Successfully disconnected
commands.music.join.error.connecting.trying.description = Hadder is already trying to connect. Please wait a moment commands.music.leave.success.description=I successfully disconnected from the Voice Channel
commands.music.join.error.channel.title = No Voice Channel commands.music.leave.error.channel.title=No channel
commands.music.join.error.channel.description = You aren't in a Voice Channel. commands.music.leave.error.channel.description=You have to be in the same voice channel as the bot.
commands.music.join.error.permission.title = No permission commands.music.leave.error.connected.tile=Not connected
commands.music.join.error.permission.description = I am not allowed to join your voice channel. commands.music.leave.error.connected.description=I'm currently in no Voice Channel on this Guild
commands.music.join.help.description = Joins your voice channel. commands.music.leave.help.description=Leaves your voice channel.
commands.music.leave.success.title = Successfully disconnected commands.music.play.load.title=%extra% Now loading %extra%
commands.music.leave.success.description = I successfully disconnected from the Voice Channel commands.music.play.load.description=Trying to load the song...
commands.music.leave.error.channel.title = No channel commands.music.play.success.loading.title=%extra% Now playing %extra%
commands.music.leave.error.channel.description = You have to be in the same voice channel as the bot. commands.music.play.success.queueing.title=%extra% Added to queue %extra%
commands.music.leave.error.connected.tile = Not connected commands.music.play.success.title=Title
commands.music.leave.error.connected.description = I'm currently in no Voice Channel on this Guild commands.music.play.success.author=Author
commands.music.leave.help.description = Leaves your voice channel. commands.music.play.success.length=Length
commands.music.play.load.title = %extra% Now loading %extra% commands.music.play.success.tracks=Tracks
commands.music.play.load.description = Trying to load the song... commands.music.play.error.load.title=%extra% Load failed %extra%
commands.music.play.success.loading.title = %extra% Now playing %extra% commands.music.play.error.load.description=Unfortunately I can not load the given song
commands.music.play.success.queueing.title = %extra% Added to queue %extra% commands.music.play.error.match.title=%extra% No matches %extra%
commands.music.play.success.title = Title commands.music.play.error.match.description=I can not find a song named this on YouTube
commands.music.play.success.author = Author commands.music.play.success.unpause.title=Successfully continued
commands.music.play.success.length = Length commands.music.play.success.unpause.description=I successfully continued playing the song.
commands.music.play.success.tracks = Tracks commands.music.play.error.connected.title=No channel
commands.music.play.error.load.title = %extra% Load failed %extra% commands.music.play.error.connected.description=You have to be in the same voice channel as the bot to continue the song.
commands.music.play.error.load.description = Unfortunately I can not load the given song commands.music.play.help.description=Plays the specified song.
commands.music.play.error.match.title = %extra% No matches %extra% commands.music.stop.success.title=Successfully stopped
commands.music.play.error.match.description = I can not find a song named this on YouTube commands.music.stop.success.description=I successfully stopped the song.
commands.music.play.success.unpause.title = Successfully continued commands.music.stop.error.connected.title=No channel
commands.music.play.success.unpause.description = I successfully continued playing the song. commands.music.stop.error.connected.description=You have to be in the same voice channel as the bot to stop the song.
commands.music.play.error.connected.title = No channel commands.music.stop.help.description=Stops the song.
commands.music.play.error.connected.description = You have to be in the same voice channel as the bot to continue the song. commands.music.info.success.title=Track info
commands.music.play.help.description = Plays the specified song. commands.music.info.error.title=No playing track
commands.music.stop.success.title = Successfully stopped commands.music.info.error.description=I am not playing anything at the moment
commands.music.stop.success.description = I successfully stopped the song. commands.music.info.help.description=Shows information about the playing song.
commands.music.stop.error.connected.title = No channel commands.music.queue.error.title=No queue
commands.music.stop.error.connected.description = You have to be in the same voice channel as the bot to stop the song. commands.music.queue.error.description=There are no queued songs at the moment
commands.music.stop.help.description = Stops the song. commands.music.queue.success.title=Queue %extra%
commands.music.info.success.title = Track info commands.music.queue.success.description=This is the queue\: \n %extra%
commands.music.info.error.title = No playing track commands.music.queue.help.description=Shows the music queue.
commands.music.info.error.description = I am not playing anything at the moment commands.music.skip.success.title=Successfully skipped
commands.music.info.help.description = Shows information about the playing song. commands.music.skip.success.description=I successfully skipped to the next song
commands.music.queue.error.title = No queue commands.music.skip.error.connected.title=No channel
commands.music.queue.error.description = There are no queued songs at the moment commands.music.skip.error.connected.description=You have to be in the same voice channel as the bot to skip the song.
commands.music.queue.success.title = Queue %extra% commands.music.skip.help.description=Skips the currently playing song.
commands.music.queue.success.description = This is the queue\: \n %extra% commands.music.volume.success.title=Successfully set
commands.music.queue.help.description = Shows the music queue. commands.music.volume.success.description=I successfully set the new volume to %extra%
commands.music.skip.success.title = Successfully skipped commands.music.volume.error.int.title=Invalid number
commands.music.skip.success.description = I successfully skipped to the next song commands.music.volume.error.int.description=The volume have to be between 1 and 200
commands.music.skip.error.connected.title = No channel commands.music.volume.error.connected.title=No channel
commands.music.skip.error.connected.description = You have to be in the same voice channel as the bot to skip the song. commands.music.volume.error.connected.description=You have to be in the same voice channel as the bot to change the volume.
commands.music.skip.help.description = Skips the currently playing song. commands.music.volume.help.description=Change the volume of the music.
commands.music.volume.success.title = Successfully set commands.music.pause.success.title=Successfully paused
commands.music.volume.success.description = I successfully set the new volume to %extra% commands.music.pause.success.description=I successfully paused the played song.
commands.music.volume.error.int.title = Invalid number commands.music.pause.error.paused.title=Already paused
commands.music.volume.error.int.description = The volume have to be between 1 and 200 commands.music.pause.error.paused.description=The song is already paused. You can continue playing it with %extra%play
commands.music.volume.error.connected.title = No channel commands.music.pause.error.connected.title=No channel
commands.music.volume.error.connected.description = You have to be in the same voice channel as the bot to change the volume. commands.music.pause.error.connected.description=You have to be in the same voice channel as the bot to pause the song.
commands.music.volume.help.description = Change the volume of the music. commands.music.pause.help.description=Pause the playing song.
commands.music.pause.success.title = Successfully paused commands.music.loop.success.loop.title=Successfully activated
commands.music.pause.success.description = I successfully paused the played song. commands.music.loop.success.loop.description=I will now repeat the currently played song.
commands.music.pause.error.paused.title = Already paused commands.music.loop.success.unloop.title=Successfully deactivated
commands.music.pause.error.paused.description = The song is already paused. You can continue playing it with %extra%play commands.music.loop.success.unloop.description=I will no longer repeat the currently played song.
commands.music.pause.error.connected.title = No channel commands.music.loop.error.connected.title=No channel
commands.music.pause.error.connected.description = You have to be in the same voice channel as the bot to pause the song. commands.music.loop.error.connected.description=You have to be in the same voice channel as the bot to set the repeat status.
commands.music.pause.help.description = Pause the playing song. commands.music.loop.help.description=Repeats a song/queue.
commands.music.loop.success.loop.title = Successfully activated commands.music.echo.success.title=Successfully activated
commands.music.loop.success.loop.description = I will now repeat the currently played song. commands.music.echo.success.description=I will now repeat everything I can hear in your voice channel
commands.music.loop.success.unloop.title = Successfully deactivated commands.music.echo.help.description=Sends your voice through Hadder.
commands.music.loop.success.unloop.description = I will no longer repeat the currently played song. commands.nsfw.gif.error.title=GIF not showing? Click here
commands.music.loop.error.connected.title = No channel commands.nsfw.img.error.title=Image not showing? Click here
commands.music.loop.error.connected.description = You have to be in the same voice channel as the bot to set the repeat status. commands.nsfw.anal.help.description=Shows a random anal gif.
commands.music.loop.help.description = Repeats a song/queue. commands.nsfw.bdsm.help.description=Shows a random BDSM picture
commands.music.echo.success.title = Successfully activated commands.nsfw.blowjob.help.description=Shows a random Blowjob picture
commands.music.echo.success.description = I will now repeat everything I can hear in your voice channel commands.nsfw.boobs.help.description=Shows a random boob gif.
commands.music.echo.help.description = Sends your voice through Hadder. commands.nsfw.cum.help.description=Shows a random cum gif.
commands.nsfw.erotic.help.description=Shows a random erotic picture
commands.nsfw.gif.error.title = GIF not showing? Click here commands.nsfw.feet.help.description=Shows a random feet gif.
commands.nsfw.img.error.title = Image not showing? Click here commands.nsfw.fingering.help.description=Shows a random fingering gif.
commands.nsfw.anal.help.description = Shows a random anal gif. commands.nsfw.linking.help.description=Shows a random licking gif.
commands.nsfw.bdsm.help.description = Shows a random BDSM picture commands.nsfw.porn.help.description=Shows a random porn gif.
commands.nsfw.blowjob.help.description = Shows a random Blowjob picture commands.nsfw.pussy.help.description=Shows a random pussy gif.
commands.nsfw.boobs.help.description = Shows a random boob gif. commands.nsfw.randomporn.help.description=Shows a completely random porn gif.
commands.nsfw.cum.help.description = Shows a random cum gif. commands.nsfw.solo.help.description=Shows a random solo gif.
commands.nsfw.erotic.help.description = Shows a random erotic picture commands.nsfw.spank.help.description=Shows a random spank gif.
commands.nsfw.feet.help.description = Shows a random feet gif. commands.nsfw.trans.help.description=Shows a random trans picture
commands.nsfw.fingering.help.description = Shows a random fingering gif. commands.owner.eval.success.title=Eval Command
commands.nsfw.linking.help.description = Shows a random licking gif. commands.owner.eval.success.input=Input
commands.nsfw.porn.help.description = Shows a random porn gif. commands.owner.eval.success.output=Output
commands.nsfw.pussy.help.description = Shows a random pussy gif. commands.owner.eval.success.timing=Timing
commands.nsfw.randomporn.help.description = Shows a completely random porn gif. commands.owner.eval.help.description=Execute the given code
commands.nsfw.solo.help.description = Shows a random solo gif. commands.owner.guildleave.success.title=Successfully left
commands.nsfw.spank.help.description = Shows a random spank gif. commands.owner.guildleave.success.description=I successfully left %extra%.
commands.nsfw.trans.help.description = Shows a random trans picture commands.owner.guildleave.error.title=Can not leave
commands.owner.guildleave.error.description=I can not leave from this server. Maybe this isn't a ID?
commands.owner.eval.success.title = Eval Command commands.owner.guildleave.help.description=Quit from a server
commands.owner.eval.success.input = Input commands.owner.reboot.help.description=Restart the bot
commands.owner.eval.success.output = Output commands.owner.shutdown.success.title=Shutdown
commands.owner.eval.success.timing = Timing commands.owner.shutdown.help.description=Shuts the Bot down
commands.owner.eval.help.description = Execute the given code commands.owner.test.success=TEST my friends
commands.owner.guildleave.success.title = Successfully left commands.owner.test.help.description=Just a little Test Command
commands.owner.guildleave.success.description = I successfully left %extra%. commands.owner.blacklist.success.add.title=Successfully blacklisted the specified commands
commands.owner.guildleave.error.title = Can not leave commands.owner.blacklist.success.add.description=I successfully added the following commands from the blacklist\:\n %extra%
commands.owner.guildleave.error.description = I can not leave from this server. Maybe this isn't a ID? commands.owner.blacklist.success.remove.title=Successfully removed the commands from the blacklist
commands.owner.guildleave.help.description = Quit from a server commands.owner.blacklist.success.remove.description=I successfully removed the following commands from the blacklist\:\n %extra%
commands.owner.reboot.help.description = Restart the bot commands.owner.blacklist.help.description=Blacklist a user for specific commands
commands.owner.shutdown.success.title = Shutdown commands.settings.language.success.title=Language set
commands.owner.shutdown.help.description = Shuts the Bot down commands.settings.language.success.description=`%extra%` is your new language now.
commands.owner.test.success = TEST my friends commands.settings.language.help.description=Sets the new primary language for a user.
commands.owner.test.help.description = Just a little Test Command commands.settings.prefix.success.title=Successfully set prefix
commands.owner.blacklist.success.add.title = Successfully blacklisted the specified commands commands.settings.prefix.success.description=I successfully set the new prefix for you to `%extra%`.
commands.owner.blacklist.success.add.description = I successfully added the following commands from the blacklist\:\n %extra% commands.settings.prefix.help.description=Sets a new prefix.
commands.owner.blacklist.success.remove.title = Successfully removed the commands from the blacklist
commands.owner.blacklist.success.remove.description = I successfully removed the following commands from the blacklist\:\n %extra%
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.
commands.settings.language.help.description = Sets the new primary language for a user.
commands.settings.prefix.success.title = Successfully set prefix
commands.settings.prefix.success.description = I successfully set the new prefix for you to `%extra%`.
commands.settings.prefix.help.description = Sets a new prefix.

View file

@ -13,326 +13,316 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
# #
Hadder=Hadder
Hadder = Hadder error=Error
none=None
error = Error success\!=Success\!
none = None commands.fun.avatar.success.title=Avatar of %extra%
success\! = Success\! commands.fun.avatar.error.title=User not found
commands.fun.avatar.error.description=I can not find a user with this id\!
commands.fun.avatar.success.title = Avatar of %extra% commands.fun.avatar.help.description=Sends the avatar of the specified Member.
commands.fun.avatar.error.title = User not found commands.fun.gif.error.description=Please try again with another term.
commands.fun.avatar.error.description = I can not find a user with this id\! commands.fun.gif.help.description=Looks for a GIF on Giphy.
commands.fun.avatar.help.description = Sends the avatar of the specified Member. commands.fun.meme.success.title=Your random meme\:
commands.fun.gif.error.description = Please try again with another term. commands.fun.meme.api.error=The request to the meme API could not be processed. Please try again later.
commands.fun.gif.help.description = Looks for a GIF on Giphy. commands.fun.meme.help.description=Sends you a random meme.
commands.fun.meme.success.title = Your random meme\: commands.fun.clyde.help.description=Sends a message as a webhook named Clyde.
commands.fun.meme.api.error = The request to the meme API could not be processed. Please try again later. commands.general.about.success.title=Hadder - About
commands.fun.meme.help.description = Sends you a random meme. commands.general.about.success.description=Hadder is an open source Discord bot.
commands.fun.clyde.help.description = Sends a message as a webhook named Clyde. commands.general.about.success.field.one.title=Support the developers
commands.general.about.success.field.one.description=Hadder is completely free for everyone. We would appreciate it if you donated some money to us. Click [here]%extra% to donate.
commands.general.about.success.title = Hadder - About commands.general.about.help.description=Shows information about Hadder.
commands.general.about.success.description = Hadder is an open source Discord bot. commands.general.equals.string.first.request=Please send me the first String.
commands.general.about.success.field.one.title = Support the developers commands.general.equals.string.second.request=Please send me the second String.
commands.general.about.success.field.one.description = Hadder is completely free for everyone. We would appreciate it if you donated some money to us. Click [here]%extra% to donate. commands.general.equals.string.equals.true=Yes\! The first string equals the second string\!
commands.general.about.help.description = Shows information about Hadder. commands.general.equals.string.equals.false=Well yes but actually No. This isn't the same.
commands.general.equals.string.first.request = Please send me the first String. commands.general.equals.string.first=First string\:
commands.general.equals.string.second.request = Please send me the second String. commands.general.equals.string.second=Second string\:
commands.general.equals.string.equals.true = Yes\! The first string equals the second string\! commands.general.equals.string.result=Result\:
commands.general.equals.string.equals.false = Well yes but actually No. This isn't the same. commands.general.equals.help.description=Checks if two strings are equal.
commands.general.equals.string.first = First string\: commands.general.help.description=**Description\:**
commands.general.equals.string.second = Second string\: commands.general.help.usage=**Usage\:**
commands.general.equals.string.result = Result\: commands.general.help.example=**Example\:**
commands.general.equals.help.description = Checks if two strings are equal. commands.general.help.error.description=I need the Embed Links Permission to send the Help Menu\!
commands.general.help.description = **Description\:** commands.general.help.help.description=Shows each command and explains its usage.
commands.general.help.usage = **Usage\:** commands.general.help.help.label=[CommandName]
commands.general.help.example = **Example\:** commands.general.invite.success.title=Invite me\!
commands.general.help.error.description = I need the Embed Links Permission to send the Help Menu\! commands.general.invite.success.description=[Invite me here\!]%extra%
commands.general.help.help.description = Shows each command and explains its usage. commands.general.invite.help.description=Shows the invitation link to invite Hadder to your server.
commands.general.help.help.label = [CommandName] commands.general.ping.help.description=Shows the ping to the Discord API.
commands.general.invite.success.title = Invite me\! commands.misc.feedback.title.request.title=Feedback Topic
commands.general.invite.success.description = [Invite me here\!]%extra% commands.misc.feedback.title.request.description=Please send me the feedback topic.
commands.general.invite.help.description = Shows the invitation link to invite Hadder to your server. commands.misc.feedback.description.request.title=Feedback Description
commands.general.ping.help.description = Shows the ping to the Discord API. commands.misc.feedback.description.request.description=Please send me the feedback description now.
commands.misc.feedback.success.title=Feedback successfully sent\!
commands.misc.feedback.title.request.title = Feedback Topic commands.misc.feedback.help.description=Sends feedback directly to the developers.
commands.misc.feedback.title.request.description = Please send me the feedback topic. commands.misc.github.link.title=Link your GitHub Account
commands.misc.feedback.description.request.title = Feedback Description commands.misc.github.success.title=Information about %extra%
commands.misc.feedback.description.request.description = Please send me the feedback description now. commands.misc.github.success.bio=User bio
commands.misc.feedback.success.title = Feedback successfully sent\! commands.misc.github.success.location=Location
commands.misc.feedback.help.description = Sends feedback directly to the developers. commands.misc.github.success.website=Website
commands.misc.github.link.title = Link your GitHub Account commands.misc.github.success.repositories=Public repositories
commands.misc.github.success.title = Information about %extra% commands.misc.github.success.gists=Public gists
commands.misc.github.success.bio = User bio commands.misc.github.success.followers=Followers
commands.misc.github.success.location = Location commands.misc.github.success.following=Following
commands.misc.github.success.website = Website commands.misc.github.api.error.title=API error
commands.misc.github.success.repositories = Public repositories commands.misc.github.api.error.description=The GitHub API might be down at the moment\!
commands.misc.github.success.gists = Public gists commands.misc.github.user.error.title=User doesn't exist
commands.misc.github.success.followers = Followers commands.misc.github.user.error.description=I can not find a user named like this\!
commands.misc.github.success.following = Following commands.misc.github.connect.title=Connect your GH account
commands.misc.github.api.error.title = API error commands.misc.github.connect.description=[Please connect your GitHub account here]%extra%
commands.misc.github.api.error.description = The GitHub API might be down at the moment\! commands.misc.github.help.description=Displays information about a GitHub user profile.
commands.misc.github.user.error.title = User doesn't exist commands.misc.screenshare.success.title=Here's your URL to share your Screen
commands.misc.github.user.error.description = I can not find a user named like this\! commands.misc.screenshare.id.error.title=Wait. That's illegal.
commands.misc.github.connect.title = Connect your GH account commands.misc.screenshare.id.error.description=This ID is invalid. \nMaybe you entered a wrong ID. \n\nNote\: Make sure the Voice Channel is in this Guild.
commands.misc.github.connect.description = [Please connect your GitHub account here]%extra% commands.misc.screenshare.channel.error.title=Please choose a Voice Channel
commands.misc.github.help.description = Displays information about a GitHub user profile. commands.misc.screenshare.channel.error.description=There is more than one channel with this name
commands.misc.screenshare.success.title = Here's your URL to share your Screen commands.misc.screenshare.number.error.title=You specified a wrong number\!
commands.misc.screenshare.id.error.title = Wait. That's illegal. commands.misc.screenshare.number.error.description=This isn't a Number.
commands.misc.screenshare.id.error.description = This ID is invalid. \nMaybe you entered a wrong ID. \n\nNote\: Make sure the Voice Channel is in this Guild. commands.misc.screenshare.channel.existing.error=Hol' up
commands.misc.screenshare.channel.error.title = Please choose a Voice Channel commands.misc.screenshare.channel.existing.description=There is no Voice Channel named like this. \n\nNote\: Make sure the Voice Channel is in this Guild.
commands.misc.screenshare.channel.error.description = There is more than one channel with this name commands.misc.screenshare.help.description=Shows you the link to share your screen.
commands.misc.screenshare.number.error.title = You specified a wrong number\! commands.misc.serverstats.title=Serverstats
commands.misc.screenshare.number.error.description = This isn't a Number. commands.misc.serverstats.description=This message contains some information about `%extra%`
commands.misc.screenshare.channel.existing.error = Hol' up commands.misc.serverstats.help.description=Shows information about a server.
commands.misc.screenshare.channel.existing.description = There is no Voice Channel named like this. \n\nNote\: Make sure the Voice Channel is in this Guild. commands.misc.profile.error.title=Not found
commands.misc.screenshare.help.description = Shows you the link to share your screen. commands.misc.profile.error.description=I can't find the specified user.
commands.misc.serverstats.title = Serverstats commands.misc.profile.help.description=Shows some information about the specified user.
commands.misc.serverstats.description = This message contains some information about `%extra%` commands.misc.code.success.title=Invite code information
commands.misc.serverstats.help.description = Shows information about a server. commands.misc.code.success.description=This message contains some information about the specified invite code.
commands.misc.profile.error.title = Not found commands.misc.code.error.title=Code not found
commands.misc.profile.error.description = I can't find the specified user. commands.misc.code.error.description=I can't find the specified invite code.
commands.misc.profile.help.description = Shows some information about the specified user. commands.misc.code.help.description=Shows information about a invite code.
commands.misc.code.success.title = Invite code information commands.misc.moveall.success.title=Successfully moved
commands.misc.code.success.description = This message contains some information about the specified invite code. commands.misc.moveall.success.description=I successfully moved %extra% members. Have fun\!
commands.misc.code.error.title = Code not found commands.misc.moveall.error.equals.title=Not twice
commands.misc.code.error.description = I can't find the specified invite code. commands.misc.moveall.error.equals.description=The first voice channel equals the second. You have to specify two different voice channels.
commands.misc.code.help.description = Shows information about a invite code. commands.misc.moveall.error.source.int.title=Invalid ID
commands.misc.moveall.success.title = Successfully moved commands.misc.moveall.error.source.int.description=You haven't specified an ID as the source channel.
commands.misc.moveall.success.description = I successfully moved %extra% members. Have fun\! commands.misc.moveall.error.target.int.title=Invalid ID
commands.misc.moveall.error.equals.title = Not twice commands.misc.moveall.error.target.int.description=You haven't specified an ID as the target channel.
commands.misc.moveall.error.equals.description = The first voice channel equals the second. You have to specify two different voice channels. commands.misc.moveall.help.description=Moves all users in the source channel to the target channel.
commands.misc.moveall.error.source.int.title = Invalid ID commands.misc.corona.help.description=Shows the newest stats of COVID-19
commands.misc.moveall.error.source.int.description = You haven't specified an ID as the source channel. commands.moderation.ban.success.title=Successfully banned
commands.misc.moveall.error.target.int.title = Invalid ID commands.moderation.ban.success.description=I successfully baned %extra%
commands.misc.moveall.error.target.int.description = You haven't specified an ID as the target channel. commands.moderation.ban.error.title=Not possible
commands.misc.moveall.help.description = Moves all users in the source channel to the target channel. commands.moderation.ban.myself.error.description=I can not ban myself\!
commands.misc.corona.help.description = Shows the newest stats of COVID-19 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.success.title = Successfully banned commands.moderation.ban.help.description=Bans one or more users from the server.
commands.moderation.ban.success.description = I successfully baned %extra% commands.moderation.clear.all.success.title=Successfully deleted
commands.moderation.ban.error.title = Not possible commands.moderation.clear.all.success.description=I successfully deleted %extra% messages.
commands.moderation.ban.myself.error.description = I can not ban myself\! commands.moderation.clear.number.error.title=Invalid number
commands.moderation.ban.yourself.error.description = You can not ban yourself\! commands.moderation.clear.number.error.description=You have to choose a number between 1 and 99\!
commands.moderation.ban.massban.success.description = I successfully banned %extra% members\! commands.moderation.clear.success.title=Successfully cleared
commands.moderation.ban.help.description = Bans one or more users from the server. commands.moderation.clear.success.description.singular=Successfully deleted one message.
commands.moderation.clear.all.success.title = Successfully deleted commands.moderation.clear.success.description.plural=Successfully deleted %extra% messages.
commands.moderation.clear.all.success.description = I successfully deleted %extra% messages. commands.moderation.clear.message.error.title=No messages\!
commands.moderation.clear.number.error.title = Invalid number commands.moderation.clear.message.error.description=There are no messages in this channel.
commands.moderation.clear.number.error.description = You have to choose a number between 1 and 99\! commands.moderation.clear.help.description=Deletes the specified number of messages.
commands.moderation.clear.success.title = Successfully cleared commands.moderation.prefix.success.title=%extra% Successfully set %extra%
commands.moderation.clear.success.description.singular = Successfully deleted one message. commands.moderation.prefix.success.description=I successfully set the new prefix for the server to `%extra%`.
commands.moderation.clear.success.description.plural = Successfully deleted %extra% messages. commands.moderation.prefix.error.description=The prefix must not contain **"**
commands.moderation.clear.message.error.title = No messages\! commands.moderation.prefix.help.description=Sets the Guild-Prefix.
commands.moderation.clear.message.error.description = There are no messages in this channel. commands.moderation.invitedetect.activate.success.title=Successfully activated
commands.moderation.clear.help.description = Deletes the specified number of messages. commands.moderation.invitedetect.activate.success.description=I successfully activated the invite link detection for this server.
commands.moderation.prefix.success.title = %extra% Successfully set %extra% commands.moderation.invitedetect.activate.error.title=Already activated
commands.moderation.prefix.success.description = I successfully set the new prefix for the server to `%extra%`. commands.moderation.invitedetect.activate.error.description=The invite link detection is already activated on this server.
commands.moderation.prefix.error.description = The prefix must not contain **"** commands.moderation.invitedetect.deactivate.success.title=Successfully deactivated
commands.moderation.prefix.help.description = Sets the Guild-Prefix. commands.moderation.invitedetect.deactivate.success.description=I successfully deactivated the invite link detection for this server.
commands.moderation.invitedetect.activate.success.title = Successfully activated commands.moderation.invitedetect.deactivate.error.title=Already deactivated
commands.moderation.invitedetect.activate.success.description = I successfully activated the invite link detection for this server. commands.moderation.invitedetect.deactivate.error.description=The invite link detection is already deactivated on this server.
commands.moderation.invitedetect.activate.error.title = Already activated commands.moderation.invitedetect.help.description=Activate or deactivate the Discord invite link detection.
commands.moderation.invitedetect.activate.error.description = The invite link detection is already activated on this server. commands.moderation.kick.success.title=%extra% Successfully kicked %extra%
commands.moderation.invitedetect.deactivate.success.title = Successfully deactivated commands.moderation.kick.success.description=I successfully kicked %extra%.
commands.moderation.invitedetect.deactivate.success.description = I successfully deactivated the invite link detection for this server. commands.moderation.kick.error.title=Not possible
commands.moderation.invitedetect.deactivate.error.title = Already deactivated commands.moderation.kick.myself.error.description=I can not kick myself\!
commands.moderation.invitedetect.deactivate.error.description = The invite link detection is already deactivated on this server. commands.moderation.kick.yourself.error.description=You can't kick yourself.
commands.moderation.invitedetect.help.description = Activate or deactivate the Discord invite link detection. commands.moderation.kick.mass.success.description=I successfully kicked %extra% Members\!
commands.moderation.kick.success.title = %extra% Successfully kicked %extra% commands.moderation.kick.help.description=Kicks one or more user from the server.
commands.moderation.kick.success.description = I successfully kicked %extra%. commands.moderation.kick.masskick.success.description=I successfully kicked %extra% members.
commands.moderation.kick.error.title = Not possible commands.moderation.nick.success.title=%extra% Successfully nicked %extra%
commands.moderation.kick.myself.error.description = I can not kick myself\! commands.moderation.nick.success.description=I successfully nicked %extra%.
commands.moderation.kick.yourself.error.description = You can't kick yourself. commands.moderation.nick.myself.success.description=I successfully changed my nickname.
commands.moderation.kick.mass.success.description = I successfully kicked %extra% Members\! commands.moderation.nick.massnick.success.description=I successfully nicked %extra% Members.
commands.moderation.kick.help.description = Kicks one or more user from the server. commands.moderation.nick.help.description=Rename a one or more user.
commands.moderation.kick.masskick.success.description = I successfully kicked %extra% members. commands.moderation.regionchange.regions.title=All regions
commands.moderation.nick.success.title = %extra% Successfully nicked %extra% commands.moderation.regionchange.success.title=Successfully set region
commands.moderation.nick.success.description = I successfully nicked %extra%. commands.moderation.regionchange.success.description=I successfully set the new server region to %extra%.
commands.moderation.nick.myself.success.description = I successfully changed my nickname. commands.moderation.regionchange.help.description=Changes the server region to locked regions.
commands.moderation.nick.massnick.success.description = I successfully nicked %extra% Members. commands.moderation.role.add.success.title=Successfully added role(s)
commands.moderation.nick.help.description = Rename a one or more user. commands.moderation.role.add.success.description=I successfully added %extra% roles to %extra_two% members.
commands.moderation.regionchange.regions.title = All regions commands.moderation.role.remove.success.title=Successfully removed role(s)
commands.moderation.regionchange.success.title = Successfully set region commands.moderation.role.remove.success.description=I successfully removed %extra% roles from %extra_two% members.
commands.moderation.regionchange.success.description = I successfully set the new server region to %extra%. commands.moderation.role.help.description=Adds and removes one or more role(s) from one or more user(s)
commands.moderation.regionchange.help.description = Changes the server region to locked regions. commands.moderation.rules.setup.title=Set up rules
commands.moderation.role.add.success.title = Successfully added role(s) 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.
commands.moderation.role.add.success.description = I successfully added %extra% roles to %extra_two% members. commands.moderation.rules.channel.error.title=Channel not found
commands.moderation.role.remove.success.title = Successfully removed role(s) commands.moderation.rules.channel.error.description=I can't find the specified channel. Please start the setup again.
commands.moderation.role.remove.success.description = I successfully removed %extra% roles from %extra_two% members. commands.moderation.rules.rules.title=Rules message
commands.moderation.role.help.description = Adds and removes one or more role(s) from one or more user(s) commands.moderation.rules.rules.description=The channel was successfully set to %extra%. Please send me the rules now.
commands.moderation.rules.setup.title = Set up rules commands.moderation.rules.role.title=Role to assign/remove
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. commands.moderation.rules.role.description=The rules were successfully set. Please send me the name of the role which the user receives/loses after he accepted the rules.
commands.moderation.rules.channel.error.title = Channel not found commands.moderation.rules.role.error.title=Role does not exist
commands.moderation.rules.channel.error.description = I can't find the specified channel. Please start the setup again. commands.moderation.rules.role.error.description=The specified role does not exist on this server.
commands.moderation.rules.rules.title = Rules message commands.moderation.rules.role.permission.error.title=No permission
commands.moderation.rules.rules.description = The channel was successfully set to %extra%. Please send me the rules now. commands.moderation.rules.role.permission.error.description=You cannot select this role because you cannot interact with it.
commands.moderation.rules.role.title = Role to assign/remove commands.moderation.rules.guild.error.title=Wrong Guild
commands.moderation.rules.role.description = The rules were successfully set. Please send me the name of the role which the user receives/loses after he accepted the rules. commands.moderation.rules.guild.error.description=The mentioned channel must be on this server\!
commands.moderation.rules.role.error.title = Role does not exist commands.moderation.rules.emote.accept.title=Custom Accept Emote
commands.moderation.rules.role.error.description = The specified role does not exist on this server. commands.moderation.rules.emote.accept.description=The role has been successfully set to %extra%. Now send me the emote on which your user should react to to get verified.
commands.moderation.rules.role.permission.error.title = No permission commands.moderation.rules.emote.decline.title=Custom Decline Emote
commands.moderation.rules.role.permission.error.description = You cannot select this role because you cannot interact with it. commands.moderation.rules.emote.decline.description=The first emote has been successfully set to %extra%. Please send me now the decline emote.
commands.moderation.rules.guild.error.title = Wrong Guild commands.moderation.rules.emote.error.access.description=I can not access the custom emote(s).
commands.moderation.rules.guild.error.description = The mentioned channel must be on this server\! commands.moderation.rules.emote.error.equal.title=Emotes are equal
commands.moderation.rules.emote.accept.title = Custom Accept Emote commands.moderation.rules.emote.error.equal.description=The 1st and 2nd emote equals each other.
commands.moderation.rules.emote.accept.description = The role has been successfully set to %extra%. Now send me the emote on which your user should react to to get verified. commands.moderation.rules.emoji.decline.description=The first emote has been successfully set. Please send me now the decline emote.
commands.moderation.rules.emote.decline.title = Custom Decline Emote commands.moderation.rules.emoji.error.description=The given emote can't be used.
commands.moderation.rules.emote.decline.description = The first emote has been successfully set to %extra%. Please send me now the decline emote. commands.moderation.rules.success.title=Successfully set the rules
commands.moderation.rules.emote.error.access.description = I can not access the custom emote(s). commands.moderation.rules.success.description=I successfully send the rules in %extra%.
commands.moderation.rules.emote.error.equal.title = Emotes are equal commands.moderation.rules.error.message.title=Can't write messages
commands.moderation.rules.emote.error.equal.description = The 1st and 2nd emote equals each other. commands.moderation.rules.error.message.description=I can not write messages in the specified channel
commands.moderation.rules.emoji.decline.description = The first emote has been successfully set. Please send me now the decline emote. commands.moderation.rules.error.permission.title=No permission
commands.moderation.rules.emoji.error.description = The given emote can't be used. commands.moderation.rules.error.permission.description=To execute this command, I need the `MANAGE_ROLES` permission.
commands.moderation.rules.success.title = Successfully set the rules commands.moderation.rules.error.interact.title=Can't interact
commands.moderation.rules.success.description = I successfully send the rules in %extra%. commands.moderation.rules.error.interact.description=I can not interact with the specified role. Make sure my role is higher than the specified role.
commands.moderation.rules.error.message.title = Can't write messages commands.moderation.rules.help.description=Setup the rules on your Discord server
commands.moderation.rules.error.message.description = I can not write messages in the specified channel commands.moderation.starboard.success.title=Successfully set the Channel\!
commands.moderation.rules.error.permission.title = No permission commands.moderation.starboard.help.description=Sets the starboard channel.
commands.moderation.rules.error.permission.description = To execute this command, I need the `MANAGE_ROLES` permission. commands.moderation.editrules.channel.title=Rules channel
commands.moderation.rules.error.interact.title = Can't interact commands.moderation.editrules.channel.description=Please send me the channel with the rules as mention
commands.moderation.rules.error.interact.description = I can not interact with the specified role. Make sure my role is higher than the specified role. commands.moderation.editrules.channel.found.error.title=Channel not found
commands.moderation.rules.help.description = Setup the rules on your Discord server commands.moderation.editrules.channel.found.error.description=I can't find the specified channel. Please start the edit process again.
commands.moderation.starboard.success.title = Successfully set the Channel\! commands.moderation.editrules.channel.message.error.title=No rules message
commands.moderation.starboard.help.description = Sets the starboard channel. commands.moderation.editrules.channel.message.error.description=I can not find the rules message in the specified channel.
commands.moderation.editrules.channel.title = Rules channel commands.moderation.editrules.message.title=New message
commands.moderation.editrules.channel.description = Please send me the channel with the rules as mention commands.moderation.editrules.message.description=Please send me the new rules message now.
commands.moderation.editrules.channel.found.error.title = Channel not found commands.moderation.editrules.error.title=No rules
commands.moderation.editrules.channel.found.error.description = I can't find the specified channel. Please start the edit process again. commands.moderation.editrules.error.description=There is nor rules message in this server. Please setup the rules first with %extra%rules
commands.moderation.editrules.channel.message.error.title = No rules message commands.moderation.editrules.success.title=Successfully changed
commands.moderation.editrules.channel.message.error.description = I can not find the rules message in the specified channel. commands.moderation.editrules.success.description=I successfully changed the rules
commands.moderation.editrules.message.title = New message commands.moderation.editrules.help.description=Edits the rules message.
commands.moderation.editrules.message.description = Please send me the new rules message now. commands.music.bass.error.connected.title=No channel
commands.moderation.editrules.error.title = No rules commands.music.bass.error.connected.description=You have to be in the same voice channel as the bot to change the bass level.
commands.moderation.editrules.error.description = There is nor rules message in this server. Please setup the rules first with %extra%rules commands.music.bass.help.description=Change the bass for the song which is played at the moment.
commands.moderation.editrules.success.title = Successfully changed commands.music.join.success.title=Successfully connected
commands.moderation.editrules.success.description = I successfully changed the rules commands.music.join.success.description=I successfully connected to %extra%.
commands.moderation.editrules.help.description = Edits the rules message. commands.music.join.error.connecting.already.title=Already connected
commands.music.join.error.connecting.already.description=I am already connected to your voice channel
commands.music.bass.error.connected.title = No channel commands.music.join.error.connecting.trying.title=Already trying to connect
commands.music.bass.error.connected.description = You have to be in the same voice channel as the bot to change the bass level. commands.music.join.error.connecting.trying.description=Hadder is already trying to connect. Please wait a moment
commands.music.bass.help.description = Change the bass for the song which is played at the moment. commands.music.join.error.channel.title=No Voice Channel
commands.music.join.success.title = Successfully connected commands.music.join.error.channel.description=You aren't in a Voice Channel.
commands.music.join.success.description = I successfully connected to %extra%. commands.music.join.error.permission.title=No permission
commands.music.join.error.connecting.already.title = Already connected commands.music.join.error.permission.description=I am not allowed to join your voice channel.
commands.music.join.error.connecting.already.description = I am already connected to your voice channel commands.music.join.help.description=Joins your voice channel.
commands.music.join.error.connecting.trying.title = Already trying to connect commands.music.leave.success.title=Successfully disconnected
commands.music.join.error.connecting.trying.description = Hadder is already trying to connect. Please wait a moment commands.music.leave.success.description=I successfully disconnected from the Voice Channel
commands.music.join.error.channel.title = No Voice Channel commands.music.leave.error.channel.title=No channel
commands.music.join.error.channel.description = You aren't in a Voice Channel. commands.music.leave.error.channel.description=You have to be in the same voice channel as the bot.
commands.music.join.error.permission.title = No permission commands.music.leave.error.connected.tile=Not connected
commands.music.join.error.permission.description = I am not allowed to join your voice channel. commands.music.leave.error.connected.description=I'm currently in no Voice Channel on this Guild
commands.music.join.help.description = Joins your voice channel. commands.music.leave.help.description=Leaves your voice channel.
commands.music.leave.success.title = Successfully disconnected commands.music.play.load.title=%extra% Now loading %extra%
commands.music.leave.success.description = I successfully disconnected from the Voice Channel commands.music.play.load.description=Trying to load the song...
commands.music.leave.error.channel.title = No channel commands.music.play.success.loading.title=%extra% Now playing %extra%
commands.music.leave.error.channel.description = You have to be in the same voice channel as the bot. commands.music.play.success.queueing.title=%extra% Added to queue %extra%
commands.music.leave.error.connected.tile = Not connected commands.music.play.success.title=Title
commands.music.leave.error.connected.description = I'm currently in no Voice Channel on this Guild commands.music.play.success.author=Author
commands.music.leave.help.description = Leaves your voice channel. commands.music.play.success.length=Length
commands.music.play.load.title = %extra% Now loading %extra% commands.music.play.success.tracks=Tracks
commands.music.play.load.description = Trying to load the song... commands.music.play.error.load.title=%extra% Load failed %extra%
commands.music.play.success.loading.title = %extra% Now playing %extra% commands.music.play.error.load.description=Unfortunately I can not load the given song
commands.music.play.success.queueing.title = %extra% Added to queue %extra% commands.music.play.error.match.title=%extra% No matches %extra%
commands.music.play.success.title = Title commands.music.play.error.match.description=I can not find a song named this on YouTube
commands.music.play.success.author = Author commands.music.play.success.unpause.title=Successfully continued
commands.music.play.success.length = Length commands.music.play.success.unpause.description=I successfully continued playing the song.
commands.music.play.success.tracks = Tracks commands.music.play.error.connected.title=No channel
commands.music.play.error.load.title = %extra% Load failed %extra% commands.music.play.error.connected.description=You have to be in the same voice channel as the bot to continue the song.
commands.music.play.error.load.description = Unfortunately I can not load the given song commands.music.play.help.description=Plays the specified song.
commands.music.play.error.match.title = %extra% No matches %extra% commands.music.stop.success.title=Successfully stopped
commands.music.play.error.match.description = I can not find a song named this on YouTube commands.music.stop.success.description=I successfully stopped the song.
commands.music.play.success.unpause.title = Successfully continued commands.music.stop.error.connected.title=No channel
commands.music.play.success.unpause.description = I successfully continued playing the song. commands.music.stop.error.connected.description=You have to be in the same voice channel as the bot to stop the song.
commands.music.play.error.connected.title = No channel commands.music.stop.help.description=Stops the song.
commands.music.play.error.connected.description = You have to be in the same voice channel as the bot to continue the song. commands.music.info.success.title=Track info
commands.music.play.help.description = Plays the specified song. commands.music.info.error.title=No playing track
commands.music.stop.success.title = Successfully stopped commands.music.info.error.description=I am not playing anything at the moment
commands.music.stop.success.description = I successfully stopped the song. commands.music.info.help.description=Shows information about the playing song.
commands.music.stop.error.connected.title = No channel commands.music.queue.error.title=No queue
commands.music.stop.error.connected.description = You have to be in the same voice channel as the bot to stop the song. commands.music.queue.error.description=There are no queued songs at the moment
commands.music.stop.help.description = Stops the song. commands.music.queue.success.title=Queue %extra%
commands.music.info.success.title = Track info commands.music.queue.success.description=This is the queue\: \n %extra%
commands.music.info.error.title = No playing track commands.music.queue.help.description=Shows the music queue.
commands.music.info.error.description = I am not playing anything at the moment commands.music.skip.success.title=Successfully skipped
commands.music.info.help.description = Shows information about the playing song. commands.music.skip.success.description=I successfully skipped to the next song
commands.music.queue.error.title = No queue commands.music.skip.error.connected.title=No channel
commands.music.queue.error.description = There are no queued songs at the moment commands.music.skip.error.connected.description=You have to be in the same voice channel as the bot to skip the song.
commands.music.queue.success.title = Queue %extra% commands.music.skip.help.description=Skips the currently playing song.
commands.music.queue.success.description = This is the queue\: \n %extra% commands.music.volume.success.title=Successfully set
commands.music.queue.help.description = Shows the music queue. commands.music.volume.success.description=I successfully set the new volume to %extra%
commands.music.skip.success.title = Successfully skipped commands.music.volume.error.int.title=Invalid number
commands.music.skip.success.description = I successfully skipped to the next song commands.music.volume.error.int.description=The volume have to be between 1 and 200
commands.music.skip.error.connected.title = No channel commands.music.volume.error.connected.title=No channel
commands.music.skip.error.connected.description = You have to be in the same voice channel as the bot to skip the song. commands.music.volume.error.connected.description=You have to be in the same voice channel as the bot to change the volume.
commands.music.skip.help.description = Skips the currently playing song. commands.music.volume.help.description=Change the volume of the music.
commands.music.volume.success.title = Successfully set commands.music.pause.success.title=Successfully paused
commands.music.volume.success.description = I successfully set the new volume to %extra% commands.music.pause.success.description=I successfully paused the played song.
commands.music.volume.error.int.title = Invalid number commands.music.pause.error.paused.title=Already paused
commands.music.volume.error.int.description = The volume have to be between 1 and 200 commands.music.pause.error.paused.description=The song is already paused. You can continue playing it with %extra%play
commands.music.volume.error.connected.title = No channel commands.music.pause.error.connected.title=No channel
commands.music.volume.error.connected.description = You have to be in the same voice channel as the bot to change the volume. commands.music.pause.error.connected.description=You have to be in the same voice channel as the bot to pause the song.
commands.music.volume.help.description = Change the volume of the music. commands.music.pause.help.description=Pause the playing song.
commands.music.pause.success.title = Successfully paused commands.music.loop.success.loop.title=Successfully activated
commands.music.pause.success.description = I successfully paused the played song. commands.music.loop.success.loop.description=I will now repeat the currently played song.
commands.music.pause.error.paused.title = Already paused commands.music.loop.success.unloop.title=Successfully deactivated
commands.music.pause.error.paused.description = The song is already paused. You can continue playing it with %extra%play commands.music.loop.success.unloop.description=I will no longer repeat the currently played song.
commands.music.pause.error.connected.title = No channel commands.music.loop.error.connected.title=No channel
commands.music.pause.error.connected.description = You have to be in the same voice channel as the bot to pause the song. commands.music.loop.error.connected.description=You have to be in the same voice channel as the bot to set the repeat status.
commands.music.pause.help.description = Pause the playing song. commands.music.loop.help.description=Repeats a song/queue.
commands.music.loop.success.loop.title = Successfully activated commands.music.echo.success.title=Successfully activated
commands.music.loop.success.loop.description = I will now repeat the currently played song. commands.music.echo.success.description=I will now repeat everything I can hear in your voice channel
commands.music.loop.success.unloop.title = Successfully deactivated commands.music.echo.help.description=Sends your voice through Hadder.
commands.music.loop.success.unloop.description = I will no longer repeat the currently played song. commands.nsfw.gif.error.title=GIF not showing? Click here
commands.music.loop.error.connected.title = No channel commands.nsfw.img.error.title=Image not showing? Click here
commands.music.loop.error.connected.description = You have to be in the same voice channel as the bot to set the repeat status. commands.nsfw.anal.help.description=Shows a random anal gif.
commands.music.loop.help.description = Repeats a song/queue. commands.nsfw.bdsm.help.description=Shows a random BDSM picture
commands.music.echo.success.title = Successfully activated commands.nsfw.blowjob.help.description=Shows a random Blowjob picture
commands.music.echo.success.description = I will now repeat everything I can hear in your voice channel commands.nsfw.boobs.help.description=Shows a random boob gif.
commands.music.echo.help.description = Sends your voice through Hadder. commands.nsfw.cum.help.description=Shows a random cum gif.
commands.nsfw.erotic.help.description=Shows a random erotic picture
commands.nsfw.gif.error.title = GIF not showing? Click here commands.nsfw.feet.help.description=Shows a random feet gif.
commands.nsfw.img.error.title = Image not showing? Click here commands.nsfw.fingering.help.description=Shows a random fingering gif.
commands.nsfw.anal.help.description = Shows a random anal gif. commands.nsfw.linking.help.description=Shows a random licking gif.
commands.nsfw.bdsm.help.description = Shows a random BDSM picture commands.nsfw.porn.help.description=Shows a random porn gif.
commands.nsfw.blowjob.help.description = Shows a random Blowjob picture commands.nsfw.pussy.help.description=Shows a random pussy gif.
commands.nsfw.boobs.help.description = Shows a random boob gif. commands.nsfw.randomporn.help.description=Shows a completely random porn gif.
commands.nsfw.cum.help.description = Shows a random cum gif. commands.nsfw.solo.help.description=Shows a random solo gif.
commands.nsfw.erotic.help.description = Shows a random erotic picture commands.nsfw.spank.help.description=Shows a random spank gif.
commands.nsfw.feet.help.description = Shows a random feet gif. commands.nsfw.trans.help.description=Shows a random trans picture
commands.nsfw.fingering.help.description = Shows a random fingering gif. commands.owner.eval.success.title=Eval Command
commands.nsfw.linking.help.description = Shows a random licking gif. commands.owner.eval.success.input=Input
commands.nsfw.porn.help.description = Shows a random porn gif. commands.owner.eval.success.output=Output
commands.nsfw.pussy.help.description = Shows a random pussy gif. commands.owner.eval.success.timing=Timing
commands.nsfw.randomporn.help.description = Shows a completely random porn gif. commands.owner.eval.help.description=Execute the given code
commands.nsfw.solo.help.description = Shows a random solo gif. commands.owner.guildleave.success.title=Successfully left
commands.nsfw.spank.help.description = Shows a random spank gif. commands.owner.guildleave.success.description=I successfully left %extra%.
commands.nsfw.trans.help.description = Shows a random trans picture commands.owner.guildleave.error.title=Can not leave
commands.owner.guildleave.error.description=I can not leave from this server. Maybe this isn't a ID?
commands.owner.eval.success.title = Eval Command commands.owner.guildleave.help.description=Quit from a server
commands.owner.eval.success.input = Input commands.owner.reboot.help.description=Restart the bot
commands.owner.eval.success.output = Output commands.owner.shutdown.success.title=Shutdown
commands.owner.eval.success.timing = Timing commands.owner.shutdown.help.description=Shuts the Bot down
commands.owner.eval.help.description = Execute the given code commands.owner.test.success=TEST my friends
commands.owner.guildleave.success.title = Successfully left commands.owner.test.help.description=Just a little Test Command
commands.owner.guildleave.success.description = I successfully left %extra%. commands.owner.blacklist.success.add.title=Successfully blacklisted the specified commands
commands.owner.guildleave.error.title = Can not leave commands.owner.blacklist.success.add.description=I successfully added the following commands from the blacklist\:\n %extra%
commands.owner.guildleave.error.description = I can not leave from this server. Maybe this isn't a ID? commands.owner.blacklist.success.remove.title=Successfully removed the commands from the blacklist
commands.owner.guildleave.help.description = Quit from a server commands.owner.blacklist.success.remove.description=I successfully removed the following commands from the blacklist\:\n %extra%
commands.owner.reboot.help.description = Restart the bot commands.owner.blacklist.help.description=Blacklist a user for specific commands
commands.owner.shutdown.success.title = Shutdown commands.settings.language.success.title=Language set
commands.owner.shutdown.help.description = Shuts the Bot down commands.settings.language.success.description=`%extra%` is your new language now.
commands.owner.test.success = TEST my friends commands.settings.language.help.description=Sets the new primary language for a user.
commands.owner.test.help.description = Just a little Test Command commands.settings.prefix.success.title=Successfully set prefix
commands.owner.blacklist.success.add.title = Successfully blacklisted the specified commands commands.settings.prefix.success.description=I successfully set the new prefix for you to `%extra%`.
commands.owner.blacklist.success.add.description = I successfully added the following commands from the blacklist\:\n %extra% commands.settings.prefix.help.description=Sets a new prefix.
commands.owner.blacklist.success.remove.title = Successfully removed the commands from the blacklist
commands.owner.blacklist.success.remove.description = I successfully removed the following commands from the blacklist\:\n %extra%
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.
commands.settings.language.help.description = Sets the new primary language for a user.
commands.settings.prefix.success.title = Successfully set prefix
commands.settings.prefix.success.description = I successfully set the new prefix for you to `%extra%`.
commands.settings.prefix.help.description = Sets a new prefix.

View file

@ -13,326 +13,316 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
# #
Hadder=Hadder
Hadder = Hadder error=Error
none=None
error = Error success\!=Success\!
none = None commands.fun.avatar.success.title=Avatar of %extra%
success\! = Success\! commands.fun.avatar.error.title=User not found
commands.fun.avatar.error.description=I can not find a user with this id\!
commands.fun.avatar.success.title = Avatar of %extra% commands.fun.avatar.help.description=Sends the avatar of the specified Member.
commands.fun.avatar.error.title = User not found commands.fun.gif.error.description=Please try again with another term.
commands.fun.avatar.error.description = I can not find a user with this id\! commands.fun.gif.help.description=Looks for a GIF on Giphy.
commands.fun.avatar.help.description = Sends the avatar of the specified Member. commands.fun.meme.success.title=Your random meme\:
commands.fun.gif.error.description = Please try again with another term. commands.fun.meme.api.error=The request to the meme API could not be processed. Please try again later.
commands.fun.gif.help.description = Looks for a GIF on Giphy. commands.fun.meme.help.description=Sends you a random meme.
commands.fun.meme.success.title = Your random meme\: commands.fun.clyde.help.description=Sends a message as a webhook named Clyde.
commands.fun.meme.api.error = The request to the meme API could not be processed. Please try again later. commands.general.about.success.title=Hadder - About
commands.fun.meme.help.description = Sends you a random meme. commands.general.about.success.description=Hadder is an open source Discord bot.
commands.fun.clyde.help.description = Sends a message as a webhook named Clyde. commands.general.about.success.field.one.title=Support the developers
commands.general.about.success.field.one.description=Hadder is completely free for everyone. We would appreciate it if you donated some money to us. Click [here]%extra% to donate.
commands.general.about.success.title = Hadder - About commands.general.about.help.description=Shows information about Hadder.
commands.general.about.success.description = Hadder is an open source Discord bot. commands.general.equals.string.first.request=Please send me the first String.
commands.general.about.success.field.one.title = Support the developers commands.general.equals.string.second.request=Please send me the second String.
commands.general.about.success.field.one.description = Hadder is completely free for everyone. We would appreciate it if you donated some money to us. Click [here]%extra% to donate. commands.general.equals.string.equals.true=Yes\! The first string equals the second string\!
commands.general.about.help.description = Shows information about Hadder. commands.general.equals.string.equals.false=Well yes but actually No. This isn't the same.
commands.general.equals.string.first.request = Please send me the first String. commands.general.equals.string.first=First string\:
commands.general.equals.string.second.request = Please send me the second String. commands.general.equals.string.second=Second string\:
commands.general.equals.string.equals.true = Yes\! The first string equals the second string\! commands.general.equals.string.result=Result\:
commands.general.equals.string.equals.false = Well yes but actually No. This isn't the same. commands.general.equals.help.description=Checks if two strings are equal.
commands.general.equals.string.first = First string\: commands.general.help.description=**Description\:**
commands.general.equals.string.second = Second string\: commands.general.help.usage=**Usage\:**
commands.general.equals.string.result = Result\: commands.general.help.example=**Example\:**
commands.general.equals.help.description = Checks if two strings are equal. commands.general.help.error.description=I need the Embed Links Permission to send the Help Menu\!
commands.general.help.description = **Description\:** commands.general.help.help.description=Shows each command and explains its usage.
commands.general.help.usage = **Usage\:** commands.general.help.help.label=[CommandName]
commands.general.help.example = **Example\:** commands.general.invite.success.title=Invite me\!
commands.general.help.error.description = I need the Embed Links Permission to send the Help Menu\! commands.general.invite.success.description=[Invite me here\!]%extra%
commands.general.help.help.description = Shows each command and explains its usage. commands.general.invite.help.description=Shows the invitation link to invite Hadder to your server.
commands.general.help.help.label = [CommandName] commands.general.ping.help.description=Shows the ping to the Discord API.
commands.general.invite.success.title = Invite me\! commands.misc.feedback.title.request.title=Feedback Topic
commands.general.invite.success.description = [Invite me here\!]%extra% commands.misc.feedback.title.request.description=Please send me the feedback topic.
commands.general.invite.help.description = Shows the invitation link to invite Hadder to your server. commands.misc.feedback.description.request.title=Feedback Description
commands.general.ping.help.description = Shows the ping to the Discord API. commands.misc.feedback.description.request.description=Please send me the feedback description now.
commands.misc.feedback.success.title=Feedback successfully sent\!
commands.misc.feedback.title.request.title = Feedback Topic commands.misc.feedback.help.description=Sends feedback directly to the developers.
commands.misc.feedback.title.request.description = Please send me the feedback topic. commands.misc.github.link.title=Link your GitHub Account
commands.misc.feedback.description.request.title = Feedback Description commands.misc.github.success.title=Information about %extra%
commands.misc.feedback.description.request.description = Please send me the feedback description now. commands.misc.github.success.bio=User bio
commands.misc.feedback.success.title = Feedback successfully sent\! commands.misc.github.success.location=Location
commands.misc.feedback.help.description = Sends feedback directly to the developers. commands.misc.github.success.website=Website
commands.misc.github.link.title = Link your GitHub Account commands.misc.github.success.repositories=Public repositories
commands.misc.github.success.title = Information about %extra% commands.misc.github.success.gists=Public gists
commands.misc.github.success.bio = User bio commands.misc.github.success.followers=Followers
commands.misc.github.success.location = Location commands.misc.github.success.following=Following
commands.misc.github.success.website = Website commands.misc.github.api.error.title=API error
commands.misc.github.success.repositories = Public repositories commands.misc.github.api.error.description=The GitHub API might be down at the moment\!
commands.misc.github.success.gists = Public gists commands.misc.github.user.error.title=User doesn't exist
commands.misc.github.success.followers = Followers commands.misc.github.user.error.description=I can not find a user named like this\!
commands.misc.github.success.following = Following commands.misc.github.connect.title=Connect your GH account
commands.misc.github.api.error.title = API error commands.misc.github.connect.description=[Please connect your GitHub account here]%extra%
commands.misc.github.api.error.description = The GitHub API might be down at the moment\! commands.misc.github.help.description=Displays information about a GitHub user profile.
commands.misc.github.user.error.title = User doesn't exist commands.misc.screenshare.success.title=Here's your URL to share your Screen
commands.misc.github.user.error.description = I can not find a user named like this\! commands.misc.screenshare.id.error.title=Wait. That's illegal.
commands.misc.github.connect.title = Connect your GH account commands.misc.screenshare.id.error.description=This ID is invalid. \nMaybe you entered a wrong ID. \n\nNote\: Make sure the Voice Channel is in this Guild.
commands.misc.github.connect.description = [Please connect your GitHub account here]%extra% commands.misc.screenshare.channel.error.title=Please choose a Voice Channel
commands.misc.github.help.description = Displays information about a GitHub user profile. commands.misc.screenshare.channel.error.description=There is more than one channel with this name
commands.misc.screenshare.success.title = Here's your URL to share your Screen commands.misc.screenshare.number.error.title=You specified a wrong number\!
commands.misc.screenshare.id.error.title = Wait. That's illegal. commands.misc.screenshare.number.error.description=This isn't a Number.
commands.misc.screenshare.id.error.description = This ID is invalid. \nMaybe you entered a wrong ID. \n\nNote\: Make sure the Voice Channel is in this Guild. commands.misc.screenshare.channel.existing.error=Hol' up
commands.misc.screenshare.channel.error.title = Please choose a Voice Channel commands.misc.screenshare.channel.existing.description=There is no Voice Channel named like this. \n\nNote\: Make sure the Voice Channel is in this Guild.
commands.misc.screenshare.channel.error.description = There is more than one channel with this name commands.misc.screenshare.help.description=Shows you the link to share your screen.
commands.misc.screenshare.number.error.title = You specified a wrong number\! commands.misc.serverstats.title=Serverstats
commands.misc.screenshare.number.error.description = This isn't a Number. commands.misc.serverstats.description=This message contains some information about `%extra%`
commands.misc.screenshare.channel.existing.error = Hol' up commands.misc.serverstats.help.description=Shows information about a server.
commands.misc.screenshare.channel.existing.description = There is no Voice Channel named like this. \n\nNote\: Make sure the Voice Channel is in this Guild. commands.misc.profile.error.title=Not found
commands.misc.screenshare.help.description = Shows you the link to share your screen. commands.misc.profile.error.description=I can't find the specified user.
commands.misc.serverstats.title = Serverstats commands.misc.profile.help.description=Shows some information about the specified user.
commands.misc.serverstats.description = This message contains some information about `%extra%` commands.misc.code.success.title=Invite code information
commands.misc.serverstats.help.description = Shows information about a server. commands.misc.code.success.description=This message contains some information about the specified invite code.
commands.misc.profile.error.title = Not found commands.misc.code.error.title=Code not found
commands.misc.profile.error.description = I can't find the specified user. commands.misc.code.error.description=I can't find the specified invite code.
commands.misc.profile.help.description = Shows some information about the specified user. commands.misc.code.help.description=Shows information about a invite code.
commands.misc.code.success.title = Invite code information commands.misc.moveall.success.title=Successfully moved
commands.misc.code.success.description = This message contains some information about the specified invite code. commands.misc.moveall.success.description=I successfully moved %extra% members. Have fun\!
commands.misc.code.error.title = Code not found commands.misc.moveall.error.equals.title=Not twice
commands.misc.code.error.description = I can't find the specified invite code. commands.misc.moveall.error.equals.description=The first voice channel equals the second. You have to specify two different voice channels.
commands.misc.code.help.description = Shows information about a invite code. commands.misc.moveall.error.source.int.title=Invalid ID
commands.misc.moveall.success.title = Successfully moved commands.misc.moveall.error.source.int.description=You haven't specified an ID as the source channel.
commands.misc.moveall.success.description = I successfully moved %extra% members. Have fun\! commands.misc.moveall.error.target.int.title=Invalid ID
commands.misc.moveall.error.equals.title = Not twice commands.misc.moveall.error.target.int.description=You haven't specified an ID as the target channel.
commands.misc.moveall.error.equals.description = The first voice channel equals the second. You have to specify two different voice channels. commands.misc.moveall.help.description=Moves all users in the source channel to the target channel.
commands.misc.moveall.error.source.int.title = Invalid ID commands.misc.corona.help.description=Shows the newest stats of COVID-19
commands.misc.moveall.error.source.int.description = You haven't specified an ID as the source channel. commands.moderation.ban.success.title=Successfully banned
commands.misc.moveall.error.target.int.title = Invalid ID commands.moderation.ban.success.description=I successfully baned %extra%
commands.misc.moveall.error.target.int.description = You haven't specified an ID as the target channel. commands.moderation.ban.error.title=Not possible
commands.misc.moveall.help.description = Moves all users in the source channel to the target channel. commands.moderation.ban.myself.error.description=I can not ban myself\!
commands.misc.corona.help.description = Shows the newest stats of COVID-19 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.success.title = Successfully banned commands.moderation.ban.help.description=Bans one or more users from the server.
commands.moderation.ban.success.description = I successfully baned %extra% commands.moderation.clear.all.success.title=Successfully deleted
commands.moderation.ban.error.title = Not possible commands.moderation.clear.all.success.description=I successfully deleted %extra% messages.
commands.moderation.ban.myself.error.description = I can not ban myself\! commands.moderation.clear.number.error.title=Invalid number
commands.moderation.ban.yourself.error.description = You can not ban yourself\! commands.moderation.clear.number.error.description=You have to choose a number between 1 and 99\!
commands.moderation.ban.massban.success.description = I successfully banned %extra% members\! commands.moderation.clear.success.title=Successfully cleared
commands.moderation.ban.help.description = Bans one or more users from the server. commands.moderation.clear.success.description.singular=Successfully deleted one message.
commands.moderation.clear.all.success.title = Successfully deleted commands.moderation.clear.success.description.plural=Successfully deleted %extra% messages.
commands.moderation.clear.all.success.description = I successfully deleted %extra% messages. commands.moderation.clear.message.error.title=No messages\!
commands.moderation.clear.number.error.title = Invalid number commands.moderation.clear.message.error.description=There are no messages in this channel.
commands.moderation.clear.number.error.description = You have to choose a number between 1 and 99\! commands.moderation.clear.help.description=Deletes the specified number of messages.
commands.moderation.clear.success.title = Successfully cleared commands.moderation.prefix.success.title=%extra% Successfully set %extra%
commands.moderation.clear.success.description.singular = Successfully deleted one message. commands.moderation.prefix.success.description=I successfully set the new prefix for the server to `%extra%`.
commands.moderation.clear.success.description.plural = Successfully deleted %extra% messages. commands.moderation.prefix.error.description=The prefix must not contain **"**
commands.moderation.clear.message.error.title = No messages\! commands.moderation.prefix.help.description=Sets the Guild-Prefix.
commands.moderation.clear.message.error.description = There are no messages in this channel. commands.moderation.invitedetect.activate.success.title=Successfully activated
commands.moderation.clear.help.description = Deletes the specified number of messages. commands.moderation.invitedetect.activate.success.description=I successfully activated the invite link detection for this server.
commands.moderation.prefix.success.title = %extra% Successfully set %extra% commands.moderation.invitedetect.activate.error.title=Already activated
commands.moderation.prefix.success.description = I successfully set the new prefix for the server to `%extra%`. commands.moderation.invitedetect.activate.error.description=The invite link detection is already activated on this server.
commands.moderation.prefix.error.description = The prefix must not contain **"** commands.moderation.invitedetect.deactivate.success.title=Successfully deactivated
commands.moderation.prefix.help.description = Sets the Guild-Prefix. commands.moderation.invitedetect.deactivate.success.description=I successfully deactivated the invite link detection for this server.
commands.moderation.invitedetect.activate.success.title = Successfully activated commands.moderation.invitedetect.deactivate.error.title=Already deactivated
commands.moderation.invitedetect.activate.success.description = I successfully activated the invite link detection for this server. commands.moderation.invitedetect.deactivate.error.description=The invite link detection is already deactivated on this server.
commands.moderation.invitedetect.activate.error.title = Already activated commands.moderation.invitedetect.help.description=Activate or deactivate the Discord invite link detection.
commands.moderation.invitedetect.activate.error.description = The invite link detection is already activated on this server. commands.moderation.kick.success.title=%extra% Successfully kicked %extra%
commands.moderation.invitedetect.deactivate.success.title = Successfully deactivated commands.moderation.kick.success.description=I successfully kicked %extra%.
commands.moderation.invitedetect.deactivate.success.description = I successfully deactivated the invite link detection for this server. commands.moderation.kick.error.title=Not possible
commands.moderation.invitedetect.deactivate.error.title = Already deactivated commands.moderation.kick.myself.error.description=I can not kick myself\!
commands.moderation.invitedetect.deactivate.error.description = The invite link detection is already deactivated on this server. commands.moderation.kick.yourself.error.description=You can't kick yourself.
commands.moderation.invitedetect.help.description = Activate or deactivate the Discord invite link detection. commands.moderation.kick.mass.success.description=I successfully kicked %extra% Members\!
commands.moderation.kick.success.title = %extra% Successfully kicked %extra% commands.moderation.kick.help.description=Kicks one or more user from the server.
commands.moderation.kick.success.description = I successfully kicked %extra%. commands.moderation.kick.masskick.success.description=I successfully kicked %extra% members.
commands.moderation.kick.error.title = Not possible commands.moderation.nick.success.title=%extra% Successfully nicked %extra%
commands.moderation.kick.myself.error.description = I can not kick myself\! commands.moderation.nick.success.description=I successfully nicked %extra%.
commands.moderation.kick.yourself.error.description = You can't kick yourself. commands.moderation.nick.myself.success.description=I successfully changed my nickname.
commands.moderation.kick.mass.success.description = I successfully kicked %extra% Members\! commands.moderation.nick.massnick.success.description=I successfully nicked %extra% Members.
commands.moderation.kick.help.description = Kicks one or more user from the server. commands.moderation.nick.help.description=Rename a one or more user.
commands.moderation.kick.masskick.success.description = I successfully kicked %extra% members. commands.moderation.regionchange.regions.title=All regions
commands.moderation.nick.success.title = %extra% Successfully nicked %extra% commands.moderation.regionchange.success.title=Successfully set region
commands.moderation.nick.success.description = I successfully nicked %extra%. commands.moderation.regionchange.success.description=I successfully set the new server region to %extra%.
commands.moderation.nick.myself.success.description = I successfully changed my nickname. commands.moderation.regionchange.help.description=Changes the server region to locked regions.
commands.moderation.nick.massnick.success.description = I successfully nicked %extra% Members. commands.moderation.role.add.success.title=Successfully added role(s)
commands.moderation.nick.help.description = Rename a one or more user. commands.moderation.role.add.success.description=I successfully added %extra% roles to %extra_two% members.
commands.moderation.regionchange.regions.title = All regions commands.moderation.role.remove.success.title=Successfully removed role(s)
commands.moderation.regionchange.success.title = Successfully set region commands.moderation.role.remove.success.description=I successfully removed %extra% roles from %extra_two% members.
commands.moderation.regionchange.success.description = I successfully set the new server region to %extra%. commands.moderation.role.help.description=Adds and removes one or more role(s) from one or more user(s)
commands.moderation.regionchange.help.description = Changes the server region to locked regions. commands.moderation.rules.setup.title=Set up rules
commands.moderation.role.add.success.title = Successfully added role(s) 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.
commands.moderation.role.add.success.description = I successfully added %extra% roles to %extra_two% members. commands.moderation.rules.channel.error.title=Channel not found
commands.moderation.role.remove.success.title = Successfully removed role(s) commands.moderation.rules.channel.error.description=I can't find the specified channel. Please start the setup again.
commands.moderation.role.remove.success.description = I successfully removed %extra% roles from %extra_two% members. commands.moderation.rules.rules.title=Rules message
commands.moderation.role.help.description = Adds and removes one or more role(s) from one or more user(s) commands.moderation.rules.rules.description=The channel was successfully set to %extra%. Please send me the rules now.
commands.moderation.rules.setup.title = Set up rules commands.moderation.rules.role.title=Role to assign/remove
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. commands.moderation.rules.role.description=The rules were successfully set. Please send me the name of the role which the user receives/loses after he accepted the rules.
commands.moderation.rules.channel.error.title = Channel not found commands.moderation.rules.role.error.title=Role does not exist
commands.moderation.rules.channel.error.description = I can't find the specified channel. Please start the setup again. commands.moderation.rules.role.error.description=The specified role does not exist on this server.
commands.moderation.rules.rules.title = Rules message commands.moderation.rules.role.permission.error.title=No permission
commands.moderation.rules.rules.description = The channel was successfully set to %extra%. Please send me the rules now. commands.moderation.rules.role.permission.error.description=You cannot select this role because you cannot interact with it.
commands.moderation.rules.role.title = Role to assign/remove commands.moderation.rules.guild.error.title=Wrong Guild
commands.moderation.rules.role.description = The rules were successfully set. Please send me the name of the role which the user receives/loses after he accepted the rules. commands.moderation.rules.guild.error.description=The mentioned channel must be on this server\!
commands.moderation.rules.role.error.title = Role does not exist commands.moderation.rules.emote.accept.title=Custom Accept Emote
commands.moderation.rules.role.error.description = The specified role does not exist on this server. commands.moderation.rules.emote.accept.description=The role has been successfully set to %extra%. Now send me the emote on which your user should react to to get verified.
commands.moderation.rules.role.permission.error.title = No permission commands.moderation.rules.emote.decline.title=Custom Decline Emote
commands.moderation.rules.role.permission.error.description = You cannot select this role because you cannot interact with it. commands.moderation.rules.emote.decline.description=The first emote has been successfully set to %extra%. Please send me now the decline emote.
commands.moderation.rules.guild.error.title = Wrong Guild commands.moderation.rules.emote.error.access.description=I can not access the custom emote(s).
commands.moderation.rules.guild.error.description = The mentioned channel must be on this server\! commands.moderation.rules.emote.error.equal.title=Emotes are equal
commands.moderation.rules.emote.accept.title = Custom Accept Emote commands.moderation.rules.emote.error.equal.description=The 1st and 2nd emote equals each other.
commands.moderation.rules.emote.accept.description = The role has been successfully set to %extra%. Now send me the emote on which your user should react to to get verified. commands.moderation.rules.emoji.decline.description=The first emote has been successfully set. Please send me now the decline emote.
commands.moderation.rules.emote.decline.title = Custom Decline Emote commands.moderation.rules.emoji.error.description=The given emote can't be used.
commands.moderation.rules.emote.decline.description = The first emote has been successfully set to %extra%. Please send me now the decline emote. commands.moderation.rules.success.title=Successfully set the rules
commands.moderation.rules.emote.error.access.description = I can not access the custom emote(s). commands.moderation.rules.success.description=I successfully send the rules in %extra%.
commands.moderation.rules.emote.error.equal.title = Emotes are equal commands.moderation.rules.error.message.title=Can't write messages
commands.moderation.rules.emote.error.equal.description = The 1st and 2nd emote equals each other. commands.moderation.rules.error.message.description=I can not write messages in the specified channel
commands.moderation.rules.emoji.decline.description = The first emote has been successfully set. Please send me now the decline emote. commands.moderation.rules.error.permission.title=No permission
commands.moderation.rules.emoji.error.description = The given emote can't be used. commands.moderation.rules.error.permission.description=To execute this command, I need the `MANAGE_ROLES` permission.
commands.moderation.rules.success.title = Successfully set the rules commands.moderation.rules.error.interact.title=Can't interact
commands.moderation.rules.success.description = I successfully send the rules in %extra%. commands.moderation.rules.error.interact.description=I can not interact with the specified role. Make sure my role is higher than the specified role.
commands.moderation.rules.error.message.title = Can't write messages commands.moderation.rules.help.description=Setup the rules on your Discord server
commands.moderation.rules.error.message.description = I can not write messages in the specified channel commands.moderation.starboard.success.title=Successfully set the Channel\!
commands.moderation.rules.error.permission.title = No permission commands.moderation.starboard.help.description=Sets the starboard channel.
commands.moderation.rules.error.permission.description = To execute this command, I need the `MANAGE_ROLES` permission. commands.moderation.editrules.channel.title=Rules channel
commands.moderation.rules.error.interact.title = Can't interact commands.moderation.editrules.channel.description=Please send me the channel with the rules as mention
commands.moderation.rules.error.interact.description = I can not interact with the specified role. Make sure my role is higher than the specified role. commands.moderation.editrules.channel.found.error.title=Channel not found
commands.moderation.rules.help.description = Setup the rules on your Discord server commands.moderation.editrules.channel.found.error.description=I can't find the specified channel. Please start the edit process again.
commands.moderation.starboard.success.title = Successfully set the Channel\! commands.moderation.editrules.channel.message.error.title=No rules message
commands.moderation.starboard.help.description = Sets the starboard channel. commands.moderation.editrules.channel.message.error.description=I can not find the rules message in the specified channel.
commands.moderation.editrules.channel.title = Rules channel commands.moderation.editrules.message.title=New message
commands.moderation.editrules.channel.description = Please send me the channel with the rules as mention commands.moderation.editrules.message.description=Please send me the new rules message now.
commands.moderation.editrules.channel.found.error.title = Channel not found commands.moderation.editrules.error.title=No rules
commands.moderation.editrules.channel.found.error.description = I can't find the specified channel. Please start the edit process again. commands.moderation.editrules.error.description=There is nor rules message in this server. Please setup the rules first with %extra%rules
commands.moderation.editrules.channel.message.error.title = No rules message commands.moderation.editrules.success.title=Successfully changed
commands.moderation.editrules.channel.message.error.description = I can not find the rules message in the specified channel. commands.moderation.editrules.success.description=I successfully changed the rules
commands.moderation.editrules.message.title = New message commands.moderation.editrules.help.description=Edits the rules message.
commands.moderation.editrules.message.description = Please send me the new rules message now. commands.music.bass.error.connected.title=No channel
commands.moderation.editrules.error.title = No rules commands.music.bass.error.connected.description=You have to be in the same voice channel as the bot to change the bass level.
commands.moderation.editrules.error.description = There is nor rules message in this server. Please setup the rules first with %extra%rules commands.music.bass.help.description=Change the bass for the song which is played at the moment.
commands.moderation.editrules.success.title = Successfully changed commands.music.join.success.title=Successfully connected
commands.moderation.editrules.success.description = I successfully changed the rules commands.music.join.success.description=I successfully connected to %extra%.
commands.moderation.editrules.help.description = Edits the rules message. commands.music.join.error.connecting.already.title=Already connected
commands.music.join.error.connecting.already.description=I am already connected to your voice channel
commands.music.bass.error.connected.title = No channel commands.music.join.error.connecting.trying.title=Already trying to connect
commands.music.bass.error.connected.description = You have to be in the same voice channel as the bot to change the bass level. commands.music.join.error.connecting.trying.description=Hadder is already trying to connect. Please wait a moment
commands.music.bass.help.description = Change the bass for the song which is played at the moment. commands.music.join.error.channel.title=No Voice Channel
commands.music.join.success.title = Successfully connected commands.music.join.error.channel.description=You aren't in a Voice Channel.
commands.music.join.success.description = I successfully connected to %extra%. commands.music.join.error.permission.title=No permission
commands.music.join.error.connecting.already.title = Already connected commands.music.join.error.permission.description=I am not allowed to join your voice channel.
commands.music.join.error.connecting.already.description = I am already connected to your voice channel commands.music.join.help.description=Joins your voice channel.
commands.music.join.error.connecting.trying.title = Already trying to connect commands.music.leave.success.title=Successfully disconnected
commands.music.join.error.connecting.trying.description = Hadder is already trying to connect. Please wait a moment commands.music.leave.success.description=I successfully disconnected from the Voice Channel
commands.music.join.error.channel.title = No Voice Channel commands.music.leave.error.channel.title=No channel
commands.music.join.error.channel.description = You aren't in a Voice Channel. commands.music.leave.error.channel.description=You have to be in the same voice channel as the bot.
commands.music.join.error.permission.title = No permission commands.music.leave.error.connected.tile=Not connected
commands.music.join.error.permission.description = I am not allowed to join your voice channel. commands.music.leave.error.connected.description=I'm currently in no Voice Channel on this Guild
commands.music.join.help.description = Joins your voice channel. commands.music.leave.help.description=Leaves your voice channel.
commands.music.leave.success.title = Successfully disconnected commands.music.play.load.title=%extra% Now loading %extra%
commands.music.leave.success.description = I successfully disconnected from the Voice Channel commands.music.play.load.description=Trying to load the song...
commands.music.leave.error.channel.title = No channel commands.music.play.success.loading.title=%extra% Now playing %extra%
commands.music.leave.error.channel.description = You have to be in the same voice channel as the bot. commands.music.play.success.queueing.title=%extra% Added to queue %extra%
commands.music.leave.error.connected.tile = Not connected commands.music.play.success.title=Title
commands.music.leave.error.connected.description = I'm currently in no Voice Channel on this Guild commands.music.play.success.author=Author
commands.music.leave.help.description = Leaves your voice channel. commands.music.play.success.length=Length
commands.music.play.load.title = %extra% Now loading %extra% commands.music.play.success.tracks=Tracks
commands.music.play.load.description = Trying to load the song... commands.music.play.error.load.title=%extra% Load failed %extra%
commands.music.play.success.loading.title = %extra% Now playing %extra% commands.music.play.error.load.description=Unfortunately I can not load the given song
commands.music.play.success.queueing.title = %extra% Added to queue %extra% commands.music.play.error.match.title=%extra% No matches %extra%
commands.music.play.success.title = Title commands.music.play.error.match.description=I can not find a song named this on YouTube
commands.music.play.success.author = Author commands.music.play.success.unpause.title=Successfully continued
commands.music.play.success.length = Length commands.music.play.success.unpause.description=I successfully continued playing the song.
commands.music.play.success.tracks = Tracks commands.music.play.error.connected.title=No channel
commands.music.play.error.load.title = %extra% Load failed %extra% commands.music.play.error.connected.description=You have to be in the same voice channel as the bot to continue the song.
commands.music.play.error.load.description = Unfortunately I can not load the given song commands.music.play.help.description=Plays the specified song.
commands.music.play.error.match.title = %extra% No matches %extra% commands.music.stop.success.title=Successfully stopped
commands.music.play.error.match.description = I can not find a song named this on YouTube commands.music.stop.success.description=I successfully stopped the song.
commands.music.play.success.unpause.title = Successfully continued commands.music.stop.error.connected.title=No channel
commands.music.play.success.unpause.description = I successfully continued playing the song. commands.music.stop.error.connected.description=You have to be in the same voice channel as the bot to stop the song.
commands.music.play.error.connected.title = No channel commands.music.stop.help.description=Stops the song.
commands.music.play.error.connected.description = You have to be in the same voice channel as the bot to continue the song. commands.music.info.success.title=Track info
commands.music.play.help.description = Plays the specified song. commands.music.info.error.title=No playing track
commands.music.stop.success.title = Successfully stopped commands.music.info.error.description=I am not playing anything at the moment
commands.music.stop.success.description = I successfully stopped the song. commands.music.info.help.description=Shows information about the playing song.
commands.music.stop.error.connected.title = No channel commands.music.queue.error.title=No queue
commands.music.stop.error.connected.description = You have to be in the same voice channel as the bot to stop the song. commands.music.queue.error.description=There are no queued songs at the moment
commands.music.stop.help.description = Stops the song. commands.music.queue.success.title=Queue %extra%
commands.music.info.success.title = Track info commands.music.queue.success.description=This is the queue\: \n %extra%
commands.music.info.error.title = No playing track commands.music.queue.help.description=Shows the music queue.
commands.music.info.error.description = I am not playing anything at the moment commands.music.skip.success.title=Successfully skipped
commands.music.info.help.description = Shows information about the playing song. commands.music.skip.success.description=I successfully skipped to the next song
commands.music.queue.error.title = No queue commands.music.skip.error.connected.title=No channel
commands.music.queue.error.description = There are no queued songs at the moment commands.music.skip.error.connected.description=You have to be in the same voice channel as the bot to skip the song.
commands.music.queue.success.title = Queue %extra% commands.music.skip.help.description=Skips the currently playing song.
commands.music.queue.success.description = This is the queue\: \n %extra% commands.music.volume.success.title=Successfully set
commands.music.queue.help.description = Shows the music queue. commands.music.volume.success.description=I successfully set the new volume to %extra%
commands.music.skip.success.title = Successfully skipped commands.music.volume.error.int.title=Invalid number
commands.music.skip.success.description = I successfully skipped to the next song commands.music.volume.error.int.description=The volume have to be between 1 and 200
commands.music.skip.error.connected.title = No channel commands.music.volume.error.connected.title=No channel
commands.music.skip.error.connected.description = You have to be in the same voice channel as the bot to skip the song. commands.music.volume.error.connected.description=You have to be in the same voice channel as the bot to change the volume.
commands.music.skip.help.description = Skips the currently playing song. commands.music.volume.help.description=Change the volume of the music.
commands.music.volume.success.title = Successfully set commands.music.pause.success.title=Successfully paused
commands.music.volume.success.description = I successfully set the new volume to %extra% commands.music.pause.success.description=I successfully paused the played song.
commands.music.volume.error.int.title = Invalid number commands.music.pause.error.paused.title=Already paused
commands.music.volume.error.int.description = The volume have to be between 1 and 200 commands.music.pause.error.paused.description=The song is already paused. You can continue playing it with %extra%play
commands.music.volume.error.connected.title = No channel commands.music.pause.error.connected.title=No channel
commands.music.volume.error.connected.description = You have to be in the same voice channel as the bot to change the volume. commands.music.pause.error.connected.description=You have to be in the same voice channel as the bot to pause the song.
commands.music.volume.help.description = Change the volume of the music. commands.music.pause.help.description=Pause the playing song.
commands.music.pause.success.title = Successfully paused commands.music.loop.success.loop.title=Successfully activated
commands.music.pause.success.description = I successfully paused the played song. commands.music.loop.success.loop.description=I will now repeat the currently played song.
commands.music.pause.error.paused.title = Already paused commands.music.loop.success.unloop.title=Successfully deactivated
commands.music.pause.error.paused.description = The song is already paused. You can continue playing it with %extra%play commands.music.loop.success.unloop.description=I will no longer repeat the currently played song.
commands.music.pause.error.connected.title = No channel commands.music.loop.error.connected.title=No channel
commands.music.pause.error.connected.description = You have to be in the same voice channel as the bot to pause the song. commands.music.loop.error.connected.description=You have to be in the same voice channel as the bot to set the repeat status.
commands.music.pause.help.description = Pause the playing song. commands.music.loop.help.description=Repeats a song/queue.
commands.music.loop.success.loop.title = Successfully activated commands.music.echo.success.title=Successfully activated
commands.music.loop.success.loop.description = I will now repeat the currently played song. commands.music.echo.success.description=I will now repeat everything I can hear in your voice channel
commands.music.loop.success.unloop.title = Successfully deactivated commands.music.echo.help.description=Sends your voice through Hadder.
commands.music.loop.success.unloop.description = I will no longer repeat the currently played song. commands.nsfw.gif.error.title=GIF not showing? Click here
commands.music.loop.error.connected.title = No channel commands.nsfw.img.error.title=Image not showing? Click here
commands.music.loop.error.connected.description = You have to be in the same voice channel as the bot to set the repeat status. commands.nsfw.anal.help.description=Shows a random anal gif.
commands.music.loop.help.description = Repeats a song/queue. commands.nsfw.bdsm.help.description=Shows a random BDSM picture
commands.music.echo.success.title = Successfully activated commands.nsfw.blowjob.help.description=Shows a random Blowjob picture
commands.music.echo.success.description = I will now repeat everything I can hear in your voice channel commands.nsfw.boobs.help.description=Shows a random boob gif.
commands.music.echo.help.description = Sends your voice through Hadder. commands.nsfw.cum.help.description=Shows a random cum gif.
commands.nsfw.erotic.help.description=Shows a random erotic picture
commands.nsfw.gif.error.title = GIF not showing? Click here commands.nsfw.feet.help.description=Shows a random feet gif.
commands.nsfw.img.error.title = Image not showing? Click here commands.nsfw.fingering.help.description=Shows a random fingering gif.
commands.nsfw.anal.help.description = Shows a random anal gif. commands.nsfw.linking.help.description=Shows a random licking gif.
commands.nsfw.bdsm.help.description = Shows a random BDSM picture commands.nsfw.porn.help.description=Shows a random porn gif.
commands.nsfw.blowjob.help.description = Shows a random Blowjob picture commands.nsfw.pussy.help.description=Shows a random pussy gif.
commands.nsfw.boobs.help.description = Shows a random boob gif. commands.nsfw.randomporn.help.description=Shows a completely random porn gif.
commands.nsfw.cum.help.description = Shows a random cum gif. commands.nsfw.solo.help.description=Shows a random solo gif.
commands.nsfw.erotic.help.description = Shows a random erotic picture commands.nsfw.spank.help.description=Shows a random spank gif.
commands.nsfw.feet.help.description = Shows a random feet gif. commands.nsfw.trans.help.description=Shows a random trans picture
commands.nsfw.fingering.help.description = Shows a random fingering gif. commands.owner.eval.success.title=Eval Command
commands.nsfw.linking.help.description = Shows a random licking gif. commands.owner.eval.success.input=Input
commands.nsfw.porn.help.description = Shows a random porn gif. commands.owner.eval.success.output=Output
commands.nsfw.pussy.help.description = Shows a random pussy gif. commands.owner.eval.success.timing=Timing
commands.nsfw.randomporn.help.description = Shows a completely random porn gif. commands.owner.eval.help.description=Execute the given code
commands.nsfw.solo.help.description = Shows a random solo gif. commands.owner.guildleave.success.title=Successfully left
commands.nsfw.spank.help.description = Shows a random spank gif. commands.owner.guildleave.success.description=I successfully left %extra%.
commands.nsfw.trans.help.description = Shows a random trans picture commands.owner.guildleave.error.title=Can not leave
commands.owner.guildleave.error.description=I can not leave from this server. Maybe this isn't a ID?
commands.owner.eval.success.title = Eval Command commands.owner.guildleave.help.description=Quit from a server
commands.owner.eval.success.input = Input commands.owner.reboot.help.description=Restart the bot
commands.owner.eval.success.output = Output commands.owner.shutdown.success.title=Shutdown
commands.owner.eval.success.timing = Timing commands.owner.shutdown.help.description=Shuts the Bot down
commands.owner.eval.help.description = Execute the given code commands.owner.test.success=TEST my friends
commands.owner.guildleave.success.title = Successfully left commands.owner.test.help.description=Just a little Test Command
commands.owner.guildleave.success.description = I successfully left %extra%. commands.owner.blacklist.success.add.title=Successfully blacklisted the specified commands
commands.owner.guildleave.error.title = Can not leave commands.owner.blacklist.success.add.description=I successfully added the following commands from the blacklist\:\n %extra%
commands.owner.guildleave.error.description = I can not leave from this server. Maybe this isn't a ID? commands.owner.blacklist.success.remove.title=Successfully removed the commands from the blacklist
commands.owner.guildleave.help.description = Quit from a server commands.owner.blacklist.success.remove.description=I successfully removed the following commands from the blacklist\:\n %extra%
commands.owner.reboot.help.description = Restart the bot commands.owner.blacklist.help.description=Blacklist a user for specific commands
commands.owner.shutdown.success.title = Shutdown commands.settings.language.success.title=Language set
commands.owner.shutdown.help.description = Shuts the Bot down commands.settings.language.success.description=`%extra%` is your new language now.
commands.owner.test.success = TEST my friends commands.settings.language.help.description=Sets the new primary language for a user.
commands.owner.test.help.description = Just a little Test Command commands.settings.prefix.success.title=Successfully set prefix
commands.owner.blacklist.success.add.title = Successfully blacklisted the specified commands commands.settings.prefix.success.description=I successfully set the new prefix for you to `%extra%`.
commands.owner.blacklist.success.add.description = I successfully added the following commands from the blacklist\:\n %extra% commands.settings.prefix.help.description=Sets a new prefix.
commands.owner.blacklist.success.remove.title = Successfully removed the commands from the blacklist
commands.owner.blacklist.success.remove.description = I successfully removed the following commands from the blacklist\:\n %extra%
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.
commands.settings.language.help.description = Sets the new primary language for a user.
commands.settings.prefix.success.title = Successfully set prefix
commands.settings.prefix.success.description = I successfully set the new prefix for you to `%extra%`.
commands.settings.prefix.help.description = Sets a new prefix.

View file

@ -13,326 +13,316 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
# #
Hadder=Hadder
Hadder = Hadder error=Error
none=None
error = Error success\!=Success\!
none = None commands.fun.avatar.success.title=Avatar of %extra%
success\! = Success\! commands.fun.avatar.error.title=User not found
commands.fun.avatar.error.description=I can not find a user with this id\!
commands.fun.avatar.success.title = Avatar of %extra% commands.fun.avatar.help.description=Sends the avatar of the specified Member.
commands.fun.avatar.error.title = User not found commands.fun.gif.error.description=Please try again with another term.
commands.fun.avatar.error.description = I can not find a user with this id\! commands.fun.gif.help.description=Looks for a GIF on Giphy.
commands.fun.avatar.help.description = Sends the avatar of the specified Member. commands.fun.meme.success.title=Your random meme\:
commands.fun.gif.error.description = Please try again with another term. commands.fun.meme.api.error=The request to the meme API could not be processed. Please try again later.
commands.fun.gif.help.description = Looks for a GIF on Giphy. commands.fun.meme.help.description=Sends you a random meme.
commands.fun.meme.success.title = Your random meme\: commands.fun.clyde.help.description=Sends a message as a webhook named Clyde.
commands.fun.meme.api.error = The request to the meme API could not be processed. Please try again later. commands.general.about.success.title=Hadder - About
commands.fun.meme.help.description = Sends you a random meme. commands.general.about.success.description=Hadder is an open source Discord bot.
commands.fun.clyde.help.description = Sends a message as a webhook named Clyde. commands.general.about.success.field.one.title=Support the developers
commands.general.about.success.field.one.description=Hadder is completely free for everyone. We would appreciate it if you donated some money to us. Click [here]%extra% to donate.
commands.general.about.success.title = Hadder - About commands.general.about.help.description=Shows information about Hadder.
commands.general.about.success.description = Hadder is an open source Discord bot. commands.general.equals.string.first.request=Please send me the first String.
commands.general.about.success.field.one.title = Support the developers commands.general.equals.string.second.request=Please send me the second String.
commands.general.about.success.field.one.description = Hadder is completely free for everyone. We would appreciate it if you donated some money to us. Click [here]%extra% to donate. commands.general.equals.string.equals.true=Yes\! The first string equals the second string\!
commands.general.about.help.description = Shows information about Hadder. commands.general.equals.string.equals.false=Well yes but actually No. This isn't the same.
commands.general.equals.string.first.request = Please send me the first String. commands.general.equals.string.first=First string\:
commands.general.equals.string.second.request = Please send me the second String. commands.general.equals.string.second=Second string\:
commands.general.equals.string.equals.true = Yes\! The first string equals the second string\! commands.general.equals.string.result=Result\:
commands.general.equals.string.equals.false = Well yes but actually No. This isn't the same. commands.general.equals.help.description=Checks if two strings are equal.
commands.general.equals.string.first = First string\: commands.general.help.description=**Description\:**
commands.general.equals.string.second = Second string\: commands.general.help.usage=**Usage\:**
commands.general.equals.string.result = Result\: commands.general.help.example=**Example\:**
commands.general.equals.help.description = Checks if two strings are equal. commands.general.help.error.description=I need the Embed Links Permission to send the Help Menu\!
commands.general.help.description = **Description\:** commands.general.help.help.description=Shows each command and explains its usage.
commands.general.help.usage = **Usage\:** commands.general.help.help.label=[CommandName]
commands.general.help.example = **Example\:** commands.general.invite.success.title=Invite me\!
commands.general.help.error.description = I need the Embed Links Permission to send the Help Menu\! commands.general.invite.success.description=[Invite me here\!]%extra%
commands.general.help.help.description = Shows each command and explains its usage. commands.general.invite.help.description=Shows the invitation link to invite Hadder to your server.
commands.general.help.help.label = [CommandName] commands.general.ping.help.description=Shows the ping to the Discord API.
commands.general.invite.success.title = Invite me\! commands.misc.feedback.title.request.title=Feedback Topic
commands.general.invite.success.description = [Invite me here\!]%extra% commands.misc.feedback.title.request.description=Please send me the feedback topic.
commands.general.invite.help.description = Shows the invitation link to invite Hadder to your server. commands.misc.feedback.description.request.title=Feedback Description
commands.general.ping.help.description = Shows the ping to the Discord API. commands.misc.feedback.description.request.description=Please send me the feedback description now.
commands.misc.feedback.success.title=Feedback successfully sent\!
commands.misc.feedback.title.request.title = Feedback Topic commands.misc.feedback.help.description=Sends feedback directly to the developers.
commands.misc.feedback.title.request.description = Please send me the feedback topic. commands.misc.github.link.title=Link your GitHub Account
commands.misc.feedback.description.request.title = Feedback Description commands.misc.github.success.title=Information about %extra%
commands.misc.feedback.description.request.description = Please send me the feedback description now. commands.misc.github.success.bio=User bio
commands.misc.feedback.success.title = Feedback successfully sent\! commands.misc.github.success.location=Location
commands.misc.feedback.help.description = Sends feedback directly to the developers. commands.misc.github.success.website=Website
commands.misc.github.link.title = Link your GitHub Account commands.misc.github.success.repositories=Public repositories
commands.misc.github.success.title = Information about %extra% commands.misc.github.success.gists=Public gists
commands.misc.github.success.bio = User bio commands.misc.github.success.followers=Followers
commands.misc.github.success.location = Location commands.misc.github.success.following=Following
commands.misc.github.success.website = Website commands.misc.github.api.error.title=API error
commands.misc.github.success.repositories = Public repositories commands.misc.github.api.error.description=The GitHub API might be down at the moment\!
commands.misc.github.success.gists = Public gists commands.misc.github.user.error.title=User doesn't exist
commands.misc.github.success.followers = Followers commands.misc.github.user.error.description=I can not find a user named like this\!
commands.misc.github.success.following = Following commands.misc.github.connect.title=Connect your GH account
commands.misc.github.api.error.title = API error commands.misc.github.connect.description=[Please connect your GitHub account here]%extra%
commands.misc.github.api.error.description = The GitHub API might be down at the moment\! commands.misc.github.help.description=Displays information about a GitHub user profile.
commands.misc.github.user.error.title = User doesn't exist commands.misc.screenshare.success.title=Here's your URL to share your Screen
commands.misc.github.user.error.description = I can not find a user named like this\! commands.misc.screenshare.id.error.title=Wait. That's illegal.
commands.misc.github.connect.title = Connect your GH account commands.misc.screenshare.id.error.description=This ID is invalid. \nMaybe you entered a wrong ID. \n\nNote\: Make sure the Voice Channel is in this Guild.
commands.misc.github.connect.description = [Please connect your GitHub account here]%extra% commands.misc.screenshare.channel.error.title=Please choose a Voice Channel
commands.misc.github.help.description = Displays information about a GitHub user profile. commands.misc.screenshare.channel.error.description=There is more than one channel with this name
commands.misc.screenshare.success.title = Here's your URL to share your Screen commands.misc.screenshare.number.error.title=You specified a wrong number\!
commands.misc.screenshare.id.error.title = Wait. That's illegal. commands.misc.screenshare.number.error.description=This isn't a Number.
commands.misc.screenshare.id.error.description = This ID is invalid. \nMaybe you entered a wrong ID. \n\nNote\: Make sure the Voice Channel is in this Guild. commands.misc.screenshare.channel.existing.error=Hol' up
commands.misc.screenshare.channel.error.title = Please choose a Voice Channel commands.misc.screenshare.channel.existing.description=There is no Voice Channel named like this. \n\nNote\: Make sure the Voice Channel is in this Guild.
commands.misc.screenshare.channel.error.description = There is more than one channel with this name commands.misc.screenshare.help.description=Shows you the link to share your screen.
commands.misc.screenshare.number.error.title = You specified a wrong number\! commands.misc.serverstats.title=Serverstats
commands.misc.screenshare.number.error.description = This isn't a Number. commands.misc.serverstats.description=This message contains some information about `%extra%`
commands.misc.screenshare.channel.existing.error = Hol' up commands.misc.serverstats.help.description=Shows information about a server.
commands.misc.screenshare.channel.existing.description = There is no Voice Channel named like this. \n\nNote\: Make sure the Voice Channel is in this Guild. commands.misc.profile.error.title=Not found
commands.misc.screenshare.help.description = Shows you the link to share your screen. commands.misc.profile.error.description=I can't find the specified user.
commands.misc.serverstats.title = Serverstats commands.misc.profile.help.description=Shows some information about the specified user.
commands.misc.serverstats.description = This message contains some information about `%extra%` commands.misc.code.success.title=Invite code information
commands.misc.serverstats.help.description = Shows information about a server. commands.misc.code.success.description=This message contains some information about the specified invite code.
commands.misc.profile.error.title = Not found commands.misc.code.error.title=Code not found
commands.misc.profile.error.description = I can't find the specified user. commands.misc.code.error.description=I can't find the specified invite code.
commands.misc.profile.help.description = Shows some information about the specified user. commands.misc.code.help.description=Shows information about a invite code.
commands.misc.code.success.title = Invite code information commands.misc.moveall.success.title=Successfully moved
commands.misc.code.success.description = This message contains some information about the specified invite code. commands.misc.moveall.success.description=I successfully moved %extra% members. Have fun\!
commands.misc.code.error.title = Code not found commands.misc.moveall.error.equals.title=Not twice
commands.misc.code.error.description = I can't find the specified invite code. commands.misc.moveall.error.equals.description=The first voice channel equals the second. You have to specify two different voice channels.
commands.misc.code.help.description = Shows information about a invite code. commands.misc.moveall.error.source.int.title=Invalid ID
commands.misc.moveall.success.title = Successfully moved commands.misc.moveall.error.source.int.description=You haven't specified an ID as the source channel.
commands.misc.moveall.success.description = I successfully moved %extra% members. Have fun\! commands.misc.moveall.error.target.int.title=Invalid ID
commands.misc.moveall.error.equals.title = Not twice commands.misc.moveall.error.target.int.description=You haven't specified an ID as the target channel.
commands.misc.moveall.error.equals.description = The first voice channel equals the second. You have to specify two different voice channels. commands.misc.moveall.help.description=Moves all users in the source channel to the target channel.
commands.misc.moveall.error.source.int.title = Invalid ID commands.misc.corona.help.description=Shows the newest stats of COVID-19
commands.misc.moveall.error.source.int.description = You haven't specified an ID as the source channel. commands.moderation.ban.success.title=Successfully banned
commands.misc.moveall.error.target.int.title = Invalid ID commands.moderation.ban.success.description=I successfully baned %extra%
commands.misc.moveall.error.target.int.description = You haven't specified an ID as the target channel. commands.moderation.ban.error.title=Not possible
commands.misc.moveall.help.description = Moves all users in the source channel to the target channel. commands.moderation.ban.myself.error.description=I can not ban myself\!
commands.misc.corona.help.description = Shows the newest stats of COVID-19 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.success.title = Successfully banned commands.moderation.ban.help.description=Bans one or more users from the server.
commands.moderation.ban.success.description = I successfully baned %extra% commands.moderation.clear.all.success.title=Successfully deleted
commands.moderation.ban.error.title = Not possible commands.moderation.clear.all.success.description=I successfully deleted %extra% messages.
commands.moderation.ban.myself.error.description = I can not ban myself\! commands.moderation.clear.number.error.title=Invalid number
commands.moderation.ban.yourself.error.description = You can not ban yourself\! commands.moderation.clear.number.error.description=You have to choose a number between 1 and 99\!
commands.moderation.ban.massban.success.description = I successfully banned %extra% members\! commands.moderation.clear.success.title=Successfully cleared
commands.moderation.ban.help.description = Bans one or more users from the server. commands.moderation.clear.success.description.singular=Successfully deleted one message.
commands.moderation.clear.all.success.title = Successfully deleted commands.moderation.clear.success.description.plural=Successfully deleted %extra% messages.
commands.moderation.clear.all.success.description = I successfully deleted %extra% messages. commands.moderation.clear.message.error.title=No messages\!
commands.moderation.clear.number.error.title = Invalid number commands.moderation.clear.message.error.description=There are no messages in this channel.
commands.moderation.clear.number.error.description = You have to choose a number between 1 and 99\! commands.moderation.clear.help.description=Deletes the specified number of messages.
commands.moderation.clear.success.title = Successfully cleared commands.moderation.prefix.success.title=%extra% Successfully set %extra%
commands.moderation.clear.success.description.singular = Successfully deleted one message. commands.moderation.prefix.success.description=I successfully set the new prefix for the server to `%extra%`.
commands.moderation.clear.success.description.plural = Successfully deleted %extra% messages. commands.moderation.prefix.error.description=The prefix must not contain **"**
commands.moderation.clear.message.error.title = No messages\! commands.moderation.prefix.help.description=Sets the Guild-Prefix.
commands.moderation.clear.message.error.description = There are no messages in this channel. commands.moderation.invitedetect.activate.success.title=Successfully activated
commands.moderation.clear.help.description = Deletes the specified number of messages. commands.moderation.invitedetect.activate.success.description=I successfully activated the invite link detection for this server.
commands.moderation.prefix.success.title = %extra% Successfully set %extra% commands.moderation.invitedetect.activate.error.title=Already activated
commands.moderation.prefix.success.description = I successfully set the new prefix for the server to `%extra%`. commands.moderation.invitedetect.activate.error.description=The invite link detection is already activated on this server.
commands.moderation.prefix.error.description = The prefix must not contain **"** commands.moderation.invitedetect.deactivate.success.title=Successfully deactivated
commands.moderation.prefix.help.description = Sets the Guild-Prefix. commands.moderation.invitedetect.deactivate.success.description=I successfully deactivated the invite link detection for this server.
commands.moderation.invitedetect.activate.success.title = Successfully activated commands.moderation.invitedetect.deactivate.error.title=Already deactivated
commands.moderation.invitedetect.activate.success.description = I successfully activated the invite link detection for this server. commands.moderation.invitedetect.deactivate.error.description=The invite link detection is already deactivated on this server.
commands.moderation.invitedetect.activate.error.title = Already activated commands.moderation.invitedetect.help.description=Activate or deactivate the Discord invite link detection.
commands.moderation.invitedetect.activate.error.description = The invite link detection is already activated on this server. commands.moderation.kick.success.title=%extra% Successfully kicked %extra%
commands.moderation.invitedetect.deactivate.success.title = Successfully deactivated commands.moderation.kick.success.description=I successfully kicked %extra%.
commands.moderation.invitedetect.deactivate.success.description = I successfully deactivated the invite link detection for this server. commands.moderation.kick.error.title=Not possible
commands.moderation.invitedetect.deactivate.error.title = Already deactivated commands.moderation.kick.myself.error.description=I can not kick myself\!
commands.moderation.invitedetect.deactivate.error.description = The invite link detection is already deactivated on this server. commands.moderation.kick.yourself.error.description=You can't kick yourself.
commands.moderation.invitedetect.help.description = Activate or deactivate the Discord invite link detection. commands.moderation.kick.mass.success.description=I successfully kicked %extra% Members\!
commands.moderation.kick.success.title = %extra% Successfully kicked %extra% commands.moderation.kick.help.description=Kicks one or more user from the server.
commands.moderation.kick.success.description = I successfully kicked %extra%. commands.moderation.kick.masskick.success.description=I successfully kicked %extra% members.
commands.moderation.kick.error.title = Not possible commands.moderation.nick.success.title=%extra% Successfully nicked %extra%
commands.moderation.kick.myself.error.description = I can not kick myself\! commands.moderation.nick.success.description=I successfully nicked %extra%.
commands.moderation.kick.yourself.error.description = You can't kick yourself. commands.moderation.nick.myself.success.description=I successfully changed my nickname.
commands.moderation.kick.mass.success.description = I successfully kicked %extra% Members\! commands.moderation.nick.massnick.success.description=I successfully nicked %extra% Members.
commands.moderation.kick.help.description = Kicks one or more user from the server. commands.moderation.nick.help.description=Rename a one or more user.
commands.moderation.kick.masskick.success.description = I successfully kicked %extra% members. commands.moderation.regionchange.regions.title=All regions
commands.moderation.nick.success.title = %extra% Successfully nicked %extra% commands.moderation.regionchange.success.title=Successfully set region
commands.moderation.nick.success.description = I successfully nicked %extra%. commands.moderation.regionchange.success.description=I successfully set the new server region to %extra%.
commands.moderation.nick.myself.success.description = I successfully changed my nickname. commands.moderation.regionchange.help.description=Changes the server region to locked regions.
commands.moderation.nick.massnick.success.description = I successfully nicked %extra% Members. commands.moderation.role.add.success.title=Successfully added role(s)
commands.moderation.nick.help.description = Rename a one or more user. commands.moderation.role.add.success.description=I successfully added %extra% roles to %extra_two% members.
commands.moderation.regionchange.regions.title = All regions commands.moderation.role.remove.success.title=Successfully removed role(s)
commands.moderation.regionchange.success.title = Successfully set region commands.moderation.role.remove.success.description=I successfully removed %extra% roles from %extra_two% members.
commands.moderation.regionchange.success.description = I successfully set the new server region to %extra%. commands.moderation.role.help.description=Adds and removes one or more role(s) from one or more user(s)
commands.moderation.regionchange.help.description = Changes the server region to locked regions. commands.moderation.rules.setup.title=Set up rules
commands.moderation.role.add.success.title = Successfully added role(s) 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.
commands.moderation.role.add.success.description = I successfully added %extra% roles to %extra_two% members. commands.moderation.rules.channel.error.title=Channel not found
commands.moderation.role.remove.success.title = Successfully removed role(s) commands.moderation.rules.channel.error.description=I can't find the specified channel. Please start the setup again.
commands.moderation.role.remove.success.description = I successfully removed %extra% roles from %extra_two% members. commands.moderation.rules.rules.title=Rules message
commands.moderation.role.help.description = Adds and removes one or more role(s) from one or more user(s) commands.moderation.rules.rules.description=The channel was successfully set to %extra%. Please send me the rules now.
commands.moderation.rules.setup.title = Set up rules commands.moderation.rules.role.title=Role to assign/remove
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. commands.moderation.rules.role.description=The rules were successfully set. Please send me the name of the role which the user receives/loses after he accepted the rules.
commands.moderation.rules.channel.error.title = Channel not found commands.moderation.rules.role.error.title=Role does not exist
commands.moderation.rules.channel.error.description = I can't find the specified channel. Please start the setup again. commands.moderation.rules.role.error.description=The specified role does not exist on this server.
commands.moderation.rules.rules.title = Rules message commands.moderation.rules.role.permission.error.title=No permission
commands.moderation.rules.rules.description = The channel was successfully set to %extra%. Please send me the rules now. commands.moderation.rules.role.permission.error.description=You cannot select this role because you cannot interact with it.
commands.moderation.rules.role.title = Role to assign/remove commands.moderation.rules.guild.error.title=Wrong Guild
commands.moderation.rules.role.description = The rules were successfully set. Please send me the name of the role which the user receives/loses after he accepted the rules. commands.moderation.rules.guild.error.description=The mentioned channel must be on this server\!
commands.moderation.rules.role.error.title = Role does not exist commands.moderation.rules.emote.accept.title=Custom Accept Emote
commands.moderation.rules.role.error.description = The specified role does not exist on this server. commands.moderation.rules.emote.accept.description=The role has been successfully set to %extra%. Now send me the emote on which your user should react to to get verified.
commands.moderation.rules.role.permission.error.title = No permission commands.moderation.rules.emote.decline.title=Custom Decline Emote
commands.moderation.rules.role.permission.error.description = You cannot select this role because you cannot interact with it. commands.moderation.rules.emote.decline.description=The first emote has been successfully set to %extra%. Please send me now the decline emote.
commands.moderation.rules.guild.error.title = Wrong Guild commands.moderation.rules.emote.error.access.description=I can not access the custom emote(s).
commands.moderation.rules.guild.error.description = The mentioned channel must be on this server\! commands.moderation.rules.emote.error.equal.title=Emotes are equal
commands.moderation.rules.emote.accept.title = Custom Accept Emote commands.moderation.rules.emote.error.equal.description=The 1st and 2nd emote equals each other.
commands.moderation.rules.emote.accept.description = The role has been successfully set to %extra%. Now send me the emote on which your user should react to to get verified. commands.moderation.rules.emoji.decline.description=The first emote has been successfully set. Please send me now the decline emote.
commands.moderation.rules.emote.decline.title = Custom Decline Emote commands.moderation.rules.emoji.error.description=The given emote can't be used.
commands.moderation.rules.emote.decline.description = The first emote has been successfully set to %extra%. Please send me now the decline emote. commands.moderation.rules.success.title=Successfully set the rules
commands.moderation.rules.emote.error.access.description = I can not access the custom emote(s). commands.moderation.rules.success.description=I successfully send the rules in %extra%.
commands.moderation.rules.emote.error.equal.title = Emotes are equal commands.moderation.rules.error.message.title=Can't write messages
commands.moderation.rules.emote.error.equal.description = The 1st and 2nd emote equals each other. commands.moderation.rules.error.message.description=I can not write messages in the specified channel
commands.moderation.rules.emoji.decline.description = The first emote has been successfully set. Please send me now the decline emote. commands.moderation.rules.error.permission.title=No permission
commands.moderation.rules.emoji.error.description = The given emote can't be used. commands.moderation.rules.error.permission.description=To execute this command, I need the `MANAGE_ROLES` permission.
commands.moderation.rules.success.title = Successfully set the rules commands.moderation.rules.error.interact.title=Can't interact
commands.moderation.rules.success.description = I successfully send the rules in %extra%. commands.moderation.rules.error.interact.description=I can not interact with the specified role. Make sure my role is higher than the specified role.
commands.moderation.rules.error.message.title = Can't write messages commands.moderation.rules.help.description=Setup the rules on your Discord server
commands.moderation.rules.error.message.description = I can not write messages in the specified channel commands.moderation.starboard.success.title=Successfully set the Channel\!
commands.moderation.rules.error.permission.title = No permission commands.moderation.starboard.help.description=Sets the starboard channel.
commands.moderation.rules.error.permission.description = To execute this command, I need the `MANAGE_ROLES` permission. commands.moderation.editrules.channel.title=Rules channel
commands.moderation.rules.error.interact.title = Can't interact commands.moderation.editrules.channel.description=Please send me the channel with the rules as mention
commands.moderation.rules.error.interact.description = I can not interact with the specified role. Make sure my role is higher than the specified role. commands.moderation.editrules.channel.found.error.title=Channel not found
commands.moderation.rules.help.description = Setup the rules on your Discord server commands.moderation.editrules.channel.found.error.description=I can't find the specified channel. Please start the edit process again.
commands.moderation.starboard.success.title = Successfully set the Channel\! commands.moderation.editrules.channel.message.error.title=No rules message
commands.moderation.starboard.help.description = Sets the starboard channel. commands.moderation.editrules.channel.message.error.description=I can not find the rules message in the specified channel.
commands.moderation.editrules.channel.title = Rules channel commands.moderation.editrules.message.title=New message
commands.moderation.editrules.channel.description = Please send me the channel with the rules as mention commands.moderation.editrules.message.description=Please send me the new rules message now.
commands.moderation.editrules.channel.found.error.title = Channel not found commands.moderation.editrules.error.title=No rules
commands.moderation.editrules.channel.found.error.description = I can't find the specified channel. Please start the edit process again. commands.moderation.editrules.error.description=There is nor rules message in this server. Please setup the rules first with %extra%rules
commands.moderation.editrules.channel.message.error.title = No rules message commands.moderation.editrules.success.title=Successfully changed
commands.moderation.editrules.channel.message.error.description = I can not find the rules message in the specified channel. commands.moderation.editrules.success.description=I successfully changed the rules
commands.moderation.editrules.message.title = New message commands.moderation.editrules.help.description=Edits the rules message.
commands.moderation.editrules.message.description = Please send me the new rules message now. commands.music.bass.error.connected.title=No channel
commands.moderation.editrules.error.title = No rules commands.music.bass.error.connected.description=You have to be in the same voice channel as the bot to change the bass level.
commands.moderation.editrules.error.description = There is nor rules message in this server. Please setup the rules first with %extra%rules commands.music.bass.help.description=Change the bass for the song which is played at the moment.
commands.moderation.editrules.success.title = Successfully changed commands.music.join.success.title=Successfully connected
commands.moderation.editrules.success.description = I successfully changed the rules commands.music.join.success.description=I successfully connected to %extra%.
commands.moderation.editrules.help.description = Edits the rules message. commands.music.join.error.connecting.already.title=Already connected
commands.music.join.error.connecting.already.description=I am already connected to your voice channel
commands.music.bass.error.connected.title = No channel commands.music.join.error.connecting.trying.title=Already trying to connect
commands.music.bass.error.connected.description = You have to be in the same voice channel as the bot to change the bass level. commands.music.join.error.connecting.trying.description=Hadder is already trying to connect. Please wait a moment
commands.music.bass.help.description = Change the bass for the song which is played at the moment. commands.music.join.error.channel.title=No Voice Channel
commands.music.join.success.title = Successfully connected commands.music.join.error.channel.description=You aren't in a Voice Channel.
commands.music.join.success.description = I successfully connected to %extra%. commands.music.join.error.permission.title=No permission
commands.music.join.error.connecting.already.title = Already connected commands.music.join.error.permission.description=I am not allowed to join your voice channel.
commands.music.join.error.connecting.already.description = I am already connected to your voice channel commands.music.join.help.description=Joins your voice channel.
commands.music.join.error.connecting.trying.title = Already trying to connect commands.music.leave.success.title=Successfully disconnected
commands.music.join.error.connecting.trying.description = Hadder is already trying to connect. Please wait a moment commands.music.leave.success.description=I successfully disconnected from the Voice Channel
commands.music.join.error.channel.title = No Voice Channel commands.music.leave.error.channel.title=No channel
commands.music.join.error.channel.description = You aren't in a Voice Channel. commands.music.leave.error.channel.description=You have to be in the same voice channel as the bot.
commands.music.join.error.permission.title = No permission commands.music.leave.error.connected.tile=Not connected
commands.music.join.error.permission.description = I am not allowed to join your voice channel. commands.music.leave.error.connected.description=I'm currently in no Voice Channel on this Guild
commands.music.join.help.description = Joins your voice channel. commands.music.leave.help.description=Leaves your voice channel.
commands.music.leave.success.title = Successfully disconnected commands.music.play.load.title=%extra% Now loading %extra%
commands.music.leave.success.description = I successfully disconnected from the Voice Channel commands.music.play.load.description=Trying to load the song...
commands.music.leave.error.channel.title = No channel commands.music.play.success.loading.title=%extra% Now playing %extra%
commands.music.leave.error.channel.description = You have to be in the same voice channel as the bot. commands.music.play.success.queueing.title=%extra% Added to queue %extra%
commands.music.leave.error.connected.tile = Not connected commands.music.play.success.title=Title
commands.music.leave.error.connected.description = I'm currently in no Voice Channel on this Guild commands.music.play.success.author=Author
commands.music.leave.help.description = Leaves your voice channel. commands.music.play.success.length=Length
commands.music.play.load.title = %extra% Now loading %extra% commands.music.play.success.tracks=Tracks
commands.music.play.load.description = Trying to load the song... commands.music.play.error.load.title=%extra% Load failed %extra%
commands.music.play.success.loading.title = %extra% Now playing %extra% commands.music.play.error.load.description=Unfortunately I can not load the given song
commands.music.play.success.queueing.title = %extra% Added to queue %extra% commands.music.play.error.match.title=%extra% No matches %extra%
commands.music.play.success.title = Title commands.music.play.error.match.description=I can not find a song named this on YouTube
commands.music.play.success.author = Author commands.music.play.success.unpause.title=Successfully continued
commands.music.play.success.length = Length commands.music.play.success.unpause.description=I successfully continued playing the song.
commands.music.play.success.tracks = Tracks commands.music.play.error.connected.title=No channel
commands.music.play.error.load.title = %extra% Load failed %extra% commands.music.play.error.connected.description=You have to be in the same voice channel as the bot to continue the song.
commands.music.play.error.load.description = Unfortunately I can not load the given song commands.music.play.help.description=Plays the specified song.
commands.music.play.error.match.title = %extra% No matches %extra% commands.music.stop.success.title=Successfully stopped
commands.music.play.error.match.description = I can not find a song named this on YouTube commands.music.stop.success.description=I successfully stopped the song.
commands.music.play.success.unpause.title = Successfully continued commands.music.stop.error.connected.title=No channel
commands.music.play.success.unpause.description = I successfully continued playing the song. commands.music.stop.error.connected.description=You have to be in the same voice channel as the bot to stop the song.
commands.music.play.error.connected.title = No channel commands.music.stop.help.description=Stops the song.
commands.music.play.error.connected.description = You have to be in the same voice channel as the bot to continue the song. commands.music.info.success.title=Track info
commands.music.play.help.description = Plays the specified song. commands.music.info.error.title=No playing track
commands.music.stop.success.title = Successfully stopped commands.music.info.error.description=I am not playing anything at the moment
commands.music.stop.success.description = I successfully stopped the song. commands.music.info.help.description=Shows information about the playing song.
commands.music.stop.error.connected.title = No channel commands.music.queue.error.title=No queue
commands.music.stop.error.connected.description = You have to be in the same voice channel as the bot to stop the song. commands.music.queue.error.description=There are no queued songs at the moment
commands.music.stop.help.description = Stops the song. commands.music.queue.success.title=Queue %extra%
commands.music.info.success.title = Track info commands.music.queue.success.description=This is the queue\: \n %extra%
commands.music.info.error.title = No playing track commands.music.queue.help.description=Shows the music queue.
commands.music.info.error.description = I am not playing anything at the moment commands.music.skip.success.title=Successfully skipped
commands.music.info.help.description = Shows information about the playing song. commands.music.skip.success.description=I successfully skipped to the next song
commands.music.queue.error.title = No queue commands.music.skip.error.connected.title=No channel
commands.music.queue.error.description = There are no queued songs at the moment commands.music.skip.error.connected.description=You have to be in the same voice channel as the bot to skip the song.
commands.music.queue.success.title = Queue %extra% commands.music.skip.help.description=Skips the currently playing song.
commands.music.queue.success.description = This is the queue\: \n %extra% commands.music.volume.success.title=Successfully set
commands.music.queue.help.description = Shows the music queue. commands.music.volume.success.description=I successfully set the new volume to %extra%
commands.music.skip.success.title = Successfully skipped commands.music.volume.error.int.title=Invalid number
commands.music.skip.success.description = I successfully skipped to the next song commands.music.volume.error.int.description=The volume have to be between 1 and 200
commands.music.skip.error.connected.title = No channel commands.music.volume.error.connected.title=No channel
commands.music.skip.error.connected.description = You have to be in the same voice channel as the bot to skip the song. commands.music.volume.error.connected.description=You have to be in the same voice channel as the bot to change the volume.
commands.music.skip.help.description = Skips the currently playing song. commands.music.volume.help.description=Change the volume of the music.
commands.music.volume.success.title = Successfully set commands.music.pause.success.title=Successfully paused
commands.music.volume.success.description = I successfully set the new volume to %extra% commands.music.pause.success.description=I successfully paused the played song.
commands.music.volume.error.int.title = Invalid number commands.music.pause.error.paused.title=Already paused
commands.music.volume.error.int.description = The volume have to be between 1 and 200 commands.music.pause.error.paused.description=The song is already paused. You can continue playing it with %extra%play
commands.music.volume.error.connected.title = No channel commands.music.pause.error.connected.title=No channel
commands.music.volume.error.connected.description = You have to be in the same voice channel as the bot to change the volume. commands.music.pause.error.connected.description=You have to be in the same voice channel as the bot to pause the song.
commands.music.volume.help.description = Change the volume of the music. commands.music.pause.help.description=Pause the playing song.
commands.music.pause.success.title = Successfully paused commands.music.loop.success.loop.title=Successfully activated
commands.music.pause.success.description = I successfully paused the played song. commands.music.loop.success.loop.description=I will now repeat the currently played song.
commands.music.pause.error.paused.title = Already paused commands.music.loop.success.unloop.title=Successfully deactivated
commands.music.pause.error.paused.description = The song is already paused. You can continue playing it with %extra%play commands.music.loop.success.unloop.description=I will no longer repeat the currently played song.
commands.music.pause.error.connected.title = No channel commands.music.loop.error.connected.title=No channel
commands.music.pause.error.connected.description = You have to be in the same voice channel as the bot to pause the song. commands.music.loop.error.connected.description=You have to be in the same voice channel as the bot to set the repeat status.
commands.music.pause.help.description = Pause the playing song. commands.music.loop.help.description=Repeats a song/queue.
commands.music.loop.success.loop.title = Successfully activated commands.music.echo.success.title=Successfully activated
commands.music.loop.success.loop.description = I will now repeat the currently played song. commands.music.echo.success.description=I will now repeat everything I can hear in your voice channel
commands.music.loop.success.unloop.title = Successfully deactivated commands.music.echo.help.description=Sends your voice through Hadder.
commands.music.loop.success.unloop.description = I will no longer repeat the currently played song. commands.nsfw.gif.error.title=GIF not showing? Click here
commands.music.loop.error.connected.title = No channel commands.nsfw.img.error.title=Image not showing? Click here
commands.music.loop.error.connected.description = You have to be in the same voice channel as the bot to set the repeat status. commands.nsfw.anal.help.description=Shows a random anal gif.
commands.music.loop.help.description = Repeats a song/queue. commands.nsfw.bdsm.help.description=Shows a random BDSM picture
commands.music.echo.success.title = Successfully activated commands.nsfw.blowjob.help.description=Shows a random Blowjob picture
commands.music.echo.success.description = I will now repeat everything I can hear in your voice channel commands.nsfw.boobs.help.description=Shows a random boob gif.
commands.music.echo.help.description = Sends your voice through Hadder. commands.nsfw.cum.help.description=Shows a random cum gif.
commands.nsfw.erotic.help.description=Shows a random erotic picture
commands.nsfw.gif.error.title = GIF not showing? Click here commands.nsfw.feet.help.description=Shows a random feet gif.
commands.nsfw.img.error.title = Image not showing? Click here commands.nsfw.fingering.help.description=Shows a random fingering gif.
commands.nsfw.anal.help.description = Shows a random anal gif. commands.nsfw.linking.help.description=Shows a random licking gif.
commands.nsfw.bdsm.help.description = Shows a random BDSM picture commands.nsfw.porn.help.description=Shows a random porn gif.
commands.nsfw.blowjob.help.description = Shows a random Blowjob picture commands.nsfw.pussy.help.description=Shows a random pussy gif.
commands.nsfw.boobs.help.description = Shows a random boob gif. commands.nsfw.randomporn.help.description=Shows a completely random porn gif.
commands.nsfw.cum.help.description = Shows a random cum gif. commands.nsfw.solo.help.description=Shows a random solo gif.
commands.nsfw.erotic.help.description = Shows a random erotic picture commands.nsfw.spank.help.description=Shows a random spank gif.
commands.nsfw.feet.help.description = Shows a random feet gif. commands.nsfw.trans.help.description=Shows a random trans picture
commands.nsfw.fingering.help.description = Shows a random fingering gif. commands.owner.eval.success.title=Eval Command
commands.nsfw.linking.help.description = Shows a random licking gif. commands.owner.eval.success.input=Input
commands.nsfw.porn.help.description = Shows a random porn gif. commands.owner.eval.success.output=Output
commands.nsfw.pussy.help.description = Shows a random pussy gif. commands.owner.eval.success.timing=Timing
commands.nsfw.randomporn.help.description = Shows a completely random porn gif. commands.owner.eval.help.description=Execute the given code
commands.nsfw.solo.help.description = Shows a random solo gif. commands.owner.guildleave.success.title=Successfully left
commands.nsfw.spank.help.description = Shows a random spank gif. commands.owner.guildleave.success.description=I successfully left %extra%.
commands.nsfw.trans.help.description = Shows a random trans picture commands.owner.guildleave.error.title=Can not leave
commands.owner.guildleave.error.description=I can not leave from this server. Maybe this isn't a ID?
commands.owner.eval.success.title = Eval Command commands.owner.guildleave.help.description=Quit from a server
commands.owner.eval.success.input = Input commands.owner.reboot.help.description=Restart the bot
commands.owner.eval.success.output = Output commands.owner.shutdown.success.title=Shutdown
commands.owner.eval.success.timing = Timing commands.owner.shutdown.help.description=Shuts the Bot down
commands.owner.eval.help.description = Execute the given code commands.owner.test.success=TEST my friends
commands.owner.guildleave.success.title = Successfully left commands.owner.test.help.description=Just a little Test Command
commands.owner.guildleave.success.description = I successfully left %extra%. commands.owner.blacklist.success.add.title=Successfully blacklisted the specified commands
commands.owner.guildleave.error.title = Can not leave commands.owner.blacklist.success.add.description=I successfully added the following commands from the blacklist\:\n %extra%
commands.owner.guildleave.error.description = I can not leave from this server. Maybe this isn't a ID? commands.owner.blacklist.success.remove.title=Successfully removed the commands from the blacklist
commands.owner.guildleave.help.description = Quit from a server commands.owner.blacklist.success.remove.description=I successfully removed the following commands from the blacklist\:\n %extra%
commands.owner.reboot.help.description = Restart the bot commands.owner.blacklist.help.description=Blacklist a user for specific commands
commands.owner.shutdown.success.title = Shutdown commands.settings.language.success.title=Language set
commands.owner.shutdown.help.description = Shuts the Bot down commands.settings.language.success.description=`%extra%` is your new language now.
commands.owner.test.success = TEST my friends commands.settings.language.help.description=Sets the new primary language for a user.
commands.owner.test.help.description = Just a little Test Command commands.settings.prefix.success.title=Successfully set prefix
commands.owner.blacklist.success.add.title = Successfully blacklisted the specified commands commands.settings.prefix.success.description=I successfully set the new prefix for you to `%extra%`.
commands.owner.blacklist.success.add.description = I successfully added the following commands from the blacklist\:\n %extra% commands.settings.prefix.help.description=Sets a new prefix.
commands.owner.blacklist.success.remove.title = Successfully removed the commands from the blacklist
commands.owner.blacklist.success.remove.description = I successfully removed the following commands from the blacklist\:\n %extra%
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.
commands.settings.language.help.description = Sets the new primary language for a user.
commands.settings.prefix.success.title = Successfully set prefix
commands.settings.prefix.success.description = I successfully set the new prefix for you to `%extra%`.
commands.settings.prefix.help.description = Sets a new prefix.

View file

@ -13,326 +13,316 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
# #
Hadder=Hadder
Hadder = Hadder error=Error
none=None
error = Error success\!=Success\!
none = None commands.fun.avatar.success.title=Avatar of %extra%
success\! = Success\! commands.fun.avatar.error.title=User not found
commands.fun.avatar.error.description=I can not find a user with this id\!
commands.fun.avatar.success.title = Avatar of %extra% commands.fun.avatar.help.description=Sends the avatar of the specified Member.
commands.fun.avatar.error.title = User not found commands.fun.gif.error.description=Please try again with another term.
commands.fun.avatar.error.description = I can not find a user with this id\! commands.fun.gif.help.description=Looks for a GIF on Giphy.
commands.fun.avatar.help.description = Sends the avatar of the specified Member. commands.fun.meme.success.title=Your random meme\:
commands.fun.gif.error.description = Please try again with another term. commands.fun.meme.api.error=The request to the meme API could not be processed. Please try again later.
commands.fun.gif.help.description = Looks for a GIF on Giphy. commands.fun.meme.help.description=Sends you a random meme.
commands.fun.meme.success.title = Your random meme\: commands.fun.clyde.help.description=Sends a message as a webhook named Clyde.
commands.fun.meme.api.error = The request to the meme API could not be processed. Please try again later. commands.general.about.success.title=Hadder - About
commands.fun.meme.help.description = Sends you a random meme. commands.general.about.success.description=Hadder is an open source Discord bot.
commands.fun.clyde.help.description = Sends a message as a webhook named Clyde. commands.general.about.success.field.one.title=Support the developers
commands.general.about.success.field.one.description=Hadder is completely free for everyone. We would appreciate it if you donated some money to us. Click [here]%extra% to donate.
commands.general.about.success.title = Hadder - About commands.general.about.help.description=Shows information about Hadder.
commands.general.about.success.description = Hadder is an open source Discord bot. commands.general.equals.string.first.request=Please send me the first String.
commands.general.about.success.field.one.title = Support the developers commands.general.equals.string.second.request=Please send me the second String.
commands.general.about.success.field.one.description = Hadder is completely free for everyone. We would appreciate it if you donated some money to us. Click [here]%extra% to donate. commands.general.equals.string.equals.true=Yes\! The first string equals the second string\!
commands.general.about.help.description = Shows information about Hadder. commands.general.equals.string.equals.false=Well yes but actually No. This isn't the same.
commands.general.equals.string.first.request = Please send me the first String. commands.general.equals.string.first=First string\:
commands.general.equals.string.second.request = Please send me the second String. commands.general.equals.string.second=Second string\:
commands.general.equals.string.equals.true = Yes\! The first string equals the second string\! commands.general.equals.string.result=Result\:
commands.general.equals.string.equals.false = Well yes but actually No. This isn't the same. commands.general.equals.help.description=Checks if two strings are equal.
commands.general.equals.string.first = First string\: commands.general.help.description=**Description\:**
commands.general.equals.string.second = Second string\: commands.general.help.usage=**Usage\:**
commands.general.equals.string.result = Result\: commands.general.help.example=**Example\:**
commands.general.equals.help.description = Checks if two strings are equal. commands.general.help.error.description=I need the Embed Links Permission to send the Help Menu\!
commands.general.help.description = **Description\:** commands.general.help.help.description=Shows each command and explains its usage.
commands.general.help.usage = **Usage\:** commands.general.help.help.label=[CommandName]
commands.general.help.example = **Example\:** commands.general.invite.success.title=Invite me\!
commands.general.help.error.description = I need the Embed Links Permission to send the Help Menu\! commands.general.invite.success.description=[Invite me here\!]%extra%
commands.general.help.help.description = Shows each command and explains its usage. commands.general.invite.help.description=Shows the invitation link to invite Hadder to your server.
commands.general.help.help.label = [CommandName] commands.general.ping.help.description=Shows the ping to the Discord API.
commands.general.invite.success.title = Invite me\! commands.misc.feedback.title.request.title=Feedback Topic
commands.general.invite.success.description = [Invite me here\!]%extra% commands.misc.feedback.title.request.description=Please send me the feedback topic.
commands.general.invite.help.description = Shows the invitation link to invite Hadder to your server. commands.misc.feedback.description.request.title=Feedback Description
commands.general.ping.help.description = Shows the ping to the Discord API. commands.misc.feedback.description.request.description=Please send me the feedback description now.
commands.misc.feedback.success.title=Feedback successfully sent\!
commands.misc.feedback.title.request.title = Feedback Topic commands.misc.feedback.help.description=Sends feedback directly to the developers.
commands.misc.feedback.title.request.description = Please send me the feedback topic. commands.misc.github.link.title=Link your GitHub Account
commands.misc.feedback.description.request.title = Feedback Description commands.misc.github.success.title=Information about %extra%
commands.misc.feedback.description.request.description = Please send me the feedback description now. commands.misc.github.success.bio=User bio
commands.misc.feedback.success.title = Feedback successfully sent\! commands.misc.github.success.location=Location
commands.misc.feedback.help.description = Sends feedback directly to the developers. commands.misc.github.success.website=Website
commands.misc.github.link.title = Link your GitHub Account commands.misc.github.success.repositories=Public repositories
commands.misc.github.success.title = Information about %extra% commands.misc.github.success.gists=Public gists
commands.misc.github.success.bio = User bio commands.misc.github.success.followers=Followers
commands.misc.github.success.location = Location commands.misc.github.success.following=Following
commands.misc.github.success.website = Website commands.misc.github.api.error.title=API error
commands.misc.github.success.repositories = Public repositories commands.misc.github.api.error.description=The GitHub API might be down at the moment\!
commands.misc.github.success.gists = Public gists commands.misc.github.user.error.title=User doesn't exist
commands.misc.github.success.followers = Followers commands.misc.github.user.error.description=I can not find a user named like this\!
commands.misc.github.success.following = Following commands.misc.github.connect.title=Connect your GH account
commands.misc.github.api.error.title = API error commands.misc.github.connect.description=[Please connect your GitHub account here]%extra%
commands.misc.github.api.error.description = The GitHub API might be down at the moment\! commands.misc.github.help.description=Displays information about a GitHub user profile.
commands.misc.github.user.error.title = User doesn't exist commands.misc.screenshare.success.title=Here's your URL to share your Screen
commands.misc.github.user.error.description = I can not find a user named like this\! commands.misc.screenshare.id.error.title=Wait. That's illegal.
commands.misc.github.connect.title = Connect your GH account commands.misc.screenshare.id.error.description=This ID is invalid. \nMaybe you entered a wrong ID. \n\nNote\: Make sure the Voice Channel is in this Guild.
commands.misc.github.connect.description = [Please connect your GitHub account here]%extra% commands.misc.screenshare.channel.error.title=Please choose a Voice Channel
commands.misc.github.help.description = Displays information about a GitHub user profile. commands.misc.screenshare.channel.error.description=There is more than one channel with this name
commands.misc.screenshare.success.title = Here's your URL to share your Screen commands.misc.screenshare.number.error.title=You specified a wrong number\!
commands.misc.screenshare.id.error.title = Wait. That's illegal. commands.misc.screenshare.number.error.description=This isn't a Number.
commands.misc.screenshare.id.error.description = This ID is invalid. \nMaybe you entered a wrong ID. \n\nNote\: Make sure the Voice Channel is in this Guild. commands.misc.screenshare.channel.existing.error=Hol' up
commands.misc.screenshare.channel.error.title = Please choose a Voice Channel commands.misc.screenshare.channel.existing.description=There is no Voice Channel named like this. \n\nNote\: Make sure the Voice Channel is in this Guild.
commands.misc.screenshare.channel.error.description = There is more than one channel with this name commands.misc.screenshare.help.description=Shows you the link to share your screen.
commands.misc.screenshare.number.error.title = You specified a wrong number\! commands.misc.serverstats.title=Serverstats
commands.misc.screenshare.number.error.description = This isn't a Number. commands.misc.serverstats.description=This message contains some information about `%extra%`
commands.misc.screenshare.channel.existing.error = Hol' up commands.misc.serverstats.help.description=Shows information about a server.
commands.misc.screenshare.channel.existing.description = There is no Voice Channel named like this. \n\nNote\: Make sure the Voice Channel is in this Guild. commands.misc.profile.error.title=Not found
commands.misc.screenshare.help.description = Shows you the link to share your screen. commands.misc.profile.error.description=I can't find the specified user.
commands.misc.serverstats.title = Serverstats commands.misc.profile.help.description=Shows some information about the specified user.
commands.misc.serverstats.description = This message contains some information about `%extra%` commands.misc.code.success.title=Invite code information
commands.misc.serverstats.help.description = Shows information about a server. commands.misc.code.success.description=This message contains some information about the specified invite code.
commands.misc.profile.error.title = Not found commands.misc.code.error.title=Code not found
commands.misc.profile.error.description = I can't find the specified user. commands.misc.code.error.description=I can't find the specified invite code.
commands.misc.profile.help.description = Shows some information about the specified user. commands.misc.code.help.description=Shows information about a invite code.
commands.misc.code.success.title = Invite code information commands.misc.moveall.success.title=Successfully moved
commands.misc.code.success.description = This message contains some information about the specified invite code. commands.misc.moveall.success.description=I successfully moved %extra% members. Have fun\!
commands.misc.code.error.title = Code not found commands.misc.moveall.error.equals.title=Not twice
commands.misc.code.error.description = I can't find the specified invite code. commands.misc.moveall.error.equals.description=The first voice channel equals the second. You have to specify two different voice channels.
commands.misc.code.help.description = Shows information about a invite code. commands.misc.moveall.error.source.int.title=Invalid ID
commands.misc.moveall.success.title = Successfully moved commands.misc.moveall.error.source.int.description=You haven't specified an ID as the source channel.
commands.misc.moveall.success.description = I successfully moved %extra% members. Have fun\! commands.misc.moveall.error.target.int.title=Invalid ID
commands.misc.moveall.error.equals.title = Not twice commands.misc.moveall.error.target.int.description=You haven't specified an ID as the target channel.
commands.misc.moveall.error.equals.description = The first voice channel equals the second. You have to specify two different voice channels. commands.misc.moveall.help.description=Moves all users in the source channel to the target channel.
commands.misc.moveall.error.source.int.title = Invalid ID commands.misc.corona.help.description=Shows the newest stats of COVID-19
commands.misc.moveall.error.source.int.description = You haven't specified an ID as the source channel. commands.moderation.ban.success.title=Successfully banned
commands.misc.moveall.error.target.int.title = Invalid ID commands.moderation.ban.success.description=I successfully baned %extra%
commands.misc.moveall.error.target.int.description = You haven't specified an ID as the target channel. commands.moderation.ban.error.title=Not possible
commands.misc.moveall.help.description = Moves all users in the source channel to the target channel. commands.moderation.ban.myself.error.description=I can not ban myself\!
commands.misc.corona.help.description = Shows the newest stats of COVID-19 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.success.title = Successfully banned commands.moderation.ban.help.description=Bans one or more users from the server.
commands.moderation.ban.success.description = I successfully baned %extra% commands.moderation.clear.all.success.title=Successfully deleted
commands.moderation.ban.error.title = Not possible commands.moderation.clear.all.success.description=I successfully deleted %extra% messages.
commands.moderation.ban.myself.error.description = I can not ban myself\! commands.moderation.clear.number.error.title=Invalid number
commands.moderation.ban.yourself.error.description = You can not ban yourself\! commands.moderation.clear.number.error.description=You have to choose a number between 1 and 99\!
commands.moderation.ban.massban.success.description = I successfully banned %extra% members\! commands.moderation.clear.success.title=Successfully cleared
commands.moderation.ban.help.description = Bans one or more users from the server. commands.moderation.clear.success.description.singular=Successfully deleted one message.
commands.moderation.clear.all.success.title = Successfully deleted commands.moderation.clear.success.description.plural=Successfully deleted %extra% messages.
commands.moderation.clear.all.success.description = I successfully deleted %extra% messages. commands.moderation.clear.message.error.title=No messages\!
commands.moderation.clear.number.error.title = Invalid number commands.moderation.clear.message.error.description=There are no messages in this channel.
commands.moderation.clear.number.error.description = You have to choose a number between 1 and 99\! commands.moderation.clear.help.description=Deletes the specified number of messages.
commands.moderation.clear.success.title = Successfully cleared commands.moderation.prefix.success.title=%extra% Successfully set %extra%
commands.moderation.clear.success.description.singular = Successfully deleted one message. commands.moderation.prefix.success.description=I successfully set the new prefix for the server to `%extra%`.
commands.moderation.clear.success.description.plural = Successfully deleted %extra% messages. commands.moderation.prefix.error.description=The prefix must not contain **"**
commands.moderation.clear.message.error.title = No messages\! commands.moderation.prefix.help.description=Sets the Guild-Prefix.
commands.moderation.clear.message.error.description = There are no messages in this channel. commands.moderation.invitedetect.activate.success.title=Successfully activated
commands.moderation.clear.help.description = Deletes the specified number of messages. commands.moderation.invitedetect.activate.success.description=I successfully activated the invite link detection for this server.
commands.moderation.prefix.success.title = %extra% Successfully set %extra% commands.moderation.invitedetect.activate.error.title=Already activated
commands.moderation.prefix.success.description = I successfully set the new prefix for the server to `%extra%`. commands.moderation.invitedetect.activate.error.description=The invite link detection is already activated on this server.
commands.moderation.prefix.error.description = The prefix must not contain **"** commands.moderation.invitedetect.deactivate.success.title=Successfully deactivated
commands.moderation.prefix.help.description = Sets the Guild-Prefix. commands.moderation.invitedetect.deactivate.success.description=I successfully deactivated the invite link detection for this server.
commands.moderation.invitedetect.activate.success.title = Successfully activated commands.moderation.invitedetect.deactivate.error.title=Already deactivated
commands.moderation.invitedetect.activate.success.description = I successfully activated the invite link detection for this server. commands.moderation.invitedetect.deactivate.error.description=The invite link detection is already deactivated on this server.
commands.moderation.invitedetect.activate.error.title = Already activated commands.moderation.invitedetect.help.description=Activate or deactivate the Discord invite link detection.
commands.moderation.invitedetect.activate.error.description = The invite link detection is already activated on this server. commands.moderation.kick.success.title=%extra% Successfully kicked %extra%
commands.moderation.invitedetect.deactivate.success.title = Successfully deactivated commands.moderation.kick.success.description=I successfully kicked %extra%.
commands.moderation.invitedetect.deactivate.success.description = I successfully deactivated the invite link detection for this server. commands.moderation.kick.error.title=Not possible
commands.moderation.invitedetect.deactivate.error.title = Already deactivated commands.moderation.kick.myself.error.description=I can not kick myself\!
commands.moderation.invitedetect.deactivate.error.description = The invite link detection is already deactivated on this server. commands.moderation.kick.yourself.error.description=You can't kick yourself.
commands.moderation.invitedetect.help.description = Activate or deactivate the Discord invite link detection. commands.moderation.kick.mass.success.description=I successfully kicked %extra% Members\!
commands.moderation.kick.success.title = %extra% Successfully kicked %extra% commands.moderation.kick.help.description=Kicks one or more user from the server.
commands.moderation.kick.success.description = I successfully kicked %extra%. commands.moderation.kick.masskick.success.description=I successfully kicked %extra% members.
commands.moderation.kick.error.title = Not possible commands.moderation.nick.success.title=%extra% Successfully nicked %extra%
commands.moderation.kick.myself.error.description = I can not kick myself\! commands.moderation.nick.success.description=I successfully nicked %extra%.
commands.moderation.kick.yourself.error.description = You can't kick yourself. commands.moderation.nick.myself.success.description=I successfully changed my nickname.
commands.moderation.kick.mass.success.description = I successfully kicked %extra% Members\! commands.moderation.nick.massnick.success.description=I successfully nicked %extra% Members.
commands.moderation.kick.help.description = Kicks one or more user from the server. commands.moderation.nick.help.description=Rename a one or more user.
commands.moderation.kick.masskick.success.description = I successfully kicked %extra% members. commands.moderation.regionchange.regions.title=All regions
commands.moderation.nick.success.title = %extra% Successfully nicked %extra% commands.moderation.regionchange.success.title=Successfully set region
commands.moderation.nick.success.description = I successfully nicked %extra%. commands.moderation.regionchange.success.description=I successfully set the new server region to %extra%.
commands.moderation.nick.myself.success.description = I successfully changed my nickname. commands.moderation.regionchange.help.description=Changes the server region to locked regions.
commands.moderation.nick.massnick.success.description = I successfully nicked %extra% Members. commands.moderation.role.add.success.title=Successfully added role(s)
commands.moderation.nick.help.description = Rename a one or more user. commands.moderation.role.add.success.description=I successfully added %extra% roles to %extra_two% members.
commands.moderation.regionchange.regions.title = All regions commands.moderation.role.remove.success.title=Successfully removed role(s)
commands.moderation.regionchange.success.title = Successfully set region commands.moderation.role.remove.success.description=I successfully removed %extra% roles from %extra_two% members.
commands.moderation.regionchange.success.description = I successfully set the new server region to %extra%. commands.moderation.role.help.description=Adds and removes one or more role(s) from one or more user(s)
commands.moderation.regionchange.help.description = Changes the server region to locked regions. commands.moderation.rules.setup.title=Set up rules
commands.moderation.role.add.success.title = Successfully added role(s) 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.
commands.moderation.role.add.success.description = I successfully added %extra% roles to %extra_two% members. commands.moderation.rules.channel.error.title=Channel not found
commands.moderation.role.remove.success.title = Successfully removed role(s) commands.moderation.rules.channel.error.description=I can't find the specified channel. Please start the setup again.
commands.moderation.role.remove.success.description = I successfully removed %extra% roles from %extra_two% members. commands.moderation.rules.rules.title=Rules message
commands.moderation.role.help.description = Adds and removes one or more role(s) from one or more user(s) commands.moderation.rules.rules.description=The channel was successfully set to %extra%. Please send me the rules now.
commands.moderation.rules.setup.title = Set up rules commands.moderation.rules.role.title=Role to assign/remove
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. commands.moderation.rules.role.description=The rules were successfully set. Please send me the name of the role which the user receives/loses after he accepted the rules.
commands.moderation.rules.channel.error.title = Channel not found commands.moderation.rules.role.error.title=Role does not exist
commands.moderation.rules.channel.error.description = I can't find the specified channel. Please start the setup again. commands.moderation.rules.role.error.description=The specified role does not exist on this server.
commands.moderation.rules.rules.title = Rules message commands.moderation.rules.role.permission.error.title=No permission
commands.moderation.rules.rules.description = The channel was successfully set to %extra%. Please send me the rules now. commands.moderation.rules.role.permission.error.description=You cannot select this role because you cannot interact with it.
commands.moderation.rules.role.title = Role to assign/remove commands.moderation.rules.guild.error.title=Wrong Guild
commands.moderation.rules.role.description = The rules were successfully set. Please send me the name of the role which the user receives/loses after he accepted the rules. commands.moderation.rules.guild.error.description=The mentioned channel must be on this server\!
commands.moderation.rules.role.error.title = Role does not exist commands.moderation.rules.emote.accept.title=Custom Accept Emote
commands.moderation.rules.role.error.description = The specified role does not exist on this server. commands.moderation.rules.emote.accept.description=The role has been successfully set to %extra%. Now send me the emote on which your user should react to to get verified.
commands.moderation.rules.role.permission.error.title = No permission commands.moderation.rules.emote.decline.title=Custom Decline Emote
commands.moderation.rules.role.permission.error.description = You cannot select this role because you cannot interact with it. commands.moderation.rules.emote.decline.description=The first emote has been successfully set to %extra%. Please send me now the decline emote.
commands.moderation.rules.guild.error.title = Wrong Guild commands.moderation.rules.emote.error.access.description=I can not access the custom emote(s).
commands.moderation.rules.guild.error.description = The mentioned channel must be on this server\! commands.moderation.rules.emote.error.equal.title=Emotes are equal
commands.moderation.rules.emote.accept.title = Custom Accept Emote commands.moderation.rules.emote.error.equal.description=The 1st and 2nd emote equals each other.
commands.moderation.rules.emote.accept.description = The role has been successfully set to %extra%. Now send me the emote on which your user should react to to get verified. commands.moderation.rules.emoji.decline.description=The first emote has been successfully set. Please send me now the decline emote.
commands.moderation.rules.emote.decline.title = Custom Decline Emote commands.moderation.rules.emoji.error.description=The given emote can't be used.
commands.moderation.rules.emote.decline.description = The first emote has been successfully set to %extra%. Please send me now the decline emote. commands.moderation.rules.success.title=Successfully set the rules
commands.moderation.rules.emote.error.access.description = I can not access the custom emote(s). commands.moderation.rules.success.description=I successfully send the rules in %extra%.
commands.moderation.rules.emote.error.equal.title = Emotes are equal commands.moderation.rules.error.message.title=Can't write messages
commands.moderation.rules.emote.error.equal.description = The 1st and 2nd emote equals each other. commands.moderation.rules.error.message.description=I can not write messages in the specified channel
commands.moderation.rules.emoji.decline.description = The first emote has been successfully set. Please send me now the decline emote. commands.moderation.rules.error.permission.title=No permission
commands.moderation.rules.emoji.error.description = The given emote can't be used. commands.moderation.rules.error.permission.description=To execute this command, I need the `MANAGE_ROLES` permission.
commands.moderation.rules.success.title = Successfully set the rules commands.moderation.rules.error.interact.title=Can't interact
commands.moderation.rules.success.description = I successfully send the rules in %extra%. commands.moderation.rules.error.interact.description=I can not interact with the specified role. Make sure my role is higher than the specified role.
commands.moderation.rules.error.message.title = Can't write messages commands.moderation.rules.help.description=Setup the rules on your Discord server
commands.moderation.rules.error.message.description = I can not write messages in the specified channel commands.moderation.starboard.success.title=Successfully set the Channel\!
commands.moderation.rules.error.permission.title = No permission commands.moderation.starboard.help.description=Sets the starboard channel.
commands.moderation.rules.error.permission.description = To execute this command, I need the `MANAGE_ROLES` permission. commands.moderation.editrules.channel.title=Rules channel
commands.moderation.rules.error.interact.title = Can't interact commands.moderation.editrules.channel.description=Please send me the channel with the rules as mention
commands.moderation.rules.error.interact.description = I can not interact with the specified role. Make sure my role is higher than the specified role. commands.moderation.editrules.channel.found.error.title=Channel not found
commands.moderation.rules.help.description = Setup the rules on your Discord server commands.moderation.editrules.channel.found.error.description=I can't find the specified channel. Please start the edit process again.
commands.moderation.starboard.success.title = Successfully set the Channel\! commands.moderation.editrules.channel.message.error.title=No rules message
commands.moderation.starboard.help.description = Sets the starboard channel. commands.moderation.editrules.channel.message.error.description=I can not find the rules message in the specified channel.
commands.moderation.editrules.channel.title = Rules channel commands.moderation.editrules.message.title=New message
commands.moderation.editrules.channel.description = Please send me the channel with the rules as mention commands.moderation.editrules.message.description=Please send me the new rules message now.
commands.moderation.editrules.channel.found.error.title = Channel not found commands.moderation.editrules.error.title=No rules
commands.moderation.editrules.channel.found.error.description = I can't find the specified channel. Please start the edit process again. commands.moderation.editrules.error.description=There is nor rules message in this server. Please setup the rules first with %extra%rules
commands.moderation.editrules.channel.message.error.title = No rules message commands.moderation.editrules.success.title=Successfully changed
commands.moderation.editrules.channel.message.error.description = I can not find the rules message in the specified channel. commands.moderation.editrules.success.description=I successfully changed the rules
commands.moderation.editrules.message.title = New message commands.moderation.editrules.help.description=Edits the rules message.
commands.moderation.editrules.message.description = Please send me the new rules message now. commands.music.bass.error.connected.title=No channel
commands.moderation.editrules.error.title = No rules commands.music.bass.error.connected.description=You have to be in the same voice channel as the bot to change the bass level.
commands.moderation.editrules.error.description = There is nor rules message in this server. Please setup the rules first with %extra%rules commands.music.bass.help.description=Change the bass for the song which is played at the moment.
commands.moderation.editrules.success.title = Successfully changed commands.music.join.success.title=Successfully connected
commands.moderation.editrules.success.description = I successfully changed the rules commands.music.join.success.description=I successfully connected to %extra%.
commands.moderation.editrules.help.description = Edits the rules message. commands.music.join.error.connecting.already.title=Already connected
commands.music.join.error.connecting.already.description=I am already connected to your voice channel
commands.music.bass.error.connected.title = No channel commands.music.join.error.connecting.trying.title=Already trying to connect
commands.music.bass.error.connected.description = You have to be in the same voice channel as the bot to change the bass level. commands.music.join.error.connecting.trying.description=Hadder is already trying to connect. Please wait a moment
commands.music.bass.help.description = Change the bass for the song which is played at the moment. commands.music.join.error.channel.title=No Voice Channel
commands.music.join.success.title = Successfully connected commands.music.join.error.channel.description=You aren't in a Voice Channel.
commands.music.join.success.description = I successfully connected to %extra%. commands.music.join.error.permission.title=No permission
commands.music.join.error.connecting.already.title = Already connected commands.music.join.error.permission.description=I am not allowed to join your voice channel.
commands.music.join.error.connecting.already.description = I am already connected to your voice channel commands.music.join.help.description=Joins your voice channel.
commands.music.join.error.connecting.trying.title = Already trying to connect commands.music.leave.success.title=Successfully disconnected
commands.music.join.error.connecting.trying.description = Hadder is already trying to connect. Please wait a moment commands.music.leave.success.description=I successfully disconnected from the Voice Channel
commands.music.join.error.channel.title = No Voice Channel commands.music.leave.error.channel.title=No channel
commands.music.join.error.channel.description = You aren't in a Voice Channel. commands.music.leave.error.channel.description=You have to be in the same voice channel as the bot.
commands.music.join.error.permission.title = No permission commands.music.leave.error.connected.tile=Not connected
commands.music.join.error.permission.description = I am not allowed to join your voice channel. commands.music.leave.error.connected.description=I'm currently in no Voice Channel on this Guild
commands.music.join.help.description = Joins your voice channel. commands.music.leave.help.description=Leaves your voice channel.
commands.music.leave.success.title = Successfully disconnected commands.music.play.load.title=%extra% Now loading %extra%
commands.music.leave.success.description = I successfully disconnected from the Voice Channel commands.music.play.load.description=Trying to load the song...
commands.music.leave.error.channel.title = No channel commands.music.play.success.loading.title=%extra% Now playing %extra%
commands.music.leave.error.channel.description = You have to be in the same voice channel as the bot. commands.music.play.success.queueing.title=%extra% Added to queue %extra%
commands.music.leave.error.connected.tile = Not connected commands.music.play.success.title=Title
commands.music.leave.error.connected.description = I'm currently in no Voice Channel on this Guild commands.music.play.success.author=Author
commands.music.leave.help.description = Leaves your voice channel. commands.music.play.success.length=Length
commands.music.play.load.title = %extra% Now loading %extra% commands.music.play.success.tracks=Tracks
commands.music.play.load.description = Trying to load the song... commands.music.play.error.load.title=%extra% Load failed %extra%
commands.music.play.success.loading.title = %extra% Now playing %extra% commands.music.play.error.load.description=Unfortunately I can not load the given song
commands.music.play.success.queueing.title = %extra% Added to queue %extra% commands.music.play.error.match.title=%extra% No matches %extra%
commands.music.play.success.title = Title commands.music.play.error.match.description=I can not find a song named this on YouTube
commands.music.play.success.author = Author commands.music.play.success.unpause.title=Successfully continued
commands.music.play.success.length = Length commands.music.play.success.unpause.description=I successfully continued playing the song.
commands.music.play.success.tracks = Tracks commands.music.play.error.connected.title=No channel
commands.music.play.error.load.title = %extra% Load failed %extra% commands.music.play.error.connected.description=You have to be in the same voice channel as the bot to continue the song.
commands.music.play.error.load.description = Unfortunately I can not load the given song commands.music.play.help.description=Plays the specified song.
commands.music.play.error.match.title = %extra% No matches %extra% commands.music.stop.success.title=Successfully stopped
commands.music.play.error.match.description = I can not find a song named this on YouTube commands.music.stop.success.description=I successfully stopped the song.
commands.music.play.success.unpause.title = Successfully continued commands.music.stop.error.connected.title=No channel
commands.music.play.success.unpause.description = I successfully continued playing the song. commands.music.stop.error.connected.description=You have to be in the same voice channel as the bot to stop the song.
commands.music.play.error.connected.title = No channel commands.music.stop.help.description=Stops the song.
commands.music.play.error.connected.description = You have to be in the same voice channel as the bot to continue the song. commands.music.info.success.title=Track info
commands.music.play.help.description = Plays the specified song. commands.music.info.error.title=No playing track
commands.music.stop.success.title = Successfully stopped commands.music.info.error.description=I am not playing anything at the moment
commands.music.stop.success.description = I successfully stopped the song. commands.music.info.help.description=Shows information about the playing song.
commands.music.stop.error.connected.title = No channel commands.music.queue.error.title=No queue
commands.music.stop.error.connected.description = You have to be in the same voice channel as the bot to stop the song. commands.music.queue.error.description=There are no queued songs at the moment
commands.music.stop.help.description = Stops the song. commands.music.queue.success.title=Queue %extra%
commands.music.info.success.title = Track info commands.music.queue.success.description=This is the queue\: \n %extra%
commands.music.info.error.title = No playing track commands.music.queue.help.description=Shows the music queue.
commands.music.info.error.description = I am not playing anything at the moment commands.music.skip.success.title=Successfully skipped
commands.music.info.help.description = Shows information about the playing song. commands.music.skip.success.description=I successfully skipped to the next song
commands.music.queue.error.title = No queue commands.music.skip.error.connected.title=No channel
commands.music.queue.error.description = There are no queued songs at the moment commands.music.skip.error.connected.description=You have to be in the same voice channel as the bot to skip the song.
commands.music.queue.success.title = Queue %extra% commands.music.skip.help.description=Skips the currently playing song.
commands.music.queue.success.description = This is the queue\: \n %extra% commands.music.volume.success.title=Successfully set
commands.music.queue.help.description = Shows the music queue. commands.music.volume.success.description=I successfully set the new volume to %extra%
commands.music.skip.success.title = Successfully skipped commands.music.volume.error.int.title=Invalid number
commands.music.skip.success.description = I successfully skipped to the next song commands.music.volume.error.int.description=The volume have to be between 1 and 200
commands.music.skip.error.connected.title = No channel commands.music.volume.error.connected.title=No channel
commands.music.skip.error.connected.description = You have to be in the same voice channel as the bot to skip the song. commands.music.volume.error.connected.description=You have to be in the same voice channel as the bot to change the volume.
commands.music.skip.help.description = Skips the currently playing song. commands.music.volume.help.description=Change the volume of the music.
commands.music.volume.success.title = Successfully set commands.music.pause.success.title=Successfully paused
commands.music.volume.success.description = I successfully set the new volume to %extra% commands.music.pause.success.description=I successfully paused the played song.
commands.music.volume.error.int.title = Invalid number commands.music.pause.error.paused.title=Already paused
commands.music.volume.error.int.description = The volume have to be between 1 and 200 commands.music.pause.error.paused.description=The song is already paused. You can continue playing it with %extra%play
commands.music.volume.error.connected.title = No channel commands.music.pause.error.connected.title=No channel
commands.music.volume.error.connected.description = You have to be in the same voice channel as the bot to change the volume. commands.music.pause.error.connected.description=You have to be in the same voice channel as the bot to pause the song.
commands.music.volume.help.description = Change the volume of the music. commands.music.pause.help.description=Pause the playing song.
commands.music.pause.success.title = Successfully paused commands.music.loop.success.loop.title=Successfully activated
commands.music.pause.success.description = I successfully paused the played song. commands.music.loop.success.loop.description=I will now repeat the currently played song.
commands.music.pause.error.paused.title = Already paused commands.music.loop.success.unloop.title=Successfully deactivated
commands.music.pause.error.paused.description = The song is already paused. You can continue playing it with %extra%play commands.music.loop.success.unloop.description=I will no longer repeat the currently played song.
commands.music.pause.error.connected.title = No channel commands.music.loop.error.connected.title=No channel
commands.music.pause.error.connected.description = You have to be in the same voice channel as the bot to pause the song. commands.music.loop.error.connected.description=You have to be in the same voice channel as the bot to set the repeat status.
commands.music.pause.help.description = Pause the playing song. commands.music.loop.help.description=Repeats a song/queue.
commands.music.loop.success.loop.title = Successfully activated commands.music.echo.success.title=Successfully activated
commands.music.loop.success.loop.description = I will now repeat the currently played song. commands.music.echo.success.description=I will now repeat everything I can hear in your voice channel
commands.music.loop.success.unloop.title = Successfully deactivated commands.music.echo.help.description=Sends your voice through Hadder.
commands.music.loop.success.unloop.description = I will no longer repeat the currently played song. commands.nsfw.gif.error.title=GIF not showing? Click here
commands.music.loop.error.connected.title = No channel commands.nsfw.img.error.title=Image not showing? Click here
commands.music.loop.error.connected.description = You have to be in the same voice channel as the bot to set the repeat status. commands.nsfw.anal.help.description=Shows a random anal gif.
commands.music.loop.help.description = Repeats a song/queue. commands.nsfw.bdsm.help.description=Shows a random BDSM picture
commands.music.echo.success.title = Successfully activated commands.nsfw.blowjob.help.description=Shows a random Blowjob picture
commands.music.echo.success.description = I will now repeat everything I can hear in your voice channel commands.nsfw.boobs.help.description=Shows a random boob gif.
commands.music.echo.help.description = Sends your voice through Hadder. commands.nsfw.cum.help.description=Shows a random cum gif.
commands.nsfw.erotic.help.description=Shows a random erotic picture
commands.nsfw.gif.error.title = GIF not showing? Click here commands.nsfw.feet.help.description=Shows a random feet gif.
commands.nsfw.img.error.title = Image not showing? Click here commands.nsfw.fingering.help.description=Shows a random fingering gif.
commands.nsfw.anal.help.description = Shows a random anal gif. commands.nsfw.linking.help.description=Shows a random licking gif.
commands.nsfw.bdsm.help.description = Shows a random BDSM picture commands.nsfw.porn.help.description=Shows a random porn gif.
commands.nsfw.blowjob.help.description = Shows a random Blowjob picture commands.nsfw.pussy.help.description=Shows a random pussy gif.
commands.nsfw.boobs.help.description = Shows a random boob gif. commands.nsfw.randomporn.help.description=Shows a completely random porn gif.
commands.nsfw.cum.help.description = Shows a random cum gif. commands.nsfw.solo.help.description=Shows a random solo gif.
commands.nsfw.erotic.help.description = Shows a random erotic picture commands.nsfw.spank.help.description=Shows a random spank gif.
commands.nsfw.feet.help.description = Shows a random feet gif. commands.nsfw.trans.help.description=Shows a random trans picture
commands.nsfw.fingering.help.description = Shows a random fingering gif. commands.owner.eval.success.title=Eval Command
commands.nsfw.linking.help.description = Shows a random licking gif. commands.owner.eval.success.input=Input
commands.nsfw.porn.help.description = Shows a random porn gif. commands.owner.eval.success.output=Output
commands.nsfw.pussy.help.description = Shows a random pussy gif. commands.owner.eval.success.timing=Timing
commands.nsfw.randomporn.help.description = Shows a completely random porn gif. commands.owner.eval.help.description=Execute the given code
commands.nsfw.solo.help.description = Shows a random solo gif. commands.owner.guildleave.success.title=Successfully left
commands.nsfw.spank.help.description = Shows a random spank gif. commands.owner.guildleave.success.description=I successfully left %extra%.
commands.nsfw.trans.help.description = Shows a random trans picture commands.owner.guildleave.error.title=Can not leave
commands.owner.guildleave.error.description=I can not leave from this server. Maybe this isn't a ID?
commands.owner.eval.success.title = Eval Command commands.owner.guildleave.help.description=Quit from a server
commands.owner.eval.success.input = Input commands.owner.reboot.help.description=Restart the bot
commands.owner.eval.success.output = Output commands.owner.shutdown.success.title=Shutdown
commands.owner.eval.success.timing = Timing commands.owner.shutdown.help.description=Shuts the Bot down
commands.owner.eval.help.description = Execute the given code commands.owner.test.success=TEST my friends
commands.owner.guildleave.success.title = Successfully left commands.owner.test.help.description=Just a little Test Command
commands.owner.guildleave.success.description = I successfully left %extra%. commands.owner.blacklist.success.add.title=Successfully blacklisted the specified commands
commands.owner.guildleave.error.title = Can not leave commands.owner.blacklist.success.add.description=I successfully added the following commands from the blacklist\:\n %extra%
commands.owner.guildleave.error.description = I can not leave from this server. Maybe this isn't a ID? commands.owner.blacklist.success.remove.title=Successfully removed the commands from the blacklist
commands.owner.guildleave.help.description = Quit from a server commands.owner.blacklist.success.remove.description=I successfully removed the following commands from the blacklist\:\n %extra%
commands.owner.reboot.help.description = Restart the bot commands.owner.blacklist.help.description=Blacklist a user for specific commands
commands.owner.shutdown.success.title = Shutdown commands.settings.language.success.title=Language set
commands.owner.shutdown.help.description = Shuts the Bot down commands.settings.language.success.description=`%extra%` is your new language now.
commands.owner.test.success = TEST my friends commands.settings.language.help.description=Sets the new primary language for a user.
commands.owner.test.help.description = Just a little Test Command commands.settings.prefix.success.title=Successfully set prefix
commands.owner.blacklist.success.add.title = Successfully blacklisted the specified commands commands.settings.prefix.success.description=I successfully set the new prefix for you to `%extra%`.
commands.owner.blacklist.success.add.description = I successfully added the following commands from the blacklist\:\n %extra% commands.settings.prefix.help.description=Sets a new prefix.
commands.owner.blacklist.success.remove.title = Successfully removed the commands from the blacklist
commands.owner.blacklist.success.remove.description = I successfully removed the following commands from the blacklist\:\n %extra%
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.
commands.settings.language.help.description = Sets the new primary language for a user.
commands.settings.prefix.success.title = Successfully set prefix
commands.settings.prefix.success.description = I successfully set the new prefix for you to `%extra%`.
commands.settings.prefix.help.description = Sets a new prefix.